diff --git a/src/lib/icons.ts b/src/lib/icons.ts index 89f3b2a..b49a034 100644 --- a/src/lib/icons.ts +++ b/src/lib/icons.ts @@ -1096,98 +1096,98 @@ export const icons: ReadonlyArray = [ }, { name: "caret-up", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretUp, }, { name: "caret-down", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretDown, }, { name: "caret-left", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretLeft, }, { name: "caret-right", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretRight, }, { name: "caret-double-up", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretDoubleUp, }, { name: "caret-double-down", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretDoubleDown, }, { name: "caret-double-left", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretDoubleLeft, }, { name: "caret-double-right", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretDoubleRight, }, { name: "caret-circle-up", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretCircleUp, }, { name: "caret-circle-down", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretCircleDown, }, { name: "caret-circle-left", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretCircleLeft, }, { name: "caret-circle-right", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretCircleRight, }, { name: "caret-circle-double-up", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretCircleDoubleUp, }, { name: "caret-circle-double-down", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretCircleDoubleDown, }, { name: "caret-circle-double-left", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretCircleDoubleLeft, }, { name: "caret-circle-double-right", - categories: [IconCategory.OTHER], + categories: [IconCategory.ARROWS], tags: ["chevron", "directional", "pointer", "pointing", "arrowhead"], Icon: Icon.CaretCircleDoubleRight, }, @@ -3198,7 +3198,7 @@ export const icons: ReadonlyArray = [ }, { name: "list", - categories: [IconCategory.SYSTEM, IconCategory.OTHER], + categories: [IconCategory.SYSTEM, IconCategory.EDITOR], tags: [ "hamburger menu", "overflow menu", @@ -3214,25 +3214,25 @@ export const icons: ReadonlyArray = [ }, { name: "list-bullets", - categories: [IconCategory.SYSTEM, IconCategory.OTHER], + categories: [IconCategory.SYSTEM, IconCategory.EDITOR], tags: ["ul", "unordered list", "bulleted list", "checklist"], Icon: Icon.ListBullets, }, { name: "list-dashes", - categories: [IconCategory.SYSTEM, IconCategory.OTHER], + categories: [IconCategory.SYSTEM, IconCategory.EDITOR], tags: ["ul", "unordered list", "dashed list", "checklist"], Icon: Icon.ListDashes, }, { name: "list-numbers", - categories: [IconCategory.SYSTEM, IconCategory.OTHER], + categories: [IconCategory.SYSTEM, IconCategory.EDITOR], tags: ["ol", "ordered list", "numbered list", "checklist"], Icon: Icon.ListNumbers, }, { name: "list-plus", - categories: [IconCategory.SYSTEM, IconCategory.OTHER], + categories: [IconCategory.SYSTEM, IconCategory.EDITOR], tags: ["ul", "ol", "unordered list", "ordered list", "checklist", "add"], Icon: Icon.ListPlus, },