From a73af0573e6b7cdc173db7b0592f899c527d58da Mon Sep 17 00:00:00 2001 From: rektdeckard Date: Wed, 7 Oct 2020 15:39:43 -0400 Subject: [PATCH] icons: add Arrows category --- src/lib/icons.ts | 315 ++++++++++++++++++++++++----------------------- src/lib/index.ts | 33 ++--- 2 files changed, 178 insertions(+), 170 deletions(-) diff --git a/src/lib/icons.ts b/src/lib/icons.ts index 89c8077..89f3b2a 100644 --- a/src/lib/icons.ts +++ b/src/lib/icons.ts @@ -18,6 +18,7 @@ export const icons: ReadonlyArray = [ "flying", "planes", "transit", + "transportation", "traveling", ], Icon: Icon.Airplane, @@ -43,7 +44,7 @@ export const icons: ReadonlyArray = [ IconCategory.DEVICE, IconCategory.SYSTEM, ], - tags: ["android", "google", "mobile", "phone", "cellular", "cellphone"], + tags: ["google", "mobile", "phone", "cellular", "cellphone"], Icon: Icon.Android, }, { @@ -96,225 +97,224 @@ export const icons: ReadonlyArray = [ }, { name: "arrow-up", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowUp, }, { name: "arrow-down", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowDown, }, { name: "arrow-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowLeft, }, { name: "arrow-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowRight, }, { name: "arrow-up-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowUpLeft, }, { name: "arrow-up-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowUpRight, }, { name: "arrow-down-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowDownLeft, }, { name: "arrow-down-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowDownRight, }, { name: "arrow-circle-up", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowCircleUp, }, { name: "arrow-circle-down", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowCircleDown, }, { name: "arrow-circle-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowCircleLeft, }, { name: "arrow-circle-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowCircleRight, }, { name: "arrow-circle-up-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowCircleUpLeft, }, { name: "arrow-circle-up-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowCircleUpRight, }, { name: "arrow-circle-down-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowCircleDownLeft, }, { name: "arrow-circle-down-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowCircleDownRight, }, { name: "arrow-square-up", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowSquareUp, }, { name: "arrow-square-down", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowSquareDown, }, { name: "arrow-square-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowSquareLeft, }, { name: "arrow-square-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowSquareRight, }, { name: "arrow-square-up-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowSquareUpLeft, }, { name: "arrow-square-up-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowSquareUpRight, }, { name: "arrow-square-down-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowSquareDownLeft, }, { name: "arrow-square-down-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowSquareDownRight, }, { name: "arrow-arc-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowArcLeft, }, { name: "arrow-arc-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowArcRight, }, { name: "arrow-bend-left-up", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowBendLeftUp, }, { name: "arrow-bend-right-up", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowBendRightUp, }, { name: "arrow-bend-left-down", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowBendLeftDown, }, { name: "arrow-bend-right-down", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowBendRightDown, }, { name: "arrow-bend-up-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowBendUpLeft, }, { name: "arrow-bend-down-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowBendDownLeft, }, { name: "arrow-bend-up-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowBendUpRight, }, { name: "arrow-bend-down-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowBendDownRight, }, { name: "arrow-bend-double-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowBendDoubleUpLeft, }, { name: "arrow-bend-double-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowBendDoubleUpRight, }, { name: "arrow-clockwise", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ - "arrows", "directional", "pointer", "pointing", @@ -326,9 +326,8 @@ export const icons: ReadonlyArray = [ }, { name: "arrow-counter-clockwise", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ - "arrows", "directional", "pointer", "pointing", @@ -340,118 +339,117 @@ export const icons: ReadonlyArray = [ }, { name: "arrow-elbow-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowElbowLeft, }, { name: "arrow-elbow-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowElbowRight, }, { name: "arrow-elbow-left-up", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowElbowLeftUp, }, { name: "arrow-elbow-right-up", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowElbowRightUp, }, { name: "arrow-elbow-left-down", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowElbowLeftDown, }, { name: "arrow-elbow-right-down", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowElbowRightDown, }, { name: "arrow-elbow-up-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowElbowUpLeft, }, { name: "arrow-elbow-down-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowElbowDownLeft, }, { name: "arrow-elbow-up-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowElbowUpRight, }, { name: "arrow-elbow-down-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowElbowDownRight, }, { name: "arrow-line-up", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowLineUp, }, { name: "arrow-line-down", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowLineDown, }, { name: "arrow-line-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowLineLeft, }, { name: "arrow-line-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowLineRight, }, { name: "arrow-line-up-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowLineUpLeft, }, { name: "arrow-line-up-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowLineUpRight, }, { name: "arrow-line-down-left", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowLineDownLeft, }, { name: "arrow-line-down-right", - categories: [IconCategory.OTHER], - tags: ["arrows", "directional", "pointer", "pointing", "arrowhead"], + categories: [IconCategory.ARROWS], + tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowLineDownRight, }, { name: "arrow-u-left-up", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ - "arrows", "directional", "pointer", "pointing", @@ -463,9 +461,8 @@ export const icons: ReadonlyArray = [ }, { name: "arrow-u-right-up", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ - "arrows", "directional", "pointer", "pointing", @@ -477,9 +474,8 @@ export const icons: ReadonlyArray = [ }, { name: "arrow-u-left-down", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ - "arrows", "directional", "pointer", "pointing", @@ -492,9 +488,8 @@ export const icons: ReadonlyArray = [ }, { name: "arrow-u-right-down", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ - "arrows", "directional", "pointer", "pointing", @@ -507,9 +502,8 @@ export const icons: ReadonlyArray = [ }, { name: "arrow-u-up-left", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ - "arrows", "directional", "pointer", "pointing", @@ -522,9 +516,8 @@ export const icons: ReadonlyArray = [ }, { name: "arrow-u-down-left", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ - "arrows", "directional", "pointer", "pointing", @@ -537,9 +530,8 @@ export const icons: ReadonlyArray = [ }, { name: "arrow-u-up-right", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ - "arrows", "directional", "pointer", "pointing", @@ -551,9 +543,8 @@ export const icons: ReadonlyArray = [ }, { name: "arrow-u-down-right", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ - "arrows", "directional", "pointer", "pointing", @@ -565,7 +556,7 @@ export const icons: ReadonlyArray = [ }, { name: "arrows-clockwise", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ "directional", "pointer", @@ -580,7 +571,7 @@ export const icons: ReadonlyArray = [ }, { name: "arrows-counter-clockwise", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ "directional", "pointer", @@ -593,19 +584,19 @@ export const icons: ReadonlyArray = [ }, { name: "arrows-down-up", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowsDownUp, }, { name: "arrows-left-right", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["directional", "pointer", "pointing", "arrowhead"], Icon: Icon.ArrowsLeftRight, }, { name: "arrows-in", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ "directional", "pointer", @@ -618,7 +609,7 @@ export const icons: ReadonlyArray = [ }, { name: "arrows-in-cardinal", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ "directional", "pointer", @@ -632,7 +623,7 @@ export const icons: ReadonlyArray = [ }, { name: "arrows-in-simple", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ "directional", "pointer", @@ -646,7 +637,7 @@ export const icons: ReadonlyArray = [ }, { name: "arrows-out", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ "directional", "pointer", @@ -660,7 +651,7 @@ export const icons: ReadonlyArray = [ }, { name: "arrows-out-cardinal", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ "directional", "pointer", @@ -675,7 +666,7 @@ export const icons: ReadonlyArray = [ }, { name: "arrows-out-simple", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: [ "directional", "pointer", @@ -747,7 +738,7 @@ export const icons: ReadonlyArray = [ { name: "barbell", categories: [IconCategory.HEALTH], - tags: ["weights", "dumbbells", "strength training", "workout", "exercise"], + tags: ["weights", "dumbbells", "strength training", "workout", "exercises"], Icon: Icon.Barbell, }, { @@ -888,7 +879,15 @@ export const icons: ReadonlyArray = [ { name: "bicycle", categories: [IconCategory.HEALTH, IconCategory.MAP, IconCategory.OTHER], - tags: ["bikers", "bicycling", "cyclists"], + tags: [ + "bikers", + "bicycling", + "cyclists", + "transit", + "transportation", + "commuter", + "exercises", + ], Icon: Icon.Bicycle, }, { @@ -1044,6 +1043,7 @@ export const icons: ReadonlyArray = [ tags: [ "vehicles", "public transit", + "transportation", "commuter", "traveling", "places", @@ -1084,13 +1084,14 @@ export const icons: ReadonlyArray = [ { name: "car", categories: [IconCategory.MAP, IconCategory.OTHER], - tags: ["cars", "vehicles", "transit", "traveling"], + + tags: ["cars", "vehicles", "transit", "transportation", "traveling"], Icon: Icon.Car, }, { name: "car-simple", categories: [IconCategory.MAP, IconCategory.OTHER], - tags: ["cars", "vehicles", "transit", "traveling"], + tags: ["cars", "vehicles", "transit", "transportation", "traveling"], Icon: Icon.CarSimple, }, { @@ -1314,13 +1315,13 @@ export const icons: ReadonlyArray = [ { name: "chart-line", categories: [IconCategory.BUSINESS, IconCategory.FINANCE], - tags: ["graphs", "graphing", "charts", "circle", "analyze", "analysis"], + tags: ["graphs", "graphing", "charts", "analyze", "analysis"], Icon: Icon.ChartLine, }, { name: "chart-line-up", categories: [IconCategory.BUSINESS, IconCategory.FINANCE], - tags: ["graphs", "graphing", "charts", "circle", "analyze", "analysis"], + tags: ["graphs", "graphing", "charts", "analyze", "analysis"], Icon: Icon.ChartLineUp, }, { @@ -1626,7 +1627,7 @@ export const icons: ReadonlyArray = [ }, { name: "coffee", - categories: [IconCategory.OTHER], + categories: [IconCategory.BUSINESS, IconCategory.OTHER], tags: [ "tea", "java", @@ -2707,13 +2708,13 @@ export const icons: ReadonlyArray = [ { name: "hand", categories: [IconCategory.SYSTEM, IconCategory.USERS, IconCategory.OTHER], - tags: ["pointers", "cursors", "palm", "stop", "wait", "hamsa"], + tags: ["pointers", "cursors", "emoji", "palm", "stop", "wait", "hamsa"], Icon: Icon.Hand, }, { name: "hand-pointing", categories: [IconCategory.SYSTEM, IconCategory.USERS, IconCategory.OTHER], - tags: ["pointers", "cursors", "fingers", "clicks", "mouse"], + tags: ["pointers", "cursors", "emoji", "fingers", "clicks", "mouse"], Icon: Icon.HandPointing, }, { @@ -3058,6 +3059,7 @@ export const icons: ReadonlyArray = [ "wrangler", "off-road", "transit", + "transportation", "traveling", ], Icon: Icon.Jeep, @@ -4194,7 +4196,9 @@ export const icons: ReadonlyArray = [ "man", "body", "transit", + "transportation", "travel", + "commuter", ], Icon: Icon.Pedestrian, }, @@ -4693,20 +4697,20 @@ export const icons: ReadonlyArray = [ }, { name: "shuffle", - categories: [IconCategory.MEDIA, IconCategory.SYSTEM], - tags: ["music", "audio", "randomize", "arrows", "crossed"], + categories: [IconCategory.MEDIA, IconCategory.SYSTEM, IconCategory.ARROWS], + tags: ["music", "audio", "randomize", "crossed"], Icon: Icon.Shuffle, }, { name: "shuffle-angular", - categories: [IconCategory.MEDIA, IconCategory.SYSTEM], - tags: ["music", "audio", "randomize", "arrows", "crossed"], + categories: [IconCategory.MEDIA, IconCategory.SYSTEM, IconCategory.ARROWS], + tags: ["music", "audio", "randomize", "crossed"], Icon: Icon.ShuffleAngular, }, { name: "shuffle-simple", - categories: [IconCategory.MEDIA, IconCategory.SYSTEM], - tags: ["music", "audio", "randomize", "arrows", "crossed"], + categories: [IconCategory.MEDIA, IconCategory.SYSTEM, IconCategory.ARROWS], + tags: ["music", "audio", "randomize", "crossed"], Icon: Icon.ShuffleSimple, }, { @@ -5180,6 +5184,7 @@ export const icons: ReadonlyArray = [ "subway", "light rail", "public transit", + "transportation", "commuter", "traveling", "places", @@ -5195,6 +5200,7 @@ export const icons: ReadonlyArray = [ "subway", "railroad", "public transit", + "transportation", "commuter", "freight", "shipping", @@ -5212,6 +5218,7 @@ export const icons: ReadonlyArray = [ "subway", "light rail", "public transit", + "transportation", "commuter", "traveling", "places", diff --git a/src/lib/index.ts b/src/lib/index.ts index 31821bb..aa973b2 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -10,22 +10,23 @@ export enum IconStyle { } export enum IconCategory { - BRAND = "Brands", - BUSINESS = "Businesses", - COMMUNICATION = "Communications", - DESIGN = "Design", - DEVELOPMENT = "Development", - DEVICE = "Devices", - DOCUMENT = "Documents", - EDITOR = "Editors", - FINANCE = "Finances", - HEALTH = "Health & Medical", - MAP = "Maps", - MEDIA = "Media", - SYSTEM = "System", - USERS = "Users", - WEATHER = "Weather", - OTHER = "Other", + ARROWS = "arrows", + BRAND = "brands", + BUSINESS = "business", + COMMUNICATION = "communications", + DESIGN = "design", + DEVELOPMENT = "development", + DEVICE = "devices", + DOCUMENT = "documents", + EDITOR = "editor", + FINANCE = "finances", + HEALTH = "health & medical", + MAP = "maps", + MEDIA = "media", + SYSTEM = "system", + USERS = "users", + WEATHER = "weather", + OTHER = "other", } export interface IconEntry {