From 83d5ccc3e86a35b47fee8e7e8ba0f7fd9b0e1376 Mon Sep 17 00:00:00 2001 From: Eric Fennis Date: Fri, 21 Nov 2025 14:10:05 +0100 Subject: [PATCH] chore(metadata): Adjust navigation category (#3461) * update categories * Remove navigation from arrows and chevron icons --- categories/navigation.json | 2 +- docs/.vitepress/data/categoriesData.json | 2 +- docs/icons/lab/[name].paths.ts | 27 ++++++++++++++---------- icons/arrow-big-down-dash.json | 1 - icons/arrow-big-down.json | 1 - icons/arrow-big-left-dash.json | 1 - icons/arrow-big-left.json | 1 - icons/arrow-big-right-dash.json | 1 - icons/arrow-big-right.json | 1 - icons/arrow-big-up-dash.json | 1 - icons/arrow-big-up.json | 1 - icons/arrow-down-from-line.json | 1 - icons/arrow-down-left.json | 3 +-- icons/arrow-down-right.json | 3 +-- icons/arrow-down-to-dot.json | 3 +-- icons/arrow-down-to-line.json | 1 - icons/arrow-down-up.json | 3 +-- icons/arrow-down.json | 3 +-- icons/arrow-left-from-line.json | 3 +-- icons/arrow-left-right.json | 3 +-- icons/arrow-left-to-line.json | 3 +-- icons/arrow-left.json | 3 +-- icons/arrow-right-from-line.json | 3 +-- icons/arrow-right-left.json | 3 +-- icons/arrow-right-to-line.json | 1 - icons/arrow-right.json | 3 +-- icons/arrow-up-down.json | 3 +-- icons/arrow-up-from-dot.json | 3 +-- icons/arrow-up-from-line.json | 1 - icons/arrow-up-left.json | 3 +-- icons/arrow-up-right.json | 3 +-- icons/arrow-up-to-line.json | 1 - icons/arrow-up.json | 3 +-- icons/castle.json | 3 ++- icons/chevron-down.json | 1 - icons/chevron-left.json | 3 +-- icons/chevron-right.json | 1 - icons/chevron-up.json | 1 - icons/chevrons-down.json | 1 - icons/chevrons-left.json | 1 - icons/chevrons-right.json | 1 - icons/chevrons-up.json | 1 - icons/circle-arrow-down.json | 1 - icons/circle-arrow-left.json | 1 - icons/circle-arrow-out-down-left.json | 3 +-- icons/circle-arrow-out-down-right.json | 3 +-- icons/circle-arrow-out-up-left.json | 1 - icons/circle-arrow-out-up-right.json | 3 +-- icons/circle-arrow-right.json | 1 - icons/circle-arrow-up.json | 1 - icons/circle-chevron-down.json | 3 +-- icons/circle-chevron-left.json | 3 +-- icons/circle-chevron-right.json | 3 +-- icons/circle-chevron-up.json | 3 +-- icons/dam.json | 3 ++- icons/factory.json | 3 ++- icons/house.json | 3 ++- icons/plane.json | 3 ++- icons/square-arrow-down-left.json | 1 - icons/square-arrow-down-right.json | 1 - icons/square-arrow-down.json | 1 - icons/square-arrow-left.json | 3 +-- icons/square-arrow-out-down-left.json | 3 +-- icons/square-arrow-out-down-right.json | 3 +-- icons/square-arrow-out-up-left.json | 3 +-- icons/square-arrow-out-up-right.json | 1 - icons/square-arrow-right.json | 3 +-- icons/square-arrow-up-left.json | 3 +-- icons/square-arrow-up-right.json | 1 - icons/square-arrow-up.json | 3 +-- 70 files changed, 60 insertions(+), 112 deletions(-) diff --git a/categories/navigation.json b/categories/navigation.json index 0cb9e209d..86a3e5503 100644 --- a/categories/navigation.json +++ b/categories/navigation.json @@ -1,5 +1,5 @@ { "$schema": "../category.schema.json", - "title": "Navigation", + "title": "Navigation, Maps, and POIs", "icon": "compass" } diff --git a/docs/.vitepress/data/categoriesData.json b/docs/.vitepress/data/categoriesData.json index 8d6c3b1ab..03f5236bd 100644 --- a/docs/.vitepress/data/categoriesData.json +++ b/docs/.vitepress/data/categoriesData.json @@ -101,7 +101,7 @@ }, { "name": "navigation", - "title": "Navigation" + "title": "Navigation, Maps, and POIs" }, { "name": "notifications", diff --git a/docs/icons/lab/[name].paths.ts b/docs/icons/lab/[name].paths.ts index 733760c3b..1ca5982b0 100644 --- a/docs/icons/lab/[name].paths.ts +++ b/docs/icons/lab/[name].paths.ts @@ -2,18 +2,23 @@ import { IconEntity } from '../../.vitepress/theme/types'; export default { paths: async () => { - const iconDetailsResponse = await fetch('https://lab.lucide.dev/api/icon-details'); - const iconDetails = (await iconDetailsResponse.json()) as Record; + try { + const iconDetailsResponse = await fetch('https://lab.lucide.dev/api/icon-details'); + const iconDetails = (await iconDetailsResponse.json()) as Record; - return Object.values(iconDetails).map((iconEntity) => { - const params = { - externalLibrary: 'lab', - ...iconEntity, - }; + return Object.values(iconDetails).map((iconEntity) => { + const params = { + externalLibrary: 'lab', + ...iconEntity, + }; - return { - params, - }; - }); + return { + params, + }; + }); + } catch (error) { + console.error('Error fetching icon details:', error); + return []; + } }, }; diff --git a/icons/arrow-big-down-dash.json b/icons/arrow-big-down-dash.json index a9c1feb03..8a7260478 100644 --- a/icons/arrow-big-down-dash.json +++ b/icons/arrow-big-down-dash.json @@ -15,7 +15,6 @@ ], "categories": [ "arrows", - "navigation", "gaming", "files" ] diff --git a/icons/arrow-big-down.json b/icons/arrow-big-down.json index 359427bc3..59336ec9a 100644 --- a/icons/arrow-big-down.json +++ b/icons/arrow-big-down.json @@ -15,7 +15,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ] } diff --git a/icons/arrow-big-left-dash.json b/icons/arrow-big-left-dash.json index af73fdbf5..75ab7080e 100644 --- a/icons/arrow-big-left-dash.json +++ b/icons/arrow-big-left-dash.json @@ -15,7 +15,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ] } diff --git a/icons/arrow-big-left.json b/icons/arrow-big-left.json index e0e7f0348..bcf61b315 100644 --- a/icons/arrow-big-left.json +++ b/icons/arrow-big-left.json @@ -17,7 +17,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ] } diff --git a/icons/arrow-big-right-dash.json b/icons/arrow-big-right-dash.json index a547d211c..0bda32b60 100644 --- a/icons/arrow-big-right-dash.json +++ b/icons/arrow-big-right-dash.json @@ -15,7 +15,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ] } diff --git a/icons/arrow-big-right.json b/icons/arrow-big-right.json index 56e1e428b..2d7bb5fd8 100644 --- a/icons/arrow-big-right.json +++ b/icons/arrow-big-right.json @@ -17,7 +17,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ] } diff --git a/icons/arrow-big-up-dash.json b/icons/arrow-big-up-dash.json index 3805e9e74..303f3e937 100644 --- a/icons/arrow-big-up-dash.json +++ b/icons/arrow-big-up-dash.json @@ -20,7 +20,6 @@ ], "categories": [ "arrows", - "navigation", "text", "development", "gaming" diff --git a/icons/arrow-big-up.json b/icons/arrow-big-up.json index af9887087..38201a31d 100644 --- a/icons/arrow-big-up.json +++ b/icons/arrow-big-up.json @@ -20,7 +20,6 @@ ], "categories": [ "arrows", - "navigation", "text", "development", "gaming" diff --git a/icons/arrow-down-from-line.json b/icons/arrow-down-from-line.json index 0c6088b8b..f770d57ca 100644 --- a/icons/arrow-down-from-line.json +++ b/icons/arrow-down-from-line.json @@ -16,7 +16,6 @@ ], "categories": [ "arrows", - "navigation", "files" ] } diff --git a/icons/arrow-down-left.json b/icons/arrow-down-left.json index 523ef497f..62e7ff564 100644 --- a/icons/arrow-down-left.json +++ b/icons/arrow-down-left.json @@ -10,7 +10,6 @@ "diagonal" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-down-right.json b/icons/arrow-down-right.json index 853f5ffb0..b832d3a6c 100644 --- a/icons/arrow-down-right.json +++ b/icons/arrow-down-right.json @@ -10,7 +10,6 @@ "diagonal" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-down-to-dot.json b/icons/arrow-down-to-dot.json index b0c0d1112..f4c821c90 100644 --- a/icons/arrow-down-to-dot.json +++ b/icons/arrow-down-to-dot.json @@ -12,7 +12,6 @@ "into" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-down-to-line.json b/icons/arrow-down-to-line.json index 2a4fc520b..e11d1e53f 100644 --- a/icons/arrow-down-to-line.json +++ b/icons/arrow-down-to-line.json @@ -19,7 +19,6 @@ ], "categories": [ "arrows", - "navigation", "files", "development" ] diff --git a/icons/arrow-down-up.json b/icons/arrow-down-up.json index 81fe0106f..77e289b85 100644 --- a/icons/arrow-down-up.json +++ b/icons/arrow-down-up.json @@ -19,7 +19,6 @@ "move" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-down.json b/icons/arrow-down.json index 1ead570c1..30fae7faf 100644 --- a/icons/arrow-down.json +++ b/icons/arrow-down.json @@ -11,7 +11,6 @@ "south" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-left-from-line.json b/icons/arrow-left-from-line.json index f298d92ec..0e851a3bb 100644 --- a/icons/arrow-left-from-line.json +++ b/icons/arrow-left-from-line.json @@ -15,7 +15,6 @@ "<-|" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-left-right.json b/icons/arrow-left-right.json index ebb3d9234..660b849e7 100644 --- a/icons/arrow-left-right.json +++ b/icons/arrow-left-right.json @@ -17,7 +17,6 @@ "->" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-left-to-line.json b/icons/arrow-left-to-line.json index b42d92c61..3b20cb192 100644 --- a/icons/arrow-left-to-line.json +++ b/icons/arrow-left-to-line.json @@ -15,7 +15,6 @@ "|<-" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-left.json b/icons/arrow-left.json index d1dc1695a..f73703384 100644 --- a/icons/arrow-left.json +++ b/icons/arrow-left.json @@ -12,7 +12,6 @@ "<-" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-right-from-line.json b/icons/arrow-right-from-line.json index 91f17b21e..be4b388c2 100644 --- a/icons/arrow-right-from-line.json +++ b/icons/arrow-right-from-line.json @@ -16,7 +16,6 @@ "|->" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-right-left.json b/icons/arrow-right-left.json index 0a17e02cd..bddb8da04 100644 --- a/icons/arrow-right-left.json +++ b/icons/arrow-right-left.json @@ -16,7 +16,6 @@ "->" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-right-to-line.json b/icons/arrow-right-to-line.json index b6ccf6d2b..881c04e72 100644 --- a/icons/arrow-right-to-line.json +++ b/icons/arrow-right-to-line.json @@ -20,7 +20,6 @@ ], "categories": [ "arrows", - "navigation", "development" ] } diff --git a/icons/arrow-right.json b/icons/arrow-right.json index 27af120f9..74c0aa257 100644 --- a/icons/arrow-right.json +++ b/icons/arrow-right.json @@ -12,7 +12,6 @@ "->" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-up-down.json b/icons/arrow-up-down.json index b3426f02f..f663714c4 100644 --- a/icons/arrow-up-down.json +++ b/icons/arrow-up-down.json @@ -19,7 +19,6 @@ "move" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-up-from-dot.json b/icons/arrow-up-from-dot.json index 788517778..21d241c36 100644 --- a/icons/arrow-up-from-dot.json +++ b/icons/arrow-up-from-dot.json @@ -10,7 +10,6 @@ "out" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-up-from-line.json b/icons/arrow-up-from-line.json index 72064df27..20f86f30d 100644 --- a/icons/arrow-up-from-line.json +++ b/icons/arrow-up-from-line.json @@ -18,7 +18,6 @@ ], "categories": [ "arrows", - "navigation", "files", "development" ] diff --git a/icons/arrow-up-left.json b/icons/arrow-up-left.json index 054069814..cedd144ba 100644 --- a/icons/arrow-up-left.json +++ b/icons/arrow-up-left.json @@ -10,7 +10,6 @@ "diagonal" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-up-right.json b/icons/arrow-up-right.json index 660eddf71..16f921ff1 100644 --- a/icons/arrow-up-right.json +++ b/icons/arrow-up-right.json @@ -10,7 +10,6 @@ "diagonal" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/arrow-up-to-line.json b/icons/arrow-up-to-line.json index 4ff0dd539..3bc71d403 100644 --- a/icons/arrow-up-to-line.json +++ b/icons/arrow-up-to-line.json @@ -15,7 +15,6 @@ ], "categories": [ "arrows", - "navigation", "files" ] } diff --git a/icons/arrow-up.json b/icons/arrow-up.json index c3c48fec4..811e854b1 100644 --- a/icons/arrow-up.json +++ b/icons/arrow-up.json @@ -10,7 +10,6 @@ "north" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/castle.json b/icons/castle.json index 9dcf26f95..814d85211 100644 --- a/icons/castle.json +++ b/icons/castle.json @@ -12,6 +12,7 @@ ], "categories": [ "buildings", - "gaming" + "gaming", + "navigation" ] } diff --git a/icons/chevron-down.json b/icons/chevron-down.json index 819cdc10b..5fdf2f976 100644 --- a/icons/chevron-down.json +++ b/icons/chevron-down.json @@ -11,7 +11,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ] } diff --git a/icons/chevron-left.json b/icons/chevron-left.json index e3a03123e..ba17504b2 100644 --- a/icons/chevron-left.json +++ b/icons/chevron-left.json @@ -12,7 +12,6 @@ "<" ], "categories": [ - "arrows", - "navigation" + "arrows" ] } diff --git a/icons/chevron-right.json b/icons/chevron-right.json index c070b3f37..88f1609a3 100644 --- a/icons/chevron-right.json +++ b/icons/chevron-right.json @@ -19,7 +19,6 @@ ], "categories": [ "arrows", - "navigation", "math", "development" ] diff --git a/icons/chevron-up.json b/icons/chevron-up.json index 475719a6a..b77a643de 100644 --- a/icons/chevron-up.json +++ b/icons/chevron-up.json @@ -19,7 +19,6 @@ ], "categories": [ "arrows", - "navigation", "math", "gaming" ] diff --git a/icons/chevrons-down.json b/icons/chevrons-down.json index 921217448..3e898cb32 100644 --- a/icons/chevrons-down.json +++ b/icons/chevrons-down.json @@ -10,7 +10,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ] } diff --git a/icons/chevrons-left.json b/icons/chevrons-left.json index df9b8d4d1..6dd265f13 100644 --- a/icons/chevrons-left.json +++ b/icons/chevrons-left.json @@ -9,7 +9,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ] } diff --git a/icons/chevrons-right.json b/icons/chevrons-right.json index df9b8d4d1..6dd265f13 100644 --- a/icons/chevrons-right.json +++ b/icons/chevrons-right.json @@ -9,7 +9,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ] } diff --git a/icons/chevrons-up.json b/icons/chevrons-up.json index e311b0bf1..60bdf9a07 100644 --- a/icons/chevrons-up.json +++ b/icons/chevrons-up.json @@ -12,7 +12,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ] } diff --git a/icons/circle-arrow-down.json b/icons/circle-arrow-down.json index b3c1f9664..a4cf15fe6 100644 --- a/icons/circle-arrow-down.json +++ b/icons/circle-arrow-down.json @@ -14,7 +14,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ], "aliases": [ diff --git a/icons/circle-arrow-left.json b/icons/circle-arrow-left.json index 39e65f042..c7e812e9d 100644 --- a/icons/circle-arrow-left.json +++ b/icons/circle-arrow-left.json @@ -16,7 +16,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ], "aliases": [ diff --git a/icons/circle-arrow-out-down-left.json b/icons/circle-arrow-out-down-left.json index 9aa62ec55..4d0ccd540 100644 --- a/icons/circle-arrow-out-down-left.json +++ b/icons/circle-arrow-out-down-left.json @@ -10,8 +10,7 @@ "diagonal" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/circle-arrow-out-down-right.json b/icons/circle-arrow-out-down-right.json index 358377b89..0a7e5132c 100644 --- a/icons/circle-arrow-out-down-right.json +++ b/icons/circle-arrow-out-down-right.json @@ -10,8 +10,7 @@ "diagonal" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/circle-arrow-out-up-left.json b/icons/circle-arrow-out-up-left.json index 3c96b845e..062e2e37b 100644 --- a/icons/circle-arrow-out-up-left.json +++ b/icons/circle-arrow-out-up-left.json @@ -14,7 +14,6 @@ ], "categories": [ "arrows", - "navigation", "development" ], "aliases": [ diff --git a/icons/circle-arrow-out-up-right.json b/icons/circle-arrow-out-up-right.json index 15dfc3770..fe12bf5e4 100644 --- a/icons/circle-arrow-out-up-right.json +++ b/icons/circle-arrow-out-up-right.json @@ -10,8 +10,7 @@ "diagonal" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/circle-arrow-right.json b/icons/circle-arrow-right.json index 6f738538e..1e1cb47ee 100644 --- a/icons/circle-arrow-right.json +++ b/icons/circle-arrow-right.json @@ -16,7 +16,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ], "aliases": [ diff --git a/icons/circle-arrow-up.json b/icons/circle-arrow-up.json index 86de86f9d..acadbee77 100644 --- a/icons/circle-arrow-up.json +++ b/icons/circle-arrow-up.json @@ -13,7 +13,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ], "aliases": [ diff --git a/icons/circle-chevron-down.json b/icons/circle-chevron-down.json index cd32468bc..e09abe39e 100644 --- a/icons/circle-chevron-down.json +++ b/icons/circle-chevron-down.json @@ -9,8 +9,7 @@ "menu" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/circle-chevron-left.json b/icons/circle-chevron-left.json index 12683c063..c4cfc2324 100644 --- a/icons/circle-chevron-left.json +++ b/icons/circle-chevron-left.json @@ -12,8 +12,7 @@ "<" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/circle-chevron-right.json b/icons/circle-chevron-right.json index 5567c8949..c3457e584 100644 --- a/icons/circle-chevron-right.json +++ b/icons/circle-chevron-right.json @@ -11,8 +11,7 @@ ">" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/circle-chevron-up.json b/icons/circle-chevron-up.json index 6f6158605..0cfe3a015 100644 --- a/icons/circle-chevron-up.json +++ b/icons/circle-chevron-up.json @@ -10,8 +10,7 @@ "^" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/dam.json b/icons/dam.json index 525efad79..11e7f9d32 100644 --- a/icons/dam.json +++ b/icons/dam.json @@ -10,6 +10,7 @@ ], "categories": [ "buildings", - "sustainability" + "sustainability", + "navigation" ] } diff --git a/icons/factory.json b/icons/factory.json index a7c6d78c2..fef949300 100644 --- a/icons/factory.json +++ b/icons/factory.json @@ -13,6 +13,7 @@ "sector" ], "categories": [ - "buildings" + "buildings", + "navigation" ] } diff --git a/icons/house.json b/icons/house.json index eb460a04f..f3362dfc7 100644 --- a/icons/house.json +++ b/icons/house.json @@ -13,7 +13,8 @@ ], "categories": [ "buildings", - "home" + "home", + "navigation" ], "aliases": [ { diff --git a/icons/plane.json b/icons/plane.json index 0a260cdbd..ea9614c13 100644 --- a/icons/plane.json +++ b/icons/plane.json @@ -12,6 +12,7 @@ ], "categories": [ "transportation", - "travel" + "travel", + "navigation" ] } diff --git a/icons/square-arrow-down-left.json b/icons/square-arrow-down-left.json index 5b95209b1..26d82879e 100644 --- a/icons/square-arrow-down-left.json +++ b/icons/square-arrow-down-left.json @@ -14,7 +14,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ], "aliases": [ diff --git a/icons/square-arrow-down-right.json b/icons/square-arrow-down-right.json index 4dc1e03b2..fb59dee87 100644 --- a/icons/square-arrow-down-right.json +++ b/icons/square-arrow-down-right.json @@ -14,7 +14,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ], "aliases": [ diff --git a/icons/square-arrow-down.json b/icons/square-arrow-down.json index f1046a277..953c1440a 100644 --- a/icons/square-arrow-down.json +++ b/icons/square-arrow-down.json @@ -15,7 +15,6 @@ ], "categories": [ "arrows", - "navigation", "gaming" ], "aliases": [ diff --git a/icons/square-arrow-left.json b/icons/square-arrow-left.json index 9a7a70c89..e0c409170 100644 --- a/icons/square-arrow-left.json +++ b/icons/square-arrow-left.json @@ -15,8 +15,7 @@ "<-" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/square-arrow-out-down-left.json b/icons/square-arrow-out-down-left.json index de5125c4b..8fe8a563a 100644 --- a/icons/square-arrow-out-down-left.json +++ b/icons/square-arrow-out-down-left.json @@ -10,8 +10,7 @@ "diagonal" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/square-arrow-out-down-right.json b/icons/square-arrow-out-down-right.json index 24e040b35..ba1fd00c1 100644 --- a/icons/square-arrow-out-down-right.json +++ b/icons/square-arrow-out-down-right.json @@ -10,8 +10,7 @@ "diagonal" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/square-arrow-out-up-left.json b/icons/square-arrow-out-up-left.json index 43524fd6a..b2740e4f8 100644 --- a/icons/square-arrow-out-up-left.json +++ b/icons/square-arrow-out-up-left.json @@ -10,8 +10,7 @@ "diagonal" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/square-arrow-out-up-right.json b/icons/square-arrow-out-up-right.json index 3ae252f56..b346f216c 100644 --- a/icons/square-arrow-out-up-right.json +++ b/icons/square-arrow-out-up-right.json @@ -15,7 +15,6 @@ ], "categories": [ "arrows", - "navigation", "social" ], "aliases": [ diff --git a/icons/square-arrow-right.json b/icons/square-arrow-right.json index 59afcbac0..c18256148 100644 --- a/icons/square-arrow-right.json +++ b/icons/square-arrow-right.json @@ -15,8 +15,7 @@ "->" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/square-arrow-up-left.json b/icons/square-arrow-up-left.json index bb047dd17..3d6be447e 100644 --- a/icons/square-arrow-up-left.json +++ b/icons/square-arrow-up-left.json @@ -12,8 +12,7 @@ "button" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ { diff --git a/icons/square-arrow-up-right.json b/icons/square-arrow-up-right.json index f3f1a7b64..f83911d12 100644 --- a/icons/square-arrow-up-right.json +++ b/icons/square-arrow-up-right.json @@ -14,7 +14,6 @@ ], "categories": [ "arrows", - "navigation", "social" ], "aliases": [ diff --git a/icons/square-arrow-up.json b/icons/square-arrow-up.json index 114fe88b3..fb427b986 100644 --- a/icons/square-arrow-up.json +++ b/icons/square-arrow-up.json @@ -13,8 +13,7 @@ "button" ], "categories": [ - "arrows", - "navigation" + "arrows" ], "aliases": [ {