@central-icons-react/round-outlined-radius-0-stroke-1.5 0.0.16 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/icons/index.d.ts +1399 -5559
- package/icons/index.js +1 -5559
- package/icons/index.js.map +1 -1
- package/icons/index.mjs +2 -0
- package/icons/index.mjs.map +1 -0
- package/index.d.ts +7 -7
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["src/index.tsx","src/CentralIconBase/index.tsx"],"sourcesContent":["\"use client\";\n\nimport { CentralIconBase, type CentralIconBaseProps } from \"./CentralIconBase\";\nimport { type icons } from \"./icons\";\nimport React, { type FC, lazy, type PropsWithChildren, Suspense } from \"react\";\n\nexport { type CentralIconBaseProps };\n\nexport type CentralIconName = keyof typeof icons;\nexport type CentralIconCategory = (typeof icons)[CentralIconName][\"category\"];\nexport type CentralIconProps = PropsWithChildren<CentralIconBaseProps> & {\n name: keyof typeof icons;\n};\n\nconst LazyCentralIcon = ({ importString }: { importString: string }) => {\n const Icon = lazy(() => import(/* webpackIgnore: true */ importString));\n return <Icon />;\n};\n\nconst CentralIconPlaceholder: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} />;\n};\n\nexport const CentralIcon: React.FC<CentralIconProps> = ({ name, ...props }) => {\n const importString = `@central-icons-react/round-outlined-radius-0-stroke-1.5/${name}`;\n return (\n <Suspense fallback={<CentralIconPlaceholder {...props} />}>\n <LazyCentralIcon importString={importString} {...props} />\n </Suspense>\n );\n};\n\nexport default CentralIcon;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"ukBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GCAA,IAAAK,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaD,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,CAAM,GAEdD,GAAa,CAACE,GAAc,EAAAE,QAAA,cAAC,aAAOJ,CAAU,EAC9CF,CACH,ED5BJ,IAAAO,EAAuE,oBAUvE,IAAMC,EAAkB,CAAC,CAAE,aAAAC,CAAa,IAAgC,CACtE,IAAMC,KAAO,QAAK,IAAM,OAAiCD,EAAa,EACtE,OAAO,EAAAE,QAAA,cAACD,EAAA,IAAK,CACf,EAEME,EAAoDC,GACjD,EAAAF,QAAA,cAACG,EAAA,CAAiB,GAAGD,EAAO,EAGxBE,EAA0C,CAAC,CAAE,KAAAC,EAAM,GAAGH,CAAM,IAAM,CAC7E,IAAMJ,EAAe,2DAA2DO,CAAI,GACpF,OACE,EAAAL,QAAA,cAAC,YAAS,SAAU,EAAAA,QAAA,cAACC,EAAA,CAAwB,GAAGC,EAAO,GACrD,EAAAF,QAAA,cAACH,EAAA,CAAgB,aAAcC,EAAe,GAAGI,EAAO,CAC1D,CAEJ,EAEOI,EAAQF","names":["index_exports","__export","CentralIcon","index_default","__toCommonJS","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","props","React","import_react","LazyCentralIcon","importString","Icon","React","CentralIconPlaceholder","props","CentralIconBase","CentralIcon","name","index_default"]}
|
1
|
+
{"version":3,"sources":["src/index.tsx","src/CentralIconBase/index.tsx","src/icons/index.ts"],"sourcesContent":["import { CentralIconBase, type CentralIconBaseProps } from \"./CentralIconBase\";\nimport { centralIcons, type CentralIconName } from \"./icons\";\nimport React, { type FC, memo } from \"react\";\n\nexport { type CentralIconBaseProps };\n\nexport type CentralIconCategory =\n (typeof centralIcons)[CentralIconName][\"category\"];\nexport type CentralIconProps = CentralIconBaseProps & {\n name: CentralIconName;\n};\n\nexport const CentralIcon: FC<CentralIconProps> = memo(({ name, ...props }) => {\n return (\n <CentralIconBase\n ariaLabel={centralIcons[name].title}\n {...props}\n dangerouslySetInnerHTML={{ __html: centralIcons[name].svg }}\n />\n );\n});\n\nCentralIcon.displayName = \"CentralIcon\";\n\nexport default CentralIcon;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n","export type CentralIconName =\n | \"IconCirclePerson\"\n | \"IconEar\"\n | \"IconEyeOpen\"\n | \"IconEyeClosed\"\n | \"IconEyeSlash\"\n | \"IconEyeSlash2\"\n | \"IconCircleHalfFill\"\n | \"IconSquareLinesBottom\"\n | \"IconImageAltText\"\n | \"IconSparklesThree\"\n | \"IconSparklesTwo\"\n | \"IconSparklesTwo2\"\n | \"IconSparklesSoft\"\n | \"IconSparkle\"\n | \"IconSparkle2\"\n | \"IconEyeSparkle\"\n | \"IconVisualIntelligence\"\n | \"IconImageSparkle\"\n | \"IconListSparkle\"\n | \"IconPrompt\"\n | \"IconStarWand\"\n | \"IconMagicWand\"\n | \"IconMagicWand2\"\n | \"IconMagicWand3\"\n | \"IconWindowSparkle\"\n | \"IconBrain1\"\n | \"IconBrain2\"\n | \"IconImageAvatarSparkle\"\n | \"IconTextToImage\"\n | \"IconMagicBook\"\n | \"IconPencilSparkle\"\n | \"IconMagicEdit\"\n | \"IconBroomSparkle\"\n | \"IconBoxSparkle\"\n | \"IconHatSparkle\"\n | \"IconHatBunny\"\n | \"IconWizardHat\"\n | \"IconFortuneTellerBall\"\n | \"IconCuteRobot\"\n | \"IconRobot\"\n | \"IconAppleIntelligenceIcon\"\n | \"IconArrowUpCircle\"\n | \"IconArrowRightUpCircle\"\n | \"IconArrowRightCircle\"\n | \"IconArrowRightDownCircle\"\n | \"IconArrowDownCircle\"\n | \"IconArrowLeftDownCircle\"\n | \"IconArrowLeftCircle\"\n | \"IconArrowLeftUpCircle\"\n | \"IconArrowUp\"\n | \"IconArrowUpRight\"\n | \"IconArrowRight\"\n | \"IconArrowDownRight\"\n | \"IconArrowDown\"\n | \"IconArrowDownLeft\"\n | \"IconArrowLeft\"\n | \"IconArrowUpLeft\"\n | \"IconArrowExpandHor\"\n | \"IconArrowExpandVer\"\n | \"IconExpand45\"\n | \"IconMinimize45\"\n | \"IconExpand315\"\n | \"IconMinimize315\"\n | \"IconChevronTop\"\n | \"IconChevronRight\"\n | \"IconChevronBottom\"\n | \"IconChevronLeft\"\n | \"IconChevronTopSmall\"\n | \"IconChevronDownSmall\"\n | \"IconChevronRightSmall\"\n | \"IconChevronLeftSmall\"\n | \"IconChevronDoubleUp\"\n | \"IconChevronDoubleDown\"\n | \"IconChevronDoubleRight\"\n | \"IconChevronDoubleLeft\"\n | \"IconExpandSimple\"\n | \"IconExpandSimple2\"\n | \"IconChevronGrabberVertical\"\n | \"IconChevronGrabberHorizontal\"\n | \"IconArrowPathRight\"\n | \"IconArrowPathLeft\"\n | \"IconArrowPathUp\"\n | \"IconArrowPathDown\"\n | \"IconArrowCornerDownRight\"\n | \"IconArrowCornerRightUp\"\n | \"IconArrowCornerRightDown\"\n | \"IconArrowCornerLeftUp\"\n | \"IconArrowCornerLeftDown\"\n | \"IconArrowCornerUpRight\"\n | \"IconArrowCornerDownLeft\"\n | \"IconArrowCornerUpLeft\"\n | \"IconArrowUndoUp\"\n | \"IconArrowRedoUp\"\n | \"IconArrowUndoDown\"\n | \"IconArrowRedoDown\"\n | \"IconStepBack\"\n | \"IconStepForwards\"\n | \"IconArrowTopBottom\"\n | \"IconArrowBottomTop\"\n | \"IconArrowSplit\"\n | \"IconArrowRightLeft\"\n | \"IconArrowLeftRight\"\n | \"IconArrowsRepeat\"\n | \"IconArrowsRepeatRightLeft\"\n | \"IconArrowsRepeatRightLeftOff\"\n | \"IconArrowsRepeatLeftRight\"\n | \"IconArrowsRepeatCircle\"\n | \"IconArrowRotateClockwise\"\n | \"IconArrowRotateCounterClockwise\"\n | \"IconArrow\"\n | \"IconArrowRotateLeftRight\"\n | \"IconArrowRotateRightLeft\"\n | \"IconArrowUpDownLeftRight\"\n | \"IconSquized\"\n | \"IconOngoing\"\n | \"IconCursor1\"\n | \"IconCursor2\"\n | \"IconCursor3\"\n | \"IconSquareCursor\"\n | \"IconCursorClick\"\n | \"IconCursorList\"\n | \"IconArrowShareLeft\"\n | \"IconArrowShareRight\"\n | \"IconChevronLargeLeft\"\n | \"IconChevronLargeRight\"\n | \"IconChevronLargeTop\"\n | \"IconChevronLargeDown\"\n | \"IconArrowWallRight\"\n | \"IconArrowWallLeft\"\n | \"IconArrowWallDown\"\n | \"IconArrowWallUp\"\n | \"IconArrowWall2Right\"\n | \"IconArrowWall2Left\"\n | \"IconArrowWall2Down\"\n | \"IconArrowWall2Up\"\n | \"IconArrowTriangleRight\"\n | \"IconArrowTriangleLeft\"\n | \"IconArrowTriangleBottom\"\n | \"IconArrowTriangleTop\"\n | \"IconChevronTriangleDownSmall\"\n | \"IconChevronTriangleUpSmall\"\n | \"IconSquareArrowTopRight\"\n | \"IconSquareArrowTopRight2\"\n | \"IconSquareArrowCenter\"\n | \"IconSquareArrowBottomRight\"\n | \"IconSquareArrowInTopLeft\"\n | \"IconSquareArrowOutTopLeft\"\n | \"IconShareArrowDown\"\n | \"IconVisionPro\"\n | \"IconOculus\"\n | \"IconAr\"\n | \"IconArCube1\"\n | \"IconArCube2\"\n | \"Icon3dSphere\"\n | \"IconArCube3\"\n | \"IconArScanCube1\"\n | \"IconArScanCube2\"\n | \"IconSpatialCapture\"\n | \"IconAround\"\n | \"IconPanoramaView\"\n | \"IconVisionProApp\"\n | \"IconRotate\"\n | \"IconQm3\"\n | \"IconHomeRoundDoor\"\n | \"IconHomePersonalFeed\"\n | \"IconHome\"\n | \"IconHomeLine\"\n | \"IconHomeCircle\"\n | \"IconHomeRoof\"\n | \"IconHomeDoor\"\n | \"IconHomeOpen\"\n | \"IconCourt\"\n | \"IconBank\"\n | \"IconBuildings\"\n | \"IconBlock\"\n | \"IconGarage\"\n | \"IconMall\"\n | \"IconStore1\"\n | \"IconStore2\"\n | \"IconStore3\"\n | \"IconStore4\"\n | \"IconStores\"\n | \"IconSchool\"\n | \"IconDoor\"\n | \"IconCloud\"\n | \"IconCloudDownload\"\n | \"IconCloudUpload\"\n | \"IconCloudCheck\"\n | \"IconCloudOff\"\n | \"IconCloudOff2\"\n | \"IconCloudSync\"\n | \"IconCloudSimple\"\n | \"IconCloudSimpleDownload\"\n | \"IconCloudSimpleUpload\"\n | \"IconCloudSimpleDisconnected\"\n | \"IconCode\"\n | \"IconConsole\"\n | \"IconConsoleSimple\"\n | \"IconCodeBrackets\"\n | \"IconCodeInsert\"\n | \"IconForkCode\"\n | \"IconBranch\"\n | \"IconDraft\"\n | \"IconPullRequest\"\n | \"IconRequestClosed\"\n | \"IconShip\"\n | \"IconSandbox\"\n | \"IconAnimationLinear\"\n | \"IconAnimationEaseOut\"\n | \"IconAnimationEaseIn\"\n | \"IconAnimationEase\"\n | \"IconAnimationAuto\"\n | \"IconAnimationElastic\"\n | \"IconAnimationUndershoot\"\n | \"IconAnimationOvershoot\"\n | \"IconAnimationNone\"\n | \"IconBezierCurves\"\n | \"IconRunShortcut\"\n | \"IconAnimation\"\n | \"IconBrackets1\"\n | \"IconBrackets2\"\n | \"IconCodeLines\"\n | \"IconApiConnection\"\n | \"IconApiAggregate\"\n | \"IconBugFace\"\n | \"IconBug\"\n | \"IconDebugger\"\n | \"IconPush\"\n | \"IconTestflight\"\n | \"IconHammer\"\n | \"IconEmail1\"\n | \"IconEmailSettings\"\n | \"IconEmailPlus\"\n | \"IconEmail2\"\n | \"IconEmail3\"\n | \"IconEmailNotification\"\n | \"IconPostcard1\"\n | \"IconPostcard2\"\n | \"IconInvite\"\n | \"IconBubble2\"\n | \"IconBubbleAnnotation2\"\n | \"IconBubbles\"\n | \"IconBubble3\"\n | \"IconBubbleAnnotation3\"\n | \"IconBubble4\"\n | \"IconBubbleAnnotation4\"\n | \"IconBubble5\"\n | \"IconBubbleAnnotation5\"\n | \"IconBubble6\"\n | \"IconBubbleAnnotation6\"\n | \"IconBubbleText6\"\n | \"IconBubbleWide\"\n | \"IconBubbleQuotes\"\n | \"IconBubbleWideNotification\"\n | \"IconBubbleWideAnnotation\"\n | \"IconBubbleCheck\"\n | \"IconBubbleText\"\n | \"IconBubbleHeart\"\n | \"IconBubbleDots\"\n | \"IconBubbleCrossed\"\n | \"IconBubblePlus\"\n | \"IconBubbleSparkle\"\n | \"IconBubbleQuestion\"\n | \"IconBubbleAlert\"\n | \"IconBubbleInfo\"\n | \"IconPaperPlane\"\n | \"IconPaperPlaneTopRight\"\n | \"IconCall\"\n | \"IconCallCancel\"\n | \"IconCallOutgoing\"\n | \"IconCallIncoming\"\n | \"IconTelephone\"\n | \"IconVoiceAndVideo\"\n | \"IconBook\"\n | \"IconNewspaper\"\n | \"IconNewspaper1\"\n | \"IconNewspaper2\"\n | \"IconNewspaper3\"\n | \"IconBitcoin\"\n | \"IconEthereum\"\n | \"IconCryptoCoin\"\n | \"IconCrypto\"\n | \"IconCryptoWallet\"\n | \"IconWeb3\"\n | \"IconGas\"\n | \"IconAirdrop2\"\n | \"IconTradingViewSteps\"\n | \"IconTradingViewLine\"\n | \"IconTradingViewCandles\"\n | \"IconCoin1\"\n | \"IconCoin2\"\n | \"IconCoins\"\n | \"IconCoinsAdd\"\n | \"IconCryptopunk\"\n | \"IconSecretPhrase\"\n | \"IconPhone\"\n | \"IconPhoneDynamicIsland\"\n | \"IconOldPhone\"\n | \"IconMacbook\"\n | \"IconMacbookAir\"\n | \"IconMacintosh\"\n | \"IconMacMini\"\n | \"IconMouse\"\n | \"IconMouseScrollDown\"\n | \"IconMouseScrollUp\"\n | \"IconCalculator\"\n | \"IconImac\"\n | \"IconStudioDisplay\"\n | \"IconWebcam\"\n | \"IconUsb\"\n | \"IconUsbC\"\n | \"IconChip\"\n | \"IconTelevision\"\n | \"IconTelevisionOld\"\n | \"IconDevices\"\n | \"IconAirpodCase\"\n | \"IconProcessor\"\n | \"IconServer1\"\n | \"IconServer2\"\n | \"IconSmartwatch1\"\n | \"IconSmartwatch2\"\n | \"IconKeyboardDown\"\n | \"IconKeyboardUp\"\n | \"IconKeyboardCable\"\n | \"IconStorage\"\n | \"IconPrinter\"\n | \"IconSpeaker\"\n | \"IconCircleRecord\"\n | \"IconTape\"\n | \"IconChromecast\"\n | \"IconBluetooth\"\n | \"IconSatellite1\"\n | \"IconSatellite2\"\n | \"IconAirdrop\"\n | \"IconWifiSquare\"\n | \"IconWifiFull\"\n | \"IconWifiWeak\"\n | \"IconWifiNoSignal\"\n | \"IconNfc1\"\n | \"IconNfc2\"\n | \"IconSignalTower\"\n | \"IconLiveFull\"\n | \"IconLiveWeak\"\n | \"IconLiveNoSignal\"\n | \"IconHaptic\"\n | \"IconPhoneHaptic\"\n | \"IconAirplay\"\n | \"IconFullscreen\"\n | \"IconBatteryFull\"\n | \"IconBatteryMedium\"\n | \"IconBatteryLow\"\n | \"IconBatteryEmpty\"\n | \"IconBatteryError\"\n | \"IconBatteryLoading\"\n | \"IconAirplayAudio\"\n | \"IconColorRoll\"\n | \"IconWrite1\"\n | \"IconWrite2\"\n | \"IconFeather\"\n | \"IconColorPicker\"\n | \"IconBrush\"\n | \"IconPencil\"\n | \"IconEraser\"\n | \"IconEraserSimple\"\n | \"IconMarker\"\n | \"IconMarkerCircle\"\n | \"IconPencilWave\"\n | \"IconPencilLine\"\n | \"IconTextEdit\"\n | \"IconWriting\"\n | \"IconHighlight\"\n | \"IconCircle\"\n | \"IconWhiteboard\"\n | \"IconRuler\"\n | \"IconEditSmall1\"\n | \"IconEditSmall2\"\n | \"IconEditBig\"\n | \"IconSlice\"\n | \"IconBezierCurve\"\n | \"IconVectorLogo\"\n | \"IconBezierCircle\"\n | \"IconBezier\"\n | \"IconBezierAdd\"\n | \"IconBezierRemove\"\n | \"IconBezierPointer\"\n | \"IconBezierEdit\"\n | \"IconColorPalette\"\n | \"IconColorSwatch\"\n | \"IconColors\"\n | \"IconSignature\"\n | \"IconToolbox\"\n | \"IconMarkdown\"\n | \"IconMagnet\"\n | \"IconBooleanGroupUnion\"\n | \"IconBooleanGroupUnion2\"\n | \"IconBooleanGroupSubstract\"\n | \"IconBooleanGroupIntersect\"\n | \"IconBooleanGroupIntersect2\"\n | \"IconBooleanGroupIntersect3\"\n | \"IconBooleanGroupExclude\"\n | \"IconBooleanGroupSubstract2\"\n | \"IconComponents\"\n | \"IconKeyframe\"\n | \"IconAddKeyframe\"\n | \"IconRemoveKeyframe\"\n | \"IconRecKeyframe2\"\n | \"IconRecKeyframe\"\n | \"IconVariables\"\n | \"IconSummary\"\n | \"IconRewrite1\"\n | \"IconRewrite2\"\n | \"IconRewrite\"\n | \"IconRepaint\"\n | \"IconCornerRadius\"\n | \"IconLineThickness\"\n | \"IconSettingsToggle1\"\n | \"IconSettingsToggle2\"\n | \"IconSettingsGear1\"\n | \"IconSettingsGear2\"\n | \"IconSettingsGear3\"\n | \"IconMaintenance\"\n | \"IconSettingsSliderHor\"\n | \"IconSettingsSliderVer\"\n | \"IconSettingsSliderThree\"\n | \"IconSettingsKnob\"\n | \"IconFilter1\"\n | \"IconFilter2\"\n | \"IconFilterCircle\"\n | \"IconFilterAscending\"\n | \"IconFilterDescending\"\n | \"IconFilterTimeline\"\n | \"IconSortArrowUpDown\"\n | \"IconFilterDesc\"\n | \"IconFilterAsc\"\n | \"IconReorder\"\n | \"IconToggle\"\n | \"IconFolder1\"\n | \"IconFolder2\"\n | \"IconFolders\"\n | \"IconFolderAddRight\"\n | \"IconFolderAddLeft\"\n | \"IconFolderDelete\"\n | \"IconFolderBookmarks\"\n | \"IconFolderRestricted\"\n | \"IconFolderCloud\"\n | \"IconFolderLink\"\n | \"IconFolderLink2\"\n | \"IconFolderShared\"\n | \"IconFolderUpload\"\n | \"IconFolderDownload\"\n | \"IconFolderOpen\"\n | \"IconArchive\"\n | \"IconFloppyDisk1\"\n | \"IconFloppyDisk2\"\n | \"IconServer\"\n | \"IconSdCard\"\n | \"IconSimCard1\"\n | \"IconSimCard2\"\n | \"IconFiles\"\n | \"IconFileBend\"\n | \"IconFileCloud\"\n | \"IconFileChart\"\n | \"IconFileDownload\"\n | \"IconFileText\"\n | \"IconFileLock\"\n | \"IconFileLink\"\n | \"IconFileEdit\"\n | \"IconPageEmpty\"\n | \"IconPageText\"\n | \"IconPageSearchLines\"\n | \"IconPageAttachment\"\n | \"IconPageSearch\"\n | \"IconPageTextSearch\"\n | \"IconPagePieChart\"\n | \"IconPageTextPieChart\"\n | \"IconPageLock\"\n | \"IconPageTextLock\"\n | \"IconPageCloud\"\n | \"IconPageTextCloud\"\n | \"IconPageLink\"\n | \"IconPageTextLink\"\n | \"IconPageEdit\"\n | \"IconPageEditText\"\n | \"IconPageCheck\"\n | \"IconPageAdd\"\n | \"IconPageTextAdd\"\n | \"IconPageCross\"\n | \"IconPageCrossText\"\n | \"IconFileJpg\"\n | \"IconFilePng\"\n | \"IconFilePdf\"\n | \"IconNotebook\"\n | \"IconSketchbook\"\n | \"IconNotes\"\n | \"IconLibrary\"\n | \"IconDossier\"\n | \"IconFolderPaper\"\n | \"IconFinder\"\n | \"IconFinderFace\"\n | \"IconZip\"\n | \"IconFileZip\"\n | \"IconTable\"\n | \"IconNoteText\"\n | \"IconNote1\"\n | \"IconNote2\"\n | \"IconBlankPagePortrait\"\n | \"IconBlankPageLandscape\"\n | \"IconListBullets\"\n | \"IconNotepad\"\n | \"IconScript\"\n | \"IconScript2\"\n | \"IconStrawberry\"\n | \"IconSushi\"\n | \"IconPancakes\"\n | \"IconTapas\"\n | \"IconSteak\"\n | \"IconSteakSteamLines\"\n | \"IconCheeseburger\"\n | \"IconBurger\"\n | \"IconDrink\"\n | \"IconCup\"\n | \"IconCupHot\"\n | \"IconHotDrinkCup\"\n | \"IconCookies\"\n | \"IconBirthdayCake\"\n | \"IconApples\"\n | \"IconAppleNewton\"\n | \"IconPopsicle1\"\n | \"IconPopsicle2\"\n | \"IconPizza\"\n | \"IconDonut\"\n | \"IconDonutGlaze\"\n | \"IconAvocado\"\n | \"IconBreakfast\"\n | \"IconOrange\"\n | \"IconCherry\"\n | \"IconToast\"\n | \"IconPopcorn\"\n | \"IconBottle\"\n | \"IconCocktail\"\n | \"IconFoodExperiences\"\n | \"IconFoodBell\"\n | \"IconForkKnife\"\n | \"IconForkSpoon\"\n | \"IconFork\"\n | \"IconCereals\"\n | \"IconToque\"\n | \"IconCooking\"\n | \"IconIcebowl\"\n | \"IconChairModern\"\n | \"IconChair\"\n | \"IconArmchair\"\n | \"IconSofa\"\n | \"IconDrawer1\"\n | \"IconDrawer2\"\n | \"IconDrawer3\"\n | \"IconDrawer4\"\n | \"IconCabinet\"\n | \"IconDresser\"\n | \"IconWardrobe\"\n | \"IconBed\"\n | \"IconDeskOffice\"\n | \"IconDeskOffice2\"\n | \"IconFridge\"\n | \"IconDishwasher\"\n | \"IconWashingMachine\"\n | \"IconGamepad\"\n | \"IconGamepadControls\"\n | \"IconGamepadControlsRight\"\n | \"IconGamepadControlsLeft\"\n | \"IconGamepadControlsUp\"\n | \"IconGamepadControlsDown\"\n | \"IconGamepadControlsRound\"\n | \"IconGamepadControlsRoundRight\"\n | \"IconGamepadControlsRoundLeft\"\n | \"IconGamepadControlsRoundUp\"\n | \"IconGamepadControlsRoundDown\"\n | \"IconDice1\"\n | \"IconDice2\"\n | \"IconDice3\"\n | \"IconDice4\"\n | \"IconDice5\"\n | \"IconDice6\"\n | \"IconDices\"\n | \"IconRoulette1\"\n | \"IconRoulette2\"\n | \"IconSlots\"\n | \"IconScratchCard\"\n | \"IconSword\"\n | \"IconThumbsUp\"\n | \"IconThumbsDown\"\n | \"IconThumbUpCurved\"\n | \"IconThumbDownCurved\"\n | \"IconRaisingHand4Finger\"\n | \"IconHand4Finger\"\n | \"IconBlip\"\n | \"IconRaisingHand5Finger\"\n | \"IconHand5Finger\"\n | \"IconPointer\"\n | \"IconPinch\"\n | \"IconShaka1\"\n | \"IconShaka2\"\n | \"IconTouch\"\n | \"IconTouchGrass\"\n | \"IconFistbump\"\n | \"IconMagicHands\"\n | \"IconMoneyHand\"\n | \"IconHumanMashine\"\n | \"IconBookmark\"\n | \"IconBookmarkRemove\"\n | \"IconBookmarkPlus\"\n | \"IconBookmarkDelete\"\n | \"IconBookmarkCheck\"\n | \"IconMagnifyingGlass\"\n | \"IconMagnifyingGlass2\"\n | \"IconSearchMenu\"\n | \"IconZoomIn\"\n | \"IconZoomOut\"\n | \"IconBell\"\n | \"IconBellOff\"\n | \"IconBellCheck\"\n | \"IconBell2\"\n | \"IconBell2Snooze\"\n | \"IconHandBell\"\n | \"IconArchive1\"\n | \"IconUnarchiv\"\n | \"IconBox2\"\n | \"IconBox2AltFill\"\n | \"IconInboxEmpty\"\n | \"IconTodos\"\n | \"IconTasks\"\n | \"IconWindow\"\n | \"IconSquareBehindSquare1\"\n | \"IconSquareBehindSquare2\"\n | \"IconSquareBehindSquare3\"\n | \"IconSquareBehindSquare4\"\n | \"IconSquareDotedBehindSquare\"\n | \"IconSquareBehindSquare6\"\n | \"IconSquareLines\"\n | \"IconTrashCan\"\n | \"IconTrashCanSimple\"\n | \"IconTrashPaper\"\n | \"IconBucket\"\n | \"IconShredder\"\n | \"IconCompassRound\"\n | \"IconCompassSquare\"\n | \"IconWindowApp\"\n | \"IconWindow2\"\n | \"IconSquareCircleTopRight\"\n | \"IconStar\"\n | \"IconStarLines\"\n | \"IconFeature\"\n | \"IconReview\"\n | \"IconShapesPlusXSquareCircle\"\n | \"IconSquareCheck\"\n | \"IconCircleCheck\"\n | \"IconCheckmark1\"\n | \"IconCheckmark1Small\"\n | \"IconCheckmark2\"\n | \"IconCheckmark2Small\"\n | \"IconChecklist\"\n | \"IconPlanning\"\n | \"IconShareAndroid\"\n | \"IconShareOs\"\n | \"IconThumbtack\"\n | \"IconPin\"\n | \"IconUnpin\"\n | \"IconSquareArrowDown\"\n | \"IconCircleArrowDown\"\n | \"IconArrowInbox\"\n | \"IconInboxChecked\"\n | \"IconArrowBoxRight\"\n | \"IconArrowOutOfBox\"\n | \"IconArrowBoxLeft\"\n | \"IconArrowRounded\"\n | \"IconImport\"\n | \"IconImport2\"\n | \"IconSidebar\"\n | \"IconSquareInfo\"\n | \"IconCircleInfo\"\n | \"IconCircleQuestionmark\"\n | \"IconCircleBanSign\"\n | \"IconTriangleExclamation\"\n | \"IconChainLink1\"\n | \"IconBrokenChainLink1\"\n | \"IconChainLink2\"\n | \"IconBrokenChainLink2\"\n | \"IconChainLink3\"\n | \"IconBrokenChainLink3\"\n | \"IconChainLink4\"\n | \"IconCircleDashed\"\n | \"IconCircleDotted\"\n | \"IconCirclePlaceholderOn\"\n | \"IconCirclePlaceholderOff\"\n | \"IconCirclePlus\"\n | \"IconCircleMinus\"\n | \"IconCircleX\"\n | \"IconSquarePlaceholderDashed\"\n | \"IconSquarePlaceholder\"\n | \"IconSquarePlus\"\n | \"IconSquareMinus\"\n | \"IconSquareX\"\n | \"IconArrowLeftX\"\n | \"IconHeart\"\n | \"IconHeart2\"\n | \"IconBrokenHeart\"\n | \"IconHeartBeat\"\n | \"IconElectrocardiogram\"\n | \"IconTargetArrow\"\n | \"IconTarget\"\n | \"IconTarget1\"\n | \"IconTarget2\"\n | \"IconClipboard\"\n | \"IconClipboard2\"\n | \"IconCircleDotsCenter1\"\n | \"IconCircleDotsCenter2\"\n | \"IconPaperclip1\"\n | \"IconPaperclip2\"\n | \"IconPaperclip3\"\n | \"IconAnchor1\"\n | \"IconAnchor2\"\n | \"IconWindowCursor\"\n | \"IconGauge\"\n | \"IconArrowsAllSides\"\n | \"IconArrowsAllSides2\"\n | \"IconBarcode\"\n | \"IconQrCode\"\n | \"IconLightBulb\"\n | \"IconLightBulbSimple\"\n | \"IconSquareGridMaginfyingGlass\"\n | \"IconSquareGridCircle\"\n | \"IconCrossLarge\"\n | \"IconCrossSmall\"\n | \"IconBarsTwo\"\n | \"IconBarsTwo2\"\n | \"IconBarsThree\"\n | \"IconBarsThree2\"\n | \"IconBarsThree3\"\n | \"IconDotGrid3x3\"\n | \"IconDotGrid2x3\"\n | \"IconDotGrid1x3Horizontal\"\n | \"IconDotGrid1x3Vertical\"\n | \"IconLoader\"\n | \"IconPlusLarge\"\n | \"IconPlusSmall\"\n | \"IconMinusLarge\"\n | \"IconMinusSmall\"\n | \"IconMathEqualsCircle\"\n | \"IconMathEquals\"\n | \"IconMathGreaterThanCircle\"\n | \"IconMathGreaterThan\"\n | \"IconMathLessThanCircle\"\n | \"IconMathLessThan\"\n | \"IconMathBasic\"\n | \"IconMathScientific\"\n | \"IconMathNotes\"\n | \"IconMathMultiplication\"\n | \"IconSquareChecklist\"\n | \"IconSquareChecklistMagnifyingGlass\"\n | \"IconSquareChecklistBell\"\n | \"IconQuickSearch\"\n | \"IconLightbulbGlow\"\n | \"IconLoadingCircle\"\n | \"IconCmd\"\n | \"IconCmdBox\"\n | \"IconOpt\"\n | \"IconOptAlt\"\n | \"IconEsc\"\n | \"IconBackward\"\n | \"IconAt\"\n | \"IconHashtag\"\n | \"IconControl\"\n | \"IconShift\"\n | \"IconLayoutSidebar\"\n | \"IconLayoutTopbar\"\n | \"IconLayoutDashboard\"\n | \"IconLayoutWindow\"\n | \"IconLayoutTop\"\n | \"IconLayoutBottom\"\n | \"IconLayoutRight\"\n | \"IconLayoutLeft\"\n | \"IconLayoutHalf\"\n | \"IconLayoutThird\"\n | \"IconLayoutGrid1\"\n | \"IconLayoutGrid2\"\n | \"IconLayoutColumn\"\n | \"IconLayoutAlignLeft\"\n | \"IconAlignHorizontalCenter\"\n | \"IconLayoutAlignRight\"\n | \"IconLayoutAlignTop\"\n | \"IconAlignVerticalCenter\"\n | \"IconLayoutAlignBottom\"\n | \"IconSlideAdd\"\n | \"IconColumnWide\"\n | \"IconColumnWideAdd\"\n | \"IconColumnWideRemove\"\n | \"IconColumnWideHalf\"\n | \"IconColumnWideHalfAdd\"\n | \"IconColumnWideHalfRemove\"\n | \"IconSlideWideAdd\"\n | \"IconSlideTallAdd\"\n | \"IconSlidesTall\"\n | \"IconSlidesTallAdd\"\n | \"IconSlidesWide\"\n | \"IconSlidesWideAdd\"\n | \"IconLayersTwo\"\n | \"IconLayersThree\"\n | \"IconLayersBehind\"\n | \"IconCarussel\"\n | \"IconPlaceholder\"\n | \"IconKanbanView\"\n | \"IconSidebarLeftArrow\"\n | \"IconSidebarWideLeftArrow\"\n | \"IconSidebarSimpleLeftWide\"\n | \"IconSidebarSimpleRightWide\"\n | \"IconSidebarSimpleLeftSquare\"\n | \"IconSidebarSimpleRightSquare\"\n | \"IconGlobus\"\n | \"IconEarth\"\n | \"IconWorld\"\n | \"IconMapPin\"\n | \"IconSend\"\n | \"IconInitiatives\"\n | \"IconMap\"\n | \"IconDirection1\"\n | \"IconDirection2\"\n | \"IconLocation\"\n | \"IconPinCircle\"\n | \"IconPinFlag\"\n | \"IconPinLocation\"\n | \"IconMapPinFlat\"\n | \"IconRadar\"\n | \"IconExposure2\"\n | \"IconBlossom\"\n | \"IconRose\"\n | \"IconGrowth\"\n | \"IconTree\"\n | \"IconRainbow\"\n | \"IconSolar\"\n | \"IconSolarPanel\"\n | \"IconGreenPower\"\n | \"IconAtom\"\n | \"IconPumpjack\"\n | \"IconNuclearPowerPlant\"\n | \"IconHomeEnergy\"\n | \"IconHomeEnergy2\"\n | \"IconChargingStation\"\n | \"IconDrillingRig\"\n | \"IconPowerPlant\"\n | \"IconWindPower\"\n | \"IconPeople\"\n | \"IconPeopleAdded\"\n | \"IconPeopleAdd\"\n | \"IconPeopleRemove\"\n | \"IconPeopleAdd2\"\n | \"IconPeopleRemove2\"\n | \"IconPeopleLike\"\n | \"IconPeople2\"\n | \"IconPeopleCircle\"\n | \"IconGroup1\"\n | \"IconGroup2\"\n | \"IconGroup3\"\n | \"IconPeopleCopy\"\n | \"IconContacts\"\n | \"IconHead\"\n | \"IconFocusMode\"\n | \"IconSteveJobs\"\n | \"IconStreaming\"\n | \"IconTeacher\"\n | \"IconTeacherWhiteboard\"\n | \"IconGenderFemale\"\n | \"IconGenderMale\"\n | \"IconWheelchair\"\n | \"IconBathWoman1\"\n | \"IconBathMan1\"\n | \"IconPeopleEdit\"\n | \"IconPeopleVersus\"\n | \"IconCamera1\"\n | \"IconCameraOff1\"\n | \"IconCameraOff\"\n | \"IconCameraAuto\"\n | \"IconCamera2\"\n | \"IconCamera3\"\n | \"IconCamera4\"\n | \"IconZap\"\n | \"IconNoFlash\"\n | \"IconAutoFlash\"\n | \"IconCamera5\"\n | \"IconFullScreen\"\n | \"IconDownsize\"\n | \"IconDownsize2\"\n | \"IconCapture\"\n | \"IconFocusExposure\"\n | \"IconFocusSquare\"\n | \"IconFocusAuto\"\n | \"IconFocusZoomOut\"\n | \"IconFocusZoomIn\"\n | \"IconFocusFlash\"\n | \"IconFocusLock\"\n | \"IconFocusRemove\"\n | \"IconFocusMacro\"\n | \"IconFocusMagic\"\n | \"IconFocusRenew\"\n | \"IconUnblur\"\n | \"IconBlur\"\n | \"IconBrightness\"\n | \"IconHighlights\"\n | \"IconShadows\"\n | \"IconContrast\"\n | \"IconExposure1\"\n | \"IconBrilliance\"\n | \"IconAdjustPhoto\"\n | \"IconVignette\"\n | \"IconNoiseReduction\"\n | \"IconBlackpoint\"\n | \"IconRear\"\n | \"IconImages1\"\n | \"IconImages2\"\n | \"IconImages3\"\n | \"IconRemoveBackground\"\n | \"IconImages4\"\n | \"IconImages5\"\n | \"IconImagesCircle\"\n | \"IconWallpaper\"\n | \"IconCat\"\n | \"IconAspectRatio11\"\n | \"IconAspectRatio43\"\n | \"IconAspectRatio169\"\n | \"IconAspectRatio219\"\n | \"IconAspectRatio34\"\n | \"IconVideo\"\n | \"IconVideoOff\"\n | \"IconVideoOn\"\n | \"IconScreenCapture\"\n | \"IconClapperboard\"\n | \"IconVideoClip\"\n | \"IconVideoRoll\"\n | \"IconMultiMedia\"\n | \"IconVideos\"\n | \"IconVideoTimeline\"\n | \"IconVideoTrim\"\n | \"IconSplit\"\n | \"IconAutoSize\"\n | \"IconCrop\"\n | \"IconGif\"\n | \"IconGifSquare\"\n | \"IconClosedCaptioning\"\n | \"Icon4k\"\n | \"IconHd\"\n | \"IconAlt\"\n | \"IconShareScreen\"\n | \"IconPictureInPicture\"\n | \"IconExpand\"\n | \"IconMinimize\"\n | \"IconLock\"\n | \"IconUnlocked\"\n | \"IconShield\"\n | \"IconShieldCrossed\"\n | \"IconShieldCheck\"\n | \"IconShieldKeyhole\"\n | \"IconShieldCheck2\"\n | \"IconShieldCheck3\"\n | \"IconShieldBreak\"\n | \"IconPassword\"\n | \"IconFaceId\"\n | \"IconFingerPrint1\"\n | \"IconFingerPrint2\"\n | \"IconUmbrellaSecurity\"\n | \"IconLaw\"\n | \"IconKey1\"\n | \"IconKey2\"\n | \"IconPasskeys\"\n | \"IconAsterisk\"\n | \"IconKeyhole\"\n | \"IconAnonymous\"\n | \"IconGhost\"\n | \"IconPassport\"\n | \"IconVault\"\n | \"IconSafeSimple\"\n | \"IconFirewall\"\n | \"IconSiren\"\n | \"IconCreditCard1\"\n | \"IconCreditCardAdd\"\n | \"IconCreditCard2\"\n | \"IconGiroCard\"\n | \"IconGiroCards\"\n | \"IconWallet1\"\n | \"IconWallet2\"\n | \"IconWallet3\"\n | \"IconWallet4\"\n | \"IconBanknote1\"\n | \"IconBanknote2\"\n | \"IconMoneybag\"\n | \"IconEuro\"\n | \"IconYen\"\n | \"IconDollar\"\n | \"IconPound\"\n | \"IconBasket1\"\n | \"IconAddToBasket\"\n | \"IconRemoveFromBasket\"\n | \"IconBasket2\"\n | \"IconAddToBasket2\"\n | \"IconRemoveFromBasket2\"\n | \"IconShoppingBag1\"\n | \"IconShoppingBagLike1\"\n | \"IconShoppingBag2\"\n | \"IconShoppingBagBlock2\"\n | \"IconShoppingBagEdit2\"\n | \"IconShoppingBagBookmark2\"\n | \"IconShoppingBagAdd2\"\n | \"IconShoppingBagLike2\"\n | \"IconShoppingBag3\"\n | \"IconShoppingBag4\"\n | \"IconGift1\"\n | \"IconGiftBox\"\n | \"IconGift2\"\n | \"IconGiftcard\"\n | \"IconPackage\"\n | \"IconPackageDelivery2\"\n | \"IconPackageSearch\"\n | \"IconPackageEdit\"\n | \"IconPackageCkeck\"\n | \"IconPackageBlock\"\n | \"IconPackageRemove\"\n | \"IconPackageAdd\"\n | \"IconPackageSecurity\"\n | \"IconPackageDelivery1\"\n | \"IconPackageIn\"\n | \"IconPackageOut\"\n | \"IconFastDelivery\"\n | \"IconPackageDelivery\"\n | \"IconTruck\"\n | \"IconPercent\"\n | \"IconPayment\"\n | \"IconReceiptCheck\"\n | \"IconReceiptBill\"\n | \"IconReceiptTax\"\n | \"IconReceiptCheck2\"\n | \"IconReceiptStorno\"\n | \"IconCurrencyDollar\"\n | \"IconCurrencyEuro\"\n | \"IconCurrencyYen\"\n | \"IconCurrencyPounds\"\n | \"IconCurrencyRupees\"\n | \"IconCoinRupees\"\n | \"IconCurrencyPesos\"\n | \"IconCoinPesos\"\n | \"IconCoinWon\"\n | \"IconCoinLira\"\n | \"IconCoinRand\"\n | \"IconVolumeFull\"\n | \"IconVolumeHalf\"\n | \"IconVolumeMinimum\"\n | \"IconVolumeOff\"\n | \"IconVolumeDown\"\n | \"IconVolumeUp\"\n | \"IconMute\"\n | \"IconMicrophone\"\n | \"IconMicrophoneOff\"\n | \"IconAudio\"\n | \"IconPlaylist\"\n | \"IconHeadphones\"\n | \"IconKeyboard\"\n | \"IconVoice1\"\n | \"IconVoiceRecord\"\n | \"IconSpeachToText\"\n | \"IconTextToSpeach\"\n | \"IconVoice2\"\n | \"IconVoice3\"\n | \"IconMegaphone\"\n | \"IconPlay\"\n | \"IconPlayCircle\"\n | \"IconPause\"\n | \"IconStop\"\n | \"IconStopCircle\"\n | \"IconRecord\"\n | \"IconRewind5s\"\n | \"IconRewind10s\"\n | \"IconRewind15s\"\n | \"IconRewind30s\"\n | \"IconFastForward5s\"\n | \"IconFastForward10s\"\n | \"IconFastForward15s\"\n | \"IconFastForward30s\"\n | \"IconBack10s\"\n | \"IconForwards10s\"\n | \"IconFastForward\"\n | \"IconRewind\"\n | \"IconSkip\"\n | \"IconBack\"\n | \"IconShuffle\"\n | \"IconRepeat\"\n | \"IconAlbums\"\n | \"IconAirpods\"\n | \"IconAirpodLeft\"\n | \"IconAirpodRight\"\n | \"IconPodcast1\"\n | \"IconPodcast2\"\n | \"IconTennis\"\n | \"IconBasketball\"\n | \"IconSoccer\"\n | \"IconAmericanFootball\"\n | \"IconBaseball\"\n | \"IconVolleyball\"\n | \"IconIceHockey\"\n | \"IconGolfBall\"\n | \"IconFrisbee\"\n | \"IconFrisbeeGolf\"\n | \"IconPickelball\"\n | \"IconBowling\"\n | \"IconKickball\"\n | \"IconVersusCircle\"\n | \"IconChart1\"\n | \"IconChart2\"\n | \"IconWhiteboard1\"\n | \"IconWhiteboard2\"\n | \"IconAnalytics\"\n | \"IconPieChart1\"\n | \"IconPieChart2\"\n | \"IconTrending1\"\n | \"IconTrending2\"\n | \"IconTrending3\"\n | \"IconTrending4\"\n | \"IconTrending5\"\n | \"IconPointChart\"\n | \"IconTrendingCircle\"\n | \"IconChart3\"\n | \"IconChart4\"\n | \"IconChart5\"\n | \"IconChart6\"\n | \"IconChart7\"\n | \"IconLineChart1\"\n | \"IconLineChart2\"\n | \"IconLineChart3\"\n | \"IconLineChart4\"\n | \"IconLeaderboard\"\n | \"IconEmojiSmilingFace\"\n | \"IconEmojiSmiley\"\n | \"IconEmojiAlt\"\n | \"IconEmojiArc\"\n | \"IconEmojiSmile\"\n | \"IconEmojiAddReaction\"\n | \"IconEmojiSad\"\n | \"IconEmojiSleep\"\n | \"IconAlien\"\n | \"IconMask\"\n | \"IconPoop\"\n | \"IconToiletPaper\"\n | \"IconDoorHanger\"\n | \"IconCirclesThree\"\n | \"IconPlayground\"\n | \"IconTactics1\"\n | \"IconTactics2\"\n | \"IconSubscriptionTick1\"\n | \"IconSubscriptionTick2\"\n | \"IconSubscriptionStar\"\n | \"IconSupport\"\n | \"IconReceiptionBell\"\n | \"IconRescueRing\"\n | \"IconParachute\"\n | \"IconScissors1\"\n | \"IconScissors2\"\n | \"IconStocks\"\n | \"IconDashboardFast\"\n | \"IconDashboardMiddle\"\n | \"IconDashboardLow\"\n | \"IconLimit\"\n | \"IconFire1\"\n | \"IconFire2\"\n | \"IconFire3\"\n | \"IconConstructionHelmet\"\n | \"IconReadingList\"\n | \"IconSuitcase\"\n | \"IconTicket\"\n | \"IconFlag1\"\n | \"IconFlag2\"\n | \"IconPiggyBank\"\n | \"IconTeddyBear\"\n | \"IconDiamond\"\n | \"IconDiamondShine\"\n | \"IconBike\"\n | \"IconMountainBike\"\n | \"IconDeliveryBike\"\n | \"IconRoller\"\n | \"IconRocket\"\n | \"IconUfo\"\n | \"IconDirectorChair\"\n | \"IconLab\"\n | \"IconTestTube\"\n | \"IconShovel\"\n | \"IconTag\"\n | \"IconLifeVest\"\n | \"IconCrown\"\n | \"IconPillow\"\n | \"IconPillowZz\"\n | \"IconCap\"\n | \"IconWip\"\n | \"IconStamps\"\n | \"IconInfinity\"\n | \"IconBlackHole\"\n | \"IconSpace\"\n | \"IconSticker\"\n | \"IconBomb\"\n | \"IconTrophy\"\n | \"IconMedal\"\n | \"IconCelebrate\"\n | \"IconExplosion\"\n | \"IconGalaxy\"\n | \"IconMakeItPop\"\n | \"IconNailedIt\"\n | \"IconPushTheButton\"\n | \"IconGraduateCap\"\n | \"IconBalloon\"\n | \"IconPuzzle\"\n | \"IconPlugin1\"\n | \"IconPlugin2\"\n | \"IconLiveActivity\"\n | \"IconStage\"\n | \"IconOrganisation\"\n | \"IconCopyright\"\n | \"IconThread\"\n | \"IconBaymax\"\n | \"IconUnicorn\"\n | \"IconPets\"\n | \"IconPokeball\"\n | \"IconBroom\"\n | \"IconBooks\"\n | \"IconPilone\"\n | \"IconParasol\"\n | \"IconBag\"\n | \"IconBag2\"\n | \"IconSuitcaseWork\"\n | \"IconSuitcaseSticker\"\n | \"IconBackpack\"\n | \"IconCurtain\"\n | \"IconWarningSign\"\n | \"IconWreath\"\n | \"IconThinkingBubble\"\n | \"IconJudgeGavel\"\n | \"IconFashion\"\n | \"IconMouth\"\n | \"IconFootsteps\"\n | \"IconPeace\"\n | \"IconAirplane\"\n | \"IconAirplaneUp\"\n | \"IconAirplaneDown\"\n | \"IconForYou\"\n | \"IconBean\"\n | \"IconMedicineTablett\"\n | \"IconMedicinePill\"\n | \"IconMedicinePill2\"\n | \"IconWaste\"\n | \"IconSteeringWheel\"\n | \"IconTreasure\"\n | \"IconTelescope\"\n | \"IconBee\"\n | \"IconThinkingBubble1\"\n | \"IconSocial\"\n | \"IconTrainFrontView\"\n | \"IconBus\"\n | \"IconCar9\"\n | \"IconCar9Ev\"\n | \"IconCar8\"\n | \"IconCar8Ev\"\n | \"IconCar10\"\n | \"IconCar10Ev\"\n | \"IconCar1\"\n | \"IconCar1Ev\"\n | \"IconCar7\"\n | \"IconCar7Ev\"\n | \"IconCar6\"\n | \"IconCar6Ev\"\n | \"IconCar5\"\n | \"IconCar5Ev\"\n | \"IconCar4\"\n | \"IconCar4Ev\"\n | \"IconCar3\"\n | \"IconCar3Ev\"\n | \"IconCar2\"\n | \"IconCar2Ev\"\n | \"IconCarFrontView\"\n | \"IconCalendar1\"\n | \"IconCalendarTearOff\"\n | \"IconCalendar2\"\n | \"IconCalenderAdd\"\n | \"IconCalenderRemove\"\n | \"IconCalendarCheck\"\n | \"IconCalendarEdit\"\n | \"IconCalendarSearch\"\n | \"IconCalendarRepeat\"\n | \"IconCalenderToday\"\n | \"IconCalenderTomorrow\"\n | \"IconCalenderNextWeek\"\n | \"IconCalendarDays\"\n | \"IconCalendarClock\"\n | \"IconCalendar3\"\n | \"IconCalendar4\"\n | \"IconCalender5\"\n | \"IconCalendarSearch4\"\n | \"IconCalendarRemove4\"\n | \"IconCalendarAdd4\"\n | \"IconCalendarCheck4\"\n | \"IconCalendarClock4\"\n | \"IconClockSquare\"\n | \"IconClock\"\n | \"IconHistory\"\n | \"IconClockAlert\"\n | \"IconClockSnooze\"\n | \"IconSleep\"\n | \"IconStopwatch\"\n | \"IconTimeFlies\"\n | \"IconHourglass\"\n | \"IconDateDaily\"\n | \"IconDateWeekly\"\n | \"IconDateWeekdays\"\n | \"IconDateMonthly\"\n | \"IconDateCustom\"\n | \"IconDateYearly\"\n | \"IconAlignmentCenter\"\n | \"IconAlignmentLeft\"\n | \"IconAlignmentRight\"\n | \"IconAlignmentJustify\"\n | \"IconLineHeight\"\n | \"IconConcise\"\n | \"IconSpacer\"\n | \"IconDivider\"\n | \"IconAlignmentLeftBar\"\n | \"IconVerticalAlignmentLeft\"\n | \"IconVerticalAlignmentCenter\"\n | \"IconVerticalAlignmentRight\"\n | \"IconHorizontalAlignmentTop\"\n | \"IconHorizontalAlignmentCenter\"\n | \"IconHorizontalAlignmentBottom\"\n | \"IconTextSelectDashed\"\n | \"IconTextSelect\"\n | \"IconBold\"\n | \"IconItalic\"\n | \"IconStrikeThrough\"\n | \"IconUnderline\"\n | \"IconRemoveTextstyle\"\n | \"IconTextMotion\"\n | \"IconBulletList\"\n | \"IconNumberedList\"\n | \"IconTextBlock\"\n | \"IconWrite\"\n | \"IconTextIndentLeft\"\n | \"IconTextIndentRight\"\n | \"IconTextSize\"\n | \"IconText1\"\n | \"IconText2\"\n | \"IconTextIndicator\"\n | \"IconParagraph\"\n | \"IconTitleCase\"\n | \"IconTextColor\"\n | \"IconAutoCorrect\"\n | \"IconSubscript\"\n | \"IconSuperscript\"\n | \"IconHeadline\"\n | \"IconH1\"\n | \"IconH2\"\n | \"IconH3\"\n | \"IconInsertHtml\"\n | \"IconLinebreak\"\n | \"IconTranslate\"\n | \"IconOpenQuote1\"\n | \"IconCloseQuote1\"\n | \"IconOpenQuote2\"\n | \"IconCloseQuote2\"\n | \"IconAlpha\"\n | \"IconBeta\"\n | \"IconOmega\"\n | \"IconSun\"\n | \"IconMoon\"\n | \"IconMoonStar\"\n | \"IconLightning\"\n | \"IconThunder\"\n | \"IconSnowFlakes\"\n | \"IconWind\"\n | \"IconCloudy\"\n | \"IconCloudySun\"\n | \"IconRainy\"\n | \"IconRainyLight\"\n | \"IconCloudSnow\"\n | \"IconSunriseArrowUp\"\n | \"IconSunsetArrowDown\"\n | \"IconSunrise\"\n | \"IconSunset\"\n | \"IconDrop\"\n | \"IconThermostat\";\n\nexport const centralIcons: Record<\n CentralIconName,\n { title: string; svg: string; category: string }\n> = {\n IconCirclePerson: {\n title: \"circle-person, accessibility, a11y\",\n svg: '<path d=\"M12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14.2485 16.25C12.7476 14.7408 11.9999 13.2338 11.9985 11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 16.25C11.2894 14.758 11.9998 13.2338 11.9984 11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.75 10.6912C8.75 10.6912 10.7206 10.9559 11.9996 10.9559C13.2787 10.9559 15.25 10.6912 15.25 10.6912\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 8C12.75 8.41421 12.4142 8.75 12 8.75C11.5858 8.75 11.25 8.41421 11.25 8C11.25 7.58579 11.5858 7.25 12 7.25C12.4142 7.25 12.75 7.58579 12.75 8Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Accessibility\",\n },\n IconEar: {\n title: \"ear, hearing, loud\",\n svg: '<path d=\"M14.9834 16.2227L17.4917 13.7402C18.6169 12.6266 19.25 11.1022 19.25 9.51911C19.25 5.79119 16.2279 2.75 12.5 2.75C8.77208 2.75 5.75 5.77208 5.75 9.5V17.3923C5.75 19.5229 7.47713 21.25 9.60765 21.25C11.0631 21.25 12.3946 20.4309 13.0509 19.1318L13.4704 18.3014C13.8594 17.5315 14.3703 16.8295 14.9834 16.2227Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.5 9.3125C15.5 7.7592 14.1569 6.5 12.5 6.5C10.8431 6.5 9.5 7.9467 9.5 9.5C9.5 11.7304 10.7 12.6875 9.5 15.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Accessibility\",\n },\n IconEyeOpen: {\n title: \"eye-open, show, see, reveal, look, visible\",\n svg: '<path d=\"M2 11.9999L1.32902 11.6648C1.22366 11.8758 1.22366 12.124 1.32902 12.335L2 11.9999ZM22 12L22.671 12.3351C22.7763 12.1241 22.7763 11.8759 22.671 11.6649L22 12ZM2.67098 12.335C4.9893 7.69273 8.55546 5.49997 12 5.5C15.4445 5.50003 19.0107 7.69284 21.329 12.3351L22.671 11.6649C20.1618 6.64058 16.1417 4.00003 12 4C7.85827 3.99997 3.83815 6.64046 1.32902 11.6648L2.67098 12.335ZM1.32902 12.335C3.83815 17.3593 7.85826 19.9999 12 19.9999C16.1417 20 20.1618 17.3595 22.671 12.3351L21.329 11.6649C19.0107 16.3072 15.4445 18.4999 12 18.4999C8.55547 18.4999 4.9893 16.3071 2.67098 11.6648L1.32902 12.335ZM14.5 12C14.5 13.3807 13.3807 14.5 12 14.5V16C14.2091 16 16 14.2091 16 12H14.5ZM12 14.5C10.6193 14.5 9.5 13.3807 9.5 12H8C8 14.2091 9.79086 16 12 16V14.5ZM9.5 12C9.5 10.6193 10.6193 9.5 12 9.5V8C9.79086 8 8 9.79086 8 12H9.5ZM12 9.5C13.3807 9.5 14.5 10.6193 14.5 12H16C16 9.79086 14.2091 8 12 8V9.5Z\" fill=\"currentColor\"/>',\n category: \"Accessibility\",\n },\n IconEyeClosed: {\n title: \"eye-closed, see, hidden\",\n svg: '<path d=\"M3.75 13.0199C8.54029 18.1132 15.4597 18.1132 20.25 13.0199M3.75 7.62257C6.14516 5.07587 9.0726 3.80251 12 3.80249C14.9274 3.80247 17.8549 5.07576 20.25 7.62238M12 17V20.25M8.25004 16.5L6.75004 18.9821M15.5 16.5001L17.25 18.9821\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Accessibility\",\n },\n IconEyeSlash: {\n title: \"eye-slash, hide, eye off, see, look, not visible\",\n svg: '<path d=\"M9.38159 5.13889C13.9621 3.76021 19.0273 6.04727 22 12C21.331 13.3396 20.5561 14.4936 19.7046 15.4619\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.5 9.92322C9.03166 10.4864 8.75 11.2103 8.75 12C8.75 13.7949 10.2051 15.25 12 15.25C12.8035 15.25 13.5389 14.9584 14.1061 14.4753\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.22301 6.75C4.60283 7.95524 3.14595 9.7052 2 11.9999C5.53712 19.0827 12.0364 20.9759 17.1571 17.6795\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.75 2.75L21.25 21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Accessibility\",\n },\n IconEyeSlash2: {\n title: \"eye-slash-2, accessibility eye, a11y\",\n svg: '<path d=\"M9.16665 4.42071C8.77001 4.5401 8.54526 4.95841 8.66464 5.35505C8.78402 5.75169 9.20234 5.97645 9.59897 5.85706L9.16665 4.42071ZM22.0013 12L22.6722 12.3351C22.7776 12.1241 22.7776 11.8759 22.6722 11.6649L22.0013 12ZM19.1426 14.9666C18.869 15.2776 18.8995 15.7515 19.2105 16.0251C19.5215 16.2986 19.9954 16.2682 20.269 15.9571L19.1426 14.9666ZM3.28033 2.21967C2.98744 1.92678 2.51256 1.92678 2.21967 2.21967C1.92678 2.51256 1.92678 2.98744 2.21967 3.28033L3.28033 2.21967ZM6.5297 6.5297L7.06003 5.99937L6.5297 6.5297ZM2 11.9999L1.32902 11.6648C1.22366 11.8758 1.22366 12.124 1.32902 12.335L2 11.9999ZM20.7197 21.7803C21.0126 22.0732 21.4874 22.0732 21.7803 21.7803C22.0732 21.4874 22.0732 21.0126 21.7803 20.7197L20.7197 21.7803ZM13.7678 13.7678C13.4749 14.0607 13.4749 14.5355 13.7678 14.8284C14.0607 15.1213 14.5355 15.1213 14.8284 14.8284L13.7678 13.7678ZM9.17157 9.17157C8.87868 9.46447 8.87868 9.93934 9.17157 10.2322C9.46447 10.5251 9.93934 10.5251 10.2322 10.2322L9.17157 9.17157ZM3.94835 8.94835L3.36673 8.47484L3.94835 8.94835ZM9.59897 5.85706C13.7463 4.60878 18.4782 6.624 21.3303 12.3351L22.6722 11.6649C19.5788 5.47055 14.1804 2.91165 9.16665 4.42071L9.59897 5.85706ZM20.269 15.9571C21.1666 14.9364 21.9768 13.7277 22.6722 12.3351L21.3303 11.6649C20.6877 12.9515 19.948 14.0507 19.1426 14.9666L20.269 15.9571ZM2.21967 3.28033L5.99937 7.06003L7.06003 5.99937L3.28033 2.21967L2.21967 3.28033ZM5.99937 7.06003L16.9399 18.0006L18.0006 16.9399L7.06003 5.99937L5.99937 7.06003ZM16.9399 18.0006L20.7197 21.7803L21.7803 20.7197L18.0006 16.9399L16.9399 18.0006ZM2.21967 3.28033L20.7197 21.7803L21.7803 20.7197L3.28033 2.21967L2.21967 3.28033ZM13.7678 10.2322C14.7441 11.2085 14.7441 12.7915 13.7678 13.7678L14.8284 14.8284C16.3905 13.2663 16.3905 10.7337 14.8284 9.17157L13.7678 10.2322ZM10.2322 10.2322C11.2085 9.25592 12.7915 9.25592 13.7678 10.2322L14.8284 9.17157C13.2663 7.60948 10.7337 7.60948 9.17157 9.17157L10.2322 10.2322ZM2.67098 12.335C3.22508 11.2255 3.85149 10.2553 4.52998 9.42186L3.36673 8.47484C2.61382 9.39967 1.92877 10.4639 1.32902 11.6648L2.67098 12.335ZM4.52998 9.42186C5.28366 8.49609 6.10156 7.73908 6.95699 7.14609L6.10242 5.91332C5.12337 6.59201 4.20315 7.44743 3.36673 8.47484L4.52998 9.42186ZM3.41802 9.47868L13.4894 19.5501L14.5501 18.4894L4.47868 8.41802L3.41802 9.47868ZM1.32902 12.335C4.28728 18.2587 9.35224 20.8614 14.1877 19.7507L13.8519 18.2888C9.8525 19.2074 5.40033 17.1301 2.67098 11.6648L1.32902 12.335ZM14.1877 19.7507C15.475 19.455 16.7273 18.8979 17.8975 18.0866L17.043 16.8539C16.0211 17.5622 14.9437 18.038 13.8519 18.2888L14.1877 19.7507Z\" fill=\"currentColor\"/>',\n category: \"Accessibility\",\n },\n IconCircleHalfFill: {\n title: \"circle-half-fill, contrast\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5V20.5ZM22 12C22 17.5228 17.5228 22 12 22C11.7275 22 11.4573 21.9891 11.19 21.9676C6.04558 21.5549 2 17.2502 2 12C2 6.74975 6.04558 2.44515 11.19 2.03237C11.4573 2.01092 11.7275 2 12 2C17.5228 2 22 6.47715 22 12Z\" fill=\"currentColor\"/>',\n category: \"Accessibility\",\n },\n IconSquareLinesBottom: {\n title: \"square-lines-bottom, transcription\",\n svg: '<path d=\"M6.75 15.25H11.25M14.75 15.25H17.25M6.75 11.25H8.25M11.75 11.25H17.25M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Accessibility\",\n },\n IconImageAltText: {\n title: \"image-alt-text\",\n svg: '<path d=\"M6.75 17.25H12.25M15.25 17.25H17.25M20.25 14.25V3.75H3.75V12.0577M20.25 14.25V20.25H3.75V14.25M20.25 14.25H14.2767M3.75 14.25V12.0577M3.75 14.25H14.2767M3.75 12.0577L7.95 7.75L14.2767 14.25M17.25 8.25C17.25 9.07843 16.5784 9.75 15.75 9.75C14.9216 9.75 14.25 9.07843 14.25 8.25C14.25 7.42157 14.9216 6.75 15.75 6.75C16.5784 6.75 17.25 7.42157 17.25 8.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Accessibility\",\n },\n IconSparklesThree: {\n title: \"sparkles-three, ai 3 stars, sparkles, ✨\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13 7C13.4142 7 13.75 7.33579 13.75 7.75C13.75 10.1758 14.2859 11.7513 15.2673 12.7327C16.2487 13.7141 17.8242 14.25 20.25 14.25C20.6642 14.25 21 14.5858 21 15C21 15.4142 20.6642 15.75 20.25 15.75C17.8242 15.75 16.2487 16.2859 15.2673 17.2673C14.2859 18.2487 13.75 19.8242 13.75 22.25C13.75 22.6642 13.4142 23 13 23C12.5858 23 12.25 22.6642 12.25 22.25C12.25 19.8242 11.7141 18.2487 10.7327 17.2673C9.75127 16.2859 8.17581 15.75 5.75 15.75C5.33579 15.75 5 15.4142 5 15C5 14.5858 5.33579 14.25 5.75 14.25C8.17581 14.25 9.75127 13.7141 10.7327 12.7327C11.7141 11.7513 12.25 10.1758 12.25 7.75C12.25 7.33579 12.5858 7 13 7ZM13 12.0086C12.699 12.6893 12.3008 13.2859 11.7934 13.7934C11.2859 14.3008 10.6893 14.699 10.0086 15C10.6893 15.301 11.2859 15.6992 11.7934 16.2066C12.3008 16.7141 12.699 17.3107 13 17.9914C13.301 17.3107 13.6992 16.7141 14.2066 16.2066C14.7141 15.6992 15.3107 15.301 15.9914 15C15.3107 14.699 14.7141 14.3008 14.2066 13.7934C13.6992 13.2859 13.301 12.6893 13 12.0086Z\" fill=\"currentColor\"/><path d=\"M6 5.5C6 5.22386 5.77614 5 5.5 5C5.22386 5 5 5.22386 5 5.5C5 6.48063 4.78279 7.0726 4.4277 7.4277C4.0726 7.78279 3.48063 8 2.5 8C2.22386 8 2 8.22386 2 8.5C2 8.77614 2.22386 9 2.5 9C3.48063 9 4.0726 9.21721 4.4277 9.5723C4.78279 9.9274 5 10.5194 5 11.5C5 11.7761 5.22386 12 5.5 12C5.77614 12 6 11.7761 6 11.5C6 10.5194 6.21721 9.9274 6.5723 9.5723C6.9274 9.21721 7.51937 9 8.5 9C8.77614 9 9 8.77614 9 8.5C9 8.22386 8.77614 8 8.5 8C7.51937 8 6.9274 7.78279 6.5723 7.4277C6.21721 7.0726 6 6.48063 6 5.5Z\" fill=\"currentColor\"/><path d=\"M11 1.5C11 1.22386 10.7761 1 10.5 1C10.2239 1 10 1.22386 10 1.5C10 2.13341 9.85918 2.47538 9.66728 2.66728C9.47538 2.85918 9.13341 3 8.5 3C8.22386 3 8 3.22386 8 3.5C8 3.77614 8.22386 4 8.5 4C9.13341 4 9.47538 4.14082 9.66728 4.33272C9.85918 4.52462 10 4.86659 10 5.5C10 5.77614 10.2239 6 10.5 6C10.7761 6 11 5.77614 11 5.5C11 4.86659 11.1408 4.52462 11.3327 4.33272C11.5246 4.14082 11.8666 4 12.5 4C12.7761 4 13 3.77614 13 3.5C13 3.22386 12.7761 3 12.5 3C11.8666 3 11.5246 2.85918 11.3327 2.66728C11.1408 2.47538 11 2.13341 11 1.5Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconSparklesTwo: {\n title: \"sparkles-two, ai 2 stars, sparkles, ✨\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M22.25 15C17.2153 15 15 17.2153 15 22.25C15 17.2153 12.7847 15 7.75 15C12.7847 15 15 12.7847 15 7.75C15 12.7847 17.2153 15 22.25 15Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.25 6.5C7.95139 6.5 6.5 7.95139 6.5 11.25C6.5 7.95139 5.04861 6.5 1.75 6.5C5.04861 6.5 6.5 5.04861 6.5 1.75C6.5 5.04861 7.95139 6.5 11.25 6.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconSparklesTwo2: {\n title: \"sparkles-two-2, ai 2 stars, sparkles, ✨\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1.75 9C6.78472 9 9 6.78472 9 1.75C9 6.78472 11.2153 9 16.25 9C11.2153 9 9 11.2153 9 16.25C9 11.2153 6.78472 9 1.75 9Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.75 17.5C16.0486 17.5 17.5 16.0486 17.5 12.75C17.5 16.0486 18.9514 17.5 22.25 17.5C18.9514 17.5 17.5 18.9514 17.5 22.25C17.5 18.9514 16.0486 17.5 12.75 17.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconSparklesSoft: {\n title: \"sparkles-soft\",\n svg: '<path d=\"M19.25 13C14.1955 13.4375 11.4375 16.1955 11 21.25C10.544 16.1169 7.80041 13.5721 2.75 13C7.88024 12.4083 10.4083 9.88024 11 4.75C11.5721 9.80041 14.1169 12.544 19.25 13Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.7898 1.25884C19.7731 1.11151 19.6486 1.00015 19.5003 1C19.352 0.999849 19.2272 1.11096 19.2103 1.25825C19.0998 2.21602 18.8134 2.8895 18.3515 3.35146C17.8895 3.81343 17.216 4.09979 16.2582 4.21025C16.111 4.22724 15.9998 4.35203 16 4.5003C16.0002 4.64857 16.1115 4.77313 16.2588 4.78981C17.2008 4.89651 17.8886 5.18275 18.3615 5.64713C18.8327 6.10977 19.125 6.7831 19.2095 7.73414C19.2229 7.88476 19.3491 8.00017 19.5003 8C19.6515 7.99983 19.7775 7.88413 19.7906 7.73349C19.8716 6.79809 20.1636 6.11059 20.6371 5.6371C21.1106 5.16361 21.7981 4.87155 22.7335 4.79058C22.8841 4.77754 22.9998 4.65154 23 4.50033C23.0002 4.34912 22.8848 4.22286 22.7341 4.20948C21.7831 4.125 21.1098 3.83266 20.6471 3.36151C20.1827 2.88857 19.8965 2.20078 19.7898 1.25884Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconSparkle: {\n title: \"sparkle, star, ai\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.25 12C14.8264 12 12 14.8264 12 21.25C12 14.8264 9.17361 12 2.75 12C9.17361 12 12 9.17361 12 2.75C12 9.17361 14.8264 12 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconSparkle2: {\n title: \"sparkle-2, star, magic, ai\",\n svg: '<path d=\"M12 2.75C13 8 16 11 21.25 12C16 13 13 16 12 21.25C11 16 8 13 2.75 12C8 11 11 8 12 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconEyeSparkle: {\n title: \"eye-sparkle, magic eyes\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.8427 11.9999C5.16307 16.4127 8.63942 18.4999 12 18.4999C15.3606 18.4999 18.8369 16.4128 21.1573 12C18.8369 7.58725 15.3606 5.50003 12 5.5C8.63941 5.49997 5.16307 7.58714 2.8427 11.9999ZM12 4C16.1417 4.00003 20.1618 6.64058 22.671 11.6649C22.7763 11.8759 22.7763 12.1241 22.671 12.3351C20.1618 17.3595 16.1417 20 12 19.9999C7.85826 19.9999 3.83815 17.3593 1.32902 12.335C1.22366 12.124 1.22366 11.8758 1.32902 11.6648C3.83815 6.64046 7.85827 3.99997 12 4Z\" fill=\"currentColor\"/><path d=\"M10.7412 10.5176L11.5528 8.89443C11.737 8.5259 12.263 8.5259 12.4472 8.89443L13.2588 10.5176C13.3072 10.6144 13.3856 10.6928 13.4824 10.7412L15.1056 11.5528C15.4741 11.737 15.4741 12.263 15.1056 12.4472L13.4824 13.2588C13.3856 13.3072 13.3072 13.3856 13.2588 13.4824L12.4472 15.1056C12.263 15.4741 11.737 15.4741 11.5528 15.1056L10.7412 13.4824C10.6928 13.3856 10.6144 13.3072 10.5176 13.2588L8.89443 12.4472C8.5259 12.263 8.5259 11.737 8.89443 11.5528L10.5176 10.7412C10.6144 10.6928 10.6928 10.6144 10.7412 10.5176Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconVisualIntelligence: {\n title: \"visual-intelligence\",\n svg: '<path d=\"M6.75 12C9.91536 7 14.0846 7 17.25 12C14.0846 17 9.91536 17 6.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.93318 7.46871C1.95079 10.9934 2.45949 15.541 5.45926 18.5407C8.45904 21.5405 13.0066 22.0492 16.5313 20.0668M7.46871 3.93318C10.9934 1.95079 15.541 2.45949 18.5407 5.45926C21.5405 8.45904 22.0492 13.0066 20.0668 16.5313\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.75 12H12.25M12.5 12C12.5 12.2761 12.2761 12.5 12 12.5C11.7239 12.5 11.5 12.2761 11.5 12C11.5 11.7239 11.7239 11.5 12 11.5C12.2761 11.5 12.5 11.7239 12.5 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconImageSparkle: {\n title: \"image-sparkle, midjourney, ai generated, star\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 3.75C3 3.33579 3.33579 3 3.75 3H20.25C20.6642 3 21 3.33579 21 3.75V20.25C21 20.6642 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6642 3 20.25V3.75ZM4.5 4.5V14.4393L7.46967 11.4697C7.76256 11.1768 8.23744 11.1768 8.53033 11.4697L16.5607 19.5H19.5V4.5H4.5ZM14.4393 19.5L8 13.0607L4.5 16.5607V19.5H14.4393Z\" fill=\"currentColor\"/><path d=\"M13.4255 8.53727C13.4738 8.51308 13.5131 8.47385 13.5373 8.42546L14.2764 6.94721C14.3685 6.76295 14.6315 6.76295 14.7236 6.94721L15.4627 8.42546C15.4869 8.47385 15.5262 8.51308 15.5745 8.53727L17.0528 9.27639C17.237 9.36852 17.237 9.63148 17.0528 9.72361L15.5745 10.4627C15.5262 10.4869 15.4869 10.5262 15.4627 10.5745L14.7236 12.0528C14.6315 12.237 14.3685 12.237 14.2764 12.0528L13.5373 10.5745C13.5131 10.5262 13.4738 10.4869 13.4255 10.4627L11.9472 9.72361C11.763 9.63148 11.763 9.36852 11.9472 9.27639L13.4255 8.53727Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconListSparkle: {\n title: \"list-sparkle, ai text, text generation\",\n svg: '<path d=\"M3.75 18.25H7.25M3.75 12H9.25M3.75 5.75H20.25M17 10.5L18.5 13.5L21.5 15L18.5 16.5L17 19.5L15.5 16.5L12.5 15L15.5 13.5L17 10.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconPrompt: {\n title: \"prompt, scan-text\",\n svg: '<path d=\"M6.25 4.75H2.75V8.25M17.75 4.75H21.25V8.25M21.25 15.75V19.25H17.75M6.25 19.25H2.75V15.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 9.75H16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.75 14.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconStarWand: {\n title: \"star-wand, magic\",\n svg: '<path d=\"M8.69686 15.0845L4.07226 21.25M17.7036 2.77002L11.9652 5.68903L6.22673 2.77002L7.22983 9.12918L2.68018 13.6843L9.03857 14.6955L11.9652 20.4297L14.8918 14.6955L21.2502 13.6843L16.7005 9.12918L17.7036 2.77002Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconMagicWand: {\n title: \"magic-wand, magic stick, star\",\n svg: '<path d=\"M11.7726 12.2271L12.905 16.9136L15.4301 12.8064L20.237 13.1777L17.1112 9.50697L18.9497 5.04999L14.4928 6.88852L10.8221 3.7627L11.1933 8.56967L7.08618 11.0948L11.7726 12.2271ZM11.7726 12.2271L3.75 20.2497\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconMagicWand2: {\n title: \"magic-wand-2, magic stick, star\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.2197 2.21961C18.5126 1.92672 18.9874 1.92672 19.2803 2.21961L21.7803 4.71961C22.0732 5.01251 22.0732 5.48738 21.7803 5.78027L5.78033 21.7803C5.48744 22.0732 5.01256 22.0732 4.71967 21.7803L2.21967 19.2803C1.92678 18.9874 1.92678 18.5125 2.21967 18.2196L18.2197 2.21961ZM15.3107 7.24994L16.75 8.68928L20.1893 5.24994L18.75 3.8106L15.3107 7.24994ZM15.6893 9.74994L14.25 8.3106L3.81066 18.7499L5.25 20.1893L15.6893 9.74994Z\" fill=\"currentColor\"/><path d=\"M9.92546 2.03721C9.97385 2.01302 10.0131 1.97379 10.0373 1.92541L10.7764 0.447156C10.8685 0.262894 11.1315 0.262895 11.2236 0.447157L11.9627 1.92541C11.9869 1.97379 12.0262 2.01302 12.0745 2.03721L13.5528 2.77634C13.737 2.86847 13.737 3.13142 13.5528 3.22355L12.0745 3.96268C12.0262 3.98687 11.9869 4.0261 11.9627 4.07448L11.2236 5.55273C11.1315 5.73699 10.8685 5.73699 10.7764 5.55273L10.0373 4.07448C10.0131 4.0261 9.97385 3.98687 9.92546 3.96268L8.44721 3.22355C8.26295 3.13142 8.26295 2.86847 8.44721 2.77634L9.92546 2.03721Z\" fill=\"currentColor\"/><path d=\"M18.9255 13.0372C18.9738 13.013 19.0131 12.9738 19.0373 12.9254L19.7764 11.4472C19.8685 11.2629 20.1315 11.2629 20.2236 11.4472L20.9627 12.9254C20.9869 12.9738 21.0262 13.013 21.0745 13.0372L22.5528 13.7763C22.737 13.8685 22.737 14.1314 22.5528 14.2235L21.0745 14.9627C21.0262 14.9869 20.9869 15.0261 20.9627 15.0745L20.2236 16.5527C20.1315 16.737 19.8685 16.737 19.7764 16.5527L19.0373 15.0745C19.0131 15.0261 18.9738 14.9869 18.9255 14.9627L17.4472 14.2235C17.263 14.1314 17.263 13.8685 17.4472 13.7763L18.9255 13.0372Z\" fill=\"currentColor\"/><path d=\"M4.92546 7.03721C4.97385 7.01302 5.01308 6.97379 5.03727 6.92541L5.77639 5.44716C5.86852 5.26289 6.13148 5.26289 6.22361 5.44716L6.96273 6.92541C6.98692 6.97379 7.02615 7.01302 7.07454 7.03721L8.55279 7.77634C8.73705 7.86847 8.73705 8.13142 8.55279 8.22355L7.07454 8.96268C7.02615 8.98687 6.98692 9.0261 6.96273 9.07448L6.22361 10.5527C6.13148 10.737 5.86852 10.737 5.77639 10.5527L5.03727 9.07448C5.01308 9.0261 4.97385 8.98687 4.92546 8.96268L3.44721 8.22355C3.26295 8.13142 3.26295 7.86847 3.44721 7.77634L4.92546 7.03721Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconMagicWand3: {\n title: \"magic-wand-3, magic stick, star\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.1067 10.9916C9.64821 11.2855 9.5 11.6008 9.5 11.8333C9.5 12.0659 9.64821 12.3812 10.1067 12.6751C10.5568 12.9636 11.2242 13.1667 12 13.1667C12.7758 13.1667 13.4432 12.9636 13.8933 12.6751C14.3518 12.3812 14.5 12.0659 14.5 11.8333C14.5 11.6008 14.3518 11.2855 13.8933 10.9916C13.4432 10.703 12.7758 10.5 12 10.5C11.2242 10.5 10.5568 10.703 10.1067 10.9916ZM14.5 14.0593C13.8028 14.4489 12.9268 14.6667 12 14.6667C11.0732 14.6667 10.1972 14.4489 9.5 14.0593V18.0833C9.5 18.3159 9.64821 18.6312 10.1067 18.9251C10.5568 19.2136 11.2242 19.4167 12 19.4167C12.7758 19.4167 13.4432 19.2136 13.8933 18.9251C14.3518 18.6312 14.5 18.3159 14.5 18.0833V14.0593ZM16 11.8333C16 10.9153 15.4207 10.1889 14.7028 9.72878C13.9768 9.26335 13.0191 9 12 9C10.9809 9 10.0232 9.26335 9.29715 9.72878C8.57933 10.1889 8 10.9153 8 11.8333V22.25C8 22.6642 8.33579 23 8.75 23C9.16421 23 9.5 22.6642 9.5 22.25V20.3093C10.1972 20.6989 11.0732 20.9167 12 20.9167C12.9268 20.9167 13.8028 20.6989 14.5 20.3093V22.25C14.5 22.6642 14.8358 23 15.25 23C15.6642 23 16 22.6642 16 22.25V11.8333Z\" fill=\"currentColor\"/><path d=\"M4.64242 5.21641C4.78975 4.92192 5.21024 4.92192 5.35756 5.21642C6.11192 6.72429 6.27462 6.88668 7.7829 7.6404C8.07756 7.78765 8.07756 8.2079 7.7829 8.35514C6.27462 9.10886 6.11192 9.27126 5.35756 10.7791C5.21024 11.0736 4.78975 11.0736 4.64242 10.7791C3.88806 9.27126 3.72536 9.10886 2.21708 8.35514C1.92243 8.2079 1.92243 7.78765 2.21709 7.6404C3.72536 6.88668 3.88806 6.72429 4.64242 5.21641Z\" fill=\"currentColor\"/><path d=\"M11.6385 1.22087C11.7858 0.926377 12.2063 0.926378 12.3537 1.22087C13.108 2.72874 13.2707 2.89114 14.779 3.64485C15.0737 3.7921 15.0737 4.21235 14.779 4.3596C13.2707 5.11332 13.108 5.27571 12.3537 6.78359C12.2063 7.07808 11.7858 7.07808 11.6385 6.78358C10.8842 5.27571 10.7215 5.11332 9.21319 4.3596C8.91853 4.21235 8.91853 3.7921 9.21319 3.64485C10.7215 2.89114 10.8842 2.72874 11.6385 1.22087Z\" fill=\"currentColor\"/><path d=\"M18.6346 5.21641C18.7819 4.92192 19.2024 4.92192 19.3498 5.21642C20.1041 6.72429 20.2668 6.88668 21.7751 7.6404C22.0698 7.78765 22.0698 8.2079 21.7751 8.35514C20.2668 9.10886 20.1041 9.27126 19.3498 10.7791C19.2024 11.0736 18.7819 11.0736 18.6346 10.7791C17.8803 9.27126 17.7176 9.10886 16.2093 8.35514C15.9146 8.2079 15.9146 7.78765 16.2093 7.6404C17.7176 6.88668 17.8803 6.72429 18.6346 5.21641Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconWindowSparkle: {\n title: \"window-sparkle, whisper, api, app, software\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 4.75C2 4.33579 2.33579 4 2.75 4H21.25C21.6642 4 22 4.33579 22 4.75V8.25C22 8.66421 21.6642 9 21.25 9C20.8358 9 20.5 8.66421 20.5 8.25V5.5H3.5V18.5H10.25C10.6642 18.5 11 18.8358 11 19.25C11 19.6642 10.6642 20 10.25 20H2.75C2.33579 20 2 19.6642 2 19.25V4.75ZM18 11C18.4142 11 18.75 11.3358 18.75 11.75C18.75 13.1341 19.0567 13.9596 19.5486 14.4514C20.0404 14.9433 20.8659 15.25 22.25 15.25C22.6642 15.25 23 15.5858 23 16C23 16.4142 22.6642 16.75 22.25 16.75C20.8659 16.75 20.0404 17.0567 19.5486 17.5486C19.0567 18.0404 18.75 18.8659 18.75 20.25C18.75 20.6642 18.4142 21 18 21C17.5858 21 17.25 20.6642 17.25 20.25C17.25 18.8659 16.9433 18.0404 16.4514 17.5486C15.9596 17.0567 15.1341 16.75 13.75 16.75C13.3358 16.75 13 16.4142 13 16C13 15.5858 13.3358 15.25 13.75 15.25C15.1341 15.25 15.9596 14.9433 16.4514 14.4514C16.9433 13.9596 17.25 13.1341 17.25 11.75C17.25 11.3358 17.5858 11 18 11ZM18 14.9036C17.8599 15.1231 17.6979 15.3263 17.5121 15.5121C17.3263 15.6979 17.1231 15.8599 16.9036 16C17.1231 16.1401 17.3263 16.3021 17.5121 16.4879C17.6979 16.6737 17.8599 16.8769 18 17.0964C18.1401 16.8769 18.3021 16.6737 18.4879 16.4879C18.6737 16.3021 18.8769 16.1401 19.0964 16C18.8769 15.8599 18.6737 15.6979 18.4879 15.5121C18.3021 15.3263 18.1401 15.1231 18 14.9036Z\" fill=\"currentColor\"/><path d=\"M7 8C7 8.55228 6.55228 9 6 9C5.44772 9 5 8.55228 5 8C5 7.44772 5.44772 7 6 7C6.55228 7 7 7.44772 7 8Z\" fill=\"currentColor\"/><path d=\"M10 8C10 8.55228 9.55228 9 9 9C8.44772 9 8 8.55228 8 8C8 7.44772 8.44772 7 9 7C9.55228 7 10 7.44772 10 8Z\" fill=\"currentColor\"/><path d=\"M12 9C12.5523 9 13 8.55228 13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconBrain1: {\n title: \"brain-1, ai, thinking, database, ki\",\n svg: '<path d=\"M12 20.4712C12.7349 20.9631 13.6187 21.25 14.5694 21.25C16.6819 21.25 18.4635 19.8338 19.0167 17.8991C20.3271 17.3617 21.25 16.0734 21.25 14.5694C21.25 13.5629 20.8366 12.6529 20.1703 12C20.8366 11.3471 21.25 10.4371 21.25 9.43056C21.25 7.57553 19.8459 6.04846 18.0425 5.8542C17.5934 4.07047 15.9787 2.75 14.0556 2.75C13.3067 2.75 12.6047 2.9502 12 3.29999M12 20.4712C11.2651 20.9631 10.3813 21.25 9.43056 21.25C7.31815 21.25 5.5365 19.8338 4.98327 17.8991C3.67291 17.3617 2.75 16.0734 2.75 14.5694C2.75 13.5629 3.16341 12.6529 3.82969 12C3.16341 11.3471 2.75 10.4371 2.75 9.43056C2.75 7.57553 4.15413 6.04846 5.95754 5.8542C6.40662 4.07047 8.02133 2.75 9.94444 2.75C10.6933 2.75 11.3953 2.9502 12 3.29999M12 20.4712L12 3.29999M8.75 13.75C10.5449 13.75 12 15.2051 12 17M15.25 10.25C13.4551 10.25 12 8.79493 12 7\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconBrain2: {\n title: \"brain-2, ai, thinking, database, ki\",\n svg: '<path d=\"M4.80556 5.31944L8.91667 2.75L12 3.77778L15.0833 2.75L19.1944 5.31944V7.88889L21.25 9.43056V13.5417L19.1944 15.0833V18.6806L15.0833 21.25L12 20.2222L8.91667 21.25L4.80556 18.6806V15.0833L2.75 13.5417V9.43056L4.80556 7.88889V5.31944Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 4V8L15 11M12 20V16L9 13\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"9\" cy=\"13\" r=\"1\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"15\" cy=\"11\" r=\"1\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconImageAvatarSparkle: {\n title: \"image-avatar-sparkle, generated avatar, profile ai, magic avatar\",\n svg: '<path d=\"M11.25 3.75H3.75V20.25H7.25647M20.25 12.75V20.25H16.7435M7.25647 20.25C7.38647 17.7429 9.46051 15.75 12 15.75C14.5395 15.75 16.6135 17.7429 16.7435 20.25M7.25647 20.25H16.7435M19 1.75L20.0833 3.91667L22.25 5L20.0833 6.08333L19 8.25L17.9167 6.08333L15.75 5L17.9167 3.91667L19 1.75ZM14.75 10.5C14.75 12.0188 13.5188 13.25 12 13.25C10.4812 13.25 9.25 12.0188 9.25 10.5C9.25 8.98122 10.4812 7.75 12 7.75C13.5188 7.75 14.75 8.98122 14.75 10.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconTextToImage: {\n title: \"text-to-image\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10 9.75C10 9.33579 10.3358 9 10.75 9H21.25C21.6642 9 22 9.33579 22 9.75V20.25C22 20.6642 21.6642 21 21.25 21H10.75C10.3358 21 10 20.6642 10 20.25V9.75ZM11.5 10.5V19.5H12.4393L17.4697 14.4697C17.7626 14.1768 18.2374 14.1768 18.5303 14.4697L20.5 16.4393V10.5H11.5ZM20.5 18.5607L18 16.0607L14.5607 19.5H20.5V18.5607Z\" fill=\"currentColor\"/><path d=\"M15.5 13.25C15.5 13.9404 14.9404 14.5 14.25 14.5C13.5596 14.5 13 13.9404 13 13.25C13 12.5596 13.5596 12 14.25 12C14.9404 12 15.5 12.5596 15.5 13.25Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 3.75C1 3.33579 1.33579 3 1.75 3H10.25C10.6642 3 11 3.33579 11 3.75V4.75C11 5.16421 10.6642 5.5 10.25 5.5C9.83579 5.5 9.5 5.16421 9.5 4.75V4.5H6.75V12.5H7.25C7.66421 12.5 8 12.8358 8 13.25C8 13.6642 7.66421 14 7.25 14H4.75C4.33579 14 4 13.6642 4 13.25C4 12.8358 4.33579 12.5 4.75 12.5H5.25V4.5H2.5V4.75C2.5 5.16421 2.16421 5.5 1.75 5.5C1.33579 5.5 1 5.16421 1 4.75V3.75Z\" fill=\"currentColor\"/><path d=\"M20.7552 2.15769C20.6501 1.94744 20.35 1.94744 20.2449 2.15769L19.5917 3.4641C19.5641 3.51931 19.5193 3.56407 19.4641 3.59168L18.1577 4.24488C17.9474 4.35001 17.9474 4.65005 18.1577 4.75518L19.4641 5.40839C19.5193 5.43599 19.5641 5.48075 19.5917 5.53596L20.2449 6.84237C20.35 7.05262 20.6501 7.05262 20.7552 6.84237L21.4084 5.53596C21.436 5.48075 21.4808 5.43599 21.536 5.40839L22.8424 4.75518C23.0526 4.65005 23.0526 4.35001 22.8424 4.24488L21.536 3.59168C21.4808 3.56407 21.436 3.51931 21.4084 3.4641L20.7552 2.15769Z\" fill=\"currentColor\"/><path d=\"M15.2645 4.16345C15.1555 3.94552 14.8445 3.94552 14.7355 4.16345L14.2556 5.12335C14.227 5.18057 14.1806 5.22697 14.1233 5.25558L13.1635 5.73553C12.9455 5.8445 12.9455 6.1555 13.1635 6.26447L14.1233 6.74442C14.1806 6.77303 14.227 6.81943 14.2556 6.87665L14.7355 7.83655C14.8445 8.05448 15.1555 8.05448 15.2645 7.83655L15.7444 6.87665C15.773 6.81943 15.8194 6.77303 15.8767 6.74442L16.8365 6.26447C17.0545 6.1555 17.0545 5.8445 16.8365 5.73553L15.8767 5.25558C15.8194 5.22697 15.773 5.18057 15.7444 5.12335L15.2645 4.16345Z\" fill=\"currentColor\"/><path d=\"M4.75514 16.1577C4.65002 15.9474 4.34998 15.9474 4.24486 16.1577L3.59166 17.4641C3.56405 17.5193 3.51929 17.5641 3.46409 17.5917L2.15769 18.2449C1.94744 18.35 1.94744 18.65 2.15769 18.7551L3.46409 19.4083C3.51929 19.4359 3.56405 19.4807 3.59166 19.5359L4.24486 20.8423C4.34998 21.0526 4.65002 21.0526 4.75515 20.8423L5.40834 19.5359C5.43595 19.4807 5.48071 19.4359 5.53592 19.4083L6.84231 18.7551C7.05256 18.65 7.05256 18.35 6.84231 18.2449L5.53592 17.5917C5.48071 17.5641 5.43595 17.5193 5.40834 17.4641L4.75514 16.1577Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconMagicBook: {\n title: \"magic-book, magician, sparkles\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 2.75C4 2.33579 4.33579 2 4.75 2H19.25C19.6642 2 20 2.33579 20 2.75V21.25C20 21.6642 19.6642 22 19.25 22H4.75C4.33579 22 4 21.6642 4 21.25V2.75ZM5.5 18V20.5H18.5V18H5.5ZM18.5 16.5H5.5V3.5H18.5V16.5Z\" fill=\"currentColor\"/><path d=\"M12.1845 7.40787C12.2813 7.35949 12.3598 7.28103 12.4081 7.18426L13.0531 5.89443C13.2373 5.5259 13.7632 5.5259 13.9475 5.89443L14.5924 7.18426C14.6408 7.28103 14.7192 7.35949 14.816 7.40787L16.1058 8.05279C16.4744 8.23705 16.4744 8.76295 16.1058 8.94721L14.816 9.59213C14.7192 9.64051 14.6408 9.71897 14.5924 9.81574L13.9475 11.1056C13.7632 11.4741 13.2373 11.4741 13.0531 11.1056L12.4081 9.81574C12.3598 9.71897 12.2813 9.64051 12.1845 9.59213L10.8947 8.94721C10.5262 8.76295 10.5262 8.23705 10.8947 8.05279L12.1845 7.40787Z\" fill=\"currentColor\"/><path d=\"M8.5775 11.7114C8.63556 11.6824 8.68263 11.6353 8.71166 11.5772L9.23194 10.5367C9.3425 10.3155 9.65804 10.3155 9.7686 10.5367L10.2889 11.5772C10.3179 11.6353 10.365 11.6824 10.423 11.7114L11.4636 12.2317C11.6847 12.3422 11.6847 12.6578 11.4636 12.7683L10.423 13.2886C10.365 13.3176 10.3179 13.3647 10.2889 13.4228L9.7686 14.4633C9.65804 14.6845 9.3425 14.6845 9.23195 14.4633L8.71166 13.4228C8.68263 13.3647 8.63556 13.3176 8.5775 13.2886L7.53693 12.7683C7.31582 12.6578 7.31581 12.3422 7.53693 12.2317L8.5775 11.7114Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconPencilSparkle: {\n title: \"pencil-sparkle, magic pencil, magic brush\",\n svg: '<path d=\"M8.71906 3.56014C8.6845 3.62926 8.62846 3.6853 8.55934 3.71986L7.63803 4.18051C7.3748 4.31213 7.3748 4.68778 7.63803 4.81939L8.55934 5.28005C8.62846 5.3146 8.6845 5.37065 8.71906 5.43977L9.17972 6.36108C9.31133 6.62431 9.68698 6.62431 9.81859 6.36108L10.2792 5.43977C10.3138 5.37065 10.3698 5.3146 10.439 5.28005L11.3603 4.81939C11.6235 4.68778 11.6235 4.31213 11.3603 4.18051L10.439 3.71986C10.3698 3.6853 10.3138 3.62926 10.2792 3.56014L9.81859 2.63883C9.68698 2.3756 9.31133 2.3756 9.17972 2.63883L8.71906 3.56014Z\" fill=\"currentColor\"/><path d=\"M4.40702 7.18422C4.35864 7.28098 4.28018 7.35944 4.18342 7.40782L2.89358 8.05274C2.52506 8.237 2.52506 8.7629 2.89358 8.94717L4.18342 9.59208C4.28018 9.64047 4.35864 9.71893 4.40702 9.81569L5.05194 11.1055C5.2362 11.4741 5.7621 11.4741 5.94637 11.1055L6.59128 9.81569C6.63967 9.71893 6.71813 9.64047 6.81489 9.59208L8.10473 8.94717C8.47325 8.7629 8.47325 8.237 8.10473 8.05274L6.81489 7.40782C6.71813 7.35944 6.63967 7.28098 6.59128 7.18422L5.94637 5.89438C5.7621 5.52586 5.2362 5.52586 5.05194 5.89438L4.40702 7.18422Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.0303 2.96967C19.7511 2.69047 19.3033 2.67556 19.0061 2.93557L7.50391 13L7.5 13C5.01472 13 3 15.0147 3 17.5V21.25C3 21.6642 3.33579 22 3.75 22H7.5C9.98528 22 12 19.9853 12 17.5L12 17.4961L22.0644 5.99388C22.3244 5.69673 22.3095 5.24887 22.0303 4.96967L20.0303 2.96967ZM11.6097 15.6643C11.1581 14.6546 10.3454 13.8419 9.33572 13.3903L19.4658 4.52648L20.4735 5.53418L11.6097 15.6643ZM4.5 17.5C4.5 15.8431 5.84315 14.5 7.5 14.5C7.57422 14.5 7.64768 14.5027 7.72031 14.5079C9.20109 14.615 10.385 15.7989 10.4921 17.2797C10.4973 17.3523 10.5 17.4258 10.5 17.5C10.5 19.1569 9.15685 20.5 7.5 20.5H4.5V17.5Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconMagicEdit: {\n title: \"magic-edit, magic-writing\",\n svg: '<path d=\"M16.125 3.75L20.25 7.875L7.875 20.25H3.75V16.125L16.125 3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75518 5.15769C4.65005 4.94744 4.35001 4.94744 4.24488 5.15769L3.59168 6.4641C3.56407 6.51931 3.51931 6.56407 3.4641 6.59168L2.15769 7.24488C1.94744 7.35001 1.94744 7.65005 2.15769 7.75518L3.4641 8.40839C3.51931 8.43599 3.56407 8.48075 3.59168 8.53596L4.24488 9.84237C4.35001 10.0526 4.65005 10.0526 4.75518 9.84237L5.40839 8.53596C5.43599 8.48075 5.48075 8.43599 5.53596 8.40839L6.84237 7.75518C7.05262 7.65005 7.05262 7.35001 6.84237 7.24488L5.53596 6.59168C5.48075 6.56407 5.43599 6.51931 5.40839 6.4641L4.75518 5.15769Z\" fill=\"currentColor\"/><path d=\"M9.26447 2.16345C9.1555 1.94552 8.8445 1.94552 8.73553 2.16345L8.25558 3.12335C8.22697 3.18057 8.18057 3.22697 8.12335 3.25558L7.16345 3.73553C6.94552 3.8445 6.94552 4.1555 7.16345 4.26447L8.12335 4.74442C8.18057 4.77303 8.22697 4.81943 8.25558 4.87665L8.73553 5.83655C8.8445 6.05448 9.1555 6.05448 9.26447 5.83655L9.74442 4.87665C9.77303 4.81943 9.81943 4.77303 9.87665 4.74442L10.8365 4.26447C11.0545 4.1555 11.0545 3.8445 10.8365 3.73553L9.87665 3.25558C9.81943 3.22697 9.77303 3.18057 9.74442 3.12335L9.26447 2.16345Z\" fill=\"currentColor\"/><path d=\"M18.7551 15.1577C18.65 14.9474 18.35 14.9474 18.2449 15.1577L17.5917 16.4641C17.5641 16.5193 17.5193 16.5641 17.4641 16.5917L16.1577 17.2449C15.9474 17.35 15.9474 17.65 16.1577 17.7551L17.4641 18.4083C17.5193 18.4359 17.5641 18.4807 17.5917 18.5359L18.2449 19.8423C18.35 20.0526 18.65 20.0526 18.7551 19.8423L19.4083 18.5359C19.4359 18.4807 19.4807 18.4359 19.5359 18.4083L20.8423 17.7551C21.0526 17.65 21.0526 17.35 20.8423 17.2449L19.5359 16.5917C19.4807 16.5641 19.4359 16.5193 19.4083 16.4641L18.7551 15.1577Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconBroomSparkle: {\n title: \"broom-sparkle, clean, brush\",\n svg: '<path d=\"M4.18439 7.40775C4.28116 7.35937 4.35962 7.28091 4.408 7.18415L5.05292 5.89431C5.23718 5.52579 5.76308 5.52579 5.94734 5.89431L6.59226 7.18415C6.64064 7.28091 6.7191 7.35937 6.81587 7.40775L8.1057 8.05267C8.47423 8.23693 8.47423 8.76284 8.1057 8.9471L6.81587 9.59202C6.7191 9.6404 6.64064 9.71886 6.59226 9.81562L5.94734 11.1055C5.76308 11.474 5.23718 11.474 5.05292 11.1055L4.408 9.81562C4.35962 9.71886 4.28116 9.6404 4.18439 9.59202L2.89456 8.9471C2.52603 8.76284 2.52603 8.23693 2.89456 8.05267L4.18439 7.40775Z\" fill=\"currentColor\"/><path d=\"M9.55947 3.72022C9.62914 3.68538 9.68563 3.62889 9.72046 3.55922L10.1781 2.64387C10.3108 2.37854 10.6895 2.37854 10.8221 2.64387L11.2798 3.55922C11.3146 3.62889 11.3711 3.68538 11.4408 3.72022L12.3561 4.17789C12.6215 4.31056 12.6215 4.68921 12.3561 4.82188L11.4408 5.27955C11.3711 5.31439 11.3146 5.37088 11.2798 5.44055L10.8221 6.3559C10.6895 6.62123 10.3108 6.62124 10.1781 6.3559L9.72046 5.44055C9.68563 5.37088 9.62914 5.31439 9.55947 5.27955L8.64412 4.82188C8.37878 4.68921 8.37878 4.31056 8.64412 4.17789L9.55947 3.72022Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.9012 3.1222C21.1068 2.76263 20.982 2.30445 20.6225 2.09883C20.2629 1.8932 19.8047 2.01799 19.5991 2.37756L14.4883 11.3146L13.6589 11.0147C11.6249 10.2792 9.58229 11.404 8.53596 13.0393C7.59946 14.503 6.35589 15.5068 4.83599 16.5135C4.60521 16.6663 4.47739 16.9339 4.50348 17.2094C4.52956 17.485 4.70531 17.7238 4.96067 17.8307L14.7869 21.9418C15.0695 22.06 15.3955 21.9945 15.6106 21.7763C17.5329 19.8258 18.5529 18.1021 18.8901 15.7161C19.1302 14.017 17.9762 12.5759 16.5037 12.0434L15.9201 11.8324L20.9012 3.1222ZM9.79948 13.8478C10.5898 12.6124 11.9655 11.9974 13.1488 12.4253L15.9936 13.454C16.9521 13.8007 17.5244 14.66 17.4048 15.5063C17.1443 17.3503 16.4194 18.7292 14.892 20.3597L11.0796 18.7647L11.7571 16.7291C11.8336 16.4994 11.5715 16.306 11.3745 16.4468L9.22018 17.9868L6.79607 16.9726C7.93388 16.1231 8.96509 15.1519 9.79948 13.8478Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconBoxSparkle: {\n title: \"box-sparkle, magic box\",\n svg: '<path d=\"M19.25 21.25V9.75H4.75V21.25H19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.4997 4.5L16.231 9.2977\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 13.75H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.58692 4.74209C6.65407 4.70852 6.70852 4.65407 6.74209 4.58692L7.18965 3.69181C7.31752 3.43606 7.68248 3.43606 7.81035 3.69181L8.25791 4.58692C8.29148 4.65407 8.34593 4.70852 8.41308 4.74209L9.30819 5.18965C9.56394 5.31752 9.56394 5.68248 9.30819 5.81035L8.41308 6.25791C8.34593 6.29148 8.29148 6.34593 8.25791 6.41308L7.81035 7.30819C7.68248 7.56394 7.31752 7.56394 7.18965 7.30819L6.74209 6.41308C6.70852 6.34593 6.65407 6.29148 6.58692 6.25791L5.69181 5.81035C5.43606 5.68248 5.43606 5.31752 5.69181 5.18965L6.58692 4.74209Z\" fill=\"currentColor\"/><path d=\"M11.8586 3.05262C11.9426 3.01065 12.0106 2.94258 12.0526 2.85865L12.6121 1.73976C12.7719 1.42008 13.2281 1.42008 13.3879 1.73976L13.9474 2.85865C13.9894 2.94258 14.0574 3.01065 14.1414 3.05262L15.2602 3.61206C15.5799 3.7719 15.5799 4.2281 15.2602 4.38794L14.1414 4.94738C14.0574 4.98935 13.9894 5.05742 13.9474 5.14135L13.3879 6.26024C13.2281 6.57992 12.7719 6.57992 12.6121 6.26024L12.0526 5.14135C12.0106 5.05742 11.9426 4.98935 11.8586 4.94738L10.7398 4.38794C10.4201 4.2281 10.4201 3.7719 10.7398 3.61206L11.8586 3.05262Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconHatSparkle: {\n title: \"hat-sparkle, magic hat\",\n svg: '<path d=\"M18.25 13V20.2344C16.7841 20.8572 14.3894 21.25 12 21.25C9.61061 21.25 7.21589 20.8572 5.75 20.2344V13\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 11C20.25 12.2426 16.5563 13.25 12 13.25C7.44365 13.25 3.75 12.2426 3.75 11C3.75 9.75736 7.44365 8.75 12 8.75C16.5563 8.75 20.25 9.75736 20.25 11Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M13.9691 3.29803L14.0001 3.23595L14.0312 3.29803C14.1763 3.58832 14.4117 3.8237 14.702 3.96885L14.7641 3.99989L14.702 4.03092C14.4117 4.17607 14.1763 4.41145 14.0312 4.70174L14.0001 4.76382L13.9691 4.70174C13.8239 4.41145 13.5886 4.17607 13.2983 4.03092L13.2362 3.99989L13.2983 3.96885C13.5886 3.8237 13.8239 3.58832 13.9691 3.29803Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M8.6932 4.99996C8.81087 4.91421 8.91446 4.81063 9.0002 4.69296C9.08594 4.81063 9.18953 4.91422 9.3072 4.99996C9.18953 5.0857 9.08594 5.18929 9.0002 5.30695C8.91446 5.18929 8.81087 5.0857 8.6932 4.99996Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconHatBunny: {\n title: \"hat-bunny, surprise, magic hat\",\n svg: '<path d=\"M19.25 11.75V21.25H4.75V11.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.25 11.75H2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.0024 11.3407C13.0428 7.97623 13.5658 5.53334 15.0544 4.04649C16.6027 2.5 20.7072 7.12772 20.7072 7.12772L17.4999 8.00003C17.4999 8.90973 17.6263 9.9927 16.8754 11.3407\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.03491 11.3407C6.86947 10.7169 6.72751 10.1523 6.61698 9.37715C6.05195 5.41447 7.66719 1.75 7.66719 1.75C7.66719 1.75 10.1985 4.51031 10.7636 8.47299C10.9201 9.57102 10.9972 10.4328 11.0025 11.3407\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconWizardHat: {\n title: \"wizard-hat, magician, fantasy\",\n svg: '<path d=\"M2.75 20.25L21.25 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75 19.75L12 2.75L18.2143 8.41667H14.2786L19.25 19.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M13.3477 15.6406L13.6649 14.961L13.3477 15.6406L13.5821 15.75L13.3477 15.8594C13.1327 15.9598 12.9598 16.1327 12.8594 16.3477L13.539 16.6649L12.8594 16.3477L12.75 16.5821L12.6406 16.3477L11.9767 16.6576L12.6406 16.3477C12.5402 16.1327 12.3673 15.9598 12.1523 15.8594L11.9179 15.75L12.1523 15.6406C12.3673 15.5402 12.5402 15.3673 12.6406 15.1523L12.75 14.9179L12.8594 15.1523C12.9598 15.3673 13.1327 15.5402 13.3477 15.6406Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M10.5977 11.6406L10.9149 10.961L10.5977 11.6406L10.8321 11.75L10.5977 11.8594C10.3827 11.9598 10.2098 12.1327 10.1094 12.3477L10.789 12.6649L10.1094 12.3477L10 12.5821L9.89062 12.3477L9.22669 12.6576L9.89062 12.3477C9.79023 12.1327 9.61734 11.9598 9.40226 11.8594L9.16788 11.75L9.40226 11.6406C9.61734 11.5402 9.79023 11.3673 9.89062 11.1523L10 10.9179L10.1094 11.1523C10.2098 11.3673 10.3827 11.5402 10.5977 11.6406Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"AI & Magic\",\n },\n IconFortuneTellerBall: {\n title: \"fortune-teller-ball,future\",\n svg: '<path d=\"M7.36711 18.75C4.8946 17.2205 3.25 14.5031 3.25 11.4057C3.25 6.62531 7.16751 2.75 12 2.75C16.8325 2.75 20.75 6.62531 20.75 11.4057C20.75 14.5031 19.1054 17.2205 16.6329 18.75M6.75 18.75L5.75 21.25H18.25L17.25 18.75H6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.1671 6.09709C13.1231 5.96764 12.8769 5.96764 12.833 6.09709C12.7066 6.46962 12.5051 6.93052 12.2178 7.21783C11.9305 7.50513 11.4696 7.70656 11.0971 7.83298C10.9676 7.87691 10.9676 8.12315 11.0971 8.16708C11.4696 8.29351 11.9305 8.49493 12.2178 8.78223C12.5051 9.06954 12.7066 9.53044 12.833 9.90297C12.8769 10.0324 13.1231 10.0324 13.1671 9.90297C13.2935 9.53044 13.4949 9.06954 13.7822 8.78223C14.0695 8.49493 14.5304 8.29351 14.903 8.16708C15.0324 8.12315 15.0324 7.87691 14.903 7.83298C14.5304 7.70656 14.0695 7.50513 13.7822 7.21783C13.4949 6.93052 13.2935 6.46962 13.1671 6.09709Z\" fill=\"currentColor\"/><path d=\"M15.6879 9.35928C15.6385 9.21365 15.3615 9.21365 15.3121 9.35928C15.1698 9.77837 14.9432 10.2969 14.62 10.6201C14.2968 10.9433 13.7783 11.1699 13.3592 11.3121C13.2136 11.3616 13.2136 11.6386 13.3592 11.688C13.7783 11.8302 14.2968 12.0568 14.62 12.38C14.9432 12.7032 15.1698 13.2218 15.3121 13.6408C15.3615 13.7865 15.6385 13.7865 15.6879 13.6408C15.8302 13.2218 16.0568 12.7032 16.38 12.38C16.7032 12.0568 17.2217 11.8302 17.6408 11.688C17.7864 11.6386 17.7864 11.3616 17.6408 11.3121C17.2217 11.1699 16.7032 10.9433 16.38 10.6201C16.0568 10.2969 15.8302 9.77837 15.6879 9.35928Z\" fill=\"currentColor\"/>',\n category: \"AI & Magic\",\n },\n IconCuteRobot: {\n title: \"cute-robot\",\n svg: '<path d=\"M12 3.75H4.78125V13.25H19.2188V3.75H12ZM12 3.75V1.75M8.75 7.75V9.25M15.25 7.75V9.25M5.75 13.25V14.25M5.75 14.25V15C5.75 18.4518 8.54822 21.25 12 21.25C15.4518 21.25 18.25 18.4518 18.25 15V14.25M5.75 14.25L3.75 16.25M18.25 14.25V13.25M18.25 14.25L20.25 16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconRobot: {\n title: \"robot\",\n svg: '<path d=\"M12 2.75V4.75M3 8.75H2.25V11.25H3M21 11.25H21.75V8.75H21M9.75 14.5H14.25M9.25 10C9.25 10.4142 8.91421 10.75 8.5 10.75C8.08579 10.75 7.75 10.4142 7.75 10C7.75 9.58579 8.08579 9.25 8.5 9.25C8.91421 9.25 9.25 9.58579 9.25 10ZM16.25 10C16.25 10.4142 15.9142 10.75 15.5 10.75C15.0858 10.75 14.75 10.4142 14.75 10C14.75 9.58579 15.0858 9.25 15.5 9.25C15.9142 9.25 16.25 9.58579 16.25 10ZM3.25 4.75H20.75V16.25C20.75 17.9069 19.4069 19.25 17.75 19.25H6.25C4.59315 19.25 3.25 17.9069 3.25 16.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconAppleIntelligenceIcon: {\n title: \"apple-intelligence-icon, ai, tools\",\n svg: '<path d=\"M15.023 5.7292C14.5557 5.86554 14.0682 6.04306 13.5678 6.25984C12.5699 6.69222 11.4304 6.69222 10.4325 6.25984C9.93218 6.04306 9.44468 5.86554 8.97731 5.7292M15.023 5.7292C16.9234 5.17481 18.4911 5.30115 19.2363 6.23589C19.9814 7.17064 19.7557 8.72755 18.7924 10.4575M15.023 5.7292C14.2715 3.89727 13.1954 2.75 12.0002 2.75C10.805 2.75 9.72885 3.89727 8.97731 5.7292M15.023 5.7292C15.2079 6.17973 15.3731 6.67167 15.5156 7.19813C15.7998 8.24816 16.5102 9.13934 17.4703 9.65022C17.9517 9.90636 18.3944 10.177 18.7924 10.4575M8.97731 5.7292C7.0769 5.17481 5.50925 5.30116 4.76408 6.2359C4.01892 7.17064 4.2447 8.72756 5.20799 10.4575M8.97731 5.7292C8.79249 6.17973 8.62729 6.67167 8.48479 7.19813C8.20057 8.24816 7.49013 9.13934 6.53002 9.65022C6.04863 9.90636 5.60594 10.177 5.20799 10.4575M18.7924 10.4575C20.4105 11.5981 21.2892 12.9029 21.0232 14.0685C20.7571 15.2341 19.3995 16.0282 17.4468 16.3533M18.7924 10.4575C18.5555 10.8829 18.274 11.3188 17.9513 11.7585C17.3078 12.6354 17.0542 13.7467 17.2535 14.8161C17.3534 15.3523 17.4179 15.8672 17.4468 16.3533M17.4468 16.3533C17.5641 18.3301 17.0921 19.8307 16.0152 20.3494C14.9385 20.868 13.4716 20.3015 12.0002 18.9774M17.4468 16.3533C16.9668 16.4333 16.4508 16.4849 15.9062 16.5067C14.8195 16.5502 13.7927 17.0449 13.0811 17.8677C12.7244 18.2802 12.3621 18.6517 12.0002 18.9774M12.0002 18.9774C10.5288 20.3015 9.06187 20.868 7.98515 20.3494C6.90828 19.8307 6.43624 18.3301 6.55358 16.3533M12.0002 18.9774C11.6382 18.6517 11.276 18.2802 10.9192 17.8677C10.2076 17.0449 9.18087 16.5502 8.09411 16.5067C7.54956 16.4849 7.03359 16.4333 6.55358 16.3533M6.55358 16.3533C4.60088 16.0282 3.24321 15.2341 2.9772 14.0685C2.71118 12.9029 3.58982 11.5981 5.20799 10.4575M6.55358 16.3533C6.58244 15.8672 6.64695 15.3523 6.74687 14.8161C6.94617 13.7467 6.69255 12.6355 6.04904 11.7585C5.7264 11.3188 5.44489 10.8829 5.20799 10.4575\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"AI & Magic\",\n },\n IconArrowUpCircle: {\n title: \"arrow-up-circle, arrow-top\",\n svg: '<path d=\"M21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 16.25V8.5M8.75 11L12 7.75L15.25 11\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowRightUpCircle: {\n title: \"arrow-right-up-circle\",\n svg: '<path d=\"M8.75 15.25L14.5694 9.43056M15.25 14.25V8.75H9.75M21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowRightCircle: {\n title: \"arrow-right-circle\",\n svg: '<path d=\"M13 8.75L16.25 12L13 15.25M7.75 12H15.5M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowRightDownCircle: {\n title: \"arrow-right-down-circle\",\n svg: '<path d=\"M8.75 8.75L14.5694 14.5694M15.25 9.75V15.25H9.75M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowDownCircle: {\n title: \"arrow-down-circle, arrow-bottom\",\n svg: '<path d=\"M15.25 13L12 16.25L8.75 13M12 7.75V15.5M12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowLeftDownCircle: {\n title: \"arrow-left-down-circle\",\n svg: '<path d=\"M15.25 8.75L9.43056 14.5694M8.75 9.75V15.25H14.25M2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowLeftCircle: {\n title: \"arrow-left-circle\",\n svg: '<path d=\"M11 15.25L7.75 12L11 8.75M16.25 12H8.5M2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowLeftUpCircle: {\n title: \"arrow-left-up-circle\",\n svg: '<path d=\"M15.25 15.25L9.43056 9.43056M8.75 14.25V8.75H14.25M2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowUp: {\n title: \"arrow-up,arrow-top\",\n svg: '<path d=\"M5.75 10L12 3.75L18.25 10M12 20.25V4.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowUpRight: {\n title: \"arrow-up-right\",\n svg: '<path d=\"M18.25 15.25V5.75M18.25 5.75H8.75M18.25 5.75L6 18\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowRight: {\n title: \"arrow-right\",\n svg: '<path d=\"M14 5.75L20.25 12L14 18.25M19.5 12H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowDownRight: {\n title: \"arrow-down-right\",\n svg: '<path d=\"M18.25 8.75V18.25H8.75M6 6L17.6002 17.6002\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowDown: {\n title: \"arrow-down\",\n svg: '<path d=\"M18.25 14L12 20.25L5.75 14M12 19.5V3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowDownLeft: {\n title: \"arrow-down-left\",\n svg: '<path d=\"M5.75 8.75V18.25H15.25M18 6L6.39983 17.6002\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowLeft: {\n title: \"arrow-left\",\n svg: '<path d=\"M10 5.75L3.75 12L10 18.25M4.5 12H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowUpLeft: {\n title: \"arrow-up-left\",\n svg: '<path d=\"M5.75 15.25V5.75H15.25M18 18L6.39983 6.39983\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowExpandHor: {\n title: \"arrow-expand-hor\",\n svg: '<path d=\"M18 7.75L22.25 12L18 16.25M6 7.75L1.75 12L6 16.25M3 12H21\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowExpandVer: {\n title: \"arrow-expand-ver\",\n svg: '<path d=\"M7.75 7L12 2.75L16.25 7M7.75 17L12 21.25L16.25 17M12 20V4\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconExpand45: {\n title: \"expand-45, enlarge\",\n svg: '<path d=\"M13.75 3.75H20.25V10.25M13.75 10.25L19.4766 4.52344M10.25 13.75L4.52344 19.4766M3.75 13.75V20.25H10.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconMinimize45: {\n title: \"minimize-45, arrow, shrink\",\n svg: '<path d=\"M13.75 3.75V10.25M13.75 10.25H20.25M13.75 10.25L20.25 3.75M10.25 20.25V13.75M10.25 13.75H3.75M10.25 13.75L3.75 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconExpand315: {\n title: \"expand-315, enlarge\",\n svg: '<path d=\"M10.25 3.75H3.75V10.25M20.25 13.75V20.25H13.75M4.52344 4.52344L10.25 10.25M13.75 13.75L19.4766 19.4766\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconMinimize315: {\n title: \"minimize-315, arrow, shrink\",\n svg: '<path d=\"M10.25 3.75V10.25M10.25 10.25H3.75M10.25 10.25L3.75 3.75M13.75 20.25V13.75M13.75 13.75H20.25M13.75 13.75L20.25 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronTop: {\n title: \"chevron-top\",\n svg: '<path d=\"M4 15L12 7L20 15\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronRight: {\n title: \"chevron-right\",\n svg: '<path d=\"M9 4L17 12L9 20\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronBottom: {\n title: \"chevron-bottom\",\n svg: '<path d=\"M20 9L12 17L4 9\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronLeft: {\n title: \"chevron-left\",\n svg: '<path d=\"M15 20L7 12L15 4\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronTopSmall: {\n title: \"chevron-top-small\",\n svg: '<path d=\"M8 14L12 10L16 14\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronDownSmall: {\n title: \"chevron-down-small\",\n svg: '<path d=\"M8 10L12 14L16 10\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronRightSmall: {\n title: \"chevron-right-small\",\n svg: '<path d=\"M10 16L14 12L10 8\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronLeftSmall: {\n title: \"chevron-left-small\",\n svg: '<path d=\"M14 16L10 12L14 8\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronDoubleUp: {\n title: \"chevron-double-up\",\n svg: '<path d=\"M8 10.5L12 6.5L16 10.5M8 17.5L12 13.5L16 17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronDoubleDown: {\n title: \"chevron-double-down\",\n svg: '<path d=\"M8 13.5L12 17.5L16 13.5M8 6.5L12 10.5L16 6.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronDoubleRight: {\n title: \"chevron-double-right\",\n svg: '<path d=\"M14 16L18 12L14 8M7 16L11 12L7 8\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronDoubleLeft: {\n title: \"chevron-double-left\",\n svg: '<path d=\"M10 16L6 12L10 8M17 16L13 12L17 8\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconExpandSimple: {\n title: \"expand-simple\",\n svg: '<path d=\"M5.75 12.75V18.25H11.25M12.75 5.75H18.25V11.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconExpandSimple2: {\n title: \"expand-simple-2\",\n svg: '<path d=\"M13 18.5H18.5V13M6 11.5V6H11.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronGrabberVertical: {\n title: \"chevron-grabber-vertical\",\n svg: '<path d=\"M8 9L12 5L16 9M16 15L12 19L8 15\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronGrabberHorizontal: {\n title: \"chevron-grabber-horizontal\",\n svg: '<path d=\"M9 16L5 12L9 8M15 8L19 12L15 16\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowPathRight: {\n title: \"arrow-path-right\",\n svg: '<path d=\"M2.75 15.25V8.75H13.75V4.75L22.25 12L13.75 19.25V15.25H2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowPathLeft: {\n title: \"arrow-path-left\",\n svg: '<path d=\"M21.5 15.5V9H10.5V5L2 12.25L10.5 19.5V15.5H21.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowPathUp: {\n title: \"arrow-path-up\",\n svg: '<path d=\"M15.25 21.25H8.75V10.25H4.75L12 1.75L19.25 10.25H15.25V21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowPathDown: {\n title: \"arrow-path-down\",\n svg: '<path d=\"M15.25 2.75H8.75V13.75H4.75L12 22.25L19.25 13.75H15.25V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowCornerDownRight: {\n title: \"arrow-corner-down-right\",\n svg: '<path d=\"M3.75 4.75V15.25H19.25M16.25 11.25L20.25 15.25L16.25 19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowCornerRightUp: {\n title: \"arrow-corner-right-up\",\n svg: '<path d=\"M4.75 20.25H15.25V4.75M11.25 7.75L15.25 3.75L19.25 7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowCornerRightDown: {\n title: \"arrow-corner-right-down\",\n svg: '<path d=\"M4.75 3.75H15.25V19.25M11.25 16.25L15.25 20.25L19.25 16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowCornerLeftUp: {\n title: \"arrow-corner-left-up\",\n svg: '<path d=\"M19.25 20.25H8.75V4.75M12.75 7.75L8.75 3.75L4.75 7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowCornerLeftDown: {\n title: \"arrow-corner-left-down\",\n svg: '<path d=\"M19.25 3.75H8.75V19.25M12.75 16.25L8.75 20.25L4.75 16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowCornerUpRight: {\n title: \"arrow-corner-up-right\",\n svg: '<path d=\"M3.75 19V8.5H19.25M16.25 12.5L20.25 8.5L16.25 4.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowCornerDownLeft: {\n title: \"arrow-corner-down-left\",\n svg: '<path d=\"M20.25 4.75V15.25H4.75M7.75 11.25L3.75 15.25L7.75 19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowCornerUpLeft: {\n title: \"arrow-corner-up-left\",\n svg: '<path d=\"M20.25 19V8.5H4.75M7.75 12.5L3.75 8.5L7.75 4.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowUndoUp: {\n title: \"arrow-undo-up, back, top \",\n svg: '<path d=\"M6.75 5L2.75 9L6.75 13M4 9H21.25V18.25H11.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowRedoUp: {\n title: \"arrow-redo-up, forward\",\n svg: '<path d=\"M17.25 5L21.25 9L17.25 13M20 9H2.75V18.25H12.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowUndoDown: {\n title: \"arrow-undo-down, back, bottom\",\n svg: '<path d=\"M7 19L3 15L7 11M4 15H21.25V5.75H11.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowRedoDown: {\n title: \"arrow-redo-down, forward\",\n svg: '<path d=\"M17 19L21 15L17 11M20 15H2.75V5.75H12.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconStepBack: {\n title: \"step-back,undo\",\n svg: '<path d=\"M6.75 3.25L3.75 6.25L6.75 9.25M4.5 6.25H14.25C17.7018 6.25 20.5 9.04822 20.5 12.5C20.5 15.9518 17.7018 18.75 14.25 18.75H5.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconStepForwards: {\n title: \"step-forwards,continue\",\n svg: '<path d=\"M17.25 3.25L20.25 6.25L17.25 9.25M19.5 6.25H9.75C6.29822 6.25 3.5 9.04822 3.5 12.5C3.5 15.9518 6.29822 18.75 9.75 18.75H18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowTopBottom: {\n title: \"arrow-top-bottom, sort 1, switch vertical\",\n svg: '<path d=\"M3.25 7.75L7.25 3.75L11.25 7.75M12.75 16.25L16.75 20.25L20.75 16.25M7.25 5V20.25M16.75 3.75V19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowBottomTop: {\n title: \"arrow-bottom-top, sort 2, switch vertical\",\n svg: '<path d=\"M3.25 16.25L7.25 20.25L11.25 16.25M12.75 7.75L16.75 3.75L20.75 7.75M7.25 19V3.75M16.75 20.25V4.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowSplit: {\n title: \"arrow-split, rules, direction, split\",\n svg: '<path d=\"M3.75 9.25V3.75M3.75 3.75H9.25M3.75 3.75L12 12M14.75 3.75H20.25M20.25 3.75V9.25M20.25 3.75L12 12M12 12V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowRightLeft: {\n title: \"arrow-right-left, sort 1, switch horizontal\",\n svg: '<path d=\"M7.75 20.75L3.75 16.75L7.75 12.75M16.25 11.25L20.25 7.25L16.25 3.25M5 16.75H20.25M3.75 7.25H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowLeftRight: {\n title: \"arrow-left-right, sort 2, switch horizonatl\",\n svg: '<path d=\"M7.75 3.25L3.75 7.25L7.75 11.25M16.25 12.75L20.25 16.75L16.25 20.75M5 7.25L20.25 7.25M3.75 16.75H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowsRepeat: {\n title: \"arrows-repeat, repost\",\n svg: '<path d=\"M3.75 13.25V4.75H15.1071M12.6457 1.75L15.7529 4.75L12.6457 7.75M20.25 10.75V19.25H8.89286M11.3543 22.25L8.24714 19.25L11.3543 16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowsRepeatRightLeft: {\n title: \"arrows-repeat-right-left, repost\",\n svg: '<path d=\"M17.25 2.75L20.25 5.75L17.25 8.75M6.75 21.25L3.75 18.25L6.75 15.25M5.25 18.25H20.25V13.25M3.75 10.25V5.75H18.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowsRepeatRightLeftOff: {\n title: \"arrows-repeat-right-left-off, repost-off\",\n svg: '<path d=\"M17.25 2.75L20.25 5.75L17.25 8.75M6.75 21.25L3.75 18.25L6.75 15.25M5.25 18.25H17.75M20.25 15.25V13.25M3.75 10.25V5.75H5.25M18.75 5.75H10.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 2.75L21.25 21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowsRepeatLeftRight: {\n title: \"arrows-repeat-left-right, retweet\",\n svg: '<path d=\"M17.25 21.25L20.25 18.25L17.25 15.25M6.75 2.75L3.75 5.75L6.75 8.75M5.25 5.75H20.25V10.75M3.75 13.75V18.25H18.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowsRepeatCircle: {\n title: \"arrows-repeat-circle, repost\",\n svg: '<path d=\"M10.75 1.5L14.25 4.75L10.75 8M13.25 16L9.75 19.25L13.25 22.5M10.75 19.25H14C18.0041 19.25 21.25 16.0041 21.25 12C21.25 9.81504 20.2834 7.85583 18.7546 6.52661M13.25 4.75H10C5.99593 4.75 2.75 7.99594 2.75 12C2.75 14.1854 3.71696 16.145 5.24638 17.4742\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowRotateClockwise: {\n title: \"arrow-rotate-clockwise, rotate-right\",\n svg: '<path d=\"M19.7596 14.75C18.627 17.9543 15.5711 20.25 11.979 20.25C7.42266 20.25 3.729 16.5563 3.729 12C3.729 7.44365 7.42266 3.75 11.979 3.75C14.7962 3.75 16.6791 4.95438 18.5 7.00891M19.25 4V8H15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowRotateCounterClockwise: {\n title: \"arrow-rotate-counter-clockwise, rotate-left\",\n svg: '<path d=\"M4.24023 14.75C5.37278 17.9543 8.42869 20.25 12.0208 20.25C16.5771 20.25 20.2708 16.5563 20.2708 12C20.2708 7.44365 16.5771 3.75 12.0208 3.75C8.82811 3.75 6.83534 5.29688 4.77284 7.875M4.7498 4V8H8.7498\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrow: {\n title: \"arrow, refresh, renew\",\n svg: '<path d=\"M13 21C13.5523 21 14 20.5523 14 20C14 19.4477 13.5523 19 13 19C12.4477 19 12 19.4477 12 20C12 20.5523 12.4477 21 13 21Z\" fill=\"currentColor\"/><path d=\"M21 11C21 10.4477 20.5523 9.99999 20 9.99999C19.4477 9.99999 19 10.4477 19 11C19 11.5523 19.4477 12 20 12C20.5523 12 21 11.5523 21 11Z\" fill=\"currentColor\"/><path d=\"M19.9295 14.2679C20.4078 14.5441 20.5716 15.1557 20.2955 15.634C20.0193 16.1123 19.4078 16.2761 18.9295 16C18.4512 15.7238 18.2873 15.1123 18.5634 14.634C18.8396 14.1557 19.4512 13.9918 19.9295 14.2679Z\" fill=\"currentColor\"/><path d=\"M17.3676 19.2942C17.8459 19.0181 18.0098 18.4065 17.7336 17.9282C17.4575 17.4499 16.8459 17.286 16.3676 17.5621C15.8893 17.8383 15.7254 18.4499 16.0016 18.9282C16.2777 19.4065 16.8893 19.5703 17.3676 19.2942Z\" fill=\"currentColor\"/><path d=\"M18.9269 7.99998C18.4487 8.27612 17.8371 8.11225 17.5609 7.63396C17.2848 7.15566 17.4487 6.54407 17.9269 6.26793C18.4052 5.99179 19.0168 6.15566 19.293 6.63396C19.5691 7.11225 19.4052 7.72384 18.9269 7.99998Z\" fill=\"currentColor\"/><path d=\"M9.25 14.75V20.25H3.75M9 19.6876C5.92698 18.4875 3.75 15.498 3.75 12C3.75 7.44365 7.44365 3.75 12 3.75C13.1537 3.75 14.2521 3.98683 15.2493 4.41452\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowRotateLeftRight: {\n title: \"arrow-rotate-left-right, repeat, refresh\",\n svg: '<path d=\"M19.2618 20.25V16.25H15.2618M4.75 3.75V7.75H8.75M3.81383 10.9688C3.7717 11.3066 3.75 11.6508 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C14.6766 20.25 17.1111 18.9754 18.6322 17M20.1862 13.0312C20.2283 12.6934 20.25 12.3492 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75C9.32342 3.75 6.88887 5.02463 5.36784 7\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowRotateRightLeft: {\n title: \"arrow-rotate-right-left, repeat, refresh\",\n svg: '<path d=\"M19.2618 3.75V7.75H15.2618M4.75 20.25V16.25H8.75M3.81383 13.0312C3.7717 12.6934 3.75 12.3492 3.75 12C3.75 7.44365 7.44365 3.75 12 3.75C14.6766 3.75 17.1111 5.02463 18.6322 7M20.1862 10.9688C20.2283 11.3066 20.25 11.6508 20.25 12C20.25 16.5563 16.5563 20.25 12 20.25C9.32342 20.25 6.88887 18.9754 5.36784 17\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowUpDownLeftRight: {\n title: \"arrow-up-down-left-right, move\",\n svg: '<path d=\"M9 5.75L12 2.75L15 5.75M5.75 9L2.75 12L5.75 15M18.25 9L21.25 12L18.25 15M15 18.25L12 21.25L9 18.25M12 4V12M12 12V20M12 12H4M12 12H20\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconSquized: {\n title: \"squized,centered,aligned\",\n svg: '<path d=\"M12 3.75V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5 9L8 12L5 15\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19 9L16 12L19 15\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 12H1.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22.25 12H16.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconOngoing: {\n title: \"ongoing, moving\",\n svg: '<path d=\"M12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75M16.625 3.98749C17.4767 4.48018 18.2426 5.10477 18.8947 5.83333M16.625 20.0125C17.4767 19.5198 18.2426 18.8952 18.8947 18.1667M21.0751 10.2005C21.1898 10.7826 21.25 11.3843 21.25 12C21.25 12.6157 21.1898 13.2174 21.0751 13.7995\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.75 8.5L16.25 12L12.75 15.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.25 12H7.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconCursor1: {\n title: \"cursor-1, arrow\",\n svg: '<path d=\"M3.25 3.25L9.93056 21.75L13.5278 13.5278L21.75 9.93056L3.25 3.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconCursor2: {\n title: \"cursor-2, arrow\",\n svg: '<path d=\"M14.25 14.25L19.25 9.25L3.25 3.25L9.25 19.25L14.25 14.25ZM14.25 14.25L21.25 21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconCursor3: {\n title: \"cursor-3, arrow\",\n svg: '<path d=\"M19.25 8.75L3.25 3.25L8.75 19.25L11.75 16.25L16.75 21.25L21.25 16.75L16.25 11.75L19.25 8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconSquareCursor: {\n title: \"square-cursor, cursor box, arrow\",\n svg: '<path d=\"M20.25 10.75V3.75H3.75V20.25H10.75M14.5 21.25L11.75 11.75L21.25 14.5L17 17L14.5 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconCursorClick: {\n title: \"cursor-click, arrow, clickbait\",\n svg: '<path d=\"M11 2.75V4.5M16.9069 5.09326L15.5962 6.40392M6.40381 15.5962L5.09315 16.9069M4.5 11H2.75M6.40381 6.40381L5.09315 5.09315M14.5 21.25L10.25 10.25L21.25 14.5L17 17L14.5 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconCursorList: {\n title: \"cursor-list, cursor, list\",\n svg: '<path d=\"M11.875 16.375L15.744 12.506L3.75 8.25L8.00595 20.244L11.875 16.375ZM11.875 16.375L16.75 21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 3.75H10.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.25 7.75H15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowShareLeft: {\n title: \"arrow-share-left, back, last, reply\",\n svg: '<path d=\"M1.75 12L11.25 3.75V8.5C19.75 8.5 22 11.75 22 20.25C20.5 17.25 19.75 15.5 11.25 15.5V20.25L1.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowShareRight: {\n title: \"arrow-share-right, next, forward\",\n svg: '<path d=\"M22 12L12.5 3.75V8.5C4 8.5 1.75 11.75 1.75 20.25C3.25 17.25 4 15.5 12.5 15.5V20.25L22 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronLargeLeft: {\n title: \"chevron-large-left, chev left, last\",\n svg: '<path d=\"M14.25 21.25L8.75 12L14.25 2.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronLargeRight: {\n title: \"chevron-large-right, chev right, next\",\n svg: '<path d=\"M9.75 2.75L15.25 12L9.75 21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronLargeTop: {\n title: \"chevron-large-top, chev top, up\",\n svg: '<path d=\"M2.75 14.25L12 8.75L21.25 14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronLargeDown: {\n title: \"chevron-large-down, chev down, down\",\n svg: '<path d=\"M21.25 9.75L12 15.25L2.75 9.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowWallRight: {\n title: \"arrow-wall-right, align right\",\n svg: '<path d=\"M13 7.75L17.25 12M17.25 12L13 16.25M17.25 12H2.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.25 4.75V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowWallLeft: {\n title: \"arrow-wall-left, align left\",\n svg: '<path d=\"M11 7.75L6.75 12M6.75 12L11 16.25M6.75 12H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 4.75V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowWallDown: {\n title: \"arrow-wall-down, align bottom\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C12.4142 2 12.75 2.33579 12.75 2.75V15.4393L15.7197 12.4697C16.0126 12.1768 16.4874 12.1768 16.7803 12.4697C17.0732 12.7626 17.0732 13.2374 16.7803 13.5303L12.5303 17.7803C12.3897 17.921 12.1989 18 12 18C11.8011 18 11.6103 17.921 11.4697 17.7803L7.21967 13.5303C6.92678 13.2374 6.92678 12.7626 7.21967 12.4697C7.51256 12.1768 7.98743 12.1768 8.28033 12.4697L11.25 15.4393V2.75C11.25 2.33579 11.5858 2 12 2Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 21.25C4 20.8358 4.33579 20.5 4.75 20.5H19.25C19.6642 20.5 20 20.8358 20 21.25C20 21.6642 19.6642 22 19.25 22H4.75C4.33579 22 4 21.6642 4 21.25Z\" fill=\"currentColor\"/>',\n category: \"Arrows\",\n },\n IconArrowWallUp: {\n title: \"arrow-wall-up, align top\",\n svg: '<path d=\"M16.25 11L12 6.75M12 6.75L7.75 11M12 6.75V21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.25 2.75H4.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowWall2Right: {\n title: \"arrow-wall-2-right, align right\",\n svg: '<path d=\"M14.5 7.75L18.75 12M18.75 12L14.5 16.25M18.75 12H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 4.75V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowWall2Left: {\n title: \"arrow-wall-2-left, align left\",\n svg: '<path d=\"M9.5 7.75L5.25 12M5.25 12L9.5 16.25M5.25 12H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 4.75V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowWall2Down: {\n title: \"arrow-wall-2-down, align bottom\",\n svg: '<path d=\"M7.75 14.5L12 18.75M12 18.75L16.25 14.5M12 18.75V3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75 20.25H19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowWall2Up: {\n title: \"arrow-wall-2-up, align top\",\n svg: '<path d=\"M7.75 9.5L12 5.25M12 5.25L16.25 9.5M12 5.25V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75 3.75H19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowTriangleRight: {\n title: \"arrow-triangle-right\",\n svg: '<path d=\"M4.75 19.25V4.75L19.25 12L4.75 19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowTriangleLeft: {\n title: \"arrow-triangle-left\",\n svg: '<path d=\"M19.25 19.25V4.75L4.75 12L19.25 19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowTriangleBottom: {\n title: \"arrow-triangle-bottom\",\n svg: '<path d=\"M19.25 4.75H4.75L12 19.25L19.25 4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconArrowTriangleTop: {\n title: \"arrow-triangle-top\",\n svg: '<path d=\"M19.25 19.25H4.75L12 4.75L19.25 19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronTriangleDownSmall: {\n title: \"chevron-triangle-down-small, dropdown\",\n svg: '<path d=\"M15.25 11H8.75L12 15L15.25 11Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconChevronTriangleUpSmall: {\n title: \"chevron-triangle-up-small, dropdown\",\n svg: '<path d=\"M15.25 13H8.75L12 9L15.25 13Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconSquareArrowTopRight: {\n title: \"square-arrow-top-right, open, new, link, open link, box, arrow\",\n svg: '<path d=\"M18.25 14V20.25H3.75V5.75H9.25M13.75 3.75H20.25M20.25 3.75V10.25M20.25 3.75L11 13\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconSquareArrowTopRight2: {\n title: \"square-arrow-top-right-2, open, new, link, open link, box, arrow\",\n svg: '<path d=\"M9.25 3.75H3.75V20.25H20.25V14.75M13.75 3.75H20.25M20.25 3.75V10.25M20.25 3.75L11 13\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconSquareArrowCenter: {\n title: \"square-arrow-center, resize big, box, arrow\",\n svg: '<path d=\"M20.25 13.25V3.75L3.75 3.75L3.75 20.25H13.25M9.75 15.25V9.75M9.75 9.75H15.25M9.75 9.75L18 18\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconSquareArrowBottomRight: {\n title: \"square-arrow-bottom-right, resize small, box, arrow\",\n svg: '<path d=\"M20.25 9.25V3.75L3.75 3.75L3.75 20.25H9.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 13.75V20.25M20.25 20.25H13.75M20.25 20.25L11 11\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconSquareArrowInTopLeft: {\n title: \"square-arrow-in-top-left, dock, box, arrow\",\n svg: '<path d=\"M13.75 6.75H21.25V21.25H6.75V13.75M9 9L3.5 3.5M10.25 3.75V10.25L3.75 10.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconSquareArrowOutTopLeft: {\n title: \"square-arrow-out-top-left, undock, box, arrow\",\n svg: '<path d=\"M13.75 6.75H21.25V21.25H6.75V13.75M3.75 10.25V3.75H10.25M4.75 4.75L10.25 10.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconShareArrowDown: {\n title: \"share-arrow-down, save\",\n svg: '<path d=\"M12 15V1.75M12 15L8.5 11.5M12 15L15.5 11.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M16.75 4.75H20.25V20.25H3.75V4.75H7.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Arrows\",\n },\n IconVisionPro: {\n title: \"vision-pro, goggles\",\n svg: '<path d=\"M12 15.125C9.44318 15.125 9.44318 18.25 5.86364 18.25C2.28409 18.25 0.75 15.125 0.75 12C0.75 6.27083 6.88636 5.74998 12 5.75C17.1136 5.75002 23.25 6.27083 23.25 12C23.25 15.0578 21.7159 18.25 18.1364 18.25C14.5568 18.25 14.5568 15.125 12 15.125Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconOculus: {\n title: \"oculus\",\n svg: '<path d=\"M10.75 8.75H13.25M21.6978 9.94553L22.75 8.875M21.6978 9.94553C21.2375 7.57229 19.1799 5.75 16.6747 5.75H7.32528C4.82011 5.75 2.7625 7.57229 2.30218 9.94553M21.6978 9.94553C22.3973 13.552 20.6458 18.25 16.5041 18.25H7.49592C3.35421 18.25 1.60266 13.552 2.30218 9.94553M1.25 8.875L2.30218 9.94553\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconAr: {\n title: \"ar, augmented-reality, card-box, 3d, virtual reality, VR\",\n svg: '<path d=\"M1.75 5.75V5C1.33579 5 1 5.33579 1 5.75H1.75ZM22.25 5.75H23C23 5.33579 22.6642 5 22.25 5V5.75ZM22.25 19.25V20C22.6642 20 23 19.6642 23 19.25H22.25ZM1.75 19.25H1C1 19.6642 1.33579 20 1.75 20L1.75 19.25ZM7.9 19.25V20C8.08476 20 8.26301 19.9318 8.40059 19.8085L7.9 19.25ZM12 15.575L12.5006 15.0165C12.2157 14.7612 11.7843 14.7612 11.4994 15.0165L12 15.575ZM16.1 19.25L15.5994 19.8085C15.737 19.9318 15.9152 20 16.1 20V19.25ZM1.75 6.5H22.25V5H1.75V6.5ZM21.5 5.75V19.25H23V5.75H21.5ZM2.5 19.25V5.75H1V19.25H2.5ZM7.9 18.5H1.75V20H7.9V18.5ZM11.4994 15.0165L7.39941 18.6915L8.40059 19.8085L12.5006 16.1335L11.4994 15.0165ZM22.25 18.5H16.1V20H22.25V18.5ZM16.6006 18.6915L12.5006 15.0165L11.4994 16.1335L15.5994 19.8085L16.6006 18.6915ZM8.5 11.5C8.5 12.0523 8.05228 12.5 7.5 12.5V14C8.88071 14 10 12.8807 10 11.5H8.5ZM7.5 12.5C6.94772 12.5 6.5 12.0523 6.5 11.5H5C5 12.8807 6.11929 14 7.5 14V12.5ZM6.5 11.5C6.5 10.9477 6.94772 10.5 7.5 10.5V9C6.11929 9 5 10.1193 5 11.5H6.5ZM7.5 10.5C8.05228 10.5 8.5 10.9477 8.5 11.5H10C10 10.1193 8.88071 9 7.5 9V10.5ZM17.5 11.5C17.5 12.0523 17.0523 12.5 16.5 12.5V14C17.8807 14 19 12.8807 19 11.5H17.5ZM16.5 12.5C15.9477 12.5 15.5 12.0523 15.5 11.5H14C14 12.8807 15.1193 14 16.5 14V12.5ZM15.5 11.5C15.5 10.9477 15.9477 10.5 16.5 10.5V9C15.1193 9 14 10.1193 14 11.5H15.5ZM16.5 10.5C17.0523 10.5 17.5 10.9477 17.5 11.5H19C19 10.1193 17.8807 9 16.5 9V10.5Z\" fill=\"currentColor\"/>',\n category: \"Augmented Reality\",\n },\n IconArCube1: {\n title: \"ar-cube-1\",\n svg: '<path d=\"M12.0002 12V20.5M12.0002 12L4.5 7.78124M12.0002 12L19.2627 7.91473M12 2.71875L3.75 7.35938V16.6406L12 21.2812L20.25 16.6406V7.35938L12 2.71875Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconArCube2: {\n title: \"ar-cube-2\",\n svg: '<path d=\"M12.0002 12L12 3.5M12.0002 12L19.5 16.2188M12.0002 12L4.50004 16.2188M12 21.2813L3.75 16.6407V7.35944L12 2.71881L20.25 7.35944V16.6407L12 21.2813Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n Icon3dSphere: {\n title: \"3d-sphere\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M21.1291 12.5C20.4124 13.9651 16.598 15.0833 12.0001 15.0833C7.40218 15.0833 3.58781 13.9651 2.87109 12.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M11.5684 21.16C10.07 20.5299 8.91699 16.6689 8.91699 12C8.91699 7.34333 10.064 3.49037 11.5566 2.84503\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconArCube3: {\n title: \"ar-cube-3\",\n svg: '<path d=\"M9.48045 4.136L12 2.71875L14.5196 4.136M17.5703 5.85202L20.25 7.35938V10.25M20.25 13.75V16.6406L17.5703 18.148M14.5196 19.864L12 21.2812L9.48044 19.864M6.42973 18.148L3.75 16.6406V13.75M3.75 10.25V7.35938L6.42974 5.85202M12 14.25V12M12 12L13.9485 10.875M12 12L10.0514 10.875M12 3.21875V6.25M12 17.7031V20.7812M6.84875 14.8516L4.13407 16.4189M4.13407 7.58112L6.80815 9.125M19.8659 7.58112L17.1918 9.125M17.1513 14.8516L19.8659 16.4189\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconArScanCube1: {\n title: \"ar-scan-cube-1\",\n svg: '<path d=\"M8.25 20.25H3.75V15.75M15.75 20.25H20.25V15.75M3.75 8.25V3.75H8.25M15.75 3.75H20.25V8.25M8.25 9.85709L12 7.71423L15.75 9.85709M8.25 9.85709V14.1428L12 16.2857M8.25 9.85709L12 11.9999M12 16.2857L15.75 14.1428V9.85709M12 16.2857V11.9999M15.75 9.85709L12 11.9999\" stroke=\"currentColor\" strokeWidth=\"1.40625\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconArScanCube2: {\n title: \"ar-scan-cube-2\",\n svg: '<path d=\"M12 12L7.37332 9.35618M12 12L16.6267 9.35618M12 12V17.5M4 4V3.99M20 4V3.99M4 20V19.99M20 20V19.99M12 6L6.75 9V15L12 18L17.25 15V9L12 6ZM4.25 4C4.25 4.13807 4.13807 4.25 4 4.25C3.86193 4.25 3.75 4.13807 3.75 4C3.75 3.86193 3.86193 3.75 4 3.75C4.13807 3.75 4.25 3.86193 4.25 4ZM20.25 4C20.25 4.13807 20.1381 4.25 20 4.25C19.8619 4.25 19.75 4.13807 19.75 4C19.75 3.86193 19.8619 3.75 20 3.75C20.1381 3.75 20.25 3.86193 20.25 4ZM4.25 20C4.25 20.1381 4.13807 20.25 4 20.25C3.86193 20.25 3.75 20.1381 3.75 20C3.75 19.8619 3.86193 19.75 4 19.75C4.13807 19.75 4.25 19.8619 4.25 20ZM20.25 20C20.25 20.1381 20.1381 20.25 20 20.25C19.8619 20.25 19.75 20.1381 19.75 20C19.75 19.8619 19.8619 19.75 20 19.75C20.1381 19.75 20.25 19.8619 20.25 20Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconSpatialCapture: {\n title: \"spatial-capture\",\n svg: '<path d=\"M7.75 4.54066V14.2055M16.25 4.88794L8.15258 9.56298M20.5 12.25L16.25 9.79626L12.3778 7.56064M16.25 19.2028V10.2677M8 19.466L15.8524 14.9325M3.52074 12.25L11.5782 16.9139M3.08984 6.875V17.125L11.9998 22.25L20.9098 17.125V6.875L11.9998 1.75L3.08984 6.875Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconAround: {\n title: \"around, spatial\",\n svg: '<path d=\"M2.75 6.25V18C2.75 18.8202 4.55425 19.5379 7.25 19.9311V16.0689V7.93108C4.55425 7.5379 2.75 6.8202 2.75 6C2.75 4.75736 6.89137 3.75 12 3.75C17.1086 3.75 21.25 4.75736 21.25 6C21.25 6.8202 19.4458 7.5379 16.75 7.93108V16.0689V19.9311C19.4458 19.5379 21.25 18.8202 21.25 18V6.25M16.2418 16C14.9713 15.8402 13.529 15.75 12 15.75C10.471 15.75 9.02873 15.8402 7.75815 16\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconPanoramaView: {\n title: \"panorama-view\",\n svg: '<path d=\"M22.25 19.25V4.75C15.1797 7.12452 8.82033 7.12452 1.75 4.75V19.25C8.78176 16.8507 15.2182 16.8507 22.25 19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconVisionProApp: {\n title: \"vision-pro-app, window\",\n svg: '<path d=\"M0.75 8.75V13.25M19.25 17.1786H22.25V4.75H3.75V17.1786H6.75M6.75 16.25V19.25H19.25V16.25H6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconRotate: {\n title: \"rotate, rotation, x-axis\",\n svg: '<path d=\"M12 3C12.4142 3 12.75 3.33579 12.75 3.75V12.25C12.75 12.6642 12.4142 13 12 13C11.5858 13 11.25 12.6642 11.25 12.25V3.75C11.25 3.33579 11.5858 3 12 3Z\" fill=\"currentColor\"/><path d=\"M12 17.5C12.4142 17.5 12.75 17.8358 12.75 18.25V20.25C12.75 20.6642 12.4142 21 12 21C11.5858 21 11.25 20.6642 11.25 20.25V18.25C11.25 17.8358 11.5858 17.5 12 17.5Z\" fill=\"currentColor\"/><path d=\"M14.7576 8.88401C14.8166 8.47401 15.1967 8.18941 15.6067 8.24834C17.3416 8.49769 18.8675 8.92734 19.9827 9.50012C21.0322 10.0392 22 10.8589 22 12C22 12.7602 21.5597 13.379 21.0023 13.842C20.4405 14.3087 19.6724 14.6954 18.7894 15.0057C17.0163 15.6286 14.6159 16 12 16C9.38409 16 6.98366 15.6286 5.21065 15.0057C4.32757 14.6954 3.55953 14.3087 2.99767 13.842C2.44033 13.379 2 12.7602 2 12C2 10.9703 2.79329 10.2044 3.68339 9.68314C4.53936 9.18188 5.68582 8.7813 7 8.49713V7.76752C7 7.3436 7.49443 7.11202 7.82009 7.38341L9.53907 8.81589C9.77894 9.01578 9.77894 9.38421 9.53907 9.58411L7.82009 11.0166C7.49443 11.288 7 11.0564 7 10.6325V10.0351C5.92743 10.2898 5.0567 10.6172 4.44139 10.9775C3.66491 11.4322 3.5 11.8087 3.5 12C3.5 12.1373 3.57734 12.3735 3.95615 12.6881C4.33044 12.9991 4.91703 13.3126 5.70788 13.5905C7.28271 14.1438 9.50727 14.5 12 14.5C14.4927 14.5 16.7173 14.1438 18.2921 13.5905C19.083 13.3126 19.6696 12.9991 20.0439 12.6881C20.4227 12.3735 20.5 12.1373 20.5 12C20.5 11.7814 20.2795 11.3389 19.2974 10.8344C18.3809 10.3637 17.0318 9.96858 15.3933 9.73308C14.9833 9.67416 14.6987 9.29401 14.7576 8.88401Z\" fill=\"currentColor\"/>',\n category: \"Augmented Reality\",\n },\n IconQm3: {\n title: \"qm3, room, transform, xyz, 3d\",\n svg: '<path d=\"M20.25 14.75H8.75M8.75 14.75L3.75 20.25M8.75 14.75V4.23504M5.25 7.25L8.75 3.75L12.25 7.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Augmented Reality\",\n },\n IconHomeRoundDoor: {\n title: \"home-round-door\",\n svg: '<path d=\"M9.5 16.75V20.25H3.75V8.90625L12 3.75L20.25 8.90625V20.25H14.5V16.75C14.5 15.3693 13.3807 14.25 12 14.25C10.6193 14.25 9.5 15.3693 9.5 16.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Building\",\n },\n IconHomePersonalFeed: {\n title: \"home-personal-feed, for-you\",\n svg: '<path d=\"M3.75 9V20.25H20.25V9L12 3.75L3.75 9Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M16.25 20C16.25 17.6528 14.3472 15.75 12 15.75C9.65279 15.75 7.75 17.6528 7.75 20\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.25 11.5C14.25 12.7426 13.2426 13.75 12 13.75C10.7574 13.75 9.75 12.7426 9.75 11.5C9.75 10.2574 10.7574 9.25 12 9.25C13.2426 9.25 14.25 10.2574 14.25 11.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Building\",\n },\n IconHome: {\n title: \"home, house\",\n svg: '<path d=\"M3.75 8.75L12 2L20.25 8.75V20.25H3.75V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Building\",\n },\n IconHomeLine: {\n title: \"home-line\",\n svg: '<path d=\"M3.75 8.75L3.27507 8.16953L3 8.39459V8.75H3.75ZM20.25 8.75H21V8.39459L20.7249 8.16953L20.25 8.75ZM20.25 20.25V21H21V20.25H20.25ZM3.75 20.25H3V21H3.75V20.25ZM12 2L12.4749 1.41953L12 1.03095L11.5251 1.41953L12 2ZM7.75 15.5C7.33579 15.5 7 15.8358 7 16.25C7 16.6642 7.33579 17 7.75 17V15.5ZM16.25 17C16.6642 17 17 16.6642 17 16.25C17 15.8358 16.6642 15.5 16.25 15.5V17ZM19.5 8.75V20.25H21V8.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V8.75H3V20.25H4.5ZM4.22493 9.33047L12.4749 2.58047L11.5251 1.41953L3.27507 8.16953L4.22493 9.33047ZM11.5251 2.58047L19.7751 9.33047L20.7249 8.16953L12.4749 1.41953L11.5251 2.58047ZM7.75 17H16.25V15.5H7.75V17Z\" fill=\"currentColor\"/>',\n category: \"Building\",\n },\n IconHomeCircle: {\n title: \"home-circle\",\n svg: '<path d=\"M3.75 7L12 2.25L20.25 7V20.25H3.75V7Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15 12.25C15 13.9069 13.6569 15.25 12 15.25C10.3431 15.25 9 13.9069 9 12.25C9 10.5931 10.3431 9.25 12 9.25C13.6569 9.25 15 10.5931 15 12.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Building\",\n },\n IconHomeRoof: {\n title: \"home-roof, house\",\n svg: '<path d=\"M19.25 7.69038L12 2.5L4.74997 7.6904M19.25 7.69038L21.5 9.30119M19.25 7.69038V20.25H4.74997V7.6904M4.74997 7.6904L2.5 9.30119\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Building\",\n },\n IconHomeDoor: {\n title: \"home-door, house\",\n svg: '<path d=\"M3.75 8.75L3.27507 8.16953C3.10097 8.31198 3 8.52505 3 8.75H3.75ZM20.25 8.75H21C21 8.52505 20.899 8.31198 20.7249 8.16953L20.25 8.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM12 2L12.4749 1.41953C12.1987 1.19349 11.8013 1.19349 11.5251 1.41953L12 2ZM8.75 12.75V12C8.33579 12 8 12.3358 8 12.75H8.75ZM15.25 12.75H16C16 12.3358 15.6642 12 15.25 12V12.75ZM15.25 20.25V21C15.6642 21 16 20.6642 16 20.25H15.25ZM8.75 20.25H8C8 20.6642 8.33579 21 8.75 21V20.25ZM19.5 8.75V20.25H21V8.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V8.75H3V20.25H4.5ZM4.22493 9.33047L12.4749 2.58047L11.5251 1.41953L3.27507 8.16953L4.22493 9.33047ZM11.5251 2.58047L19.7751 9.33047L20.7249 8.16953L12.4749 1.41953L11.5251 2.58047ZM8.75 13.5H15.25V12H8.75V13.5ZM14.5 12.75V20.25H16V12.75H14.5ZM15.25 19.5H8.75V21H15.25V19.5ZM9.5 20.25V12.75H8V20.25H9.5Z\" fill=\"currentColor\"/>',\n category: \"Building\",\n },\n IconHomeOpen: {\n title: \"home-open, house\",\n svg: '<path d=\"M3.75 9L3.27507 8.41953C3.10097 8.56198 3 8.77505 3 9H3.75ZM20.25 9H21C21 8.77505 20.899 8.56198 20.7249 8.41953L20.25 9ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM12 2.25L12.4749 1.66953C12.1987 1.44349 11.8013 1.44349 11.5251 1.66953L12 2.25ZM9.75 14.75V14C9.33579 14 9 14.3358 9 14.75H9.75ZM14.25 14.75H15C15 14.3358 14.6642 14 14.25 14V14.75ZM14.25 20.25H13.5C13.5 20.6642 13.8358 21 14.25 21V20.25ZM9.75 20.25V21C10.1642 21 10.5 20.6642 10.5 20.25H9.75ZM19.5 9V20.25H21V9H19.5ZM4.5 20.25V9H3V20.25H4.5ZM4.22493 9.58047L12.4749 2.83047L11.5251 1.66953L3.27507 8.41953L4.22493 9.58047ZM11.5251 2.83047L19.7751 9.58047L20.7249 8.41953L12.4749 1.66953L11.5251 2.83047ZM9.75 15.5H14.25V14H9.75V15.5ZM13.5 14.75V20.25H15V14.75H13.5ZM10.5 20.25V14.75H9V20.25H10.5ZM9.75 19.5H3.75V21H9.75V19.5ZM14.25 21H20.25V19.5H14.25V21Z\" fill=\"currentColor\"/>',\n category: \"Building\",\n },\n IconCourt: {\n title: \"court\",\n svg: '<path d=\"M3.75 9.25H3C3 9.66421 3.33579 10 3.75 10V9.25ZM20.25 9.25V10C20.6642 10 21 9.66421 21 9.25H20.25ZM3.75 5.5L3.51283 4.78849C3.20657 4.89057 3 5.17718 3 5.5H3.75ZM12 2.75L12.2372 2.03849C12.0832 1.98717 11.9168 1.98717 11.7628 2.03849L12 2.75ZM20.25 5.5H21C21 5.17718 20.7934 4.89057 20.4872 4.78849L20.25 5.5ZM5.25 17.75V18.5H6.75V17.75H5.25ZM6.75 9.25C6.75 8.83579 6.41421 8.5 6 8.5C5.58579 8.5 5.25 8.83579 5.25 9.25H6.75ZM9.25 17.75V18.5H10.75V17.75H9.25ZM10.75 9.25C10.75 8.83579 10.4142 8.5 10 8.5C9.58579 8.5 9.25 8.83579 9.25 9.25H10.75ZM13.25 17.75V18.5H14.75V17.75H13.25ZM14.75 9.25C14.75 8.83579 14.4142 8.5 14 8.5C13.5858 8.5 13.25 8.83579 13.25 9.25H14.75ZM17.25 17.75V18.5H18.75V17.75H17.25ZM18.75 9.25C18.75 8.83579 18.4142 8.5 18 8.5C17.5858 8.5 17.25 8.83579 17.25 9.25H18.75ZM3.75 19.5H3V21H3.75V19.5ZM20.25 21H21V19.5H20.25V21ZM3.75 10H20.25V8.5H3.75V10ZM4.5 9.25V5.5H3V9.25H4.5ZM3.98717 6.21151L12.2372 3.46151L11.7628 2.03849L3.51283 4.78849L3.98717 6.21151ZM11.7628 3.46151L20.0128 6.21151L20.4872 4.78849L12.2372 2.03849L11.7628 3.46151ZM19.5 5.5V9.25H21V5.5H19.5ZM6.75 17.75L6.75 9.25H5.25L5.25 17.75H6.75ZM10.75 17.75L10.75 9.25H9.25L9.25 17.75H10.75ZM14.75 17.75L14.75 9.25H13.25L13.25 17.75H14.75ZM18.75 17.75L18.75 9.25H17.25L17.25 17.75H18.75ZM3.75 21H20.25V19.5H3.75V21Z\" fill=\"currentColor\"/>',\n category: \"Building\",\n },\n IconBank: {\n title: \"bank\",\n svg: '<path d=\"M19.25 9.25V17.25M15.25 17.25V9.25M4.75 9.25V17.25M8.75 17.25V9.25M2.75 7.17308L12 2.5L21.25 7.17308V9.25H2.75V7.17308ZM2.75 20.25H21.25L20.25 17.25H3.75L2.75 20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Building\",\n },\n IconBuildings: {\n title: \"buildings, company, workspace\",\n svg: '<path d=\"M3.75 19.25H14.25M3.75 19.25V3.75H14.25V7.75M3.75 19.25H1.75M20.25 19.25H14.25M20.25 19.25V7.75H14.25M20.25 19.25H22.25M14.25 19.25V7.75M10.25 8.75H7.75M7.75 12.75H10.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Building\",\n },\n IconBlock: {\n title: \"block, workspace\",\n svg: '<path d=\"M4.75 20.25V3.75H19.25V20.25M4.75 20.25H19.25M4.75 20.25H2.75M19.25 20.25H21.25M8.75 7.75H10.25M13.75 7.75H15.25M8.75 11.75H10.25M13.75 11.75H15.25M8.75 15.75H10.25M13.75 15.75H15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Building\",\n },\n IconGarage: {\n title: \"garage\",\n svg: '<path d=\"M6.75 19.25V15.25M17.25 19.25V15.25M6.75 15.25H17.25M6.75 15.25V11.25H17.25V15.25M2.75 19.25H21.25V8.91667L12 3.75L2.75 8.91667V19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Building\",\n },\n IconMall: {\n title: \"mall, store, shop, business\",\n svg: '<path d=\"M7.75 19.25H2.75V4.75H21.25V19.25H16.25M7.75 19.25V10.75H12M7.75 19.25H12M16.25 19.25V10.75H12M16.25 19.25H12M12 10.75V19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Building\",\n },\n IconStore1: {\n title: \"store-1\",\n svg: '<path d=\"M3.75 10.5V20.25H20.25V10.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14.6173 3.75H9.49961L9.20073 8.23319C9.09189 9.86584 10.3868 11.25 12.0231 11.25C13.6419 11.25 14.9305 9.89404 14.8481 8.27736L14.6173 3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.49958 3.75H3.74958L3.20245 7.85351C2.96265 9.65196 4.37099 11.25 6.18536 11.25C7.76475 11.25 9.08122 10.0255 9.18628 8.44956L9.49958 3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.1724 3.75H14.6172L14.8558 8.43099C14.9363 10.0106 16.2405 11.25 17.8222 11.25C19.6306 11.25 21.0193 9.64764 20.7622 7.85761L20.1724 3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Building\",\n },\n IconStore2: {\n title: \"store-2\",\n svg: '<path d=\"M14.6173 3.75H9.49961L9.20073 8.23319C9.09189 9.86584 10.3868 11.25 12.0231 11.25C13.6419 11.25 14.9305 9.89404 14.8481 8.27736L14.6173 3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.49958 3.75H3.74958L3.20245 7.85351C2.96265 9.65196 4.37099 11.25 6.18536 11.25C7.76475 11.25 9.08122 10.0255 9.18628 8.44956L9.49958 3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.1724 3.75H14.6172L14.8558 8.43099C14.9363 10.0106 16.2405 11.25 17.8222 11.25C19.6306 11.25 21.0193 9.64764 20.7622 7.85761L20.1724 3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 10.5V20.25H10V15.25H14V20.25H20.25V10.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Building\",\n },\n IconStore3: {\n title: \"store-3\",\n svg: '<path d=\"M3.75 11.25V20.25H20.25V11.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.36894 8.83929C7.36894 10.2386 6.27932 11.25 4.93521 11.25C3.31829 11.25 2.15092 9.63877 2.59512 8.02015L3.75 3.75H20.25L21.4049 8.02015C21.8491 9.63876 20.6817 11.25 19.0648 11.25C17.7207 11.25 16.6311 10.2386 16.6311 8.83929M7.36894 8.83929C7.36894 10.1707 8.40563 11.25 9.68447 11.25C10.9633 11.25 12 10.1707 12 8.83929M7.36894 8.83929L7.369 8.82857M16.6311 8.83929C16.6311 10.1707 15.5944 11.25 14.3155 11.25C13.0367 11.25 12 10.1707 12 8.83929M16.6311 8.83929V8.82857M12 8.83929V8.82857\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Building\",\n },\n IconStore4: {\n title: \"store-4, shop, business\",\n svg: '<path d=\"M20.2503 12V20.25H3.75026V12M9.50026 3.75H14.5003M9.50026 3.75L8.90923 8.77398C8.69156 10.6243 10.1373 12.25 12.0003 12.25C13.8633 12.25 15.309 10.6243 15.0914 8.77397L14.5003 3.75M9.50026 3.75H4.41693L2.97261 8.35377C2.36663 10.2853 3.80934 12.25 5.83373 12.25C7.3543 12.25 8.63416 11.1119 8.81182 9.60174L9.50026 3.75ZM14.5003 3.75H19.5836L21.0279 8.35377C21.6339 10.2853 20.1912 12.25 18.1668 12.25C16.6462 12.25 15.3664 11.1119 15.1887 9.60174L14.5003 3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Building\",\n },\n IconStores: {\n title: \"stores, shops, mall\",\n svg: '<path d=\"M2.75 15V20.25H13.25V15\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75016 10.75L10.2305 13.6321C10.3861 14.5657 11.1939 15.25 12.1404 15.25C13.5101 15.25 14.4468 13.8665 13.9381 12.5947L13.0002 10.25H3.00016L2.06227 12.5947C1.55354 13.8665 2.49019 15.25 3.85997 15.25C4.80645 15.25 5.61421 14.5657 5.76981 13.6321L6.25016 10.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75018 10.75L10.0892 12.784C10.3043 14.0749 9.30886 15.25 8.00018 15.25C6.69149 15.25 5.69603 14.0749 5.91118 12.784L6.25018 10.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.089 6.28394C18.3041 7.57481 17.3087 8.74992 16 8.74992\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.75 14.25H21.25V8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.7504 4.25L18.2307 7.13212C18.3863 8.06573 19.1941 8.75 20.1406 8.75C21.5104 8.75 22.447 7.36654 21.9383 6.09474L21.0004 3.75H11.0004L10.0625 6.09474M13.9171 6.25L14.2504 4.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Building\",\n },\n IconSchool: {\n title: \"school, building\",\n svg: '<path d=\"M1.75 19.25H2.75M22.25 19.25H21.25M21.25 19.25V8.75H17.25M21.25 19.25H17.25M17.25 8.75V19.25M17.25 8.75V4.75H6.75V8.75M17.25 19.25H14.25M6.75 19.25V8.75M6.75 19.25H2.75M6.75 19.25H9.75M6.75 8.75H2.75V19.25M9.75 19.25V14.75H14.25V19.25M9.75 19.25H14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Building\",\n },\n IconDoor: {\n title: \"door, login, logout\",\n svg: '<path d=\"M2.75 21.25L21.25 21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75 21.25V2.75H19.25V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.75 12.25H8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Building\",\n },\n IconCloud: {\n title: \"cloud, clouds\",\n svg: '<path d=\"M17.125 19.25H8.925C4.96236 19.25 1.75 16.0041 1.75 12C1.75 7.99594 4.96236 4.75 8.925 4.75C11.8865 4.75 14.4289 6.56294 15.5245 9.15037C16.0281 8.98326 16.5661 8.89286 17.125 8.89286C19.9555 8.89286 22.25 11.2114 22.25 14.0714C22.25 16.9315 19.9555 19.25 17.125 19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconCloudDownload: {\n title: \"cloud-download\",\n svg: '<path d=\"M16.75 19.25H18.125C20.4032 19.25 22.25 17.4032 22.25 15.125C22.25 12.8468 20.4032 11 18.125 11C18.0814 11 18.038 11.0007 17.9948 11.002C17.9983 10.9184 18 10.8344 18 10.75C18 7.43629 15.3137 4.75 12 4.75C9.3716 4.75 7.13793 6.44009 6.32647 8.7928C3.74507 9.12339 1.75 11.3287 1.75 14C1.75 16.8995 4.10051 19.25 7 19.25H7.25M12 11.75V19.25M12 19.25L14.5 16.75M12 19.25L9.5 16.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Clouds\",\n },\n IconCloudUpload: {\n title: \"cloud-upload\",\n svg: '<path d=\"M12 19.25V11.75M12 11.75L14.5 14.25M12 11.75L9.5 14.25M15 19.25H18.125C20.4032 19.25 22.25 17.4032 22.25 15.125C22.25 12.8468 20.4032 11 18.125 11C18.0814 11 18.038 11.0007 17.9948 11.002C17.9983 10.9184 18 10.8344 18 10.75C18 7.43629 15.3137 4.75 12 4.75C9.3716 4.75 7.13793 6.44009 6.32647 8.7928C3.74507 9.12339 1.75 11.3287 1.75 14C1.75 16.8995 4.10051 19.25 7 19.25H9\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Clouds\",\n },\n IconCloudCheck: {\n title: \"cloud-check, save\",\n svg: '<path d=\"M4.96941 18.89C3.08259 18.1254 1.75 16.259 1.75 14.0779C1.75 11.4529 3.68024 9.28373 6.18382 8.94245C7.0149 6.50279 9.30502 4.75 12 4.75C14.695 4.75 16.9851 6.50279 17.8162 8.94245C20.3198 9.28373 22.25 11.4529 22.25 14.0779C22.25 16.259 20.9174 18.1254 19.0306 18.89\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.75 17L11.25 19.75L16.25 14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Clouds\",\n },\n IconCloudOff: {\n title: \"cloud-off, offline \",\n svg: '<path d=\"M9.52521 5.28254C10.2797 4.94047 11.1176 4.75 12 4.75C15.3137 4.75 18 7.43629 18 10.75C18 10.8344 17.9983 10.9184 17.9948 11.002C18.038 11.0007 18.0814 11 18.125 11C20.4032 11 22.25 12.8468 22.25 15.125C22.25 15.9461 22.0101 16.7111 21.5966 17.3539M3 3L21 21M6.32647 8.7928C3.74507 9.12339 1.75 11.3287 1.75 14C1.75 16.8995 4.10051 19.25 7 19.25H18.125C18.4707 19.25 18.8065 19.2075 19.1274 19.1274L7.17838 7.17838C6.81719 7.66517 6.52798 8.20855 6.32647 8.7928Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Clouds\",\n },\n IconCloudOff2: {\n title: \"cloud-off-2, offline \",\n svg: '<path d=\"M16.9636 7.37808C17.6177 8.33906 18 9.49988 18 10.75C18 10.8344 17.9983 10.9184 17.9948 11.002C18.038 11.0007 18.0814 11 18.125 11C20.4032 11 22.25 12.8468 22.25 15.125C22.25 17.4032 20.4032 19.25 18.125 19.25H10.6979M15.75 3.25L6.25 21.25M6.32647 8.7928C7.13793 6.44009 9.3716 4.75 12 4.75C12.9461 4.75 13.841 4.96897 14.6369 5.359L7.30556 19.25H7C4.10051 19.25 1.75 16.8995 1.75 14C1.75 11.3287 3.74507 9.12339 6.32647 8.7928Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Clouds\",\n },\n IconCloudSync: {\n title: \"cloud-sync\",\n svg: '<path d=\"M17.9948 11.002C17.9983 10.9184 18 10.8344 18 10.75C18 7.43629 15.3137 4.75 12 4.75C9.3716 4.75 7.13793 6.44009 6.32647 8.7928C3.74507 9.12339 1.75 11.3287 1.75 14C1.75 16.8995 4.10051 19.25 7 19.25H18.125C20.4032 19.25 22.25 17.4032 22.25 15.125C22.25 12.8468 20.4032 11 18.125 11C18.0814 11 18.038 11.0007 17.9948 11.002Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14.3831 10.3068L12.6566 11.7508C12.3962 11.9686 12 11.7834 12 11.444V10.75C10.8954 10.75 10 11.6455 10 12.75C10 13.8546 10.8954 14.75 12 14.75C12.9808 14.75 13.7982 14.0432 13.9676 13.111C14.0417 12.7034 14.4322 12.4331 14.8397 12.5072C15.2472 12.5813 15.5175 12.9718 15.4435 13.3793C15.1466 15.012 13.7187 16.25 12 16.25C10.067 16.25 8.5 14.683 8.5 12.75C8.5 10.817 10.067 9.25002 12 9.25002V8.55598C12 8.21651 12.3962 8.03136 12.6566 8.24915L14.3831 9.69314C14.5743 9.85303 14.5743 10.1469 14.3831 10.3068Z\" fill=\"currentColor\"/>',\n category: \"Clouds\",\n },\n IconCloudSimple: {\n title: \"cloud-simple\",\n svg: '<path d=\"M17.125 19.25H8.925C4.96236 19.25 1.75 16.0041 1.75 12C1.75 7.99594 4.96236 4.75 8.925 4.75C11.8865 4.75 14.4289 6.56294 15.5245 9.15037C16.0281 8.98326 16.5661 8.89286 17.125 8.89286C19.9555 8.89286 22.25 11.2114 22.25 14.0714C22.25 16.9315 19.9555 19.25 17.125 19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Clouds\",\n },\n IconCloudSimpleDownload: {\n title: \"cloud-simple-download\",\n svg: '<path d=\"M18.5 19.0615C20.6627 18.4544 22.25 16.4502 22.25 14.0714C22.25 11.2114 19.9555 8.89286 17.125 8.89286C16.5661 8.89286 16.0281 8.98326 15.5245 9.15037C14.4289 6.56294 11.8865 4.75 8.925 4.75C4.96236 4.75 1.75 7.99594 1.75 12C1.75 14.7508 3.26609 17.1437 5.5 18.3722M12 13.75V19.5M14.5 17.5L12 20L9.5 17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Clouds\",\n },\n IconCloudSimpleUpload: {\n title: \"cloud-simple-upload\",\n svg: '<path d=\"M18.5 19.0615C20.6627 18.4544 22.25 16.4502 22.25 14.0714C22.25 11.2114 19.9555 8.89286 17.125 8.89286C16.5661 8.89286 16.0281 8.98326 15.5245 9.15037C14.4289 6.56294 11.8865 4.75 8.925 4.75C4.96236 4.75 1.75 7.99594 1.75 12C1.75 14.7508 3.26609 17.1437 5.5 18.3722M14.5 16.25L12 13.75L9.5 16.25M12 20V14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Clouds\",\n },\n IconCloudSimpleDisconnected: {\n title: \"cloud-simple-disconnected\",\n svg: '<path d=\"M18.5 19.0615C20.6627 18.4544 22.25 16.4502 22.25 14.0714C22.25 11.2114 19.9555 8.89286 17.125 8.89286C16.5661 8.89286 16.0281 8.98326 15.5245 9.15037C14.4289 6.56294 11.8865 4.75 8.925 4.75C4.96236 4.75 1.75 7.99594 1.75 12C1.75 14.7508 3.26609 17.1437 5.5 18.3722M14.25 15.75L12 18M12 18L9.75 20.25M12 18L9.75 15.75M12 18L14.25 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Clouds\",\n },\n IconCode: {\n title: \"code\",\n svg: '<path d=\"M10.25 9L7.25 12L10.25 15M13.75 9L16.75 12L13.75 15M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconConsole: {\n title: \"console, terminal\",\n svg: '<path d=\"M7.25 7.75L9 9.5L7.25 11.25M10.75 11.25H12.75M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconConsoleSimple: {\n title: \"console-simple\",\n svg: '<path d=\"M4.75 6.75L10 12L4.75 17.25M12.75 17.25H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconCodeBrackets: {\n title: \"code-brackets\",\n svg: '<path d=\"M9.75 20.25L14.25 3.75M18.25 7.75L22.25 12L18.25 16.25M5.75 16.25L1.75 12L5.75 7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconCodeInsert: {\n title: \"code-insert\",\n svg: '<path d=\"M13.25 4.75H2.75V19.25H13.25M16.2454 4.75H21.2454V19.25H16.2454M16.2454 4.75V2.5M16.2454 4.75V19.25M16.2454 19.25V21.5M8.5 9.5L11 12L8.5 14.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconForkCode: {\n title: \"fork-code\",\n svg: '<circle cx=\"6\" cy=\"6\" r=\"2.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"18\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"18\" cy=\"6\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 8.25V12H12V15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 8.25V12H12V15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Code\",\n },\n IconBranch: {\n title: \"branch\",\n svg: '<circle cx=\"6.5\" cy=\"6\" r=\"2.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"6.5\" cy=\"18\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17.5\" cy=\"6\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 8.25V15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 8.25V12H6.5V15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Code\",\n },\n IconDraft: {\n title: \"draft\",\n svg: '<circle cx=\"6.5\" cy=\"6\" r=\"2.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"6.5\" cy=\"18\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17.5\" cy=\"18\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 8.25V15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.25 6C18.25 6.41421 17.9142 6.75 17.5 6.75C17.0858 6.75 16.75 6.41421 16.75 6C16.75 5.58579 17.0858 5.25 17.5 5.25C17.9142 5.25 18.25 5.58579 18.25 6Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.25 11.25C18.25 11.6642 17.9142 12 17.5 12C17.0858 12 16.75 11.6642 16.75 11.25C16.75 10.8358 17.0858 10.5 17.5 10.5C17.9142 10.5 18.25 10.8358 18.25 11.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Code\",\n },\n IconPullRequest: {\n title: \"pull-request\",\n svg: '<circle cx=\"6\" cy=\"6\" r=\"2.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"6\" cy=\"18\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"18\" cy=\"18\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 8.25V15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 6H18V15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 3.75L11.75 6L14 8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Code\",\n },\n IconRequestClosed: {\n title: \"request-closed\",\n svg: '<circle cx=\"6.5\" cy=\"6\" r=\"2.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"6.5\" cy=\"18\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17.5\" cy=\"18\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 8.25V15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 10.75V15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.5 4L19.5 8M19.5 4L15.5 8\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Code\",\n },\n IconShip: {\n title: \"ship, changelog\",\n svg: '<path d=\"M5.75 12.75V6.75H18.25V12.75M2.75 20.25L6.26353 19.4903M6.26353 19.4903L7.375 19.25L12 20.25L16.625 19.25L17.7365 19.4903M6.26353 19.4903C4.66666 17.3583 4.08384 15.6316 3.77778 13.25L12 11.25L20.2222 13.25C19.9162 15.6316 19.3333 17.3583 17.7365 19.4903M17.7365 19.4903L21.25 20.25M9.75 6.75V2.75H14.25V6.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconSandbox: {\n title: \"sandbox, playground\",\n svg: '<path d=\"M17.1026 7.00725L19.7174 6.36491L20.1349 3.39411L15.1836 2.69824L14.7661 5.66905L17.1026 7.00725ZM17.1026 7.00725L16.3977 12.0227M5.75907 7.30052L4.27367 7.50928L5.52401 13.1955M5.75907 7.30052L5.65413 6.55383C5.50041 5.46001 6.2625 4.44868 7.35632 4.29495C8.45014 4.14122 9.46148 4.90332 9.61521 5.99714L9.72015 6.74383M5.75907 7.30052L9.72015 6.74383M9.72015 6.74383L11.2055 6.53507L11.601 12.8226M5.52401 13.1955L7.5 10.9999L11.601 12.8226M5.52401 13.1955L3.225 15.7499M11.601 12.8226L12 12.9999L16.3977 12.0227M16.3977 12.0227L16.5 11.9999L20.7188 15.7499M20.7188 15.7499H21.25V20.2499H2.75V15.7499H3.225M20.7188 15.7499H3.225\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconAnimationLinear: {\n title: \"animation-linear\",\n svg: '<path d=\"M3.75 20.25L20.25 3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconAnimationEaseOut: {\n title: \"animation-ease-out\",\n svg: '<path d=\"M20.25 3.75C10.9057 5.77822 5.77822 10.9057 3.75 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconAnimationEaseIn: {\n title: \"animation-ease-in\",\n svg: '<path d=\"M3.75 20.25C13.0943 18.2218 18.2218 13.0943 20.25 3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconAnimationEase: {\n title: \"animation-ease\",\n svg: '<path d=\"M20.25 3.75C5.39793 4.66019 18.6021 19.3398 3.75 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconAnimationAuto: {\n title: \"animation-auto\",\n svg: '<path d=\"M20.25 3.75C10.9688 3.75003 12 20.25 3.75 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconAnimationElastic: {\n title: \"animation-elastic,bezier-curves\",\n svg: '<path d=\"M3.75 20.25C3.75 20.25 3.75 3.75 6.84372 3.75C8.90625 3.75 8.90619 10.9688 11.4843 10.9688C14.0625 10.9688 15.0937 6.60313 20.25 8.15\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconAnimationUndershoot: {\n title: \"animation-undershoot\",\n svg: '<path d=\"M3.75 15.0938C4.3 17.1562 4.3 20.25 6.5 20.25C10.9 20.25 9.25 3.75 20.25 3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconAnimationOvershoot: {\n title: \"animation-overshoot\",\n svg: '<path d=\"M3.76703 20.25C3.76703 20.25 3.2519 1.44501 7.88773 3.98615C12.5236 6.5273 14.584 7.03558 20.25 7.03558\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconAnimationNone: {\n title: \"animation-none\",\n svg: '<path d=\"M20.25 3.75H12V20.25H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconBezierCurves: {\n title: \"bezier-curves, animation, motion, spring\",\n svg: '<path d=\"M16.25 7.75H16.1969C12.0476 7.75101 11.9524 16.25 7.80312 16.25H7.75M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconRunShortcut: {\n title: \"run-shortcut,slash\",\n svg: '<path d=\"M9.75 16.75L14.25 7.25M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconAnimation: {\n title: \"animation\",\n svg: '<path d=\"M2.75 21.25L8.25 15.75M2.75 14.25L5.75 11.25M9.75 21.25L12.75 18.25M21.25 9C21.25 12.4518 18.4518 15.25 15 15.25C11.5482 15.25 8.75 12.4518 8.75 9C8.75 5.54822 11.5482 2.75 15 2.75C18.4518 2.75 21.25 5.54822 21.25 9Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconBrackets1: {\n title: \"brackets-1\",\n svg: '<path d=\"M7.25 3.75H3.75V20.25H7.25M16.75 3.75H20.25V20.25H16.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconBrackets2: {\n title: \"brackets-2\",\n svg: '<path d=\"M8.25 3.75H4.75V12M15.75 20.25H19.25V12M4.75 12H2.75M4.75 12V20.25H8.25M19.25 12H21.25M19.25 12V3.75H15.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconCodeLines: {\n title: \"code-lines\",\n svg: '<path d=\"M2.75 4.75H13.2M17.75 4.75H21.25M2.75 12H8.25M12.75 12H21.25M2.75 19.25H10.25M14.75 19.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconApiConnection: {\n title: \"api-connection\",\n svg: '<path d=\"M3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C15.498 20.25 18.4875 18.073 19.6876 15M3.75 12C3.75 7.44365 7.44365 3.75 12 3.75C15.498 3.75 18.4875 5.92698 19.6876 9M3.75 12H1.75M17.25 12C17.25 14.8995 14.8995 17.25 12 17.25C9.10051 17.25 6.75 14.8995 6.75 12C6.75 9.10051 9.10051 6.75 12 6.75C14.8995 6.75 17.25 9.10051 17.25 12ZM17.25 12H22.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconApiAggregate: {\n title: \"api-aggregate\",\n svg: '<path d=\"M15.75 6.75C15.75 8.82107 14.0711 10.5 12 10.5C9.92893 10.5 8.25 8.82107 8.25 6.75C8.25 4.67893 9.92893 3 12 3C14.0711 3 15.75 4.67893 15.75 6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M10.25 16.25C10.25 18.3211 8.57107 20 6.5 20C4.42893 20 2.75 18.3211 2.75 16.25C2.75 14.1789 4.42893 12.5 6.5 12.5C8.57107 12.5 10.25 14.1789 10.25 16.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M21.25 16.25C21.25 18.3211 19.5711 20 17.5 20C15.4289 20 13.75 18.3211 13.75 16.25C13.75 14.1789 15.4289 12.5 17.5 12.5C19.5711 12.5 21.25 14.1789 21.25 16.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Code\",\n },\n IconBugFace: {\n title: \"bug-face, issue\",\n svg: '<path d=\"M20.25 13.5C20.25 17.7802 16.5563 21.25 12 21.25C7.44365 21.25 3.75 17.7802 3.75 13.5C3.75 9.21979 7.44365 5.75 12 5.75C16.5563 5.75 20.25 9.21979 20.25 13.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 4.64584C20.25 4.64584 19.75 2.75 18 2.75C15.25 2.75 14.25 7.08336 13.75 9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 4.64584C3.75 4.64584 4.25 2.75 6 2.75C8.74996 2.75 9.74999 7.08336 10.25 9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.5 13.75C10.5 14.7165 9.82843 15.5 9 15.5C8.17157 15.5 7.5 14.7165 7.5 13.75C7.5 12.7835 8.17157 12 9 12C9.82843 12 10.5 12.7835 10.5 13.75Z\" fill=\"currentColor\"/><path d=\"M13.5 17C13.5 17.5523 12.8284 18 12 18C11.1716 18 10.5 17.5523 10.5 17C10.5 16.4477 11.1716 16 12 16C12.8284 16 13.5 16.4477 13.5 17Z\" fill=\"currentColor\"/><path d=\"M16.5 13.75C16.5 14.7165 15.8284 15.5 15 15.5C14.1716 15.5 13.5 14.7165 13.5 13.75C13.5 12.7835 14.1716 12 15 12C15.8284 12 16.5 12.7835 16.5 13.75Z\" fill=\"currentColor\"/>',\n category: \"Code\",\n },\n IconBug: {\n title: \"bug, issue\",\n svg: '<path d=\"M5.37036 9.80627L3 9M5.37036 13.75H2.75M5.37036 17.4437L3 18.25M18.63 9.80627L21 9M18.63 13.75H21.2504M18.63 17.4437L21 18.25M12 13.75V20.75M7.75 7.5V7C7.75 4.65279 9.65279 2.75 12 2.75C14.3472 2.75 16.25 4.65279 16.25 7V7.5M18.25 7.75H5.75V15C5.75 18.4518 8.54822 21.25 12 21.25C15.4518 21.25 18.25 18.4518 18.25 15V7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconDebugger: {\n title: \"debugger, debug\",\n svg: '<path d=\"M16.5 5V4.99M19 3.75V3.74M21.5 2.5V2.49M21.5 5V4.99M21.5 7.5V7.49M19 6.25V6.24M16.75 5C16.75 5.13807 16.6381 5.25 16.5 5.25C16.3619 5.25 16.25 5.13807 16.25 5C16.25 4.86193 16.3619 4.75 16.5 4.75C16.6381 4.75 16.75 4.86193 16.75 5ZM19.25 3.75C19.25 3.88807 19.1381 4 19 4C18.8619 4 18.75 3.88807 18.75 3.75C18.75 3.61193 18.8619 3.5 19 3.5C19.1381 3.5 19.25 3.61193 19.25 3.75ZM21.75 2.5C21.75 2.63807 21.6381 2.75 21.5 2.75C21.3619 2.75 21.25 2.63807 21.25 2.5C21.25 2.36193 21.3619 2.25 21.5 2.25C21.6381 2.25 21.75 2.36193 21.75 2.5ZM21.75 5C21.75 5.13807 21.6381 5.25 21.5 5.25C21.3619 5.25 21.25 5.13807 21.25 5C21.25 4.86193 21.3619 4.75 21.5 4.75C21.6381 4.75 21.75 4.86193 21.75 5ZM21.75 7.5C21.75 7.63807 21.6381 7.75 21.5 7.75C21.3619 7.75 21.25 7.63807 21.25 7.5C21.25 7.36193 21.3619 7.25 21.5 7.25C21.6381 7.25 21.75 7.36193 21.75 7.5ZM19.25 6.25C19.25 6.38807 19.1381 6.5 19 6.5C18.8619 6.5 18.75 6.38807 18.75 6.25C18.75 6.11193 18.8619 6 19 6C19.1381 6 19.25 6.11193 19.25 6.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M9.38818 5.98251L5.99214 5.13578L2.60523 18.7199L12.7933 21.2601L16.1802 7.67596L12.7842 6.82923M9.38818 5.98251L10.2349 2.58647L13.6309 3.4332L12.7842 6.82923M9.38818 5.98251L12.7842 6.82923M8.11809 11.0766L9.37875 13.2539M9.37875 13.2539L10.6674 15.3193M9.37875 13.2539L11.5141 11.9233M9.37875 13.2539L7.27136 14.4726\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconPush: {\n title: \"push, launch, rocket\",\n svg: '<path d=\"M4.52778 17.25L1.75 20.1071M6.75 19.5357L5.08333 21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M17.25 8.5C17.25 9.4665 16.4665 10.25 15.5 10.25C14.5335 10.25 13.75 9.4665 13.75 8.5C13.75 7.5335 14.5335 6.75 15.5 6.75C16.4665 6.75 17.25 7.5335 17.25 8.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.7307 15.2693C7.00674 13.5454 3.25 12.2798 3.25 12.2798L6.23947 8.79212H9.22894C11.2219 4.80615 14.2114 2.31493 21.1868 2.81317C21.6851 9.78861 19.1938 12.7781 15.2079 14.7711V17.7605L11.7202 20.75C11.7202 20.75 10.4547 16.9933 8.7307 15.2693Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Code\",\n },\n IconTestflight: {\n title: \"testflight, beta\",\n svg: '<path d=\"M10.9998 9.44736L9.7497 1.75H14.2497L12.9998 9.5M8.92211 20.7244C9.88471 21.0648 10.9206 21.25 11.9997 21.25C13.0788 21.25 14.1146 21.0648 15.0772 20.7244M5.99784 4.99117C5.2219 5.65499 4.54364 6.45987 4.00409 7.39482C3.46454 8.32977 3.10694 9.31986 2.92029 10.3241M21.079 10.3239C20.8924 9.31975 20.5348 8.32966 19.9952 7.39471C19.4557 6.45976 18.7774 5.65488 18.0015 4.99106M10.2891 14.1425L4.24805 19.0737L1.99805 15.1766L9.33471 12.3841M14.7103 12.4102L22.0015 15.1763L19.7515 19.0734L13.6647 14.1159M14.2497 12C14.2497 13.2426 13.2423 14.25 11.9997 14.25C10.7571 14.25 9.7497 13.2426 9.7497 12C9.7497 10.7574 10.7571 9.75 11.9997 9.75C13.2423 9.75 14.2497 10.7574 14.2497 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Code\",\n },\n IconHammer: {\n title: \"hammer, craft, build\",\n svg: '<path d=\"M5.89405 15.75L1.5 11.33L10.0297 2.75L14.6822 2.75L16.75 4.82997L5.89405 15.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.5 12.5L17.75 20.75L20.75 17.75L12.5 9.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Code\",\n },\n IconEmail1: {\n title: \"email-1, envelope\",\n svg: '<path d=\"M21.25 4.75H22C22 4.33579 21.6642 4 21.25 4V4.75ZM21.25 19.25V20C21.6642 20 22 19.6642 22 19.25H21.25ZM2.75 19.25H2C2 19.6642 2.33579 20 2.75 20V19.25ZM2.75 4.75V4C2.33579 4 2 4.33579 2 4.75H2.75ZM12 13L11.5251 13.5805C11.8013 13.8065 12.1987 13.8065 12.4749 13.5805L12 13ZM20.5 4.75V19.25H22V4.75H20.5ZM21.25 18.5H2.75V20H21.25V18.5ZM3.5 19.25V4.75H2V19.25H3.5ZM2.75 5.5H21.25V4H2.75V5.5ZM12.4749 12.4195L3.47493 5.0559L2.52507 6.21684L11.5251 13.5805L12.4749 12.4195ZM20.5251 5.0559L11.5251 12.4195L12.4749 13.5805L21.4749 6.21684L20.5251 5.0559Z\" fill=\"currentColor\"/>',\n category: \"Communication\",\n },\n IconEmailSettings: {\n title: \"email-settings, envelope, gear\",\n svg: '<path d=\"M21.25 11V4.75H2.75V19.25H13\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3 5.63635L12 11L21 5.63635\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M21.8148 15.375L21.1669 15.7491M16.1856 18.625L16.8335 18.2509M21.8147 18.625L21.1669 18.251M16.1855 15.375L16.8335 15.7491M19.0002 20.25L19.0002 19.4375M19.0002 13.75V14.5625M21.1669 17C21.1669 16.6053 21.0613 16.2352 20.8769 15.9165C20.5022 15.269 19.8021 14.8333 19.0002 14.8333C18.1983 14.8333 17.4981 15.269 17.1235 15.9165C16.9391 16.2352 16.8335 16.6053 16.8335 17C16.8335 17.3947 16.9391 17.7648 17.1235 18.0835C17.4982 18.731 18.1983 19.1667 19.0002 19.1667C19.8021 19.1667 20.5022 18.731 20.8769 18.0835C21.0613 17.7648 21.1669 17.3947 21.1669 17Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconEmailPlus: {\n title: \"email-plus, envelope, add, plus\",\n svg: '<path d=\"M21.25 11V4.75H2.75V19.25H13\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3 5.63635L12 11L21 5.63635\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M19 13.75V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M22.25 17L15.75 17\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Communication\",\n },\n IconEmail2: {\n title: \"email-2, envelope\",\n svg: '<path d=\"M21.25 4.75H22C22 4.33579 21.6642 4 21.25 4V4.75ZM21.25 19.25V20C21.6642 20 22 19.6642 22 19.25H21.25ZM2.75 19.25H2C2 19.6642 2.33579 20 2.75 20V19.25ZM2.75 4.75V4C2.33579 4 2 4.33579 2 4.75H2.75ZM21.5875 8.66978C21.9574 8.4834 22.1062 8.03243 21.9198 7.66252C21.7334 7.29261 21.2824 7.14383 20.9125 7.33022L21.5875 8.66978ZM12 12.6607L11.6625 13.3305C11.8748 13.4375 12.1252 13.4375 12.3375 13.3305L12 12.6607ZM3.08748 7.33022C2.71757 7.14383 2.2666 7.29261 2.08022 7.66252C1.89383 8.03243 2.04261 8.4834 2.41252 8.66978L3.08748 7.33022ZM20.5 4.75V19.25H22V4.75H20.5ZM21.25 18.5H2.75V20H21.25V18.5ZM3.5 19.25V4.75H2V19.25H3.5ZM2.75 5.5H21.25V4H2.75V5.5ZM20.9125 7.33022L11.6625 11.9909L12.3375 13.3305L21.5875 8.66978L20.9125 7.33022ZM12.3375 11.9909L3.08748 7.33022L2.41252 8.66978L11.6625 13.3305L12.3375 11.9909Z\" fill=\"currentColor\"/>',\n category: \"Communication\",\n },\n IconEmail3: {\n title: \"email-3, envelope\",\n svg: '<path d=\"M21.0015 9.25C18.4942 11.1337 15.3775 12.25 12 12.25C8.62252 12.25 5.50577 11.1337 2.99854 9.25M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconEmailNotification: {\n title: \"email-notification, badge, envelope\",\n svg: '<path d=\"M2.75 19.25H2C2 19.6642 2.33579 20 2.75 20V19.25ZM2.75 4.75V4C2.33579 4 2 4.33579 2 4.75H2.75ZM21.25 19.25V20C21.6642 20 22 19.6642 22 19.25H21.25ZM13.75 5.5C14.1642 5.5 14.5 5.16421 14.5 4.75C14.5 4.33579 14.1642 4 13.75 4V5.5ZM22 12.25C22 11.8358 21.6642 11.5 21.25 11.5C20.8358 11.5 20.5 11.8358 20.5 12.25H22ZM3.44855 8.65038C3.11739 8.40157 2.64723 8.46833 2.39843 8.79949C2.14962 9.13065 2.21638 9.60081 2.54754 9.84962L3.44855 8.65038ZM16.7248 12.2787C17.1199 12.1545 17.3397 11.7336 17.2155 11.3384C17.0914 10.9432 16.6704 10.7235 16.2752 10.8476L16.7248 12.2787ZM22.5 6C22.5 7.38071 21.3807 8.5 20 8.5V10C22.2091 10 24 8.20914 24 6H22.5ZM20 8.5C18.6193 8.5 17.5 7.38071 17.5 6H16C16 8.20914 17.7909 10 20 10V8.5ZM17.5 6C17.5 4.61929 18.6193 3.5 20 3.5V2C17.7909 2 16 3.79086 16 6H17.5ZM20 3.5C21.3807 3.5 22.5 4.61929 22.5 6H24C24 3.79086 22.2091 2 20 2V3.5ZM3.5 19.25V4.75H2V19.25H3.5ZM21.25 18.5H2.75V20H21.25V18.5ZM2.75 5.5H13.75V4H2.75V5.5ZM20.5 12.25V19.25H22V12.25H20.5ZM11.9995 11.5C8.79005 11.5 5.83035 10.4399 3.44855 8.65038L2.54754 9.84962C5.1802 11.8276 8.45402 13 11.9995 13V11.5ZM16.2752 10.8476C14.9264 11.2713 13.4904 11.5 11.9995 11.5V13C13.6446 13 15.2322 12.7475 16.7248 12.2787L16.2752 10.8476Z\" fill=\"currentColor\"/>',\n category: \"Communication\",\n },\n IconPostcard1: {\n title: \"postcard-1,address\",\n svg: '<path d=\"M6.75 9.75H11.25M6.75 12.75H9.27M2.75 4.75H21.25V19.25H2.75V4.75ZM14.75 9.75H17.25V13.25H14.75V9.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconPostcard2: {\n title: \"postcard-2, address\",\n svg: '<path d=\"M6.75 10.25H9.25M6.75 13.75H9.25M2.75 4.75H21.25V19.25H2.75V4.75ZM12.75 9.75H17.25V14.25H12.75V9.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconInvite: {\n title: \"invite, briefing\",\n svg: '<path d=\"M4.75 10.9853V2.75H19.25V10.9853M9.75 7.75H14.25M2.75 10.75V20.25H21.25V10.75L12 13.75L2.75 10.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubble2: {\n title: \"bubble-2, message, chat\",\n svg: '<path d=\"M2.75195 3.75H21.252V18.25H12.002L7.00195 21V18.25H2.75195V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleAnnotation2: {\n title: \"bubble-annotation-2, message, chat\",\n svg: '<path d=\"M2.75195 3.75H21.252V18.25H12.002L7.00195 21V18.25H2.75195V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M6.75 11C6.75 11.4142 7.08579 11.75 7.5 11.75C7.91421 11.75 8.25 11.4142 8.25 11C8.25 10.5858 7.91421 10.25 7.5 10.25C7.08579 10.25 6.75 10.5858 6.75 11ZM11.25 11C11.25 11.4142 11.5858 11.75 12 11.75C12.4142 11.75 12.75 11.4142 12.75 11C12.75 10.5858 12.4142 10.25 12 10.25C11.5858 10.25 11.25 10.5858 11.25 11ZM15.75 11C15.75 11.4142 16.0858 11.75 16.5 11.75C16.9142 11.75 17.25 11.4142 17.25 11C17.25 10.5858 16.9142 10.25 16.5 10.25C16.0858 10.25 15.75 10.5858 15.75 11Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" stroke-linecap=\"square\"/>',\n category: \"Communication\",\n },\n IconBubbles: {\n title: \"bubbles, messages, chat, communicate\",\n svg: '<path d=\"M2.75195 7.75H17.252V18.25H10.502L6.00195 20.75V18.25H2.75195V7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M17.2498 14.25H21.252V3.75H7.00195V7.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubble3: {\n title: \"bubble-3, message, chat\",\n svg: '<path d=\"M12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 13.529 3.12096 14.9713 3.77778 16.2418L2.75 21.25L7.88889 20.2885C9.12732 20.9039 10.5232 21.25 12 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleAnnotation3: {\n title: \"bubble-annotation-3, message, chat\",\n svg: '<path d=\"M12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 13.529 3.12096 14.9713 3.77778 16.2418L2.75 21.25L7.88889 20.2885C9.12732 20.9039 10.5232 21.25 12 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.75 11.75C6.75 12.1642 7.08579 12.5 7.5 12.5C7.91421 12.5 8.25 12.1642 8.25 11.75C8.25 11.3358 7.91421 11 7.5 11C7.08579 11 6.75 11.3358 6.75 11.75ZM11.25 11.75C11.25 12.1642 11.5858 12.5 12 12.5C12.4142 12.5 12.75 12.1642 12.75 11.75C12.75 11.3358 12.4142 11 12 11C11.5858 11 11.25 11.3358 11.25 11.75ZM15.75 11.75C15.75 12.1642 16.0858 12.5 16.5 12.5C16.9142 12.5 17.25 12.1642 17.25 11.75C17.25 11.3358 16.9142 11 16.5 11C16.0858 11 15.75 11.3358 15.75 11.75Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" stroke-linecap=\"square\"/>',\n category: \"Communication\",\n },\n IconBubble4: {\n title: \"bubble-4, message, chat\",\n svg: '<path d=\"M20.252 3.75H3.75195V21.75L7.75195 19.25H20.252V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleAnnotation4: {\n title: \"bubble-annotation-4, message, chat\",\n svg: '<path d=\"M20.252 3.75H3.75195V21.75L7.75195 19.25H20.252V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M6.75 11.5C6.75 11.9142 7.08579 12.25 7.5 12.25C7.91421 12.25 8.25 11.9142 8.25 11.5C8.25 11.0858 7.91421 10.75 7.5 10.75C7.08579 10.75 6.75 11.0858 6.75 11.5ZM11.25 11.5C11.25 11.9142 11.5858 12.25 12 12.25C12.4142 12.25 12.75 11.9142 12.75 11.5C12.75 11.0858 12.4142 10.75 12 10.75C11.5858 10.75 11.25 11.0858 11.25 11.5ZM15.75 11.5C15.75 11.9142 16.0858 12.25 16.5 12.25C16.9142 12.25 17.25 11.9142 17.25 11.5C17.25 11.0858 16.9142 10.75 16.5 10.75C16.0858 10.75 15.75 11.0858 15.75 11.5Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" stroke-linecap=\"square\"/>',\n category: \"Communication\",\n },\n IconBubble5: {\n title: \"bubble-5, message, chat\",\n svg: '<path d=\"M21.75 12C21.75 6.84375 17.9583 3.75 12 3.75C6.04167 3.75 2.25 6.84375 2.25 12C2.25 13.3368 3.17054 15.6055 3.3145 15.9522C3.32742 15.9833 3.34021 16.0117 3.3518 16.0433C3.45089 16.3136 3.85722 17.7527 2.25 19.8828C4.41667 20.914 6.71766 19.2188 6.71766 19.2188C8.30963 20.0597 10.2038 20.25 12 20.25C17.9583 20.25 21.75 17.1562 21.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleAnnotation5: {\n title: \"bubble-annotation-5, message, chat\",\n svg: '<path d=\"M21.75 12C21.75 6.84375 17.9583 3.75 12 3.75C6.04167 3.75 2.25 6.84375 2.25 12C2.25 13.3368 3.17054 15.6055 3.3145 15.9522C3.32742 15.9833 3.34021 16.0117 3.3518 16.0433C3.45089 16.3136 3.85722 17.7527 2.25 19.8828C4.41667 20.914 6.71766 19.2188 6.71766 19.2188C8.30963 20.0597 10.2038 20.25 12 20.25C17.9583 20.25 21.75 17.1562 21.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M6.75 12C6.75 12.4142 7.08579 12.75 7.5 12.75C7.91421 12.75 8.25 12.4142 8.25 12C8.25 11.5858 7.91421 11.25 7.5 11.25C7.08579 11.25 6.75 11.5858 6.75 12ZM11.25 12C11.25 12.4142 11.5858 12.75 12 12.75C12.4142 12.75 12.75 12.4142 12.75 12C12.75 11.5858 12.4142 11.25 12 11.25C11.5858 11.25 11.25 11.5858 11.25 12ZM15.75 12C15.75 12.4142 16.0858 12.75 16.5 12.75C16.9142 12.75 17.25 12.4142 17.25 12C17.25 11.5858 16.9142 11.25 16.5 11.25C16.0858 11.25 15.75 11.5858 15.75 12Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" stroke-linecap=\"square\"/>',\n category: \"Communication\",\n },\n IconBubble6: {\n title: \"bubble-6, message, chat\",\n svg: '<path d=\"M2.75 8.75C2.75 5.98858 4.98858 3.75 7.75 3.75H16.25C19.0114 3.75 21.25 5.98858 21.25 8.75V15.25C21.25 18.0114 19.0114 20.25 16.25 20.25H2.75V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleAnnotation6: {\n title: \"bubble-annotation-6, message, chat\",\n svg: '<path d=\"M2.75 8.75C2.75 5.98858 4.98858 3.75 7.75 3.75H16.25C19.0114 3.75 21.25 5.98858 21.25 8.75V15.25C21.25 18.0114 19.0114 20.25 16.25 20.25H2.75V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.75 12C6.75 12.4142 7.08579 12.75 7.5 12.75C7.91421 12.75 8.25 12.4142 8.25 12C8.25 11.5858 7.91421 11.25 7.5 11.25C7.08579 11.25 6.75 11.5858 6.75 12ZM11.25 12C11.25 12.4142 11.5858 12.75 12 12.75C12.4142 12.75 12.75 12.4142 12.75 12C12.75 11.5858 12.4142 11.25 12 11.25C11.5858 11.25 11.25 11.5858 11.25 12ZM15.75 12C15.75 12.4142 16.0858 12.75 16.5 12.75C16.9142 12.75 17.25 12.4142 17.25 12C17.25 11.5858 16.9142 11.25 16.5 11.25C16.0858 11.25 15.75 11.5858 15.75 12Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" stroke-linecap=\"square\"/>',\n category: \"Communication\",\n },\n IconBubbleText6: {\n title: \"bubble-text-6, message, chat\",\n svg: '<path d=\"M15.25 9.75H8.75M12.25 14.25H8.75M2.75 20.25H16.25C19.0114 20.25 21.25 18.0114 21.25 15.25V8.75C21.25 5.98858 19.0114 3.75 16.25 3.75H7.75C4.98858 3.75 2.75 5.98858 2.75 8.75V20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleWide: {\n title: \"bubble-wide, message, chat\",\n svg: '<path d=\"M2.75 3.75H21.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H2.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleQuotes: {\n title: \"bubble-quotes\",\n svg: '<path d=\"M2.75 3.75H21.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H2.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M9.52309 8C8.40577 8 7.5 8.91026 7.5 10.0331C7.5 11.156 8.40577 12.0662 9.52309 12.0662C9.80224 12.0662 10.0682 12.0094 10.3101 11.9067C10.2619 11.9952 10.2095 12.0788 10.1535 12.1583C9.80027 12.6602 9.2779 13.0429 8.59934 13.4975C8.39303 13.6358 8.33704 13.9166 8.47432 14.1236C8.6116 14.3305 8.89179 14.3876 9.0981 14.2494C9.76827 13.8004 10.426 13.3359 10.8876 12.6801C11.3621 12.006 11.6045 11.17 11.5461 10.0207C11.5395 8.90356 10.6363 8 9.52309 8Z\" fill=\"currentColor\"/><path d=\"M14.4684 8C13.3511 8 12.4453 8.91026 12.4453 10.0331C12.4453 11.156 13.3511 12.0662 14.4684 12.0662C14.7476 12.0662 15.0135 12.0094 15.2554 11.9067C15.2072 11.9952 15.1548 12.0788 15.0989 12.1583C14.7456 12.6602 14.2232 13.0429 13.5447 13.4975C13.3383 13.6358 13.2824 13.9166 13.4196 14.1236C13.5569 14.3305 13.8371 14.3876 14.0434 14.2494C14.7136 13.8004 15.3713 13.3359 15.8329 12.6801C16.3074 12.006 16.5498 11.17 16.4915 10.0207C16.4848 8.90356 15.5816 8 14.4684 8Z\" fill=\"currentColor\"/>',\n category: \"Communication\",\n },\n IconBubbleWideNotification: {\n title: \"bubble-wide-notification, badge, message, chat\",\n svg: '<path d=\"M2.75 18.25H2C2 18.6642 2.33579 19 2.75 19V18.25ZM2.75 3.75V3C2.33579 3 2 3.33579 2 3.75H2.75ZM21.25 18.25V19C21.6642 19 22 18.6642 22 18.25H21.25ZM15.0155 18.25V17.5C14.8408 17.5 14.6716 17.561 14.537 17.6725L15.0155 18.25ZM11.9979 20.75L11.5161 21.3248C11.7936 21.5574 12.1976 21.5585 12.4764 21.3275L11.9979 20.75ZM9.0155 18.25L9.49731 17.6752C9.36227 17.562 9.1917 17.5 9.0155 17.5V18.25ZM12.75 4.5C13.1642 4.5 13.5 4.16421 13.5 3.75C13.5 3.33579 13.1642 3 12.75 3V4.5ZM22 12.25C22 11.8358 21.6642 11.5 21.25 11.5C20.8358 11.5 20.5 11.8358 20.5 12.25H22ZM3.5 18.25V3.75H2V18.25H3.5ZM21.25 17.5H15.0155V19H21.25V17.5ZM14.537 17.6725L11.5194 20.1725L12.4764 21.3275L15.494 18.8275L14.537 17.6725ZM12.4797 20.1752L9.49731 17.6752L8.5337 18.8248L11.5161 21.3248L12.4797 20.1752ZM9.0155 17.5H2.75V19H9.0155V17.5ZM2.75 4.5H12.75V3H2.75V4.5ZM20.5 12.25V18.25H22V12.25H20.5ZM21.5 6C21.5 7.38071 20.3807 8.5 19 8.5V10C21.2091 10 23 8.20914 23 6H21.5ZM19 8.5C17.6193 8.5 16.5 7.38071 16.5 6H15C15 8.20914 16.7909 10 19 10V8.5ZM16.5 6C16.5 4.61929 17.6193 3.5 19 3.5V2C16.7909 2 15 3.79086 15 6H16.5ZM19 3.5C20.3807 3.5 21.5 4.61929 21.5 6H23C23 3.79086 21.2091 2 19 2V3.5Z\" fill=\"currentColor\"/>',\n category: \"Communication\",\n },\n IconBubbleWideAnnotation: {\n title: \"bubble-wide-annotation, message, chat\",\n svg: '<path d=\"M2.75 3.75H21.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H2.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M6.625 11C6.625 11.4832 7.01675 11.875 7.5 11.875C7.98325 11.875 8.375 11.4832 8.375 11C8.375 10.5168 7.98325 10.125 7.5 10.125C7.01675 10.125 6.625 10.5168 6.625 11ZM11.125 11C11.125 11.4832 11.5168 11.875 12 11.875C12.4832 11.875 12.875 11.4832 12.875 11C12.875 10.5168 12.4832 10.125 12 10.125C11.5168 10.125 11.125 10.5168 11.125 11ZM15.625 11C15.625 11.4832 16.0168 11.875 16.5 11.875C16.9832 11.875 17.375 11.4832 17.375 11C17.375 10.5168 16.9832 10.125 16.5 10.125C16.0168 10.125 15.625 10.5168 15.625 11Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.75\" strokeLinecap=\"square\"/>',\n category: \"Communication\",\n },\n IconBubbleCheck: {\n title: \"bubble-check, comment, feedback\",\n svg: '<path d=\"M9.34998 11.35L11 13L14.85 9.15003M3.75 3.75H20.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleText: {\n title: \"bubble-text, comment, feedback\",\n svg: '<path d=\"M15.25 9H8.75M15.25 13H8.75M3.75 3.75H20.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleHeart: {\n title: \"bubble-heart, comment, feedback\",\n svg: '<path d=\"M3.75 3.75H20.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.2507 10.6675C15.2507 12.7448 12.2703 14.2801 11.9994 14.2801C11.7284 14.2801 8.74805 12.7448 8.74805 10.6675C8.74805 9.22251 9.65119 8.5 10.5543 8.5C11.4575 8.5 11.9994 9.04189 11.9994 9.04189C11.9994 9.04189 12.5412 8.5 13.4444 8.5C14.3475 8.5 15.2507 9.22251 15.2507 10.6675Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleDots: {\n title: \"bubble-dots, comment, feedback\",\n svg: '<path d=\"M3.75 3.75H20.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M7.25 11.25C7.25 11.6642 7.58579 12 8 12C8.41421 12 8.75 11.6642 8.75 11.25C8.75 10.8358 8.41421 10.5 8 10.5C7.58579 10.5 7.25 10.8358 7.25 11.25ZM11.25 11.25C11.25 11.6642 11.5858 12 12 12C12.4142 12 12.75 11.6642 12.75 11.25C12.75 10.8358 12.4142 10.5 12 10.5C11.5858 10.5 11.25 10.8358 11.25 11.25ZM15.25 11.25C15.25 11.6642 15.5858 12 16 12C16.4142 12 16.75 11.6642 16.75 11.25C16.75 10.8358 16.4142 10.5 16 10.5C15.5858 10.5 15.25 10.8358 15.25 11.25Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" strokeLinecap=\"square\"/>',\n category: \"Communication\",\n },\n IconBubbleCrossed: {\n title: \"bubble-crossed, comment, feedback\",\n svg: '<path d=\"M14.1213 8.85313L12 10.9745M12 10.9745L9.87868 13.0958M12 10.9745L9.87868 8.85313M12 10.9745L14.1213 13.0958M3.75 3.75H20.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubblePlus: {\n title: \"bubble-plus, comment, feedback\",\n svg: '<path d=\"M12 7.75L12 11M12 11V14.25M12 11H8.75M12 11H15.25M3.75 3.75H20.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleSparkle: {\n title: \"bubble-sparkle, comment, feedback\",\n svg: '<path d=\"M3.75 3.75H20.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M12.5714 7.57143C12.5714 7.25584 12.3156 7 12 7C11.6844 7 11.4286 7.25584 11.4286 7.57143C11.4286 8.69215 11.1803 9.36869 10.7745 9.77451C10.3687 10.1803 9.69215 10.4286 8.57143 10.4286C8.25584 10.4286 8 10.6844 8 11C8 11.3156 8.25584 11.5714 8.57143 11.5714C9.69215 11.5714 10.3687 11.8197 10.7745 12.2255C11.1803 12.6313 11.4286 13.3079 11.4286 14.4286C11.4286 14.7442 11.6844 15 12 15C12.3156 15 12.5714 14.7442 12.5714 14.4286C12.5714 13.3079 12.8197 12.6313 13.2255 12.2255C13.6313 11.8197 14.3079 11.5714 15.4286 11.5714C15.7442 11.5714 16 11.3156 16 11C16 10.6844 15.7442 10.4286 15.4286 10.4286C14.3079 10.4286 13.6313 10.1803 13.2255 9.77451C12.8197 9.36869 12.5714 8.69215 12.5714 7.57143Z\" fill=\"currentColor\"/>',\n category: \"Communication\",\n },\n IconBubbleQuestion: {\n title: \"bubble-question, comment, feedback\",\n svg: '<path d=\"M3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 18.25V19C20.6642 19 21 18.6642 21 18.25H20.25ZM3.75 18.25H3C3 18.6642 3.33579 19 3.75 19V18.25ZM11.9979 20.75L11.5161 21.3248C11.7936 21.5574 12.1976 21.5585 12.4764 21.3275L11.9979 20.75ZM15.0155 18.25V17.5C14.8408 17.5 14.6716 17.561 14.537 17.6725L15.0155 18.25ZM9.0155 18.25L9.49731 17.6752C9.36227 17.562 9.1917 17.5 9.0155 17.5V18.25ZM11.2804 11.8019C11.2188 12.2116 11.501 12.5935 11.9106 12.655C12.3203 12.7165 12.7022 12.4343 12.7637 12.0247L11.2804 11.8019ZM12.8816 10.6136L13.3032 11.2339L13.3032 11.2338L12.8816 10.6136ZM9.87366 9.42768C9.87366 9.8419 10.2094 10.1777 10.6237 10.1777C11.0379 10.1777 11.3737 9.8419 11.3737 9.42768H9.87366ZM3.75 4.5H20.25V3H3.75V4.5ZM19.5 3.75V18.25H21V3.75H19.5ZM4.5 18.25V3.75H3V18.25H4.5ZM20.25 17.5H15.0155V19H20.25V17.5ZM14.537 17.6725L11.5194 20.1725L12.4764 21.3275L15.494 18.8275L14.537 17.6725ZM12.4797 20.1752L9.49731 17.6752L8.5337 18.8248L11.5161 21.3248L12.4797 20.1752ZM9.0155 17.5H3.75V19H9.0155V17.5ZM12.7637 12.0247C12.796 11.8096 12.8674 11.6643 12.9495 11.5539C13.0361 11.4375 13.1522 11.3365 13.3032 11.2339L12.46 9.99327C11.9841 10.3167 11.4245 10.842 11.2804 11.8019L12.7637 12.0247ZM13.3032 11.2338C13.7232 10.9483 14.3737 10.4252 14.3737 9.42768H12.8737C12.8737 9.56123 12.8379 9.6406 12.7876 9.70897C12.7249 9.79415 12.6242 9.88168 12.4599 9.99332L13.3032 11.2338ZM14.3737 9.42768C14.3737 8.18351 13.3734 7.16333 12.1237 7.16333V8.66333C12.5315 8.66333 12.8737 8.99844 12.8737 9.42768H14.3737ZM12.1237 7.16333C10.874 7.16333 9.87366 8.18351 9.87366 9.42768H11.3737C11.3737 8.99844 11.7158 8.66333 12.1237 8.66333V7.16333Z\" fill=\"currentColor\"/><path d=\"M11.25 14.25C11.25 14.6642 11.5858 15 12 15C12.4142 15 12.75 14.6642 12.75 14.25C12.75 13.8358 12.4142 13.5 12 13.5C11.5858 13.5 11.25 13.8358 11.25 14.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/>',\n category: \"Communication\",\n },\n IconBubbleAlert: {\n title: \"bubble-alert, comment, feedback\",\n svg: '<path d=\"M12 7.75V11.25M3.75 3.75H20.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 13.75H12.01\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>',\n category: \"Communication\",\n },\n IconBubbleInfo: {\n title: \"bubble-info, comment, feedback\",\n svg: '<path d=\"M12 14V10.5M3.75 3.75H20.25V18.25H15.0155L11.9979 20.75L9.0155 18.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 8H12.01\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>',\n category: \"Communication\",\n },\n IconPaperPlane: {\n title: \"paper-plane, send\",\n svg: '<path d=\"M6 12H9.25M6 12L3.5 3.5L20.25 12L3.5 20.5L6 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconPaperPlaneTopRight: {\n title: \"paper-plane-top-right, send\",\n svg: '<path d=\"M9.45244 10.8687L21 4.44532M11.9936 21.25L22.25 3.75H2.25L9.14026 11.0423L11.9936 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconCall: {\n title: \"call, phone\",\n svg: '<path d=\"M10.25 8L9 3.75H7.00236H3.75188C3.75063 3.83318 3.75 3.91652 3.75 4C3.75 6.96726 4.54531 9.74877 5.93438 12.143C7.35756 14.596 9.40402 16.6424 11.857 18.0656C14.2512 19.4547 17.0327 20.25 20 20.25H20.25V15L16 13.75L14.1918 15.6335C11.6758 14.3749 9.62505 12.3242 8.36647 9.80819L10.25 8Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconCallCancel: {\n title: \"call-cancel, phone\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.8238 12.1156C10.2398 11.4558 9.72586 10.7326 9.29367 9.95774L10.7694 8.54104C10.9714 8.34717 11.0485 8.05695 10.9695 7.78838L9.71952 3.53838C9.62565 3.21919 9.33271 3 9 3H3.75188C3.34208 3 3.00815 3.32893 3.00197 3.73869C3.00066 3.82564 3 3.91275 3 4C3 7.10297 3.83203 10.0139 5.28566 12.5194C5.90369 13.5846 6.63402 14.5765 7.46049 15.4789L3.21967 19.7197C2.92678 20.0126 2.92678 20.4874 3.21967 20.7803C3.51256 21.0732 3.98744 21.0732 4.28033 20.7803L20.7803 4.28033C21.0732 3.98744 21.0732 3.51256 20.7803 3.21967C20.4874 2.92678 20.0126 2.92678 19.7197 3.21967L10.8238 12.1156ZM8.52227 14.4171C7.78667 13.6071 7.13562 12.7189 6.58311 11.7666C5.33684 9.61855 4.59162 7.14367 4.50791 4.5H8.43882L9.40191 7.7745L7.84707 9.26715C7.61008 9.49466 7.54874 9.84992 7.69571 10.1437C8.24823 11.2482 8.94498 12.2679 9.76134 13.178L8.52227 14.4171Z\" fill=\"currentColor\"/><path d=\"M12.2334 17.4169C11.7178 17.1178 11.221 16.7897 10.7453 16.4351L9.6744 17.5059C10.2487 17.9456 10.8519 18.3496 11.4806 18.7143C13.9861 20.168 16.897 21 20 21H20.25C20.6642 21 21 20.6642 21 20.25V15C21 14.6673 20.7808 14.3744 20.4616 14.2805L16.2116 13.0305C15.943 12.9515 15.6528 13.0286 15.459 13.2306L14.0423 14.7063C13.7098 14.5209 13.3869 14.3205 13.0744 14.1059L11.9977 15.1827C12.5844 15.6033 13.2056 15.9788 13.8563 16.3043C14.1501 16.4513 14.5053 16.3899 14.7329 16.1529L16.2255 14.5981L19.5 15.5612V19.4921C16.8563 19.4084 14.3815 18.6632 12.2334 17.4169Z\" fill=\"currentColor\"/>',\n category: \"Communication\",\n },\n IconCallOutgoing: {\n title: \"call-outgoing, phone\",\n svg: '<path d=\"M15.75 3.75H20.25V8.25M14.75 9.25L19.752 4.24799M9 3.75L10.25 8L8.36647 9.80819C9.62505 12.3242 11.6758 14.3749 14.1918 15.6335L16 13.75L20.25 15V20.25H20C17.0327 20.25 14.2512 19.4547 11.857 18.0656C9.40402 16.6424 7.35756 14.596 5.93438 12.143C4.54531 9.74877 3.75 6.96726 3.75 4C3.75 3.91652 3.75063 3.83318 3.75188 3.75H9Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconCallIncoming: {\n title: \"call-incoming, phone\",\n svg: '<path d=\"M19.25 9.25H14.75V4.75M20.25 3.75L15.2518 8.74819M9 3.75L10.25 8L8.36647 9.80819C9.62505 12.3242 11.6758 14.3749 14.1918 15.6335L16 13.75L20.25 15V20.25H20C17.0327 20.25 14.2512 19.4547 11.857 18.0656C9.40402 16.6424 7.35756 14.596 5.93438 12.143C4.54531 9.74877 3.75 6.96726 3.75 4C3.75 3.91652 3.75063 3.83318 3.75188 3.75H9Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconTelephone: {\n title: \"telephone, phone, contact\",\n svg: '<path d=\"M8.90625 3.75H3.75V5.8125C3.75 13.7861 10.2139 20.25 18.1875 20.25H20.25V15.0938L16.125 13.0312L14.5781 14.5781C12 13.5469 10.4531 12 9.42188 9.42188L10.9688 7.875L8.90625 3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconVoiceAndVideo: {\n title: \"voice-and-video, media\",\n svg: '<path d=\"M13.75 5.75H19.25V18.25H15.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeMiterlimit=\"16\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.5 9.85714L23.25 8.25V15.75L19.5 14.1429\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-miterlimit=\"16\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.25 12.75C13.25 16.3399 10.4518 19.25 7 19.25C3.54822 19.25 0.75 16.3399 0.75 12.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-miterlimit=\"16\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 8C3.75 6.20507 5.20507 4.75 7 4.75C8.79493 4.75 10.25 6.20507 10.25 8V13C10.25 14.7949 8.79493 16.25 7 16.25C5.20507 16.25 3.75 14.7949 3.75 13V8Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-miterlimit=\"16\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBook: {\n title: \"book, guide, info, faq\",\n svg: '<path d=\"M19.25 12V16.75H7C5.75736 16.75 4.75 17.7574 4.75 19C4.75 20.2426 5.75736 21.25 7 21.25H10M8.75 7H15.25M8.75 11H12.25M6.75 2.75H19.25V21.25H6.75C5.64543 21.25 4.75 20.3546 4.75 19.25V4.75C4.75 3.64543 5.64543 2.75 6.75 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconNewspaper: {\n title: \"newspaper, News, paper\",\n svg: '<path d=\"M2.75 3.75V3C2.33579 3 2 3.33579 2 3.75H2.75ZM16.25 3.75H17C17 3.33579 16.6642 3 16.25 3V3.75ZM21.25 12H22C22 11.5858 21.6642 11.25 21.25 11.25V12ZM6.75 15C6.33579 15 6 15.3358 6 15.75C6 16.1642 6.33579 16.5 6.75 16.5V15ZM6.75 7.75V7C6.33579 7 6 7.33579 6 7.75H6.75ZM12.25 7.75H13C13 7.33579 12.6642 7 12.25 7V7.75ZM12.25 12.25V13C12.6642 13 13 12.6642 13 12.25H12.25ZM6.75 12.25H6C6 12.6642 6.33579 13 6.75 13V12.25ZM2.75 4.5H16.25V3H2.75V4.5ZM22 17.75V12H20.5V17.75H22ZM15.5 3.75V12H17V3.75H15.5ZM15.5 12V17.75H17V12H15.5ZM21.25 11.25H16.25V12.75H21.25V11.25ZM2 3.75V17.75H3.5V3.75H2ZM5.25 21H18.5V19.5H5.25V21ZM2 17.75C2 19.5449 3.45507 21 5.25 21V19.5C4.2835 19.5 3.5 18.7165 3.5 17.75H2ZM18.75 21C20.5449 21 22 19.5449 22 17.75H20.5C20.5 18.7165 19.7165 19.5 18.75 19.5V21ZM18.75 19.5C17.7835 19.5 17 18.7165 17 17.75H15.5C15.5 19.5449 16.9551 21 18.75 21V19.5ZM6.75 16.5H12.25V15H6.75V16.5ZM6.75 8.5H12.25V7H6.75V8.5ZM11.5 7.75V12.25H13V7.75H11.5ZM12.25 11.5H6.75V13H12.25V11.5ZM7.5 12.25V7.75H6V12.25H7.5Z\" fill=\"currentColor\"/>',\n category: \"Communication\",\n },\n IconNewspaper1: {\n title: \"newspaper-1, guide, info, faq\",\n svg: '<path d=\"M12 6.3125L2.75 4.25V18.6875L12 20.75M12 6.3125L21.25 4.25V18.6875L12 20.75M12 6.3125V20.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconNewspaper2: {\n title: \"newspaper-2, guide, info, faq\",\n svg: '<path d=\"M12 7.75C12 6.09315 13.3431 4.75 15 4.75H22.25V19.25H15.277C14.5966 19.25 13.9296 19.4142 13.3508 19.7719C12.772 20.1296 12.3043 20.6414 12 21.25M12 7.75C12 6.09315 10.6569 4.75 9 4.75H1.75V19.25H8.723C9.40341 19.25 10.0704 19.4142 10.6492 19.7719C11.228 20.1296 11.6957 20.6414 12 21.25M12 7.75V21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconNewspaper3: {\n title: \"newspaper-3\",\n svg: '<path d=\"M21.25 4.75H2.75V19.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.25 15.25H17.75M12.75 12H17.75M12.75 8.75H17.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 8.75V12L6.25 8.75V12\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Communication\",\n },\n IconBitcoin: {\n title: \"bitcoin\",\n svg: '<path d=\"M9.75 8.25V12M9.75 8.25H8.25M9.75 8.25H13.375C14.4105 8.25 15.25 9.08947 15.25 10.125C15.25 11.1605 14.4105 12 13.375 12M9.75 12V15.75M9.75 12H13.375M9.75 15.75H8.25M9.75 15.75H13.375C14.4105 15.75 15.25 14.9105 15.25 13.875C15.25 12.8395 14.4105 12 13.375 12M12 6.75V8.25M12 15.75V17.25M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconEthereum: {\n title: \"ethereum\",\n svg: '<path d=\"M12 6.5L12.6066 6.05887C12.4654 5.86481 12.24 5.75 12 5.75C11.76 5.75 11.5346 5.86481 11.3934 6.05887L12 6.5ZM8 12L7.39345 11.5589C7.20218 11.8219 7.20218 12.1781 7.39345 12.4411L8 12ZM12 17.5L11.3934 17.9411C11.5346 18.1352 11.76 18.25 12 18.25C12.24 18.25 12.4654 18.1352 12.6066 17.9411L12 17.5ZM16 12L16.6066 12.4411C16.7978 12.1781 16.7978 11.8219 16.6066 11.5589L16 12ZM12 13.5L11.7367 14.2022C11.9064 14.2659 12.0936 14.2659 12.2633 14.2022L12 13.5ZM11.3934 6.05887L7.39345 11.5589L8.60655 12.4411L12.6066 6.94113L11.3934 6.05887ZM7.39345 12.4411L11.3934 17.9411L12.6066 17.0589L8.60655 11.5589L7.39345 12.4411ZM12.6066 17.9411L16.6066 12.4411L15.3934 11.5589L11.3934 17.0589L12.6066 17.9411ZM16.6066 11.5589L12.6066 6.05887L11.3934 6.94113L15.3934 12.4411L16.6066 11.5589ZM7.73666 12.7022L11.7367 14.2022L12.2633 12.7978L8.26334 11.2978L7.73666 12.7022ZM12.2633 14.2022L16.2633 12.7022L15.7367 11.2978L11.7367 12.7978L12.2633 14.2022ZM20.5 12C20.5 16.6944 16.6944 20.5 12 20.5V22C17.5228 22 22 17.5228 22 12H20.5ZM12 20.5C7.30558 20.5 3.5 16.6944 3.5 12H2C2 17.5228 6.47715 22 12 22V20.5ZM3.5 12C3.5 7.30558 7.30558 3.5 12 3.5V2C6.47715 2 2 6.47715 2 12H3.5ZM12 3.5C16.6944 3.5 20.5 7.30558 20.5 12H22C22 6.47715 17.5228 2 12 2V3.5Z\" fill=\"currentColor\"/>',\n category: \"Crypto\",\n },\n IconCryptoCoin: {\n title: \"crypto-coin\",\n svg: '<path d=\"M12 6.75V8.5M12 8.5C10.067 8.5 8.5 10.067 8.5 12C8.5 13.933 10.067 15.5 12 15.5M12 8.5C13.1155 8.5 14.1091 9.02183 14.75 9.8347M12 15.5V17.25M12 15.5C13.1155 15.5 14.1091 14.9782 14.75 14.1653M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconCrypto: {\n title: \"crypto\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 7.09265L16.25 9.54633V14.4537L12 16.9073L7.75 14.4537V9.54633L12 7.09265Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconCryptoWallet: {\n title: \"crypto-wallet\",\n svg: '<path d=\"M6 13.4583L9.25 15.3541V19.1458L6 21.0416L2.75 19.1458V15.3541L6 13.4583Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 6.5V6.5C3.75 4.98122 4.98122 3.75 6.5 3.75H16.25V8.75M3.75 6.5V6.5C3.75 7.74264 4.75736 8.75 6 8.75H16.25M3.75 6.5V11.25M16.25 8.75H20.25V20.25H12.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.5 14.5V14.49M15.75 14.5C15.75 14.6381 15.6381 14.75 15.5 14.75C15.3619 14.75 15.25 14.6381 15.25 14.5C15.25 14.3619 15.3619 14.25 15.5 14.25C15.6381 14.25 15.75 14.3619 15.75 14.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Crypto\",\n },\n IconWeb3: {\n title: \"web3, crypto-space, nft\",\n svg: '<path d=\"M2.79055 12.1075C1.4706 12.8201 0.744814 13.464 0.86677 13.9192C1.16059 15.0158 6.26396 14.6011 12.2655 12.993C18.2669 11.3849 22.8939 9.19232 22.6001 8.09576C22.4781 7.64061 21.5276 7.44582 20.0282 7.48865M2.79055 12.1075C2.80163 12.8595 2.90491 13.6226 3.10854 14.3825C4.43075 19.3171 9.48321 22.2508 14.3935 20.935C19.3038 19.6193 22.2126 14.5525 20.8904 9.61792C20.6867 8.85797 20.3946 8.14547 20.0282 7.48865M2.79055 12.1075C2.72972 7.9763 5.45127 4.1785 9.60537 3.06541C13.7595 1.95233 18.0153 3.88054 20.0282 7.48865\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Crypto\",\n },\n IconGas: {\n title: \"gas\",\n svg: '<path d=\"M14.25 20.25H15.25M14.25 20.25V3.75H3.75V20.25M14.25 20.25H3.75M2.75 20.25H3.75M14.25 9.75H17.75V17.25H21.25V8L18.75 5.75M11.25 9.75H6.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconAirdrop2: {\n title: \"airdrop-2, free, drop, parachute\",\n svg: '<path d=\"M7.75 21.25V16.75H16.25V21.25H7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 10.75L10.9688 16.75M13.0312 16.75L20.25 10.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 10.75V16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 2.75C7.44365 2.75 3.75 6.44365 3.75 11C3.75 11 8.77189 10.4844 12 10.4844C15.2281 10.4844 20.25 11 20.25 11C20.25 6.44365 16.5563 2.75 12 2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconTradingViewSteps: {\n title: \"trading-view-steps\",\n svg: '<path d=\"M3.75 7.75V16.25M9.25 3.75V12.25M14.75 11.75V20.25M20.25 7.75V16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconTradingViewLine: {\n title: \"trading-view-line\",\n svg: '<path d=\"M1.75 16.0833L6.875 10.25L14.05 17.25L22.25 6.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconTradingViewCandles: {\n title: \"trading-view-candles\",\n svg: '<path d=\"M7 2.75V10.75M7 10.75H3.75V18.25H7M7 10.75H10.25V18.25H7M7 18.25V21.25M17 2.75001V5.75M17 5.75H13.75V18.25H17M17 5.75H20.25V18.25H17M17 18.25V21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconCoin1: {\n title: \"coin-1, credits, money\",\n svg: '<path d=\"M13.5 21.25C17.7802 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.7802 2.75 13.5 2.75M13.5 21.25C9.21979 21.25 5.75 17.1086 5.75 12C5.75 6.89137 9.21979 2.75 13.5 2.75M13.5 21.25H10.5C6.21979 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.21979 2.75 10.5 2.75H13.5\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Crypto\",\n },\n IconCoin2: {\n title: \"coin-2, credits\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M8 12L12 8L16 12L12 16L8 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconCoins: {\n title: \"coins, money, transfer\",\n svg: '<path d=\"M14.6766 7.38126C13.686 5.23749 11.5167 3.75 9 3.75C5.54822 3.75 2.75 6.54822 2.75 10C2.75 13.3961 5.45873 16.1596 8.83359 16.2478M21.25 14C21.25 17.4518 18.4518 20.25 15 20.25C12.3406 20.25 10.0691 18.589 9.16641 16.2478C8.89745 15.5503 8.75 14.7924 8.75 14C8.75 10.6039 11.4587 7.84038 14.8336 7.75217C14.8889 7.75073 14.9444 7.75 15 7.75C18.4518 7.75 21.25 10.5482 21.25 14Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/>',\n category: \"Crypto\",\n },\n IconCoinsAdd: {\n title: \"coins-add, money\",\n svg: '<path d=\"M15 11.75V14M15 14V16.25M15 14H12.75M15 14H17.25M14.6766 7.38126C13.686 5.23749 11.5167 3.75 9 3.75C5.54822 3.75 2.75 6.54822 2.75 10C2.75 13.3961 5.45873 16.1596 8.83359 16.2478M21.25 14C21.25 17.4518 18.4518 20.25 15 20.25C12.3406 20.25 10.0691 18.589 9.16641 16.2478C8.89745 15.5503 8.75 14.7924 8.75 14C8.75 10.6039 11.4587 7.84038 14.8336 7.75217C14.8889 7.75073 14.9444 7.75 15 7.75C18.4518 7.75 21.25 10.5482 21.25 14Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconCryptopunk: {\n title: \"cryptopunk,nft,pfp,profile,avatar\",\n svg: '<path d=\"M5.75 6.75V5.75C5.75 4.09315 7.09315 2.75 8.75 2.75H15.25C16.9069 2.75 18.25 4.09315 18.25 5.75V6.75M5.75 6.75H18.25M5.75 6.75V10.75H4.25V13.75H5.75V21.25M11.25 21.25V19.25H15.25C16.9069 19.25 18.25 17.9069 18.25 16.25V6.75M18.25 6.75H21.25M10.7188 9.94444H10.7291M14.8438 9.94444H14.8541M14.25 15.25C12.5 15.5 10.7291 15.25 10 14\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconSecretPhrase: {\n title: \"secret-phrase, code, private-phrase\",\n svg: '<path d=\"M21.25 4.75H2.75V19.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.75 8.75H10.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 8.75H17.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 12H10.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 12H17.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 15.25H10.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 15.25H17.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Crypto\",\n },\n IconPhone: {\n title: \"phone, iphone, mobile\",\n svg: '<path d=\"M9.75 19.25H14.25M5.75 1.75H18.25V22.25H5.75V1.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconPhoneDynamicIsland: {\n title: \"phone-dynamic-island\",\n svg: '<path d=\"M10.75 4.25H13.25M5.75 1.75H18.25V22.25H5.75V1.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconOldPhone: {\n title: \"old-phone\",\n svg: '<path d=\"M4.75 6.88158V1.75M4.75 3.75H19.25V17.25C19.25 19.4591 17.4591 21.25 15.25 21.25H8.75C6.54086 21.25 4.75 19.4591 4.75 17.25V3.75ZM7.75 6.75H16.25V14.25H7.75V6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconMacbook: {\n title: \"macbook, laptop, computer\",\n svg: '<path d=\"M3.75 3.75H20.25V16.75H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M1.75 16.75H22.25V20.25H1.75V16.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconMacbookAir: {\n title: \"macbook-air\",\n svg: '<path d=\"M21.25 13.75V4.75H2.75V13.75M1.75 16.75V18.25C1.75 18.8023 2.19772 19.25 2.75 19.25H21.25C21.8023 19.25 22.25 18.8023 22.25 18.25V16.75H15.075L14.1 17.25H10L8.925 16.75H1.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconMacintosh: {\n title: \"macintosh, mac\",\n svg: '<path d=\"M13.75 15.25H16.25M5.75 18.5V21.25H18.25V18.5M4.75 2.75H19.25V18.25H4.75V2.75ZM7.75 5.75H16.25V12.25H7.75V5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconMacMini: {\n title: \"mac-mini\",\n svg: '<path d=\"M3.75 8.7C3.75 6.96734 3.75 6.10101 4.0872 5.43922C4.38381 4.85709 4.85709 4.38381 5.43922 4.0872C6.10101 3.75 6.96734 3.75 8.7 3.75H15.3C17.0327 3.75 17.899 3.75 18.5608 4.0872C19.1429 4.38381 19.6162 4.85709 19.9128 5.43922C20.25 6.10101 20.25 6.96734 20.25 8.7V15.3C20.25 17.0327 20.25 17.899 19.9128 18.5608C19.6162 19.1429 19.1429 19.6162 18.5608 19.9128C17.899 20.25 17.0327 20.25 15.3 20.25H8.7C6.96734 20.25 6.10101 20.25 5.43922 19.9128C4.85709 19.6162 4.38381 19.1429 4.0872 18.5608C3.75 17.899 3.75 17.0327 3.75 15.3V8.7Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M13.1562 9.94922C13.2135 9.94922 13.3112 9.95833 13.4492 9.97656C13.5872 9.99479 13.7383 10.0469 13.9023 10.1328C14.069 10.2161 14.2201 10.3555 14.3555 10.5508C14.3477 10.5586 14.3099 10.5872 14.2422 10.6367C14.1745 10.6836 14.099 10.7539 14.0156 10.8477C13.9323 10.9388 13.8594 11.056 13.7969 11.1992C13.7344 11.3398 13.7031 11.5078 13.7031 11.7031C13.7031 11.9271 13.7422 12.1172 13.8203 12.2734C13.901 12.4297 13.9935 12.556 14.0977 12.6523C14.2044 12.7461 14.2982 12.8151 14.3789 12.8594C14.4622 12.9036 14.5065 12.9271 14.5117 12.9297C14.5091 12.9401 14.4753 13.0326 14.4102 13.207C14.3477 13.3815 14.2435 13.5755 14.0977 13.7891C13.9701 13.974 13.832 14.1445 13.6836 14.3008C13.5378 14.457 13.362 14.5352 13.1562 14.5352C13.0182 14.5352 12.9049 14.5156 12.8164 14.4766C12.7279 14.4349 12.6367 14.3945 12.543 14.3555C12.4492 14.3138 12.3229 14.293 12.1641 14.293C12.0104 14.293 11.8815 14.3138 11.7773 14.3555C11.6758 14.3971 11.5781 14.4388 11.4844 14.4805C11.3932 14.5221 11.2852 14.543 11.1602 14.543C10.9701 14.543 10.8034 14.4674 10.6602 14.3164C10.5169 14.1654 10.3698 13.9844 10.2188 13.7734C10.0443 13.5234 9.89453 13.2188 9.76953 12.8594C9.64714 12.4974 9.58594 12.1328 9.58594 11.7656C9.58594 11.3724 9.66016 11.043 9.80859 10.7773C9.95703 10.5091 10.1471 10.3073 10.3789 10.1719C10.6133 10.0339 10.8555 9.96484 11.1055 9.96484C11.2383 9.96484 11.3633 9.98698 11.4805 10.0312C11.5977 10.0729 11.707 10.1159 11.8086 10.1602C11.9128 10.2044 12.0065 10.2266 12.0898 10.2266C12.1706 10.2266 12.2643 10.2031 12.3711 10.1562C12.4779 10.1094 12.5977 10.0638 12.7305 10.0195C12.8633 9.97266 13.0052 9.94922 13.1562 9.94922ZM12.9414 9.45312C12.8398 9.57552 12.7122 9.67839 12.5586 9.76172C12.4049 9.84245 12.2591 9.88281 12.1211 9.88281C12.0924 9.88281 12.0651 9.88021 12.0391 9.875C12.0365 9.86719 12.0339 9.85286 12.0312 9.83203C12.0286 9.8112 12.0273 9.78906 12.0273 9.76562C12.0273 9.60938 12.0612 9.45833 12.1289 9.3125C12.1966 9.16406 12.2734 9.04167 12.3594 8.94531C12.4688 8.8151 12.6068 8.70703 12.7734 8.62109C12.9401 8.53516 13.099 8.48958 13.25 8.48438C13.2578 8.51823 13.2617 8.55859 13.2617 8.60547C13.2617 8.76172 13.2318 8.91406 13.1719 9.0625C13.112 9.20833 13.0352 9.33854 12.9414 9.45312Z\" fill=\"currentColor\"/>',\n category: \"Devices & Signals\",\n },\n IconMouse: {\n title: \"mouse\",\n svg: '<path d=\"M12 6.75V8.75M12 21.25C8.54822 21.25 5.75 18.4518 5.75 15V9C5.75 5.54822 8.54822 2.75 12 2.75C15.4518 2.75 18.25 5.54822 18.25 9V15C18.25 18.4518 15.4518 21.25 12 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconMouseScrollDown: {\n title: \"mouse-scroll-down\",\n svg: '<path d=\"M15 20.25L12 22.25L9 20.25M12 5.75V8.25M12 17.25C9.10051 17.25 6.75 14.8995 6.75 12V7C6.75 4.1005 9.10051 1.75 12 1.75C14.8995 1.75 17.25 4.10051 17.25 7V12C17.25 14.8995 14.8995 17.25 12 17.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconMouseScrollUp: {\n title: \"mouse-scroll-up\",\n svg: '<path d=\"M15 4L12 2L9 4M12 10.75V13.25M12 22.25C9.10051 22.25 6.75 19.8995 6.75 17V12C6.75 9.10051 9.10051 6.75 12 6.75C14.8995 6.75 17.25 9.10051 17.25 12V17C17.25 19.8995 14.8995 22.25 12 22.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconCalculator: {\n title: \"calculator\",\n svg: '<path d=\"M4.75 7.75V21.25H19.25V7.75M4.75 7.75H19.25M4.75 7.75V2.75H19.25V7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.5 13C9.91421 13 10.25 12.6642 10.25 12.25C10.25 11.8358 9.91421 11.5 9.5 11.5C9.08579 11.5 8.75 11.8358 8.75 12.25C8.75 12.6642 9.08579 13 9.5 13ZM9.5 17.5C9.91421 17.5 10.25 17.1642 10.25 16.75C10.25 16.3358 9.91421 16 9.5 16C9.08579 16 8.75 16.3358 8.75 16.75C8.75 17.1642 9.08579 17.5 9.5 17.5ZM14.5 13C14.9142 13 15.25 12.6642 15.25 12.25C15.25 11.8358 14.9142 11.5 14.5 11.5C14.0858 11.5 13.75 11.8358 13.75 12.25C13.75 12.6642 14.0858 13 14.5 13ZM14.5 17.5C14.9142 17.5 15.25 17.1642 15.25 16.75C15.25 16.3358 14.9142 16 14.5 16C14.0858 16 13.75 16.3358 13.75 16.75C13.75 17.1642 14.0858 17.5 14.5 17.5Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\"/>',\n category: \"Devices & Signals\",\n },\n IconImac: {\n title: \"imac, computer\",\n svg: '<path d=\"M9.75 17.25V16.5C9.33579 16.5 9 16.8358 9 17.25H9.75ZM14.25 17.25H15C15 16.8358 14.6642 16.5 14.25 16.5V17.25ZM14.25 21.25V22C14.6642 22 15 21.6642 15 21.25H14.25ZM9.75 21.25H9C9 21.6642 9.33579 22 9.75 22V21.25ZM2.75 12.5H2V14H2.75V12.5ZM2.75 3.75V3C2.33579 3 2 3.33579 2 3.75H2.75ZM21.25 3.75H22C22 3.33579 21.6642 3 21.25 3V3.75ZM21.25 17.25V18C21.6642 18 22 17.6642 22 17.25H21.25ZM2.75 17.25H2C2 17.6642 2.33579 18 2.75 18V17.25ZM9.75 18H14.25V16.5H9.75V18ZM13.5 17.25V21.25H15V17.25H13.5ZM14.25 20.5H9.75V22H14.25V20.5ZM10.5 21.25V17.25H9V21.25H10.5ZM21.25 12.5H2.75V14H21.25V12.5ZM2.75 4.5H21.25V3H2.75V4.5ZM20.5 3.75V17.25H22V3.75H20.5ZM21.25 16.5H2.75V18H21.25V16.5ZM3.5 17.25V3.75H2V17.25H3.5Z\" fill=\"currentColor\"/>',\n category: \"Devices & Signals\",\n },\n IconStudioDisplay: {\n title: \"studio-display, thunderbolt\",\n svg: '<path d=\"M8.75 17.25H2.75V4.75H21.25V17.25H15.25M8.75 17.25V20.25H15.25V17.25M8.75 17.25H15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconWebcam: {\n title: \"webcam, camera, view\",\n svg: '<path d=\"M6.75 21.25H17.25M12 17.25V21M12 17.25C16.0041 17.25 19.25 14.0041 19.25 10C19.25 5.99594 16.0041 2.75 12 2.75C7.99594 2.75 4.75 5.99594 4.75 10C4.75 14.0041 7.99594 17.25 12 17.25ZM15.25 10C15.25 11.7949 13.7949 13.25 12 13.25C10.2051 13.25 8.75 11.7949 8.75 10C8.75 8.20507 10.2051 6.75 12 6.75C13.7949 6.75 15.25 8.20507 15.25 10Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconUsb: {\n title: \"usb, connection, connect, save, data\",\n svg: '<path d=\"M10 5.75V7.25M14 5.75V7.25M3.75 10.25H20.25V21.25H3.75V10.25ZM5.75 2.75H18.25V10.25H5.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconUsbC: {\n title: \"usb-c, type-c\",\n svg: '<path d=\"M5.75 12H18.25M6 17.25H18C20.8995 17.25 23.25 14.8995 23.25 12C23.25 9.10051 20.8995 6.75 18 6.75H6C3.10051 6.75 0.75 9.10051 0.75 12C0.75 14.8995 3.10051 17.25 6 17.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconChip: {\n title: \"chip, esim\",\n svg: '<path d=\"M7.75 5.25V3.75M12 5.25V3.75M16.25 5.25V3.75M7.75 20.25V18.75M12 20.25V18.75M16.25 20.25V18.75M3.75 3.75H20.25V20.25H3.75V3.75ZM7.75 8.75H16.25V15.25H7.75V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconTelevision: {\n title: \"television, tv, monitor, video, screen, display\",\n svg: '<path d=\"M18 20.25C16.114 19.6013 14.0967 19.25 12 19.25C9.90334 19.25 7.88601 19.6013 6 20.25M2.75 3.75H21.25V16.25H2.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconTelevisionOld: {\n title: \"television-old, tv, monitor, video, screen, display\",\n svg: '<path d=\"M7.5 3.25L12 6.75L16.5 3.25M2.75 6.75H21.25V20.25H2.75V6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconDevices: {\n title: \"devices, macbook, iphone, phone, connected\",\n svg: '<path d=\"M17.25 18.25H19.5M3.75 16.75V3.75H20.25V8.75M3.75 16.75H1.75V20.25H14.25M3.75 16.75H14.25M14.25 8.75H22.25V21.25H14.25V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconAirpodCase: {\n title: \"airpod-case, airpods\",\n svg: '<path d=\"M20.25 9.75V7.25C20.25 5.317 18.683 3.75 16.75 3.75H7.25C5.317 3.75 3.75 5.317 3.75 7.25V9.75M20.25 9.75V16.75C20.25 18.683 18.683 20.25 16.75 20.25H7.25C5.317 20.25 3.75 18.683 3.75 16.75V9.75M20.25 9.75H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M12 14.25C12.4142 14.25 12.75 13.9142 12.75 13.5C12.75 13.0858 12.4142 12.75 12 12.75C11.5858 12.75 11.25 13.0858 11.25 13.5C11.25 13.9142 11.5858 14.25 12 14.25Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\"/>',\n category: \"Devices & Signals\",\n },\n IconProcessor: {\n title: \"processor, chip\",\n svg: '<path d=\"M12.0002 4.74693V2.74609M16 4.75V2.75M8.00018 4.75V2.74609M12 21.25V19.25M16 21.25V19.25M8 21.25V19.25M19.25 16H21.25M19.25 8H21.25M19.25 12H21.25M2.75 12H4.75M2.75 16H4.75M2.75 8H4.75M15.2488 11.999C15.2488 13.7939 13.7937 15.249 11.9988 15.249C10.2039 15.249 8.74878 13.7939 8.74878 11.999C8.74878 10.2041 10.2039 8.74902 11.9988 8.74902C13.7937 8.74902 15.2488 10.2041 15.2488 11.999ZM4.75 4.75H19.25V19.25H4.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconServer1: {\n title: \"server-1, storage, data, coins, money\",\n svg: '<path d=\"M19.25 5.31944C19.25 6.73851 16.0041 7.88889 12 7.88889C7.99594 7.88889 4.75 6.73851 4.75 5.31944M19.25 5.31944C19.25 3.90038 16.0041 2.75 12 2.75C7.99594 2.75 4.75 3.90038 4.75 5.31944M19.25 5.31944V18.6806C19.25 20.0996 16.0041 21.25 12 21.25C7.99594 21.25 4.75 20.0996 4.75 18.6806V5.31944M19.25 12C19.25 13.3807 16.0041 14.5 12 14.5C7.99594 14.5 4.75 13.3807 4.75 12\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconServer2: {\n title: \"server-2, storage, data, coins, money\",\n svg: '<path d=\"M19.25 5.31944C19.25 6.73851 16.0041 7.88889 12 7.88889C7.99594 7.88889 4.75 6.73851 4.75 5.31944M19.25 5.31944C19.25 3.90038 16.0041 2.75 12 2.75C7.99594 2.75 4.75 3.90038 4.75 5.31944M19.25 5.31944V18.6806C19.25 20.0996 16.0041 21.25 12 21.25C7.99594 21.25 4.75 20.0996 4.75 18.6806V5.31944M19.25 9.67969C19.25 11.0988 16.0041 12.2491 12 12.2491C7.99594 12.2491 4.75 11.0988 4.75 9.67969M19.25 13.9297C19.25 15.3488 16.0041 16.4991 12 16.4991C7.99594 16.4991 4.75 15.3488 4.75 13.9297\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconSmartwatch1: {\n title: \"smartwatch-1, clock, time\",\n svg: '<path d=\"M12 8.75V12L13.5 13.5M4.75 4.75H19.25V19.25H4.75V4.75ZM7 4.75L8 1.75H16L17 4.75H7ZM7 19.25L8 22.25H16L17 19.25H7Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconSmartwatch2: {\n title: \"smartwatch-2, clock, time\",\n svg: '<path d=\"M7.5 6.25L8 1.75H16L16.5 6.25M12 8.75V12L13.5 13.5M7.5 17.75L8 22.25H16L16.5 17.75M19.25 12C19.25 16.0041 16.0041 19.25 12 19.25C7.99594 19.25 4.75 16.0041 4.75 12C4.75 9.27035 6.25852 6.89304 8.48737 5.65625C9.52797 5.07882 10.7256 4.75 12 4.75C13.2744 4.75 14.472 5.07882 15.5126 5.65625C17.7415 6.89304 19.25 9.27035 19.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconKeyboardDown: {\n title: \"keyboard-down\",\n svg: '<path d=\"M10 19L12 21L14 19M9.75 11.25H14.25M1.75 2.75H22.25V15.25H1.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 7.5C6.16421 7.5 6.5 7.16421 6.5 6.75C6.5 6.33579 6.16421 6 5.75 6C5.33579 6 5 6.33579 5 6.75C5 7.16421 5.33579 7.5 5.75 7.5ZM5.75 12C6.16421 12 6.5 11.6642 6.5 11.25C6.5 10.8358 6.16421 10.5 5.75 10.5C5.33579 10.5 5 10.8358 5 11.25C5 11.6642 5.33579 12 5.75 12ZM18.2502 7.5C18.6645 7.5 19.0002 7.16421 19.0002 6.75C19.0002 6.33579 18.6645 6 18.2502 6C17.836 6 17.5002 6.33579 17.5002 6.75C17.5002 7.16421 17.836 7.5 18.2502 7.5ZM18.2502 12C18.6645 12 19.0002 11.6642 19.0002 11.25C19.0002 10.8358 18.6645 10.5 18.2502 10.5C17.836 10.5 17.5002 10.8358 17.5002 11.25C17.5002 11.6642 17.836 12 18.2502 12ZM9.75 7.5C10.1642 7.5 10.5 7.16421 10.5 6.75C10.5 6.33579 10.1642 6 9.75 6C9.33579 6 9 6.33579 9 6.75C9 7.16421 9.33579 7.5 9.75 7.5ZM14.25 7.5C14.6642 7.5 15 7.16421 15 6.75C15 6.33579 14.6642 6 14.25 6C13.8358 6 13.5 6.33579 13.5 6.75C13.5 7.16421 13.8358 7.5 14.25 7.5Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\"/>',\n category: \"Devices & Signals\",\n },\n IconKeyboardUp: {\n title: \"keyboard-up\",\n svg: '<path d=\"M9.75 17.25H14.25M14 5L12 3L10 5M1.75 8.75H22.25V21.25H1.75V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 13.5C6.16421 13.5 6.5 13.1642 6.5 12.75C6.5 12.3358 6.16421 12 5.75 12C5.33579 12 5 12.3358 5 12.75C5 13.1642 5.33579 13.5 5.75 13.5ZM5.75 18C6.16421 18 6.5 17.6642 6.5 17.25C6.5 16.8358 6.16421 16.5 5.75 16.5C5.33579 16.5 5 16.8358 5 17.25C5 17.6642 5.33579 18 5.75 18ZM18.2502 13.5C18.6645 13.5 19.0002 13.1642 19.0002 12.75C19.0002 12.3358 18.6645 12 18.2502 12C17.836 12 17.5002 12.3358 17.5002 12.75C17.5002 13.1642 17.836 13.5 18.2502 13.5ZM18.2502 18C18.6645 18 19.0002 17.6642 19.0002 17.25C19.0002 16.8358 18.6645 16.5 18.2502 16.5C17.836 16.5 17.5002 16.8358 17.5002 17.25C17.5002 17.6642 17.836 18 18.2502 18ZM9.75 13.5C10.1642 13.5 10.5 13.1642 10.5 12.75C10.5 12.3358 10.1642 12 9.75 12C9.33579 12 9 12.3358 9 12.75C9 13.1642 9.33579 13.5 9.75 13.5ZM14.25 13.5C14.6642 13.5 15 13.1642 15 12.75C15 12.3358 14.6642 12 14.25 12C13.8358 12 13.5 12.3358 13.5 12.75C13.5 13.1642 13.8358 13.5 14.25 13.5Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\"/>',\n category: \"Devices & Signals\",\n },\n IconKeyboardCable: {\n title: \"keyboard-cable\",\n svg: '<path d=\"M5.75 13.5C6.16421 13.5 6.5 13.1642 6.5 12.75C6.5 12.3358 6.16421 12 5.75 12C5.33579 12 5 12.3358 5 12.75C5 13.1642 5.33579 13.5 5.75 13.5ZM5.75 18C6.16421 18 6.5 17.6642 6.5 17.25C6.5 16.8358 6.16421 16.5 5.75 16.5C5.33579 16.5 5 16.8358 5 17.25C5 17.6642 5.33579 18 5.75 18ZM18.2502 13.5C18.6645 13.5 19.0002 13.1642 19.0002 12.75C19.0002 12.3358 18.6645 12 18.2502 12C17.836 12 17.5002 12.3358 17.5002 12.75C17.5002 13.1642 17.836 13.5 18.2502 13.5ZM18.2502 18C18.6645 18 19.0002 17.6642 19.0002 17.25C19.0002 16.8358 18.6645 16.5 18.2502 16.5C17.836 16.5 17.5002 16.8358 17.5002 17.25C17.5002 17.6642 17.836 18 18.2502 18ZM9.75 13.5C10.1642 13.5 10.5 13.1642 10.5 12.75C10.5 12.3358 10.1642 12 9.75 12C9.33579 12 9 12.3358 9 12.75C9 13.1642 9.33579 13.5 9.75 13.5ZM14.25 13.5C14.6642 13.5 15 13.1642 15 12.75C15 12.3358 14.6642 12 14.25 12C13.8358 12 13.5 12.3358 13.5 12.75C13.5 13.1642 13.8358 13.5 14.25 13.5Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/><path d=\"M9.75 17.25H14.25M5.75 8.75V4.75H18.25V2.75M1.75 8.75H22.25V21.25H1.75V8.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconStorage: {\n title: \"storage, hdd, ssd\",\n svg: '<path d=\"M4.75 14.75H19.25M4.75 2.75H19.25V21.25H4.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.25 18C15.25 18.4142 15.5858 18.75 16 18.75C16.4142 18.75 16.75 18.4142 16.75 18C16.75 17.5858 16.4142 17.25 16 17.25C15.5858 17.25 15.25 17.5858 15.25 18ZM12.25 18C12.25 18.4142 12.5858 18.75 13 18.75C13.4142 18.75 13.75 18.4142 13.75 18C13.75 17.5858 13.4142 17.25 13 17.25C12.5858 17.25 12.25 17.5858 12.25 18Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" strokeLinecap=\"square\"/>',\n category: \"Devices & Signals\",\n },\n IconPrinter: {\n title: \"printer, print\",\n svg: '<path d=\"M9.25 10.75H6.75M6.75 13.75V21.25H17.25V13.75M6.75 13.75H17.25M6.75 13.75V17.25H2.75V6.75H21.25V17.25H17.25V13.75M6.75 2.75H17.25V6.75H6.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconSpeaker: {\n title: \"speaker, music, sound\",\n svg: '<path d=\"M9.75 6.75H14.25M4.75 2.75H19.25V21.25H4.75V2.75ZM15.5 14.25C15.5 16.183 13.933 17.75 12 17.75C10.067 17.75 8.5 16.183 8.5 14.25C8.5 12.317 10.067 10.75 12 10.75C13.933 10.75 15.5 12.317 15.5 14.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconCircleRecord: {\n title: \"circle-record, voicemail, band, tape\",\n svg: '<path d=\"M8.5 14.25C9.74264 14.25 10.75 13.2426 10.75 12C10.75 10.7574 9.74264 9.75 8.5 9.75C7.25736 9.75 6.25 10.7574 6.25 12C6.25 13.2426 7.25736 14.25 8.5 14.25ZM8.5 14.25H15.5M15.5 14.25C16.7426 14.25 17.75 13.2426 17.75 12C17.75 10.7574 16.7426 9.75 15.5 9.75C14.2574 9.75 13.25 10.7574 13.25 12C13.25 13.2426 14.2574 14.25 15.5 14.25ZM21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconTape: {\n title: \"tape\",\n svg: '<path d=\"M8.5 14.25C9.74264 14.25 10.75 13.2426 10.75 12C10.75 10.7574 9.74264 9.75 8.5 9.75C7.25736 9.75 6.25 10.7574 6.25 12C6.25 13.2426 7.25736 14.25 8.5 14.25ZM8.5 14.25H15.5M15.5 14.25C16.7426 14.25 17.75 13.2426 17.75 12C17.75 10.7574 16.7426 9.75 15.5 9.75C14.2574 9.75 13.25 10.7574 13.25 12C13.25 13.2426 14.2574 14.25 15.5 14.25ZM1.75 4.75H22.25V19.25H1.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconChromecast: {\n title: \"chromecast, cast\",\n svg: '<path d=\"M2.75 13.75C6.33985 13.75 9.25 16.6601 9.25 20.25M2.75 9.75C8.54899 9.75 13.25 14.451 13.25 20.25M16.75 20.25H21.25V3.75H2.75V6.25M2.75 17.75C4.13071 17.75 5.25 18.8693 5.25 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconBluetooth: {\n title: \"bluetooth\",\n svg: '<path d=\"M11.8785 12L16.9032 7.88889L10.7365 2.75V11.0657M11.8785 12L10.7365 12.9343M11.8785 12L16.9032 16.1111L10.7365 21.25V12.9343M11.8785 12L10.7365 11.0657M10.7365 12.9343L5.59766 17.1389M10.7365 12.9343V11.0657M10.7365 11.0657L5.59766 6.86111\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconSatellite1: {\n title: \"satellite-1, radar, feed\",\n svg: '<path d=\"M2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C14.2998 21.25 16.4036 20.4107 18.0217 19.0217L4.97828 5.97827C3.58929 7.59643 2.75 9.7002 2.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 12L13 11\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.25 12C21.25 6.89137 17.1086 2.75 12 2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 12C18 8.68629 15.3137 6 12 6\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconSatellite2: {\n title: \"satellite-2, radar, feed\",\n svg: '<path d=\"M7.5 12.5L15 5L19 9L11.5 16.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.5 17.5L4.75 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.25 11.5L5.5 8.75M13 6.75L10.27 4M10.27 4L7.54 1.25L2.75 6L5.5 8.75M10.27 4L5.5 8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.5 15.75L15.23 18.5M17.25 11L20 13.75M20 13.75L22.75 16.5L17.96 21.25L15.23 18.5M20 13.75L15.23 18.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.99229 20.08C11.6691 18.4032 11.6691 15.6845 9.99229 14.0076C8.31545 12.3308 5.59676 12.3308 3.91992 14.0076L9.99229 20.08Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconAirdrop: {\n title: \"airdrop, file-sharing, radar\",\n svg: '<path d=\"M11.5 12H12.5M13.25 12C13.25 12.6904 12.6904 13.25 12 13.25C11.3096 13.25 10.75 12.6904 10.75 12C10.75 11.3096 11.3096 10.75 12 10.75C12.6904 10.75 13.25 11.3096 13.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M7.37418 20.012C4.6098 18.4126 2.75 15.4235 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 15.4235 19.3902 18.4126 16.6258 20.0121\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M9.24679 16.471C7.74854 15.5464 6.75 13.8898 6.75 12C6.75 9.10051 9.10051 6.75 12 6.75C14.8995 6.75 17.25 9.10051 17.25 12C17.25 13.8898 16.2515 15.5464 14.7532 16.471\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconWifiSquare: {\n title: \"wifi-square, spot, signal, hot spot\",\n svg: '<path d=\"M12 16.75C12.4142 16.75 12.75 16.4142 12.75 16C12.75 15.5858 12.4142 15.25 12 15.25C11.5858 15.25 11.25 15.5858 11.25 16C11.25 16.4142 11.5858 16.75 12 16.75Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM15.6227 9.47035C15.9807 9.6787 16.4399 9.5574 16.6482 9.1994C16.8566 8.8414 16.7353 8.38229 16.3773 8.17393L15.6227 9.47035ZM7.62274 8.17393C7.26474 8.38229 7.14344 8.8414 7.35179 9.1994C7.56014 9.5574 8.01926 9.6787 8.37726 9.47035L7.62274 8.17393ZM12 11.75L12 11L12 11.75ZM13.6779 12.8763C14.0519 13.0541 14.4994 12.8951 14.6773 12.5211C14.8552 12.147 14.6962 11.6995 14.3221 11.5216L13.6779 12.8763ZM9.67834 11.5217C9.3043 11.6996 9.14534 12.1471 9.32329 12.5211C9.50124 12.8952 9.94871 13.0542 10.3228 12.8762L9.67834 11.5217ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM16.3773 8.17393C15.031 7.39038 13.5142 7 12 7V8.5C13.2577 8.5 14.5128 8.82438 15.6227 9.47035L16.3773 8.17393ZM12 7C10.4858 7 8.96905 7.39038 7.62274 8.17393L8.37726 9.47035C9.48717 8.82438 10.7423 8.5 12 8.5V7ZM12 12.5C12.5766 12.5 13.1516 12.6259 13.6779 12.8763L14.3221 11.5216C13.5897 11.1733 12.794 11 12 11L12 12.5ZM10.3228 12.8762C10.8487 12.626 11.4235 12.5 12 12.5L12 11C11.206 11 10.4105 11.1734 9.67834 11.5217L10.3228 12.8762Z\" fill=\"currentColor\"/>',\n category: \"Devices & Signals\",\n },\n IconWifiFull: {\n title: \"wifi-full, spot, signal, hot spot\",\n svg: '<path d=\"M21 7.82177C15.751 3.72477 8.249 3.72477 3 7.82177M6.75098 13.3144C9.81298 10.9264 14.188 10.9264 17.25 13.3144\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 19.75C12.4142 19.75 12.75 19.4142 12.75 19C12.75 18.5858 12.4142 18.25 12 18.25C11.5858 18.25 11.25 18.5858 11.25 19C11.25 19.4142 11.5858 19.75 12 19.75Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconWifiWeak: {\n title: \"wifi-weak, spot, signal, hot spot\",\n svg: '<path d=\"M6.75 13.3144C9.812 10.9264 14.187 10.9264 17.249 13.3144\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 19.75C12.4142 19.75 12.75 19.4142 12.75 19C12.75 18.5858 12.4142 18.25 12 18.25C11.5858 18.25 11.25 18.5858 11.25 19C11.25 19.4142 11.5858 19.75 12 19.75Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconWifiNoSignal: {\n title: \"wifi-no-signal, spot, signal, hot spot\",\n svg: '<path d=\"M15.0781 14.0781L8.92127 7.92127\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M8.92188 14.0786L15.0787 7.92176\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M12 19V18.99M12.25 19C12.25 19.1381 12.1381 19.25 12 19.25C11.8619 19.25 11.75 19.1381 11.75 19C11.75 18.8619 11.8619 18.75 12 18.75C12.1381 18.75 12.25 18.8619 12.25 19Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconNfc1: {\n title: \"nfc-1\",\n svg: '<path d=\"M6.96875 7.20751C8.13262 8.47959 8.84023 10.1589 8.84023 11.9998C8.84023 13.8407 8.13261 15.52 6.96875 16.7921M10.3402 4.73591C12.028 6.70016 13.0445 9.23394 13.0445 11.9998C13.0445 14.7656 12.028 17.2994 10.3402 19.2637M13.3495 2.52979C15.7774 5.0598 17.2487 8.37303 17.2487 11.9998C17.2487 15.6265 15.7774 18.9398 13.3495 21.4698\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconNfc2: {\n title: \"nfc-2\",\n svg: '<path d=\"M10.973 7.8453C12.221 8.79177 13.0281 10.2985 13.0281 11.9955C13.0281 12.6385 12.9122 13.2543 12.7003 13.8226C12.3531 14.754 11.7479 15.558 10.9728 16.1458L6.86126 13.3789M4.80513 16.1456C3.55719 15.1991 2.75 13.6925 2.75 11.9955C2.75 11.3524 2.86589 10.7368 3.07774 10.1685C3.42499 9.23708 4.03005 8.43314 4.80513 7.8453L8.91689 10.6122M19.3805 5.11035C20.568 7.12579 21.25 9.48017 21.25 11.9954C21.25 14.5105 20.568 16.8649 19.3805 18.8804M16.0634 7.62166C16.7499 8.9264 17.1387 10.415 17.1387 11.9954C17.1387 13.5757 16.7499 15.0643 16.0634 16.369\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconSignalTower: {\n title: \"signal-tower, live, podcast\",\n svg: '<circle cx=\"12\" cy=\"9.25\" r=\"1.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 21.25L11.75 9.25H12.25L16.25 21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 17.75H14.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.75693 12.7501C6.08102 10.7234 6.08103 7.77679 7.75693 5.75M16.2431 5.75C17.919 7.77679 17.919 10.7234 16.2431 12.7501\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.06494 2.7574C1.64285 6.40823 1.64502 12.1018 5.07145 15.75M18.9281 2.75C22.3572 6.40053 22.3573 12.0993 18.9285 15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconLiveFull: {\n title: \"live-full, signal, podcast\",\n svg: '<path d=\"M5.45926 5.45996C3.78534 7.13388 2.75 9.44638 2.75 12.0007C2.75 14.555 3.78534 16.8675 5.45926 18.5414M8.36626 8.36696C7.4363 9.29691 6.86111 10.5816 6.86111 12.0007C6.86111 13.4198 7.4363 14.7045 8.36626 15.6344M15.6337 15.6344C16.5637 14.7045 17.1389 13.4198 17.1389 12.0007C17.1389 10.5816 16.5637 9.29691 15.6337 8.36696M18.5407 18.5414C20.2147 16.8675 21.25 14.555 21.25 12.0007C21.25 9.44638 20.2147 7.13388 18.5407 5.45996M12.75 12C12.75 12.4142 12.4142 12.75 12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5857 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5857 12.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconLiveWeak: {\n title: \"live-weak, signal\",\n svg: '<path d=\"M8.36647 8.36719C7.43652 9.29714 6.86133 10.5819 6.86133 12.0009C6.86133 13.42 7.43652 14.7047 8.36647 15.6347M15.634 15.6347C16.5639 14.7047 17.1391 13.42 17.1391 12.0009C17.1391 10.5819 16.5639 9.29714 15.634 8.36719M12.7502 12.0002C12.7502 12.4144 12.4144 12.7502 12.0002 12.7502C11.586 12.7502 11.2502 12.4144 11.2502 12.0002C11.2502 11.586 11.586 11.2502 12.0002 11.2502C12.4144 11.2502 12.7502 11.586 12.7502 12.0002Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconLiveNoSignal: {\n title: \"live-no-signal, signal\",\n svg: '<path d=\"M8.36647 8.36719C7.43652 9.29714 6.86133 10.5819 6.86133 12.0009C6.86133 13.42 7.43652 14.7047 8.36647 15.6347M15.634 15.6347C16.5639 14.7047 17.1391 13.42 17.1391 12.0009C17.1391 10.5819 16.5639 9.29714 15.634 8.36719\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.5859 13.4141L13.4144 10.5856\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M10.5859 10.5859L13.4144 13.4144\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconHaptic: {\n title: \"haptic, waves\",\n svg: '<path d=\"M2.75 9.25C4.31231 9.25 5.84891 6.75 7.375 6.75C8.9222 6.75 10.4586 9.25 12 9.25C13.5315 9.25 15.068 6.75 16.625 6.75C18.1424 6.75 19.6793 9.25 21.25 9.25M2.75 17.25C4.31231 17.25 5.84891 14.75 7.375 14.75C8.9222 14.75 10.4586 17.25 12 17.25C13.5315 17.25 15.068 14.75 16.625 14.75C18.1424 14.75 19.6793 17.25 21.25 17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconPhoneHaptic: {\n title: \"phone-haptic, vibration\",\n svg: '<path d=\"M3.5 8L1.5 10L3 12L1.5 14L3.5 16M20.5 8L22.5 10L21 12L22.5 14L20.5 16M11.25 6.25H12.75M16.75 3.75V20.25H7.24998V3.75H16.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconAirplay: {\n title: \"airplay\",\n svg: '<path d=\"M12 15L12.5966 14.5455C12.4547 14.3593 12.2341 14.25 12 14.25C11.7659 14.25 11.5453 14.3593 11.4034 14.5455L12 15ZM8 20.25L7.40343 19.7955C7.23064 20.0222 7.20138 20.3274 7.32791 20.5829C7.45445 20.8384 7.7149 21 8 21V20.25ZM16 20.25V21C16.2851 21 16.5456 20.8384 16.6721 20.5829C16.7986 20.3274 16.7694 20.0222 16.5966 19.7955L16 20.25ZM2.75 17.25H2C2 17.6642 2.33579 18 2.75 18V17.25ZM6.25 18C6.66421 18 7 17.6642 7 17.25C7 16.8358 6.66421 16.5 6.25 16.5V18ZM2.75 3.75V3C2.33579 3 2 3.33579 2 3.75H2.75ZM21.25 3.75H22C22 3.33579 21.6642 3 21.25 3V3.75ZM21.25 17.25V18C21.6642 18 22 17.6642 22 17.25H21.25ZM17.75 16.5C17.3358 16.5 17 16.8358 17 17.25C17 17.6642 17.3358 18 17.75 18V16.5ZM11.4034 14.5455L7.40343 19.7955L8.59657 20.7045L12.5966 15.4545L11.4034 14.5455ZM8 21H16V19.5H8V21ZM16.5966 19.7955L12.5966 14.5455L11.4034 15.4545L15.4034 20.7045L16.5966 19.7955ZM2.75 18H6.25V16.5H2.75V18ZM3.5 17.25V3.75H2V17.25H3.5ZM2.75 4.5H21.25V3H2.75V4.5ZM20.5 3.75V17.25H22V3.75H20.5ZM21.25 16.5H17.75V18H21.25V16.5Z\" fill=\"currentColor\"/>',\n category: \"Devices & Signals\",\n },\n IconFullscreen: {\n title: \"fullscreen\",\n svg: '<path d=\"M21.25 4.75H2.75V19.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconBatteryFull: {\n title: \"battery-full, power\",\n svg: '<path d=\"M6 9.75V14.25M10.5 9.75V14.25M15 9.75V14.25M1.75 5.75H19.25V18.25H1.75V5.75ZM19.25 8.75H22.25V15.25H19.25V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconBatteryMedium: {\n title: \"battery-medium, power\",\n svg: '<path d=\"M6 9.75V14.25M10.5 9.75V14.25M1.75 5.75H19.25V18.25H1.75V5.75ZM19.25 8.75H22.25V15.25H19.25V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconBatteryLow: {\n title: \"battery-low, power\",\n svg: '<path d=\"M6 9.75V14.25M1.75 5.75H19.25V18.25H1.75V5.75ZM19.25 8.75H22.25V15.25H19.25V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconBatteryEmpty: {\n title: \"battery-empty, power\",\n svg: '<path d=\"M1.75 5.75H19.25V18.25H1.75V5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M19.25 8.75H22.25V15.25H19.25V8.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconBatteryError: {\n title: \"battery-error, power\",\n svg: '<path d=\"M12.25 9.75L10 12M10 12L7.75 14.25M10 12L7.75 9.75M10 12L12.25 14.25M1.75 5.75H19.25V18.25H1.75V5.75ZM19.25 8.75H22.25V15.25H19.25V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconBatteryLoading: {\n title: \"battery-loading, power\",\n svg: '<path d=\"M7.75 5.75H1.75V18.25H5.25M15.75 5.75H19.25V18.25H13.25M12.25 5.75L7.5 12H13.5L8.75 18.25M19.25 8.75H22.25V15.25H19.25V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconAirplayAudio: {\n title: \"airplay-audio, audio-stream\",\n svg: '<path d=\"M5.35437 18.4342C1.84726 14.8141 1.88222 9.0363 5.45926 5.45926C9.07161 1.84691 14.9284 1.84691 18.5407 5.45926C22.1178 9.0363 22.1527 14.8141 18.6456 18.4342\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M7.19714 16C5.14731 13.5445 5.27512 9.88604 7.58058 7.58058C10.0214 5.13981 13.9786 5.13981 16.4194 7.58058C18.7249 9.88604 18.8527 13.5445 16.8029 16\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M14.8841 13.5C15.5215 12.2753 15.3261 10.7299 14.2981 9.7019C13.0289 8.4327 10.9711 8.4327 9.7019 9.7019C8.67387 10.7299 8.47852 12.2753 9.11588 13.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M8 20.25L12 15L16 20.25H8Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Devices & Signals\",\n },\n IconColorRoll: {\n title: \"color-roll, paint-roller\",\n svg: '<path d=\"M6.75 7V10.25H20.25V3.75H6.75V7ZM6.75 7H3.75V13.25H13V15.5M15.25 21.25V18.25C15.25 17.0074 14.2426 16 13 16C11.7574 16 10.75 17.0074 10.75 18.25V21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconWrite1: {\n title: \"write-1, fountain-pen\",\n svg: '<path d=\"M4 20L10.19 13.8086M4 20L16 17.5L18 12M4 20L6.5 8L12 6M18 12L21.5 8.5L15.5 2.5L12 6M18 12L12 6M13.2319 12.5166C13.2319 13.4831 12.4484 14.2666 11.4819 14.2666C10.5154 14.2666 9.73193 13.4831 9.73193 12.5166C9.73193 11.5501 10.5154 10.7666 11.4819 10.7666C12.4484 10.7666 13.2319 11.5501 13.2319 12.5166Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconWrite2: {\n title: \"write-2, fountain-pen\",\n svg: '<path d=\"M14.3284 19.6425L14.4269 20.386C14.6791 20.3526 14.8972 20.1936 15.0062 19.9636L14.3284 19.6425ZM3 21.1424L2.25582 21.0492C2.22691 21.2798 2.30658 21.5108 2.47151 21.6746C2.63645 21.8384 2.86801 21.9165 3.09845 21.8859L3 21.1424ZM4.42893 9.74298L4.11506 9.06181C3.87969 9.17027 3.71699 9.39255 3.68475 9.64969L4.42893 9.74298ZM10.5303 14.6728C10.8232 14.3799 10.8232 13.905 10.5303 13.6121C10.2374 13.3192 9.76256 13.3192 9.46967 13.6121L10.5303 14.6728ZM11.0147 4.64245L10.4844 4.11211C10.3437 4.25277 10.2647 4.44353 10.2647 4.64244C10.2647 4.84136 10.3437 5.03212 10.4844 5.17278L11.0147 4.64245ZM13.5147 2.14246L14.0451 1.61213C13.7522 1.31923 13.2773 1.31923 12.9844 1.61212L13.5147 2.14246ZM22 10.6277L22.5303 11.1581C22.671 11.0174 22.75 10.8267 22.75 10.6277C22.75 10.4288 22.671 10.2381 22.5303 10.0974L22 10.6277ZM19.5 13.1277L18.9697 13.6581C19.2626 13.951 19.7374 13.951 20.0303 13.6581L19.5 13.1277ZM9.24998 14.65V15.4H10.75V14.65H9.24998ZM10.75 13.65V12.9H9.24998V13.65H10.75ZM17.408 11.3923L13.6507 19.3213L15.0062 19.9636L18.7635 12.0347L17.408 11.3923ZM14.23 18.899L2.90155 20.3989L3.09845 21.8859L14.4269 20.386L14.23 18.899ZM3.74418 21.2357L5.17311 9.83626L3.68475 9.64969L2.25582 21.0492L3.74418 21.2357ZM4.7428 10.4241L12.7428 6.73782L12.1151 5.3755L4.11506 9.06181L4.7428 10.4241ZM11.8986 6.58699L17.5555 12.2438L18.6161 11.1832L12.9593 5.52633L11.8986 6.58699ZM9.46967 13.6121L2.46967 20.6121L3.53033 21.6728L10.5303 14.6728L9.46967 13.6121ZM12.9593 5.52633L11.5451 4.11212L10.4844 5.17278L11.8986 6.58699L12.9593 5.52633ZM11.5451 5.17278L14.0451 2.67279L12.9844 1.61212L10.4844 4.11211L11.5451 5.17278ZM12.9844 2.67279L21.4697 11.1581L22.5303 10.0974L14.0451 1.61213L12.9844 2.67279ZM21.4697 10.0974L18.9697 12.5974L20.0303 13.6581L22.5303 11.1581L21.4697 10.0974ZM10.5 14.15C10.5 14.4262 10.2761 14.65 9.99998 14.65V16.15C11.1046 16.15 12 15.2546 12 14.15H10.5ZM9.99998 14.65C9.72384 14.65 9.49998 14.4262 9.49998 14.15H7.99998C7.99998 15.2546 8.89541 16.15 9.99998 16.15V14.65ZM9.49998 14.15C9.49998 13.8739 9.72384 13.65 9.99998 13.65V12.15C8.89541 12.15 7.99998 13.0455 7.99998 14.15H9.49998ZM9.99998 13.65C10.2761 13.65 10.5 13.8739 10.5 14.15H12C12 13.0455 11.1046 12.15 9.99998 12.15V13.65ZM10.75 14.65V13.65H9.24998V14.65H10.75ZM20.0303 12.5974L18.6161 11.1832L17.5555 12.2438L18.9697 13.6581L20.0303 12.5974Z\" fill=\"currentColor\"/>',\n category: \"Edit\",\n },\n IconFeather: {\n title: \"feather, writing\",\n svg: '<path d=\"M4.75 21.25C4.75 12 8.375 2.75 19.25 2.75C19.25 6.86111 14.5893 9.94444 14.5893 9.94444L16.6607 11.4861C16.6607 11.4861 14.5893 18.1667 5.5 18.1667\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconColorPicker: {\n title: \"color-picker, color\",\n svg: '<path d=\"M10 7L17 14M3.75 16.25L17 3L21 7L7.75 20.25H3.75V16.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBrush: {\n title: \"brush, color\",\n svg: '<path d=\"M16.4997 15.5L8.49973 7.5M13.1223 18.1222L13.4998 18.5001L21.4997 10.5L19.4997 8.5H17.4997L17.4997 6.5L13.4997 2.5L5.49982 10.5003L5.87749 10.8776C7.05006 12.0489 7.05058 13.9492 5.87865 15.1212L2.5 18.5001L5.50055 21.4995L8.87858 18.1213C10.0505 16.9492 11.9509 16.9497 13.1223 18.1222Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconPencil: {\n title: \"pencil, edit, write\",\n svg: '<path d=\"M13.25 6.25L17 2.5L21.5 7L17.75 10.75M13.25 6.25L2.75 16.75V21.25H7.25L17.75 10.75M13.25 6.25L17.75 10.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconEraser: {\n title: \"eraser, rubber, clean-up\",\n svg: '<path d=\"M7 11L13.5 17.5M2.5 14.5L14.5 2.5L21.5 9.5L11 20.25H8.25L2.5 14.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconEraserSimple: {\n title: \"eraser-simple, rubber, clean-up\",\n svg: '<path d=\"M6.5 10.5L13.5 17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14.25 2.75L2.75 14.25L9.75 21.25L21.25 9.75L14.25 2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconMarker: {\n title: \"marker,highlight\",\n svg: '<path d=\"M4.75 13.25C4.2375 15.3 3.2875 17.6375 1.75 19.175L4.825 22.25C6.3625 20.7125 8.7 19.7625 10.75 19.25M3.8 12L17.125 1.75L22.25 6.875L12 20.2L3.8 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconMarkerCircle: {\n title: \"marker-circle,highlight\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9 13.25V9.75L15 8.25V13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 13.75V13C7.63754 13 7.32694 13.2592 7.2621 13.6158L8 13.75ZM16 13.75L16.7379 13.6158C16.6731 13.2592 16.3625 13 16 13V13.75ZM5.45285 17.987C5.16955 18.2892 5.18486 18.7639 5.48704 19.0472C5.78923 19.3305 6.26386 19.3151 6.54715 19.013L5.45285 17.987ZM8 14.5H16V13H8V14.5ZM7.2621 13.6158C7.00364 15.0373 6.89255 15.7268 6.67587 16.2847C6.47922 16.7911 6.18515 17.2059 5.45285 17.987L6.54715 19.013C7.31485 18.1941 7.77078 17.6089 8.07413 16.8278C8.35745 16.0982 8.49636 15.2127 8.7379 13.8842L7.2621 13.6158ZM15.2621 13.8842C15.5036 15.2127 15.6426 16.0982 15.9259 16.8278C16.2292 17.6089 16.6852 18.1941 17.4528 19.013L18.5472 17.987C17.8148 17.2059 17.5208 16.7911 17.3241 16.2847C17.1074 15.7268 16.9964 15.0373 16.7379 13.6158L15.2621 13.8842Z\" fill=\"currentColor\"/>',\n category: \"Edit\",\n },\n IconPencilWave: {\n title: \"pencil-wave\",\n svg: '<path d=\"M21 18C21 18 19.666 19.5444 18.166 19.5444C16.666 19.5444 15.4594 18.115 13.9866 18.115C12.5138 18.115 11.6598 18.786 10.75 19.75M17 2.75L20.25 6L6 20.25H2.75V17L17 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconPencilLine: {\n title: \"pencil-line\",\n svg: '<path d=\"M12.75 21.25H21.25M2.75 17V21.25H7L21.25 7L17 2.75L2.75 17Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconTextEdit: {\n title: \"text-edit, prompts, comment\",\n svg: '<path d=\"M1.75 5.75H9.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M1.75 9.75H6.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22.75 8.38793L18.6121 4.25L7.75 15.1121V19.25H11.8879L22.75 8.38793Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconWriting: {\n title: \"writing\",\n svg: '<path d=\"M8.25 12.25H5.75C4.64543 12.25 3.75 13.1454 3.75 14.25C3.75 15.3546 4.64543 16.25 5.75 16.25H16.25C17.3546 16.25 18.25 17.1454 18.25 18.25C18.25 19.3546 17.3546 20.25 16.25 20.25H11.75M14.75 12.25H11.75V9.25L18.25 2.75L21.25 5.75L14.75 12.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconHighlight: {\n title: \"highlight, mark, freehand\",\n svg: '<path d=\"M11.8549 21.25C10.823 20.9894 8.6953 20.3424 6.40579 18.0284C2.57878 14.1605 1.59907 8.87966 4.21755 6.23323C6.36902 4.05879 10.5504 4.18522 14 6.5M17.5 10C20.4771 13.473 21.3599 16.7968 19.0757 18.6436C17.3646 20.0271 15.1993 18.4271 13.9359 17.1938M14.0177 13.25H10.75V10L18.25 2.5L21.5 5.754L14.0177 13.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconCircle: {\n title: \"circle, line, paint\",\n svg: '<path d=\"M12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 14.5543 19.1793 16.625 16.625 16.625C14.0707 16.625 12 14.5543 12 12\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Edit\",\n },\n IconWhiteboard: {\n title: \"whiteboard, sketch, forms\",\n svg: '<circle cx=\"7.5\" cy=\"12\" r=\"3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.75 20.25L15 13.75L19.25 20.25H10.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.25 5.59803C11.25 5.59803 14.4125 2.83251 15.9938 4.06761C18.3502 5.90813 13.3584 8.14891 13.8854 9.16903C14.4125 10.1891 17.9368 7.98854 19.6834 9.679C20.7376 10.6993 20.0694 12.1294 19.6834 13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconRuler: {\n title: \"ruler\",\n svg: '<path d=\"M8.875 8.875L11.5 11.5M8.875 8.875L5.375 12.375M8.875 8.875L12.375 5.375M14 7L12.375 5.375M7 14L5.375 12.375M5.375 12.375L1.75 16L8 22.25L22.25 8L16 1.75L12.375 5.375\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconEditSmall1: {\n title: \"edit-small-1, box, pencil, pen, write, draw\",\n svg: '<path d=\"M12.75 11.25V8.25L18.75 2.25L21.75 5.25L15.75 11.25H12.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.25 3.75H3.75V20.25H20.25V12.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconEditSmall2: {\n title: \"edit-small-2\",\n svg: '<path d=\"M12.75 11.25V8.25L18.75 2.25L21.75 5.25L15.75 11.25H12.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.25 3.75H3.75V20.25H20.25V12.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconEditBig: {\n title: \"edit-big, box, pencil, pen, write, draw\",\n svg: '<path d=\"M20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM11.25 4.5C11.6642 4.5 12 4.16421 12 3.75C12 3.33579 11.6642 3 11.25 3V4.5ZM21 12.75V12H19.5V12.75H21ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H11.25V3H3.75V4.5ZM19.5 12.75V20.25H21V12.75H19.5Z\" fill=\"currentColor\"/><path d=\"M8.75 15.25V12.25L18.25 2.75L21.25 5.75L11.75 15.25H8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconSlice: {\n title: \"slice, knife\",\n svg: '<path d=\"M2.75 6.75L5.75 3.75L21.25 19.25C15.0833 20.8 10.9722 21.2789 4.80556 15.0922L8 11.9989L2.75 6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBezierCurve: {\n title: \"bezier-curve, bezier, vector,svg\",\n svg: '<path d=\"M3 7H9.5M21 7H14.5M9.5 7.1483C6.41503 8.16228 4.15837 11.0018 4.00799 14.389M19.992 14.389C19.8416 11.0018 17.585 8.16228 14.5 7.1483M3 7.5V6.5M21 7.5V6.5M9.75 4.75H14.25V9.25H9.75V4.75ZM17.75 14.75H22.25V19.25H17.75V14.75ZM1.75 14.75H6.25V19.25H1.75V14.75ZM4.25 7C4.25 7.69036 3.69036 8.25 3 8.25C2.30964 8.25 1.75 7.69036 1.75 7C1.75 6.30964 2.30964 5.75 3 5.75C3.69036 5.75 4.25 6.30964 4.25 7ZM22.25 7C22.25 7.69036 21.6904 8.25 21 8.25C20.3096 8.25 19.75 7.69036 19.75 7C19.75 6.30964 20.3096 5.75 21 5.75C21.6904 5.75 22.25 6.30964 22.25 7Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconVectorLogo: {\n title: \"vector-logo,svg\",\n svg: '<path d=\"M6.5 12H17.5M3.58695 9.5C4.66589 5.88564 8.02422 3.25 12 3.25C15.9758 3.25 19.3341 5.88564 20.4131 9.5M20.4131 14.5C19.3341 18.1144 15.9758 20.75 12 20.75C8.02422 20.75 4.66589 18.1144 3.58695 14.5M6.25 12C6.25 13.2426 5.24264 14.25 4 14.25C2.75736 14.25 1.75 13.2426 1.75 12C1.75 10.7574 2.75736 9.75 4 9.75C5.24264 9.75 6.25 10.7574 6.25 12ZM22.25 12C22.25 13.2426 21.2426 14.25 20 14.25C18.7574 14.25 17.75 13.2426 17.75 12C17.75 10.7574 18.7574 9.75 20 9.75C21.2426 9.75 22.25 10.7574 22.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/>',\n category: \"Edit\",\n },\n IconBezierCircle: {\n title: \"bezier-circle, vector, nodes\",\n svg: '<path d=\"M9.39691 5.5C7.62463 6.2104 6.2104 7.62463 5.5 9.39691M14.6031 5.5C16.3754 6.2104 17.7896 7.62463 18.5 9.39691M18.5 14.6031C17.7896 16.3754 16.3754 17.7896 14.6031 18.5M5.5 14.6031C6.2104 16.3754 7.62463 17.7896 9.39691 18.5M9.75 16.75H14.25V21.25H9.75V16.75ZM9.75 2.75H14.25V7.25H9.75V2.75ZM21.25 9.75V14.25H16.75V9.75H21.25ZM7.25 9.75V14.25H2.75V9.75H7.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBezier: {\n title: \"bezier, vector, nodes\",\n svg: '<path d=\"M15.75 6V8.25H18M15.75 6V3.75H20.25V8.25H18M15.75 6H8.25M6 8.25V15.75M8 18H15.75M18 15.75V8.25M3.75 3.75H8.25V8.25H3.75V3.75ZM3.75 15.75H8V20.25H3.75V15.75ZM15.75 15.75H20.25V20.25H15.75V15.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBezierAdd: {\n title: \"bezier-add, vector, nodes\",\n svg: '<path d=\"M15.75 6V8.25H18M15.75 6V3.75H20.25V8.25H18M15.75 6H8.25M6 8.25V15.75M8 18H15.75M18 15.75V8.25M12 9.75V12M12 12V14.25M12 12H14.25M12 12H9.75M3.75 3.75H8.25V8.25H3.75V3.75ZM3.75 15.75H8V20.25H3.75V15.75ZM15.75 15.75H20.25V20.25H15.75V15.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBezierRemove: {\n title: \"bezier-remove, vector, nodes\",\n svg: '<path d=\"M15.75 6V8.25H18M15.75 6V3.75H20.25V8.25H18M15.75 6H8.25M6 8.25V15.75M8 18H15.75M18 15.75V8.25M14.25 12H9.75M3.75 3.75H8.25V8.25H3.75V3.75ZM3.75 15.75H8V20.25H3.75V15.75ZM15.75 15.75H20.25V20.25H15.75V15.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBezierPointer: {\n title: \"bezier-pointer\",\n svg: '<path d=\"M15.75 6V8.25H18M15.75 6V3.75H20.25V8.25H18M15.75 6H8.25M6 8.25V15.75M18 8.25V10.25M8 18V15.75H3.75V20.25H8V18ZM8 18H10.25M12.75 12.75L20.25 14.8929L16.7679 16.7679L14.8929 20.25L12.75 12.75ZM3.75 3.75H8.25V8.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBezierEdit: {\n title: \"bezier--edit\",\n svg: '<path d=\"M15.75 6V8.25H18M15.75 6V3.75H20.25V8.25H18M15.75 6H8.25M6 8.25V15.75M18 8.25V10.25M8 18V15.75H3.75V20.25H8V18ZM8 18H10.25M3.75 3.75H8.25V8.25H3.75V3.75ZM13.75 17.9167V20.25H16.0833L19.8333 16.5C20.4777 15.8557 20.4777 14.811 19.8333 14.1667C19.189 13.5223 18.1443 13.5223 17.5 14.1667L13.75 17.9167Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconColorPalette: {\n title: \"color-palette, colours\",\n svg: '<path d=\"M21.25 12C21.25 19.1094 13.6572 12.7979 12 16.1176C10.9722 18.1765 14.9058 20.75 12 20.75C6.89137 20.75 2.75 16.8325 2.75 12C2.75 7.16751 6.89137 3.25 12 3.25C17.1086 3.25 21.25 7.16751 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M11.5 7.75C11.5 8.44036 10.9404 9 10.25 9C9.55964 9 9 8.44036 9 7.75C9 7.05964 9.55964 6.5 10.25 6.5C10.9404 6.5 11.5 7.05964 11.5 7.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M16.5 9.25C16.5 9.94036 15.9404 10.5 15.25 10.5C14.5596 10.5 14 9.94036 14 9.25C14 8.55964 14.5596 8 15.25 8C15.9404 8 16.5 8.55964 16.5 9.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Edit\",\n },\n IconColorSwatch: {\n title: \"color-swatch, palette, colours\",\n svg: '<path d=\"M2.75 2.75V2C2.33579 2 2 2.33579 2 2.75H2.75ZM12.25 2.75H13C13 2.33579 12.6642 2 12.25 2V2.75ZM18.489 6.96716L19.1385 7.34216C19.2379 7.1699 19.2649 6.96518 19.2134 6.77305C19.1619 6.58091 19.0362 6.4171 18.864 6.31764L18.489 6.96716ZM21.7832 13.7386L22.1582 14.3881C22.3305 14.2887 22.4562 14.1249 22.5076 13.9327C22.5591 13.7406 22.5322 13.5359 22.4327 13.3636L21.7832 13.7386ZM18.1813 7.5L17.5318 7.125V7.125L18.1813 7.5ZM2.75 3.5H12.25V2H2.75V3.5ZM3.5 16.5V2.75H2V16.5H3.5ZM7.5 20.5C5.29086 20.5 3.5 18.7091 3.5 16.5H2C2 19.5376 4.46243 22 7.5 22V20.5ZM11.5 16.5C11.5 18.7091 9.70914 20.5 7.5 20.5V22C10.5376 22 13 19.5376 13 16.5H11.5ZM21.4082 13.0891L9.50035 19.9641L10.2504 21.2631L22.1582 14.3881L21.4082 13.0891ZM11.875 4.01462L18.114 7.61668L18.864 6.31764L12.625 2.71558L11.875 4.01462ZM11.5 2.75V3.3651H13V2.75H11.5ZM11.5 3.3651V16.5H13V3.3651H11.5ZM17.5318 7.875L21.1337 14.1136L22.4327 13.3636L18.8308 7.125L17.5318 7.875ZM17.8394 6.59216L17.5318 7.125L18.8308 7.875L19.1385 7.34216L17.8394 6.59216ZM17.5318 7.125L10.9644 18.5L12.2635 19.25L18.8308 7.875L17.5318 7.125ZM8.5 16.5C8.5 17.0523 8.05228 17.5 7.5 17.5V19C8.88071 19 10 17.8807 10 16.5H8.5ZM7.5 17.5C6.94772 17.5 6.5 17.0523 6.5 16.5H5C5 17.8807 6.11929 19 7.5 19V17.5ZM6.5 16.5C6.5 15.9477 6.94772 15.5 7.5 15.5V14C6.11929 14 5 15.1193 5 16.5H6.5ZM7.5 15.5C8.05228 15.5 8.5 15.9477 8.5 16.5H10C10 15.1193 8.88071 14 7.5 14V15.5Z\" fill=\"currentColor\"/>',\n category: \"Edit\",\n },\n IconColors: {\n title: \"colors, rgb, adjustments\",\n svg: '<path d=\"M7.30327 9.98894C7.01907 9.34978 6.86111 8.64189 6.86111 7.89706C6.86111 5.05442 9.16187 2.75 12 2.75C14.8381 2.75 17.1389 5.05442 17.1389 7.89706C17.1389 8.64189 16.9809 9.34978 16.6967 9.98894M7.30327 9.98894C4.7409 10.2801 2.75 12.4586 2.75 15.1029C2.75 17.9456 5.05076 20.25 7.88889 20.25C9.56992 20.25 11.0624 19.4416 12 18.1917M7.30327 9.98894C8.02803 11.6189 9.57377 12.8019 11.4144 13.0111M16.6967 9.98894C16.5045 9.9671 16.3091 9.95588 16.1111 9.95588C14.4301 9.95588 12.9376 10.7643 12 12.0142M16.6967 9.98894C19.2591 10.2801 21.25 12.4586 21.25 15.1029C21.25 17.9456 18.9492 20.25 16.1111 20.25C14.4301 20.25 12.9376 19.4416 12 18.1917M12 12.0142C11.7694 12.3216 11.5724 12.6557 11.4144 13.0111M12 12.0142C12.2306 12.3216 12.4276 12.6557 12.5856 13.0111M11.4144 13.0111C11.6066 13.0329 11.802 13.0441 12 13.0441C12.198 13.0441 12.3934 13.0329 12.5856 13.0111M12.5856 13.0111C12.8698 13.6502 13.0278 14.3581 13.0278 15.1029C13.0278 16.2619 12.6454 17.3314 12 18.1917\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Edit\",\n },\n IconSignature: {\n title: \"signature, sign\",\n svg: '<path d=\"M1.75 16C1.33579 16 1 16.3358 1 16.75C1 17.1642 1.33579 17.5 1.75 17.5V16ZM22.25 17.5C22.6642 17.5 23 17.1642 23 16.75C23 16.3358 22.6642 16 22.25 16V17.5ZM16.9439 13.9919L16.249 14.2743L16.9439 13.9919ZM19.8388 11.418L19.4856 12.0796L19.8388 11.418ZM22.25 15C22.6642 15 23 14.6642 23 14.25C23 13.8358 22.6642 13.5 22.25 13.5V15ZM13.5664 7.81456L14.2973 7.64631V7.64631L13.5664 7.81456ZM10.189 20.1692L10.0412 19.4339L10.189 20.1692ZM10.7396 14.6179C11.0853 14.846 11.5506 14.7507 11.7787 14.405C12.0069 14.0593 11.9116 13.5941 11.5659 13.3659L10.7396 14.6179ZM8.25902 4.21112L7.83776 3.59061L8.25902 4.21112ZM9.224 13.9919L8.63988 13.5215L9.224 13.9919ZM2.28033 10.2197C1.98744 9.92678 1.51256 9.92678 1.21967 10.2197C0.926777 10.5126 0.926777 10.9874 1.21967 11.2803L2.28033 10.2197ZM4.71967 14.7803C5.01256 15.0732 5.48744 15.0732 5.78033 14.7803C6.07322 14.4874 6.07322 14.0126 5.78033 13.7197L4.71967 14.7803ZM5.78033 11.2803C6.07322 10.9874 6.07322 10.5126 5.78033 10.2197C5.48744 9.92678 5.01256 9.92678 4.71967 10.2197L5.78033 11.2803ZM1.21967 13.7197C0.926777 14.0126 0.926777 14.4874 1.21967 14.7803C1.51256 15.0732 1.98744 15.0732 2.28033 14.7803L1.21967 13.7197ZM1.75 17.5H22.25V16H1.75V17.5ZM16.249 14.2743C16.3661 14.5622 16.5605 14.9313 16.9266 15.1194C17.4036 15.3643 17.8384 15.1648 18.0774 14.9771C18.2993 14.8028 18.4749 14.5582 18.6071 14.3498C18.7478 14.1282 18.884 13.8742 19.0105 13.6292C19.2798 13.1075 19.5014 12.6407 19.7224 12.3078C19.7735 12.2308 19.8172 12.1728 19.8531 12.1312C19.8904 12.0879 19.9083 12.0754 19.905 12.0777C19.8816 12.0943 19.6952 12.1915 19.4856 12.0796L20.192 10.7564C19.7413 10.5158 19.3099 10.6614 19.0389 10.853C18.7986 11.023 18.6114 11.2692 18.4727 11.4782C18.1914 11.9019 17.9067 12.4973 17.6776 12.9412C17.5548 13.179 17.4437 13.3836 17.3406 13.5461C17.2897 13.6264 17.2458 13.6882 17.209 13.7337C17.1707 13.7811 17.1509 13.7975 17.1509 13.7975C17.1545 13.7946 17.359 13.6552 17.612 13.7851C17.7542 13.8581 17.7312 13.9371 17.6387 13.7095L16.249 14.2743ZM19.4856 12.0796C19.3984 12.0331 19.4396 11.9727 19.4711 12.1785C19.5028 12.385 19.4933 12.6406 19.4853 12.9991C19.4788 13.294 19.4684 13.735 19.5866 14.1043C19.6516 14.3075 19.7721 14.5471 20.0033 14.7329C20.243 14.9254 20.5266 15 20.8038 15V13.5C20.7967 13.5 20.8652 13.5012 20.9428 13.5635C21.0118 13.619 21.023 13.6714 21.0152 13.647C20.9876 13.5609 20.9772 13.3848 20.985 13.0322C20.9914 12.7433 21.0105 12.3211 20.9538 11.9513C20.897 11.5806 20.7329 11.0451 20.192 10.7564L19.4856 12.0796ZM20.8038 15H22.25V13.5H20.8038V15ZM12.8355 7.98282C13.0105 8.74297 13.1363 9.76649 13.1725 10.9046L14.6718 10.8569C14.6333 9.64773 14.4993 8.52381 14.2973 7.64631L12.8355 7.98282ZM13.1725 10.9046C13.2316 12.7605 13.05 14.8384 12.512 16.4984C11.9621 18.1949 11.1274 19.2156 10.0412 19.4339L10.3368 20.9045C12.2489 20.5202 13.3414 18.8042 13.9389 16.9609C14.5482 15.081 14.7341 12.8161 14.6718 10.8569L13.1725 10.9046ZM11.5659 13.3659C11.2607 13.1645 10.9069 12.8799 10.5342 12.5261L9.50154 13.614C9.92202 14.0132 10.3445 14.3571 10.7396 14.6179L11.5659 13.3659ZM10.5342 12.5261C9.41477 11.4635 8.25132 9.89978 7.751 8.3926C7.50273 7.64472 7.43398 6.96017 7.56575 6.3753C7.69282 5.8113 8.0185 5.28092 8.68029 4.83163L7.83776 3.59061C6.87726 4.24269 6.31748 5.09111 6.10243 6.04561C5.89208 6.97925 6.02455 7.9529 6.32739 8.86518C6.92927 10.6783 8.26753 12.4427 9.50154 13.614L10.5342 12.5261ZM8.68029 4.83163C9.10456 4.54359 9.50336 4.46673 9.87534 4.51213C10.2619 4.55931 10.6724 4.74616 11.0784 5.07197C11.9017 5.7327 12.5782 6.86509 12.8355 7.98282L14.2973 7.64631C13.9734 6.23948 13.1336 4.79801 12.0172 3.90209C11.4533 3.44957 10.7881 3.11241 10.0571 3.02318C9.31147 2.93217 8.55082 3.10651 7.83776 3.59061L8.68029 4.83163ZM10.0412 19.4339C9.19924 19.6032 8.86575 19.4143 8.72501 19.2684C8.54929 19.0863 8.41625 18.7138 8.44524 18.0866C8.47316 17.4825 8.64781 16.7754 8.91071 16.1017C9.17406 15.4268 9.50522 14.8384 9.80813 14.4623L8.63988 13.5215C8.21596 14.0479 7.81588 14.7811 7.51333 15.5564C7.21032 16.3329 6.98441 17.2046 6.94684 18.0174C6.91034 18.8071 7.04689 19.6895 7.64557 20.31C8.27924 20.9667 9.22496 21.128 10.3368 20.9045L10.0412 19.4339ZM9.80813 14.4623C10.068 14.1397 10.3212 13.8459 10.5678 13.5801L9.46802 12.56C9.19522 12.8541 8.91917 13.1747 8.63988 13.5215L9.80813 14.4623ZM10.5678 13.5801C11.9988 12.0373 13.089 11.5576 13.8537 11.6276L13.9906 10.1339C12.4934 9.99672 10.9695 10.9413 9.46802 12.56L10.5678 13.5801ZM13.8537 11.6276C14.6289 11.6986 15.4844 12.393 16.249 14.2743L17.6387 13.7095C16.826 11.7099 15.6529 10.2862 13.9906 10.1339L13.8537 11.6276ZM1.21967 11.2803L2.96967 13.0303L4.03033 11.9697L2.28033 10.2197L1.21967 11.2803ZM2.96967 13.0303L4.71967 14.7803L5.78033 13.7197L4.03033 11.9697L2.96967 13.0303ZM4.71967 10.2197L2.96967 11.9697L4.03033 13.0303L5.78033 11.2803L4.71967 10.2197ZM2.96967 11.9697L1.21967 13.7197L2.28033 14.7803L4.03033 13.0303L2.96967 11.9697Z\" fill=\"currentColor\"/>',\n category: \"Edit\",\n },\n IconToolbox: {\n title: \"toolbox\",\n svg: '<path d=\"M12.75 10.75V2.75H19.25V10.75M12.75 6.75H15.25M4.75 10.75V6L6.5 2.75H7.5L9.25 6V10.75M2.75 10.75H21.25V20.25H2.75V10.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconMarkdown: {\n title: \"markdown\",\n svg: '<path d=\"M6.75 14.25V9.75L9 12L11.25 9.75V14.25M15.75 9.75V14.25M15.75 14.25L14 12.5M15.75 14.25L17.5 12.5M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconMagnet: {\n title: \"magnet, snap-pixel, snap\",\n svg: '<path d=\"M21.25 2.75L21.25 7.25L16.75 7.25L16.75 2.75L21.25 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.56687 18.4337C3.14698 16.0138 3.14698 12.0904 5.56687 9.67047L10.6787 4.55859L13.2347 7.11453L8.12281 12.2264C7.11452 13.2347 7.11452 14.8694 8.12281 15.8777C9.1311 16.886 10.7659 16.886 11.7741 15.8777L16.886 10.7659L19.442 13.3218L14.3301 18.4337C13.1201 19.6436 11.5343 20.2486 9.94848 20.2486C8.36265 20.2486 6.77682 19.6436 5.56687 18.4337Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.9648 13.6875L16.5208 16.2434\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M7.75781 7.47998L10.3137 10.0359\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Edit\",\n },\n IconBooleanGroupUnion: {\n title: \"boolean-group-union\",\n svg: '<path d=\"M21.25 2.75H8.75V8.75H2.75V21.25H15.25V15.25H21.25V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBooleanGroupUnion2: {\n title: \"boolean-group-union-2\",\n svg: '<path d=\"M8.75 8.75H2.75V21.25H15.25V15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.25 15.25H21.25V2.75H8.75V8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.25 15.25H8.75V12.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 8.75H15.25V11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBooleanGroupSubstract: {\n title: \"boolean-group-substract\",\n svg: '<path d=\"M8.75 8.75H2.75V21.25H15.25V15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.75 2.75H21.25V15.25H8.75V2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBooleanGroupIntersect: {\n title: \"boolean-group-intersect\",\n svg: '<path d=\"M8.75 5.5V2.75H21.25V15.25H18.5M8.75 8.75V15.25H15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.25 15.25V8.75H8.75M5.5 8.75H2.75V21.25H15.25V18.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBooleanGroupIntersect2: {\n title: \"boolean-group-intersect-2\",\n svg: '<path d=\"M8.75 8.75V15.25H15.25M8.75 5V2.75H11M19 2.75H21.25V5M14 2.75H16M21.25 8V10M21.25 13V15.25H19\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 14V16M2.75 11V8.75H5M8.75 8.75H15.25V15.25M15.25 19V21.25H13M10 21.25H8M5 21.25H2.75V19\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBooleanGroupIntersect3: {\n title: \"boolean-group-intersect-3\",\n svg: '<path d=\"M8.75 2.75H21.25V15.25H8.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.25 8.75H15.25V11.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.75 8.75H2.75V21.25H15.25V15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBooleanGroupExclude: {\n title: \"boolean-group-exclude\",\n svg: '<path d=\"M8.75 2.75H21.25V15.25H8.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M2.75 8.75H15.25V21.25H2.75V8.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconBooleanGroupSubstract2: {\n title: \"boolean-group-substract-2\",\n svg: '<path d=\"M8.75 8.75H2.75V21.25H15.25V15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.75 8.75V10V13V15.25H11H14H15.25M8.75 5V2.75H11M19 2.75H21.25V5M14 2.75H16M21.25 8V10M21.25 13V15.25H19\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconComponents: {\n title: \"components, figma\",\n svg: '<path d=\"M8.25 5.75L12 2L15.75 5.75L12 9.5L8.25 5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M8.25 18.25L12 14.5L15.75 18.25L12 22L8.25 18.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M2 12L5.75 8.25L9.5 12L5.75 15.75L2 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M14.5 12L18.25 8.25L22 12L18.25 15.75L14.5 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconKeyframe: {\n title: \"keyframe, rhombus\",\n svg: '<path d=\"M12 2.25L2.25 12L12 21.75L21.75 12L12 2.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconAddKeyframe: {\n title: \"add-keyframe, rhombus\",\n svg: '<path d=\"M12 2.25L2.25 12L12 21.75L21.75 12L12 2.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M12 9V15M9 12H15\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconRemoveKeyframe: {\n title: \"remove-keyframe, rhombus\",\n svg: '<path d=\"M12 2.25L2.25 12L12 21.75L21.75 12L12 2.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M9.75 12H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconRecKeyframe2: {\n title: \"rec-keyframe-2, rhombus\",\n svg: '<path d=\"M12 2.25L2.25 12L12 21.75L21.75 12L12 2.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"2.75\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Edit\",\n },\n IconRecKeyframe: {\n title: \"rec-keyframe, rhombus\",\n svg: '<path d=\"M12 2.25L2.25 12L12 21.75L21.75 12L12 2.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"2.75\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Edit\",\n },\n IconVariables: {\n title: \"variables, figma\",\n svg: '<path d=\"M12 2.5L20.2272 7.25V16.75L12 21.5L3.77276 16.75V7.25L12 2.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.25 12H12.75M13.5 12C13.5 12.8284 12.8284 13.5 12 13.5C11.1716 13.5 10.5 12.8284 10.5 12C10.5 11.1716 11.1716 10.5 12 10.5C12.8284 10.5 13.5 11.1716 13.5 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconSummary: {\n title: \"summary, summarize\",\n svg: '<path d=\"M3.75 5.75V17.25H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18 19V15.5L20.25 17.25L18 19Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.25 7.25H16.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.25 12.25H13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconRewrite1: {\n title: \"rewrite-1, resummarize, text-edit\",\n svg: '<path d=\"M7.34848 4.75H2.75V19.25H11.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M16.5 19.25H21.25V4.75H12.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.75 10H15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.75 14H13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 3L8.5 4.75L6.75 6.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.25 17.5L15.5 19.25L17.25 21\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconRewrite2: {\n title: \"rewrite-2, write-again, text-edit\",\n svg: '<path d=\"M9.75 11.75V14.25H12.25L21 5.5L18.5 3L9.75 11.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M16.5 5.5L18.5 7.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 4.75H2.75V19.25H9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.75 19.2502H21.25V11.7002\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.25 3L10 4.75L8.25 6.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.75 17.5L14 19.25L15.75 21\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconRewrite: {\n title: \"rewrite, re-edit, redo\",\n svg: '<path d=\"M11.75 20.2499L12.25 16.4999L17.4952 11.2547C18.4418 10.3081 19.9939 10.3677 20.865 11.3841C21.6465 12.2958 21.5943 13.6555 20.7452 14.5047L15.5 19.7499L11.75 20.2499Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M17 12.5L19.5 15\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.25 12C3.25 12.2518 3.26064 12.5012 3.28149 12.7476C3.54145 15.8198 5.38868 18.4397 8 19.7843M19.1816 7C17.6005 4.73314 14.9734 3.25 12 3.25C8.81314 3.25 6.02419 4.95371 4.49429 7.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 3.75V8.25H8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconRepaint: {\n title: \"repaint, recreate, redo\",\n svg: '<path d=\"M3.25 12C3.25 12.2518 3.26064 12.5012 3.28149 12.7476C3.54145 15.8198 5.38868 18.4397 8 19.7843M19.1816 7C17.6005 4.73314 14.9734 3.25 12 3.25C8.81314 3.25 6.02419 4.95371 4.49429 7.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 3.75V8.25H8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.0043 15.75C15.2445 15.75 16.25 16.7555 16.25 17.9957C16.25 20.5127 13.4964 20.2415 11.7585 20.2415C11.7585 18.5036 11.4873 15.75 14.0043 15.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.3184 15.3093C15.8116 13.3022 17.132 12.0582 19.3098 10.9194C19.8139 10.6558 20.4279 10.7678 20.8302 11.17V11.17C21.2325 11.5723 21.3445 12.1863 21.0808 12.6905C19.9457 14.8613 18.7059 16.1802 16.71 17.6676\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconCornerRadius: {\n title: \"corner-radius, border-radius\",\n svg: '<path d=\"M20.25 3.75H3.75V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Edit\",\n },\n IconLineThickness: {\n title: \"line-thickness, lines, border\",\n svg: '<path d=\"M4.62109 5.75L19.3811 5.75\" stroke=\"currentColor\" strokeWidth=\"1.25\" strokeLinecap=\"round\"/><path d=\"M5.62109 17.25L18.3811 17.25\" stroke=\"currentColor\" stroke-width=\"3.25\" stroke-linecap=\"round\"/><path d=\"M5.11914 11L18.8791 11\" stroke=\"currentColor\" stroke-width=\"2.25\" stroke-linecap=\"round\"/>',\n category: \"Edit\",\n },\n IconSettingsToggle1: {\n title: \"settings-toggle-1\",\n svg: '<path d=\"M1.75 12C1.75 8.54822 4.54822 5.75 8 5.75H16C19.4518 5.75 22.25 8.54822 22.25 12C22.25 15.4518 19.4518 18.25 16 18.25H8C4.54822 18.25 1.75 15.4518 1.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M12.75 12C12.75 10.2051 14.2051 8.75 16 8.75C17.7949 8.75 19.25 10.2051 19.25 12C19.25 13.7949 17.7949 15.25 16 15.25C14.2051 15.25 12.75 13.7949 12.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Filter & Settings\",\n },\n IconSettingsToggle2: {\n title: \"settings-toggle-2\",\n svg: '<path d=\"M17 17.25H7C4.10051 17.25 1.75 14.8995 1.75 12C1.75 9.10051 4.10051 6.75 7 6.75H17M17 17.25C19.8995 17.25 22.25 14.8995 22.25 12C22.25 9.10051 19.8995 6.75 17 6.75M17 17.25C14.1005 17.25 11.75 14.8995 11.75 12C11.75 9.10051 14.1005 6.75 17 6.75\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Filter & Settings\",\n },\n IconSettingsGear1: {\n title: \"settings-gear-1, preferences\",\n svg: '<path d=\"M12 2.75L20.25 7.49995V16.4999L12 21.2499L3.75 16.5002L3.75 7.49992L12 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M15.25 12C15.25 13.7949 13.795 15.25 12 15.25C10.2051 15.25 8.75003 13.7949 8.75003 12C8.75003 10.2051 10.2051 8.75 12 8.75C13.795 8.75 15.25 10.2051 15.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Filter & Settings\",\n },\n IconSettingsGear2: {\n title: \"settings-gear-2, preferences\",\n svg: '<path d=\"M9.225 5.525L6.21875 4.83125L4.83125 6.21875L5.525 9.225L2.75 11.075V12.925L5.525 14.775L4.83125 17.7812L6.21875 19.1687L9.225 18.475L11.075 21.25H12.925L14.775 18.475L17.7812 19.1687L19.1687 17.7812L18.475 14.775L21.25 12.925V11.075L18.475 9.225L19.1687 6.21875L17.7812 4.83125L14.775 5.525L12.925 2.75H11.075L9.225 5.525Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M14.75 12C14.75 13.5188 13.5188 14.75 12 14.75C10.4812 14.75 9.25 13.5188 9.25 12C9.25 10.4812 10.4812 9.25 12 9.25C13.5188 9.25 14.75 10.4812 14.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconSettingsGear3: {\n title: \"settings-gear-3, preferences\",\n svg: '<path d=\"M20.25 11.9998C20.25 10.4968 19.8481 9.08774 19.1459 7.87412M20.25 11.9998C20.25 13.5027 19.8481 14.9118 19.146 16.1253M20.25 11.9998H14.25M20.25 11.9998L22.25 12M12 20.2498C10.497 20.2498 9.08794 19.8479 7.87432 19.1457M12 20.2498C13.503 20.2498 14.9121 19.8479 16.1257 19.1457M12 20.2498L12 22.25M3.75001 11.9998C3.75001 13.5028 4.15191 14.9119 4.85411 16.1255M3.75001 11.9998C3.75001 10.4968 4.15194 9.08763 4.85419 7.87398M3.75001 11.9998H1.75M12 3.74981C10.497 3.74981 9.08794 4.15171 7.87432 4.85391M12 3.74981C13.503 3.74981 14.9121 4.15171 16.1257 4.85391M12 3.74981L12 1.75M14.25 11.9998C14.25 13.2424 13.2426 14.2498 12 14.2498C11.5901 14.2498 11.2058 14.1402 10.8748 13.9487M14.25 11.9998C14.25 10.7572 13.2426 9.74981 12 9.74981C11.5901 9.74981 11.2058 9.85942 10.8748 10.0509M6.87501 3.12305L7.87432 4.85391M17.125 20.8766L16.1257 19.1457M3.12325 6.87461L4.85419 7.87398M20.8768 17.1246L19.146 16.1253M3.12325 17.1248L4.85411 16.1255M20.8768 6.87481L19.1459 7.87412M6.87501 20.8766L7.87432 19.1457M17.125 3.12305L16.1257 4.85391M7.87432 4.85391L10.8748 10.0509M7.87432 4.85391C6.62244 5.57824 5.57855 6.62211 4.85419 7.87398M10.8748 10.0509C10.2024 10.44 9.75001 11.1671 9.75001 11.9998C9.75001 12.8325 10.2024 13.5596 10.8748 13.9487M10.8748 13.9487L7.87432 19.1457M7.87432 19.1457C6.62239 18.4213 5.57847 17.3774 4.85411 16.1255M16.1257 4.85391C17.3776 5.57827 18.4215 6.62219 19.1459 7.87412M19.146 16.1253C18.4216 17.3773 17.3777 18.4213 16.1257 19.1457\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconMaintenance: {\n title: \"maintenance, settings, service\",\n svg: '<path d=\"M14.5694 16.1111C18.259 16.1111 21.25 13.1201 21.25 9.43056C21.25 8.66012 21.1196 7.92014 20.8796 7.23149L18.1667 9.94444C17.0314 11.0797 15.1908 11.0797 14.0556 9.94444C12.9203 8.80919 12.9203 6.96858 14.0556 5.83333L16.7685 3.12038C16.0799 2.88042 15.3399 2.75 14.5694 2.75C10.8799 2.75 7.88889 5.74099 7.88889 9.43056C7.88889 10.3416 8.07124 11.21 8.40145 12.0013L2.75 17.6528L6.34722 21.25L11.9987 15.5986C12.79 15.9288 13.6584 16.1111 14.5694 16.1111Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconSettingsSliderHor: {\n title: \"settings-slider-hor\",\n svg: '<path d=\"M13.75 7H3.75M13.75 7C13.75 5.20437 15.2044 3.75 17 3.75C18.7956 3.75 20.25 5.20437 20.25 7C20.25 8.79563 18.7956 10.25 17 10.25C15.2044 10.25 13.75 8.79563 13.75 7ZM20.25 17H12.25M12.25 17C12.25 18.7956 10.7956 20.25 9 20.25C7.20438 20.25 5.75 18.7956 5.75 17M12.25 17C12.25 15.2044 10.7956 13.75 9 13.75C7.20438 13.75 5.75 15.2044 5.75 17M5.75 17H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconSettingsSliderVer: {\n title: \"settings-slider-ver\",\n svg: '<path d=\"M17 13.75V3.75M17 13.75C18.7956 13.75 20.25 15.2044 20.25 17C20.25 18.7956 18.7956 20.25 17 20.25C15.2044 20.25 13.75 18.7956 13.75 17C13.75 15.2044 15.2044 13.75 17 13.75ZM7 20.25V12.25M7 12.25C5.20438 12.25 3.75 10.7956 3.75 9C3.75 7.20438 5.20438 5.75 7 5.75M7 12.25C8.79562 12.25 10.25 10.7956 10.25 9C10.25 7.20438 8.79562 5.75 7 5.75M7 5.75V3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconSettingsSliderThree: {\n title: \"settings-slider-three\",\n svg: '<path d=\"M5.70123 20.254V14.0015M5.70123 10.25V3.74707M11.9998 20.0038V12.7505M11.9998 8.99915V3.99707M18.2984 20.2536V16.002M18.2984 12.2508V3.74707M3.74609 13.7515H7.74982M9.99982 9.24902H13.9998M16.2498 15.752H20.2498\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconSettingsKnob: {\n title: \"settings-knob\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM8.28777 15.7082L8.81899 15.1787L8.28777 15.7082ZM8.28777 8.26021L8.81899 8.78965L8.81918 8.78945L8.28777 8.26021ZM15.7122 8.26021L16.2435 7.73077L16.2433 7.73058L15.7122 8.26021ZM15.7122 15.7082L16.2433 16.2378L16.2435 16.2376L15.7122 15.7082ZM14.9998 15L14.4694 15.5303L14.471 15.5319L14.9998 15ZM13.5804 12.5197C13.2875 12.2268 12.8126 12.2268 12.5197 12.5196C12.2268 12.8125 12.2268 13.2874 12.5196 13.5803L13.5804 12.5197ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM8.81899 15.1787C7.06034 13.4142 7.06034 10.5542 8.81899 8.78965L7.75654 7.73077C5.41449 10.0807 5.41449 13.8877 7.75654 16.2376L8.81899 15.1787ZM8.81918 8.78945C10.5312 7.0704 13.4657 7.06983 15.1812 8.78985L16.2433 7.73058C13.9421 5.42336 10.0551 5.42279 7.75635 7.73097L8.81918 8.78945ZM15.181 8.78965C16.9397 10.5542 16.9397 13.4142 15.181 15.1787L16.2435 16.2376C18.5855 13.8877 18.5855 10.0807 16.2435 7.73077L15.181 8.78965ZM15.1812 15.1786C13.4238 16.9406 10.5746 16.9403 8.81899 15.1787L7.75654 16.2376C10.0986 18.5876 13.9 18.5873 16.2433 16.2378L15.1812 15.1786ZM15.5301 14.4697L13.5804 12.5197L12.5196 13.5803L14.4694 15.5303L15.5301 14.4697ZM16.241 15.1763L15.5285 14.4681L14.471 15.5319L15.1835 16.2401L16.241 15.1763Z\" fill=\"currentColor\"/>',\n category: \"Filter & Settings\",\n },\n IconFilter1: {\n title: \"filter-1, sort\",\n svg: '<path d=\"M20.25 3.75H3.75V8L9.75 14V21.25L14.25 20V14L20.25 8V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconFilter2: {\n title: \"filter-2, sort\",\n svg: '<path d=\"M2.75 4.75H21.25M8.75 19.25H15.25M5.75 12H18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconFilterCircle: {\n title: \"filter-circle, sort\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.75 12.5H15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.25 9.25L16.75 9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.25 15.75H13.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconFilterAscending: {\n title: \"filter-ascending, sort, az\",\n svg: '<path d=\"M14.3482 10.25L15.5606 7.75M15.5606 7.75L17.5005 3.75L19.4338 7.75M15.5606 7.75H19.4338M19.4338 7.75L20.6421 10.25M14.75 13.75H20.25L14.75 20.25H20.25M7 3.75V20.25M7 20.25L4 17.25M7 20.25L10 17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconFilterDescending: {\n title: \"filter-descending, sort, za\",\n svg: '<path d=\"M14.3477 20.25L15.5601 17.75M15.5601 17.75L17.5 13.75L19.4333 17.75M15.5601 17.75H19.4333M19.4333 17.75L20.6416 20.25M14.75 3.75H20.25L14.75 10.25H20.25M7 3.75V20.25M7 20.25L4 17.25M7 20.25L10 17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconFilterTimeline: {\n title: \"filter-timeline, sort\",\n svg: '<path d=\"M6.0016 4.75V19.25M6.0016 19.25L3 16.25M6.0016 19.25L9 16.25M11.75 6.75H20.25M15.75 17.25H20.25M13.75 12H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconSortArrowUpDown: {\n title: \"sort-arrow-up-down\",\n svg: '<rect x=\"3.75\" y=\"3.75\" width=\"6.5\" height=\"6.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><rect x=\"3.75\" y=\"13.75\" width=\"6.5\" height=\"6.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.75 7.5L18 4L21.25 7.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.25 16.5L18 20L14.75 16.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 4.5V19.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconFilterDesc: {\n title: \"filter-desc\",\n svg: '<path d=\"M3.75 5.75H18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 12H11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 18.25H9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 10.75V18.5M14.75 15.75L18 19L21.25 15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconFilterAsc: {\n title: \"filter-asc\",\n svg: '<path d=\"M3.75 18.25H18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 12H11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 5.75H9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 13.25V5.25M14.75 8L18 4.75L21.25 8\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconReorder: {\n title: \"reorder\",\n svg: '<path d=\"M15.6094 4.25L13.5 6.25L15.5 8.25M14.5781 6.25H20.25V17.75H13.75M9.25 17.5C9.25 19.0188 8.01878 20.25 6.5 20.25C4.98122 20.25 3.75 19.0188 3.75 17.5C3.75 15.9812 4.98122 14.75 6.5 14.75C8.01878 14.75 9.25 15.9812 9.25 17.5ZM9.25 6.5C9.25 8.01878 8.01878 9.25 6.5 9.25C4.98122 9.25 3.75 8.01878 3.75 6.5C3.75 4.98122 4.98122 3.75 6.5 3.75C8.01878 3.75 9.25 4.98122 9.25 6.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Filter & Settings\",\n },\n IconToggle: {\n title: \"toggle, settings, control\",\n svg: '<rect x=\"1.25\" y=\"4.75\" width=\"21.5\" height=\"14.5\" rx=\"7.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><circle cx=\"8.5\" cy=\"12\" r=\"3\" fill=\"currentColor\"/>',\n category: \"Filter & Settings\",\n },\n IconFolder1: {\n title: \"folder-1\",\n svg: '<path d=\"M2.75 3.75V19.25H21.25V6.75H12L10 3.75H2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolder2: {\n title: \"folder-2\",\n svg: '<path d=\"M2.75 12.75V10.75C2.75 10.1977 3.19772 9.75 3.75 9.75H20.25C20.8023 9.75 21.25 10.1977 21.25 10.75V12.75M2.75 3.75H9.94444L12 5.75H21.25V19.25H2.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolders: {\n title: \"folders\",\n svg: '<path d=\"M18.2895 16.25H22.25V5.75H14L12 3.75H5.75V7.75M1.75 20.25V7.75H8L10 9.75H18.25V20.25H1.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderAddRight: {\n title: \"folder-add-right\",\n svg: '<path d=\"M11.25 19.25H2.75V3.75H10L12 6.75H21.25V10.25M18 13.75V17M18 17V20.25M18 17H14.75M18 17H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderAddLeft: {\n title: \"folder-add-left\",\n svg: '<path d=\"M4.75 14.25V17.25M4.75 17.25V20.25M4.75 17.25H1.75M4.75 17.25H7.75M10.75 19.25H21.25V6.75H12L10 3.75H2.75V11.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderDelete: {\n title: \"folder-delete\",\n svg: '<path d=\"M10.25 19.25H21.25V6.75H12L10 3.75H2.75V11.75M7.25 14.75L5 17M5 17L2.75 19.25M5 17L2.75 14.75M5 17L7.25 19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderBookmarks: {\n title: \"folder-bookmarks\",\n svg: '<path d=\"M10.25 19.25H21.25V6.75H12L10 3.75H2.75V10.75M7.25 13.75H1.75V20.25L4.5 18.75L7.25 20.25V13.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderRestricted: {\n title: \"folder-restricted\",\n svg: '<path d=\"M12.5 19.25H21.25V6.75H12L10 3.75H2.75V9.5M8.93198 19.432C10.6893 17.6746 10.6893 14.8254 8.93198 13.068C7.17462 11.3107 4.32538 11.3107 2.56802 13.068M8.93198 19.432C7.17462 21.1893 4.32538 21.1893 2.56802 19.432C0.81066 17.6746 0.81066 14.8254 2.56802 13.068M8.93198 19.432L2.56802 13.068\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderCloud: {\n title: \"folder-cloud\",\n svg: '<path d=\"M12.75 19.25H21.25V6.75H12L10 3.75H2.75V11.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M1.75 17.25C1.75 18.9069 3.09315 20.25 4.75 20.25H7.5C8.74264 20.25 9.75 19.2426 9.75 18C9.75 16.7574 8.74264 15.75 7.5 15.75C7.45006 15.75 7.40044 15.7516 7.35122 15.7549C6.83343 14.8558 5.86311 14.25 4.75 14.25C3.09315 14.25 1.75 15.5931 1.75 17.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderLink: {\n title: \"folder-link, link, attachment\",\n svg: '<path d=\"M14.25 19.25H21.25V6.75H12L10 3.75H2.75V10.75M5 20.25C3.20507 20.25 1.75 18.7949 1.75 17C1.75 15.2051 3.20507 13.75 5 13.75M8 20.25C9.79493 20.25 11.25 18.7949 11.25 17C11.25 15.2051 9.79493 13.75 8 13.75M5.75 17H7.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderLink2: {\n title: \"folder-link-2, link, attachment\",\n svg: '<path d=\"M14.25 19.25H21.25V6.75H12L10 3.75H2.75V10.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75 13.75H1.75V20.25H4.75M8.25 13.75H11.25V20.25H8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.25 17H7.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderShared: {\n title: \"folder-shared\",\n svg: '<path d=\"M2.75 3.75V3C2.33579 3 2 3.33579 2 3.75H2.75ZM10 3.75L10.624 3.33397C10.4849 3.12533 10.2508 3 10 3V3.75ZM12 6.75L11.376 7.16603C11.5151 7.37467 11.7492 7.5 12 7.5V6.75ZM21.25 6.75H22C22 6.33579 21.6642 6 21.25 6V6.75ZM21.25 19.25V20C21.6642 20 22 19.6642 22 19.25H21.25ZM13.25 18.5C12.8358 18.5 12.5 18.8358 12.5 19.25C12.5 19.6642 12.8358 20 13.25 20V18.5ZM2 8.25C2 8.66421 2.33579 9 2.75 9C3.16421 9 3.5 8.66421 3.5 8.25H2ZM1.875 20.25L1.14487 20.0785C1.09249 20.3015 1.14489 20.5362 1.28715 20.7158C1.42941 20.8953 1.64592 21 1.875 21V20.25ZM10.125 20.25V21C10.3541 21 10.5706 20.8953 10.7128 20.7158C10.8551 20.5362 10.9075 20.3015 10.8551 20.0785L10.125 20.25ZM7 12.5C7 13.0523 6.55228 13.5 6 13.5V15C7.38071 15 8.5 13.8807 8.5 12.5H7ZM6 13.5C5.44772 13.5 5 13.0523 5 12.5H3.5C3.5 13.8807 4.61929 15 6 15V13.5ZM5 12.5C5 11.9477 5.44772 11.5 6 11.5V10C4.61929 10 3.5 11.1193 3.5 12.5H5ZM6 11.5C6.55228 11.5 7 11.9477 7 12.5H8.5C8.5 11.1193 7.38071 10 6 10V11.5ZM2.75 4.5H10V3H2.75V4.5ZM9.37596 4.16603L11.376 7.16603L12.624 6.33397L10.624 3.33397L9.37596 4.16603ZM12 7.5H21.25V6H12V7.5ZM20.5 6.75V19.25H22V6.75H20.5ZM13.25 20H21.25V18.5H13.25V20ZM3.5 8.25V3.75H2V8.25H3.5ZM2.60513 20.4215C3.01053 18.6957 4.41422 17.5 6 17.5V16C3.61656 16 1.6851 17.7788 1.14487 20.0785L2.60513 20.4215ZM6 17.5C7.58578 17.5 8.98947 18.6957 9.39487 20.4215L10.8551 20.0785C10.3149 17.7788 8.38344 16 6 16V17.5ZM10.125 19.5H1.875V21H10.125V19.5Z\" fill=\"currentColor\"/>',\n category: \"Folders & Files\",\n },\n IconFolderUpload: {\n title: \"folder-upload\",\n svg: '<path d=\"M12 19.25V13M12 13L14.5 15.5M12 13L9.5 15.5M7.375 19.25H2.75V3.75H10L12 6.75H21.25V19.25H16.625\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderDownload: {\n title: \"folder-download\",\n svg: '<path d=\"M7.375 19.25H2.75V3.75H10L12 6.75H21.25V19.25H16.625M12 11.75V18M12 18L14.5 15.5M12 18L9.5 15.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderOpen: {\n title: \"folder-open\",\n svg: '<path d=\"M5.5 19.25L8 10.75H20.25M5.5 19.25H19.5L22 10.75H20.25M5.5 19.25H2.75V3.75H10L12 6.75H20.25V10.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconArchive: {\n title: \"archive, folder, box\",\n svg: '<path d=\"M20.255 20.25V8.75H3.75V20.25H20.255Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 8V2.75H10.5L12.5 4.75H18.25V8\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.75 12.75L11.75 12.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFloppyDisk1: {\n title: \"floppy-disk-1, save\",\n svg: '<path d=\"M7.75 3.75V8.25H16.25V3.75M3.75 3.75V20.25H20.25V6.75L17.25 3.75H3.75ZM7.75 12.75V20.25H16.25V12.75H7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFloppyDisk2: {\n title: \"floppy-disk-2, save\",\n svg: '<path d=\"M8.75 4V8.25H15.25V4M3.75 3.75V20.25H20.25V6.75L17.25 3.75H3.75ZM15.25 14.25C15.25 16.0449 13.7949 17.5 12 17.5C10.2051 17.5 8.75 16.0449 8.75 14.25C8.75 12.4551 10.2051 11 12 11C13.7949 11 15.25 12.4551 15.25 14.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconServer: {\n title: \"server, data, storage\",\n svg: '<path d=\"M21.25 12V4.75H2.75V12M21.25 12H2.75M21.25 12V19.25H2.75V12\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M6.5 9.125C6.91421 9.125 7.25 8.78921 7.25 8.375C7.25 7.96079 6.91421 7.625 6.5 7.625C6.08579 7.625 5.75 7.96079 5.75 8.375C5.75 8.78921 6.08579 9.125 6.5 9.125ZM6.5 16.375C6.91421 16.375 7.25 16.0392 7.25 15.625C7.25 15.2108 6.91421 14.875 6.5 14.875C6.08579 14.875 5.75 15.2108 5.75 15.625C5.75 16.0392 6.08579 16.375 6.5 16.375Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\"/>',\n category: \"Folders & Files\",\n },\n IconSdCard: {\n title: \"sd-card, memory-stick\",\n svg: '<path d=\"M9.25 6.75V9.25M12.75 6.75V9.25M4.75 2.75H17.25V7.75L19.25 11V21.25H4.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconSimCard1: {\n title: \"sim-card-1\",\n svg: '<path d=\"M8.75 11.75H15.25V17.25H8.75V11.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75 2.75H14.25L19.25 7.75V21.25H4.75V2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconSimCard2: {\n title: \"sim-card-2\",\n svg: '<path d=\"M11.25 2.75V7.25M15.25 2.75V7.25M19.25 2.75V21.25H4.75V7.16421C4.75 6.899 4.85536 6.64464 5.04289 6.45711L8.45711 3.04289C8.64464 2.85536 8.899 2.75 9.16421 2.75H19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFiles: {\n title: \"files, documents\",\n svg: '<path d=\"M17.25 18.25V21.25H4.75V5.75H7.75M15.25 2.75H7.75V18.25H20.25V7.75M15.25 2.75L20.25 7.75M15.25 2.75V7.75H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFileBend: {\n title: \"file-bend, document\",\n svg: '<path d=\"M12.75 2.75H4.75V21.25H19.25V9.25M12.75 2.75L19.25 9.25M12.75 2.75V9.25H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFileCloud: {\n title: \"file-cloud, document\",\n svg: '<path d=\"M12.75 2.75H4.75V12.25M12.75 2.75L19.25 9.25M12.75 2.75V9.25H19.25M19.25 9.25V21.25H13.25M5.75 21.25C4.09315 21.25 2.75 19.9069 2.75 18.25C2.75 16.5931 4.09315 15.25 5.75 15.25C6.86311 15.25 7.83343 15.8558 8.35122 16.7549C8.40044 16.7516 8.45006 16.75 8.5 16.75C9.74264 16.75 10.75 17.7574 10.75 19C10.75 20.2426 9.74264 21.25 8.5 21.25H5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFileChart: {\n title: \"file-chart, document\",\n svg: '<path d=\"M12.75 2.75H4.75V21.25H19.25V9.25M12.75 2.75L19.25 9.25M12.75 2.75V9.25H19.25M8.5 17.25V15.75M12 17.25V12.75M15.5 17.25V14.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFileDownload: {\n title: \"file-download, document\",\n svg: '<path d=\"M12.75 2.75H4.75V21.25H8.75M12.75 2.75L19.25 9.25M12.75 2.75V9.25H19.25M19.25 9.25V21.25H15.25M12 13.75V20M12 20L14.5 17.5M12 20L9.5 17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFileText: {\n title: \"file-text, document\",\n svg: '<path d=\"M12.75 2.75H4.75V21.25H19.25V9.25M12.75 2.75L19.25 9.25M12.75 2.75V9.25H19.25M8.75 13.25H12.25M8.75 17.25H15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFileLock: {\n title: \"file-lock, document\",\n svg: '<path d=\"M4.75 2.75V2C4.33579 2 4 2.33579 4 2.75H4.75ZM12.75 2.75L13.2803 2.21967C13.1397 2.07902 12.9489 2 12.75 2V2.75ZM19.25 9.25H20C20 9.05109 19.921 8.86032 19.7803 8.71967L19.25 9.25ZM19.25 21.25V22C19.6642 22 20 21.6642 20 21.25H19.25ZM4 10.75C4 11.1642 4.33579 11.5 4.75 11.5C5.16421 11.5 5.5 11.1642 5.5 10.75H4ZM13.25 20.5C12.8358 20.5 12.5 20.8358 12.5 21.25C12.5 21.6642 12.8358 22 13.25 22V20.5ZM12.75 9.25H12C12 9.66421 12.3358 10 12.75 10V9.25ZM3.75 16.75V16C3.33579 16 3 16.3358 3 16.75H3.75ZM10.25 16.75H11C11 16.3358 10.6642 16 10.25 16V16.75ZM10.25 21.25V22C10.6642 22 11 21.6642 11 21.25H10.25ZM3.75 21.25H3C3 21.6642 3.33579 22 3.75 22V21.25ZM9.25 16.75V17.5H10V16.75H9.25ZM4.75 16.75H4V17.5H4.75V16.75ZM4.75 3.5H12.75V2H4.75V3.5ZM18.5 9.25V21.25H20V9.25H18.5ZM12.2197 3.28033L18.7197 9.78033L19.7803 8.71967L13.2803 2.21967L12.2197 3.28033ZM5.5 10.75V2.75H4V10.75H5.5ZM19.25 20.5H13.25V22H19.25V20.5ZM12 2.75V9.25H13.5V2.75H12ZM12.75 10H19.25V8.5H12.75V10ZM3.75 17.5H10.25V16H3.75V17.5ZM9.5 16.75V21.25H11V16.75H9.5ZM10.25 20.5H3.75V22H10.25V20.5ZM4.5 21.25V16.75H3V21.25H4.5ZM8.5 16V16.75H10V16H8.5ZM9.25 16H4.75V17.5H9.25V16ZM5.5 16.75V16H4V16.75H5.5ZM7 14.5C7.82843 14.5 8.5 15.1716 8.5 16H10C10 14.3431 8.65685 13 7 13V14.5ZM7 13C5.34315 13 4 14.3431 4 16H5.5C5.5 15.1716 6.17157 14.5 7 14.5V13Z\" fill=\"currentColor\"/>',\n category: \"Folders & Files\",\n },\n IconFileLink: {\n title: \"file-link, hyperlink\",\n svg: '<path d=\"M12.75 2.75H4.75V8.75M12.75 2.75L19.25 9.25M12.75 2.75V9.25H19.25M19.25 9.25V21.25H11.75M2.75 18C2.75 19.7949 4.20507 21.25 6 21.25C7.79493 21.25 9.25 19.7949 9.25 18M9.25 15C9.25 13.2051 7.79493 11.75 6 11.75C4.20507 11.75 2.75 13.2051 2.75 15M6 15.75V17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFileEdit: {\n title: \"file-edit, document, cloud, sync\",\n svg: '<path d=\"M5.24414 21.25L3.74414 19.75L3.74414 13.2566C3.74414 12.4282 4.41571 11.7566 5.24414 11.7566C6.07257 11.7566 6.74414 12.4282 6.74414 13.2566L6.74414 19.75L5.24414 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M4.75 8.75V2.75H12.75L19.25 9.25V21.25H9.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 3.5V9.25H18.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageEmpty: {\n title: \"page-empty\",\n svg: '<path d=\"M4.75 2.75H19.25V21.25H4.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageText: {\n title: \"page-text\",\n svg: '<path d=\"M8.75 6.75H15.25M8.75 10.75H15.25M8.75 14.75H11.25M4.75 2.75H19.25V21.25H4.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageSearchLines: {\n title: \"page-search-lines\",\n svg: '<path d=\"M3.75396 2.74512V1.99512H3.00396L3.00396 2.74512L3.75396 2.74512ZM19.2491 2.74512H19.9991V1.99512H19.2491V2.74512ZM3.75391 21.2461L3.00391 21.2461L3.0039 21.9961H3.75391V21.2461ZM18.4991 12.5V13.25H19.9991V12.5H18.4991ZM11.9991 21.9961C12.4133 21.9961 12.7491 21.6603 12.7491 21.2461C12.7491 20.8319 12.4133 20.4961 11.9991 20.4961V21.9961ZM7.74905 14C7.33484 14 6.99905 14.3358 6.99905 14.75C6.99905 15.1642 7.33484 15.5 7.74905 15.5V14ZM9.24905 15.5C9.66327 15.5 9.99905 15.1642 9.99905 14.75C9.99905 14.3358 9.66327 14 9.24905 14V15.5ZM7.74905 6C7.33484 6 6.99905 6.33579 6.99905 6.75C6.99905 7.16421 7.33484 7.5 7.74905 7.5V6ZM15.2491 7.5C15.6633 7.5 15.9991 7.16421 15.9991 6.75C15.9991 6.33579 15.6633 6 15.2491 6V7.5ZM7.74905 10C7.33484 10 6.99905 10.3358 6.99905 10.75C6.99905 11.1642 7.33484 11.5 7.74905 11.5V10ZM11.2491 11.5C11.6633 11.5 11.9991 11.1642 11.9991 10.75C11.9991 10.3358 11.6633 10 11.2491 10V11.5ZM20.7187 22.773L21.2491 23.3033L22.3097 22.2426L21.7794 21.7123L20.7187 22.773ZM3.75396 3.49512H19.2491V1.99512H3.75396V3.49512ZM4.50391 21.2461L4.50396 2.74512L3.00396 2.74512L3.00391 21.2461L4.50391 21.2461ZM18.4991 2.74512V12.5H19.9991V2.74512H18.4991ZM11.9991 20.4961H3.75391V21.9961H11.9991V20.4961ZM7.74905 15.5H9.24905V14H7.74905V15.5ZM7.74905 7.5H15.2491V6H7.74905V7.5ZM7.74905 11.5H11.2491V10H7.74905V11.5ZM18.84 19.8336C17.9614 20.7123 16.5367 20.7123 15.6581 19.8336L14.5974 20.8943C16.0619 22.3588 18.4362 22.3588 19.9007 20.8943L18.84 19.8336ZM15.6581 19.8336C14.7794 18.955 14.7794 17.5303 15.6581 16.6517L14.5974 15.591C13.1329 17.0555 13.1329 19.4298 14.5974 20.8943L15.6581 19.8336ZM15.6581 16.6517C16.5367 15.773 17.9614 15.773 18.84 16.6517L19.9007 15.591C18.4362 14.1265 16.0619 14.1265 14.5974 15.591L15.6581 16.6517ZM18.84 16.6517C19.7187 17.5303 19.7187 18.955 18.84 19.8336L19.9007 20.8943C21.3652 19.4298 21.3652 17.0555 19.9007 15.591L18.84 16.6517ZM18.84 20.8943L20.7187 22.773L21.7794 21.7123L19.9007 19.8336L18.84 20.8943Z\" fill=\"currentColor\"/>',\n category: \"Folders & Files\",\n },\n IconPageAttachment: {\n title: \"page-attachment\",\n svg: '<path d=\"M11.75 2.75H19.25V21.25H4.75V14.75M5.75 8.75V4.25C5.75 3.42157 6.42157 2.75 7.25 2.75C8.07843 2.75 8.75 3.42157 8.75 4.25V8.75C8.75 10.4069 7.40685 11.75 5.75 11.75C4.09315 11.75 2.75 10.4069 2.75 8.75V4.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageSearch: {\n title: \"page-search\",\n svg: '<path d=\"M10.25 21.25H4.75V2.75H19.25V10.75M20.5 21.5L19.173 20.1301M19.173 20.1301C19.8391 19.4533 20.25 18.5246 20.25 17.5C20.25 15.4289 18.5711 13.75 16.5 13.75C14.4289 13.75 12.75 15.4289 12.75 17.5C12.75 19.5711 14.4289 21.25 16.5 21.25C17.5464 21.25 18.4928 20.8214 19.173 20.1301Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageTextSearch: {\n title: \"page-text-search\",\n svg: '<path d=\"M10.25 21.25H4.75V2.75H19.25V10.75M20.5 21.5L19.173 20.1301M19.173 20.1301C19.8391 19.4533 20.25 18.5246 20.25 17.5C20.25 15.4289 18.5711 13.75 16.5 13.75C14.4289 13.75 12.75 15.4289 12.75 17.5C12.75 19.5711 14.4289 21.25 16.5 21.25C17.5464 21.25 18.4928 20.8214 19.173 20.1301ZM8.75 6.75H15.25M8.75 10.75H12.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPagePieChart: {\n title: \"page-pie-chart\",\n svg: '<path d=\"M10.25 21.25H4.75V2.75H19.25V9.75M17 12.75C14.6528 12.75 12.75 14.6528 12.75 17C12.75 19.3472 14.6528 21.25 17 21.25C18.1736 21.25 19.2361 20.7743 20.0052 20.0052M17 12.75C19.3472 12.75 21.25 14.6528 21.25 17C21.25 18.1736 20.7743 19.2361 20.0052 20.0052M17 12.75V17L20.0052 20.0052\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageTextPieChart: {\n title: \"page-text-pie-chart\",\n svg: '<path d=\"M10.25 21.25H4.75V2.75H19.25V9.75M17 12.75C14.6528 12.75 12.75 14.6528 12.75 17C12.75 19.3472 14.6528 21.25 17 21.25C18.1736 21.25 19.2361 20.7743 20.0052 20.0052M17 12.75C19.3472 12.75 21.25 14.6528 21.25 17C21.25 18.1736 20.7743 19.2361 20.0052 20.0052M17 12.75V17L20.0052 20.0052M8.75 6.75H15.25M8.75 10.75H11.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageLock: {\n title: \"page-lock\",\n svg: '<path d=\"M10.75 21.25H4.75V2.75H19.25V10.75M13.75 16.75H20.25V21.25H13.75V16.75ZM19.25 16.75V16C19.25 14.7574 18.2426 13.75 17 13.75C15.7574 13.75 14.75 14.7574 14.75 16V16.75H19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageTextLock: {\n title: \"page-text-lock\",\n svg: '<path d=\"M10.75 21.25H4.75V2.75H19.25V10.75M8.75 6.75H15.25M8.75 10.75H12.25M13.75 16.75H20.25V21.25H13.75V16.75ZM19.25 16.75V16C19.25 14.7574 18.2426 13.75 17 13.75C15.7574 13.75 14.75 14.7574 14.75 16V16.75H19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageCloud: {\n title: \"page-cloud\",\n svg: '<path d=\"M10.75 21.25H4.75V2.75H19.25V12.25M16.25 21.25C14.5931 21.25 13.25 19.9069 13.25 18.25C13.25 16.5931 14.5931 15.25 16.25 15.25C17.3631 15.25 18.3334 15.8558 18.8512 16.7549C18.9004 16.7516 18.9501 16.75 19 16.75C20.2426 16.75 21.25 17.7574 21.25 19C21.25 20.2426 20.2426 21.25 19 21.25H16.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageTextCloud: {\n title: \"page-text-cloud\",\n svg: '<path d=\"M10.75 21.25H4.75V2.75H19.25V12.25M8.75 6.75H15.25M8.75 10.75H11.25M16.25 21.25C14.5931 21.25 13.25 19.9069 13.25 18.25C13.25 16.5931 14.5931 15.25 16.25 15.25C17.3631 15.25 18.3334 15.8558 18.8512 16.7549C18.9004 16.7516 18.9501 16.75 19 16.75C20.2426 16.75 21.25 17.7574 21.25 19C21.25 20.2426 20.2426 21.25 19 21.25H16.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageLink: {\n title: \"page-link\",\n svg: '<path d=\"M14.75 15C14.75 13.2051 16.2051 11.75 18 11.75C19.7949 11.75 21.25 13.2051 21.25 15M14.75 18C14.75 19.7949 16.2051 21.25 18 21.25C19.7949 21.25 21.25 19.7949 21.25 18M18 15.75V17.25M12.25 21.25H4.75V2.75H19.25V8.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageTextLink: {\n title: \"page-text-link\",\n svg: '<path d=\"M14 15C14 15.4142 14.3358 15.75 14.75 15.75C15.1642 15.75 15.5 15.4142 15.5 15H14ZM20.5 15C20.5 15.4142 20.8358 15.75 21.25 15.75C21.6642 15.75 22 15.4142 22 15H20.5ZM15.5 18C15.5 17.5858 15.1642 17.25 14.75 17.25C14.3358 17.25 14 17.5858 14 18H15.5ZM22 18C22 17.5858 21.6642 17.25 21.25 17.25C20.8358 17.25 20.5 17.5858 20.5 18H22ZM18.75 15.75C18.75 15.3358 18.4142 15 18 15C17.5858 15 17.25 15.3358 17.25 15.75H18.75ZM17.25 17.25C17.25 17.6642 17.5858 18 18 18C18.4142 18 18.75 17.6642 18.75 17.25H17.25ZM4.75 21.25H4C4 21.6642 4.33579 22 4.75 22V21.25ZM4.75 2.75V2C4.33579 2 4 2.33579 4 2.75H4.75ZM19.25 2.75H20C20 2.33579 19.6642 2 19.25 2V2.75ZM12.25 22C12.6642 22 13 21.6642 13 21.25C13 20.8358 12.6642 20.5 12.25 20.5V22ZM18.5 8.75C18.5 9.16421 18.8358 9.5 19.25 9.5C19.6642 9.5 20 9.16421 20 8.75H18.5ZM8.75 6C8.33579 6 8 6.33579 8 6.75C8 7.16421 8.33579 7.5 8.75 7.5V6ZM15.25 7.5C15.6642 7.5 16 7.16421 16 6.75C16 6.33579 15.6642 6 15.25 6V7.5ZM8.75 10C8.33579 10 8 10.3358 8 10.75C8 11.1642 8.33579 11.5 8.75 11.5V10ZM11.25 11.5C11.6642 11.5 12 11.1642 12 10.75C12 10.3358 11.6642 10 11.25 10V11.5ZM15.5 15C15.5 13.6193 16.6193 12.5 18 12.5V11C15.7909 11 14 12.7909 14 15H15.5ZM18 12.5C19.3807 12.5 20.5 13.6193 20.5 15H22C22 12.7909 20.2091 11 18 11V12.5ZM14 18C14 20.2091 15.7909 22 18 22V20.5C16.6193 20.5 15.5 19.3807 15.5 18H14ZM18 22C20.2091 22 22 20.2091 22 18H20.5C20.5 19.3807 19.3807 20.5 18 20.5V22ZM17.25 15.75V17.25H18.75V15.75H17.25ZM5.5 21.25V2.75H4V21.25H5.5ZM4.75 3.5H19.25V2H4.75V3.5ZM12.25 20.5H4.75V22H12.25V20.5ZM18.5 2.75V8.75H20V2.75H18.5ZM8.75 7.5H15.25V6H8.75V7.5ZM8.75 11.5H11.25V10H8.75V11.5Z\" fill=\"currentColor\"/>',\n category: \"Folders & Files\",\n },\n IconPageEdit: {\n title: \"page-edit, document\",\n svg: '<path d=\"M10.75 21.25H4.75V2.75H19.25V11.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.75 21.2502V18.9168L17.5 15.1668C18.1443 14.5225 19.189 14.5225 19.8333 15.1668C20.4777 15.8112 20.4777 16.8558 19.8333 17.5002L16.0833 21.2502H13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageEditText: {\n title: \"page-edit-text, document, file\",\n svg: '<path d=\"M10.75 21.25H4.75V2.75H19.25V11.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.75 21.2502V18.9168L17.5 15.1668C18.1443 14.5225 19.189 14.5225 19.8333 15.1668C20.4777 15.8112 20.4777 16.8558 19.8333 17.5002L16.0833 21.2502H13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M8.75 6.75H15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M8.75 10.75H11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageCheck: {\n title: \"page-check, signed, document\",\n svg: '<path d=\"M9.75 21.25H4.75V2.75H19.25V10.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.25 19.0832L15.3929 21.25L20.75 14.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageAdd: {\n title: \"page-add\",\n svg: '<path d=\"M12.25 21.25H4.75V2.75H19.25V12.25M18.25 15.25V18.25M18.25 18.25V21.25M18.25 18.25H15.25M18.25 18.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageTextAdd: {\n title: \"page-text-add\",\n svg: '<path d=\"M12.25 21.25H4.75V2.75H19.25V12.25M18.25 15.25V18.25M18.25 18.25V21.25M18.25 18.25H15.25M18.25 18.25H21.25M8.75 6.75H15.25M8.75 10.75H11.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageCross: {\n title: \"page-cross, close, x, document, list, file\",\n svg: '<path d=\"M13.25 21.25H4.75V2.75H19.25V13.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.8713 16.6287L18.75 18.75M16.6287 20.8713L18.75 18.75M16.6287 16.6287L18.75 18.75M20.8713 20.8713L18.75 18.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconPageCrossText: {\n title: \"page-cross-text, close, x, document, list, file\",\n svg: '<path d=\"M13.25 21.25H4.75V2.75H19.25V13.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.8713 16.6287L18.75 18.75M16.6287 20.8713L18.75 18.75M16.6287 16.6287L18.75 18.75M20.8713 20.8713L18.75 18.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.75 6.75H15.25M8.75 10.75H11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFileJpg: {\n title: \"file-jpg, image, jpeg\",\n svg: '<path d=\"M4.75 11.25V3.75H15L19.25 8V11.25M13.75 4.25V9.25H18.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.5 14.75V18.75C6.5 19.5784 5.82843 20.25 5 20.25H4.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M9.5 20.25V14.75H11.25C12.0784 14.75 12.75 15.4216 12.75 16.25C12.75 17.0784 12.0784 17.75 11.25 17.75H10.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.6751 15.1742C18.2838 14.7917 17.5897 14.6988 17.1752 14.7241C16.0285 14.7942 15 15.9628 15 17.5497C15 19.1366 15.9777 20.2802 17.3299 20.2802C18.0003 20.2721 18.7897 20.0757 19.25 19.5733V17.8263H18.1561\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFilePng: {\n title: \"file-png, document\",\n svg: '<path d=\"M4.75 11.25V3.75H15L19.25 8V11.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 20.25V14.75H5.5C6.32843 14.75 7 15.4216 7 16.25C7 17.0784 6.32843 17.75 5.5 17.75H4.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 20.25V14.75H10L13.25 20.25H13.75V14.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.697 15.2215C19.32 14.8448 18.6513 14.7533 18.2519 14.7782C17.1472 14.8473 16.1562 15.9981 16.1562 17.5608C16.1562 19.1236 17.0982 20.2499 18.401 20.2499C19.0468 20.2418 19.8074 20.0485 20.2509 19.5537V17.8333H19.197\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 4.25V9.25H18.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFilePdf: {\n title: \"file-pdf, document\",\n svg: '<path d=\"M4.75 11.25V3.75H15L19.25 8V11.25M13.75 4.25V9.25H18.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 20.25V14.75H5.75C6.57843 14.75 7.25 15.4216 7.25 16.25C7.25 17.0784 6.57843 17.75 5.75 17.75H4.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 14.75V20.25H11.25C12.3333 20.25 14 19.7 14 17.5C14 15.3 12.3333 14.75 11.25 14.75H9.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.25 14.75H16.75V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.75 17.75H19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconNotebook: {\n title: \"notebook, cover\",\n svg: '<path d=\"M8.75 3.25H4.25V20.75H8.75M8.75 3.25H19.75V20.75H8.75M8.75 3.25V20.75M12.75 7.75H15.75M12.75 11.75H15.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconSketchbook: {\n title: \"sketchbook\",\n svg: '<path d=\"M8.75 7.75H15.25M8.75 11.75H12.25M4.25 3.25V20.75H19.75V3.25H4.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconNotes: {\n title: \"notes\",\n svg: '<path d=\"M3.25 12H5.25M9.75 12H12.25M9.75 8.25H14.25M3.25 8.25H5.25M3.25 15.75H5.25M4.25 3.25H19.75V20.75H4.25V3.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconLibrary: {\n title: \"library\",\n svg: '<path d=\"M3.75 3.75V20.25M8.75 3.75V20.25M12.75 3.75L20.25 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconDossier: {\n title: \"dossier\",\n svg: '<path d=\"M9.25 4.75V8.75H21.25M9.25 4.75H2.75V19.25H21.25V8.75M9.25 4.75H15.25M21.25 8.75V4.75H15.25M15.25 4.75V8.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFolderPaper: {\n title: \"folder-paper\",\n svg: '<path d=\"M16.25 5.75H20.25V10.75M3.75 7.75V3.75H16.25V10.75M3.75 7.75H2.75V20.25H21.25V10.75H20.25M3.75 7.75H8.75L11.75 10.75H16.25M16.25 10.75H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFinder: {\n title: \"finder, files, os\",\n svg: '<path d=\"M13.25 13.25H11.25C11.4391 9.99648 11.9676 6.86851 12.8168 3.75M7.75 15.5C11 17.75 13 17.75 16.25 15.5M7.75 8.75V10.25M16.25 8.75V10.25M12.8168 3.75H3.75V20.25H20.25V3.75H12.8168Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFinderFace: {\n title: \"finder-face\",\n svg: '<path d=\"M5.75 17.5C9.9491 21.1667 14.0509 21.1667 18.25 17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.75 5.75V12.25C12.75 13.3546 11.8546 14.25 10.75 14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.75 4.75V8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 4.75V8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconZip: {\n title: \"zip, rar, compressed, archive\",\n svg: '<path d=\"M6.25 3.75L3.75005 3.75001L3.75 20.25H20.25V3.75H17.75M9.75 3.75H14.25M9.75 7.75H14.25M9.75 11.75H14.25V14C14.25 15.2426 13.2426 16.25 12 16.25C10.7574 16.25 9.75 15.2426 9.75 14V11.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconFileZip: {\n title: \"file-zip\",\n svg: '<path d=\"M13.25 2.75H4.75V21.25H19.25V8.75M13.25 2.75V8.75H19.25M13.25 2.75H13.75L19.25 8.25V8.75M8.75 19V17.5M10.25 17.5V16M8.75 16V14.5M10.25 20.5V19M10.25 14.5V13M8.75 13V11.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconTable: {\n title: \"table, spreedsheet, chart\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM10.5 3.75V3H9V3.75H10.5ZM9 20.25V21H10.5V20.25H9ZM3.75 9H3V10.5H3.75V9ZM20.25 10.5H21V9H20.25V10.5ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM9 3.75V9.75H10.5V3.75H9ZM9 9.75V20.25H10.5V9.75H9ZM3.75 10.5H9.75V9H3.75V10.5ZM9.75 10.5H20.25V9H9.75V10.5Z\" fill=\"currentColor\"/>',\n category: \"Folders & Files\",\n },\n IconNoteText: {\n title: \"note-text\",\n svg: '<path d=\"M15.25 20.25V15.25H20.25M8.75 8.75H15.25M8.75 12.75H11.25M3.75 3.75H20.25V16L16 20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconNote1: {\n title: \"note-1\",\n svg: '<path d=\"M20 15.25H15.25V20M3.75 3.75H20.25V16L16 20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconNote2: {\n title: \"note-2\",\n svg: '<path d=\"M20.25 13.75H13.75V20.25M3.75 3.75H20.25V14.5781L14.5781 20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconBlankPagePortrait: {\n title: \"blank-page-portrait\",\n svg: '<path d=\"M19.25 15.5972V2.75H4.75V21.25H5.69717M19.25 15.5972V15.9643C19.25 16.7267 19.0019 17.4686 18.5429 18.0786C17.0405 20.075 14.6826 21.25 12.1786 21.25H5.69717M19.25 15.5972C19.25 18.1667 15.6406 18.1667 14.0938 17.1389L12.9892 18.2397C11.0552 20.1672 8.43222 21.25 5.69717 21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconBlankPageLandscape: {\n title: \"blank-page-landscape\",\n svg: '<path d=\"M2.75 5.69717C2.75 8.43222 3.83283 11.0552 5.76029 12.9892L6.86111 14.0938C5.83333 15.6406 5.83333 19.25 8.40278 19.25M2.75 4.75H21.25V19.25H8.03571C7.27327 19.25 6.53139 19.0019 5.92143 18.5429C3.92497 17.0405 2.75 14.6826 2.75 12.1786V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconListBullets: {\n title: \"list-bullets\",\n svg: '<path d=\"M8.25 12C8.25 12.2761 8.02614 12.5 7.75 12.5C7.47386 12.5 7.25 12.2761 7.25 12M8.25 12C8.25 11.7239 8.02614 11.5 7.75 11.5C7.47386 11.5 7.25 11.7239 7.25 12M8.25 12H7.25M8.25 7.75C8.25 8.02614 8.02614 8.25 7.75 8.25C7.47386 8.25 7.25 8.02614 7.25 7.75M8.25 7.75C8.25 7.47386 8.02614 7.25 7.75 7.25C7.47386 7.25 7.25 7.47386 7.25 7.75M8.25 7.75H7.25M8.25 16.25C8.25 16.5261 8.02614 16.75 7.75 16.75C7.47386 16.75 7.25 16.5261 7.25 16.25M8.25 16.25C8.25 15.9739 8.02614 15.75 7.75 15.75C7.47386 15.75 7.25 15.9739 7.25 16.25M8.25 16.25H7.25M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconNotepad: {\n title: \"notepad,notes\",\n svg: '<path d=\"M8.75 9.75H15.25M8.75 13.75H13.25M12 4.25V2.25M16.25 4.25V2.25M7.75 4.25V2.25M4.25 3.27778H19.75V20.75H4.25V3.27778Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconScript: {\n title: \"script, paper, page, contract, file, document\",\n svg: '<path d=\"M6.75 15.4812C6.75 15.4812 6.75 8.02553 6.75 5.74689C6.75 5.21697 6.96052 4.70894 7.33617 4.33455C7.71104 3.96015 8.21974 3.75049 8.75035 3.75049C11.9215 3.75049 18.4997 3.75049 18.4997 3.75049\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeMiterlimit=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M14.5 20.25H5.7829C5.24368 20.25 4.72658 20.0359 4.34526 19.6547C3.96395 19.2735 3.75 18.7564 3.75 18.2175C3.75 17.2284 3.75 15.75 3.75 15.75C7.26472 15.75 9.73528 15.75 13.25 15.75L13.25 18.252C13.25 19.355 14.145 20.25 15.248 20.25H15.252C16.355 20.25 17.25 19.355 17.25 18.252V9.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-miterlimit=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.25 3.75C20.3393 3.75 21.25 4.66068 21.25 5.75C21.25 7.1423 21.25 9.25 21.25 9.25H17.25V5.75C17.25 5.21954 17.4608 4.71092 17.8357 4.33585C18.2107 3.96077 18.7196 3.75 19.25 3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-miterlimit=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.75 7.75H13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-miterlimit=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.75 10.75H12.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-miterlimit=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconScript2: {\n title: \"script-2, paper, page, contract, file, document\",\n svg: '<path d=\"M6.75 15.4812C6.75 15.4812 6.75 8.02553 6.75 5.74689C6.75 5.21697 6.96052 4.70894 7.33617 4.33455C7.71104 3.96015 8.21974 3.75049 8.75035 3.75049C11.9215 3.75049 18.4997 3.75049 18.4997 3.75049\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeMiterlimit=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M14.5 20.25H5.7829C5.24368 20.25 4.72658 20.0359 4.34526 19.6547C3.96395 19.2735 3.75 18.7564 3.75 18.2175C3.75 17.2284 3.75 15.75 3.75 15.75C7.26472 15.75 9.73528 15.75 13.25 15.75L13.25 18.252C13.25 19.355 14.145 20.25 15.248 20.25H15.252C16.355 20.25 17.25 19.355 17.25 18.252V9.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-miterlimit=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.25 3.75C20.3393 3.75 21.25 4.66068 21.25 5.75C21.25 7.1423 21.25 9.25 21.25 9.25H17.25V5.75C17.25 5.21954 17.4608 4.71092 17.8357 4.33585C18.2107 3.96077 18.7196 3.75 19.25 3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-miterlimit=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Folders & Files\",\n },\n IconStrawberry: {\n title: \"strawberry, ai, dessert\",\n svg: '<path d=\"M3.75 11.7249C3.75 9.14901 4.62976 7.09775 7.12982 6.03222C8.34327 5.51505 9.93844 6.26365 12 6.26365C14.0616 6.26365 15.6567 5.51505 16.8702 6.03222C19.3702 7.09775 20.25 9.14901 20.25 11.7249C20.25 15.9101 15.6667 21.2501 12 21.2501C8.33333 21.2501 3.75 15.9101 3.75 11.7249Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 6C12 3.6 12 2 12 2\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.25 5.39091C12.7724 2.89936 16.5877 2.3337 17.8588 2.53844C19.5369 2.78858 17.4305 5.54778 17.0836 6\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.16636 6C6.81949 5.54778 4.71312 2.78858 6.39121 2.53844C7.66225 2.3337 11.4776 2.89936 12 5.39091\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><ellipse cx=\"12\" cy=\"11\" rx=\"1\" ry=\"1.5\" fill=\"currentColor\"/><ellipse cx=\"8\" cy=\"11\" rx=\"1\" ry=\"1.5\" fill=\"currentColor\"/><ellipse cx=\"16\" cy=\"11\" rx=\"1\" ry=\"1.5\" fill=\"currentColor\"/><ellipse cx=\"14\" cy=\"15.5\" rx=\"1\" ry=\"1.5\" fill=\"currentColor\"/><ellipse cx=\"10\" cy=\"15.5\" rx=\"1\" ry=\"1.5\" fill=\"currentColor\"/>',\n category: \"Food\",\n },\n IconSushi: {\n title: \"sushi, nigiri, sashime, maki\",\n svg: '<path d=\"M8.925 11.0442C4.76647 12.2911 1.75 16.1807 1.75 12.3631C1.75 8.54547 4.76646 5.87431 8.925 5M15.075 11.0442C19.2335 12.2911 22.25 16.1807 22.25 12.3631C22.25 8.54547 19.2335 5.87431 15.075 5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.25 19.25V4.07976C10.1181 3.86285 11.0419 3.75 12 3.75C12.9581 3.75 13.8819 3.86285 14.75 4.07976V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 14V17.25C3.75 18.3546 4.64543 19.25 5.75 19.25C9.91667 19.25 14.0833 19.25 18.25 19.25C19.3546 19.25 20.25 18.3546 20.25 17.25V14\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconPancakes: {\n title: \"pancakes, maple-syrup, breakfast\",\n svg: '<path d=\"M22.25 19.25H1.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18 8.375H20.25V12H14M5.375 8.375H2.75V12H7.375M13 15.625H20.25V19.25H3.75V15.625H7.375\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 12H21.25V15.625H11M7.375 12H3.75V15.625H7.375\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 8.375H20.25V4.75H3.75V8.375H7.75V15C7.75 15.8284 8.42157 16.5 9.25 16.5C10.0784 16.5 10.75 15.8284 10.75 15V12\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 8.37988H13.75V11.9999C13.75 12.8283 13.0784 13.4999 12.25 13.4999C11.4216 13.4999 10.75 12.8283 10.75 11.9999\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconTapas: {\n title: \"tapas, canabes\",\n svg: '<path d=\"M12.9851 4.48514C14.4878 2.98253 17.1676 3.22615 18.9707 5.02928C20.7738 6.83242 21.0175 9.51225 19.5149 11.0149C18.0122 12.5175 15.3324 12.2738 13.5293 10.4707C11.7262 8.66758 11.4825 5.98775 12.9851 4.48514Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19 5L20.75 3.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.25 20.75L5.5 18.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.01191 20.75L3.25 14.9881L4.57143 13.6786C6.35107 14.5522 8.04843 12.8408 7.21429 11.0595L8.53571 9.75L14.25 15.4643L9.01191 20.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.5 12.5L13.5 10.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.25 18.5C11.25 17.2574 10.2426 16.25 9 16.25C7.75736 16.25 6.75 17.2574 6.75 18.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconSteak: {\n title: \"steak, t-bone, raw\",\n svg: '<path d=\"M21.6764 10.5379C22.4772 15.7558 16.5607 18.1854 12.7982 19.2177C8.52255 20.3909 4.39865 20.006 2.62762 14.1097C2.08232 12.2943 2.12922 10.2745 2.7578 8.50368C3.93673 5.18255 6.85838 3.49912 9.5814 4.57198L14.0526 6.31667C17.4251 7.64542 20.2018 4.87305 21.6764 10.5379Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M9.63975 5.25C11.0498 11.5 10.1866 14.7189 5.25 18.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M10 13.2501C12.125 12.793 15.8438 12.8216 18.5 16.2501\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Food\",\n },\n IconSteakSteamLines: {\n title: \"steak-steam-lines, t-bone\",\n svg: '<path d=\"M21.1802 14.2266C21.9399 18.7712 16.3268 20.8872 12.7573 21.7864C8.70088 22.8082 4.78846 22.473 3.10825 17.3375C2.59092 15.7563 2.63541 13.9971 3.23176 12.4548C4.26786 9.77525 6.72276 8.3197 9.13234 8.86265C9.51976 8.94995 9.87644 9.13422 10.2159 9.34025L12.5173 10.7369C12.8568 10.9429 13.2136 11.1266 13.6013 11.2124C16.642 11.8857 19.8643 9.58582 21.1802 14.2266Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13 2C10.823 3.8741 14.2721 5.05844 12 6.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 3C5.82302 4.45763 9.27207 5.37878 7 6.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 5C15.323 6.45763 18.7721 7.37878 16.5 8.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 9.75C11 15.25 10.0011 17.6427 6.5 20.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.90039 16.9644C12.5005 16.5 15.5004 16.393 18.0004 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconCheeseburger: {\n title: \"cheeseburger, hamburger, sandwich\",\n svg: '<path d=\"M21.25 16.07C21.25 17.1712 21.25 17.7219 21.0391 18.144C20.8455 18.5314 20.5314 18.8455 20.144 19.0391C19.7219 19.25 19.1712 19.25 18.07 19.25H5.93C4.82876 19.25 4.27814 19.25 3.85604 19.0391C3.46862 18.8455 3.1545 18.5314 2.96091 18.144C2.75 17.7219 2.75 17.1712 2.75 16.07V15.75H21.25V16.07Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.2495 12.675C20.7397 12.6749 19.9798 12.5749 19.5 12.375C18.54 11.975 17.46 11.975 16.5 12.375C15.54 12.775 14.46 12.775 13.5 12.375C12.54 11.975 11.46 11.975 10.5 12.375C9.54 12.775 8.46 12.775 7.5 12.375C6.54 11.975 5.46 11.975 4.5 12.375C4.02 12.575 3.26 12.675 2.75 12.675\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 4.75C8.30474 4.75 3 6.0994 3 9.25H21C21 6.0994 15.6953 4.75 12 4.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconBurger: {\n title: \"burger, hamburger, sandwich \",\n svg: '<path d=\"M20.25 20.25V21H21V20.25H20.25ZM3.75 20.25H3V21H3.75V20.25ZM3.75 15.75V15C3.33579 15 3 15.3358 3 15.75H3.75ZM20.25 15.75H21C21 15.3358 20.6642 15 20.25 15V15.75ZM2.75 12.25V11.5C2.33579 11.5 2 11.8358 2 12.25H2.75ZM21.25 12.25H22C22 11.8358 21.6642 11.5 21.25 11.5V12.25ZM21.25 15.75V16.5C21.6642 16.5 22 16.1642 22 15.75H21.25ZM2.75 15.75H2C2 16.1642 2.33579 16.5 2.75 16.5V15.75ZM3.75 12.25H3V13H3.75V12.25ZM20.25 12.25V13H21V12.25H20.25ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V15.75H3V20.25H4.5ZM3.75 16.5H20.25V15H3.75V16.5ZM19.5 15.75V20.25H21V15.75H19.5ZM2.75 13H21.25V11.5H2.75V13ZM20.5 12.25V15.75H22V12.25H20.5ZM21.25 15H2.75V16.5H21.25V15ZM3.5 15.75V12.25H2V15.75H3.5ZM12 4.5C13.6515 4.5 15.5491 4.89432 17.0105 5.90629C18.433 6.89123 19.5 8.49661 19.5 11.0938H21C21 8.00504 19.692 5.93854 17.8645 4.67308C16.0759 3.43463 13.8485 3 12 3V4.5ZM4.5 11.0938C4.5 8.49661 5.56702 6.89123 6.98946 5.90629C8.45092 4.89432 10.3485 4.5 12 4.5V3C10.1515 3 7.92408 3.43463 6.13554 4.67308C4.30798 5.93854 3 8.00504 3 11.0938H4.5ZM3 11.0938V12.25H4.5V11.0938H3ZM21 12.25V11.0938H19.5V12.25H21ZM3.75 13H20.25V11.5H3.75V13Z\" fill=\"currentColor\"/>',\n category: \"Food\",\n },\n IconDrink: {\n title: \"drink, cup, straw\",\n svg: '<path d=\"M17.9274 11.75L17.25 22.25H6.75L6.07258 11.75M17.9274 11.75L18.25 6.75H5.75L6.07258 11.75M17.9274 11.75H6.07258M11.75 6.75V2.75L16.25 1.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconCup: {\n title: \"cup, tea, coffee\",\n svg: '<path d=\"M16.25 6.75H20.25V12.25H16.25M3.75 3.75H16.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconCupHot: {\n title: \"cup-hot, coffee, tea, milk\",\n svg: '<path d=\"M4.75 7.75V7C4.33579 7 4 7.33579 4 7.75H4.75ZM17.25 7.75H18C18 7.33579 17.6642 7 17.25 7V7.75ZM17.25 21.25V22C17.6642 22 18 21.6642 18 21.25H17.25ZM4.75 21.25H4C4 21.6642 4.33579 22 4.75 22V21.25ZM10.25 5.25C10.25 5.66421 10.5858 6 11 6C11.4142 6 11.75 5.66421 11.75 5.25H10.25ZM11.75 2.75C11.75 2.33579 11.4142 2 11 2C10.5858 2 10.25 2.33579 10.25 2.75H11.75ZM6.25 5.25C6.25 5.66421 6.58579 6 7 6C7.41421 6 7.75 5.66421 7.75 5.25H6.25ZM7.75 2.75C7.75 2.33579 7.41421 2 7 2C6.58579 2 6.25 2.33579 6.25 2.75H7.75ZM14.25 5.25C14.25 5.66421 14.5858 6 15 6C15.4142 6 15.75 5.66421 15.75 5.25H14.25ZM15.75 2.75C15.75 2.33579 15.4142 2 15 2C14.5858 2 14.25 2.33579 14.25 2.75H15.75ZM17.25 9.75V9H16.5V9.75H17.25ZM17.25 15.25H16.5V16H17.25V15.25ZM4.75 8.5H17.25V7H4.75V8.5ZM16.5 7.75V21.25H18V7.75H16.5ZM17.25 20.5H4.75V22H17.25V20.5ZM5.5 21.25V7.75H4V21.25H5.5ZM11.75 5.25V2.75H10.25V5.25H11.75ZM7.75 5.25V2.75H6.25V5.25H7.75ZM15.75 5.25V2.75H14.25V5.25H15.75ZM17.25 10.5H18.5V9H17.25V10.5ZM18.5 14.5H17.25V16H18.5V14.5ZM18 15.25V9.75H16.5V15.25H18ZM20.5 12.5C20.5 13.6046 19.6046 14.5 18.5 14.5V16C20.433 16 22 14.433 22 12.5H20.5ZM18.5 10.5C19.6046 10.5 20.5 11.3954 20.5 12.5H22C22 10.567 20.433 9 18.5 9V10.5Z\" fill=\"currentColor\"/>',\n category: \"Food\",\n },\n IconHotDrinkCup: {\n title: \"hot-drink-cup,coffee-mug,dup\",\n svg: '<path d=\"M5.5 5.5L6.49997 2.75H17.5L18.5 5.5M4.75 8.97916L5.91667 21.25H18.0833L19.25 9M3.75 5.75H20.25V8.75H3.75V5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconCookies: {\n title: \"cookies\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 12C2 6.47715 6.47715 2 12 2C12.3898 2 12.7747 2.02234 13.1534 2.06587C13.3617 2.08982 13.5505 2.19986 13.674 2.36932C13.7974 2.53878 13.8443 2.75219 13.8033 2.9578C13.7684 3.13249 13.75 3.31372 13.75 3.5C13.75 4.89326 14.7868 6.04558 16.1307 6.2255C16.4659 6.27038 16.7296 6.5341 16.7745 6.86934C16.9544 8.2132 18.1067 9.25 19.5 9.25C19.91 9.25 20.2972 9.16075 20.6448 9.00133C20.8467 8.90874 21.0792 8.91039 21.2797 9.00583C21.4803 9.10127 21.6282 9.28068 21.6837 9.49574C21.8903 10.2969 22 11.1362 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 11.5421 20.4639 11.0931 20.3944 10.6556C20.1057 10.7175 19.8064 10.75 19.5 10.75C17.5347 10.75 15.8818 9.41656 15.3952 7.60481C13.5845 7.11852 12.2516 5.46736 12.25 3.5036C12.167 3.50121 12.0836 3.5 12 3.5Z\" fill=\"currentColor\"/><path d=\"M10 8.5C10 9.32843 9.32843 10 8.5 10C7.67157 10 7 9.32843 7 8.5C7 7.67157 7.67157 7 8.5 7C9.32843 7 10 7.67157 10 8.5Z\" fill=\"currentColor\"/><path d=\"M14 11.5C14 12.3284 13.3284 13 12.5 13C11.6716 13 11 12.3284 11 11.5C11 10.6716 11.6716 10 12.5 10C13.3284 10 14 10.6716 14 11.5Z\" fill=\"currentColor\"/><path d=\"M18 14C18 14.5523 17.5523 15 17 15C16.4477 15 16 14.5523 16 14C16 13.4477 16.4477 13 17 13C17.5523 13 18 13.4477 18 14Z\" fill=\"currentColor\"/><path d=\"M13 16.5C13 17.3284 12.3284 18 11.5 18C10.6716 18 10 17.3284 10 16.5C10 15.6716 10.6716 15 11.5 15C12.3284 15 13 15.6716 13 16.5Z\" fill=\"currentColor\"/><path d=\"M8 14C8 14.5523 7.55228 15 7 15C6.44772 15 6 14.5523 6 14C6 13.4477 6.44772 13 7 13C7.55228 13 8 13.4477 8 14Z\" fill=\"currentColor\"/>',\n category: \"Food\",\n },\n IconBirthdayCake: {\n title: \"birthday-cake\",\n svg: '<path d=\"M4.75 15.5V21.25H19.25V15.5M12 7.24997C11.4236 7.25038 10.8471 7.03071 10.4074 6.59096C9.52872 5.71228 9.52872 4.28766 10.4074 3.40898L11.9984 1.81799L13.5894 3.40898C14.4681 4.28766 14.4681 5.71228 13.5894 6.59096C13.1504 7.02989 12.5753 7.24956 12 7.24997ZM12 7.24997V9.74997M12 9.74997H4.25V14.75L7 16.25L9.5 14.75L12 16.25L14.5 14.75L17 16.25L19.75 14.75V9.74997H12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconApples: {\n title: \"apples, fruit\",\n svg: '<path d=\"M8.93956 2.25C10.8507 3.25332 11.7436 4.71974 11.9991 6.87682M11.9991 6.87682C-0.237657 1.73585 2.31195 24.87 11.9989 20.7573C21.6885 24.87 24.2385 1.73587 11.9991 6.87682Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconAppleNewton: {\n title: \"apple-newton, low-hanging-fruits, fall\",\n svg: '<path d=\"M15 3.75V9.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.25 8.25L15 11L17.75 8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.38155 2.75C5.73272 4.80602 6.14262 6.47042 7.50169 8.17238M7.50169 8.17238C-4.92015 13.18 13.4365 27.7012 17.4223 17.9643C20.6918 16.6607 21.2607 13.7981 20.3755 11M7.50169 8.17238C8.4196 5.95351 9.65333 4.72981 11 4.23704\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconPopsicle1: {\n title: \"popsicle-1, ice-cream, sweets\",\n svg: '<path d=\"M9.75 6.75V12.75M14.25 6.75V12.75M18.25 17.25H5.75V4.75C5.75 3.09315 7.09315 1.75 8.75 1.75H15.25C16.9069 1.75 18.25 3.09315 18.25 4.75V17.25ZM10.25 17.25H13.75V20.5C13.75 21.4665 12.9665 22.25 12 22.25C11.0335 22.25 10.25 21.4665 10.25 20.5V17.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconPopsicle2: {\n title: \"popsicle-2, ice-cream, sweets\",\n svg: '<path d=\"M18.25 9.5V4.75C18.25 3.09315 16.9069 1.75 15.25 1.75H8.75C7.09315 1.75 5.75 3.09315 5.75 4.75V17.25H18.25V9.5ZM18.25 9.5C18.25 9.5 16.5845 10.9302 15.3544 11.2791C13.0477 11.9334 11.6478 10.0697 9.56031 10.3242C8.05198 10.5081 6.6922 11.6037 5.75 12.7344M10.25 17.25H13.75V20.5C13.75 21.4665 12.9665 22.25 12 22.25C11.0335 22.25 10.25 21.4665 10.25 20.5V17.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconPizza: {\n title: \"pizza\",\n svg: '<path d=\"M17.8626 17.6763L17.25 21.25C13.7712 20.605 10.4447 18.9371 7.75381 16.2462C5.06292 13.5553 3.39498 10.2288 2.75 6.75L6.32372 6.13736M17.8626 17.6763L18.6221 13.2461M17.8626 17.6763C16.2237 17.3663 14.6279 16.7722 13.1543 15.894M6.32372 6.13736C6.84655 8.90176 8.17769 11.5434 10.3171 13.6829C11.1881 14.5539 12.1424 15.2909 13.1543 15.894M6.32372 6.13736L12.1248 5.14289M18.6221 13.2461C18.06 12.4815 17.1541 11.9853 16.1324 11.9853C14.4268 11.9853 13.0441 13.3679 13.0441 15.0735C13.0441 15.3576 13.0825 15.6327 13.1543 15.894M18.6221 13.2461L20.25 3.75L15.6887 4.53194M15.6887 4.53194C15.9665 4.88288 16.1324 5.32648 16.1324 5.80882C16.1324 6.94588 15.2106 7.86765 14.0735 7.86765C12.9365 7.86765 12.0147 6.94588 12.0147 5.80882C12.0147 5.57578 12.0534 5.35177 12.1248 5.14289M15.6887 4.53194L12.1248 5.14289\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconDonut: {\n title: \"donut\",\n svg: '<circle cx=\"12\" cy=\"12\" r=\"3.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M7.29821 6.84261C7.40026 6.85483 7.50414 6.86111 7.60949 6.86111C9.04095 6.86111 10.2014 5.70068 10.2014 4.26921C10.2014 3.80683 10.0803 3.37272 9.86813 2.99687C10.5525 2.83542 11.2663 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 10.7588 2.99448 9.57461 3.43793 8.49309C3.83629 8.76059 4.31574 8.91667 4.83165 8.91667C6.06781 8.91667 7.09469 8.02062 7.29821 6.84261Z\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M6.5 12.5L5.5 13.5\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\"/><path d=\"M13.75 5.75L14.75 6.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M17.5 10.75L18.5 11.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M15.75 16.75L14.75 17.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M9.25 17.75L8.25 16.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Food\",\n },\n IconDonutGlaze: {\n title: \"donut-glaze\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M14.25 12C14.25 13.2426 13.2426 14.25 12 14.25C10.7574 14.25 9.75 13.2426 9.75 12C9.75 10.7574 10.7574 9.75 12 9.75C13.2426 9.75 14.25 10.7574 14.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M11.833 5.70483C12.7698 5.11555 14.0043 5.36763 14.6351 6.27698L15.0747 6.91083C15.3238 7.26987 15.6801 7.54086 16.0926 7.68496L16.8209 7.93936C17.8656 8.30433 18.4383 9.42674 18.1206 10.4868L17.8992 11.2258C17.7737 11.6444 17.784 12.0919 17.9285 12.5042L18.1837 13.2322C18.5498 14.2766 18.0293 15.4242 17.0024 15.8367L16.2866 16.1243C15.8811 16.2872 15.5377 16.5743 15.3054 16.9444L14.8953 17.5978C14.307 18.5352 13.0853 18.8437 12.1225 18.2981L11.4513 17.9178C11.0712 17.7023 10.6326 17.6128 10.1984 17.6619L9.43187 17.7487C8.33221 17.8732 7.32926 17.1104 7.15553 16.0174L7.03443 15.2556C6.96583 14.8241 6.76238 14.4253 6.45325 14.1165L5.9075 13.5713C5.12454 12.7892 5.09559 11.5294 5.84178 10.7122L6.3619 10.1425C6.65653 9.81979 6.84144 9.41212 6.89013 8.97788L6.9761 8.21128C7.09943 7.11149 8.06628 6.30343 9.1705 6.37725L9.94019 6.42872C10.3762 6.45787 10.8102 6.34825 11.18 6.11558L11.833 5.70483Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Food\",\n },\n IconAvocado: {\n title: \"avocado\",\n svg: '<path d=\"M12.771 14.3125C12.771 16.0154 11.3905 17.3959 9.68763 17.3959C7.98472 17.3959 6.60424 16.0154 6.60424 14.3125C6.60424 12.6096 7.98472 11.2291 9.68763 11.2291C11.3905 11.2291 12.771 12.6096 12.771 14.3125Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.83047 19.2024L4.83606 19.208C7.72308 22.1002 12.5855 21.8365 15.3874 18.9444C17.2883 16.9823 19.2219 13.8906 20.3247 10.9333C20.8761 9.4546 21.22 8.00917 21.2481 6.75507C21.2763 5.49962 20.9879 4.43712 20.2767 3.7246C19.5657 3.01247 18.5058 2.72365 17.253 2.7516C16.0012 2.77952 14.5579 3.12369 13.0808 3.67649C10.1265 4.78208 7.03691 6.72225 5.07395 8.63627C2.14543 11.4918 1.8988 16.3544 4.8248 19.1968L4.83047 19.2024Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Food\",\n },\n IconBreakfast: {\n title: \"breakfast, fried-egg\",\n svg: '<path d=\"M21.25 12.2009C21.25 17.4206 21.0652 21.9035 14.7009 20.2176C12.6858 19.6838 10.3296 21.3513 8.65565 21.2451C0.532132 20.7297 0.427422 2.7499 10.6055 2.75C16.3466 2.75005 14.7305 5.54196 16.3466 7.47546C17.7442 9.14751 21.25 7.47546 21.25 12.2009Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><circle cx=\"11\" cy=\"13\" r=\"3.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Food\",\n },\n IconOrange: {\n title: \"orange\",\n svg: '<path d=\"M12 4.75006C7.44365 4.75006 3.75 8.44371 3.75 13.0001C3.75 17.5564 7.44365 21.2501 12 21.2501C16.5563 21.2501 20.25 17.5564 20.25 13.0001C20.25 8.44371 16.5563 4.75006 12 4.75006ZM12 4.75006C11.693 3.36822 10.1602 1.94303 8 1.75006M16.9753 13.5001C16.7408 15.8623 14.8622 17.7408 12.5 17.9754M14.5148 1.82239C13.4157 2.45696 12.6876 3.48737 12.4066 4.62958C13.5363 4.95734 14.7927 4.84199 15.8918 4.20742C16.9909 3.57285 17.719 2.54244 18 1.40023C16.7103 1.18756 15.6139 1.18782 14.5148 1.82239Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconCherry: {\n title: \"cherry\",\n svg: '<path d=\"M16 12C15.2422 8.01824 13.0338 5.15326 10 2.75003C10.8746 6.02156 10.6531 9.33793 9 12.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.25 16.2334C21.25 19.1497 18.8995 21.2499 16 21.2499C13.1005 21.2499 10.75 19.1497 10.75 16.2334C10.75 12.0643 13.375 11.2169 16 12.273C18.625 11.2169 21.25 12.0643 21.25 16.2334Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 7H16.1C17.8397 7 19.25 5.5897 19.25 3.85V1.75H17.15C15.4103 1.75 14 3.1603 14 4.9V6.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.5005 19.5332C10.3223 21.0105 8.3111 21.6357 6.3054 21.0983C-0.129119 19.3742 3.12764 8.86472 8.50537 12.8879C9.49132 12.7703 10.4138 12.8895 11.1344 13.278\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Food\",\n },\n IconToast: {\n title: \"toast, breakfest\",\n svg: '<path d=\"M19.25 12.2608C20.5021 11.3651 21.25 10.2321 21.25 9C21.25 6.10051 17.1086 3.75 12 3.75C6.89137 3.75 2.75 6.10051 2.75 9C2.75 10.2321 3.49786 11.3651 4.75 12.2608V20.25H19.25V12.2608Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconPopcorn: {\n title: \"popcorn, movies, series\",\n svg: '<path d=\"M18.25 21.25L19.75 7.75H4.25L5.75 21.25H18.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M9.27344 8.16309L9.97794 20.8442M14.7276 8.16309L14.023 20.8442\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.75 7.75V7.49575C4.75 6.76361 5.26607 6.12543 6.00171 5.94786C6.5165 5.8236 6.93816 5.46823 7.13523 4.99254L7.34398 4.48868C7.97506 2.96537 9.50133 4.05938 10.5313 3.31353L10.7571 3.15C11.4937 2.61667 12.5063 2.61667 13.2429 3.15L13.4687 3.31353C14.4987 4.05938 16.0249 2.96537 16.656 4.48868L16.8648 4.99254C17.0618 5.46823 17.4835 5.8236 17.9983 5.94786C18.7339 6.12543 19.25 6.76361 19.25 7.49575V7.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Food\",\n },\n IconBottle: {\n title: \"bottle\",\n svg: '<path d=\"M10 1.75V7.25L6.75 10.25V22.25H17.25V10.25L14 7.25V1.75M10 1.75H14M10 1.75H9.375M14 1.75H14.625\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconCocktail: {\n title: \"cocktail, drink\",\n svg: '<path d=\"M12 13.0147V21.25M12 13.0147L2.75 3.75H21.25L12 13.0147ZM12 21.25H7.75M12 21.25H16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconFoodExperiences: {\n title: \"food-experiences,plate\",\n svg: '<path d=\"M9.35 4.5H9.5H9.65M10.25 4.5C10.25 4.91421 9.91421 5.25 9.5 5.25C9.08579 5.25 8.75 4.91421 8.75 4.5C8.75 4.08579 9.08579 3.75 9.5 3.75C9.91421 3.75 10.25 4.08579 10.25 4.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 19.25C18.1875 19.25 20.25 15.8667 20.25 15.8667V15.75H3.75V15.8667C3.75 15.8667 5.8125 19.25 12 19.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 20.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.75 6.75L16.25 3.75L17.75 6.75L20.75 8.25L17.75 9.75L16.25 12.75L14.75 9.75L11.75 8.25L14.75 6.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 7.42705L6.67131 8.76967C6.79226 9.01158 6.98842 9.20773 7.23033 9.32869L8.57295 10L7.23033 10.6713C6.98842 10.7923 6.79227 10.9884 6.67131 11.2303L7.34213 11.5657L6.67131 11.2303L6 12.5729L5.32869 11.2303C5.20773 10.9884 5.01158 10.7923 4.76967 10.6713L4.43426 11.3421L4.76967 10.6713L3.42705 10L4.76967 9.32869C5.01158 9.20773 5.20774 9.01158 5.32869 8.76967L6 7.42705ZM2.97984 10.2236L2.98024 10.2234L2.97984 10.2236Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconFoodBell: {\n title: \"food-bell, serving-bell, glosche, serve\",\n svg: '<path d=\"M2.75 18.25H9.75M21.25 18.25H14.25M9.75 18.25V19.25H14.25V18.25M9.75 18.25H14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 15.75H21.25C21.25 2.5 2.75 2.5 2.75 15.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 4.75V5.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconForkKnife: {\n title: \"fork-knife, cable, restaurant, cutlery\",\n svg: '<path d=\"M4.75 3.75V10.9688L6.25 12.5156V20.25H9.25V12.5156L10.75 10.9688V3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 3.75V10.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 20.25V3.75C18.4541 3.75 14.2083 7 13.75 15.25H16.25V20.25H19.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconForkSpoon: {\n title: \"fork-spoon, cable, restaurant, cutlery\",\n svg: '<path d=\"M3.75 3.75V9C3.75 10.7949 5.20507 12.25 7 12.25C8.79493 12.25 10.25 10.7949 10.25 9V3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7 12.25V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 12.5V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 8.00758C20.5 10.4238 18.933 12.25 17 12.25C15.067 12.25 13.5 10.4238 13.5 8.00758C13.5 5.59133 15.067 3.5 17 3.5C18.933 3.5 20.5 5.59133 20.5 8.00758Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 3.75V9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconFork: {\n title: \"fork, caple, food, restaurant\",\n svg: '<path d=\"M5.75 2.75L4.75 15L8.75 19.1944V21.25M10 2.75V13.0278M14 2.75V13.0278M18.25 2.75L19.25 15L15.25 19.1944V21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconCereals: {\n title: \"cereals, wheat\",\n svg: '<path d=\"M5.76857 18.2314L7.23817 16.7618M5.76857 18.2314L4.24389 15.8466C3.45083 14.6062 3.62748 12.9811 4.66854 11.94L6.13814 10.4704L7.66282 12.8552C8.45588 14.0956 8.27923 15.7207 7.23817 16.7618M5.76857 18.2314L8.15343 19.7561C9.39386 20.5492 11.019 20.3725 12.06 19.3314L13.5296 17.8618L11.1449 16.3371C9.90445 15.5441 8.27923 15.7207 7.23817 16.7618M9.09472 14.9054L10.5643 13.4357M9.09472 14.9054L7.57005 12.5206C6.77699 11.2801 6.95364 9.65501 7.9947 8.61394L9.46429 7.14432L10.989 9.5291C11.782 10.7695 11.6054 12.3947 10.5643 13.4357M9.09472 14.9054L11.4795 16.43C12.7199 17.2231 14.345 17.0465 15.3861 16.0054L16.8557 14.5358L14.4709 13.0111C13.2305 12.218 11.6054 12.3947 10.5643 13.4357M12.4209 11.5793L13.8905 10.1097M12.4209 11.5793L10.8962 9.19452C10.1031 7.95408 10.2798 6.32894 11.3208 5.28787L12.7904 3.81826L14.3151 6.20304C15.1082 7.44348 14.9315 9.06862 13.8905 10.1097M12.4209 11.5793L14.8056 13.104C16.046 13.897 17.6712 13.7204 18.7122 12.6793L20.1818 11.2097L17.7971 9.68501C16.5566 8.89194 14.9315 9.06862 13.8905 10.1097M6.13814 17.8618L3.92073 20.0793M15.3774 8.62262C14.932 5.12592 16.6852 3.37274 20.1818 3.81816C20.6273 7.31486 18.8741 9.06804 15.3774 8.62262Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Food\",\n },\n IconToque: {\n title: \"toque, chefs-cap, cook\",\n svg: '<path d=\"M6.86133 7.88889C6.86133 5.05076 9.16209 2.75 12.0002 2.75C13.9023 2.75 15.5631 3.78343 16.4516 5.31944\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.86111 14.0555C4.59061 14.0555 2.75 12.2149 2.75 9.94436C2.75 7.67386 4.59061 5.83325 6.86111 5.83325\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.1389 14.0557C19.4094 14.0557 21.25 12.2151 21.25 9.94455C21.25 7.67405 19.4094 5.83344 17.1389 5.83344C16.0963 5.83344 15.1443 6.22157 14.4196 6.86122\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.25 14.0557V21.2501H5.75V14.0557\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.83398 17.1389H18.1673\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconCooking: {\n title: \"cooking, stirring\",\n svg: '<path d=\"M20.125 20.3041C16.3333 21.9234 2.24977 21.8742 2.25 17.066C2.25007 15.6385 3.56825 14.7434 5.28803 14.2002M17.2828 13.5181C19.5832 13.6251 21.7415 14.2144 21.75 15.4469C21.7641 17.5158 17.2165 17.9467 15.3561 17.9951\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.4325 9.0242L14.3834 1.75488M8.25979 12.6853C8.77365 10.7706 10.6557 9.07972 12.2995 9.51946C13.9433 9.95919 14.7264 12.3631 14.2125 14.2778C13.6986 16.1924 11.8166 17.8834 10.1728 17.4436C8.52902 17.0039 7.74592 14.6 8.25979 12.6853Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Food\",\n },\n IconIcebowl: {\n title: \"icebowl, cooling, vibe\",\n svg: '<ellipse cx=\"12\" cy=\"8.5\" rx=\"10.25\" ry=\"4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M22.25 8.5V9.52273C22.25 15.1711 17.6609 19.75 12 19.75C6.33908 19.75 1.75 15.1711 1.75 9.52273V8.5\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M14.2269 8.77994C14.4948 8.8469 14.6577 9.11829 14.5908 9.38615L14.4092 10.1132C14.3423 10.3812 14.0708 10.5441 13.8028 10.4771L12.773 10.2197C12.5051 10.1527 12.3423 9.88134 12.4091 9.61347L12.5907 8.88641C12.6576 8.61845 12.9291 8.45549 13.1971 8.52248L14.2269 8.77994ZM7.45103 8.09831C7.60424 8.32812 7.54209 8.63863 7.31223 8.79177L6.68742 9.20803C6.45766 9.3611 6.14731 9.29898 5.99417 9.06927L5.54887 8.40132C5.39566 8.1715 5.45781 7.86099 5.68768 7.70786L6.31249 7.29159C6.54225 7.13852 6.85259 7.20064 7.00573 7.43036L7.45103 8.09831ZM17.5694 7.49403C17.7991 7.64717 17.8612 7.95752 17.7082 8.18728L17.2919 8.81209C17.1388 9.04195 16.8283 9.1041 16.5984 8.95089L15.9305 8.50559C15.7008 8.35245 15.6387 8.04211 15.7917 7.81234L16.208 7.18753C16.3611 6.95767 16.6716 6.89552 16.9015 7.04873L17.5694 7.49403ZM11.6676 7.33471C11.7913 7.58173 11.6912 7.88222 11.4441 8.00576L10.3385 8.55854C10.0916 8.68199 9.79141 8.582 9.66783 8.33516L9.33229 7.66491C9.20863 7.41789 9.30871 7.1174 9.55579 6.99387L10.6614 6.44108C10.9083 6.31763 11.2085 6.41762 11.3321 6.66446L11.6676 7.33471Z\" fill=\"currentColor\"/>',\n category: \"Food\",\n },\n IconChairModern: {\n title: \"chair-modern, seat\",\n svg: '<path d=\"M18.75 14.25L16.1538 2.75H7.84615L5.25 14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 14C14.0625 15.6667 9.9375 15.6667 3.75 14\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 15.25L6 21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16 15.25L18 21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconChair: {\n title: \"chair, seat\",\n svg: '<path d=\"M5.75 2.75H18.25V10.25H5.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.25 13.75H4.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 18L6 18\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.25 10.25V13.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.75 14.25V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.75 10.25V13.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.25 14.25V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconArmchair: {\n title: \"armchair, seat, chill\",\n svg: '<path d=\"M3.75 11.75H7.75V14.3214H16.25V11.75H20.25V18.25H3.75V11.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.25 11.25V3.75H5.75V11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.75 18.25V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.25 18.25V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconSofa: {\n title: \"sofa, couch, chill\",\n svg: '<path d=\"M1.75 10.75H5.75V13.3214H18.25V10.75H22.25V17.25H1.75V10.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 10.25V4.75H3.75V10.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.75 17.25V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.25 17.25V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconDrawer1: {\n title: \"drawer-1\",\n svg: '<rect x=\"4.75\" y=\"2.75\" width=\"14.5\" height=\"16.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19 11L5 11\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 19.25V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.25 19.25V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 7H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 15H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconDrawer2: {\n title: \"drawer-2\",\n svg: '<path d=\"M3.75 3.75H20.25V18.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 11L3.75 11\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 3.75V18.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 18.25V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.25 18.25V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.75 9.75L14.75 12.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconDrawer3: {\n title: \"drawer-3\",\n svg: '<path d=\"M2.75 4.75H21.25V18.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 4.75V18.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.75 18.25V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 18.25V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 9.75L9.25 12.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.75 9.75L14.75 12.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconDrawer4: {\n title: \"drawer-4\",\n svg: '<path d=\"M2.75 4.75H21.25V16.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 5V16\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.75 8.75L14.75 11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 8.75L9.25 11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 16.5L19.25 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.75 16.5L4.75 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconCabinet: {\n title: \"cabinet\",\n svg: '<path d=\"M2.75 4.75V11.25H21.25V4.75H2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 5V11\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5 11.5L3.75 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19 11.5L20.25 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconDresser: {\n title: \"dresser, drawer\",\n svg: '<path d=\"M3.75 3.75H20.25V18.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20 11L4 11\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.75 6.75H13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.75 13.75H13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 18.5V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.25 18.5V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconWardrobe: {\n title: \"wardrobe\",\n svg: '<path d=\"M4.75 2.75H19.25V19.25H4.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.75 19.25V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.25 19.25V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 3V19\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.75 9.75V12.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 9.75V12.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconBed: {\n title: \"bed\",\n svg: '<path d=\"M2.75 10.75H21.25V17.25H2.75V10.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.25 10.5V4.75H4.75V10.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 4.75V10.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.75 17.25V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 17.25V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconDeskOffice: {\n title: \"desk-office\",\n svg: '<path d=\"M2.75 18.25V5.75H11.25M11.25 5.75H21.25V18.25H11.25V5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14.75 9.75V10.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconDeskOffice2: {\n title: \"desk-office-2\",\n svg: '<path d=\"M5.75 3.75H14.25V9.25H5.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10 9.5V11.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.75 16H13\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 20.25V11.75H12.75M12.75 11.75H20.25V20.25H12.75V11.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconFridge: {\n title: \"fridge\",\n svg: '<path d=\"M4.75 2.75H19.25V21.5H4.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.25 6.75V7.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.25 14.25V15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19 11H5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconDishwasher: {\n title: \"dishwasher, clean\",\n svg: '<path d=\"M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.25 7.25H7.26M7.5 7.25C7.5 7.38807 7.38807 7.5 7.25 7.5C7.11193 7.5 7 7.38807 7 7.25C7 7.11193 7.11193 7 7.25 7C7.38807 7 7.5 7.11193 7.5 7.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15 13.8955C15 15.4018 13.6569 16.841 12 16.841C10.3431 16.841 9 15.4018 9 13.8955C9 11.5879 12 8.65918 12 8.65918C12 8.65918 15 11.5879 15 13.8955Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Furniture & Household\",\n },\n IconWashingMachine: {\n title: \"washing-machine, laundry, clean\",\n svg: '<path d=\"M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.25 7.25H7.26M7.5 7.25C7.5 7.38807 7.38807 7.5 7.25 7.5C7.11193 7.5 7 7.38807 7 7.25C7 7.11193 7.11193 7 7.25 7C7.38807 7 7.5 7.11193 7.5 7.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><circle cx=\"12\" cy=\"13\" r=\"4.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M8.25 12.9956C10.88 10.7348 12.8149 15.5186 15.75 12.9956\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Furniture & Household\",\n },\n IconGamepad: {\n title: \"gamepad, gaming, joystick\",\n svg: '<path d=\"M8 9.75V12M8 12V14.25M8 12H10.25M8 12H5.75M2 6H22V18H2V6Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14.25 13.75C14.25 14.1642 14.5858 14.5 15 14.5C15.4142 14.5 15.75 14.1642 15.75 13.75C15.75 13.3358 15.4142 13 15 13C14.5858 13 14.25 13.3358 14.25 13.75ZM17.25 10.25C17.25 10.6642 17.5858 11 18 11C18.4142 11 18.75 10.6642 18.75 10.25C18.75 9.83579 18.4142 9.5 18 9.5C17.5858 9.5 17.25 9.83579 17.25 10.25Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconGamepadControls: {\n title: \"gamepad-controls, joystick\",\n svg: '<path d=\"M15.25 2.75H8.75V6.75L12 10L15.25 6.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M21.25 15.25V8.75H17.25L14 12L17.25 15.25H21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M8.75 21.25H15.25V17.25L12 14L8.75 17.25V21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M2.75 8.75L2.75 15.25H6.75L10 12L6.75 8.75H2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconGamepadControlsRight: {\n title: \"gamepad-controls-right, joystick\",\n svg: '<path d=\"M21.25 15.25L21.25 8.75L17.25 8.75L14 12L17.25 15.25L21.25 15.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M15.25 2.75H8.75V6.75L12 10L15.25 6.75V2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M8.75 21.25H15.25V17.25L12 14L8.75 17.25V21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M2.75 8.75L2.75 15.25H6.75L10 12L6.75 8.75H2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconGamepadControlsLeft: {\n title: \"gamepad-controls-left, joystick\",\n svg: '<path d=\"M15.25 2.75H8.75V6.75L12 10L15.25 6.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M21.25 15.25V8.75H17.25L14 12L17.25 15.25H21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M8.75 21.25H15.25V17.25L12 14L8.75 17.25V21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M2.75 8.75L2.75 15.25L6.75 15.25L10 12L6.75 8.75L2.75 8.75Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconGamepadControlsUp: {\n title: \"gamepad-controls-up, joystick\",\n svg: '<path d=\"M15.25 2.75H8.75V6.75L12 10L15.25 6.75V2.75Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M21.25 15.25V8.75L17.25 8.75L14 12L17.25 15.25H21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M8.75 21.25H15.25V17.25L12 14L8.75 17.25V21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M2.75 8.75L2.75 15.25L6.75 15.25L10 12L6.75 8.75L2.75 8.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconGamepadControlsDown: {\n title: \"gamepad-controls-down, joystick\",\n svg: '<path d=\"M8.75 21.25H15.25V17.25L12 14L8.75 17.25V21.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M15.25 2.75H8.75V6.75L12 10L15.25 6.75V2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M21.25 15.25V8.75H17.25L14 12L17.25 15.25H21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M2.75 8.75L2.75 15.25H6.75L10 12L6.75 8.75H2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconGamepadControlsRound: {\n title: \"gamepad-controls-round, joystick\",\n svg: '<path d=\"M15 5.75C15 7.40685 13.6569 8.75 12 8.75C10.3431 8.75 9 7.40685 9 5.75C9 4.09315 10.3431 2.75 12 2.75C13.6569 2.75 15 4.09315 15 5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M18.25 15C16.5931 15 15.25 13.6569 15.25 12C15.25 10.3431 16.5931 9 18.25 9C19.9069 9 21.25 10.3431 21.25 12C21.25 13.6569 19.9069 15 18.25 15Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M15 18.25C15 19.9069 13.6569 21.25 12 21.25C10.3431 21.25 9 19.9069 9 18.25C9 16.5931 10.3431 15.25 12 15.25C13.6569 15.25 15 16.5931 15 18.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M5.75 15C4.09315 15 2.75 13.6569 2.75 12C2.75 10.3431 4.09315 9 5.75 9C7.40685 9 8.75 10.3431 8.75 12C8.75 13.6569 7.40685 15 5.75 15Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Gaming\",\n },\n IconGamepadControlsRoundRight: {\n title: \"gamepad-controls-round-right\",\n svg: '<path d=\"M18.25 15C16.5931 15 15.25 13.6569 15.25 12C15.25 10.3431 16.5931 9 18.25 9C19.9069 9 21.25 10.3431 21.25 12C21.25 13.6569 19.9069 15 18.25 15Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M15 5.75C15 7.40685 13.6569 8.75 12 8.75C10.3431 8.75 9 7.40685 9 5.75C9 4.09315 10.3431 2.75 12 2.75C13.6569 2.75 15 4.09315 15 5.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M15 18.25C15 19.9069 13.6569 21.25 12 21.25C10.3431 21.25 9 19.9069 9 18.25C9 16.5931 10.3431 15.25 12 15.25C13.6569 15.25 15 16.5931 15 18.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M5.75 15C4.09315 15 2.75 13.6569 2.75 12C2.75 10.3431 4.09315 9 5.75 9C7.40685 9 8.75 10.3431 8.75 12C8.75 13.6569 7.40685 15 5.75 15Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Gaming\",\n },\n IconGamepadControlsRoundLeft: {\n title: \"gamepad-controls-round-left\",\n svg: '<path d=\"M5.75 9C7.40685 9 8.75 10.3431 8.75 12C8.75 13.6569 7.40685 15 5.75 15C4.09315 15 2.75 13.6569 2.75 12C2.75 10.3431 4.09315 9 5.75 9Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M9 18.25C9 16.5931 10.3431 15.25 12 15.25C13.6569 15.25 15 16.5931 15 18.25C15 19.9069 13.6569 21.25 12 21.25C10.3431 21.25 9 19.9069 9 18.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M9 5.75C9 4.09315 10.3431 2.75 12 2.75C13.6569 2.75 15 4.09315 15 5.75C15 7.40685 13.6569 8.75 12 8.75C10.3431 8.75 9 7.40685 9 5.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M18.25 9C19.9069 9 21.25 10.3431 21.25 12C21.25 13.6569 19.9069 15 18.25 15C16.5931 15 15.25 13.6569 15.25 12C15.25 10.3431 16.5931 9 18.25 9Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Gaming\",\n },\n IconGamepadControlsRoundUp: {\n title: \"gamepad-controls-round-up\",\n svg: '<path d=\"M15 5.75C15 7.40685 13.6569 8.75 12 8.75C10.3431 8.75 9 7.40685 9 5.75C9 4.09315 10.3431 2.75 12 2.75C13.6569 2.75 15 4.09315 15 5.75Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M5.75 9C7.40685 9 8.75 10.3431 8.75 12C8.75 13.6569 7.40685 15 5.75 15C4.09315 15 2.75 13.6569 2.75 12C2.75 10.3431 4.09315 9 5.75 9Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M18.25 9C19.9069 9 21.25 10.3431 21.25 12C21.25 13.6569 19.9069 15 18.25 15C16.5931 15 15.25 13.6569 15.25 12C15.25 10.3431 16.5931 9 18.25 9Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M15 18.25C15 19.9069 13.6569 21.25 12 21.25C10.3431 21.25 9 19.9069 9 18.25C9 16.5931 10.3431 15.25 12 15.25C13.6569 15.25 15 16.5931 15 18.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Gaming\",\n },\n IconGamepadControlsRoundDown: {\n title: \"gamepad-controls-round-down\",\n svg: '<path d=\"M9 18.25C9 16.5931 10.3431 15.25 12 15.25C13.6569 15.25 15 16.5931 15 18.25C15 19.9069 13.6569 21.25 12 21.25C10.3431 21.25 9 19.9069 9 18.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M18.25 15C16.5931 15 15.25 13.6569 15.25 12C15.25 10.3431 16.5931 9 18.25 9C19.9069 9 21.25 10.3431 21.25 12C21.25 13.6569 19.9069 15 18.25 15Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M5.75 15C4.09315 15 2.75 13.6569 2.75 12C2.75 10.3431 4.09315 9 5.75 9C7.40685 9 8.75 10.3431 8.75 12C8.75 13.6569 7.40685 15 5.75 15Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M9 5.75C9 4.09315 10.3431 2.75 12 2.75C13.6569 2.75 15 4.09315 15 5.75C15 7.40685 13.6569 8.75 12 8.75C10.3431 8.75 9 7.40685 9 5.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Gaming\",\n },\n IconDice1: {\n title: \"dice-1, roll\",\n svg: '<path d=\"M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M12.75 12C12.75 12.4142 12.4142 12.75 12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconDice2: {\n title: \"dice-2, roll\",\n svg: '<path d=\"M8.75 8C8.75 8.41421 8.41421 8.75 8 8.75C7.58579 8.75 7.25 8.41421 7.25 8C7.25 7.58579 7.58579 7.25 8 7.25C8.41421 7.25 8.75 7.58579 8.75 8Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M16.75 16C16.75 16.4142 16.4142 16.75 16 16.75C15.5858 16.75 15.25 16.4142 15.25 16C15.25 15.5858 15.5858 15.25 16 15.25C16.4142 15.25 16.75 15.5858 16.75 16Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconDice3: {\n title: \"dice-3, roll\",\n svg: '<path d=\"M8.75 8C8.75 8.41421 8.41421 8.75 8 8.75C7.58579 8.75 7.25 8.41421 7.25 8C7.25 7.58579 7.58579 7.25 8 7.25C8.41421 7.25 8.75 7.58579 8.75 8Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M16.75 16C16.75 16.4142 16.4142 16.75 16 16.75C15.5858 16.75 15.25 16.4142 15.25 16C15.25 15.5858 15.5858 15.25 16 15.25C16.4142 15.25 16.75 15.5858 16.75 16Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M12.75 12C12.75 12.4142 12.4142 12.75 12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconDice4: {\n title: \"dice-4, roll\",\n svg: '<path d=\"M8.75 8C8.75 8.41421 8.41421 8.75 8 8.75C7.58579 8.75 7.25 8.41421 7.25 8C7.25 7.58579 7.58579 7.25 8 7.25C8.41421 7.25 8.75 7.58579 8.75 8Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M16.75 16C16.75 16.4142 16.4142 16.75 16 16.75C15.5858 16.75 15.25 16.4142 15.25 16C15.25 15.5858 15.5858 15.25 16 15.25C16.4142 15.25 16.75 15.5858 16.75 16Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M8.75 16C8.75 16.4142 8.41421 16.75 8 16.75C7.58579 16.75 7.25 16.4142 7.25 16C7.25 15.5858 7.58579 15.25 8 15.25C8.41421 15.25 8.75 15.5858 8.75 16Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M16.75 8C16.75 8.41421 16.4142 8.75 16 8.75C15.5858 8.75 15.25 8.41421 15.25 8C15.25 7.58579 15.5858 7.25 16 7.25C16.4142 7.25 16.75 7.58579 16.75 8Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconDice5: {\n title: \"dice-5, roll\",\n svg: '<path d=\"M8.75 8C8.75 8.41421 8.41421 8.75 8 8.75C7.58579 8.75 7.25 8.41421 7.25 8C7.25 7.58579 7.58579 7.25 8 7.25C8.41421 7.25 8.75 7.58579 8.75 8Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M16.75 16C16.75 16.4142 16.4142 16.75 16 16.75C15.5858 16.75 15.25 16.4142 15.25 16C15.25 15.5858 15.5858 15.25 16 15.25C16.4142 15.25 16.75 15.5858 16.75 16Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M8.75 16C8.75 16.4142 8.41421 16.75 8 16.75C7.58579 16.75 7.25 16.4142 7.25 16C7.25 15.5858 7.58579 15.25 8 15.25C8.41421 15.25 8.75 15.5858 8.75 16Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M16.75 8C16.75 8.41421 16.4142 8.75 16 8.75C15.5858 8.75 15.25 8.41421 15.25 8C15.25 7.58579 15.5858 7.25 16 7.25C16.4142 7.25 16.75 7.58579 16.75 8Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M12.75 12C12.75 12.4142 12.4142 12.75 12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconDice6: {\n title: \"dice-6, roll\",\n svg: '<path d=\"M8.75 8C8.75 8.41421 8.41421 8.75 8 8.75C7.58579 8.75 7.25 8.41421 7.25 8C7.25 7.58579 7.58579 7.25 8 7.25C8.41421 7.25 8.75 7.58579 8.75 8Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M16.75 16C16.75 16.4142 16.4142 16.75 16 16.75C15.5858 16.75 15.25 16.4142 15.25 16C15.25 15.5858 15.5858 15.25 16 15.25C16.4142 15.25 16.75 15.5858 16.75 16Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M8.75 16C8.75 16.4142 8.41421 16.75 8 16.75C7.58579 16.75 7.25 16.4142 7.25 16C7.25 15.5858 7.58579 15.25 8 15.25C8.41421 15.25 8.75 15.5858 8.75 16Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M16.75 8C16.75 8.41421 16.4142 8.75 16 8.75C15.5858 8.75 15.25 8.41421 15.25 8C15.25 7.58579 15.5858 7.25 16 7.25C16.4142 7.25 16.75 7.58579 16.75 8Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M8.75 12C8.75 12.4142 8.41421 12.75 8 12.75C7.58579 12.75 7.25 12.4142 7.25 12C7.25 11.5858 7.58579 11.25 8 11.25C8.41421 11.25 8.75 11.5858 8.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M16.75 12C16.75 12.4142 16.4142 12.75 16 12.75C15.5858 12.75 15.25 12.4142 15.25 12C15.25 11.5858 15.5858 11.25 16 11.25C16.4142 11.25 16.75 11.5858 16.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconDices: {\n title: \"dices, random, roll\",\n svg: '<path d=\"M1.26953 12.0701L9.87945 8.05519L13.8943 16.6651L5.2844 20.68L1.26953 12.0701Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.1602 2.76001L22.2079 5.32516L19.6427 12.3729L12.595 9.8077L15.1602 2.76001Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M6.41045 13.3519C6.64386 13.8524 6.4273 14.4474 5.92676 14.6808C5.42622 14.9142 4.83124 14.6977 4.59784 14.1971C4.36443 13.6966 4.58099 13.1016 5.08153 12.8682C5.58207 12.6348 6.17705 12.8514 6.41045 13.3519Z\" fill=\"currentColor\"/><path d=\"M10.3987 14.8031C10.6321 15.3036 10.4156 15.8986 9.91504 16.132C9.4145 16.3654 8.81952 16.1488 8.58612 15.6483C8.35271 15.1478 8.56927 14.5528 9.06981 14.3194C9.57035 14.086 10.1653 14.3025 10.3987 14.8031Z\" fill=\"currentColor\"/><path d=\"M18.4391 7.84205C18.2503 8.36103 17.6764 8.62861 17.1574 8.43972C16.6385 8.25083 16.3709 7.67699 16.5598 7.15801C16.7487 6.63903 17.3225 6.37144 17.8415 6.56034C18.3605 6.74923 18.628 7.32307 18.4391 7.84205Z\" fill=\"currentColor\"/>',\n category: \"Gaming\",\n },\n IconRoulette1: {\n title: \"roulette-1,coincidence,gambling\",\n svg: '<path d=\"M12 3.26389V4.25M12 20.7361V19.75M3.2639 12H4.25M20.7361 12H19.75M7.63194 4.43431L8.14582 5.32439M16.368 19.5657L15.8542 18.6756M4.43431 16.3681L5.32439 15.8542M19.5657 7.63194L18.6756 8.14583M4.43431 7.63196L5.32439 8.14585M19.5657 16.3681L18.6756 15.8542M7.63195 19.5657L8.14584 18.6756M16.3681 4.43432L15.8542 5.3244M9.43056 8.91667C9.43056 9.20048 9.20048 9.43056 8.91667 9.43056C8.63285 9.43056 8.40278 9.20048 8.40278 8.91667M9.43056 8.91667C9.43056 8.63285 9.20048 8.40278 8.91667 8.40278C8.63285 8.40278 8.40278 8.63285 8.40278 8.91667M9.43056 8.91667H8.40278M9.43056 15.0833C9.43056 15.3671 9.20048 15.5972 8.91667 15.5972C8.63285 15.5972 8.40278 15.3671 8.40278 15.0833M9.43056 15.0833C9.43056 14.7995 9.20048 14.5694 8.91667 14.5694C8.63285 14.5694 8.40278 14.7995 8.40278 15.0833M9.43056 15.0833H8.40278M15.5972 8.91667C15.5972 9.20048 15.3671 9.43056 15.0833 9.43056C14.7995 9.43056 14.5694 9.20048 14.5694 8.91667M15.5972 8.91667C15.5972 8.63285 15.3671 8.40278 15.0833 8.40278C14.7995 8.40278 14.5694 8.63285 14.5694 8.91667M15.5972 8.91667H14.5694M15.5972 15.0833C15.5972 15.3671 15.3671 15.5972 15.0833 15.5972C14.7995 15.5972 14.5694 15.3671 14.5694 15.0833M15.5972 15.0833C15.5972 14.7995 15.3671 14.5694 15.0833 14.5694C14.7995 14.5694 14.5694 14.7995 14.5694 15.0833M15.5972 15.0833H14.5694M10.5465 10.5465L10 10M13.4535 10.5465L14 10M13.4535 13.4535L14 14M10.5465 13.4535L10 14M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12ZM13.5417 12C13.5417 12.8514 12.8514 13.5417 12 13.5417C11.1486 13.5417 10.4583 12.8514 10.4583 12C10.4583 11.1486 11.1486 10.4583 12 10.4583C12.8514 10.4583 13.5417 11.1486 13.5417 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconRoulette2: {\n title: \"roulette-2,coincidence,gambling\",\n svg: '<path d=\"M3.5 12H6.25M20.5 12H17.75M12 20.5V17.75M5.98959 18.0104L7.93413 16.0659M18.0104 5.98959L16.0659 7.93414M18.0104 18.0104L16.0659 16.0659M5.98959 5.98959L7.93413 7.93414M8.80655 3.3022L12 6.25L15.1934 3.3022M8.80655 3.3022L8.75 3.25V1.75H15.25V3.25L15.1934 3.3022M8.80655 3.3022C5.27151 4.6036 2.75 8.00354 2.75 11.9929C2.75 17.1054 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1054 21.25 11.9929C21.25 8.00354 18.7285 4.6036 15.1934 3.3022M14.25 12C14.25 13.2426 13.2426 14.25 12 14.25C10.7574 14.25 9.75 13.2426 9.75 12C9.75 10.7574 10.7574 9.75 12 9.75C13.2426 9.75 14.25 10.7574 14.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconSlots: {\n title: \"slots,slot-mashine, gambling\",\n svg: '<path d=\"M1.75 7.75V3.80556H7C7 3.80556 7.25 1.75 9.5 1.75C11.75 1.75 12 3.80556 12 3.80556H17.25V7.75M1.75 7.75V16.25M1.75 7.75H7M17.25 7.75V16.25M17.25 7.75H12M17.25 16.25V20.25H1.75V16.25M17.25 16.25H12M1.75 16.25H7M7 16.25V7.75M7 16.25H12M7 7.75H12M12 7.75V16.25M17.25 14.75H21.25V10M4.5 11.5V12.5M9.5 11.5V12.5M14.5 11.5V12.5M22.76 8.5C22.76 9.32843 22.0884 10 21.26 10C20.4316 10 19.76 9.32843 19.76 8.5C19.76 7.67157 20.4316 7 21.26 7C22.0884 7 22.76 7.67157 22.76 8.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconScratchCard: {\n title: \"scratch-card\",\n svg: '<path d=\"M21.25 4.75H2.75V19.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M17.5 14L9.55556 15.75L15.6667 12.25L6.5 13.4167L16.4 8.75L6.5 10.5L10.9 8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconSword: {\n title: \"sword, action, gaming\",\n svg: '<path d=\"M8.25 11.0543L13.9891 3.75H20.25V10.0109L12.9457 15.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M6.40217 9.25L4.31522 11.8587L6.40217 14.9891L2.75 18.6413L5.3587 21.25L9.01087 17.5978L12.1413 19.6848L14.75 17.5978L6.40217 9.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Gaming\",\n },\n IconThumbsUp: {\n title: \"thumbs-up, thumb, hand, yes, pro\",\n svg: '<path d=\"M6.75 10.75H2.75V20.25H6.75M6.75 20.25V11L11 2.75H11.6156C12.843 2.75 13.7808 3.84535 13.5917 5.0581L13.0161 8.75H18.2589C20.0956 8.75 21.5011 10.3856 21.2248 12.2013L20.3878 17.7013C20.1648 19.167 18.9046 20.25 17.422 20.25H6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconThumbsDown: {\n title: \"thumbs-down, thumb, hand, no, contra\",\n svg: '<path d=\"M17.2521 13.25H21.25V3.75H17.2521M17.2521 3.75V13L13.0043 21.25H12.389C11.1622 21.25 10.2249 20.1546 10.4139 18.9419L10.9892 15.25H5.74908C3.91335 15.25 2.50859 13.6144 2.78476 11.7987L3.62128 6.29867C3.84421 4.83298 5.1038 3.75 6.5856 3.75H17.2521Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconThumbUpCurved: {\n title: \"thumb-up-curved\",\n svg: '<path d=\"M2.75 9.75H7.75V20.25H2.75V9.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M12.413 2.80853L11.9418 2.75C10.5 7.5 7.75 8.46342 7.75 11.2837V17.945C7.75 18.7474 8.21423 19.489 8.97294 19.7636C11.5477 20.6953 14.2409 20.8946 16.9636 20.6601C18.6263 20.5169 19.9292 19.2409 20.2956 17.6228L21.1727 13.7486C21.6109 11.8131 20.1299 9.97331 18.1336 9.97331H13.5185L14.5039 6.79075C15.0734 4.95159 14.3343 3.0472 12.413 2.80853Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconThumbDownCurved: {\n title: \"thumb-down-curved\",\n svg: '<path d=\"M21.25 14.25H16.25V3.75H21.25V14.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M11.587 21.1915L12.0582 21.25C13.5 16.5 16.25 15.5366 16.25 12.7163V6.05504C16.25 5.25261 15.7858 4.51099 15.0271 4.23642C12.4523 3.30469 9.75909 3.10538 7.03639 3.33986C5.37371 3.48306 4.07077 4.75909 3.70442 6.37718L2.82727 10.2514C2.38907 12.1869 3.87013 14.0267 5.86638 14.0267H10.4815L9.49609 17.2092C8.92665 19.0484 9.6657 20.9528 11.587 21.1915Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconRaisingHand4Finger: {\n title: \"raising-hand-4-finger, hey, hello\",\n svg: '<path d=\"M8.75 9.75V6.75C8.75 5.64543 7.85457 4.75 6.75 4.75C5.64543 4.75 4.75 5.64543 4.75 6.75V13.5C4.75 17.7802 8.21979 21.25 12.5 21.25C16.7802 21.25 20.25 17.7802 20.25 13.5L20.25 8H19.25C18.2065 8 17.2875 8.53275 16.75 9.3411M8.75 7.75V4.75C8.75 3.64543 9.64543 2.75 10.75 2.75C11.8546 2.75 12.75 3.64543 12.75 4.75V5.75M12.75 5.75C12.75 4.64543 13.6454 3.75 14.75 3.75C15.8546 3.75 16.75 4.64543 16.75 5.75V9.3411M12.75 5.75V8.75M13.75 15C13.75 14.0694 14.2383 13.207 15.0362 12.7283L16.25 12V11C16.25 10.3866 16.4341 9.81626 16.75 9.3411\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconHand4Finger: {\n title: \"hand-4-finger, select\",\n svg: '<path d=\"M15.75 7.75V6.75C15.75 5.64543 16.6454 4.75 17.75 4.75C18.8546 4.75 19.75 5.64543 19.75 6.75V10.75M19.75 11.25V14.0792C19.75 18.0395 16.5395 21.25 12.5792 21.25C9.91687 21.25 7.47366 19.775 6.23368 17.419L3.25 11.75L4.00061 10.8117C4.69063 9.94921 5.94921 9.80937 6.81174 10.4994L7.75 11.25V10.25M7.75 10V5.75C7.75 4.64543 8.64543 3.75 9.75 3.75C10.8546 3.75 11.75 4.64543 11.75 5.75V10.25M11.75 7.75V4.75C11.75 3.64543 12.6454 2.75 13.75 2.75C14.8546 2.75 15.75 3.64543 15.75 4.75V11\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconBlip: {\n title: \"blip,flick,snip,snap,easy, thanos\",\n svg: '<path d=\"M7.51566 8.04184L6.74043 3.91588L7.42529 3.36249C8.91682 2.15726 11.2021 2.81328 11.7649 4.60823M15.4645 14.5175C16.3784 13.779 17.741 13.8938 18.5078 14.7739L18.6814 14.9731C19.5441 15.9632 19.41 17.4393 18.3818 18.2701L16.7271 19.6073C13.6426 22.0997 9.04401 21.7122 6.45584 18.7419C3.86767 15.7716 4.26999 11.3432 7.35446 8.85082L13.9736 3.50223C15.0018 2.67143 16.5346 2.80058 17.3974 3.79068C18.2601 4.78079 18.126 6.25692 17.0978 7.08772L13.1677 10.2634L13.7882 9.76201C14.8164 8.93122 16.3493 9.06036 17.212 10.0505C18.0747 11.0406 17.9406 12.5167 16.9124 13.3475L16.2919 13.8489\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconRaisingHand5Finger: {\n title: \"raising-hand-5-finger, hey, hello, high-five\",\n svg: '<path d=\"M7.75 11.25V7.25C7.75 6.42157 7.07843 5.75 6.25 5.75C5.42157 5.75 4.75 6.42157 4.75 7.25V13.75C4.75 17.8921 8.10786 21.25 12.25 21.25C16.3921 21.25 19.75 17.8921 19.75 13.75V8H19.25C18.2065 8 17.2875 8.53275 16.75 9.3411M7.75 8.75V5.25C7.75 4.42157 8.42157 3.75 9.25 3.75C10.0784 3.75 10.75 4.42157 10.75 5.25V10.25M10.75 7.75V4.25C10.75 3.42157 11.4216 2.75 12.25 2.75C13.0784 2.75 13.75 3.42157 13.75 4.25V5.25M13.75 10.25V5.25M13.75 5.25C13.75 4.42157 14.4216 3.75 15.25 3.75C16.0784 3.75 16.75 4.42157 16.75 5.25V9.3411M13.75 16C13.75 14.4901 14.6693 13.1323 16.0712 12.5715L16.25 12.5V11C16.25 10.3866 16.4341 9.81626 16.75 9.3411\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconHand5Finger: {\n title: \"hand-5-finger, select\",\n svg: '<path d=\"M16.25 7.75V7.25C16.25 6.42157 16.9216 5.75 17.75 5.75C18.5784 5.75 19.25 6.42157 19.25 7.25V14.2354C19.25 18.1094 16.1094 21.25 12.2354 21.25C9.32487 21.25 6.71671 19.4527 5.68043 16.7329L3.25 10.3542C3.73657 9.15947 5.3114 8.89654 6.15969 9.86836L7.25 11.1175V5.25C7.25 4.42157 7.92157 3.75 8.75 3.75C9.57843 3.75 10.25 4.42157 10.25 5.25V11M10.25 9.75V4.25C10.25 3.42157 10.9216 2.75 11.75 2.75C12.5784 2.75 13.25 3.42157 13.25 4.25V11.5M13.25 7.75V5.25C13.25 4.42157 13.9216 3.75 14.75 3.75C15.5784 3.75 16.25 4.42157 16.25 5.25V12\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconPointer: {\n title: \"pointer, hand\",\n svg: '<path d=\"M11.25 9.25004H15.75C17.9591 9.25004 19.75 11.0409 19.75 13.25V13.8292C19.75 17.7895 16.5395 21 12.5792 21C9.91687 21 7.47366 19.525 6.23368 17.169L3.25 11.5L4.00061 10.5617C4.69063 9.69921 5.94921 9.55937 6.81174 10.2494L7.75 11V4.5C7.75 3.5335 8.5335 2.75 9.5 2.75C10.4665 2.75 11.25 3.5335 11.25 4.5V9.25004Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconPinch: {\n title: \"pinch\",\n svg: '<path d=\"M2.2625 7.61719C1.57917 9.39555 1.57917 10.9951 2.2625 12.7734M16.0947 5.85437L11.6336 8.53244L9.57308 4.82159C9.00409 3.79686 7.74391 3.44577 6.75838 4.03739C5.77286 4.62902 5.4352 5.93933 6.00419 6.96405L9.09494 12.5303L7.87114 12.3365C6.74613 12.1584 5.69523 12.9622 5.52389 14.132L5.3375 15.4045L10.9198 19.0656C13.2398 20.5871 16.1795 20.6469 18.5549 19.2209C22.0884 17.0997 23.2991 12.4017 21.259 8.72766L20.3167 7.03066C19.4632 5.49357 17.573 4.96693 16.0947 5.85437Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconShaka1: {\n title: \"shaka-1, call me, hang-ten\",\n svg: '<path d=\"M16.1395 12.9716L19.7307 9.38832C20.307 8.81319 21.2415 8.81319 21.8179 9.38832C22.3835 9.95267 22.3966 10.8619 21.841 11.4361C20.5761 12.7431 18.3512 15.0105 16.6545 16.5686C15.8099 17.3441 14.7796 18.2346 13.7829 19.0759C11.6703 20.8591 8.52656 20.5709 6.71433 18.4845L4.42308 15.8465C3.67252 14.9824 3.23227 13.8931 3.17204 12.7512L2.75 4.75H3.31687C4.53795 4.75 5.64451 5.46754 6.14044 6.58094L7.38482 9.37467L8.92976 7.83311M8.92976 7.83311L9.95987 6.80531C10.5287 6.23773 11.451 6.23773 12.0198 6.80531C12.5886 7.3729 12.5886 8.29313 12.0198 8.86072L10.9898 9.88842C10.421 10.456 9.49874 10.456 8.92991 9.88842C8.36108 9.32084 8.36093 8.4007 8.92976 7.83311ZM13.5647 11.43L14.5947 10.4023C15.1635 9.83469 15.1635 8.91445 14.5947 8.34687C14.0259 7.77928 13.1036 7.77928 12.5348 8.34687L11.5048 9.37457C10.936 9.94216 10.936 10.8624 11.5048 11.43C12.0736 11.9976 12.9959 11.9976 13.5647 11.43ZM13.5647 11.43L15.1097 9.88842C15.6785 9.32084 16.6008 9.32084 17.1696 9.88842C17.7384 10.456 17.7384 11.3762 17.1696 11.9438L15.6246 13.4854C15.0558 14.053 14.1336 14.053 13.5647 13.4854C12.9959 12.9178 12.9959 11.9976 13.5647 11.43Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconShaka2: {\n title: \"shaka-2, call me, hang-ten\",\n svg: '<path d=\"M6.86187 11.6906L5.61124 4.93333C5.4843 4.24748 4.88797 3.75 4.19278 3.75C3.35701 3.75 2.69611 4.46036 2.75347 5.29702L3.38358 14.4872C3.60605 17.732 6.29407 20.25 9.53538 20.25H11.4866C13.751 20.25 15.8832 19.1802 17.2419 17.3625L21.25 12L20.9818 11.7309C19.9426 10.6881 18.3143 10.5263 17.0915 11.3444L16.1114 12M9.94584 11.4844V8.39062C9.94584 7.53631 9.25565 6.84375 8.40426 6.84375C7.55287 6.84375 6.86267 7.53631 6.86267 8.39062V11.4844C6.86267 12.3387 7.55287 13.0312 8.40426 13.0312C9.25565 13.0312 9.94584 12.3387 9.94584 11.4844ZM9.94584 11.4844V8.90625C9.94584 8.05193 10.636 7.35938 11.4874 7.35938C12.3388 7.35938 13.029 8.05193 13.029 8.90625V11.4844M9.94584 11.4844C9.94584 12.3387 10.636 13.0312 11.4874 13.0312C12.3388 13.0312 13.029 12.3387 13.029 11.4844M13.029 11.4844V9.42188C13.029 8.56756 13.7192 7.875 14.5706 7.875C15.422 7.875 16.1122 8.56756 16.1122 9.42188V11.4844C16.1122 12.3387 15.422 13.0312 14.5706 13.0312C13.7192 13.0312 13.029 12.3387 13.029 11.4844Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconTouch: {\n title: \"touch, tab, click\",\n svg: '<path d=\"M13.0278 12H12.2778C12.2778 12.4142 12.6136 12.75 13.0278 12.75V12ZM9.91667 13.5417L9.58366 14.2137C9.81614 14.3289 10.0916 14.3157 10.3121 14.1789C10.5326 14.0422 10.6667 13.8011 10.6667 13.5417H9.91667ZM9.85872 13.513L9.52571 14.185L9.85872 13.513ZM7.00544 14.5881L6.30995 14.3074L6.30995 14.3074L7.00544 14.5881ZM6.80556 15.0833L6.11007 14.8026C6.01691 15.0334 6.04433 15.2954 6.18325 15.5019L6.80556 15.0833ZM9.72226 19.4193L10.3446 19.0007L9.72226 19.4193ZM16.8689 8.01407C16.9381 8.42247 17.3252 8.6975 17.7336 8.62837C18.142 8.55923 18.417 8.17211 18.3479 7.76371L16.8689 8.01407ZM4.59655 10.0696C4.66569 10.478 5.05281 10.7531 5.46121 10.6839C5.86961 10.6148 6.14465 10.2277 6.07551 9.81927L4.59655 10.0696ZM13.7778 12V8.91667H12.2778V12H13.7778ZM9.16667 8.91667V13.5417H10.6667V8.91667H9.16667ZM10.2497 12.8697L10.1917 12.8409L9.52571 14.185L9.58366 14.2137L10.2497 12.8697ZM6.30995 14.3074L6.11007 14.8026L7.50105 15.364L7.70093 14.8688L6.30995 14.3074ZM6.18325 15.5019L9.09995 19.8379L10.3446 19.0007L7.42786 14.6647L6.18325 15.5019ZM13.1737 22H14.0648V20.5H13.1737V22ZM20 16.1111V15.0833H18.5V16.1111H20ZM16.1389 11.25H13.0278V12.75H16.1389V11.25ZM20 15.0833C20 12.9599 18.265 11.25 16.1389 11.25V12.75C17.4493 12.75 18.5 13.801 18.5 15.0833H20ZM10.1917 12.8409C8.71928 12.1113 6.92584 12.7814 6.30995 14.3074L7.70093 14.8688C7.98634 14.1616 8.82754 13.839 9.52571 14.185L10.1917 12.8409ZM14.0648 22C17.3364 22 20 19.3698 20 16.1111H18.5C18.5 18.5287 16.5207 20.5 14.0648 20.5V22ZM11.4722 6.625C10.2053 6.625 9.16667 7.64469 9.16667 8.91667H10.6667C10.6667 8.48577 11.021 8.125 11.4722 8.125V6.625ZM9.09995 19.8379C10.0097 21.1903 11.539 22 13.1737 22V20.5C12.0346 20.5 10.9735 19.9357 10.3446 19.0007L9.09995 19.8379ZM13.7778 8.91667C13.7778 7.64469 12.7392 6.625 11.4722 6.625V8.125C11.9235 8.125 12.2778 8.48577 12.2778 8.91667H13.7778ZM6 8.91667C6 5.93145 8.44364 3.5 11.4722 3.5V2C7.62793 2 4.5 5.09037 4.5 8.91667H6ZM11.4722 3.5C14.1882 3.5 16.4361 5.4571 16.8689 8.01407L18.3479 7.76371C17.7933 4.4876 14.9225 2 11.4722 2V3.5ZM6.07551 9.81927C6.0259 9.5262 6 9.22472 6 8.91667H4.5C4.5 9.30897 4.533 9.6942 4.59655 10.0696L6.07551 9.81927Z\" fill=\"currentColor\"/>',\n category: \"Hands\",\n },\n IconTouchGrass: {\n title: \"touch-grass, nature, logout\",\n svg: '<path d=\"M3.75 20.25H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.5 20C11.5 17 10.5 16 9 14.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 20C8 18 7.5 17.5 5 16\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 19.5C13 17.75 14 16.875 15 16\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16 19.5C16.5 18.5857 17.5 17.5 19 16.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.0147 7.75059L13.5126 7.75037C12.2018 7.75017 11.0426 8.601 10.6499 9.85158L10.25 11.1252L13.6049 11.838C14.8506 12.1027 16.1502 11.8821 17.2388 11.2213L19.25 10.0003\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.2517 3.75H14.2646C13.2182 3.75 12.19 4.02366 11.282 4.54383L4.84777 8.22997C4.50828 8.42446 4.36895 8.84286 4.52406 9.20205C5.01722 10.3441 6.327 10.8894 7.48491 10.4349L10.5017 9.25056\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconFistbump: {\n title: \"fistbump, boom, hands, friends\",\n svg: '<path d=\"M1.75 19.25H7.38937C9.0107 19.25 10.3657 18.0161 10.517 16.4019L10.6788 14.676C10.8511 12.8379 9.40511 11.25 7.559 11.25C7.20977 11.25 6.88364 11.0755 6.68992 10.7849L6.43226 10.3984C6.16221 9.99331 5.70757 9.75 5.22073 9.75C4.6329 9.75 4.10273 10.1034 3.87664 10.6461L3.48077 11.5962C3.18964 12.2949 2.50694 12.75 1.75 12.75M22.1928 19.25H16.5534C14.9321 19.25 13.5771 18.0161 13.4258 16.4019L13.264 14.676C13.0916 12.8379 14.5377 11.25 16.3838 11.25C16.733 11.25 17.0591 11.0755 17.2528 10.7849L17.5105 10.3984C17.7806 9.99331 18.2352 9.75 18.722 9.75C19.3099 9.75 19.84 10.1034 20.0661 10.6461L20.462 11.5962C20.7531 12.2949 21.4358 12.75 22.1928 12.75M12.0007 3.75V6.25M6.69141 5.68008L8.29838 7.59519M17.2981 5.68018L15.6911 7.59529\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconMagicHands: {\n title: \"magic-hands, rainbow-hands\",\n svg: '<path d=\"M8.98163 10.7927C9.4609 9.59556 10.6317 8.75 12 8.75C13.3683 8.75 14.5391 9.59556 15.0183 10.7927M6.65982 9.86394C7.50777 7.746 9.57917 6.25 12 6.25C14.4208 6.25 16.4922 7.746 17.3401 9.86394M19.662 8.93521C18.4453 5.89643 15.4733 3.75 12 3.75C8.52664 3.75 5.55463 5.89643 4.33801 8.93521M7.47866 13.7109L7.74434 14.4408L9.27134 13.885L9.71108 15.0932C10.2778 16.6501 9.475 18.3717 7.91806 18.9383L7.44822 19.1094C5.89128 19.676 4.16976 18.8733 3.60308 17.3163L2.89766 15.3782C2.43724 14.1132 3.08948 12.7145 4.35449 12.254C5.6195 11.7936 7.01824 12.4459 7.47866 13.7109ZM16.5241 13.7109L16.2585 14.4408L14.7315 13.885L14.2917 15.0932C13.725 16.6501 14.5278 18.3717 16.0847 18.9383L16.5546 19.1094C18.1115 19.676 19.833 18.8733 20.3997 17.3163L21.1051 15.3782C21.5656 14.1132 20.9133 12.7145 19.6483 12.254C18.3833 11.7936 16.9846 12.4459 16.5241 13.7109Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconMoneyHand: {\n title: \"money-hand, coins, pay\",\n svg: '<circle cx=\"14\" cy=\"6.75\" r=\"2.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.5317 4.42438C12.113 3.44013 11.1371 2.75 10 2.75C8.48122 2.75 7.25 3.98122 7.25 5.5C7.25 7.01878 8.48122 8.25 10 8.25C10.5399 8.25 11.0435 8.09441 11.4683 7.82562\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 20.2499H4.78125C4.78125 20.2499 8.49035 21.5047 10.9688 21.2468C13.6138 20.9716 17.902 18.4298 19.5626 17.3902C19.9965 17.1185 20.25 16.6424 20.25 16.1306C20.25 15.099 19.249 14.3638 18.2647 14.6724L11 16.9499\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 14.4375L7.01474 13.2689C7.96969 12.9271 8.98752 12.7968 9.99777 12.8872L14.1456 13.2584C14.4589 13.2865 14.6688 13.5933 14.5814 13.8954L14.5673 13.944C14.1977 15.2216 13.2173 16.232 11.9514 16.6398L11 16.9463\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconHumanMashine: {\n title: \"human-mashine, high-five, ai, hands\",\n svg: '<path d=\"M10.75 15.75C10.75 17.683 9.183 19.25 7.25 19.25C5.317 19.25 3.75 17.683 3.75 15.75C3.75 13.817 5.317 12.25 7.25 12.25C9.183 12.25 10.75 13.817 10.75 15.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 21.25L7 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M1.75 15.25L4.00014 14.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7.22266\" cy=\"15.75\" r=\"1\" fill=\"currentColor\"/><path d=\"M17.5 15.5L16.5 9.75H15.25C14.1454 9.75 13.25 10.6454 13.25 11.75V16.3466C13.25 17.8121 14.4379 19 15.9034 19C16.2962 19 16.6842 19.0872 17.0392 19.2554L21.25 21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.25 10V4.75C14.25 3.64543 15.1454 2.75 16.25 2.75H17.5L20.4443 14.7777L22.25 15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75146 13V2.75H6.50163L4.99219 13\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Hands\",\n },\n IconBookmark: {\n title: \"bookmark, banner, flag, tag\",\n svg: '<path d=\"M19.25 21.25V2.75H4.75V21.25L12 17.25L19.25 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBookmarkRemove: {\n title: \"bookmark-remove, off\",\n svg: '<path d=\"M19.25 8.84756V2.75H4.75V14.1524M19.25 12.75V21.25L12 17.25L4.75 21.25V18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M1.75 15.25L22.25 7.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBookmarkPlus: {\n title: \"bookmark-plus, banner, flag, tag\",\n svg: '<path d=\"M19.25 21V2.75H4.75V21L12 17L19.25 21Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 6.75V13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.25 10L8.75 10\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBookmarkDelete: {\n title: \"bookmark-delete, remove, banner, flag, tag, x\",\n svg: '<path d=\"M19.25 21V2.75H4.75V21L12 17L19.25 21Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14.2981 7.70642L9.7019 12.3026\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.2981 12.3026L9.7019 7.70642\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBookmarkCheck: {\n title: \"bookmark-check, add, check\",\n svg: '<path d=\"M19.25 21V2.75H4.75V21L12 17L19.25 21Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.34998 10.35L11 12L14.85 8.15002\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconMagnifyingGlass: {\n title: \"magnifying-glass, search\",\n svg: '<path d=\"M20.25 20.25L16.1265 16.1265M16.1265 16.1265C17.4385 14.8145 18.25 13.002 18.25 11C18.25 6.99594 15.0041 3.75 11 3.75C6.99594 3.75 3.75 6.99594 3.75 11C3.75 15.0041 6.99594 18.25 11 18.25C13.002 18.25 14.8145 17.4385 16.1265 16.1265Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconMagnifyingGlass2: {\n title: \"magnifying-glass-2, search \",\n svg: '<path d=\"M20 20L16.1265 16.1265M16.1265 16.1265C17.4385 14.8145 18.25 13.002 18.25 11C18.25 6.99594 15.0041 3.75 11 3.75C6.99594 3.75 3.75 6.99594 3.75 11C3.75 15.0041 6.99594 18.25 11 18.25C13.002 18.25 14.8145 17.4385 16.1265 16.1265Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSearchMenu: {\n title: \"search-menu,list-search\",\n svg: '<path d=\"M21.25 12C21.25 15.4518 18.4518 18.25 15 18.25C11.5482 18.25 8.75 15.4518 8.75 12C8.75 8.54822 11.5482 5.75 15 5.75C18.4518 5.75 21.25 8.54822 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 12H5.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.75 6.75H6.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.75 17.25H6.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 16.5L22.25 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconZoomIn: {\n title: \"zoom-in,search-plus\",\n svg: '<path d=\"M16.1265 16.1265L20 20M16.1265 16.1265C17.4385 14.8145 18.25 13.002 18.25 11C18.25 6.99594 15.0041 3.75 11 3.75C6.99594 3.75 3.75 6.99594 3.75 11C3.75 15.0041 6.99594 18.25 11 18.25C13.002 18.25 14.8145 17.4385 16.1265 16.1265Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11 7.75V14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M14.25 11L7.75 11\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconZoomOut: {\n title: \"zoom-out, search-minus\",\n svg: '<path d=\"M16.1265 16.1265L20 20M16.1265 16.1265C17.4385 14.8145 18.25 13.002 18.25 11C18.25 6.99594 15.0041 3.75 11 3.75C6.99594 3.75 3.75 6.99594 3.75 11C3.75 15.0041 6.99594 18.25 11 18.25C13.002 18.25 14.8145 17.4385 16.1265 16.1265Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14.25 11L7.75 11\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconBell: {\n title: \"bell, notification, activity, alert\",\n svg: '<path d=\"M4.58581 9.4153C4.99017 5.62501 8.18819 2.75 12 2.75C15.8118 2.75 19.0098 5.62501 19.4142 9.4153L20.25 17.25H3.75L4.58581 9.4153Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M16 17.25C16 19.4591 14.2091 21.25 12 21.25C9.79086 21.25 8 19.4591 8 17.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Interface General\",\n },\n IconBellOff: {\n title: \"bell-off, notification off, activity, alert\",\n svg: '<path d=\"M5.84249 6C5.1666 6.98803 4.72072 8.15073 4.58581 9.41531L3.75 17.25H16.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.1166 16L19.4142 9.4153C19.0098 5.62501 15.8118 2.75 12 2.75C10.5347 2.75 9.16008 3.17485 8 3.91323\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16 17.25C16 19.4591 14.2091 21.25 12 21.25C9.79086 21.25 8 19.4591 8 17.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M2.75 2.75L21.25 21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconBellCheck: {\n title: \"bell-check, notification alarm, activity, alert\",\n svg: '<path d=\"M4.58581 9.4153C4.99017 5.62501 8.18819 2.75 12 2.75C15.8118 2.75 19.0098 5.62501 19.4142 9.4153L20.25 17.25H3.75L4.58581 9.4153Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9 10.75L11 12.75L15 8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16 17.25C16 19.4591 14.2091 21.25 12 21.25C9.79086 21.25 8 19.4591 8 17.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Interface General\",\n },\n IconBell2: {\n title: \"bell-2, notification, activity, alert\",\n svg: '<path d=\"M20.25 17.25H3.75V16L5.29688 13L5.50351 8.90897C5.6766 5.45882 8.53386 2.75 12 2.75C15.4661 2.75 18.3234 5.45882 18.4965 8.90897L18.7031 13L20.25 16V17.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M16 17.25C16 19.4591 14.2091 21.25 12 21.25C9.79086 21.25 8 19.4591 8 17.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBell2Snooze: {\n title: \"bell-2-snooze, notification, activity, alert\",\n svg: '<path d=\"M20.25 17.25H3.75V16L5.29688 13L5.50351 8.90897C5.6766 5.45882 8.53386 2.75 12 2.75C15.4661 2.75 18.3234 5.45882 18.4965 8.90897L18.7031 13L20.25 16V17.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M16 17.25C16 19.4591 14.2091 21.25 12 21.25C9.79086 21.25 8 19.4591 8 17.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.25 8.25H13.75L10.25 12.75H13.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconHandBell: {\n title: \"hand-bell\",\n svg: '<path d=\"M8.14637 19.4755C7.14623 20.4756 5.52467 20.4756 4.52452 19.4755C3.52438 18.4753 3.52438 16.8538 4.52452 15.8536\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M10.9453 21.25L2.75 13.0547L3.77441 12.0303H5.82324L7.87207 9.98147C9.19479 8.65875 11.158 8.36684 12.7634 9.10573C13.218 9.31498 13.644 9.60689 14.0186 9.98147C14.3931 10.3561 14.6851 10.782 14.8943 11.2366C15.6332 12.8421 15.3413 14.8052 14.0186 16.128L11.9697 18.1768V20.2256L10.9453 21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M15.0859 11.0883L20.322 7.03449C21.4617 6.15217 21.5683 4.46995 20.5492 3.45081C19.53 2.43167 17.8478 2.53829 16.9655 3.67795L12.8962 8.93416\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconArchive1: {\n title: \"archive-1, inbox, file\",\n svg: '<path d=\"M20.25 20.25V7.75H3.75V20.25H20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 3.75H21.25V7.75H2.75V3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 11.75H14\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconUnarchiv: {\n title: \"unarchiv, unbox\",\n svg: '<path d=\"M20.25 6.75H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.25 2.75L3.75 6.75V20.25H20.25V6.75L14.75 2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 11.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBox2: {\n title: \"box-2, inbox, archive, tray, shelf\",\n svg: '<path d=\"M3.75 12.75H8.0702C8.42126 14.6006 10.0472 16 12 16C13.9528 16 15.5787 14.6006 15.9298 12.75L20.25 12.75M3.75 20.25H20.25V3.75L3.75005 3.75001L3.75 20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBox2AltFill: {\n title: \"box-2-alt-fill, inbox, archive, tray, shelf\",\n svg: '<path d=\"M3.75 12.75H8.0702C8.42126 14.6006 10.0472 16 12 16C13.9528 16 15.5787 14.6006 15.9298 12.75L20.25 12.75M3.75 20.25H20.25V3.75L3.75005 3.75001L3.75 20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconInboxEmpty: {\n title: \"inbox-empty\",\n svg: '<path d=\"M2 12.75H8.4125L9.95 14.75H14.05L15.5875 12.75H22M22.25 12.75L18.15 4.75H5.85L1.75 12.75V19.25H22.25V12.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconTodos: {\n title: \"todos,check,things, task\",\n svg: '<path d=\"M15.75 20.25H20.25V3.75H3.75V20.25H8.25M9 13.0929L11.2327 15.0599L15.14 9.43994\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconTasks: {\n title: \"tasks, lists, todos\",\n svg: '<path d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.75 9.5L16.25 9.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.75 14.5L16.25 14.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"8\" cy=\"14.5\" r=\"1\" fill=\"currentColor\"/><circle cx=\"8\" cy=\"9.5\" r=\"1\" fill=\"currentColor\"/>',\n category: \"Interface General\",\n },\n IconWindow: {\n title: \"window, timeline, feed, posts\",\n svg: '<path d=\"M3.75 10.75V3.75H20.25V10.75M3.75 10.75V20.25H20.25V10.75M3.75 10.75H20.25M10.75 7.25H17.25M8.25 7.25C8.25 7.66421 7.91421 8 7.5 8C7.08579 8 6.75 7.66421 6.75 7.25C6.75 6.83579 7.08579 6.5 7.5 6.5C7.91421 6.5 8.25 6.83579 8.25 7.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareBehindSquare1: {\n title: \"square-behind-square-1, copy 1, layers, pages\",\n svg: '<path d=\"M15.25 8.75V2.75H2.75V15.25H8.75M8.75 8.75H21.25V21.25H8.75V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareBehindSquare2: {\n title: \"square-behind-square-2, copy 2, layers, pages\",\n svg: '<path d=\"M8.75 8.75V2.75H21.25V15.25H15.25M15.25 8.75H2.75V21.25H15.25V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareBehindSquare3: {\n title: \"square-behind-square-3, copy 3, layers, pages\",\n svg: '<path d=\"M8.75 15.25V21.25H21.25V8.75H15.25M15.25 15.25H2.75V2.75H15.25V15.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareBehindSquare4: {\n title: \"square-behind-square-4, copy 4, layers, pages\",\n svg: '<path d=\"M15.25 15.25V21.25H2.75V8.75H8.75M8.75 15.25H21.25V2.75H8.75V15.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareDotedBehindSquare: {\n title: \"square-doted-behind-square, copy, layers, pages\",\n svg: '<path d=\"M8.75 8V8.75M8.75 5V2.75H11M19 2.75H21.25V5M14 2.75H16M21.25 8V10M21.25 13V15.25H19M16 15.25H15.25M15.25 8.75H2.75V21.25H15.25V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareBehindSquare6: {\n title: \"square-behind-square-6, layers, copy 6, pages\",\n svg: '<path d=\"M7.75 7.75V3.75H20.25V16.26H16.25M16.25 7.75V20.25H3.75V7.75H16.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareLines: {\n title: \"square-lines, note, card, text\",\n svg: '<path d=\"M8.75 14H13.25M8.75 10H15.25M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconTrashCan: {\n title: \"trash-can, delete, remove, garbage, waste\",\n svg: '<path d=\"M4.75 6.5L5.78571 21.25H18.2143L19.25 6.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.25 5.75H20.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 10.5V16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 10.5V16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5246 5.58289C8.73079 3.84652 10.2081 2.5 12 2.5C13.7919 2.5 15.2692 3.84652 15.4754 5.58289\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconTrashCanSimple: {\n title: \"trash-can-simple, delete, remove, garbage, waste\",\n svg: '<path d=\"M4.75 6.5L5.78571 21.25H18.2143L19.25 6.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.5246 5.58289C8.73079 3.84652 10.2081 2.5 12 2.5C13.7919 2.5 15.2692 3.84652 15.4754 5.58289\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.25 5.75H20.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconTrashPaper: {\n title: \"trash-paper\",\n svg: '<path d=\"M10.9722 4.80556L14.0556 2.75L17.1389 4.80556V6.86111L21.25 8.91667L18.1667 13.0278M10.9722 4.80556L4.29167 5.83333L4.80556 9.94444M10.9722 4.80556L13.0278 7.375M4.80556 9.94444L2.75 10.9722V14.0556L4.29167 15.0833L4.80556 19.1944L7.375 20.7361L10.9722 18.6806M4.80556 9.94444L6.34722 11.4861L7.375 10.9722M10.9722 18.6806L13.0278 21.25L16.1111 20.2222L20.2222 16.625L18.1667 13.0278M10.9722 18.6806L9.94444 17.6528M18.1667 13.0278L15.5972 13.5417\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBucket: {\n title: \"bucket, trash, can\",\n svg: '<path d=\"M4.2467 8.24805L5.75 20.25H18.25L19.7534 8.24805H4.2467Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 3.75H21.25V8.25H2.75V3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconShredder: {\n title: \"shredder, permanently\",\n svg: '<path d=\"M2.75 12.75H21.25M4.75 9.25V2.75H19.25V9.25M5.75 16.25V19.1944M9.91667 16.25V21.25M14.0833 16.25V19.1944M18.25 16.25V21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCompassRound: {\n title: \"compass-round, browser, safari, web, internet, navigation\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.5 8.5L10 10L8.5 15.5L14 14L15.5 8.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCompassSquare: {\n title: \"compass-square, browser, safari, web, internet, navigation\",\n svg: '<path d=\"M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.5 8.5L10 10L8.5 15.5L14 14L15.5 8.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconWindowApp: {\n title: \"window-app, browser, app, desktop\",\n svg: '<path d=\"M3 10.75H21M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 8.375C6.09518 8.375 6.375 8.09518 6.375 7.75C6.375 7.40482 6.09518 7.125 5.75 7.125C5.40482 7.125 5.125 7.40482 5.125 7.75C5.125 8.09518 5.40482 8.375 5.75 8.375ZM8.25 8.375C8.59518 8.375 8.875 8.09518 8.875 7.75C8.875 7.40482 8.59518 7.125 8.25 7.125C7.90482 7.125 7.625 7.40482 7.625 7.75C7.625 8.09518 7.90482 8.375 8.25 8.375ZM10.75 8.375C11.0952 8.375 11.375 8.09518 11.375 7.75C11.375 7.40482 11.0952 7.125 10.75 7.125C10.4048 7.125 10.125 7.40482 10.125 7.75C10.125 8.09518 10.4048 8.375 10.75 8.375Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.25\"/>',\n category: \"Interface General\",\n },\n IconWindow2: {\n title: \"window-2, browser, app, desktop\",\n svg: '<path d=\"M3 10.75H21M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M5.75 8.375C6.09518 8.375 6.375 8.09518 6.375 7.75C6.375 7.40482 6.09518 7.125 5.75 7.125C5.40482 7.125 5.125 7.40482 5.125 7.75C5.125 8.09518 5.40482 8.375 5.75 8.375ZM8.25 8.375C8.59518 8.375 8.875 8.09518 8.875 7.75C8.875 7.40482 8.59518 7.125 8.25 7.125C7.90482 7.125 7.625 7.40482 7.625 7.75C7.625 8.09518 7.90482 8.375 8.25 8.375ZM10.75 8.375C11.0952 8.375 11.375 8.09518 11.375 7.75C11.375 7.40482 11.0952 7.125 10.75 7.125C10.4048 7.125 10.125 7.40482 10.125 7.75C10.125 8.09518 10.4048 8.375 10.75 8.375Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.25\"/>',\n category: \"Interface General\",\n },\n IconSquareCircleTopRight: {\n title: \"square-circle-top-right, notifications, badge\",\n svg: '<path d=\"M11.75 3.75H3.75V20.25H20.25V12.25M20.2981 3.7019C21.5673 4.97111 21.5673 7.02889 20.2981 8.2981C19.0289 9.5673 16.9711 9.5673 15.7019 8.2981C14.4327 7.02889 14.4327 4.97111 15.7019 3.7019C16.9711 2.4327 19.0289 2.4327 20.2981 3.7019Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconStar: {\n title: \"star, favorite, award\",\n svg: '<path d=\"M12 1.75L14.9527 7.92256L21.75 8.81637L16.7775 13.525L18.0258 20.25L12 16.9876L5.97417 20.25L7.2225 13.525L2.25 8.81637L9.04734 7.92256L12 1.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconStarLines: {\n title: \"star-lines, features, favorite, award, to the moon\",\n svg: '<path d=\"M9.25 15.75L4.75 20.25M7.25 10.75L2.75 15.25M16.25 15.75L11.75 20.25M15.5 1.75L17.5572 5.16844L21.4441 6.06864L18.8287 9.08156L19.1737 13.0564L15.5 11.5L11.8263 13.0564L12.1713 9.08156L9.5559 6.06864L13.4428 5.16844L15.5 1.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconFeature: {\n title: \"feature, shine\",\n svg: '<path d=\"M12 1.75V8.25M12 15.75V22.25M8.25 12H1.75M15.75 12H22.25M8 8L6 6M16 8L18 6M16 16L18 18M8 16L6 18\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconReview: {\n title: \"review,star-square\",\n svg: '<path d=\"M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M12 7.5L13.3225 10.1797L16.2798 10.6094L14.1399 12.6953L14.645 15.6406L12 14.25L9.35497 15.6406L9.86012 12.6953L7.72025 10.6094L10.6775 10.1797L12 7.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconShapesPlusXSquareCircle: {\n title: \"shapes-plus-x-square-circle, icon, icons, shapes, games\",\n svg: '<path d=\"M7.75 3.75C7.75 3.33579 7.41421 3 7 3C6.58579 3 6.25 3.33579 6.25 3.75H7.75ZM6.25 10.25C6.25 10.6642 6.58579 11 7 11C7.41421 11 7.75 10.6642 7.75 10.25H6.25ZM3.75 6.25C3.33579 6.25 3 6.58579 3 7C3 7.41421 3.33579 7.75 3.75 7.75V6.25ZM10.25 7.75C10.6642 7.75 11 7.41421 11 7C11 6.58579 10.6642 6.25 10.25 6.25V7.75ZM19.8284 15.2322C20.1213 14.9393 20.1213 14.4645 19.8284 14.1716C19.5355 13.8787 19.0607 13.8787 18.7678 14.1716L19.8284 15.2322ZM14.1716 18.7678C13.8787 19.0607 13.8787 19.5355 14.1716 19.8284C14.4645 20.1213 14.9393 20.1213 15.2322 19.8284L14.1716 18.7678ZM15.2322 14.1716C14.9393 13.8787 14.4645 13.8787 14.1716 14.1716C13.8787 14.4645 13.8787 14.9393 14.1716 15.2322L15.2322 14.1716ZM18.7678 19.8284C19.0607 20.1213 19.5355 20.1213 19.8284 19.8284C20.1213 19.5355 20.1213 19.0607 19.8284 18.7678L18.7678 19.8284ZM3.75 13.75V13C3.33579 13 3 13.3358 3 13.75H3.75ZM10.25 13.75H11C11 13.3358 10.6642 13 10.25 13V13.75ZM10.25 20.25V21C10.6642 21 11 20.6642 11 20.25H10.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM17 9.5C15.6193 9.5 14.5 8.38071 14.5 7H13C13 9.20914 14.7909 11 17 11V9.5ZM19.5 7C19.5 8.38071 18.3807 9.5 17 9.5V11C19.2091 11 21 9.20914 21 7H19.5ZM17 4.5C18.3807 4.5 19.5 5.61929 19.5 7H21C21 4.79086 19.2091 3 17 3V4.5ZM17 3C14.7909 3 13 4.79086 13 7H14.5C14.5 5.61929 15.6193 4.5 17 4.5V3ZM6.25 3.75V7H7.75V3.75H6.25ZM6.25 7V10.25H7.75V7H6.25ZM3.75 7.75H7V6.25H3.75V7.75ZM7 7.75H10.25V6.25H7V7.75ZM18.7678 14.1716L16.4697 16.4697L17.5303 17.5303L19.8284 15.2322L18.7678 14.1716ZM16.4697 16.4697L14.1716 18.7678L15.2322 19.8284L17.5303 17.5303L16.4697 16.4697ZM14.1716 15.2322L16.4697 17.5303L17.5303 16.4697L15.2322 14.1716L14.1716 15.2322ZM16.4697 17.5303L18.7678 19.8284L19.8284 18.7678L17.5303 16.4697L16.4697 17.5303ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H3.75V21H10.25V19.5ZM4.5 20.25V13.75H3V20.25H4.5Z\" fill=\"currentColor\"/>',\n category: \"Interface General\",\n },\n IconSquareCheck: {\n title: \"square-check, checkbox, check, checkmark, confirm\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM10.9968 14.4142L10.4664 14.9445C10.6071 15.0852 10.7979 15.1642 10.9968 15.1642C11.1957 15.1642 11.3865 15.0852 11.5271 14.9445L10.9968 14.4142ZM16.0271 10.4445C16.32 10.1516 16.32 9.67676 16.0271 9.38386C15.7342 9.09097 15.2593 9.09097 14.9664 9.38386L16.0271 10.4445ZM9.52711 11.8839C9.23421 11.591 8.75934 11.591 8.46645 11.8839C8.17355 12.1768 8.17355 12.6516 8.46645 12.9445L9.52711 11.8839ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM11.5271 14.9445L16.0271 10.4445L14.9664 9.38386L10.4664 13.8839L11.5271 14.9445ZM8.46645 12.9445L10.4664 14.9445L11.5271 13.8839L9.52711 11.8839L8.46645 12.9445Z\" fill=\"currentColor\"/>',\n category: \"Interface General\",\n },\n IconCircleCheck: {\n title:\n \"circle-check, check radio, circle, checkbox, check, checkmark, confirm\",\n svg: '<path d=\"M15 9.5L10.5 15L8.5 13M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCheckmark1: {\n title: \"checkmark-1\",\n svg: '<path d=\"M4.75 12.7768L10 19.25L19.25 4.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconCheckmark1Small: {\n title: \"checkmark-1-small\",\n svg: '<path d=\"M7.75 13.0625L10.9375 16.25L16.25 7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCheckmark2: {\n title: \"checkmark-2\",\n svg: '<path d=\"M2.75 15.0938L9 20.25L21.25 3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCheckmark2Small: {\n title: \"checkmark-2-small\",\n svg: '<path d=\"M6.75 13.0625L9.9 16.25L17.25 7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconChecklist: {\n title: \"checklist, list\",\n svg: '<path d=\"M11.75 16.25H20.25M11.75 7.75H20.25M3.75 8.625L5.41667 9.75L8.75 5.25M3.75 17.625L5.41667 18.75L8.75 14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconPlanning: {\n title: \"planning, list, checklist\",\n svg: '<path d=\"M11.75 7.75H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 18.25C6.85457 18.25 7.75 17.3546 7.75 16.25C7.75 15.1454 6.85457 14.25 5.75 14.25C4.64543 14.25 3.75 15.1454 3.75 16.25C3.75 17.3546 4.64543 18.25 5.75 18.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.75 16.25H20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 8.25L5.41667 9.75L8.75 5.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconShareAndroid: {\n title: \"share-android\",\n svg: '<path d=\"M9.00003 10.4286L14 7.57141M9.00003 13.5714L14 16.4286M20.25 6C20.25 7.79493 18.7949 9.25 17 9.25C15.2051 9.25 13.75 7.79493 13.75 6C13.75 4.20507 15.2051 2.75 17 2.75C18.7949 2.75 20.25 4.20507 20.25 6ZM20.25 18C20.25 19.7949 18.7949 21.25 17 21.25C15.2051 21.25 13.75 19.7949 13.75 18C13.75 16.2051 15.2051 14.75 17 14.75C18.7949 14.75 20.25 16.2051 20.25 18ZM9.25 12C9.25 13.7949 7.79493 15.25 6 15.25C4.20507 15.25 2.75 13.7949 2.75 12C2.75 10.2051 4.20507 8.75 6 8.75C7.79493 8.75 9.25 10.2051 9.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Interface General\",\n },\n IconShareOs: {\n title: \"share-os\",\n svg: '<path d=\"M7.75 6.25L12 1.75L16.25 6.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 2.75V13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.75 9.75H4.75V20.25H19.25V9.75H16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconThumbtack: {\n title: \"thumbtack, pin, location, bookmark \",\n svg: '<path d=\"M12 15.25H4.75V12.5L5.12653 12.1235C6.48616 10.7638 7.25 8.91977 7.25 6.99695V2.75H16.75V6.99695C16.75 8.91977 17.5138 10.7638 18.8735 12.1235L19.25 12.5V15.25H12ZM12 15.25V21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconPin: {\n title: \"pin\",\n svg: '<path d=\"M3.75 20.25L8.38235 15.6176M11.5 7.5L14.5 2.75L21.25 9.5L16.5 12.5L14 20.25L3.75 10L11.5 7.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconUnpin: {\n title: \"unpin\",\n svg: '<path d=\"M11.5 7.5L14.5 2.75L21.25 9.5L16.5 12.5M8.38235 15.6176L3.75 20.25M8.28189 8.5381L3.75 10L14 20.25L15.4376 15.7933M2.75 2.75L21.25 21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareArrowDown: {\n title: \"square-arrow-down, download square, save\",\n svg: '<path d=\"M12 7.75V13.5M12 13.5L14.25 11.25M12 13.5L9.75 11.25M8.75 16.25H15.25M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCircleArrowDown: {\n title: \"circle-arrow-down, download square, save\",\n svg: '<path d=\"M12 7.75V13.5M12 13.5L14.25 11.25M12 13.5L9.75 11.25M8.75 16.25H15.25M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconArrowInbox: {\n title: \"arrow-inbox, download, file, down, save\",\n svg: '<path d=\"M20.25 14.75V20.25H3.75V14.75M12 15V3.75M12 15L8.5 11.5M12 15L15.5 11.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconInboxChecked: {\n title: \"inbox-checked, saved\",\n svg: '<path d=\"M7.25 10.4878L10.925 14.25L17.75 4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 14.75V20.25H20.25V14.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconArrowBoxRight: {\n title: \"arrow-box-right, login, enter, door\",\n svg: '<path d=\"M14.75 3.75L20.25 3.75V20.25H14.75M15 12L3.75 12M15 12L11.5 15.5M15 12L11.5 8.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconArrowOutOfBox: {\n title: \"arrow-out-of-box, upload, share\",\n svg: '<path d=\"M12 3.75V15M12 3.75L16.5 8.25M12 3.75L7.5 8.25M20.25 14.75V20.25H3.75V14.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconArrowBoxLeft: {\n title: \"arrow-box-left, logout, leave, door\",\n svg: '<path d=\"M20.25 12L9 12M20.25 12L15.75 16.5M20.25 12L15.75 7.5M11.25 20.25H3.75L3.75 3.75L11.25 3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconArrowRounded: {\n title: \"arrow-rounded, share, arrow, login\",\n svg: '<path d=\"M2.75 7.75V19.25H19.25M16.75 4.25L20.25 7.75M20.25 7.75L16.75 11.25M20.25 7.75H12.75C9.98858 7.75 7.75 9.98858 7.75 12.75V13.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconImport: {\n title: \"import, download, save\",\n svg: '<path d=\"M2.75 8.75V19.25H21.25V4.75H15.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 4.75H7C9.76142 4.75 12 6.98858 12 9.75V15M12 15L15.75 11.25M12 15L8.25 11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconImport2: {\n title: \"import-2, download, save\",\n svg: '<path d=\"M21.25 8.75V19.25H2.75V4.75H8.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.25 4.75H17C14.2386 4.75 12 6.98858 12 9.75V15M12 15L8.25 11.25M12 15L15.75 11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSidebar: {\n title: \"sidebar, menu, list, window\",\n svg: '<path d=\"M11.25 4.75H2.75V19.25H11.25M11.25 4.75H21.25V19.25H11.25M11.25 4.75V19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M6.25 8.5C6.25 8.91421 6.58579 9.25 7 9.25C7.41421 9.25 7.75 8.91421 7.75 8.5C7.75 8.08579 7.41421 7.75 7 7.75C6.58579 7.75 6.25 8.08579 6.25 8.5ZM6.25 12C6.25 12.4142 6.58579 12.75 7 12.75C7.41421 12.75 7.75 12.4142 7.75 12C7.75 11.5858 7.41421 11.25 7 11.25C6.58579 11.25 6.25 11.5858 6.25 12ZM6.25 15.5C6.25 15.9142 6.58579 16.25 7 16.25C7.41421 16.25 7.75 15.9142 7.75 15.5C7.75 15.0858 7.41421 14.75 7 14.75C6.58579 14.75 6.25 15.0858 6.25 15.5Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\"/>',\n category: \"Interface General\",\n },\n IconSquareInfo: {\n title: \"square-info, information, tooltip\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM10.75 10.25C10.3358 10.25 10 10.5858 10 11C10 11.4142 10.3358 11.75 10.75 11.75V10.25ZM12 11L12.75 11C12.75 10.5858 12.4142 10.25 12 10.25V11ZM11.25 16.25C11.25 16.6642 11.5858 17 12 17C12.4142 17 12.75 16.6642 12.75 16.25L11.25 16.25ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM10.75 11.75H12V10.25H10.75V11.75ZM11.25 11L11.25 16.25L12.75 16.25L12.75 11L11.25 11Z\" fill=\"currentColor\"/><path d=\"M12 7.375C11.6548 7.375 11.375 7.65482 11.375 8C11.375 8.34518 11.6548 8.625 12 8.625C12.3452 8.625 12.625 8.34518 12.625 8C12.625 7.65482 12.3452 7.375 12 7.375Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/>',\n category: \"Interface General\",\n },\n IconCircleInfo: {\n title: \"circle-info, info circle, tooltip, information\",\n svg: '<path d=\"M10.75 11H12L12 16.25M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 7.375C11.6548 7.375 11.375 7.65482 11.375 8C11.375 8.34518 11.6548 8.625 12 8.625C12.3452 8.625 12.625 8.34518 12.625 8C12.625 7.65482 12.3452 7.375 12 7.375Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.25\"/>',\n category: \"Interface General\",\n },\n IconCircleQuestionmark: {\n title: \"circle-questionmark, faq, help, questionaire\",\n svg: '<path d=\"M12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 9.25V7.75H14.25V10.5L12 12V13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 16V15.99M12.25 16C12.25 16.1381 12.1381 16.25 12 16.25C11.8619 16.25 11.75 16.1381 11.75 16C11.75 15.8619 11.8619 15.75 12 15.75C12.1381 15.75 12.25 15.8619 12.25 16Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCircleBanSign: {\n title: \"circle-ban-sign, circle, block, ads\",\n svg: '<path d=\"M18.5407 5.45926C16.8668 3.78534 14.5543 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 14.5543 3.78534 16.8668 5.45926 18.5407M18.5407 5.45926C20.2147 7.13318 21.25 9.44568 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C9.44568 21.25 7.13318 20.2147 5.45926 18.5407M18.5407 5.45926L5.45926 18.5407\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconTriangleExclamation: {\n title: \"triangle-exclamation, error, warning, alert\",\n svg: '<path d=\"M12 2.75L12.6457 2.36845C12.5108 2.1401 12.2652 2 12 2C11.7348 2 11.4892 2.1401 11.3543 2.36845L12 2.75ZM2.25 19.25L1.60431 18.8685C1.4673 19.1003 1.46512 19.3878 1.59859 19.6217C1.73207 19.8556 1.9807 20 2.25 20V19.25ZM21.75 19.25V20C22.0193 20 22.2679 19.8556 22.4014 19.6217C22.5349 19.3878 22.5327 19.1003 22.3957 18.8685L21.75 19.25ZM12.75 9.75C12.75 9.33579 12.4142 9 12 9C11.5858 9 11.25 9.33579 11.25 9.75H12.75ZM11.25 13.25C11.25 13.6642 11.5858 14 12 14C12.4142 14 12.75 13.6642 12.75 13.25H11.25ZM11.25 15.75C11.25 16.1642 11.5858 16.5 12 16.5C12.4142 16.5 12.75 16.1642 12.75 15.75H11.25ZM12.75 15.74C12.75 15.3258 12.4142 14.99 12 14.99C11.5858 14.99 11.25 15.3258 11.25 15.74H12.75ZM11.3543 2.36845L1.60431 18.8685L2.89569 19.6315L12.6457 3.13155L11.3543 2.36845ZM2.25 20H21.75V18.5H2.25V20ZM22.3957 18.8685L12.6457 2.36845L11.3543 3.13155L21.1043 19.6315L22.3957 18.8685ZM11.25 9.75V13.25H12.75V9.75H11.25ZM11.5 15.75C11.5 15.4739 11.7239 15.25 12 15.25V16.75C12.5523 16.75 13 16.3023 13 15.75H11.5ZM12 15.25C12.2761 15.25 12.5 15.4739 12.5 15.75H11C11 16.3023 11.4477 16.75 12 16.75V15.25ZM12.5 15.75C12.5 16.0261 12.2761 16.25 12 16.25V14.75C11.4477 14.75 11 15.1977 11 15.75H12.5ZM12 16.25C11.7239 16.25 11.5 16.0261 11.5 15.75H13C13 15.1977 12.5523 14.75 12 14.75V16.25ZM12.75 15.75V15.74H11.25V15.75H12.75Z\" fill=\"currentColor\"/>',\n category: \"Interface General\",\n },\n IconChainLink1: {\n title: \"chain-link-1,url\",\n svg: '<path d=\"M13.25 17.75L9.5 21.5L2.5 14.5L6.25 10.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.75 6.25L14.5 2.5L21.5 9.5L17.75 13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 15L15 9\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBrokenChainLink1: {\n title: \"broken-chain-link-1,unlink\",\n svg: '<path d=\"M9 3.25V1.75M15 20.75V22.25M3.25 9H1.75M20.75 15H22.25M4.75 4.75L3.25 3.25M19.25 19.25L20.75 20.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.75 6.25L14.5 2.5L21.5 9.5L17.75 13.25M6.25 10.75L2.5 14.5L9.5 21.5L13.25 17.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconChainLink2: {\n title: \"chain-link-2,url\",\n svg: '<path d=\"M6.75 11.25C6.33579 11.25 6 11.5858 6 12C6 12.4142 6.33579 12.75 6.75 12.75V11.25ZM17.25 12.75C17.6642 12.75 18 12.4142 18 12C18 11.5858 17.6642 11.25 17.25 11.25V12.75ZM22.25 6.75H23C23 6.33579 22.6642 6 22.25 6V6.75ZM22.25 17.25V18C22.6642 18 23 17.6642 23 17.25H22.25ZM15.75 16.5C15.3358 16.5 15 16.8358 15 17.25C15 17.6642 15.3358 18 15.75 18V16.5ZM15.75 6C15.3358 6 15 6.33579 15 6.75C15 7.16421 15.3358 7.5 15.75 7.5V6ZM1.75 6.75V6C1.33579 6 1 6.33579 1 6.75H1.75ZM1.75 17.25H1C1 17.6642 1.33579 18 1.75 18L1.75 17.25ZM8.25 18C8.66421 18 9 17.6642 9 17.25C9 16.8358 8.66421 16.5 8.25 16.5V18ZM8.25 7.5C8.66421 7.5 9 7.16421 9 6.75C9 6.33579 8.66421 6 8.25 6V7.5ZM6.75 12.75H17.25V11.25H6.75V12.75ZM21.5 6.75V17.25H23V6.75H21.5ZM22.25 16.5H15.75V18H22.25V16.5ZM15.75 7.5H22.25V6H15.75V7.5ZM1 6.75V17.25H2.5V6.75H1ZM1.75 18H8.25V16.5H1.75V18ZM8.25 6H1.75V7.5H8.25V6Z\" fill=\"currentColor\"/>',\n category: \"Interface General\",\n },\n IconBrokenChainLink2: {\n title: \"broken-chain-link-2,unlink\",\n svg: '<path d=\"M15.75 17.25H22.25V6.75H15.75M8.25 17.25H1.75V6.75H8.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.25 4.25L9.25 1.75M13.75 4.25L14.75 1.75M10.25 19.75L9.25 22.25M13.75 19.75L14.75 22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconChainLink3: {\n title: \"chain-link-3,url\",\n svg: '<path d=\"M9.75027 5.52371L10.7168 4.55722C13.1264 2.14759 17.0332 2.14759 19.4428 4.55722C21.8524 6.96684 21.8524 10.8736 19.4428 13.2832L18.4742 14.2519M5.52886 9.74513L4.55722 10.7168C2.14759 13.1264 2.1476 17.0332 4.55722 19.4428C6.96684 21.8524 10.8736 21.8524 13.2832 19.4428L14.2478 18.4782M9.5 14.5L14.5 9.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconBrokenChainLink3: {\n title: \"broken-chain-link-3,unlink\",\n svg: '<path d=\"M9.75027 5.52371L10.7168 4.55722C13.1264 2.14759 17.0332 2.14759 19.4428 4.55722C21.8524 6.96684 21.8524 10.8736 19.4428 13.2832L18.4742 14.2519M5.52886 9.74513L4.55722 10.7168C2.14759 13.1264 2.1476 17.0332 4.55722 19.4428C6.96684 21.8524 10.8736 21.8524 13.2832 19.4428L14.2478 18.4782\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M3.8 6.3625L1.75 5.85M6.3625 3.8L5.85 1.75M20.2 17.6375L22.25 18.15M17.6375 20.2L18.15 22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconChainLink4: {\n title: \"chain-link-4\",\n svg: '<path d=\"M10 19.0004L9.82843 19.1719C8.26634 20.734 5.73368 20.734 4.17158 19.1719L3.82843 18.8288C2.26634 17.2667 2.26633 14.734 3.82843 13.1719L7.17158 9.8288C8.73368 8.2667 11.2663 8.2667 12.8284 9.8288L13.1716 10.1719C13.8252 10.8256 14.2053 11.6491 14.312 12.5004\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.68799 12.5004C9.79463 13.3516 10.1748 14.1752 10.8284 14.8288L11.1715 15.1719C12.7336 16.734 15.2663 16.734 16.8284 15.1719L20.1715 11.8288C21.7336 10.2667 21.7336 7.73404 20.1715 6.17194L19.8284 5.8288C18.2663 4.2667 15.7336 4.2667 14.1715 5.8288L14 6.00037\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCircleDashed: {\n title: \"circle-dashed\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\" strokeDasharray=\"3 4\"/>',\n category: \"Interface General\",\n },\n IconCircleDotted: {\n title: \"circle-dotted\",\n svg: '<path d=\"M12 2.76027V2.75M12 21.2397V21.25M15.5359 3.4636L15.5398 3.45411M8.46411 20.5364L8.46018 20.5459M18.5335 5.46661L18.5407 5.45935M5.46651 18.5336L5.45924 18.5408M20.5363 8.46431L20.5458 8.46038M3.46354 15.5361L3.45405 15.54M2.76027 12H2.75M21.2397 12H21.25M5.46675 5.46647L5.45949 5.4592M18.5337 18.5334L18.541 18.5407M3.46392 8.4638L3.45443 8.45987M20.5367 15.5356L20.5462 15.5395M8.46409 3.46357L8.46016 3.45408M15.5359 20.5364L15.5398 20.5459\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCirclePlaceholderOn: {\n title: \"circle-placeholder-on\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/>',\n category: \"Interface General\",\n },\n IconCirclePlaceholderOff: {\n title: \"circle-placeholder-off\",\n svg: '<path d=\"M7.93227 3.69009C9.15988 3.08804 10.5405 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 13.4595 20.912 14.8401 20.3099 16.0677M3.5 3.5L20.5 20.5M12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 9.44568 3.78534 7.13318 5.45926 5.45926L18.5407 18.5407C16.8668 20.2147 14.5543 21.25 12 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCirclePlus: {\n title: \"circle-plus, add\",\n svg: '<path d=\"M16.2426 12.0005H7.75736M12 16.2431V7.75781M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCircleMinus: {\n title: \"circle-minus, remove\",\n svg: '<path d=\"M16.2426 12.0005H7.75736M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCircleX: {\n title: \"circle-x, close, checkbox, remove\",\n svg: '<path d=\"M15 9L9 15M15 15L9 9M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquarePlaceholderDashed: {\n title: \"square-placeholder-dashed\",\n svg: '<path d=\"M5.7 3.75H3.75V5.75M18.25 3.75H20.25V5.75M3.75 18.25V20.25H5.7M18.25 20.25H20.25V18.25M10.25 3.75H13.75M20.25 10.25V13.75M13.75 20.25H10.25M3.75 13.75V10.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquarePlaceholder: {\n title: \"square-placeholder\",\n svg: '<path d=\"M20.25 20.25V3.75H3.75V20.25H20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquarePlus: {\n title: \"square-plus, add\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM15.25 12.7502C15.6642 12.7502 16 12.4144 16 12.0002C16 11.586 15.6642 11.2502 15.25 11.2502V12.7502ZM8.75736 11.2502C8.34314 11.2502 8.00736 11.586 8.00736 12.0002C8.00736 12.4144 8.34314 12.7502 8.75736 12.7502V11.2502ZM11.25 15.2429C11.25 15.6571 11.5858 15.9929 12 15.9929C12.4142 15.9929 12.75 15.6571 12.75 15.2429H11.25ZM12.75 8.75759C12.75 8.34337 12.4142 8.00759 12 8.00759C11.5858 8.00759 11.25 8.34337 11.25 8.75759H12.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM15.25 11.2502H8.75736V12.7502H15.25V11.2502ZM12.75 15.2429V8.75759H11.25V15.2429H12.75Z\" fill=\"currentColor\"/>',\n category: \"Interface General\",\n },\n IconSquareMinus: {\n title: \"square-minus, remove, delete\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM15.25 12.7502C15.6642 12.7502 16 12.4144 16 12.0002C16 11.586 15.6642 11.2502 15.25 11.2502V12.7502ZM8.75736 11.2502C8.34314 11.2502 8.00736 11.586 8.00736 12.0002C8.00736 12.4144 8.34314 12.7502 8.75736 12.7502V11.2502ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM15.25 11.2502H8.75736V12.7502H15.25V11.2502Z\" fill=\"currentColor\"/>',\n category: \"Interface General\",\n },\n IconSquareX: {\n title: \"square-x, close, x, checkbox, remove\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM15.5303 9.53033C15.8232 9.23744 15.8232 8.76256 15.5303 8.46967C15.2374 8.17678 14.7626 8.17678 14.4697 8.46967L15.5303 9.53033ZM8.46967 14.4697C8.17678 14.7626 8.17678 15.2374 8.46967 15.5303C8.76256 15.8232 9.23744 15.8232 9.53033 15.5303L8.46967 14.4697ZM14.4697 15.5303C14.7626 15.8232 15.2374 15.8232 15.5303 15.5303C15.8232 15.2374 15.8232 14.7626 15.5303 14.4697L14.4697 15.5303ZM9.53033 8.46967C9.23744 8.17678 8.76256 8.17678 8.46967 8.46967C8.17678 8.76256 8.17678 9.23744 8.46967 9.53033L9.53033 8.46967ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM14.4697 8.46967L8.46967 14.4697L9.53033 15.5303L15.5303 9.53033L14.4697 8.46967ZM15.5303 14.4697L9.53033 8.46967L8.46967 9.53033L14.4697 15.5303L15.5303 14.4697Z\" fill=\"currentColor\"/>',\n category: \"Interface General\",\n },\n IconArrowLeftX: {\n title: \"arrow-left-x, delete, remove, backspace\",\n svg: '<path d=\"M11.2483 10L15.25 14.0017M15.2517 10L11.25 14.0017M2.75 12L7.75 4.75H21.25V19.25H7.75L2.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconHeart: {\n title: \"heart, like, health, life, favorite\",\n svg: '<path d=\"M21.25 9.9375C21.25 15.8672 12.7708 20.25 12 20.25C11.2292 20.25 2.75 15.8672 2.75 9.9375C2.75 5.8125 5.31944 3.75 7.88889 3.75C10.4583 3.75 12 5.29688 12 5.29688C12 5.29688 13.5417 3.75 16.1111 3.75C18.6806 3.75 21.25 5.8125 21.25 9.9375Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconHeart2: {\n title: \"heart-2, like, health, life, fav\",\n svg: '<path d=\"M12 5.57193C18.3331 -0.86765 29.1898 11.0916 12 20.75C-5.18982 11.0916 5.66687 -0.867651 12 5.57193Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBrokenHeart: {\n title: \"broken-heart, delete-account\",\n svg: '<path d=\"M12 5.57193C18.3331 -0.86765 29.1898 11.0916 12 20.75C-5.18982 11.0916 5.66687 -0.867651 12 5.57193ZM12 5.57193C11.1207 6.53558 10.4876 7.78832 10 8.99993L13 11.9999L12 14.9999\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconHeartBeat: {\n title: \"heart-beat, heart rate, pulse\",\n svg: '<path d=\"M17.25 12H15.15L13.5 15L10.5 9L8.85 12H6.75M12 5.57193C18.3331 -0.86765 29.1898 11.0916 12 20.75C-5.18982 11.0916 5.66687 -0.867651 12 5.57193Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconElectrocardiogram: {\n title: \"electrocardiogram, activity, notification, pulse, heartbeat, beat\",\n svg: '<path d=\"M1.75 11.75H6L9 2.75L15 21.25L18 11.75H22.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconTargetArrow: {\n title: \"target-arrow, goal, aim, focus, do-not-disdurb\",\n svg: '<path d=\"M17.75 2L18.4668 1.77944C18.3884 1.52448 18.1804 1.33038 17.9207 1.26968C17.6609 1.20898 17.3885 1.29081 17.2051 1.4846L17.75 2ZM18.75 5.25L18.0332 5.47056C18.1062 5.70796 18.292 5.89379 18.5294 5.96683L18.75 5.25ZM22 6.25L22.5154 6.79485C22.7092 6.61154 22.791 6.33909 22.7303 6.07934C22.6696 5.81958 22.4755 5.61161 22.2206 5.53317L22 6.25ZM18.3 9.75V10.5C18.4917 10.5 18.6761 10.4266 18.8154 10.2949L18.3 9.75ZM14.25 5.7L13.7051 5.1846C13.5734 5.32387 13.5 5.5083 13.5 5.7H14.25ZM11.4697 11.4697C11.1768 11.7626 11.1768 12.2374 11.4697 12.5303C11.7626 12.8232 12.2374 12.8232 12.5303 12.5303L11.4697 11.4697ZM11.1435 7.55755C11.5501 7.47828 11.8154 7.08444 11.7361 6.67789C11.6569 6.27133 11.263 6.00601 10.8565 6.08528L11.1435 7.55755ZM17.9147 13.1437C17.994 12.7371 17.7287 12.3433 17.3221 12.264C16.9156 12.1847 16.5217 12.45 16.4425 12.8566L17.9147 13.1437ZM12.4601 3.51222C12.8737 3.53425 13.2269 3.2168 13.2489 2.80318C13.271 2.38955 12.9535 2.03638 12.5399 2.01435L12.4601 3.51222ZM21.9857 11.4601C21.9636 11.0465 21.6105 10.729 21.1968 10.7511C20.7832 10.7731 20.4657 11.1263 20.4878 11.5399L21.9857 11.4601ZM17.0332 2.22056L18.0332 5.47056L19.4668 5.02944L18.4668 1.77944L17.0332 2.22056ZM18.5294 5.96683L21.7794 6.96683L22.2206 5.53317L18.9706 4.53317L18.5294 5.96683ZM21.4846 5.70515L17.7846 9.20515L18.8154 10.2949L22.5154 6.79485L21.4846 5.70515ZM18.3 9H14.25V10.5H18.3V9ZM15 9.75V5.7H13.5V9.75H15ZM14.7949 6.2154L18.2949 2.5154L17.2051 1.4846L13.7051 5.1846L14.7949 6.2154ZM13.7197 9.21967L11.4697 11.4697L12.5303 12.5303L14.7803 10.2803L13.7197 9.21967ZM12.013 16.5C9.52054 16.5 7.5 14.4795 7.5 11.987H6C6 15.3079 8.69211 18 12.013 18V16.5ZM7.5 11.987C7.5 9.79253 9.06706 7.96241 11.1435 7.55755L10.8565 6.08528C8.08896 6.62487 6 9.06117 6 11.987H7.5ZM16.4425 12.8566C16.0376 14.933 14.2075 16.5 12.013 16.5V18C14.9388 18 17.3751 15.9111 17.9147 13.1437L16.4425 12.8566ZM20.5 12C20.5 16.6944 16.6944 20.5 12 20.5V22C17.5228 22 22 17.5228 22 12H20.5ZM12 20.5C7.30558 20.5 3.5 16.6944 3.5 12H2C2 17.5228 6.47715 22 12 22V20.5ZM3.5 12C3.5 7.30558 7.30558 3.5 12 3.5V2C6.47715 2 2 6.47715 2 12H3.5ZM12 3.5C12.1544 3.5 12.3078 3.50411 12.4601 3.51222L12.5399 2.01435C12.3611 2.00482 12.1811 2 12 2V3.5ZM20.4878 11.5399C20.4959 11.6922 20.5 11.8456 20.5 12H22C22 11.8189 21.9952 11.6389 21.9857 11.4601L20.4878 11.5399Z\" fill=\"currentColor\"/>',\n category: \"Interface General\",\n },\n IconTarget: {\n title: \"target, focus, do-not-disdurb\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M12.75 12C12.75 12.4142 12.4142 12.75 12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconTarget1: {\n title: \"target-1, zoom, crosshair\",\n svg: '<path d=\"M12 6.75V9.75M14.25 12H17.25M12 14.25V17.25M6.75 12C6.75 12 8.60966 12 9.75 12M12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconTarget2: {\n title: \"target-2, zoom, crosshair\",\n svg: '<path d=\"M12 1.75V8.25M22.25 12H15.75M12 15.75V22.25M8.25 12H1.75M12 19.25C7.99594 19.25 4.75 16.0041 4.75 12C4.75 7.99594 7.99594 4.75 12 4.75C16.0041 4.75 19.25 7.99594 19.25 12C19.25 16.0041 16.0041 19.25 12 19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconClipboard: {\n title: \"clipboard, copy, list\",\n svg: '<path d=\"M15.25 4.75H19.25V21.25H4.75V4.75H8.75M8.75 2.75H15.25V7.25H8.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconClipboard2: {\n title: \"clipboard-2, copy, list\",\n svg: '<path d=\"M16.25 4.75H20.25V21.25H3.75V4.75H7.75M7.75 2.75H16.25V7.25H7.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCircleDotsCenter1: {\n title: \"circle-dots-center-1, menu 1, grid, circle\",\n svg: '<path d=\"M8 12V11.99M8.25 12C8.25 12.1381 8.13807 12.25 8 12.25C7.86193 12.25 7.75 12.1381 7.75 12C7.75 11.8619 7.86193 11.75 8 11.75C8.13807 11.75 8.25 11.8619 8.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M12 12V11.99M12.25 12C12.25 12.1381 12.1381 12.25 12 12.25C11.8619 12.25 11.75 12.1381 11.75 12C11.75 11.8619 11.8619 11.75 12 11.75C12.1381 11.75 12.25 11.8619 12.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M16 12V11.99M16.25 12C16.25 12.1381 16.1381 12.25 16 12.25C15.8619 12.25 15.75 12.1381 15.75 12C15.75 11.8619 15.8619 11.75 16 11.75C16.1381 11.75 16.25 11.8619 16.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Interface General\",\n },\n IconCircleDotsCenter2: {\n title: \"circle-dots-center-2, menu 1, grid, circle\",\n svg: '<path d=\"M11.25 8C11.25 8.41421 11.5858 8.75 12 8.75C12.4142 8.75 12.75 8.41421 12.75 8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/><path d=\"M11.25 12C11.25 12.4142 11.5858 12.75 12 12.75C12.4142 12.75 12.75 12.4142 12.75 12C12.75 11.5858 12.4142 11.25 12 11.25C11.5858 11.25 11.25 11.5858 11.25 12Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\"/><path d=\"M11.25 16C11.25 16.4142 11.5858 16.75 12 16.75C12.4142 16.75 12.75 16.4142 12.75 16C12.75 15.5858 12.4142 15.25 12 15.25C11.5858 15.25 11.25 15.5858 11.25 16Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\"/><path d=\"M12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Interface General\",\n },\n IconPaperclip1: {\n title: \"paperclip-1, attachment\",\n svg: '<path d=\"M5.75 10.75V15.25C5.75 18.5637 8.43629 21.25 11.75 21.25H12.25C15.5637 21.25 18.25 18.5637 18.25 15.25V7C18.25 4.65279 16.3472 2.75 14 2.75C11.6528 2.75 9.75 4.65279 9.75 7V14.875C9.75 16.0486 10.7014 17 11.875 17C13.0486 17 14 16.0486 14 14.875V7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconPaperclip2: {\n title: \"paperclip-2, attachment\",\n svg: '<path d=\"M6.75 8.75V16C6.75 18.8995 9.10051 21.25 12 21.25C14.8995 21.25 17.25 18.8995 17.25 16V5.375C17.25 3.92525 16.0747 2.75 14.625 2.75C13.1753 2.75 12 3.92525 12 5.375V15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconPaperclip3: {\n title: \"paperclip-3, attachment\",\n svg: '<path d=\"M12.2126 10.7642L7.07919 15.8829C6.51216 16.4483 6.51216 17.365 7.07919 17.9304C7.64621 18.4958 8.56554 18.4958 9.13257 17.9304L19.3995 7.69303C19.9664 7.12769 20.25 6.38673 20.25 5.64575C20.25 4.90465 19.9665 4.16353 19.3995 3.59809C18.8324 3.03271 18.0893 2.75001 17.3461 2.75C16.6029 2.74999 15.8597 3.03269 15.2927 3.59809L5.02581 13.8354C4.17522 14.6836 3.74995 15.7952 3.75 16.9068C3.75005 18.0183 4.17532 19.1298 5.02581 19.9779C5.87635 20.826 6.99113 21.25 8.10591 21.25C9.22067 21.25 10.3354 20.8259 11.1859 19.9779L16.3194 14.8592\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconAnchor1: {\n title: \"anchor-1, link\",\n svg: '<path d=\"M17.75 11.75H21.25L18.5 21.25H12M6.25 11.75H2.75L5.5 21.25H12M12 21.25V8.25M12 8.25C13.5188 8.25 14.75 7.01878 14.75 5.5C14.75 3.98122 13.5188 2.75 12 2.75C10.4812 2.75 9.25 3.98122 9.25 5.5C9.25 7.01878 10.4812 8.25 12 8.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconAnchor2: {\n title: \"anchor-2, link\",\n svg: '<path d=\"M12 8.25C13.5188 8.25 14.75 7.01878 14.75 5.5C14.75 3.98122 13.5188 2.75 12 2.75C10.4812 2.75 9.25 3.98122 9.25 5.5C9.25 7.01878 10.4812 8.25 12 8.25ZM12 8.25V21M18 12H21.25C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12H6\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconWindowCursor: {\n title: \"window-cursor, visit page, open app\",\n svg: '<path d=\"M5.75 8.5C5.75 8.91421 6.08579 9.25 6.5 9.25C6.91421 9.25 7.25 8.91421 7.25 8.5C7.25 8.08579 6.91421 7.75 6.5 7.75C6.08579 7.75 5.75 8.08579 5.75 8.5ZM9.25 8.5C9.25 8.91421 9.58579 9.25 10 9.25C10.4142 9.25 10.75 8.91421 10.75 8.5C10.75 8.08579 10.4142 7.75 10 7.75C9.58579 7.75 9.25 8.08579 9.25 8.5ZM12.75 8.5C12.75 8.91421 13.0858 9.25 13.5 9.25C13.9142 9.25 14.25 8.91421 14.25 8.5C14.25 8.08579 13.9142 7.75 13.5 7.75C13.0858 7.75 12.75 8.08579 12.75 8.5Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.25 12.25V4.75H2.75V20.25H12.25M22 17.1538L15 15L17.1538 22L18.7692 18.7692L22 17.1538Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconGauge: {\n title: \"gauge, tachometer, performance, speed, scale\",\n svg: '<path d=\"M10 10L5.5 5.5M12 5.25V2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 10.5672 3.07575 9.21057 3.65722 8M14.75 12C14.75 13.5188 13.5188 14.75 12 14.75C10.4812 14.75 9.25 13.5188 9.25 12C9.25 10.4812 10.4812 9.25 12 9.25C13.5188 9.25 14.75 10.4812 14.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconArrowsAllSides: {\n title: \"arrows-all-sides, move, focus\",\n svg: '<path d=\"M9 5.75L12 2.75L15 5.75M5.75 9L2.75 12L5.75 15M18.25 9L21.25 12L18.25 15M15 18.25L12 21.25L9 18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconArrowsAllSides2: {\n title: \"arrows-all-sides-2, scan, move, focus\",\n svg: '<path d=\"M8.25 3.75H3.75V8.25M15.75 3.75H20.25V8.25M20.25 15.75V20.25H15.75M8.25 20.25H3.75V15.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBarcode: {\n title: \"barcode, qr code, scan\",\n svg: '<path d=\"M7.25 4.75H2.75V9.25M16.75 4.75H21.25V9.25M21.25 14.75V19.25H16.75M7.25 19.25H2.75V14.75M7.75 9.75V14.25M16.25 9.75V14.25M12 9.75V12.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconQrCode: {\n title: \"qr-code, barcode, scan\",\n svg: '<path d=\"M13.75 13.75V16.25H16.25M17.75 13.75H20.25M20.25 17.75H17.75V20.25M13.75 19.75V20.25M3.75 3.75H10.25V10.25H3.75V3.75ZM13.75 3.75H20.25V10.25H13.75V3.75ZM3.75 13.75H10.25V20.25H3.75V13.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconLightBulb: {\n title: \"light-bulb, idea, light\",\n svg: '<path d=\"M8.74793 15.4838V18.25H15.2503V15.4838M8.74793 15.4838C8.33542 15.2765 7.94542 15.031 7.58257 14.7519C5.85901 13.4264 4.74823 11.3433 4.74823 9.00089C4.74823 4.99633 7.99456 1.75 11.9991 1.75C16.0037 1.75 19.25 4.99633 19.25 9.00089C19.25 11.3433 18.1392 13.4264 16.4157 14.7519C16.0528 15.031 15.6628 15.2765 15.2503 15.4838M8.74793 15.4838H15.2503M8.75 21.25H15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconLightBulbSimple: {\n title: \"light-bulb-simple, idea\",\n svg: '<path d=\"M11.9991 2.75C7.99456 2.75 4.74823 5.99633 4.74823 10.0009C4.74823 12.3433 5.85901 14.4264 7.58257 15.7519C7.94542 16.031 8.33542 16.2765 8.74793 16.4838V18.9988C8.74793 20.7944 10.2035 22.25 11.9991 22.25C13.7947 22.25 15.2503 20.7944 15.2503 18.9988V16.4838C15.6628 16.2765 16.0528 16.031 16.4157 15.7519C18.1392 14.4264 19.25 12.3433 19.25 10.0009C19.25 5.99633 16.0037 2.75 11.9991 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.74792 17.75H15.2503\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareGridMaginfyingGlass: {\n title:\n \"square-grid-maginfying-glass, layout, grid, list, search, find, magifier\",\n svg: '<path d=\"M3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM10.25 3.75H11C11 3.33579 10.6642 3 10.25 3V3.75ZM10.25 10.25V11C10.6642 11 11 10.6642 11 10.25H10.25ZM3.75 10.25H3C3 10.6642 3.33579 11 3.75 11V10.25ZM13.75 3.75V3C13.3358 3 13 3.33579 13 3.75H13.75ZM20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 10.25V11C20.6642 11 21 10.6642 21 10.25H20.25ZM13.75 10.25H13C13 10.6642 13.3358 11 13.75 11V10.25ZM3.75 13.75V13C3.33579 13 3 13.3358 3 13.75H3.75ZM10.25 13.75H11C11 13.3358 10.6642 13 10.25 13V13.75ZM10.25 20.25V21C10.6642 21 11 20.6642 11 20.25H10.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM20.5983 21.659C20.8912 21.9519 21.3661 21.9519 21.659 21.659C21.9519 21.3661 21.9519 20.8912 21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM3.75 4.5H10.25V3H3.75V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V3.75H3V10.25H4.5ZM13.75 4.5H20.25V3H13.75V4.5ZM19.5 3.75V10.25H21V3.75H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H3.75V21H10.25V19.5ZM4.5 20.25V13.75H3V20.25H4.5ZM17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078H13C13 19.217 14.7909 21.0078 17 21.0078V19.5078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078V13.0078C14.7909 13.0078 13 14.7987 13 17.0078H14.5ZM17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078H21C21 14.7987 19.2091 13.0078 17 13.0078V14.5078ZM18.7717 19.8323L20.5983 21.659L21.659 20.5984L19.8323 18.7717L18.7717 19.8323ZM19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726L19.8332 19.8314C20.5534 19.1088 21 18.1097 21 17.0078H19.5ZM18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078V21.0078C18.1068 21.0078 19.1098 20.5573 19.8332 19.8314L18.7708 18.7726Z\" fill=\"currentColor\"/>',\n category: \"Interface General\",\n },\n IconSquareGridCircle: {\n title: \"square-grid-circle, layout, grid, list, category, categories\",\n svg: '<path d=\"M3.75 3.75H10.25V10.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 13.75H10.25V20.25H3.75V13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 17C13.75 15.2051 15.2051 13.75 17 13.75C18.7949 13.75 20.25 15.2051 20.25 17C20.25 18.7949 18.7949 20.25 17 20.25C15.2051 20.25 13.75 18.7949 13.75 17Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 3.75H20.25V10.25H13.75V3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconCrossLarge: {\n title: \"cross-large, crossed large, close\",\n svg: '<path d=\"M4.75 4.75L19.25 19.25M19.25 4.75L4.75 19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconCrossSmall: {\n title: \"cross-small, crossed small, delete, remove\",\n svg: '<path d=\"M7.75 7.75L16.25 16.25M16.25 7.75L7.75 16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconBarsTwo: {\n title: \"bars-two, menu simple, nav simple\",\n svg: '<path d=\"M2.75 7.25H21.25M2.75 16.75H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconBarsTwo2: {\n title: \"bars-two-2, menu, nav\",\n svg: '<path d=\"M2.75 7.25H21.25M2.75 16.75H14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBarsThree: {\n title: \"bars-three, menu, list, hamburger\",\n svg: '<path d=\"M2.75 12H21.25M2.75 5.75H21.25M2.75 18.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBarsThree2: {\n title: \"bars-three-2, menu, list, hamburger\",\n svg: '<path d=\"M2.75 12H21.25M2.75 5.75H21.25M2.75 18.25H11.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconBarsThree3: {\n title: \"bars-three-3, menu, list, hamburger\",\n svg: '<path d=\"M2.75 12H13.25M2.75 5.75H21.25M2.75 18.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconDotGrid3x3: {\n title: \"dot-grid-3x3, menu, drag, grab\",\n svg: '<path d=\"M12 5.75C12.5523 5.75 13 5.30228 13 4.75C13 4.19772 12.5523 3.75 12 3.75C11.4477 3.75 11 4.19772 11 4.75C11 5.30228 11.4477 5.75 12 5.75Z\" fill=\"currentColor\"/><path d=\"M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z\" fill=\"currentColor\"/><path d=\"M12 20.25C12.5523 20.25 13 19.8023 13 19.25C13 18.6977 12.5523 18.25 12 18.25C11.4477 18.25 11 18.6977 11 19.25C11 19.8023 11.4477 20.25 12 20.25Z\" fill=\"currentColor\"/><path d=\"M19.25 5.75C19.8023 5.75 20.25 5.30228 20.25 4.75C20.25 4.19772 19.8023 3.75 19.25 3.75C18.6977 3.75 18.25 4.19772 18.25 4.75C18.25 5.30228 18.6977 5.75 19.25 5.75Z\" fill=\"currentColor\"/><path d=\"M19.25 13C19.8023 13 20.25 12.5523 20.25 12C20.25 11.4477 19.8023 11 19.25 11C18.6977 11 18.25 11.4477 18.25 12C18.25 12.5523 18.6977 13 19.25 13Z\" fill=\"currentColor\"/><path d=\"M19.25 20.25C19.8023 20.25 20.25 19.8023 20.25 19.25C20.25 18.6977 19.8023 18.25 19.25 18.25C18.6977 18.25 18.25 18.6977 18.25 19.25C18.25 19.8023 18.6977 20.25 19.25 20.25Z\" fill=\"currentColor\"/><path d=\"M4.75 13C5.30228 13 5.75 12.5523 5.75 12C5.75 11.4477 5.30228 11 4.75 11C4.19772 11 3.75 11.4477 3.75 12C3.75 12.5523 4.19772 13 4.75 13Z\" fill=\"currentColor\"/><path d=\"M4.75 20.25C5.30228 20.25 5.75 19.8023 5.75 19.25C5.75 18.6977 5.30228 18.25 4.75 18.25C4.19772 18.25 3.75 18.6977 3.75 19.25C3.75 19.8023 4.19772 20.25 4.75 20.25Z\" fill=\"currentColor\"/><path d=\"M4.75 5.75C5.30228 5.75 5.75 5.30228 5.75 4.75C5.75 4.19772 5.30228 3.75 4.75 3.75C4.19772 3.75 3.75 4.19772 3.75 4.75C3.75 5.30228 4.19772 5.75 4.75 5.75Z\" fill=\"currentColor\"/><path d=\"M12 5.75C12.5523 5.75 13 5.30228 13 4.75C13 4.19772 12.5523 3.75 12 3.75C11.4477 3.75 11 4.19772 11 4.75C11 5.30228 11.4477 5.75 12 5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 20.25C12.5523 20.25 13 19.8023 13 19.25C13 18.6977 12.5523 18.25 12 18.25C11.4477 18.25 11 18.6977 11 19.25C11 19.8023 11.4477 20.25 12 20.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 5.75C19.8023 5.75 20.25 5.30228 20.25 4.75C20.25 4.19772 19.8023 3.75 19.25 3.75C18.6977 3.75 18.25 4.19772 18.25 4.75C18.25 5.30228 18.6977 5.75 19.25 5.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 13C19.8023 13 20.25 12.5523 20.25 12C20.25 11.4477 19.8023 11 19.25 11C18.6977 11 18.25 11.4477 18.25 12C18.25 12.5523 18.6977 13 19.25 13Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 20.25C19.8023 20.25 20.25 19.8023 20.25 19.25C20.25 18.6977 19.8023 18.25 19.25 18.25C18.6977 18.25 18.25 18.6977 18.25 19.25C18.25 19.8023 18.6977 20.25 19.25 20.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.75 13C5.30228 13 5.75 12.5523 5.75 12C5.75 11.4477 5.30228 11 4.75 11C4.19772 11 3.75 11.4477 3.75 12C3.75 12.5523 4.19772 13 4.75 13Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.75 20.25C5.30228 20.25 5.75 19.8023 5.75 19.25C5.75 18.6977 5.30228 18.25 4.75 18.25C4.19772 18.25 3.75 18.6977 3.75 19.25C3.75 19.8023 4.19772 20.25 4.75 20.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.75 5.75C5.30228 5.75 5.75 5.30228 5.75 4.75C5.75 4.19772 5.30228 3.75 4.75 3.75C4.19772 3.75 3.75 4.19772 3.75 4.75C3.75 5.30228 4.19772 5.75 4.75 5.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconDotGrid2x3: {\n title: \"dot-grid-2x3, menu, drag, grab\",\n svg: '<path d=\"M7.5 5.75C7.5 4.7835 8.2835 4 9.25 4C10.2165 4 11 4.7835 11 5.75C11 6.7165 10.2165 7.5 9.25 7.5C8.2835 7.5 7.5 6.7165 7.5 5.75Z\" fill=\"currentColor\"/><path d=\"M13 5.75C13 4.7835 13.7835 4 14.75 4C15.7165 4 16.5 4.7835 16.5 5.75C16.5 6.7165 15.7165 7.5 14.75 7.5C13.7835 7.5 13 6.7165 13 5.75Z\" fill=\"currentColor\"/><path d=\"M7.5 18.25C7.5 17.2835 8.2835 16.5 9.25 16.5C10.2165 16.5 11 17.2835 11 18.25C11 19.2165 10.2165 20 9.25 20C8.2835 20 7.5 19.2165 7.5 18.25Z\" fill=\"currentColor\"/><path d=\"M13 18.25C13 17.2835 13.7835 16.5 14.75 16.5C15.7165 16.5 16.5 17.2835 16.5 18.25C16.5 19.2165 15.7165 20 14.75 20C13.7835 20 13 19.2165 13 18.25Z\" fill=\"currentColor\"/><path d=\"M7.5 11.9C7.5 10.9335 8.2835 10.15 9.25 10.15C10.2165 10.15 11 10.9335 11 11.9V12C11 12.9665 10.2165 13.75 9.25 13.75C8.2835 13.75 7.5 12.9665 7.5 12V11.9Z\" fill=\"currentColor\"/><path d=\"M13 11.9C13 10.9335 13.7835 10.15 14.75 10.15C15.7165 10.15 16.5 10.9335 16.5 11.9V12C16.5 12.9665 15.7165 13.75 14.75 13.75C13.7835 13.75 13 12.9665 13 12V11.9Z\" fill=\"currentColor\"/>',\n category: \"Interface General\",\n },\n IconDotGrid1x3Horizontal: {\n title: \"dot-grid-1x3-horizontal, menu, drag, grab\",\n svg: '<path d=\"M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z\" fill=\"currentColor\"/><path d=\"M20.25 13C20.8023 13 21.25 12.5523 21.25 12C21.25 11.4477 20.8023 11 20.25 11C19.6977 11 19.25 11.4477 19.25 12C19.25 12.5523 19.6977 13 20.25 13Z\" fill=\"currentColor\"/><path d=\"M3.75 13C4.30228 13 4.75 12.5523 4.75 12C4.75 11.4477 4.30228 11 3.75 11C3.19772 11 2.75 11.4477 2.75 12C2.75 12.5523 3.19772 13 3.75 13Z\" fill=\"currentColor\"/><path d=\"M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 13C20.8023 13 21.25 12.5523 21.25 12C21.25 11.4477 20.8023 11 20.25 11C19.6977 11 19.25 11.4477 19.25 12C19.25 12.5523 19.6977 13 20.25 13Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 13C4.30228 13 4.75 12.5523 4.75 12C4.75 11.4477 4.30228 11 3.75 11C3.19772 11 2.75 11.4477 2.75 12C2.75 12.5523 3.19772 13 3.75 13Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconDotGrid1x3Vertical: {\n title: \"dot-grid-1x3-vertical, menu, drag, grab\",\n svg: '<path d=\"M12 4.75C12.5523 4.75 13 4.30228 13 3.75C13 3.19772 12.5523 2.75 12 2.75C11.4477 2.75 11 3.19772 11 3.75C11 4.30228 11.4477 4.75 12 4.75Z\" fill=\"currentColor\"/><path d=\"M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z\" fill=\"currentColor\"/><path d=\"M12 21.25C12.5523 21.25 13 20.8023 13 20.25C13 19.6977 12.5523 19.25 12 19.25C11.4477 19.25 11 19.6977 11 20.25C11 20.8023 11.4477 21.25 12 21.25Z\" fill=\"currentColor\"/><path d=\"M12 4.75C12.5523 4.75 13 4.30228 13 3.75C13 3.19772 12.5523 2.75 12 2.75C11.4477 2.75 11 3.19772 11 3.75C11 4.30228 11.4477 4.75 12 4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 21.25C12.5523 21.25 13 20.8023 13 20.25C13 19.6977 12.5523 19.25 12 19.25C11.4477 19.25 11 19.6977 11 20.25C11 20.8023 11.4477 21.25 12 21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconLoader: {\n title: \"loader\",\n svg: '<path d=\"M12.0003 2.75L12 6.25M12.0003 17.75V21.25M2.75 12.0007H6.25M17.75 12.0007H21.25M5.45948 5.45905L7.93414 7.93414M16.0661 16.0656L18.541 18.5405M5.45976 18.5412L7.93463 16.0664M16.0664 7.93463L18.5412 5.45976\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconPlusLarge: {\n title: \"plus-large, add large\",\n svg: '<path d=\"M12 3.75V12M12 12V20.25M12 12H3.75M12 12H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconPlusSmall: {\n title: \"plus-small, add small\",\n svg: '<path d=\"M12 6.75V12M12 12V17.25M12 12H6.75M12 12H17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconMinusLarge: {\n title: \"minus-large, remove, delete\",\n svg: '<path d=\"M3.75 12H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconMinusSmall: {\n title: \"minus-small, remove, delete\",\n svg: '<path d=\"M6.75 12H17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconMathEqualsCircle: {\n title: \"math-equals-circle\",\n svg: '<circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.75 10.25H15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.75 13.75H15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconMathEquals: {\n title: \"math-equals, =\",\n svg: '<path d=\"M4.75 9.25H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M4.75 14.75H19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconMathGreaterThanCircle: {\n title: \"math-greater-than-circle, >\",\n svg: '<circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M9.25 8.75L15.75 12L9.25 15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconMathGreaterThan: {\n title: \"math-greater-than, >\",\n svg: '<path d=\"M5.75 6.75L18.25 12L5.75 17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconMathLessThanCircle: {\n title: \"math-less-than-circle, <\",\n svg: '<path d=\"M2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M14.75 8.75L8.25 12L14.75 15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconMathLessThan: {\n title: \"math-less-than, <\",\n svg: '<path d=\"M18.25 6.75L5.75 12L18.25 17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconMathBasic: {\n title: \"math-basic, calc\",\n svg: '<path d=\"M7 3.75V10.25M3.75 7H10.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.75 7H20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 17H20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.25 14.25L7.00002 17M7.00002 17L9.75 19.75M7.00002 17L4.25 19.75M7.00002 17L9.75 14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 14V13.99M17.25 14C17.25 14.1381 17.1381 14.25 17 14.25C16.8619 14.25 16.75 14.1381 16.75 14C16.75 13.8619 16.8619 13.75 17 13.75C17.1381 13.75 17.25 13.8619 17.25 14Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 20V19.99M17.25 20C17.25 20.1381 17.1381 20.25 17 20.25C16.8619 20.25 16.75 20.1381 16.75 20C16.75 19.8619 16.8619 19.75 17 19.75C17.1381 19.75 17.25 19.8619 17.25 20Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconMathScientific: {\n title: \"math-scientific, function\",\n svg: '<path d=\"M7.25 5.75C5.99971 5.75 4.93268 6.61915 4.72714 7.80499L3.27286 16.195C3.06732 17.3809 2.00029 18.25 0.75 18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.5 10.5H6.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11 7C9.66667 10.4489 9.66667 13.5511 11 17\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22 7C23.3333 10.4489 23.3333 13.5511 22 17\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 9.5L18.5 14.5M18.5 9.5L14.5 14.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconMathNotes: {\n title: \"math-notes, function\",\n svg: '<path d=\"M12 3.75V20.25M3.75 12H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 19.25C12 19.25 12 4.75 20.25 4.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.25 5.25L7 6.96429M7 6.96429L8.75 5.25M7 6.96429V9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.25 15.25L18.75 18.75M18.75 15.25L15.25 18.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconMathMultiplication: {\n title: \"math-multiplication\",\n svg: '<path d=\"M4.75 12H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.75 6.25H12.25M12.5 6.25C12.5 6.52614 12.2761 6.75 12 6.75C11.7239 6.75 11.5 6.52614 11.5 6.25C11.5 5.97386 11.7239 5.75 12 5.75C12.2761 5.75 12.5 5.97386 12.5 6.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.75 17.75H12.25M12.5 17.75C12.5 18.0261 12.2761 18.25 12 18.25C11.7239 18.25 11.5 18.0261 11.5 17.75C11.5 17.4739 11.7239 17.25 12 17.25C12.2761 17.25 12.5 17.4739 12.5 17.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareChecklist: {\n title: \"square-checklist, checklist box, check, list\",\n svg: '<path d=\"M7.54297 9.49775L8.66797 10.2478L10.5396 7.75224M13.808 9H16.308M13.75 15H16.25M7.54297 15.4989L8.66797 16.2489L10.5396 13.7534M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareChecklistMagnifyingGlass: {\n title:\n \"square-checklist-magnifying-glass, checklist box, check, list, search\",\n svg: '<path d=\"M7.54297 9.49775L8.66797 10.2478L10.5396 7.75224M13.808 9H16.308M7.54297 15.4989L8.66797 16.2489L10.5396 13.7534M20.25 11.25V3.75H3.75V20.25H11.25M19.3713 19.364C18.1997 20.5355 16.3003 20.5355 15.1287 19.364C13.9571 18.1924 13.9571 16.2929 15.1287 15.1213C16.3003 13.9497 18.1997 13.9497 19.3713 15.1213C20.5429 16.2929 20.5429 18.1924 19.3713 19.364ZM19.3713 19.364L21.25 21.2426\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconSquareChecklistBell: {\n title: \"square-checklist-bell, checklist box, check, list, search\",\n svg: '<path d=\"M7.54297 9.49775L8.66797 10.2478L10.5396 7.75224M13.808 9H16.308M7.54297 15.4989L8.66797 16.2489L10.5396 13.7534M20.25 10.75V3.75H3.75V20.25H11.75M16.8912 20.5781C17.0998 20.9777 17.518 21.2505 18 21.2505C18.4819 21.2505 18.9002 20.9777 19.1088 20.5781M21.25 20.25V17C21.25 15.2051 19.7949 13.75 18 13.75C16.2051 13.75 14.75 15.2051 14.75 17V20.25H21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconQuickSearch: {\n title: \"quick-search, quick-menu, command-k\",\n svg: '<path d=\"M18 17L21.25 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M3.70746 16.1746L7.91799 11.2623C8.24057 10.8859 8.85524 11.1579 8.79376 11.6497L8.49998 14H10.9129C11.34 14 11.5705 14.501 11.2925 14.8254L7.08196 19.7377C6.75938 20.114 6.14471 19.8421 6.20619 19.3502L6.49998 17H4.08709C3.65991 17 3.42946 16.4989 3.70746 16.1746Z\" fill=\"currentColor\"/><path d=\"M12 19.25C16.5563 19.25 20.25 15.5563 20.25 11C20.25 6.44365 16.5563 2.75 12 2.75C7.44365 2.75 3.75 6.44365 3.75 11\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconLightbulbGlow: {\n title: \"lightbulb-glow, idea, reasoning, think\",\n svg: '<path d=\"M2.49012 13.0894L1.53906 13.3984M22.4623 6.60006L21.5112 6.90908M2.49012 6.90863L1.53906 6.59961M22.4623 13.398L21.5112 13.089\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.9991 2.75C7.99456 2.75 4.74823 5.99633 4.74823 10.0009C4.74823 12.3433 5.85901 14.4264 7.58257 15.7519C7.94542 16.031 8.33542 16.2765 8.74793 16.4838V18.9988C8.74793 20.7944 10.2035 22.25 11.9991 22.25C13.7947 22.25 15.2503 20.7944 15.2503 18.9988V16.4838C15.6628 16.2765 16.0528 16.031 16.4157 15.7519C18.1392 14.4264 19.25 12.3433 19.25 10.0009C19.25 5.99633 16.0037 2.75 11.9991 2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.74792 17.75H15.2503\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Interface General\",\n },\n IconLoadingCircle: {\n title: \"loading-circle, quarter, spinner\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeOpacity=\"0.3\" strokeWidth=\"1.5\"/><path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Interface General\",\n },\n IconCmd: {\n title: \"cmd, command, apple, key\",\n svg: '<path d=\"M9.25 9.25V6.5C9.25 4.98122 8.01878 3.75 6.5 3.75C4.98122 3.75 3.75 4.98122 3.75 6.5C3.75 8.01878 4.98122 9.25 6.5 9.25H9.25ZM9.25 9.25H14.75M9.25 9.25V14.75M14.75 9.25V6.5C14.75 4.98122 15.9812 3.75 17.5 3.75C19.0188 3.75 20.25 4.98122 20.25 6.5C20.25 8.01878 19.0188 9.25 17.5 9.25H14.75ZM14.75 9.25V14.75M14.75 14.75H9.25M14.75 14.75V17.5C14.75 19.0188 15.9812 20.25 17.5 20.25C19.0188 20.25 20.25 19.0188 20.25 17.5C20.25 15.9812 19.0188 14.75 17.5 14.75H14.75ZM9.25 14.75V17.5C9.25 19.0188 8.01878 20.25 6.5 20.25C4.98122 20.25 3.75 19.0188 3.75 17.5C3.75 15.9812 4.98122 14.75 6.5 14.75H9.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/>',\n category: \"Keyboard\",\n },\n IconCmdBox: {\n title: \"cmd-box, command, apple, key\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM10.7812 10.0312V8.39062H9.28125V10.0312H10.7812ZM8.39062 10.7812H10.0312V9.28125H8.39062V10.7812ZM14.7188 10.0312V8.39062H13.2188V10.0312H14.7188ZM15.6094 9.28125H13.9688V10.7812H15.6094V9.28125ZM10.0312 10.7812H13.9688V9.28125H10.0312V10.7812ZM13.9688 13.2188H10.0312V14.7188H13.9688V13.2188ZM10.7812 13.9688V10.0312H9.28125V13.9688H10.7812ZM13.2188 10.0312V13.9688H14.7188V10.0312H13.2188ZM14.7188 15.6094V13.9688H13.2188V15.6094H14.7188ZM10.7812 15.6094V13.9688H9.28125V15.6094H10.7812ZM10.0312 13.2188H8.39062V14.7188H10.0312V13.2188ZM13.9688 14.7188H15.6094V13.2188H13.9688V14.7188ZM7.5 15.6094C7.5 15.1175 7.89875 14.7188 8.39062 14.7188V13.2188C7.07032 13.2188 6 14.2891 6 15.6094H7.5ZM18 15.6094C18 14.2891 16.9297 13.2188 15.6094 13.2188V14.7188C16.1013 14.7188 16.5 15.1175 16.5 15.6094H18ZM13.2188 15.6094C13.2188 16.9297 14.2891 18 15.6094 18V16.5C15.1175 16.5 14.7188 16.1013 14.7188 15.6094H13.2188ZM16.5 8.39062C16.5 8.8825 16.1013 9.28125 15.6094 9.28125V10.7812C16.9297 10.7812 18 9.71093 18 8.39062H16.5ZM14.7188 8.39062C14.7188 7.89875 15.1175 7.5 15.6094 7.5V6C14.2891 6 13.2188 7.07032 13.2188 8.39062H14.7188ZM8.39062 18C9.71093 18 10.7812 16.9297 10.7812 15.6094H9.28125C9.28125 16.1013 8.8825 16.5 8.39062 16.5V18ZM6 8.39062C6 9.71093 7.07032 10.7812 8.39062 10.7812V9.28125C7.89875 9.28125 7.5 8.8825 7.5 8.39062H6ZM8.39062 16.5C7.89875 16.5 7.5 16.1013 7.5 15.6094H6C6 16.9297 7.07032 18 8.39062 18V16.5ZM8.39062 6C7.07032 6 6 7.07032 6 8.39062H7.5C7.5 7.89875 7.89875 7.5 8.39062 7.5V6ZM15.6094 7.5C16.1013 7.5 16.5 7.89875 16.5 8.39062H18C18 7.07032 16.9297 6 15.6094 6V7.5ZM16.5 15.6094C16.5 16.1013 16.1013 16.5 15.6094 16.5V18C16.9297 18 18 16.9297 18 15.6094H16.5ZM10.7812 8.39062C10.7812 7.07032 9.71093 6 8.39062 6V7.5C8.8825 7.5 9.28125 7.89875 9.28125 8.39062H10.7812Z\" fill=\"currentColor\"/>',\n category: \"Keyboard\",\n },\n IconOpt: {\n title: \"opt, option, key\",\n svg: '<path d=\"M3.75 4.75H8L16 19.25H20.25M15.75 4.75H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Keyboard\",\n },\n IconOptAlt: {\n title: \"opt-alt, option alt, key\",\n svg: '<path d=\"M3.75 19.25H8L16 4.75H20.25M15.75 19.25H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Keyboard\",\n },\n IconEsc: {\n title: \"esc, power\",\n svg: '<path d=\"M7.5 3.9165C4.66638 5.49732 2.75 8.52488 2.75 12C2.75 17.1087 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1087 21.25 12C21.25 8.54872 19.3598 5.53888 16.5582 3.94924M12 1.75V5.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Keyboard\",\n },\n IconBackward: {\n title: \"backward, delete, remove, key\",\n svg: '<path d=\"M15 9.75L12.75 12M12.75 12L10.5 14.25M12.75 12L10.5 9.75M12.75 12L15 14.25M6 4.75H21.25V19.25H6L1.5 12L6 4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Keyboard\",\n },\n IconAt: {\n title: \"at, handle, @\",\n svg: '<path d=\"M16.8684 19.8667C15.4543 20.7437 13.7863 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 13.9797 20.2662 16.0242 17.9715 15.8156C16.0837 15.644 14.7249 13.9258 14.993 12.0492L15.5226 8.40278M14.9375 12.4805C14.63 14.6681 12.8291 16.2235 10.9149 15.9544C9.00068 15.6854 7.69817 13.6939 8.00562 11.5063C8.31308 9.31862 10.1141 7.76327 12.0283 8.03229C13.9424 8.30131 15.245 10.2928 14.9375 12.4805Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Keyboard\",\n },\n IconHashtag: {\n title: \"hashtag, #\",\n svg: '<path d=\"M8.75 3.75L6.75 20.25M17.25 3.75L15.25 20.25M3.75 7.75H20.25M20.25 16.25H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Keyboard\",\n },\n IconControl: {\n title: \"control\",\n svg: '<path d=\"M11.75 10L14 7.75L16.25 10M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Keyboard\",\n },\n IconShift: {\n title: \"shift\",\n svg: '<path d=\"M2.25 13.25L12 2.75L21.75 13.25H17.1316V20.25H6.86842V13.25H2.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Keyboard\",\n },\n IconLayoutSidebar: {\n title: \"layout-sidebar, grid, window\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5Z\" fill=\"currentColor\"/><path d=\"M10.5 3.75V3H9V3.75H10.5ZM9 20.25V21H10.5V20.25H9ZM10.5 12V3.75H9V12H10.5ZM9 12V20.25H10.5V12H9Z\" fill=\"currentColor\"/><path d=\"M10 12H20\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Layout\",\n },\n IconLayoutTopbar: {\n title: \"layout-topbar, grid, window\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5Z\" fill=\"currentColor\"/><path d=\"M20.25 9.75H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M11.25 20.25V21H12.75V20.25H11.25ZM12.75 9.75V9H11.25V9.75H12.75ZM12.75 20.25V9.75H11.25V20.25H12.75Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayoutDashboard: {\n title: \"layout-dashboard, grid, window\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5Z\" fill=\"currentColor\"/><path d=\"M12 13.5H11.25V15H12V13.5ZM20.25 15H21V13.5H20.25V15ZM12 15H20.25V13.5H12V15Z\" fill=\"currentColor\"/><path d=\"M12 10.5H12.75V9H12V10.5ZM3.75 9H3V10.5H3.75V9ZM12 9H3.75V10.5H12V9Z\" fill=\"currentColor\"/><path d=\"M11.25 20.25V21H12.75V20.25H11.25ZM12.75 3.75V3H11.25V3.75H12.75ZM11.25 3.75V20.25H12.75V3.75H11.25Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayoutWindow: {\n title: \"layout-window, grid, window\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5Z\" fill=\"currentColor\"/><path d=\"M3.75 12H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M12.75 3.75V3H11.25V3.75H12.75ZM11.25 20.25V21H12.75V20.25H11.25ZM11.25 3.75V12H12.75V3.75H11.25ZM11.25 12V20.25H12.75V12H11.25Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayoutTop: {\n title: \"layout-top, grid, window\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5Z\" fill=\"currentColor\"/><path d=\"M20.25 10.5H21V9H20.25V10.5ZM3.75 9H3V10.5H3.75V9ZM3.75 10.5H20.25V9H3.75V10.5Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayoutBottom: {\n title: \"layout-bottom, grid, window\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5Z\" fill=\"currentColor\"/><path d=\"M20.25 15H21V13.5H20.25V15ZM3.75 13.5H3V15H3.75V13.5ZM3.75 15H20.25V13.5H3.75V15Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayoutRight: {\n title: \"layout-right, grid, window\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5Z\" fill=\"currentColor\"/><path d=\"M13.5 20.25V21H15V20.25H13.5ZM15 3.75V3H13.5V3.75H15ZM15 20.25V3.75H13.5V20.25H15Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayoutLeft: {\n title: \"layout-left, grid, window\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5Z\" fill=\"currentColor\"/><path d=\"M9 20.25V21H10.5V20.25H9ZM10.5 3.75V3H9V3.75H10.5ZM10.5 20.25V3.75H9V20.25H10.5Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayoutHalf: {\n title: \"layout-half\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5Z\" fill=\"currentColor\"/><path d=\"M20.25 12.75H21V11.25H20.25V12.75ZM3.75 11.25H3V12.75H3.75V11.25ZM3.75 12.75H20.25V11.25H3.75V12.75Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayoutThird: {\n title: \"layout-third\",\n svg: '<path d=\"M20.25 3.75H21.0234C21.0234 3.32284 20.6772 2.97656 20.25 2.97656V3.75ZM20.25 20.25V21.0234C20.6772 21.0234 21.0234 20.6772 21.0234 20.25H20.25ZM3.75 20.25H2.97656C2.97656 20.6772 3.32284 21.0234 3.75 21.0234V20.25ZM3.75 3.75V2.97656C3.32284 2.97656 2.97656 3.32284 2.97656 3.75H3.75ZM19.4766 3.75V20.25H21.0234V3.75H19.4766ZM20.25 19.4766H3.75V21.0234H20.25V19.4766ZM4.52344 20.25V3.75H2.97656V20.25H4.52344ZM3.75 4.52344H20.25V2.97656H3.75V4.52344Z\" fill=\"currentColor\"/><path d=\"M20.25 15.5264H21.0234V13.9795H20.25V15.5264ZM3.75 13.9795H2.97656V15.5264H3.75V13.9795ZM3.75 15.5264H20.25V13.9795H3.75V15.5264Z\" fill=\"currentColor\"/><path d=\"M20.25 10.0205H21.0234V8.47363H20.25V10.0205ZM3.75 8.47363H2.97656V10.0205H3.75V8.47363ZM3.75 10.0205H20.25V8.47363H3.75V10.0205Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayoutGrid1: {\n title: \"layout-grid-1, grid, window\",\n svg: '<path d=\"M3.75 3.75H10.25V8.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.75 15.75H20.25V20.25H13.75V15.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 11.75H10.25V20.25H3.75V11.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 3.75H20.25V12.25H13.75V3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconLayoutGrid2: {\n title: \"layout-grid-2, grid\",\n svg: '<path d=\"M3.75 3.75H10.25V10.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.75 3.75H20.25V10.25H13.75V3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 13.75H10.25V20.25H3.75V13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 13.75H20.25V20.25H13.75V13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconLayoutColumn: {\n title: \"layout-column, grid, column\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5Z\" fill=\"currentColor\"/><path d=\"M11.25 3.75V20.25H12.75V3.75H11.25Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayoutAlignLeft: {\n title: \"layout-align-left\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM7 16.25C7 16.6642 7.33579 17 7.75 17C8.16421 17 8.5 16.6642 8.5 16.25H7ZM8.5 7.75C8.5 7.33579 8.16421 7 7.75 7C7.33579 7 7 7.33579 7 7.75H8.5ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM8.5 16.25V7.75H7V16.25H8.5Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconAlignHorizontalCenter: {\n title: \"align-horizontal-center, alignment\",\n svg: '<path d=\"M20.25 20.25V3.75H3.75V20.25H20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 16.25L12 7.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Layout\",\n },\n IconLayoutAlignRight: {\n title: \"layout-align-right\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM15.5 16.25C15.5 16.6642 15.8358 17 16.25 17C16.6642 17 17 16.6642 17 16.25H15.5ZM17 7.75C17 7.33579 16.6642 7 16.25 7C15.8358 7 15.5 7.33579 15.5 7.75H17ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM17 16.25V7.75H15.5V16.25H17Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayoutAlignTop: {\n title: \"layout-align-top\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM7.75 7C7.33579 7 7 7.33579 7 7.75C7 8.16421 7.33579 8.5 7.75 8.5V7ZM16.25 8.5C16.6642 8.5 17 8.16421 17 7.75C17 7.33579 16.6642 7 16.25 7V8.5ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM7.75 8.5H16.25V7H7.75V8.5Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconAlignVerticalCenter: {\n title: \"align-vertical-center, alignment\",\n svg: '<path d=\"M20.25 20.25V3.75H3.75V20.25H20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 12H16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Layout\",\n },\n IconLayoutAlignBottom: {\n title: \"layout-align-bottom\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM7.75 15.5C7.33579 15.5 7 15.8358 7 16.25C7 16.6642 7.33579 17 7.75 17V15.5ZM16.25 17C16.6642 17 17 16.6642 17 16.25C17 15.8358 16.6642 15.5 16.25 15.5V17ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM7.75 17H16.25V15.5H7.75V17Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconSlideAdd: {\n title: \"slide-add\",\n svg: '<path d=\"M17.25 6.86111V2.75H2.75V17.25H6.75M14.0556 10.75V14.0556M14.0556 14.0556V17.25M14.0556 14.0556H10.75M14.0556 14.0556H17.25M6.75 6.86111H21.25V21.25H6.75V6.86111Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconColumnWide: {\n title: \"column-wide, colums\",\n svg: '<path d=\"M2.75 19.25H2C2 19.6642 2.33579 20 2.75 20V19.25ZM2.75 4.75V4C2.33579 4 2 4.33579 2 4.75H2.75ZM21.25 4.75H22C22 4.33579 21.6642 4 21.25 4V4.75ZM21.25 19.25V20C21.6642 20 22 19.6642 22 19.25H21.25ZM3.5 19.25V4.75H2V19.25H3.5ZM20.5 4.75V19.25H22V4.75H20.5ZM21.25 18.5H2.75V20H21.25V18.5ZM2.75 5.5H21.25V4H2.75V5.5Z\" fill=\"currentColor\"/><path d=\"M11.25 19.25V20H12.75V19.25H11.25ZM12.75 4.75V4H11.25V4.75H12.75ZM12.75 19.25V4.75H11.25V19.25H12.75Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconColumnWideAdd: {\n title: \"column-wide-add\",\n svg: '<path d=\"M2.75 19.25H2C2 19.6642 2.33579 20 2.75 20V19.25ZM2.75 4.75V4C2.33579 4 2 4.33579 2 4.75H2.75ZM12 19.25V20C12.4142 20 12.75 19.6642 12.75 19.25H12ZM21.25 4.75H22C22 4.33579 21.6642 4 21.25 4V4.75ZM20.5 10.25C20.5 10.6642 20.8358 11 21.25 11C21.6642 11 22 10.6642 22 10.25H20.5ZM12.75 5C12.75 4.58579 12.4142 4.25 12 4.25C11.5858 4.25 11.25 4.58579 11.25 5H12.75ZM3.5 19.25V4.75H2V19.25H3.5ZM12 18.5H2.75V20H12V18.5ZM20.5 4.75V10.25H22V4.75H20.5ZM2.75 5.5H12V4H2.75V5.5ZM12 5.5H21.25V4H12V5.5ZM12.75 19.25V5H11.25V19.25H12.75Z\" fill=\"currentColor\"/><path d=\"M19 13.75V17M19 17V20.25M19 17H15.75M19 17H22.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconColumnWideRemove: {\n title: \"column-wide-remove\",\n svg: '<path d=\"M2.75 19.25H2C2 19.6642 2.33579 20 2.75 20V19.25ZM2.75 4.75V4C2.33579 4 2 4.33579 2 4.75H2.75ZM12 19.25V20C12.4142 20 12.75 19.6642 12.75 19.25H12ZM21.25 4.75H22C22 4.33579 21.6642 4 21.25 4V4.75ZM20.5 10.25C20.5 10.6642 20.8358 11 21.25 11C21.6642 11 22 10.6642 22 10.25H20.5ZM3.5 19.25V4.75H2V19.25H3.5ZM12 18.5H2.75V20H12V18.5ZM20.5 4.75V10.25H22V4.75H20.5ZM2.75 5.5H12V4H2.75V5.5ZM12 5.5H21.25V4H12V5.5ZM12.75 19.25V4.75H11.25V19.25H12.75Z\" fill=\"currentColor\"/><path d=\"M17.2803 14.2197C16.9874 13.9268 16.5126 13.9268 16.2197 14.2197C15.9268 14.5126 15.9268 14.9874 16.2197 15.2803L17.2803 14.2197ZM20.7197 19.7803C21.0126 20.0732 21.4874 20.0732 21.7803 19.7803C22.0732 19.4874 22.0732 19.0126 21.7803 18.7197L20.7197 19.7803ZM16.2197 18.7197C15.9268 19.0126 15.9268 19.4874 16.2197 19.7803C16.5126 20.0732 16.9874 20.0732 17.2803 19.7803L16.2197 18.7197ZM21.7803 15.2803C22.0732 14.9874 22.0732 14.5126 21.7803 14.2197C21.4874 13.9268 21.0126 13.9268 20.7197 14.2197L21.7803 15.2803ZM16.2197 15.2803L18.4697 17.5303L19.5303 16.4697L17.2803 14.2197L16.2197 15.2803ZM18.4697 17.5303L20.7197 19.7803L21.7803 18.7197L19.5303 16.4697L18.4697 17.5303ZM17.2803 19.7803L19.5303 17.5303L18.4697 16.4697L16.2197 18.7197L17.2803 19.7803ZM19.5303 17.5303L21.7803 15.2803L20.7197 14.2197L18.4697 16.4697L19.5303 17.5303Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconColumnWideHalf: {\n title: \"column-wide-half\",\n svg: '<path d=\"M21.25 4.75H2.75V19.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M2.75 12H21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Layout\",\n },\n IconColumnWideHalfAdd: {\n title: \"column-wide-half-add\",\n svg: '<path d=\"M11.25 19.25H2.75V12M2.75 12V4.75H21.25V12H2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.75 16.25V19.25M18.75 19.25V22.25M18.75 19.25H15.75M18.75 19.25H21.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconColumnWideHalfRemove: {\n title: \"column-wide-half-remove\",\n svg: '<path d=\"M2.75 12V19.25H11.25M2.75 12V4.75H21.25V12H2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M16.75 16.75L19 19M19 19L21.25 21.25M19 19L16.75 21.25M19 19L21.25 16.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconSlideWideAdd: {\n title: \"slide-wide-add\",\n svg: '<path d=\"M21.25 4.75H2.75V19.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 8.75V12M12 12V15.25M12 12H8.75M12 12H15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconSlideTallAdd: {\n title: \"slide-tall-add\",\n svg: '<path d=\"M4.75 2.75V21.25H19.25V2.75H4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.75 12H12M12 12H15.25M12 12V15.25M12 12V8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconSlidesTall: {\n title: \"slides-tall\",\n svg: '<path d=\"M15.25 6.75V2.75H4.75V17.25H8.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.25 6.75H8.75V21.25H19.25V6.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconSlidesTallAdd: {\n title: \"slides-tall-add\",\n svg: '<path d=\"M15.25 6.75V2.75H4.75V17.25H8.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14 11.75V14M14 14V16.25M14 14H11.75M14 14H16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 6.75H8.75V21.25H19.25V6.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconSlidesWide: {\n title: \"slides-wide\",\n svg: '<path d=\"M6.75 19.25V8.75H21.25V19.25H6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.75 15.25H2.75V4.75H17.25V8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconSlidesWideAdd: {\n title: \"slides-wide-add\",\n svg: '<path d=\"M6.75 19.25V8.75H21.25V19.25H6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M6.75 15.25H2.75V4.75H17.25V8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M11.75 14H14M14 14H16.25M14 14V11.75M14 14V16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Layout\",\n },\n IconLayersTwo: {\n title: \"layers-two, stack\",\n svg: '<path d=\"M8.3 12L2.75 15.0938L12 20.25L21.25 15.0938L15.7 12M8.3 12L2.75 8.90625L12 3.75L21.25 8.90625L15.7 12M8.3 12L12 14.0625L15.7 12\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconLayersThree: {\n title: \"layers-three, stack\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.6869 3.06849C11.8856 2.97717 12.1144 2.97717 12.3131 3.06849L21.5631 7.31849C21.8294 7.44082 22 7.707 22 8C22 8.293 21.8294 8.55918 21.5631 8.68151L12.3131 12.9315C12.1144 13.0228 11.8856 13.0228 11.6869 12.9315L2.43687 8.68151C2.17063 8.55918 2 8.293 2 8C2 7.707 2.17063 7.44082 2.43687 7.31849L11.6869 3.06849ZM4.54641 8L12 11.4246L19.4536 8L12 4.57538L4.54641 8Z\" fill=\"currentColor\"/><path d=\"M21.5631 11.3185C21.8294 11.4408 22 11.707 22 12C22 12.293 21.8294 12.5592 21.5631 12.6815L12.3131 16.9315C12.1144 17.0228 11.8856 17.0228 11.6869 16.9315L2.43687 12.6815C2.17063 12.5592 2 12.293 2 12C2 11.707 2.17063 11.4408 2.43687 11.3185C2.63561 11.2272 2.86431 11.2272 3.06304 11.3185L12 15.4246L20.9368 11.3185C21.1356 11.2272 21.3643 11.2272 21.5631 11.3185Z\" fill=\"currentColor\"/><path d=\"M21.5631 15.3185C21.8294 15.4408 22 15.707 22 16C22 16.293 21.8294 16.5592 21.5631 16.6815L12.3131 20.9315C12.1144 21.0228 11.8856 21.0228 11.6869 20.9315L2.43687 16.6815C2.17063 16.5592 2 16.293 2 16C2 15.707 2.17063 15.4408 2.43687 15.3185C2.63561 15.2272 2.86431 15.2272 3.06304 15.3185L12 19.4246L20.9368 15.3185C21.1356 15.2272 21.3643 15.2272 21.5631 15.3185Z\" fill=\"currentColor\"/>',\n category: \"Layout\",\n },\n IconLayersBehind: {\n title: \"layers-behind, slides, pages\",\n svg: '<path d=\"M2.75 19.25V6.75H21.25V19.25H2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75 3.75H19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconCarussel: {\n title: \"carussel, slides\",\n svg: '<path d=\"M17.5 3.75H6.5V20.25H17.5V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M17.5 5.75H21.25V18.25H17.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 18.25H2.75V5.75H6.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconPlaceholder: {\n title: \"placeholder, generate\",\n svg: '<path d=\"M3.75 6.25V3.75H6.25M17.75 3.75H20.25V6.25M20.25 17.75V20.25H17.75M6.25 20.25H3.75V17.75M3.75 13.75V10.25M10.25 3.75H13.75M20.25 10.25V13.75M13.75 20.25H10.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconKanbanView: {\n title: \"kanban-view, columns\",\n svg: '<path d=\"M9.75 4.75H14.25V19.25H9.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M2.75 4.75H7.25V15.1071H2.75V4.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M16.75 4.75H21.25V13.0357H16.75V4.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconSidebarLeftArrow: {\n title: \"sidebar-left-arrow\",\n svg: '<path d=\"M15.25 9.75L13 12L15.25 14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.25 3.75V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Layout\",\n },\n IconSidebarWideLeftArrow: {\n title: \"sidebar-wide-left-arrow\",\n svg: '<path d=\"M15.25 9.75L13 12L15.25 14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.75 4.75V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Layout\",\n },\n IconSidebarSimpleLeftWide: {\n title: \"sidebar-simple-left-wide\",\n svg: '<path d=\"M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M8.25 5V12V19\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconSidebarSimpleRightWide: {\n title: \"sidebar-simple-right-wide\",\n svg: '<path d=\"M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.75 5V12V19\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconSidebarSimpleLeftSquare: {\n title: \"sidebar-simple-left-square\",\n svg: '<path d=\"M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.75 4V12V20\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconSidebarSimpleRightSquare: {\n title: \"sidebar-simple-right-square\",\n svg: '<path d=\"M15.25 4V20\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Layout\",\n },\n IconGlobus: {\n title: \"globus, map, earth, globe\",\n svg: '<path d=\"M12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75M12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75M12 21.25C9.65279 21.25 7.75 17.1086 7.75 12C7.75 6.89137 9.65279 2.75 12 2.75M12 21.25C14.3472 21.25 16.25 17.1086 16.25 12C16.25 6.89137 14.3472 2.75 12 2.75M21 12H3\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/>',\n category: \"Location\",\n },\n IconEarth: {\n title: \"earth, globe, world\",\n svg: '<path d=\"M14.2452 3.02438L13.0031 7.99995L9.0081 9.00495L8.0031 10.9999L3.7503 7.81174M14.2452 3.02438C13.5264 2.84514 12.7743 2.75 12 2.75C8.39887 2.75 5.27837 4.80785 3.7503 7.81174M14.2452 3.02438C18.2689 4.02764 21.25 7.66569 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 10.4925 3.11062 9.06923 3.7503 7.81174M15.0029 17L16.0029 15L13.0549 13.019L11.1119 12.895L10.0029 14L12.0029 17H15.0029Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Location\",\n },\n IconWorld: {\n title: \"world, globus, internet, web, globe\",\n svg: '<path d=\"M19.7783 4.22184L4.22197 19.7782M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12ZM18.5163 18.516C17.3167 19.7156 13.427 17.7707 9.82826 14.172C6.22955 10.5733 4.28467 6.68352 5.48424 5.48395C6.68381 4.28438 10.5736 6.22927 14.1723 9.82798C17.771 13.4267 19.7159 17.3165 18.5163 18.516Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Location\",\n },\n IconMapPin: {\n title: \"map-pin, location\",\n svg: '<path d=\"M14.75 10C14.75 11.5188 13.5188 12.75 12 12.75C10.4812 12.75 9.25 11.5188 9.25 10C9.25 8.48122 10.4812 7.25 12 7.25C13.5188 7.25 14.75 8.48122 14.75 10Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M19.25 10C19.25 16.0755 12 21.3929 12 21.3929C12 21.3929 4.75 16.0755 4.75 10C4.75 5.99594 7.99594 2.75 12 2.75C16.0041 2.75 19.25 5.99594 19.25 10Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Location\",\n },\n IconSend: {\n title: \"send, email, paper-plane, arrow\",\n svg: '<path d=\"M14 22.25L20.5 3.5L1.75 10L11 13L14 22.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Location\",\n },\n IconInitiatives: {\n title: \"initiatives, nav, rooting\",\n svg: '<path d=\"M3.26389 15.0479C2.93096 14.0935 2.75 13.0679 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 13.0679 21.069 14.0935 20.7361 15.0479\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.5 20.25L12 10L17.5 20.25L12 17.9722L6.5 20.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Location\",\n },\n IconMap: {\n title: \"map, paper\",\n svg: '<path d=\"M15.25 6.5L8.75 4.5L2.75 6.5V19.5L8.75 17.5M15.25 6.5L21.25 4.5V17.5L15.25 19.5L8.75 17.5M15.25 6.5V19M8.75 17.5V5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Location\",\n },\n IconDirection1: {\n title: \"direction-1, route\",\n svg: '<path d=\"M12 16.25V20.25M12 16.25H5L2 12L5 7.75H12V16.25ZM12 3.75H19L22 8L19 12.25H12V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Location\",\n },\n IconDirection2: {\n title: \"direction-2, route\",\n svg: '<path d=\"M12 9V3.75H19.25L21.25 6.5L19.25 9H12ZM12 9V14M12 9H4.75L2.75 11.5L4.75 14H12M12 14V20.25M12 20.25H7.75M12 20.25H16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Location\",\n },\n IconLocation: {\n title: \"location, explore, compass\",\n svg: '<path d=\"M17 17L21 3L7 7L3 21L17 17Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Location\",\n },\n IconPinCircle: {\n title: \"pin-circle, location\",\n svg: '<path d=\"M12 12.25V17.25M13.9443 7.55533C15.0186 8.62963 15.0186 10.3714 13.9443 11.4447C12.8701 12.5179 11.1284 12.519 10.0553 11.4447C8.9821 10.3704 8.98105 8.62858 10.0553 7.55533C11.1295 6.48208 12.8701 6.48103 13.9443 7.55533ZM12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Location\",\n },\n IconPinFlag: {\n title: \"pin-flag, location\",\n svg: '<path d=\"M12 17.25V2.75L18 6.25L12 9.75M9 13.9516C5.36386 14.4568 2.75 15.8546 2.75 17.5C2.75 19.5711 6.89137 21.25 12 21.25C17.1086 21.25 21.25 19.5711 21.25 17.5C21.25 15.8546 18.6361 14.4568 15 13.9516\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Location\",\n },\n IconPinLocation: {\n title: \"pin-location\",\n svg: '<path d=\"M9 13.9516C5.36386 14.4568 2.75 15.8546 2.75 17.5C2.75 19.5711 6.89137 21.25 12 21.25C17.1086 21.25 21.25 19.5711 21.25 17.5C21.25 15.8546 18.6361 14.4568 15 13.9516M12 9.25V17.25M14.2978 3.70175C15.5674 4.97138 15.5674 7.02986 14.2978 8.29825C13.0283 9.56663 10.97 9.56787 9.70168 8.29825C8.43339 7.02862 8.43215 4.97014 9.70168 3.70175C10.9712 2.43337 13.0283 2.43213 14.2978 3.70175Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Location\",\n },\n IconMapPinFlat: {\n title: \"map-pin-flat, route\",\n svg: '<path d=\"M17 11.25L16.6675 11.9223C16.8771 12.0259 17.1229 12.0259 17.3325 11.9223L17 11.25ZM7 3.75H7.75V3H7V3.75ZM7 15.25V16C7.41421 16 7.75 15.6642 7.75 15.25H7ZM21 12.75C21 12.3358 20.6642 12 20.25 12C19.8358 12 19.5 12.3358 19.5 12.75H21ZM20.25 20.25V21H21V20.25H20.25ZM10.75 7.5C11.1642 7.5 11.5 7.16421 11.5 6.75C11.5 6.33579 11.1642 6 10.75 6V7.5ZM7 6C6.58579 6 6.25 6.33579 6.25 6.75C6.25 7.16421 6.58579 7.5 7 7.5V6ZM19.5 6.96429C19.5 7.98942 18.8737 8.87381 18.1213 9.55596C17.7552 9.88781 17.386 10.1468 17.1072 10.323C16.9685 10.4106 16.8542 10.4765 16.7765 10.5195C16.7377 10.541 16.7082 10.5567 16.6894 10.5664C16.6801 10.5713 16.6735 10.5747 16.6697 10.5766C16.6679 10.5775 16.6668 10.5781 16.6664 10.5783C16.6662 10.5784 16.6662 10.5784 16.6664 10.5783C16.6665 10.5782 16.6666 10.5782 16.6668 10.5781C16.6669 10.578 16.6671 10.5779 16.6671 10.5779C16.6673 10.5778 16.6675 10.5777 17 11.25C17.3325 11.9223 17.3327 11.9222 17.3329 11.9221C17.333 11.922 17.3333 11.9219 17.3335 11.9218C17.3339 11.9216 17.3343 11.9214 17.3348 11.9211C17.3358 11.9206 17.337 11.9201 17.3383 11.9194C17.3411 11.918 17.3446 11.9162 17.3489 11.914C17.3575 11.9097 17.3691 11.9037 17.3835 11.8962C17.4124 11.8811 17.4527 11.8596 17.5028 11.8319C17.6028 11.7766 17.7424 11.696 17.9084 11.5911C18.239 11.3822 18.6823 11.072 19.1287 10.6673C20.0013 9.87618 21 8.61773 21 6.96429H19.5ZM17 11.25C17.3325 10.5777 17.3327 10.5778 17.3329 10.5779C17.3329 10.5779 17.3331 10.578 17.3332 10.5781C17.3334 10.5782 17.3335 10.5782 17.3336 10.5783C17.3338 10.5784 17.3338 10.5784 17.3336 10.5783C17.3332 10.5781 17.3321 10.5775 17.3303 10.5766C17.3265 10.5747 17.3199 10.5713 17.3106 10.5664C17.2918 10.5567 17.2623 10.541 17.2235 10.5195C17.1458 10.4765 17.0315 10.4106 16.8928 10.323C16.614 10.1468 16.2448 9.88781 15.8787 9.55596C15.1263 8.87381 14.5 7.98942 14.5 6.96429H13C13 8.61773 13.9987 9.87618 14.8713 10.6673C15.3177 11.072 15.761 11.3822 16.0916 11.5911C16.2576 11.696 16.3972 11.7766 16.4972 11.8319C16.5473 11.8596 16.5876 11.8811 16.6165 11.8962C16.6309 11.9037 16.6425 11.9097 16.6511 11.914C16.6554 11.9162 16.6589 11.918 16.6617 11.9194C16.663 11.9201 16.6642 11.9206 16.6652 11.9211C16.6657 11.9214 16.6661 11.9216 16.6665 11.9218C16.6667 11.9219 16.667 11.922 16.6671 11.9221C16.6673 11.9222 16.6675 11.9223 17 11.25ZM14.5 6.96429C14.5 5.61109 15.6115 4.5 17 4.5V3C14.7987 3 13 4.76708 13 6.96429H14.5ZM17 4.5C18.3885 4.5 19.5 5.61109 19.5 6.96429H21C21 4.76708 19.2013 3 17 3V4.5ZM7 3H5.25V4.5H7V3ZM2 6.25V17.75H3.5V6.25H2ZM6.25 3.75V15.25H7.75V3.75H6.25ZM5.25 3C3.45507 3 2 4.45507 2 6.25H3.5C3.5 5.2835 4.2835 4.5 5.25 4.5V3ZM5.25 16H7V14.5H5.25V16ZM3.5 17.75C3.5 16.7835 4.2835 16 5.25 16V14.5C3.45507 14.5 2 15.9551 2 17.75H3.5ZM19.5 12.75V20.25H21V12.75H19.5ZM20.25 19.5H5.25V21H20.25V19.5ZM5.25 19.5C4.2835 19.5 3.5 18.7165 3.5 17.75H2C2 19.5449 3.45507 21 5.25 21V19.5ZM10.75 6H7V7.5H10.75V6Z\" fill=\"currentColor\"/>',\n category: \"Location\",\n },\n IconRadar: {\n title: \"radar, location, search\",\n svg: '<path d=\"M12 12.0003L11.3569 12.3861C11.4924 12.612 11.7365 12.7503 12 12.7503C12.2634 12.7503 12.5076 12.612 12.6431 12.3861L12 12.0003ZM17.25 11.9644H18H17.25ZM12.6431 12.3861L17.4029 4.45328L16.1166 3.68153L11.3569 11.6144L12.6431 12.3861ZM6.59715 4.45325L11.3569 12.3861L12.6431 11.6144L7.88338 3.68151L6.59715 4.45325ZM12 20.5C7.30558 20.5 3.5 16.6944 3.5 12H2C2 17.5228 6.47715 22 12 22V20.5ZM3.5 12C3.5 7.30558 7.30558 3.5 12 3.5V2C6.47715 2 2 6.47715 2 12H3.5ZM12 3.5C16.6944 3.5 20.5 7.30558 20.5 12H22C22 6.47715 17.5228 2 12 2V3.5ZM20.5 12C20.5 16.6944 16.6944 20.5 12 20.5V22C17.5228 22 22 17.5228 22 12H20.5ZM12 16.4644C9.51472 16.4644 7.5 14.4497 7.5 11.9644H6C6 15.2781 8.68629 17.9644 12 17.9644V16.4644ZM16.5 11.9644C16.5 14.4497 14.4853 16.4644 12 16.4644V17.9644C15.3137 17.9644 18 15.2781 18 11.9644H16.5ZM14.315 8.10467C15.6258 8.89282 16.5 10.3269 16.5 11.9644H18C18 9.77898 16.8311 7.86728 15.088 6.81916L14.315 8.10467ZM7.5 11.9644C7.5 10.3269 8.37421 8.89282 9.68497 8.10467L8.91201 6.81916C7.16889 7.86728 6 9.77898 6 11.9644H7.5ZM12 12H10.5C10.5 12.8284 11.1716 13.5 12 13.5V12ZM12 12V10.5C11.1716 10.5 10.5 11.1716 10.5 12H12ZM12 12H13.5C13.5 11.1716 12.8284 10.5 12 10.5V12ZM12 12V13.5C12.8284 13.5 13.5 12.8284 13.5 12H12Z\" fill=\"currentColor\"/>',\n category: \"Location\",\n },\n IconExposure2: {\n title: \"exposure-2, macro, flower\",\n svg: '<path d=\"M12 13.5V21.25M12 20.3929C12 17.5525 14.3025 15.25 17.1429 15.25C17.4136 15.25 17.6794 15.2709 17.9388 15.3112C17.9791 15.5706 18 15.8364 18 16.1071C18 18.9475 15.6975 21.25 12.8571 21.25C12.5864 21.25 12.3206 21.2291 12.0612 21.1888C12.0209 20.9294 12 20.6636 12 20.3929ZM12 20.3929C12 17.5525 9.69746 15.25 6.85714 15.25C6.58644 15.25 6.32062 15.2709 6.06122 15.3112C6.02091 15.5706 6 15.8364 6 16.1071C6 18.9475 8.30254 21.25 11.1429 21.25C11.4136 21.25 11.6794 21.2291 11.9388 21.1888C11.9791 20.9294 12 20.6636 12 20.3929ZM6.75 3.8V8C6.75 10.8995 9.10051 13.25 12 13.25C14.8995 13.25 17.25 10.8995 17.25 8V3.8L14.625 4.85L12 2.75L9.375 4.85L6.75 3.8Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconBlossom: {\n title: \"blossom, flower, growing\",\n svg: '<path d=\"M7.375 12C4.82068 12 2.75 9.92932 2.75 7.375C2.75 4.82068 4.82068 2.75 7.375 2.75C9.92932 2.75 12 4.82068 12 7.375M7.375 12C4.82068 12 2.75 14.0707 2.75 16.625C2.75 19.1793 4.82068 21.25 7.375 21.25C9.92932 21.25 12 19.1793 12 16.625M7.375 12H8.5M12 7.375C12 4.82068 14.0707 2.75 16.625 2.75C19.1793 2.75 21.25 4.82068 21.25 7.375C21.25 9.92932 19.1793 12 16.625 12M12 7.375V8.5M16.625 12C19.1793 12 21.25 14.0707 21.25 16.625C21.25 19.1793 19.1793 21.25 16.625 21.25C14.0707 21.25 12 19.1793 12 16.625M16.625 12H15.5M12 16.625V15.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 15.25C13.7949 15.25 15.25 13.7949 15.25 12C15.25 10.2051 13.7949 8.75 12 8.75C10.2051 8.75 8.75 10.2051 8.75 12C8.75 13.7949 10.2051 15.25 12 15.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 9.5L7.5 7.5M14.5 9.5L16.5 7.5M14.5 14.5L16.5 16.5M9.5 14.5L7.5 16.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconRose: {\n title: \"rose, flower, romance, love\",\n svg: '<path d=\"M12 9.5712C10.4818 7.84116 8.26043 6.75 5.78571 6.75H4.75V11.9583C4.75 15.9854 7.99594 19.25 12 19.25C16.0041 19.25 19.25 15.9854 19.25 11.9583V6.75H18.2143C15.7396 6.75 13.5182 7.84116 12 9.5712ZM12 9.5712C14.1966 12.0742 14.0714 15.0987 14.0714 18.2083\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 19.25V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.75 6.75C8.78564 4.85488 10.1239 3.62797 12 2.75C13.8761 3.62797 15.2144 4.85488 16.25 6.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconGrowth: {\n title: \"growth, grow, leafs\",\n svg: '<path d=\"M12 12V10.75C12 6.88401 8.86599 3.75 5 3.75H3.75V5C3.75 8.86599 6.88401 12 10.75 12H12ZM12 12V20.25M19 6.75H20.25V8.25C20.25 12.116 17.116 15.25 13.25 15.25H12V13.75C12 9.88401 15.134 6.75 19 6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconTree: {\n title: \"tree\",\n svg: '<path d=\"M12 21.25V15M12 15L9.75 12.75M12 15L15.25 11.75M20.25 11C20.25 15.5563 16.5563 19.25 12 19.25C7.44365 19.25 3.75 15.5563 3.75 11C3.75 6.44365 7.44365 2.75 12 2.75C16.5563 2.75 20.25 6.44365 20.25 11Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconRainbow: {\n title: \"rainbow\",\n svg: '<path d=\"M0.773438 17.25C1.15938 11.3865 6.03765 6.75 11.9988 6.75C17.96 6.75 22.8383 11.3865 23.2242 17.25M3.78247 17.25C4.16139 13.0451 7.6953 9.75 11.9988 9.75C16.3024 9.75 19.8363 13.0451 20.2152 17.25M6.802 17.25C7.16592 14.7058 9.35398 12.75 11.9988 12.75C14.6437 12.75 16.8317 14.7058 17.1957 17.25M9.87686 17.25C10.1857 16.3761 11.0192 15.75 11.9988 15.75C12.9785 15.75 13.8119 16.3761 14.1208 17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconSolar: {\n title: \"solar\",\n svg: '<path d=\"M12 15.75H19.1944L21.25 20.25H12M12 15.75H4.80556L2.75 20.25H12M12 15.75V20.25M12 9.75V11.25M18.75 3.75H20.25M3.75 3.75H5.25M7.5 8L6.5 9M16.5 8L17.5 9M8.83697 3.75C9.17555 5.18335 10.4632 6.25 12 6.25C13.5368 6.25 14.8245 5.18335 15.163 3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconSolarPanel: {\n title: \"solar-panel, Photovoltaics, energy, electricity\",\n svg: '<path d=\"M4.75 20.25H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 3.75H18.25L20.25 14.25H3.75L5.75 3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 4V20\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 9H4.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconGreenPower: {\n title: \"green-power, green-energy\",\n svg: '<path d=\"M3.74869 20.2422L6.16294 17.828M6.16294 17.828C-0.372693 9.93872 6.83979 0.665628 19.7191 4.27183C23.3252 17.1512 14.0521 24.3636 6.16294 17.828Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.5184 8.27183C13.5184 7.78239 12.9181 7.56324 12.6151 7.94204L9.61607 11.691C9.34405 12.031 9.58059 12.5416 10.0102 12.5416H11.4816V14.7282C11.4816 15.2176 12.0819 15.4368 12.3849 15.058L15.3839 11.309C15.656 10.969 15.4194 10.4584 14.9898 10.4584H13.5184V8.27183Z\" fill=\"currentColor\"/>',\n category: \"Nature & Energy\",\n },\n IconAtom: {\n title: \"atom\",\n svg: '<path d=\"M19.7074 4.29256C21.329 5.91416 19.1929 10.6795 14.9362 14.9362C10.6795 19.1929 5.91416 21.329 4.29256 19.7074C2.67096 18.0858 4.80713 13.3205 9.06383 9.06383C13.3205 4.80713 18.0858 2.67096 19.7074 4.29256Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M19.7074 19.7074C18.0858 21.329 13.3205 19.1929 9.06383 14.9362C4.80713 10.6795 2.67096 5.91416 4.29256 4.29256C5.91416 2.67096 10.6795 4.80713 14.9362 9.06383C19.1929 13.3205 21.329 18.0858 19.7074 19.7074Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Nature & Energy\",\n },\n IconPumpjack: {\n title: \"pumpjack, oil\",\n svg: '<path d=\"M20.25 20.25H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.25277 10.6601L17.4182 5.4292M4.25277 10.6601C4.89416 12.1631 6.12382 13.2347 7.55859 13.7208M4.25277 10.6601C3.61138 9.15705 3.68852 7.52782 4.33021 6.15552\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20 5C20 5.69036 19.4404 6.25 18.75 6.25C18.0596 6.25 17.5 5.69036 17.5 5C17.5 4.30964 18.0596 3.75 18.75 3.75C19.4404 3.75 20 4.30964 20 5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.75 6.25V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.9997 8L12.7054 7.74596L11.294 7.74596L11.9997 8ZM14.9681 16.2455L15.6737 15.9914L14.9681 16.2455ZM11.294 8.25404L14.2624 16.4995L15.6737 15.9914L12.7054 7.74596L11.294 8.25404ZM14.2624 16.4995L15.614 20.254L17.0254 19.746L15.6737 15.9914L14.2624 16.4995ZM11.294 7.74596L8.32566 15.9914L9.73699 16.4995L12.7054 8.25404L11.294 7.74596ZM8.32566 15.9914L6.97402 19.746L8.38535 20.254L9.73699 16.4995L8.32566 15.9914ZM14.9681 15.4955H9.03132V16.9955H14.9681V15.4955Z\" fill=\"currentColor\"/>',\n category: \"Nature & Energy\",\n },\n IconNuclearPowerPlant: {\n title: \"nuclear-power-plant, radiation\",\n svg: '<path d=\"M17.72 11.3294C17.3386 8.99421 17.1046 6.58693 16.8849 3.75H5.89652C5.40756 10.0642 4.84768 14.25 2.75 20.25H9\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.75 17C8.75 13.4363 11.4363 10.75 15 10.75C18.5637 10.75 21.25 13.4363 21.25 17V20.25H8.75V17Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 16.25H21\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconHomeEnergy: {\n title: \"home-energy, electric current, power\",\n svg: '<path d=\"M19.25 7.94038L12 2.75L4.74997 7.9404M19.25 7.94038L21.5 9.55119M19.25 7.94038V10.5952M4.74997 7.9404L2.5 9.55119M4.74997 7.9404V20.25H12.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.25 12C9.25 10.4812 10.4812 9.25 12 9.25C13.5188 9.25 14.75 10.4812 14.75 12C14.75 13.5188 13.5188 14.75 12 14.75C10.4812 14.75 9.25 13.5188 9.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.0184 14.0218C19.0184 13.5324 18.4181 13.3132 18.1151 13.692L15.1161 17.441C14.844 17.781 15.0806 18.2916 15.5102 18.2916H16.9816V20.4782C16.9816 20.9676 17.5819 21.1868 17.8849 20.808L20.8839 17.059C21.156 16.719 20.9194 16.2084 20.4898 16.2084H19.0184V14.0218Z\" fill=\"currentColor\"/>',\n category: \"Nature & Energy\",\n },\n IconHomeEnergy2: {\n title: \"home-energy-2, electric-current, power\",\n svg: '<path d=\"M12 2.75L12.4366 2.14017C12.1755 1.95328 11.8245 1.95328 11.5634 2.14017L12 2.75ZM21.0634 10.161C21.4002 10.4021 21.8687 10.3246 22.1098 9.98778C22.3509 9.65098 22.2734 9.18248 21.9366 8.94136L21.0634 10.161ZM2.06341 8.94136C1.72661 9.18248 1.64905 9.65098 1.89017 9.98778C2.13129 10.3246 2.59979 10.4021 2.93659 10.161L2.06341 8.94136ZM4.74997 20.25H3.99997C3.99997 20.6642 4.33576 21 4.74997 21V20.25ZM8.24997 21C8.66419 21 8.99997 20.6642 8.99997 20.25C8.99997 19.8358 8.66419 19.5 8.24997 19.5V21ZM19.25 20.25V21C19.6642 21 20 20.6642 20 20.25H19.25ZM15.75 19.5C15.3358 19.5 15 19.8358 15 20.25C15 20.6642 15.3358 21 15.75 21V19.5ZM8.74997 11.75V11C8.33576 11 7.99997 11.3358 7.99997 11.75H8.74997ZM15.25 11.75H16C16 11.3358 15.6642 11 15.25 11V11.75ZM15.25 16.25V17C15.6642 17 16 16.6642 16 16.25H15.25ZM8.74997 16.25H7.99997C7.99997 16.6642 8.33576 17 8.74997 17V16.25ZM9.24997 11.5C9.24997 11.9142 9.58576 12.25 9.99997 12.25C10.4142 12.25 10.75 11.9142 10.75 11.5H9.24997ZM10.75 9.75C10.75 9.33579 10.4142 9 9.99997 9C9.58576 9 9.24997 9.33579 9.24997 9.75H10.75ZM13.25 11.5C13.25 11.9142 13.5858 12.25 14 12.25C14.4142 12.25 14.75 11.9142 14.75 11.5L13.25 11.5ZM14.75 9.74999C14.75 9.33577 14.4142 8.99999 14 9C13.5857 9.00001 13.25 9.3358 13.25 9.75001L14.75 9.74999ZM12.75 16.5C12.75 16.0858 12.4142 15.75 12 15.75C11.5858 15.75 11.25 16.0858 11.25 16.5H12.75ZM11.25 20.25C11.25 20.6642 11.5858 21 12 21C12.4142 21 12.75 20.6642 12.75 20.25H11.25ZM11.5634 3.35983L18.8134 8.55021L19.6866 7.33055L12.4366 2.14017L11.5634 3.35983ZM18.8134 8.55021L21.0634 10.161L21.9366 8.94136L19.6866 7.33055L18.8134 8.55021ZM11.5634 2.14017L4.31339 7.33057L5.18656 8.55023L12.4366 3.35983L11.5634 2.14017ZM4.31339 7.33057L2.06341 8.94136L2.93659 10.161L5.18656 8.55023L4.31339 7.33057ZM5.49997 20.25V7.9404H3.99997V20.25H5.49997ZM8.24997 19.5H4.74997V21H8.24997V19.5ZM18.5 7.94038V20.25H20V7.94038H18.5ZM19.25 19.5H15.75V21H19.25V19.5ZM8.74997 12.5H15.25V11H8.74997V12.5ZM14.5 11.75V16.25H16V11.75H14.5ZM9.49997 16.25V11.75H7.99997V16.25H9.49997ZM10.75 11.5V9.75H9.24997V11.5H10.75ZM14.75 11.5L14.75 9.74999L13.25 9.75001L13.25 11.5L14.75 11.5ZM15.25 15.5H8.74997V17H15.25V15.5ZM11.25 16.5V20.25H12.75V16.5H11.25Z\" fill=\"currentColor\"/>',\n category: \"Nature & Energy\",\n },\n IconChargingStation: {\n title: \"charging-station, electric-current, power, e-charge\",\n svg: '<path d=\"M13.25 14.75V3.75H3.75V14.75M13.25 14.75V20.25H3.75V14.75M13.25 14.75H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 20.25H20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.75 10.75V16.25H20.25V7.25L17.25 4.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.31627 6.91746C9.31627 6.52592 8.83606 6.35059 8.59364 6.65363L6.19441 9.65281C5.9768 9.92484 6.16603 10.3333 6.50969 10.3333H7.68685V12.0825C7.68685 12.4741 8.16706 12.6494 8.40948 12.3464L10.8087 9.34719C11.0263 9.07516 10.8371 8.66673 10.4934 8.66673H9.31627V6.91746Z\" fill=\"currentColor\"/>',\n category: \"Nature & Energy\",\n },\n IconDrillingRig: {\n title: \"drilling-rig, oil, gas\",\n svg: '<path d=\"M8.75 10.75H15.25M8.75 10.75L6.75 21.25M8.75 10.75L17.25 21.25M15.25 10.75L17.25 21.25M15.25 10.75L6.75 21.25M17.25 21.25H6.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.6516 6.6C13.6516 7.51127 12.9128 8.25 12.0016 8.25C11.0903 8.25 10.3516 7.51127 10.3516 6.6C10.3516 4.95 11.4516 2.75 12.0016 2.75C12.5516 2.75 13.6516 4.95 13.6516 6.6Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 21.25H4.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconPowerPlant: {\n title: \"power-plant, coal, gas, factory\",\n svg: '<path d=\"M5.75 7.75H10.25L12.25 20.25H3.75L5.75 7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8 5.25V5.25C8 4.14543 8.89543 3.25 10 3.25H19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.4297 13.25L15.0011 11.5V14L20.2511 11.5V20.25H12.0011\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconWindPower: {\n title: \"wind-power, electric-current, power, green-energy\",\n svg: '<path d=\"M14.4858 9.82431C14.6546 10.1808 14.7491 10.5794 14.7491 11C14.7491 12.181 14.0047 13.1881 12.9595 13.5777C12.7273 13.6642 12.4804 13.7202 12.2235 13.741M14.4858 9.82431L20.2995 13.1808L19.288 14.9329C18.5976 16.1286 17.0686 16.5383 15.8729 15.848L13.0999 14.247M14.4858 9.82431C14.4213 9.688 14.3458 9.55785 14.2606 9.43497M14.2606 9.43497C13.7642 8.71892 12.9364 8.25 11.9991 8.25C11.0618 8.25 10.234 8.71894 9.73752 9.43501M14.2606 9.43497L14.2606 5.22119C14.2606 3.84048 13.1413 2.72119 11.7606 2.72119H9.73752L9.73752 9.43501M9.73752 9.43501C9.65234 9.55787 9.57692 9.68799 9.51237 9.82428M9.51237 9.82428C9.34353 10.1808 9.24908 10.5794 9.24908 11C9.24908 12.181 9.99351 13.1881 11.0387 13.5777C11.2708 13.6642 11.5178 13.7202 11.7747 13.741M9.51237 9.82428L5.8637 11.9308C4.66797 12.6212 4.25828 14.1502 4.94864 15.3459L5.96019 17.098L10.8983 14.2469M12.2235 13.741C12.1495 13.747 12.0746 13.75 11.9991 13.75C11.9235 13.75 11.8487 13.747 11.7747 13.741M12.2235 13.741L13.0999 14.247M11.7747 13.741L10.8983 14.2469M13.0999 14.247L14.5166 21M10.8983 14.2469L9.48153 21\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.25 21.25L4.75 21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Nature & Energy\",\n },\n IconPeople: {\n title: \"people, user, person, avatar\",\n svg: '<path d=\"M15.75 6.5C15.75 8.57107 14.0711 10.25 12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75C14.0711 2.75 15.75 4.42893 15.75 6.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M12 13.25C7.8098 13.25 4.86894 16.3254 4.5 20.25H19.5C19.1311 16.3254 16.1902 13.25 12 13.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"People\",\n },\n IconPeopleAdded: {\n title: \"people-added, user-added\",\n svg: '<path d=\"M11.8523 13.2513C7.74082 13.3226 4.86459 16.3717 4.5 20.25H11.5M11.8523 13.2513C11.9014 13.2504 11.9506 13.25 12 13.25C12.3521 13.25 12.6954 13.2717 13.029 13.3138M11.8523 13.2513C11.2023 13.2626 10.5834 13.3483 10.0001 13.5M13.029 13.3138C13.3627 13.3559 13.6867 13.4184 14.0004 13.5M13.029 13.3138C13.7309 13.4024 14.3904 13.5812 15 13.838M14.75 18.6L16.95 20.25L20.25 14.75M15.75 6.5C15.75 8.57107 14.0711 10.25 12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75C14.0711 2.75 15.75 4.42893 15.75 6.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconPeopleAdd: {\n title: \"people-add, user-add\",\n svg: '<path d=\"M11.8523 13.2513C7.74082 13.3226 4.86459 16.3717 4.5 20.25H12.5M11.8523 13.2513C11.9014 13.2504 11.9506 13.25 12 13.25C12.3521 13.25 12.6954 13.2717 13.029 13.3138M11.8523 13.2513C11.2023 13.2626 10.5834 13.3483 10.0001 13.5M13.029 13.3138C13.3627 13.3559 13.6867 13.4184 14.0004 13.5M13.029 13.3138C13.7309 13.4024 14.3904 13.5812 15 13.838M18.25 15.25V18.25M18.25 18.25V21.25M18.25 18.25H15.25M18.25 18.25H21.25M15.75 6.5C15.75 8.57107 14.0711 10.25 12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75C14.0711 2.75 15.75 4.42893 15.75 6.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconPeopleRemove: {\n title: \"people-remove, user-remove\",\n svg: '<path d=\"M20 16L18 18M18 18L16 20M18 18L16 16M18 18L20 20M11.8523 13.2513C7.74082 13.3226 4.86459 16.3717 4.5 20.25H12.25M11.8523 13.2513C11.9014 13.2504 11.9506 13.25 12 13.25C12.5201 13.25 13.0209 13.2974 13.5 13.3879M11.8523 13.2513C11.2023 13.2626 10.5834 13.3483 10.0001 13.5M15.75 6.5C15.75 8.57107 14.0711 10.25 12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75C14.0711 2.75 15.75 4.42893 15.75 6.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconPeopleAdd2: {\n title: \"people-add-2\",\n svg: '<path d=\"M19.5 8.75V11.5M19.5 11.5V14.25M19.5 11.5H16.75M19.5 11.5H22.25M14.75 6.5C14.75 8.57107 13.0711 10.25 11 10.25C8.92893 10.25 7.25 8.57107 7.25 6.5C7.25 4.42893 8.92893 2.75 11 2.75C13.0711 2.75 14.75 4.42893 14.75 6.5ZM3.5 20.25C3.86894 16.3254 6.8098 13.25 11 13.25C15.1902 13.25 18.1311 16.3254 18.5 20.25H3.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconPeopleRemove2: {\n title: \"people-remove-2\",\n svg: '<path d=\"M17.75 11.25H22.25M14.75 6.5C14.75 8.57107 13.0711 10.25 11 10.25C8.92893 10.25 7.25 8.57107 7.25 6.5C7.25 4.42893 8.92893 2.75 11 2.75C13.0711 2.75 14.75 4.42893 14.75 6.5ZM3.5 20.25C3.86894 16.3254 6.8098 13.25 11 13.25C15.1902 13.25 18.1311 16.3254 18.5 20.25H3.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconPeopleLike: {\n title: \"people-like, inner circle\",\n svg: '<path d=\"M13.25 13.3449C12.8475 13.2824 12.4303 13.25 12 13.25C7.8098 13.25 4.86894 16.3254 4.5 20.25H12.2604M18 21.2778C18.2708 21.2778 21.25 19.7431 21.25 17.6667C21.25 16.2222 20.3472 15.5 19.4444 15.5C18.5417 15.5 18 16.0417 18 16.0417C18 16.0417 17.4583 15.5 16.5556 15.5C15.6528 15.5 14.75 16.2222 14.75 17.6667C14.75 19.7431 17.7292 21.2778 18 21.2778ZM15.75 6.5C15.75 8.57107 14.0711 10.25 12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75C14.0711 2.75 15.75 4.42893 15.75 6.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconPeople2: {\n title: \"people-2\",\n svg: '<path d=\"M3.75 20.25V18.75C3.75 16.5409 5.54086 14.75 7.75 14.75H16.25C18.4591 14.75 20.25 16.5409 20.25 18.75V20.25M16.75 7.5C16.75 10.1234 14.6234 12.25 12 12.25C9.37665 12.25 7.25 10.1234 7.25 7.5C7.25 4.87665 9.37665 2.75 12 2.75C14.6234 2.75 16.75 4.87665 16.75 7.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconPeopleCircle: {\n title: \"people-circle, user-circle,avatar,profile\",\n svg: '<path d=\"M5.85697 18.9157C7.17056 16.9968 9.33203 15.75 12 15.75C14.668 15.75 16.8294 16.9968 18.143 18.9157M5.85697 18.9157C7.49061 20.3679 9.6423 21.25 12 21.25C14.3577 21.25 16.5094 20.3679 18.143 18.9157M5.85697 18.9157C3.95086 17.2214 2.75 14.7509 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 14.7509 20.0491 17.2214 18.143 18.9157M15.25 10C15.25 11.7949 13.7949 13.25 12 13.25C10.2051 13.25 8.75 11.7949 8.75 10C8.75 8.20507 10.2051 6.75 12 6.75C13.7949 6.75 15.25 8.20507 15.25 10Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconGroup1: {\n title: \"group-1, users\",\n svg: '<path d=\"M15 2.75C16.933 2.75 18.5 4.317 18.5 6.25C18.5 8.183 16.933 9.75 15 9.75M20.75 20.25H23.25C23.25 17.3123 21.1818 14.5472 18.25 13.5088M9.25 9.75C7.317 9.75 5.75 8.183 5.75 6.25C5.75 4.317 7.317 2.75 9.25 2.75C11.183 2.75 12.75 4.317 12.75 6.25C12.75 8.183 11.183 9.75 9.25 9.75ZM1 20.2188C1 16.2319 4.69365 12.75 9.25 12.75C13.8063 12.75 17.5 16.2319 17.5 20.2188H1Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconGroup2: {\n title: \"group-2, users\",\n svg: '<path d=\"M14.4251 13.1804C17.9999 11.6957 22.5632 14.0522 23.0001 20.25H16.75M10.75 7C10.75 8.79493 9.29493 10.25 7.5 10.25C5.70507 10.25 4.25 8.79493 4.25 7C4.25 5.20507 5.70507 3.75 7.5 3.75C9.29493 3.75 10.75 5.20507 10.75 7ZM19.75 7C19.75 8.79493 18.2949 10.25 16.5 10.25C14.7051 10.25 13.25 8.79493 13.25 7C13.25 5.20507 14.7051 3.75 16.5 3.75C18.2949 3.75 19.75 5.20507 19.75 7ZM1 20.25H13.8571C13.1522 10.25 1.70491 10.25 1 20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconGroup3: {\n title: \"group-3\",\n svg: '<path d=\"M17.75 19.25H22.5C22.2294 15.6058 20.3551 12.75 17 12.75C16.5539 12.75 16.134 12.8005 15.7406 12.8966M11.25 7C11.25 8.79493 9.79493 10.25 8 10.25C6.20507 10.25 4.75 8.79493 4.75 7C4.75 5.20507 6.20507 3.75 8 3.75C9.79493 3.75 11.25 5.20507 11.25 7ZM19.75 7.5C19.75 9.01878 18.5188 10.25 17 10.25C15.4812 10.25 14.25 9.01878 14.25 7.5C14.25 5.98122 15.4812 4.75 17 4.75C18.5188 4.75 19.75 5.98122 19.75 7.5ZM1.75 20.25C2.05745 16.0451 4.18738 12.75 8 12.75C11.8126 12.75 13.9425 16.0451 14.25 20.25H1.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconPeopleCopy: {\n title: \"people-copy, members\",\n svg: '<path d=\"M17.25 6.75V2.75H2.75V17.25H6.75M9.32626 21.25C9.78713 18.9642 11.7046 17.25 14 17.25C16.2954 17.25 18.2129 18.9642 18.6737 21.25M9.32626 21.25H6.75V6.75H21.25V21.25H18.6737M9.32626 21.25H18.6737M16.25 12.5C16.25 13.7426 15.2426 14.75 14 14.75C12.7574 14.75 11.75 13.7426 11.75 12.5C11.75 11.2574 12.7574 10.25 14 10.25C15.2426 10.25 16.25 11.2574 16.25 12.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconContacts: {\n title: \"contacts,address-book\",\n svg: '<path d=\"M4.75 18.75H19.25V2.75H4.75V18.75ZM4.75 18.75V21.25H19.25M11.5 9.25H12.5M9.75 13.75C9.75 13.75 9.75 12.25 12 12.25C14.25 12.25 14.25 13.75 14.25 13.75H9.75ZM13 9.25C13 9.80228 12.5523 10.25 12 10.25C11.4477 10.25 11 9.80228 11 9.25C11 8.69772 11.4477 8.25 12 8.25C12.5523 8.25 13 8.69772 13 9.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconHead: {\n title: \"head, avatar\",\n svg: '<path d=\"M18.25 18.1667H14.25V21.25H6.75C6.75 18.6556 6.97969 16.5372 5.28425 14.3811C4.3231 13.1588 3.75 11.6184 3.75 9.94444C3.75 5.97106 6.97898 2.75 10.9621 2.75C13.8984 2.75 16.6018 4.15584 17.7163 6.99759C18.4972 8.98885 19.553 10.4589 20.75 12.25L18.25 13.5417V18.1667Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconFocusMode: {\n title: \"focus-mode, hearing, headphones, music, do-not-disdurb\",\n svg: '<path d=\"M14.25 21.25V18.1667H18.25V13.5417L20.75 12.25C19.553 10.4589 18.4972 8.98885 17.7163 6.99759C16.6018 4.15584 13.8984 2.75 10.9621 2.75C6.97898 2.75 3.75 5.97106 3.75 9.94444C3.75 11.6184 4.3231 13.1588 5.28425 14.3811C6.97969 16.5372 6.75 18.6556 6.75 21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M10.75 2.25V1.5H9.25V2.25H10.75ZM10 7.5V6.75H8.5V7.5H10ZM8.5 11.75V12.5H10V11.75H8.5ZM11.5 7.5V6.75H10V7.5H11.5ZM10 11.75V12.5H11.5V11.75H10ZM9.25 2.25V6.25H10.75V2.25H9.25ZM11.5 8.75V10.5H13V8.75H11.5ZM8.5 10.5V8.75H7V10.5H8.5ZM10 12C9.17157 12 8.5 11.3284 8.5 10.5H7C7 12.1569 8.34315 13.5 10 13.5V12ZM11.5 10.5C11.5 11.3284 10.8284 12 10 12V13.5C11.6569 13.5 13 12.1569 13 10.5H11.5ZM10 7.25C10.8284 7.25 11.5 7.92157 11.5 8.75H13C13 7.09315 11.6569 5.75 10 5.75V7.25ZM10 5.75C8.34315 5.75 7 7.09315 7 8.75H8.5C8.5 7.92157 9.17157 7.25 10 7.25V5.75ZM8.5 7.5V11.75H10V7.5H8.5ZM10 7.5V11.75H11.5V7.5H10Z\" fill=\"currentColor\"/>',\n category: \"People\",\n },\n IconSteveJobs: {\n title: \"steve-jobs, professor, innovation\",\n svg: '<path d=\"M4 10.5C4 6.08172 7 2.5 12 2.5C17 2.5 20 6.08172 20 10.5C20 13.2014 19.6713 15.2971 17.9829 17.377C17.746 17.6687 17.5226 17.9722 17.3044 18.2797C16.5969 19.2768 14.7151 21.5 12 21.5C9.28494 21.5 7.40313 19.2768 6.69562 18.2797C6.47744 17.9722 6.25396 17.6687 6.01714 17.377C4.32873 15.2971 4 13.2014 4 10.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11 10.5V10.5C11.6295 10.1852 12.3705 10.1852 13 10.5V10.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.5 9.5C5.33333 8.66667 6.6 5.45 7 4.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.5 9.5C18.6667 8.66667 17.4 5.45 17 4.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 3.25C11.5 4.25 12.5 4.25 14.5 3.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 10.5L4.5 10M17 10.5L19.5 10\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 19.5V18.25C8 17.1454 8.89543 16.25 10 16.25H14C15.1046 16.25 16 17.1454 16 18.25V19.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 20.7501C13.0781 20.1538 10.9219 20.1537 10.25 20.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 11C17 12.1046 16.1046 13 15 13C13.8954 13 13 12.1046 13 11C13 9.89543 13.8954 9 15 9C16.1046 9 17 9.89543 17 11Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11 11C11 12.1046 10.1046 13 9 13C7.89543 13 7 12.1046 7 11C7 9.89543 7.89543 9 9 9C10.1046 9 11 9.89543 11 11Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"People\",\n },\n IconStreaming: {\n title: \"streaming, live, stream\",\n svg: '<path d=\"M7.75 19C7.95907 16.8976 9.62555 15.25 12 15.25C14.3744 15.25 16.0409 16.8976 16.25 19M17.5 8.25H18M14.5 10.75C14.5 12.1307 13.3807 13.25 12 13.25C10.6193 13.25 9.5 12.1307 9.5 10.75C9.5 9.36929 10.6193 8.25 12 8.25C13.3807 8.25 14.5 9.36929 14.5 10.75ZM2.75 4.75H21.25V19.25H2.75V4.75ZM18.25 8.25C18.25 8.52614 18.0261 8.75 17.75 8.75C17.4739 8.75 17.25 8.52614 17.25 8.25C17.25 7.97386 17.4739 7.75 17.75 7.75C18.0261 7.75 18.25 7.97386 18.25 8.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconTeacher: {\n title: \"teacher\",\n svg: '<path d=\"M20.25 11.75V20.25H3.75V11.75M20.25 11.75H21.25M20.25 11.75H6.25M3.75 11.75H2.75M3.75 11.75V9.25M3.75 11.75H6.25M6.25 11.75V9.25M9 11.6042C9.73295 10.7738 10.8053 10.25 12 10.25C13.1947 10.25 14.2671 10.7738 15.0001 11.6042M14.75 5.5C14.75 7.01878 13.5188 8.25 12 8.25C10.4812 8.25 9.25 7.01878 9.25 5.5C9.25 3.98122 10.4812 2.75 12 2.75C13.5188 2.75 14.75 3.98122 14.75 5.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconTeacherWhiteboard: {\n title: \"teacher-whiteboard\",\n svg: '<path d=\"M2.75 4.75H10.5M2.75 4.75V17.25M2.75 4.75H1.75M10.5 4.75H18.25M10.5 4.75V3.75M18.25 4.75H19.25M18.25 4.75V6.25M2.75 17.25H1.75M2.75 17.25H9.25M12.75 20.25C12.9591 18.0074 14.6256 16.25 17 16.25C19.3744 16.25 21.0409 18.0074 21.25 20.25H12.75ZM19.25 12C19.25 13.2426 18.2426 14.25 17 14.25C15.7574 14.25 14.75 13.2426 14.75 12C14.75 10.7574 15.7574 9.75 17 9.75C18.2426 9.75 19.25 10.7574 19.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"People\",\n },\n IconGenderFemale: {\n title: \"gender-female\",\n svg: '<circle cx=\"12\" cy=\"8.5\" r=\"5.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 14.5V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.75 18.25H15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"People\",\n },\n IconGenderMale: {\n title: \"gender-male\",\n svg: '<circle cx=\"9\" cy=\"15\" r=\"5.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14.75 3.75H20.25V9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.25 10.75L19.5 4.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"People\",\n },\n IconWheelchair: {\n title: \"wheelchair, bathroom accessible, toilet, wc\",\n svg: '<path d=\"M15.0624 19.0001C14.0113 20.3683 12.3586 21.2501 10.5 21.2501C7.32436 21.2501 4.75 18.6758 4.75 15.5001C4.75 12.8434 6.55176 10.6075 9 9.94775M15.0624 19.0001C15.1855 18.8399 15.3004 18.6731 15.4063 18.5001L15.0624 19.0001Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.9991 15.75L19.7186 15.9616C19.7853 15.7348 19.7412 15.4899 19.5996 15.3007C19.458 15.1114 19.2355 15 18.9991 15V15.75ZM17.0296 19.7884C16.9127 20.1857 17.1401 20.6026 17.5375 20.7195C17.9349 20.8364 18.3518 20.609 18.4686 20.2116L17.0296 19.7884ZM11.1296 12.8469L10.4167 12.6139C10.4151 12.619 10.4135 12.6241 10.4119 12.6292L11.1296 12.8469ZM12.7772 10.2209C12.9059 9.82715 12.6911 9.40364 12.2974 9.27492C11.9037 9.14621 11.4802 9.36102 11.3515 9.75473L12.7772 10.2209ZM13.2828 16.5H18.9991V15H13.2828V16.5ZM18.2796 15.5384L17.0296 19.7884L18.4686 20.2116L19.7186 15.9616L18.2796 15.5384ZM13.2828 15C12.2761 15 11.5551 14.028 11.8473 13.0646L10.4119 12.6292C9.82752 14.5559 11.2694 16.5 13.2828 16.5V15ZM11.3515 9.75473L10.4167 12.6139L11.8425 13.08L12.7772 10.2209L11.3515 9.75473Z\" fill=\"currentColor\"/><path d=\"M12 12H16\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"13.5\" cy=\"5\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"People\",\n },\n IconBathWoman1: {\n title: \"bath-woman-1, women, female\",\n svg: '<circle cx=\"12\" cy=\"4\" r=\"2.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.25 22.25V18.75H17.75L15.25 8.75H8.75L6.25 18.75H8.75V22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"People\",\n },\n IconBathMan1: {\n title: \"bath-man-1, man, male\",\n svg: '<circle cx=\"12\" cy=\"4\" r=\"2.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.25 22.25V16.25H17.25V8.75H6.75V16.25H8.75V22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"People\",\n },\n IconPeopleEdit: {\n title: \"people-edit, edit-user, edit-rights, user-rights\",\n svg: '<circle cx=\"12\" cy=\"6.5\" r=\"3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M10.25 20.25H4.5C4.86894 16.3254 7.8098 13.25 12 13.25C12.8946 13.25 13.7322 13.3902 14.5 13.6489\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 21.25V19.5L19.25 14L21 15.75L15.5 21.25H13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"People\",\n },\n IconPeopleVersus: {\n title: \"people-versus, vs, match, 1v1\",\n svg: '<path d=\"M19.25 12.75C19.25 13.9926 18.2426 15 17 15C15.7574 15 14.75 13.9926 14.75 12.75C14.75 11.5074 15.7574 10.5 17 10.5C18.2426 10.5 19.25 11.5074 19.25 12.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M17 17C14.6256 17 12.9591 18.8672 12.75 21.25H21.25C21.0409 18.8672 19.3744 17 17 17Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 5C9.25 6.24264 8.24264 7.25 7 7.25C5.75736 7.25 4.75 6.24264 4.75 5C4.75 3.75736 5.75736 2.75 7 2.75C8.24264 2.75 9.25 3.75736 9.25 5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 10.0892C8.81814 9.56026 7.96789 9.25 7 9.25C4.62555 9.25 2.95907 11.1172 2.75 13.5H8\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.25 21.25L15.75 2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"People\",\n },\n IconCamera1: {\n title: \"camera-1, picture, image, cam\",\n svg: '<path d=\"M2.75 6.75H7.5L9.5 3.75H14.5L16.5 6.75H21.25V20.25H2.75V6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M15.25 13C15.25 14.7949 13.7949 16.25 12 16.25C10.2051 16.25 8.75 14.7949 8.75 13C8.75 11.2051 10.2051 9.75 12 9.75C13.7949 9.75 15.25 11.2051 15.25 13Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconCameraOff1: {\n title: \"camera-off-1, cam-off\",\n svg: '<path d=\"M9.75 3.75H14.5L16.5 6.75H21.25V16.25M2.75 2.75L6.75 6.75M21.25 21.25L20.25 20.25M6.75 6.75H2.75V20.25H20.25M6.75 6.75L20.25 20.25M14.5619 15C13.9671 15.7609 13.0407 16.25 12 16.25C10.2051 16.25 8.75 14.7949 8.75 13C8.75 11.9593 9.23912 11.0329 10 10.4381\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconCameraOff: {\n title: \"camera-off\",\n svg: '<path d=\"M9.99833 11.5L14 15.5017M14.0017 11.5L10 15.5017M7.5 6.75H2.75V20.25H21.25V6.75H16.5L14.5 3.75H9.5L7.5 6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconCameraAuto: {\n title: \"camera-auto\",\n svg: '<path d=\"M14 14.625L12 10.225L10 14.625M14 14.625L14.75 16.275M14 14.625H10M10 14.625L9.25 16.275M7.5 6.75H2.75V20.25H21.25V6.75H16.5L14.5 3.75H9.5L7.5 6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconCamera2: {\n title: \"camera-2, picture, image, cam\",\n svg: '<path d=\"M2.75 5.75V5C2.33579 5 2 5.33579 2 5.75H2.75ZM2.75 20.25H2C2 20.6642 2.33579 21 2.75 21V20.25ZM21.25 20.25V21C21.6642 21 22 20.6642 22 20.25H21.25ZM21.25 5.75H22C22 5.33579 21.6642 5 21.25 5V5.75ZM15.4649 5.75L14.8157 6.12554C14.9497 6.35729 15.1971 6.5 15.4649 6.5V5.75ZM8.53513 5.75V6.5C8.80285 6.5 9.05028 6.35729 9.18433 6.12554L8.53513 5.75ZM2 5.75V20.25H3.5V5.75H2ZM2.75 21H21.25V19.5H2.75V21ZM22 20.25V5.75H20.5V20.25H22ZM12 4.5C13.202 4.5 14.2526 5.15216 14.8157 6.12554L16.1141 5.37446C15.2939 3.95663 13.7591 3 12 3V4.5ZM9.18433 6.12554C9.74741 5.15216 10.798 4.5 12 4.5V3C10.2409 3 8.70609 3.95663 7.88592 5.37446L9.18433 6.12554ZM21.25 5H15.4649V6.5H21.25V5ZM8.53513 5H2.75V6.5H8.53513V5ZM14.5 12.5C14.5 13.8807 13.3807 15 12 15V16.5C14.2091 16.5 16 14.7091 16 12.5H14.5ZM12 15C10.6193 15 9.5 13.8807 9.5 12.5H8C8 14.7091 9.79086 16.5 12 16.5V15ZM9.5 12.5C9.5 11.1193 10.6193 10 12 10V8.5C9.79086 8.5 8 10.2909 8 12.5H9.5ZM12 10C13.3807 10 14.5 11.1193 14.5 12.5H16C16 10.2909 14.2091 8.5 12 8.5V10Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconCamera3: {\n title: \"camera-3, picture, image, cam\",\n svg: '<path d=\"M2.75 3.75H21.25V20.25H2.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.25 12C15.25 13.7949 13.7949 15.25 12 15.25C10.2051 15.25 8.75 13.7949 8.75 12C8.75 10.2051 10.2051 8.75 12 8.75C13.7949 8.75 15.25 10.2051 15.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M17.5 7.5V7.49M17.75 7.5C17.75 7.63807 17.6381 7.75 17.5 7.75C17.3619 7.75 17.25 7.63807 17.25 7.5C17.25 7.36193 17.3619 7.25 17.5 7.25C17.6381 7.25 17.75 7.36193 17.75 7.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconCamera4: {\n title: \"camera-4\",\n svg: '<path d=\"M4.5 4.75H2.75V19.25H21.25V4.75H9.5L8.5 3.75H5.5L4.5 4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M17.25 12C17.25 13.7949 15.7949 15.25 14 15.25C12.2051 15.25 10.75 13.7949 10.75 12C10.75 10.2051 12.2051 8.75 14 8.75C15.7949 8.75 17.25 10.2051 17.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M7 9V8.99M7.25 9C7.25 9.13807 7.13807 9.25 7 9.25C6.86193 9.25 6.75 9.13807 6.75 9C6.75 8.86193 6.86193 8.75 7 8.75C7.13807 8.75 7.25 8.86193 7.25 9Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconZap: {\n title: \"zap, lightning, flash, thunder\",\n svg: '<path d=\"M20.25 8.75H13.25V1.75L3.75 15.0473H10.75V22.25L20.25 8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconNoFlash: {\n title: \"no-flash\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13.4789 1.03584C13.7894 1.13535 14 1.42403 14 1.75005V8.00005H20.25C20.53 8.00005 20.7867 8.15601 20.9157 8.40452C21.0447 8.65303 21.0245 8.95269 20.8634 9.18167L16.6616 15.1526L21.7492 19.6903C22.0583 19.966 22.0854 20.4401 21.8097 20.7492C21.534 21.0583 21.0599 21.0854 20.7508 20.8097L2.2508 4.30972C1.94167 4.03401 1.91458 3.55991 2.19029 3.25079C2.46599 2.94166 2.94009 2.91457 3.24922 3.19028L8.16623 7.57572L12.6398 1.31407C12.8293 1.04879 13.1685 0.936333 13.4789 1.03584ZM9.29223 8.57999L15.5347 14.1476L18.8051 9.50005H13.25C12.8358 9.50005 12.5 9.16427 12.5 8.75005V4.09001L9.29223 8.57999Z\" fill=\"currentColor\"/><path d=\"M13.7973 16.6165L14.9242 17.6215L11.3634 22.6817C11.1752 22.9491 10.8354 23.0638 10.5236 22.9651C10.2119 22.8664 10 22.5771 10 22.2501V15.7973H3.75001C3.46906 15.7973 3.21167 15.6403 3.08312 15.3905C2.95457 15.1407 2.97643 14.84 3.13975 14.6114L6.41268 10.0302L7.53868 11.0345L5.20757 14.2973H10.75C11.1642 14.2973 11.5 14.6331 11.5 15.0473V19.881L13.7973 16.6165Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconAutoFlash: {\n title: \"auto-flash\",\n svg: '<path d=\"M20.25 8.75H13.25V1.75L3.75 15.0473H10.75V22.25L20.25 8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M16.1069 21.8641C15.8938 22.2193 16.0089 22.68 16.3641 22.8931C16.7193 23.1062 17.18 22.9911 17.3931 22.6359L16.1069 21.8641ZM21.25 14.75L21.9854 14.6029C21.9247 14.2991 21.6833 14.0639 21.378 14.011C21.0727 13.9581 20.7663 14.0984 20.6069 14.3641L21.25 14.75ZM22.0146 22.3971C22.0958 22.8033 22.4909 23.0667 22.8971 22.9854C23.3033 22.9042 23.5667 22.5091 23.4854 22.1029L22.0146 22.3971ZM17.3931 22.6359L21.8931 15.1359L20.6069 14.3641L16.1069 21.8641L17.3931 22.6359ZM20.5146 14.8971L22.0146 22.3971L23.4854 22.1029L21.9854 14.6029L20.5146 14.8971ZM18.25 21H22V19.5H18.25V21Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconCamera5: {\n title: \"camera-5, action cam, GoPro\",\n svg: '<path d=\"M6.75 16.25H9.25M9.75 4.75H2.75V20.25H21.25V16.25M12.75 4.75H21.25V13.253H12.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M17 9V8.99M17.25 9C17.25 9.13807 17.1381 9.25 17 9.25C16.8619 9.25 16.75 9.13807 16.75 9C16.75 8.86193 16.8619 8.75 17 8.75C17.1381 8.75 17.25 8.86193 17.25 9Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconFullScreen: {\n title: \"full-screen, focus\",\n svg: '<path d=\"M8.25 3.75H3.75V8.25M15.75 3.75H20.25V8.25M20.25 15.75V20.25H15.75M8.25 20.25H3.75V15.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconDownsize: {\n title: \"downsize, exit-full-screen, scale-down\",\n svg: '<path d=\"M3.75 9.25H9.25V3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 9.25H14.75V3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.75 20.25V14.75H20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 14.75H9.25V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconDownsize2: {\n title: \"downsize-2, exit-full-screen, scale-down\",\n svg: '<path d=\"M3.75 10.25H10.25V3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 10.25H13.75V3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 20.25V13.75H20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 13.75H10.25V20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconCapture: {\n title: \"capture, screen\",\n svg: '<path d=\"M8.25 20.25H3.75V15.75M15.75 20.25H20.25V15.75M3.75 8.25V3.75H8.25M15.75 3.75H20.25V8.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 15.25V8.75H9.75L10.75 7.75H13.25L14.25 8.75H16.25V15.25H7.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 11.85V11.835M12.75 11.85C12.75 12.2642 12.4142 12.6 12 12.6C11.5858 12.6 11.25 12.2642 11.25 11.85C11.25 11.4358 11.5858 11.1 12 11.1C12.4142 11.1 12.75 11.4358 12.75 11.85Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconFocusExposure: {\n title: \"focus-exposure\",\n svg: '<path d=\"M3.75 8V3.75H8M3.75 16V20.25H8M16 3.75H20.25V8M20.25 16V20.25H16M15.25 12C15.25 13.7949 13.7949 15.25 12 15.25C10.2051 15.25 8.75 13.7949 8.75 12C8.75 10.2051 10.2051 8.75 12 8.75C13.7949 8.75 15.25 10.2051 15.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconFocusSquare: {\n title: \"focus-square\",\n svg: '<path d=\"M3.75 8V3.75H8M3.75 16V20.25H8M16 3.75H20.25V8M20.25 16V20.25H16M8.75 8.75H15.25V15.25H8.75V8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconFocusAuto: {\n title: \"focus-auto\",\n svg: '<path d=\"M3.75 8V3.75H8M3.75 16V20.25H8M16 3.75H20.25V8M20.25 16V20.25H16M14 13.4L12 9L10 13.4M14 13.4L14.75 15.05M14 13.4H10M10 13.4L9.25 15.05\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconFocusZoomOut: {\n title: \"focus-zoom-out\",\n svg: '<path d=\"M3.75 8V3.75H8M3.75 16V20.25H8M16 3.75H20.25V8M20.25 16V20.25H16M12 8.75V12M12 12V15.25M12 12H8.75M12 12H15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconFocusZoomIn: {\n title: \"focus-zoom-in\",\n svg: '<path d=\"M3.75 8V3.75H8M3.75 16V20.25H8M16 3.75H20.25V8M20.25 16V20.25H16M8.75 12H15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconFocusFlash: {\n title: \"focus-flash\",\n svg: '<path d=\"M3.75 8V3.75H8M3.75 16V20.25H8M16 3.75H20.25V8M20.25 16V20.25H16M12 8L9 12H15L12 16\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconFocusLock: {\n title: \"focus-lock\",\n svg: '<path d=\"M3 8C3 8.41421 3.33579 8.75 3.75 8.75C4.16421 8.75 4.5 8.41421 4.5 8H3ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM4.5 16C4.5 15.5858 4.16421 15.25 3.75 15.25C3.33579 15.25 3 15.5858 3 16H4.5ZM8 4.5C8.41421 4.5 8.75 4.16421 8.75 3.75C8.75 3.33579 8.41421 3 8 3V4.5ZM16 3C15.5858 3 15.25 3.33579 15.25 3.75C15.25 4.16421 15.5858 4.5 16 4.5V3ZM20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM19.5 8C19.5 8.41421 19.8358 8.75 20.25 8.75C20.6642 8.75 21 8.41421 21 8H19.5ZM21 16C21 15.5858 20.6642 15.25 20.25 15.25C19.8358 15.25 19.5 15.5858 19.5 16H21ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM8 21C8.41421 21 8.75 20.6642 8.75 20.25C8.75 19.8358 8.41421 19.5 8 19.5V21ZM16 19.5C15.5858 19.5 15.25 19.8358 15.25 20.25C15.25 20.6642 15.5858 21 16 21V19.5ZM8.75 10.75V10C8.33579 10 8 10.3358 8 10.75H8.75ZM15.25 10.75H16C16 10.3358 15.6642 10 15.25 10V10.75ZM15.25 15.25V16C15.6642 16 16 15.6642 16 15.25H15.25ZM8.75 15.25H8C8 15.6642 8.33579 16 8.75 16V15.25ZM14.25 10.75V11.5H15V10.75H14.25ZM9.75 10.75H9V11.5H9.75V10.75ZM4.5 8V3.75H3V8H4.5ZM4.5 20.25V16H3V20.25H4.5ZM3.75 4.5H8V3H3.75V4.5ZM16 4.5H20.25V3H16V4.5ZM19.5 3.75V8H21V3.75H19.5ZM19.5 16V20.25H21V16H19.5ZM8 19.5H3.75V21H8V19.5ZM20.25 19.5H16V21H20.25V19.5ZM8.75 11.5H15.25V10H8.75V11.5ZM14.5 10.75V15.25H16V10.75H14.5ZM15.25 14.5H8.75V16H15.25V14.5ZM9.5 15.25V10.75H8V15.25H9.5ZM13.5 10V10.75H15V10H13.5ZM14.25 10H9.75V11.5H14.25V10ZM10.5 10.75V10H9V10.75H10.5ZM12 8.5C12.8284 8.5 13.5 9.17157 13.5 10H15C15 8.34315 13.6569 7 12 7V8.5ZM12 7C10.3431 7 9 8.34315 9 10H10.5C10.5 9.17157 11.1716 8.5 12 8.5V7Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconFocusRemove: {\n title: \"focus-remove\",\n svg: '<path d=\"M3.75 8V3.75H8M3.75 16V20.25H8M16 3.75H20.25V8M20.25 16V20.25H16M9.7019 9.7019L12 12M12 12L14.2981 14.2981M12 12L9.7019 14.2981M12 12L14.2981 9.7019\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconFocusMacro: {\n title: \"focus-macro\",\n svg: '<path d=\"M3.75 8V3.75H8M3.75 16V20.25H8M16 3.75H20.25V8M20.25 16V20.25H16M12 14.25V16.25M8.75 8.55204V10.9895C8.75 12.7845 10.2051 14.2395 12 14.2395C13.7949 14.2395 15.25 12.7845 15.25 10.9895V8.55204L13.3542 9.36454L12 8.01038L10.6458 9.36454L8.75 8.55204Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconFocusMagic: {\n title: \"focus-magic\",\n svg: '<path d=\"M3.75 8V3.75H8M3.75 16V20.25H8M16 3.75H20.25V8M20.25 16V20.25H16\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.1845 9.28984C12.2813 9.24145 12.3598 9.16299 12.4081 9.06623L13.0531 7.77639C13.2373 7.40787 13.7632 7.40787 13.9475 7.77639L14.5924 9.06623C14.6408 9.16299 14.7192 9.24145 14.816 9.28984L16.1058 9.93475C16.4744 10.119 16.4744 10.6449 16.1058 10.8292L14.816 11.4741C14.7192 11.5225 14.6408 11.6009 14.5924 11.6977L13.9475 12.9875C13.7632 13.3561 13.2373 13.3561 13.0531 12.9875L12.4081 11.6977C12.3598 11.6009 12.2813 11.5225 12.1845 11.4741L10.8947 10.8292C10.5262 10.6449 10.5262 10.119 10.8947 9.93475L12.1845 9.28984Z\" fill=\"currentColor\"/><path d=\"M8.5775 13.5934C8.63556 13.5643 8.68263 13.5172 8.71166 13.4592L9.23194 12.4186C9.3425 12.1975 9.65804 12.1975 9.7686 12.4186L10.2889 13.4592C10.3179 13.5172 10.365 13.5643 10.423 13.5934L11.4636 14.1136C11.6847 14.2242 11.6847 14.5397 11.4636 14.6503L10.423 15.1706C10.365 15.1996 10.3179 15.2467 10.2889 15.3047L9.7686 16.3453C9.65804 16.5664 9.3425 16.5664 9.23194 16.3453L8.71166 15.3047C8.68263 15.2467 8.63556 15.1996 8.5775 15.1706L7.53693 14.6503C7.31582 14.5397 7.31581 14.2242 7.53693 14.1136L8.5775 13.5934Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconFocusRenew: {\n title: \"focus-renew\",\n svg: '<path d=\"M3.75 8V3.75H8M3.75 16V20.25H8M16 3.75H20.25V8M20.25 16V20.25H16M15.0897 15.5C14.3295 16.1613 13.3278 16.5625 12.25 16.5625C10.2697 16.5625 8.60568 15.2081 8.13388 13.375M9.16947 9.35133C9.95209 8.5564 11.0541 8.0625 12.25 8.0625C14.2303 8.0625 15.8943 9.41695 16.3661 11.25\" stroke=\"currentColor\" strokeWidth=\"1.59375\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M17.0312 14.4375V16.8737C17.0312 17.347 16.459 17.584 16.1243 17.2494L13.1569 14.2819C12.8222 13.9472 13.0593 13.375 13.5326 13.375H15.9688C16.5556 13.375 17.0312 13.8507 17.0312 14.4375Z\" fill=\"currentColor\"/><path d=\"M7.46875 10.1875V7.75131C7.46875 7.27802 8.04098 7.04099 8.37565 7.37566L11.3431 10.3431C11.6778 10.6778 11.4407 11.25 10.9674 11.25H8.53125C7.94445 11.25 7.46875 10.7743 7.46875 10.1875Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconUnblur: {\n title: \"unblur\",\n svg: '<path d=\"M9.75 6.25C9.75 6.80228 9.30228 7.25 8.75 7.25C8.19772 7.25 7.75 6.80228 7.75 6.25C7.75 5.69772 8.19772 5.25 8.75 5.25C9.30228 5.25 9.75 5.69772 9.75 6.25Z\" fill=\"currentColor\"/><path d=\"M6.25 6.25C6.25 6.80228 5.80228 7.25 5.25 7.25C4.69772 7.25 4.25 6.80228 4.25 6.25C4.25 5.69772 4.69772 5.25 5.25 5.25C5.80228 5.25 6.25 5.69772 6.25 6.25Z\" fill=\"currentColor\"/><path d=\"M9.75 17.75C9.75 18.3023 9.30228 18.75 8.75 18.75C8.19772 18.75 7.75 18.3023 7.75 17.75C7.75 17.1977 8.19772 16.75 8.75 16.75C9.30228 16.75 9.75 17.1977 9.75 17.75Z\" fill=\"currentColor\"/><path d=\"M9.5 3.25C9.5 3.66421 9.16421 4 8.75 4C8.33579 4 8 3.66421 8 3.25C8 2.83579 8.33579 2.5 8.75 2.5C9.16421 2.5 9.5 2.83579 9.5 3.25Z\" fill=\"currentColor\"/><path d=\"M3.25 10C3.25 10.4142 2.91421 10.75 2.5 10.75C2.08579 10.75 1.75 10.4142 1.75 10C1.75 9.58579 2.08579 9.25 2.5 9.25C2.91421 9.25 3.25 9.58579 3.25 10Z\" fill=\"currentColor\"/><path d=\"M3.25 14C3.25 14.4142 2.91421 14.75 2.5 14.75C2.08579 14.75 1.75 14.4142 1.75 14C1.75 13.5858 2.08579 13.25 2.5 13.25C2.91421 13.25 3.25 13.5858 3.25 14Z\" fill=\"currentColor\"/><path d=\"M9.5 20.75C9.5 21.1642 9.16421 21.5 8.75 21.5C8.33579 21.5 8 21.1642 8 20.75C8 20.3358 8.33579 20 8.75 20C9.16421 20 9.5 20.3358 9.5 20.75Z\" fill=\"currentColor\"/><path d=\"M10.25 10C10.25 10.8284 9.57843 11.5 8.75 11.5C7.92157 11.5 7.25 10.8284 7.25 10C7.25 9.17157 7.92157 8.5 8.75 8.5C9.57843 8.5 10.25 9.17157 10.25 10Z\" fill=\"currentColor\"/><path d=\"M10.25 14C10.25 14.8284 9.57843 15.5 8.75 15.5C7.92157 15.5 7.25 14.8284 7.25 14C7.25 13.1716 7.92157 12.5 8.75 12.5C9.57843 12.5 10.25 13.1716 10.25 14Z\" fill=\"currentColor\"/><path d=\"M6.25 10C6.25 10.5523 5.80228 11 5.25 11C4.69772 11 4.25 10.5523 4.25 10C4.25 9.44772 4.69772 9 5.25 9C5.80228 9 6.25 9.44772 6.25 10Z\" fill=\"currentColor\"/><path d=\"M6.25 14C6.25 14.5523 5.80228 15 5.25 15C4.69772 15 4.25 14.5523 4.25 14C4.25 13.4477 4.69772 13 5.25 13C5.80228 13 6.25 13.4477 6.25 14Z\" fill=\"currentColor\"/><path d=\"M6.25 17.75C6.25 18.3023 5.80228 18.75 5.25 18.75C4.69772 18.75 4.25 18.3023 4.25 17.75C4.25 17.1977 4.69772 16.75 5.25 16.75C5.80228 16.75 6.25 17.1977 6.25 17.75Z\" fill=\"currentColor\"/><path d=\"M12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75V21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconBlur: {\n title: \"blur\",\n svg: '<path d=\"M13 17.75C13 17.1977 13.4477 16.75 14 16.75C14.5523 16.75 15 17.1977 15 17.75C15 18.3023 14.5523 18.75 14 18.75C13.4477 18.75 13 18.3023 13 17.75Z\" fill=\"currentColor\"/><path d=\"M16.5 17.75C16.5 17.1977 16.9477 16.75 17.5 16.75C18.0523 16.75 18.5 17.1977 18.5 17.75C18.5 18.3023 18.0523 18.75 17.5 18.75C16.9477 18.75 16.5 18.3023 16.5 17.75Z\" fill=\"currentColor\"/><path d=\"M13 6.25C13 5.69771 13.4477 5.25 14 5.25C14.5523 5.25 15 5.69771 15 6.25C15 6.80229 14.5523 7.25 14 7.25C13.4477 7.25 13 6.80229 13 6.25Z\" fill=\"currentColor\"/><path d=\"M13.25 20.75C13.25 20.3358 13.5858 20 14 20C14.4142 20 14.75 20.3358 14.75 20.75C14.75 21.1642 14.4142 21.5 14 21.5C13.5858 21.5 13.25 21.1642 13.25 20.75Z\" fill=\"currentColor\"/><path d=\"M19.5 14C19.5 13.5858 19.8358 13.25 20.25 13.25C20.6642 13.25 21 13.5858 21 14C21 14.4142 20.6642 14.75 20.25 14.75C19.8358 14.75 19.5 14.4142 19.5 14Z\" fill=\"currentColor\"/><path d=\"M19.5 10C19.5 9.58579 19.8358 9.25 20.25 9.25C20.6642 9.25 21 9.58579 21 10C21 10.4142 20.6642 10.75 20.25 10.75C19.8358 10.75 19.5 10.4142 19.5 10Z\" fill=\"currentColor\"/><path d=\"M13.25 3.25C13.25 2.83579 13.5858 2.5 14 2.5C14.4142 2.5 14.75 2.83579 14.75 3.25C14.75 3.66421 14.4142 4 14 4C13.5858 4 13.25 3.66421 13.25 3.25Z\" fill=\"currentColor\"/><path d=\"M12.5 14C12.5 13.1716 13.1716 12.5 14 12.5C14.8284 12.5 15.5 13.1716 15.5 14C15.5 14.8284 14.8284 15.5 14 15.5C13.1716 15.5 12.5 14.8284 12.5 14Z\" fill=\"currentColor\"/><path d=\"M12.5 10C12.5 9.17157 13.1716 8.5 14 8.5C14.8284 8.5 15.5 9.17157 15.5 10C15.5 10.8284 14.8284 11.5 14 11.5C13.1716 11.5 12.5 10.8284 12.5 10Z\" fill=\"currentColor\"/><path d=\"M16.5 14C16.5 13.4477 16.9477 13 17.5 13C18.0523 13 18.5 13.4477 18.5 14C18.5 14.5523 18.0523 15 17.5 15C16.9477 15 16.5 14.5523 16.5 14Z\" fill=\"currentColor\"/><path d=\"M16.5 10C16.5 9.44771 16.9477 9 17.5 9C18.0523 9 18.5 9.44771 18.5 10C18.5 10.5523 18.0523 11 17.5 11C16.9477 11 16.5 10.5523 16.5 10Z\" fill=\"currentColor\"/><path d=\"M16.5 6.25C16.5 5.69771 16.9477 5.25 17.5 5.25C18.0523 5.25 18.5 5.69771 18.5 6.25C18.5 6.80229 18.0523 7.25 17.5 7.25C16.9477 7.25 16.5 6.80229 16.5 6.25Z\" fill=\"currentColor\"/><path d=\"M11 6.25C11 6.80228 10.5523 7.25 10 7.25C9.44772 7.25 9 6.80228 9 6.25C9 5.69772 9.44772 5.25 10 5.25C10.5523 5.25 11 5.69772 11 6.25Z\" fill=\"currentColor\"/><path d=\"M7.5 6.25C7.5 6.80228 7.05228 7.25 6.5 7.25C5.94772 7.25 5.5 6.80228 5.5 6.25C5.5 5.69772 5.94772 5.25 6.5 5.25C7.05228 5.25 7.5 5.69772 7.5 6.25Z\" fill=\"currentColor\"/><path d=\"M11 17.75C11 18.3023 10.5523 18.75 10 18.75C9.44772 18.75 9 18.3023 9 17.75C9 17.1977 9.44772 16.75 10 16.75C10.5523 16.75 11 17.1977 11 17.75Z\" fill=\"currentColor\"/><path d=\"M10.75 3.25C10.75 3.66421 10.4142 4 10 4C9.58579 4 9.25 3.66421 9.25 3.25C9.25 2.83579 9.58579 2.5 10 2.5C10.4142 2.5 10.75 2.83579 10.75 3.25Z\" fill=\"currentColor\"/><path d=\"M4.5 10C4.5 10.4142 4.16421 10.75 3.75 10.75C3.33579 10.75 3 10.4142 3 10C3 9.58579 3.33579 9.25 3.75 9.25C4.16421 9.25 4.5 9.58579 4.5 10Z\" fill=\"currentColor\"/><path d=\"M4.5 14C4.5 14.4142 4.16421 14.75 3.75 14.75C3.33579 14.75 3 14.4142 3 14C3 13.5858 3.33579 13.25 3.75 13.25C4.16421 13.25 4.5 13.5858 4.5 14Z\" fill=\"currentColor\"/><path d=\"M10.75 20.75C10.75 21.1642 10.4142 21.5 10 21.5C9.58579 21.5 9.25 21.1642 9.25 20.75C9.25 20.3358 9.58579 20 10 20C10.4142 20 10.75 20.3358 10.75 20.75Z\" fill=\"currentColor\"/><path d=\"M11.5 10C11.5 10.8284 10.8284 11.5 10 11.5C9.17157 11.5 8.5 10.8284 8.5 10C8.5 9.17157 9.17157 8.5 10 8.5C10.8284 8.5 11.5 9.17157 11.5 10Z\" fill=\"currentColor\"/><path d=\"M11.5 14C11.5 14.8284 10.8284 15.5 10 15.5C9.17157 15.5 8.5 14.8284 8.5 14C8.5 13.1716 9.17157 12.5 10 12.5C10.8284 12.5 11.5 13.1716 11.5 14Z\" fill=\"currentColor\"/><path d=\"M7.5 10C7.5 10.5523 7.05228 11 6.5 11C5.94772 11 5.5 10.5523 5.5 10C5.5 9.44772 5.94772 9 6.5 9C7.05228 9 7.5 9.44772 7.5 10Z\" fill=\"currentColor\"/><path d=\"M7.5 14C7.5 14.5523 7.05228 15 6.5 15C5.94772 15 5.5 14.5523 5.5 14C5.5 13.4477 5.94772 13 6.5 13C7.05228 13 7.5 13.4477 7.5 14Z\" fill=\"currentColor\"/><path d=\"M7.5 17.75C7.5 18.3023 7.05228 18.75 6.5 18.75C5.94772 18.75 5.5 18.3023 5.5 17.75C5.5 17.1977 5.94772 16.75 6.5 16.75C7.05228 16.75 7.5 17.1977 7.5 17.75Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconBrightness: {\n title: \"brightness\",\n svg: '<circle cx=\"12\" cy=\"12\" r=\"5.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 1.75V2.775M12 21.225V22.25M4.75218 4.75216L5.47696 5.47694M18.5231 18.5231L19.2479 19.2478M19.2479 4.75218L18.5231 5.47696M5.47699 18.5231L4.7522 19.2479M1.75 12H2.775M21.225 12H22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconHighlights: {\n title: \"highlights\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 10.25H11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.25 6.75H11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 13.75H11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.25 17.25H11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconShadows: {\n title: \"shadows\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 10.25H20.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 6.75H18.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 13.75H20.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 17.25H18.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 3.25V20.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconContrast: {\n title: \"contrast\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 3V21\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15 3.5V20.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 5V19\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconExposure1: {\n title: \"exposure-1, plus-minus\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 6.75V9.5M12 12.25V9.5M12 9.5H9.25M12 9.5H14.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 16.25H14.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconBrilliance: {\n title: \"brilliance, yin yang, ballance\",\n svg: '<path d=\"M12 2.75C9.37665 2.75 7.25 4.82068 7.25 7.375C7.25 13.747 16.75 10.253 16.75 16.625C16.75 19.1793 14.6234 21.25 12 21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconAdjustPhoto: {\n title: \"adjust-photo, tuning, settings\",\n svg: '<path d=\"M19.25 12C19.25 16.0041 16.0041 19.25 12 19.25C7.99594 19.25 4.75 16.0041 4.75 12C4.75 7.99594 7.99594 4.75 12 4.75C16.0041 4.75 19.25 7.99594 19.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.5 16.5L12 12\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 1.1001V1.1101\" stroke=\"currentColor\" stroke-width=\"2.2\" stroke-linecap=\"round\"/><path d=\"M1.10156 12V12.01\" stroke=\"currentColor\" stroke-width=\"2.2\" stroke-linecap=\"round\"/><path d=\"M22.8984 12V12.01\" stroke=\"currentColor\" stroke-width=\"2.2\" stroke-linecap=\"round\"/><path d=\"M19.6992 4.30005V4.31005M19.6992 4.30005V4.31005\" stroke=\"currentColor\" stroke-width=\"2.2\" stroke-linecap=\"round\"/><path d=\"M4.30078 4.30005V4.31005\" stroke=\"currentColor\" stroke-width=\"2.2\" stroke-linecap=\"round\"/><path d=\"M19.6992 19.7V19.71M19.6992 19.7V19.71\" stroke=\"currentColor\" stroke-width=\"2.2\" stroke-linecap=\"round\"/><path d=\"M4.30078 19.7V19.71\" stroke=\"currentColor\" stroke-width=\"2.2\" stroke-linecap=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconVignette: {\n title: \"vignette\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M13 7.5C13 8.05228 12.5523 8.5 12 8.5C11.4477 8.5 11 8.05228 11 7.5C11 6.94772 11.4477 6.5 12 6.5C12.5523 6.5 13 6.94772 13 7.5Z\" fill=\"currentColor\"/><path d=\"M17.5 12C17.5 12.5523 17.0523 13 16.5 13C15.9477 13 15.5 12.5523 15.5 12C15.5 11.4477 15.9477 11 16.5 11C17.0523 11 17.5 11.4477 17.5 12Z\" fill=\"currentColor\"/><path d=\"M8.5 12C8.5 12.5523 8.05228 13 7.5 13C6.94772 13 6.5 12.5523 6.5 12C6.5 11.4477 6.94772 11 7.5 11C8.05228 11 8.5 11.4477 8.5 12Z\" fill=\"currentColor\"/><path d=\"M13 16.5C13 17.0523 12.5523 17.5 12 17.5C11.4477 17.5 11 17.0523 11 16.5C11 15.9477 11.4477 15.5 12 15.5C12.5523 15.5 13 15.9477 13 16.5Z\" fill=\"currentColor\"/><path d=\"M9.52513 8.11091C9.91565 8.50144 9.91565 9.1346 9.52513 9.52513C9.1346 9.91565 8.50144 9.91565 8.11091 9.52513C7.72039 9.1346 7.72039 8.50144 8.11091 8.11091C8.50144 7.72039 9.1346 7.72039 9.52513 8.11091Z\" fill=\"currentColor\"/><path d=\"M15.8891 8.11091C16.2796 8.50144 16.2796 9.1346 15.8891 9.52513C15.4986 9.91565 14.8654 9.91565 14.4749 9.52513C14.0843 9.1346 14.0843 8.50144 14.4749 8.11091C14.8654 7.72039 15.4986 7.72039 15.8891 8.11091Z\" fill=\"currentColor\"/><path d=\"M9.52513 14.4749C9.91565 14.8654 9.91565 15.4986 9.52513 15.8891C9.1346 16.2796 8.50144 16.2796 8.11091 15.8891C7.72039 15.4986 7.72039 14.8654 8.11091 14.4749C8.50144 14.0843 9.1346 14.0843 9.52513 14.4749Z\" fill=\"currentColor\"/><path d=\"M15.8891 14.4749C16.2796 14.8654 16.2796 15.4986 15.8891 15.8891C15.4986 16.2796 14.8654 16.2796 14.4749 15.8891C14.0843 15.4986 14.0843 14.8654 14.4749 14.4749C14.8654 14.0843 15.4986 14.0843 15.8891 14.4749Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconNoiseReduction: {\n title: \"noise-reduction\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M10 17C10 17.5523 9.55228 18 9 18C8.44772 18 8 17.5523 8 17C8 16.4477 8.44772 16 9 16C9.55228 16 10 16.4477 10 17Z\" fill=\"currentColor\"/><path d=\"M12 15C12 15.5523 11.5523 16 11 16C10.4477 16 10 15.5523 10 15C10 14.4477 10.4477 14 11 14C11.5523 14 12 14.4477 12 15Z\" fill=\"currentColor\"/><path d=\"M14.5 17.5C14.5 18.0523 14.0523 18.5 13.5 18.5C12.9477 18.5 12.5 18.0523 12.5 17.5C12.5 16.9477 12.9477 16.5 13.5 16.5C14.0523 16.5 14.5 16.9477 14.5 17.5Z\" fill=\"currentColor\"/><path d=\"M16.5 15.5C16.5 16.0523 16.0523 16.5 15.5 16.5C14.9477 16.5 14.5 16.0523 14.5 15.5C14.5 14.9477 14.9477 14.5 15.5 14.5C16.0523 14.5 16.5 14.9477 16.5 15.5Z\" fill=\"currentColor\"/><path d=\"M18.5 13.5C18.5 14.0523 18.0523 14.5 17.5 14.5C16.9477 14.5 16.5 14.0523 16.5 13.5C16.5 12.9477 16.9477 12.5 17.5 12.5C18.0523 12.5 18.5 12.9477 18.5 13.5Z\" fill=\"currentColor\"/><path d=\"M16 11C16 11.5523 15.5523 12 15 12C14.4477 12 14 11.5523 14 11C14 10.4477 14.4477 10 15 10C15.5523 10 16 10.4477 16 11Z\" fill=\"currentColor\"/><path d=\"M18 9C18 9.55228 17.5523 10 17 10C16.4477 10 16 9.55228 16 9C16 8.44772 16.4477 8 17 8C17.5523 8 18 8.44772 18 9Z\" fill=\"currentColor\"/><path d=\"M14 13C14 13.5523 13.5523 14 13 14C12.4477 14 12 13.5523 12 13C12 12.4477 12.4477 12 13 12C13.5523 12 14 12.4477 14 13Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconBlackpoint: {\n title: \"blackpoint, target\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.5 11.25H13.5M10.5 12.75H13.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 12C9.75 13.2426 10.7574 14.25 12 14.25C13.2426 14.25 14.25 13.2426 14.25 12C14.25 10.7574 13.2426 9.75 12 9.75C10.7574 9.75 9.75 10.7574 9.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Photography & Video\",\n },\n IconRear: {\n title: \"rear, front-back, change-cam, lens\",\n svg: '<path d=\"M19.2618 3.75V7.75H15.2618M4.75 20.25V16.25H8.75M3.75 12C3.75 7.44365 7.44365 3.75 12 3.75C14.7778 3.75 17.2948 5.12281 18.8007 7.22697M20.25 12C20.25 16.5563 16.5563 20.25 12 20.25C9.24348 20.25 6.74367 18.8981 5.23402 16.8212M12 12V11.99M12.25 12C12.25 12.1381 12.1381 12.25 12 12.25C11.8619 12.25 11.75 12.1381 11.75 12C11.75 11.8619 11.8619 11.75 12 11.75C12.1381 11.75 12.25 11.8619 12.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconImages1: {\n title: \"images-1, photos, pictures, shot\",\n svg: '<path d=\"M4 14.2105L6.84488 12.0821C7.66137 11.5378 8.75215 11.6663 9.41987 12.3853C10.9123 13.9926 12.6426 15.4538 15 15.4538C17.1727 15.4538 18.6125 14.6485 20 13.261M3.75 3.75H20.25V20.25H3.75V3.75ZM17.25 8.75C17.25 9.85457 16.3546 10.75 15.25 10.75C14.1454 10.75 13.25 9.85457 13.25 8.75C13.25 7.64543 14.1454 6.75 15.25 6.75C16.3546 6.75 17.25 7.64543 17.25 8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconImages2: {\n title: \"images-2, photos, pictures, shot\",\n svg: '<path d=\"M3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM8 12L8.53033 11.4697C8.23744 11.1768 7.76256 11.1768 7.46967 11.4697L8 12ZM3.75 4.5H20.25V3H3.75V4.5ZM19.5 3.75V20.25H21V3.75H19.5ZM4.28033 16.7803L8.53033 12.5303L7.46967 11.4697L3.21967 15.7197L4.28033 16.7803ZM4.5 20.25V16.25H3V20.25H4.5ZM4.5 16.25V3.75H3V16.25H4.5ZM7.46967 12.5303L15.7197 20.7803L16.7803 19.7197L8.53033 11.4697L7.46967 12.5303ZM20.25 19.5H16.25V21H20.25V19.5ZM16.25 19.5H3.75V21H16.25V19.5ZM15.75 9.5C15.75 10.1904 15.1904 10.75 14.5 10.75V12.25C16.0188 12.25 17.25 11.0188 17.25 9.5H15.75ZM14.5 10.75C13.8096 10.75 13.25 10.1904 13.25 9.5H11.75C11.75 11.0188 12.9812 12.25 14.5 12.25V10.75ZM13.25 9.5C13.25 8.80964 13.8096 8.25 14.5 8.25V6.75C12.9812 6.75 11.75 7.98122 11.75 9.5H13.25ZM14.5 8.25C15.1904 8.25 15.75 8.80964 15.75 9.5H17.25C17.25 7.98122 16.0188 6.75 14.5 6.75V8.25Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconImages3: {\n title: \"images-3, photos, pictures, shot\",\n svg: '<path d=\"M3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.23598 15.4538C2.93435 15.7377 2.91996 16.2124 3.20385 16.514C3.48774 16.8157 3.96239 16.83 4.26402 16.5462L3.23598 15.4538ZM8 12L8.53033 11.4697C8.24369 11.183 7.78117 11.176 7.48598 11.4538L8 12ZM12 16L11.4697 16.5303C11.7626 16.8232 12.2374 16.8232 12.5303 16.5303L12 16ZM14 14L14.5303 13.4697C14.2374 13.1768 13.7626 13.1768 13.4697 13.4697L14 14ZM19.4697 20.5303C19.7626 20.8232 20.2374 20.8232 20.5303 20.5303C20.8232 20.2374 20.8232 19.7626 20.5303 19.4697L19.4697 20.5303ZM3.75 4.5H20.25V3H3.75V4.5ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM4.26402 16.5462L8.51402 12.5462L7.48598 11.4538L3.23598 15.4538L4.26402 16.5462ZM7.46967 12.5303L11.4697 16.5303L12.5303 15.4697L8.53033 11.4697L7.46967 12.5303ZM12.5303 16.5303L14.5303 14.5303L13.4697 13.4697L11.4697 15.4697L12.5303 16.5303ZM13.4697 14.5303L19.4697 20.5303L20.5303 19.4697L14.5303 13.4697L13.4697 14.5303ZM15 9C15 9.41421 14.6642 9.75 14.25 9.75V11.25C15.4926 11.25 16.5 10.2426 16.5 9H15ZM14.25 9.75C13.8358 9.75 13.5 9.41421 13.5 9H12C12 10.2426 13.0074 11.25 14.25 11.25V9.75ZM13.5 9C13.5 8.58579 13.8358 8.25 14.25 8.25V6.75C13.0074 6.75 12 7.75736 12 9H13.5ZM14.25 8.25C14.6642 8.25 15 8.58579 15 9H16.5C16.5 7.75736 15.4926 6.75 14.25 6.75V8.25Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconRemoveBackground: {\n title: \"remove-background\",\n svg: '<path d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"3\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 9.5L20 4\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 14.5L4 20\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 11.25L11.25 3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 20.25L20.25 12.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconImages4: {\n title: \"images-4, photos, pictures, shot\",\n svg: '<path d=\"M2.5 19.25L1.87596 18.834C1.72253 19.0641 1.70823 19.36 1.83874 19.6039C1.96926 19.8478 2.2234 20 2.5 20V19.25ZM7 12.5L7.43593 11.8897C7.27065 11.7716 7.06457 11.7257 6.86479 11.7623C6.66501 11.7989 6.48863 11.915 6.37596 12.084L7 12.5ZM10.5 15L10.0641 15.6103C10.4002 15.8504 10.8673 15.7735 11.1087 15.4382L10.5 15ZM15 8.75L15.6377 8.35523C15.5059 8.14228 15.2764 8.00918 15.0261 8.00046C14.7758 7.99173 14.5377 8.10852 14.3913 8.31177L15 8.75ZM21.5 19.25V20C21.7721 20 22.0228 19.8527 22.1552 19.615C22.2876 19.3773 22.2809 19.0866 22.1377 18.8552L21.5 19.25ZM3.12404 19.666L7.62404 12.916L6.37596 12.084L1.87596 18.834L3.12404 19.666ZM6.56407 13.1103L10.0641 15.6103L10.9359 14.3897L7.43593 11.8897L6.56407 13.1103ZM11.1087 15.4382L15.6087 9.18823L14.3913 8.31177L9.89135 14.5618L11.1087 15.4382ZM14.3623 9.14477L20.8623 19.6448L22.1377 18.8552L15.6377 8.35523L14.3623 9.14477ZM2.5 20H21.5V18.5H2.5V20ZM11 6.5C11 7.60457 10.1046 8.5 9 8.5V10C10.933 10 12.5 8.433 12.5 6.5H11ZM9 8.5C7.89543 8.5 7 7.60457 7 6.5H5.5C5.5 8.433 7.067 10 9 10V8.5ZM7 6.5C7 5.39543 7.89543 4.5 9 4.5V3C7.067 3 5.5 4.567 5.5 6.5H7ZM9 4.5C10.1046 4.5 11 5.39543 11 6.5H12.5C12.5 4.567 10.933 3 9 3V4.5Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconImages5: {\n title: \"images-5, photos, pictures, shot\",\n svg: '<path d=\"M12.25 7C12.25 8.51878 11.0188 9.75 9.5 9.75C7.98122 9.75 6.75 8.51878 6.75 7C6.75 5.48122 7.98122 4.25 9.5 4.25C11.0188 4.25 12.25 5.48122 12.25 7Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.93814 12.7206C3.52211 12.7206 2 19.2496 2 19.2496H22C20.2005 13.0019 18.2925 9.6091 16.5 9.75761C13.5232 10.0042 12.2165 14.6685 10.5 14.6685C9.0731 14.6685 7.74143 12.7206 5.93814 12.7206Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconImagesCircle: {\n title: \"images-circle\",\n svg: '<path d=\"M16 20L7.91667 11.75L3.75 16\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14 11.75C15.2426 11.75 16.25 10.7426 16.25 9.5C16.25 8.25736 15.2426 7.25 14 7.25C12.7574 7.25 11.75 8.25736 11.75 9.5C11.75 10.7426 12.7574 11.75 14 11.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconWallpaper: {\n title: \"wallpaper, os\",\n svg: '<path d=\"M3 13.4232C5.07915 12.3217 9.2393 9.75 12 9.75C14.7607 9.75 18.9208 12.3217 21 13.4232M11.735 10.1127C11.1067 11.01 9.63873 13.3504 10.4583 14.5893C11.4861 16.1429 16.0676 13.8961 16.625 16.1429C16.9749 17.5532 15.1808 18.4834 14 18.9335M2.75 4.75H21.25V19.25H13.0278H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconCat: {\n title: \"cat, image, animal, cute\",\n svg: '<path d=\"M12.5005 10.26L12.3309 10.9905C12.5178 11.0339 12.7143 11.004 12.8799 10.907L12.5005 10.26ZM14.9666 9.23502L15.1607 9.95946L14.9666 9.23502ZM8.12173 9.24321L8.29137 8.51264C8.04555 8.45556 7.7875 8.52594 7.60469 8.69991C7.42188 8.87389 7.33882 9.12814 7.38367 9.37649L8.12173 9.24321ZM9.02753 14.2592L9.73701 14.5024C9.77849 14.3814 9.78833 14.2518 9.76559 14.1259L9.02753 14.2592ZM8.89821 17.2516L8.17377 17.4457L8.89821 17.2516ZM17.615 8.8896L17.61 9.63959C17.8069 9.6409 17.9965 9.56468 18.1377 9.42738L17.615 8.8896ZM10.5334 20.7537C10.8707 20.9941 11.339 20.9156 11.5795 20.5783C11.8199 20.241 11.7414 19.7727 11.4041 19.5322L10.5334 20.7537ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM12.8799 10.907C13.5622 10.5069 14.3284 10.1825 15.1607 9.95946L14.7725 8.51057C13.8115 8.76807 12.9205 9.14433 12.1212 9.61297L12.8799 10.907ZM7.9521 9.97377L12.3309 10.9905L12.6702 9.5294L8.29137 8.51264L7.9521 9.97377ZM9.76559 14.1259L8.8598 9.10992L7.38367 9.37649L8.28947 14.3924L9.76559 14.1259ZM9.62266 17.0575C9.398 16.2191 9.44686 15.3488 9.73701 14.5024L8.31806 14.0159C7.94054 15.1172 7.8648 16.2927 8.17377 17.4457L9.62266 17.0575ZM19.7272 5.79034L17.0922 8.35182L18.1377 9.42738L20.7728 6.86591L19.7272 5.79034ZM15.1607 9.95946C15.9931 9.73643 16.819 9.63429 17.61 9.63959L17.62 8.13962C16.6934 8.13341 15.7336 8.25305 14.7725 8.51057L15.1607 9.95946ZM11.4041 19.5322C10.5137 18.8975 9.88934 18.0528 9.62266 17.0575L8.17377 17.4457C8.54163 18.8186 9.39615 19.943 10.5334 20.7537L11.4041 19.5322ZM3.75 4.5H20.25V3H3.75V4.5ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5Z\" fill=\"currentColor\"/><path d=\"M13.9884 14.4899C14.1717 15.1742 13.8581 15.8527 13.2879 16.0055C12.7177 16.1583 12.1068 15.7275 11.9234 15.0432C11.7401 14.359 12.0537 13.6804 12.6239 13.5276C13.1941 13.3748 13.805 13.8057 13.9884 14.4899Z\" fill=\"currentColor\"/><path d=\"M20.1827 12.83C20.3661 13.5143 20.0524 14.1928 19.4822 14.3456C18.912 14.4984 18.3011 14.0676 18.1178 13.3833C17.9344 12.699 18.2481 12.0205 18.8183 11.8677C19.3885 11.7149 19.9994 12.1458 20.1827 12.83Z\" fill=\"currentColor\"/><path d=\"M18.0671 16.4955C18.1893 16.9516 17.7337 17.4701 17.0494 17.6534C16.3652 17.8367 15.7114 17.6156 15.5892 17.1594C15.4669 16.7032 15.9225 16.1848 16.6068 16.0015C17.2911 15.8181 17.9448 16.0393 18.0671 16.4955Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconAspectRatio11: {\n title: \"aspect-ratio-1-1, square\",\n svg: '<path d=\"M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconAspectRatio43: {\n title: \"aspect-ratio-4-3, landscape\",\n svg: '<path d=\"M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconAspectRatio169: {\n title: \"aspect-ratio-16-9, landscape\",\n svg: '<path d=\"M1.75 5.75H22.25V18.25H1.75V5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconAspectRatio219: {\n title: \"aspect-ratio-21-9, wide, landscape\",\n svg: '<path d=\"M0.75 6.75H23.25V17.25H0.75V6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconAspectRatio34: {\n title: \"aspect-ratio-3-4, portrait\",\n svg: '<path d=\"M4.75 2.75H19.25V21.25H4.75V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconVideo: {\n title: \"video, camera, movie, play\",\n svg: '<path d=\"M2.75 4.75H15.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.25 10L21.25 7V17L15.25 14V10Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconVideoOff: {\n title: \"video-off, cam-off\",\n svg: '<path d=\"M15.25 12V10L21.25 7V17L15.25 14V12ZM15.25 12V4.75H7.75M14.25 19.25H2.75V4M2 3L16.5 21.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconVideoOn: {\n title: \"video-on, cam-on\",\n svg: '<path d=\"M16.25 4.75H17C17 4.33579 16.6642 4 16.25 4V4.75ZM2.75 4.75V4C2.33579 4 2 4.33579 2 4.75H2.75ZM2.75 19.25H2C2 19.6642 2.33579 20 2.75 20V19.25ZM16.25 19.25V20H17V19.25H16.25ZM16.25 8.75H15.5C15.5 8.99887 15.6234 9.23153 15.8295 9.37105C16.0356 9.51057 16.2975 9.53878 16.5285 9.44636L16.25 8.75ZM16.25 15.25L16.5285 14.5536C16.2975 14.4612 16.0356 14.4894 15.8295 14.6289C15.6234 14.7685 15.5 15.0011 15.5 15.25H16.25ZM21.25 6.75H22C22 6.50113 21.8766 6.26847 21.6705 6.12895C21.4644 5.98943 21.2025 5.96122 20.9715 6.05364L21.25 6.75ZM21.25 17.25L20.9715 17.9464C21.2025 18.0388 21.4644 18.0106 21.6705 17.8711C21.8766 17.7315 22 17.4989 22 17.25H21.25ZM16.25 4H2.75V5.5H16.25V4ZM2 4.75V19.25H3.5V4.75H2ZM2.75 20H16.25V18.5H2.75V20ZM15.5 4.75V8.75H17V4.75H15.5ZM15.5 15.25V19.25H17V15.25H15.5ZM16.5285 9.44636L21.5285 7.44636L20.9715 6.05364L15.9715 8.05364L16.5285 9.44636ZM20.5 6.75V17.25H22V6.75H20.5ZM21.5285 16.5536L16.5285 14.5536L15.9715 15.9464L20.9715 17.9464L21.5285 16.5536ZM11.5 12C11.5 13.1046 10.6046 14 9.5 14V15.5C11.433 15.5 13 13.933 13 12H11.5ZM9.5 14C8.39543 14 7.5 13.1046 7.5 12H6C6 13.933 7.567 15.5 9.5 15.5V14ZM7.5 12C7.5 10.8954 8.39543 10 9.5 10V8.5C7.567 8.5 6 10.067 6 12H7.5ZM9.5 10C10.6046 10 11.5 10.8954 11.5 12H13C13 10.067 11.433 8.5 9.5 8.5V10Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconScreenCapture: {\n title: \"screen-capture, recording\",\n svg: '<path d=\"M2.75 7.25V4.75H5.25M13.75 4.75H15.25M8.75 4.75H10.25M18.75 4.75H21.25V7.25M10.25 19.25H8.75M5.25 19.25H2.75V16.75M2.75 13.25V10.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"18.5\" cy=\"15.5\" r=\"2\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"18.5\" cy=\"15.5\" r=\"0.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"18.5\" cy=\"15.5\" r=\"4.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconClapperboard: {\n title: \"clapperboard\",\n svg: '<path d=\"M2.75 9.75H21.25M2.75 9.75V19.25H21.25V9.75M2.75 9.75V4.75H8H12.5H17.25H21.25V9.75M2.75 9.75H7H11.5H16H21.25M12.45 5L11.55 9.5M17.1875 5L16.0625 9.5M7.95 5L7.05 9.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconVideoClip: {\n title: \"video-clip, film, movie\",\n svg: '<path d=\"M3.75 12H7.75M3.75 12V7.875M3.75 12V16.125M7.75 12H16.25M7.75 12V16.125M7.75 12V7.875M16.25 12H20.25M16.25 12V16.5833M16.25 12V7.875M20.25 12V7.875M20.25 12V16.5833M16.25 20.25H20.25V16.5833M16.25 20.25V16.5833M16.25 20.25H7.75M16.25 3.75H20.25V7.875M16.25 3.75V7.875M16.25 3.75H7.75M16.25 7.875H20.25M16.25 16.5833H20.25M7.75 20.25H3.75V16.125M7.75 20.25V16.125M7.75 3.75H3.75V7.875M7.75 3.75V7.875M3.75 7.875H7.75M3.75 16.125H7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconVideoRoll: {\n title: \"video-roll, movie\",\n svg: '<path d=\"M12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25ZM12 21.25H21.25M9.25 12C9.25 12.9665 8.4665 13.75 7.5 13.75C6.5335 13.75 5.75 12.9665 5.75 12C5.75 11.0335 6.5335 10.25 7.5 10.25C8.4665 10.25 9.25 11.0335 9.25 12ZM13.75 7.5C13.75 8.4665 12.9665 9.25 12 9.25C11.0335 9.25 10.25 8.4665 10.25 7.5C10.25 6.5335 11.0335 5.75 12 5.75C12.9665 5.75 13.75 6.5335 13.75 7.5ZM13.75 16.5C13.75 17.4665 12.9665 18.25 12 18.25C11.0335 18.25 10.25 17.4665 10.25 16.5C10.25 15.5335 11.0335 14.75 12 14.75C12.9665 14.75 13.75 15.5335 13.75 16.5ZM18.25 12C18.25 12.9665 17.4665 13.75 16.5 13.75C15.5335 13.75 14.75 12.9665 14.75 12C14.75 11.0335 15.5335 10.25 16.5 10.25C17.4665 10.25 18.25 11.0335 18.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconMultiMedia: {\n title: \"multi-media, media, image-video\",\n svg: '<path d=\"M15.25 8.75V2.75H2.75V15.25H8.75M3.1 11.9L6 10L8.37885 11.5859M6 6.25H6.5M14.5 15.0002H15M8.75 8.75H21.25V21.25H8.75V8.75ZM6.75 6.25C6.75 6.52614 6.52614 6.75 6.25 6.75C5.97386 6.75 5.75 6.52614 5.75 6.25C5.75 5.97386 5.97386 5.75 6.25 5.75C6.52614 5.75 6.75 5.97386 6.75 6.25ZM13.75 13.2V16.8L16.55 15L13.75 13.2Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconVideos: {\n title: \"videos,video-playlist\",\n svg: '<path d=\"M4.75 3.75H19.25M11.5 13.25H12.25M11.5 13.25V13M11.5 13.25V13.5M2.75 6.25H21.25V20.25H2.75V6.25ZM10.75 10.75V15.75L14 13.25L10.75 10.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconVideoTimeline: {\n title: \"video-timeline, edit-video\",\n svg: '<path d=\"M21.25 4.75H2.75V15.75H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 19.25L21.25 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3 11.75L7.5 9L15.25 15.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.75 9.25C17.75 10.0784 17.0784 10.75 16.25 10.75C15.4216 10.75 14.75 10.0784 14.75 9.25C14.75 8.42157 15.4216 7.75 16.25 7.75C17.0784 7.75 17.75 8.42157 17.75 9.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"19.25\" r=\"1\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconVideoTrim: {\n title: \"video-trim\",\n svg: '<path d=\"M15.25 2.75V4.75M15.25 4.75V19.25M15.25 4.75H2.75V19.25H15.25M15.25 19.25V21.25M18.75 19.25H21.25V4.75H18.75M8.25 12H9M8.25 12V11.75M8.25 12V12.25M7.5 9.5V14.5L10.75 12L7.5 9.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconSplit: {\n title: \"split\",\n svg: '<path d=\"M12 2.75V21.25M8.25 4.75H2.75V19.25H8.25M15.75 19.25H21.25V4.75H15.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconAutoSize: {\n title: \"auto-size, automatic-size, page\",\n svg: '<path d=\"M4.75 11.75H12.25V21.25M4.75 11.75V21.25H12.25M4.75 11.75V2.75H19.25V21.25H12.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconCrop: {\n title: \"crop\",\n svg: '<path d=\"M2.75 5.75H18.25V21.25M5.75 2.75V18.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconGif: {\n title: \"gif\",\n svg: '<path d=\"M5.75 12.3676C5.75 14.0113 6.70955 15 8.34036 15C9.79045 15 10.7672 14.138 10.7672 12.8662V12.5155C10.7672 11.9789 10.5176 11.738 9.94966 11.738H8.89544C8.51678 11.738 8.31454 11.9113 8.31454 12.2282C8.31454 12.5493 8.52108 12.7268 8.89544 12.7268H9.4247V12.9718C9.4247 13.5 9.01162 13.8549 8.3963 13.8549C7.60456 13.8549 7.16997 13.3268 7.16997 12.3634V11.6662C7.16997 10.6901 7.59596 10.1789 8.40921 10.1789C8.96429 10.1789 9.28701 10.5085 9.63554 10.8507C9.76033 10.9732 9.88941 11.0282 10.0572 11.0282C10.3972 11.0282 10.6338 10.8 10.6338 10.4662C10.6338 10.1324 10.3799 9.76901 9.99268 9.49437C9.56239 9.17746 8.97289 9 8.30594 9C6.72246 9 5.75 10.0014 5.75 11.5986V12.3676Z\" fill=\"currentColor\"/><path d=\"M12.3894 14.9155C12.8412 14.9155 13.0951 14.6451 13.0951 14.1634V9.81549C13.0951 9.33803 12.8369 9.06338 12.3808 9.06338C11.9247 9.06338 11.6708 9.3338 11.6708 9.81549V14.1634C11.6708 14.6408 11.9333 14.9155 12.3894 14.9155Z\" fill=\"currentColor\"/><path d=\"M14.9626 14.9155C15.4101 14.9155 15.6596 14.6451 15.6596 14.1634V12.7014H17.4669C17.8025 12.7014 18.0306 12.4817 18.0306 12.1563C18.0306 11.831 17.8068 11.6113 17.4669 11.6113H15.6596V10.2254H17.6863C18.0133 10.2254 18.25 9.99718 18.25 9.67183C18.25 9.34225 18.0133 9.10563 17.6863 9.10563H15.0572C14.5237 9.10563 14.2354 9.38873 14.2354 9.90423V14.1634C14.2354 14.6366 14.5022 14.9155 14.9626 14.9155Z\" fill=\"currentColor\"/><path d=\"M21.25 4.75H2.75V19.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconGifSquare: {\n title: \"gif-square\",\n svg: '<path d=\"M5.75 12.3676C5.75 14.0113 6.70955 15 8.34036 15C9.79045 15 10.7672 14.138 10.7672 12.8662V12.5155C10.7672 11.9789 10.5176 11.738 9.94966 11.738H8.89544C8.51678 11.738 8.31454 11.9113 8.31454 12.2282C8.31454 12.5493 8.52108 12.7268 8.89544 12.7268H9.4247V12.9718C9.4247 13.5 9.01162 13.8549 8.3963 13.8549C7.60456 13.8549 7.16997 13.3268 7.16997 12.3634V11.6662C7.16997 10.6901 7.59596 10.1789 8.40921 10.1789C8.96429 10.1789 9.287 10.5085 9.63554 10.8507C9.76033 10.9732 9.88941 11.0282 10.0572 11.0282C10.3972 11.0282 10.6338 10.8 10.6338 10.4662C10.6338 10.1324 10.3799 9.76901 9.99268 9.49437C9.56239 9.17746 8.97289 9 8.30594 9C6.72246 9 5.75 10.0014 5.75 11.5986V12.3676Z\" fill=\"currentColor\"/><path d=\"M12.3894 14.9155C12.8412 14.9155 13.0951 14.6451 13.0951 14.1634V9.81549C13.0951 9.33803 12.8369 9.06338 12.3808 9.06338C11.9247 9.06338 11.6708 9.3338 11.6708 9.81549V14.1634C11.6708 14.6408 11.9333 14.9155 12.3894 14.9155Z\" fill=\"currentColor\"/><path d=\"M14.9626 14.9155C15.4101 14.9155 15.6596 14.6451 15.6596 14.1634V12.7014H17.4669C17.8025 12.7014 18.0306 12.4817 18.0306 12.1563C18.0306 11.831 17.8068 11.6113 17.4669 11.6113H15.6596V10.2254H17.6863C18.0133 10.2254 18.25 9.99718 18.25 9.67183C18.25 9.34225 18.0133 9.10563 17.6863 9.10563H15.0572C14.5237 9.10563 14.2354 9.38873 14.2354 9.90423V14.1634C14.2354 14.6366 14.5022 14.9155 14.9626 14.9155Z\" fill=\"currentColor\"/><path d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconClosedCaptioning: {\n title: \"closed-captioning, cc\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.2997 10.5993C9.61468 10.084 8.63619 10.1389 8.01256 10.7625C7.32915 11.4459 7.32915 12.554 8.01256 13.2374C8.63619 13.861 9.61468 13.9159 10.2997 13.4006C10.6307 13.1516 11.1009 13.2181 11.3499 13.5491C11.5989 13.8801 11.5324 14.3503 11.2014 14.5993C9.92761 15.5575 8.11135 15.4575 6.9519 14.2981C5.6827 13.0289 5.6827 10.9711 6.9519 9.70186C8.11135 8.54241 9.92761 8.44244 11.2014 9.4006C11.5324 9.6496 11.5989 10.1198 11.3499 10.4508C11.1009 10.7818 10.6307 10.8483 10.2997 10.5993ZM16.7997 10.5993C16.1147 10.084 15.1362 10.1389 14.5126 10.7625C13.8291 11.4459 13.8291 12.554 14.5126 13.2374C15.1362 13.861 16.1147 13.9159 16.7997 13.4006C17.1307 13.1516 17.6009 13.2181 17.8499 13.5491C18.0989 13.8801 18.0324 14.3503 17.7014 14.5993C16.4276 15.5575 14.6114 15.4575 13.4519 14.2981C12.1827 13.0289 12.1827 10.9711 13.4519 9.70186C14.6114 8.54241 16.4276 8.44244 17.7014 9.4006C18.0324 9.6496 18.0989 10.1198 17.8499 10.4508C17.6009 10.7818 17.1307 10.8483 16.7997 10.5993Z\" fill=\"currentColor\"/><path d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n Icon4k: {\n title: \"4k\",\n svg: '<path d=\"M21.25 4.75H2.75V19.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M10.0107 15.6025C9.60547 15.6025 9.3125 15.3535 9.3125 14.8848V14.2061H6.68555C6.15332 14.2061 5.79688 13.874 5.79688 13.3809C5.79688 13.0781 5.88477 12.8047 6.10449 12.4189C6.58789 11.5498 7.29102 10.4756 8.05762 9.33789C8.5459 8.59082 8.90234 8.34668 9.49805 8.34668C10.2451 8.34668 10.7139 8.75195 10.7139 9.41113V13.0293H11.1143C11.5049 13.0293 11.7197 13.2734 11.7197 13.6201C11.7197 13.9668 11.5 14.2061 11.1143 14.2061H10.7139V14.8848C10.7139 15.3535 10.416 15.6025 10.0107 15.6025ZM9.3418 13.0684V9.52344H9.3125C8.30664 10.9736 7.65723 11.9648 7.08594 13.0293V13.0684H9.3418Z\" fill=\"currentColor\"/><path d=\"M13.2529 15.5928C12.7891 15.5928 12.5156 15.3096 12.5156 14.8262V9.12793C12.5156 8.63965 12.7891 8.35645 13.2529 8.35645C13.7168 8.35645 13.9902 8.63965 13.9902 9.12793V11.5693H14.0342L16.6855 8.67383C16.8906 8.44922 17.0762 8.35645 17.3203 8.35645C17.7109 8.35645 18.0137 8.6543 18.0137 9.03516C18.0137 9.24023 17.9404 9.40137 17.7549 9.59668L15.8115 11.6328L17.9258 14.2012C18.1455 14.4746 18.2432 14.6846 18.2432 14.8848C18.2432 15.2852 17.9355 15.5977 17.5303 15.5977C17.2275 15.5977 17.0225 15.4854 16.793 15.1924L14.6934 12.6094L13.9902 13.3467V14.8262C13.9902 15.3096 13.7168 15.5928 13.2529 15.5928Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconHd: {\n title: \"hd\",\n svg: '<path d=\"M21.25 4.75H2.75V19.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M6.1748 15.5928C5.71094 15.5928 5.4375 15.3096 5.4375 14.8262V9.12793C5.4375 8.63965 5.71094 8.35645 6.1748 8.35645C6.63867 8.35645 6.91211 8.63965 6.91211 9.12793V11.3154H10.0859V9.12793C10.0859 8.63965 10.3594 8.35645 10.8232 8.35645C11.2871 8.35645 11.5605 8.63965 11.5605 9.12793V14.8262C11.5605 15.3096 11.2871 15.5928 10.8232 15.5928C10.3594 15.5928 10.0859 15.3096 10.0859 14.8262V12.5312H6.91211V14.8262C6.91211 15.3096 6.63867 15.5928 6.1748 15.5928Z\" fill=\"currentColor\"/><path d=\"M13.4697 15.5C13.0059 15.5 12.7324 15.2168 12.7324 14.7285V9.2207C12.7324 8.7373 13.0059 8.4541 13.4697 8.4541H15.4229C17.5371 8.4541 18.7822 9.71387 18.7822 11.9502C18.7822 14.1865 17.5371 15.5 15.4229 15.5H13.4697ZM14.207 14.2793H15.2471C16.5654 14.2793 17.2783 13.4785 17.2783 11.9551C17.2783 10.4805 16.5459 9.66992 15.2471 9.66992H14.207V14.2793Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconAlt: {\n title: \"alt\",\n svg: '<path d=\"M21.25 4.75H2.75V19.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M5.38159 15.0916C4.90015 15.0916 4.60547 14.8176 4.60547 14.3652C4.60547 14.2366 4.64697 14.0498 4.71338 13.8672L6.19092 9.80811C6.41089 9.198 6.78027 8.91992 7.37378 8.91992C8.00049 8.91992 8.36572 9.18555 8.59399 9.80811L10.084 13.8672C10.1545 14.0623 10.1836 14.2034 10.1836 14.3611C10.1836 14.7886 9.86401 15.0916 9.41992 15.0916C8.97998 15.0916 8.75171 14.8923 8.6189 14.4026L8.41553 13.7385H6.36523L6.16187 14.3777C6.0166 14.884 5.78833 15.0916 5.38159 15.0916ZM6.66821 12.5889H8.0835L7.38208 10.2812H7.34888L6.66821 12.5889Z\" fill=\"currentColor\"/><path d=\"M11.6819 15.0002C11.2004 15.0002 10.9182 14.7097 10.9182 14.2034V9.71265C10.9182 9.2063 11.2004 8.91992 11.6819 8.91992C12.1633 8.91992 12.4414 9.2063 12.4414 9.71265V13.7717H14.3174C14.7241 13.7717 14.9939 13.9958 14.9939 14.386C14.9939 14.7761 14.7283 15.0002 14.3174 15.0002H11.6819Z\" fill=\"currentColor\"/><path d=\"M17.0691 15.0916C16.5876 15.0916 16.3096 14.8052 16.3096 14.2988V10.2397H15.2595C14.8528 10.2397 14.5789 10.0156 14.5789 9.62549C14.5789 9.23535 14.8445 9.01123 15.2595 9.01123H18.8828C19.2937 9.01123 19.5593 9.23535 19.5593 9.62549C19.5593 10.0156 19.2854 10.2397 18.8828 10.2397H17.8286V14.2988C17.8286 14.8052 17.5505 15.0916 17.0691 15.0916Z\" fill=\"currentColor\"/>',\n category: \"Photography & Video\",\n },\n IconShareScreen: {\n title: \"share-screen, screen-sharing\",\n svg: '<path d=\"M9 11.25L12 8.25L15 11.25M12 15.75V9.5M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconPictureInPicture: {\n title: \"picture-in-picture\",\n svg: '<path d=\"M9.25 17.25H2.75V4.75H19.25V11.25M12.75 14.75H21.25V20.25H12.75V14.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconExpand: {\n title: \"expand, window, layout\",\n svg: '<path d=\"M3.75 10.25V3.75H21.25V15.25H14.75M17.25 7.75V10.75M17.25 7.75H14.25M17.25 7.75L14 11M11.25 13.75H2.75V21.25H11.25V13.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconMinimize: {\n title: \"minimize, window, layout\",\n svg: '<path d=\"M3.75 10.25V3.75H21.25V15.25H14.75M13.75 11.25V8.25M13.75 11.25H16.75M13.75 11.25L17 8M11.25 13.75H2.75V21.25H11.25V13.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Photography & Video\",\n },\n IconLock: {\n title: \"lock, private\",\n svg: '<path d=\"M12 14V17M16.25 9.75V7C16.25 4.65279 14.3472 2.75 12 2.75C9.65279 2.75 7.75 4.65279 7.75 7V9.75M4.75 9.75H19.25V21.25H4.75V9.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconUnlocked: {\n title: \"unlocked, unlock, private\",\n svg: '<path d=\"M12 14V17M7.75 9.75V7C7.75 4.65279 9.65279 2.75 12 2.75C14.0926 2.75 15.832 4.26237 16.1847 6.25371M4.75 9.75H19.25V21.25H4.75V9.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconShield: {\n title: \"shield, security, protection\",\n svg: '<path d=\"M20.25 5.5L12 2.75L3.75 5.5V11.9123C3.75 16.8848 8 19.25 12 21.4079C16 19.25 20.25 16.8848 20.25 11.9123V5.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconShieldCrossed: {\n title: \"shield-crossed, security, protection\",\n svg: '<path d=\"M14.2258 13.7495L11.9882 11.5002M11.9882 11.5002L9.75 9.2503M11.9882 11.5002L14.2258 9.25052M11.9882 11.5002L9.75 13.7503M12 2.75L20.25 5.5V11.9123C20.25 16.8848 16 19.25 12 21.4079C8 19.25 3.75 16.8848 3.75 11.9123V5.5L12 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconShieldCheck: {\n title: \"shield-check, security, protection\",\n svg: '<path d=\"M9.25 11.5L11 13.25L14.75 9.5M12 2.75L20.25 5.5V11.9123C20.25 16.8848 16 19.25 12 21.4079C8 19.25 3.75 16.8848 3.75 11.9123V5.5L12 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconShieldKeyhole: {\n title: \"shield-keyhole\",\n svg: '<path d=\"M12 8.75C11.1716 8.75 10.5 9.42157 10.5 10.25C10.5 11.0784 11.1716 11.75 12 11.75C12.8284 11.75 13.5 11.0784 13.5 10.25C13.5 9.42157 12.8284 8.75 12 8.75ZM12 8.75V14.75M12 2.75L20.25 5.5V11.9123C20.25 16.8848 16 19.25 12 21.4079C8 19.25 3.75 16.8848 3.75 11.9123V5.5L12 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconShieldCheck2: {\n title: \"shield-check-2, protect, security, check\",\n svg: '<path d=\"M9.5 12.25L11 13.75L14.5 10.25M3.75 3.75H20.25V17.75L12 22.25L3.75 17.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconShieldCheck3: {\n title: \"shield-check-3, check\",\n svg: '<path d=\"M8.75 12L10.9167 14.25L15.25 9.75M12 2.25L3.75 5.75V13C3.75 17.5563 7.44365 21.25 12 21.25C16.5563 21.25 20.25 17.5563 20.25 13V5.75L12 2.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconShieldBreak: {\n title: \"shield-break, not-secure\",\n svg: '<path d=\"M3.75 5.75V13C3.75 17.5563 7.44365 21.25 12 21.25C14.8328 21.25 17.3321 19.8223 18.8176 17.6471M7 4.37121L12 2.25L20.25 5.75V13C20.25 13.6049 20.1849 14.1945 20.0613 14.7624M1.75 3.75L22.25 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconPassword: {\n title: \"password, lock, protection\",\n svg: '<path d=\"M20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM17 8.75C17 8.33579 16.6642 8 16.25 8C15.8358 8 15.5 8.33579 15.5 8.75H17ZM15.5 15.25C15.5 15.6642 15.8358 16 16.25 16C16.6642 16 17 15.6642 17 15.25H15.5ZM19.5 3.75V20.25H21V3.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V3.75H3V20.25H4.5ZM3.75 4.5H20.25V3H3.75V4.5ZM15.5 8.75V15.25H17V8.75H15.5Z\" fill=\"currentColor\"/><path d=\"M8 12.75C8.41421 12.75 8.75 12.4142 8.75 12C8.75 11.5858 8.41421 11.25 8 11.25C7.58579 11.25 7.25 11.5858 7.25 12C7.25 12.4142 7.58579 12.75 8 12.75ZM12 12.75C12.4142 12.75 12.75 12.4142 12.75 12C12.75 11.5858 12.4142 11.25 12 11.25C11.5858 11.25 11.25 11.5858 11.25 12C11.25 12.4142 11.5858 12.75 12 12.75Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/>',\n category: \"Security\",\n },\n IconFaceId: {\n title: \"face-id\",\n svg: '<path d=\"M8.25 3.75H3.75V8.25M3.75 15.75V20.25H8.25M15.75 3.75H20.25V8.25M20.25 15.75V20.25H15.75M12.25 8.75V11C12.25 12.0199 11.4866 12.8615 10.5 12.9845M7.75 8.75V10.25M16.25 8.75V10.25M9 15.6973C9.88252 16.2078 10.9071 16.5 12 16.5C13.0929 16.5 14.1175 16.2078 15 15.6973\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconFingerPrint1: {\n title: \"finger-print-1, touch-id\",\n svg: '<path d=\"M6.23454 19.3052C6.42429 18.8483 6.59884 18.3835 6.75758 17.9114M14.4235 21.0018C14.6981 20.2273 14.9417 19.4381 15.1528 18.6357C15.3443 17.9077 15.5091 17.1689 15.646 16.4204M19.6893 17.2526C20.0652 15.2266 20.2617 13.1377 20.2617 11.0028C20.2617 6.44492 16.5668 2.75 12.0089 2.75C10.7138 2.75 9.48836 3.04832 8.39758 3.57999M3.26172 15.1545C3.58481 13.8235 3.75605 12.4332 3.75605 11.0028C3.75605 9.20753 4.32931 7.54611 5.30276 6.19165M12.0093 11.0028C12.0093 13.8505 11.5478 16.5903 10.6955 19.1517C10.4762 19.8107 10.231 20.458 9.9611 21.0922M7.58294 14.6135C7.77993 13.4392 7.88247 12.233 7.88247 11.0028C7.88247 8.72388 9.72993 6.87642 12.0089 6.87642C14.2878 6.87642 16.1353 8.72388 16.1353 11.0028C16.1353 11.6389 16.1155 12.2704 16.0763 12.8966\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconFingerPrint2: {\n title: \"finger-print-2, touch-id\",\n svg: '<path d=\"M12 10.85V13.25M10.1782 7.28097C10.7278 7.01211 11.3462 6.86111 12 6.86111C14.2828 6.86111 16.1333 8.70172 16.1333 10.9722V13.0278C16.1333 13.0857 16.1321 13.1433 16.1297 13.2006M7.87025 10.7994C7.86787 10.8567 7.86667 10.9143 7.86667 10.9722V13.0278C7.86667 15.2983 9.71722 17.1389 12 17.1389C12.6538 17.1389 13.2722 16.9879 13.8218 16.719M13.1548 2.83499C12.778 2.77901 12.3924 2.75 12 2.75C7.71979 2.75 4.25 6.20114 4.25 10.4583V11.272M16.9379 4.51694C18.6556 5.93082 19.75 8.06746 19.75 10.4583V13.5417C19.75 14.7887 19.4523 15.9665 18.9237 17.0088M16.1148 20.075C14.9224 20.8195 13.5118 21.25 12 21.25C8.36629 21.25 5.31667 18.7627 4.47832 15.4064\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconUmbrellaSecurity: {\n title: \"umbrella-security\",\n svg: '<path d=\"M12.0007 15.25V19.3267C12.0007 20.3889 11.1396 21.25 10.0774 21.25C9.16061 21.25 8.37127 20.6029 8.19147 19.7039L8.00069 18.75M12.0007 2.75V4.75M12.0007 4.75C7.43899 4.75 3.62824 7.96518 2.71094 12.253H21.2904C20.3731 7.96518 16.5624 4.75 12.0007 4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconLaw: {\n title: \"law, legal, terms, imprint, balance\",\n svg: '<path d=\"M12 2.75V20.25M12 20.25H6.75M12 20.25H17.25M2.75 5.75H8L10 4.75H14L16 5.75H21.25M5.5 5.75L2.5 15.25C4.57693 16.4267 6.42307 16.4267 8.5 15.25L5.5 5.75ZM18.5 5.75L15.5 15.25C17.5769 16.4267 19.4231 16.4267 21.5 15.25L18.5 5.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconKey1: {\n title: \"key-1, password\",\n svg: '<path d=\"M1.75 12C1.75 14.8995 4.10051 17.25 7 17.25C8.89118 17.25 10.5488 16.25 11.473 14.75H14L16 13.5L18 14.75H20.5L22.75 12L20.5 9.25H11.473C10.5488 7.74996 8.89118 6.75 7 6.75C4.10051 6.75 1.75 9.10051 1.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M7.75 12C7.75 12.4142 7.41421 12.75 7 12.75C6.58579 12.75 6.25 12.4142 6.25 12C6.25 11.5858 6.58579 11.25 7 11.25C7.41421 11.25 7.75 11.5858 7.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Security\",\n },\n IconKey2: {\n title: \"key-2, password\",\n svg: '<path d=\"M15.5 14.25C18.6756 14.25 21.25 11.6756 21.25 8.5C21.25 5.32436 18.6756 2.75 15.5 2.75C12.3244 2.75 9.75 5.32436 9.75 8.5C9.75 8.98191 9.80928 9.44996 9.92095 9.89728L3.75 16.0682V20.2501H7.93182L9.25 18.9319V16.2501H11.9318L14.1028 14.0791C14.5501 14.1907 15.0181 14.25 15.5 14.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M17.25 8.5C17.25 9.4665 16.4665 10.25 15.5 10.25C14.5335 10.25 13.75 9.4665 13.75 8.5C13.75 7.5335 14.5335 6.75 15.5 6.75C16.4665 6.75 17.25 7.5335 17.25 8.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>',\n category: \"Security\",\n },\n IconPasskeys: {\n title: \"passkeys, passkey, passwordless\",\n svg: '<path d=\"M13 12.8145C12.6755 12.7719 12.3419 12.75 12 12.75C7.8098 12.75 4.86894 16.0451 4.5 20.25H14M15.75 6.5C15.75 8.57107 14.0711 10.25 12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75C14.0711 2.75 15.75 4.42893 15.75 6.5ZM15.75 14C15.75 12.7574 16.7574 11.75 18 11.75C19.2426 11.75 20.25 12.7574 20.25 14C20.25 14.7801 19.853 15.4675 19.25 15.8711V17L18.75 17.9356L19.25 18.9678V20L18 21L16.75 20V15.8711C16.147 15.4675 15.75 14.7801 15.75 14Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconAsterisk: {\n title: \"asterisk, placeholder\",\n svg: '<path d=\"M12.0029 2.75V21.25M3.99219 7.375L20.0137 16.625M3.99316 16.625L20.0146 7.375\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Security\",\n },\n IconKeyhole: {\n title: \"keyhole\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M13.5 12.8839C14.5399 12.3419 15.25 11.2539 15.25 10C15.25 8.20507 13.7949 6.75 12 6.75C10.2051 6.75 8.75 8.20507 8.75 10C8.75 11.2539 9.46005 12.3419 10.5 12.8839V15.75C10.5 16.5784 11.1716 17.25 12 17.25C12.8284 17.25 13.5 16.5784 13.5 15.75V12.8839Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Security\",\n },\n IconAnonymous: {\n title: \"anonymous, anonym, hidden\",\n svg: '<path d=\"M10.1765 16.3094C10.6964 15.9563 11.3241 15.75 12 15.75C12.6759 15.75 13.3036 15.9563 13.8235 16.3094M10.1765 16.3094C9.85985 14.8462 8.55794 13.75 7 13.75C5.20507 13.75 3.75 15.2051 3.75 17C3.75 18.7949 5.20507 20.25 7 20.25C8.79493 20.25 10.25 18.7949 10.25 17C10.25 16.763 10.2246 16.532 10.1765 16.3094ZM13.8235 16.3094C13.7754 16.532 13.75 16.763 13.75 17C13.75 18.7949 15.2051 20.25 17 20.25C18.7949 20.25 20.25 18.7949 20.25 17C20.25 15.2051 18.7949 13.75 17 13.75C15.4421 13.75 14.1401 14.8462 13.8235 16.3094ZM2.75 11.25H4.75M4.75 11.25L5.75 3.75H18.25L19.25 11.25M4.75 11.25H19.25M19.25 11.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconGhost: {\n title: \"ghost, hidden, unknown, horror\",\n svg: '<path d=\"M4.75 9.94444V21.25L8.375 19.75L12 21.25L15.625 19.75L19.25 21.25V9.94444C19.25 5.97106 16.0041 2.75 12 2.75C7.99594 2.75 4.75 5.97106 4.75 9.94444Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M10.25 10.5C10.25 10.9142 9.91421 11.25 9.5 11.25C9.08579 11.25 8.75 10.9142 8.75 10.5C8.75 10.0858 9.08579 9.75 9.5 9.75C9.91421 9.75 10.25 10.0858 10.25 10.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M15.25 10.5C15.25 10.9142 14.9142 11.25 14.5 11.25C14.0858 11.25 13.75 10.9142 13.75 10.5C13.75 10.0858 14.0858 9.75 14.5 9.75C14.9142 9.75 15.25 10.0858 15.25 10.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Security\",\n },\n IconPassport: {\n title: \"passport, visa\",\n svg: '<path d=\"M9.25 16.25H14.75M4.25 3.25H19.75V20.75H4.25V3.25ZM15 10.5C15 12.1569 13.6569 13.5 12 13.5C10.3431 13.5 9 12.1569 9 10.5C9 8.84315 10.3431 7.5 12 7.5C13.6569 7.5 15 8.84315 15 10.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconVault: {\n title: \"vault, safe\",\n svg: '<path d=\"M6.75 18.25H3.75V3.75H20.25V18.25H17.25M6.75 18.25V20.25M6.75 18.25H17.25M17.25 18.25V20.25M7.75 11C7.75 13.3472 9.65279 15.25 12 15.25C14.3472 15.25 16.25 13.3472 16.25 11C16.25 8.65279 14.3472 6.75 12 6.75C9.65279 6.75 7.75 8.65279 7.75 11ZM7.75 11H11.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconSafeSimple: {\n title: \"safe-simple, save\",\n svg: '<path d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 7.75H4.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.75 16.25H4.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12.25\" cy=\"12\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.1071 9.85714L8.5 8.25M14.3929 9.85714L16 8.25M14.3929 14.1429L16 15.75M10.1071 14.1429L8.5 15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Security\",\n },\n IconFirewall: {\n title: \"firewall,wall\",\n svg: '<path d=\"M12 3.75H3.75V9.25M12 3.75V9.25M12 3.75H20.25V9.25M12 9.25H3.75M12 9.25H20.25M3.75 9.25H7.75M3.75 9.25V14.75M20.25 9.25H16.25M20.25 9.25V14.75M3.75 14.75H12M3.75 14.75V20.25H12M3.75 14.75H7.75M12 14.75V20.25M12 14.75H20.25M12 20.25H20.25V14.75M20.25 14.75H16.25M7.75 9.25V14.75M7.75 9.25H16.25M7.75 14.75H16.25M16.25 9.25V14.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Security\",\n },\n IconSiren: {\n title: \"siren, alarm\",\n svg: '<path d=\"M4.75 16.75V21.25H19.25V16.75H4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.75 16.75V12C6.75 9.10051 9.10051 6.75 12 6.75C14.8995 6.75 17.25 9.10051 17.25 12V16.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 1.75V2.775M21.225 12H22.25M2.775 12H1.75M18.5231 5.47694L19.2478 4.75216M5.47696 5.47692L4.75218 4.75213\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 16.75V13.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Security\",\n },\n IconCreditCard1: {\n title: \"credit-card-1, card, payment\",\n svg: '<path d=\"M2.75 9.75005V19.2461H21.2461V9.75005M2.75 9.75005V4.75293H21.2422C21.247 6.41863 21.2461 8.08434 21.2461 9.75005M2.75 9.75005H21.2461\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCreditCardAdd: {\n title: \"credit-card-add, card, payment\",\n svg: '<path d=\"M2.75 9.75005V19.2461H13.4961M2.75 9.75005V4.75293H21.2422C21.247 6.41863 21.2461 8.08434 21.2461 9.75005M2.75 9.75005H21.2461M21.2461 9.75005V11.2481M19.25 14.25V17.25M19.25 17.25V20.25M19.25 17.25H16.25M19.25 17.25H22.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCreditCard2: {\n title: \"credit-card-2, card, payment\",\n svg: '<path d=\"M2.75 9.75005V19.2461H21.2461V9.75005M2.75 9.75005V4.75293H21.2422C21.247 6.41863 21.2461 8.08434 21.2461 9.75005M2.75 9.75005H21.2461M6.75 13.25H9.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconGiroCard: {\n title: \"giro-card\",\n svg: '<path d=\"M6.75 9.75H8.25M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconGiroCards: {\n title: \"giro-cards\",\n svg: '<path d=\"M17.25 8.75H21.25V19.25H6.75V15.25M6.75 8.75H8.25M2.75 4.75H17.25V15.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconWallet1: {\n title: \"wallet-1\",\n svg: '<path d=\"M2.75 7.75V4.75H21.25V7.75M2.75 7.75H21.25M2.75 7.75V10.75M21.25 7.75V10.75M21.25 10.75V19.25H2.75V10.75M21.25 10.75H15.25V13.25H8.75V10.75H2.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconWallet2: {\n title: \"wallet-2\",\n svg: '<path d=\"M21.25 10.75V19.25H2.75V10.75M21.25 10.75H18.75M21.25 10.75V4.75H2.75V10.75M2.75 10.75H5.25M5.25 10.75H7.75L9.94444 12.25H14.0556L16.25 10.75H18.75M5.25 10.75V7.75C5.25 7.47386 5.47386 7.25 5.75 7.25H18.25C18.5261 7.25 18.75 7.47386 18.75 7.75V10.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconWallet3: {\n title: \"wallet-3\",\n svg: '<path d=\"M3.75 6.5V17.25C3.75 18.9069 5.09315 20.25 6.75 20.25H20.25V8.75H16.25M3.75 6.5C3.75 7.74264 4.75736 8.75 6 8.75H16.25M3.75 6.5C3.75 4.98122 4.98122 3.75 6.5 3.75H16.25V8.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M15.5 15.25C15.9142 15.25 16.25 14.9142 16.25 14.5C16.25 14.0858 15.9142 13.75 15.5 13.75C15.0858 13.75 14.75 14.0858 14.75 14.5C14.75 14.9142 15.0858 15.25 15.5 15.25Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconWallet4: {\n title: \"wallet-4\",\n svg: '<path d=\"M19.2493 6.5V4.75H3.94922C3.25886 4.75 2.69922 5.30964 2.69922 6M2.69922 6L2.69922 17.25C2.69922 18.3546 3.59465 19.25 4.69922 19.25H21.1992V7.25H3.94922C3.25886 7.25 2.69922 6.69036 2.69922 6ZM17.2493 13.25C17.2493 13.6642 16.9135 14 16.4993 14C16.0851 14 15.7493 13.6642 15.7493 13.25C15.7493 12.8358 16.0851 12.5 16.4993 12.5C16.9135 12.5 17.2493 12.8358 17.2493 13.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconBanknote1: {\n title: \"banknote-1,money, bill\",\n svg: '<path d=\"M4.75 8.25H5.75M18.25 15.75H19.25M1.75 18.75V5.25H22.25V18.75H1.75ZM14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconBanknote2: {\n title: \"banknote-2,money, bill\",\n svg: '<path d=\"M2.25 5.25H21.75V18.75H2.25V5.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.75 5.25C5.75 7.183 4.183 8.75 2.25 8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.25 5.25C18.25 7.183 19.817 8.75 21.75 8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.75 18.75C5.75 16.817 4.183 15.25 2.25 15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.25 18.75C18.25 16.817 19.817 15.25 21.75 15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconMoneybag: {\n title: \"moneybag, purse, savings\",\n svg: '<path d=\"M9.42188 7.75H14.5781M9.42188 7.75C9.42188 7.75 3.74996 10.9722 3.75 16.1111C3.75003 20.2435 7.85366 21.25 12 21.25C16.1463 21.25 20.25 20.2435 20.25 16.1111C20.25 10.9722 14.5781 7.75 14.5781 7.75M9.42188 7.75L7.875 3.77778C7.875 3.77778 9.42188 2.75 12 2.75C14.5781 2.75 16.125 3.77778 16.125 3.77778L14.5781 7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconEuro: {\n title: \"euro, currency, money, coin, EURO\",\n svg: '<path d=\"M7.75 12H10.75M14.3021 9C13.7136 8.22784 12.8995 7.75 12 7.75C10.2051 7.75 8.75 9.65279 8.75 12C8.75 14.3472 10.2051 16.25 12 16.25C12.8995 16.25 13.7136 15.7722 14.3021 15M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconYen: {\n title: \"yen, currency, money, coin\",\n svg: '<path d=\"M9.06443 7.50612C8.79167 7.19439 8.31785 7.16281 8.00612 7.43557C7.69439 7.70833 7.66281 8.18215 7.93557 8.49388L9.06443 7.50612ZM16.0644 8.49388C16.3372 8.18215 16.3056 7.70833 15.9939 7.43557C15.6822 7.16281 15.2083 7.19439 14.9356 7.50612L16.0644 8.49388ZM11.25 17.25C11.25 17.6642 11.5858 18 12 18C12.4142 18 12.75 17.6642 12.75 17.25H11.25ZM9.75 12.25C9.33579 12.25 9 12.5858 9 13C9 13.4142 9.33579 13.75 9.75 13.75V12.25ZM14.25 13.75C14.6642 13.75 15 13.4142 15 13C15 12.5858 14.6642 12.25 14.25 12.25V13.75ZM7.93557 8.49388L11.4356 12.4939L12.5644 11.5061L9.06443 7.50612L7.93557 8.49388ZM12.5644 12.4939L16.0644 8.49388L14.9356 7.50612L11.4356 11.5061L12.5644 12.4939ZM11.25 12V13H12.75V12H11.25ZM11.25 13V17.25H12.75V13H11.25ZM9.75 13.75H12V12.25H9.75V13.75ZM12 13.75H14.25V12.25H12V13.75ZM20.5 12C20.5 16.6944 16.6944 20.5 12 20.5V22C17.5228 22 22 17.5228 22 12H20.5ZM12 20.5C7.30558 20.5 3.5 16.6944 3.5 12H2C2 17.5228 6.47715 22 12 22V20.5ZM3.5 12C3.5 7.30558 7.30558 3.5 12 3.5V2C6.47715 2 2 6.47715 2 12H3.5ZM12 3.5C16.6944 3.5 20.5 7.30558 20.5 12H22C22 6.47715 17.5228 2 12 2V3.5Z\" fill=\"currentColor\"/>',\n category: \"Shopping & Payment\",\n },\n IconDollar: {\n title: \"dollar, currency, money, coin, USD\",\n svg: '<path d=\"M12 7.375V6.34722M12 16.625V17.6528M14.2257 8.91667C13.7814 8.30226 12.9511 7.88889 12 7.88889H11.7145C10.4531 7.88889 9.43056 8.70694 9.43056 9.71605V9.79449C9.43056 10.5163 9.94031 11.1761 10.7473 11.4989L13.2527 12.5011C14.0597 12.8239 14.5694 13.4837 14.5694 14.2055C14.5694 15.2579 13.503 16.1111 12.1874 16.1111H12C11.0489 16.1111 10.2186 15.6977 9.7743 15.0833M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPound: {\n title: \"pound, currency, money, coin, GBP\",\n svg: '<path d=\"M14.5 7.50108C14.0061 7.03638 13.3306 6.75 12.5856 6.75C11.0725 6.75 9.8459 7.93147 9.8459 9.38889C9.8459 10.8463 11 12 11 12L10.9889 12.0278M14.2295 16.25H9.29795L10.9889 12.0278M10.9889 12.0278H8.75M10.9889 12.0278H14.2295M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconBasket1: {\n title: \"basket-1, cart, shopping\",\n svg: '<path d=\"M1.75 2.75H3.5L6 15.25H19.5L21.25 5.75H4.5M9.25 19C9.25 19.6904 8.69036 20.25 8 20.25C7.30964 20.25 6.75 19.6904 6.75 19C6.75 18.3096 7.30964 17.75 8 17.75C8.69036 17.75 9.25 18.3096 9.25 19ZM18.25 19C18.25 19.6904 17.6904 20.25 17 20.25C16.3096 20.25 15.75 19.6904 15.75 19C15.75 18.3096 16.3096 17.75 17 17.75C17.6904 17.75 18.25 18.3096 18.25 19Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconAddToBasket: {\n title: \"add-to-basket\",\n svg: '<path d=\"M21.25 5.75L19.5 15.25H6L3.5 2.75H1.75M9.5 7H12.75M12.75 7H16M12.75 7V3.75M12.75 7V10.25M9.25 19C9.25 19.6904 8.69036 20.25 8 20.25C7.30964 20.25 6.75 19.6904 6.75 19C6.75 18.3096 7.30964 17.75 8 17.75C8.69036 17.75 9.25 18.3096 9.25 19ZM18.25 19C18.25 19.6904 17.6904 20.25 17 20.25C16.3096 20.25 15.75 19.6904 15.75 19C15.75 18.3096 16.3096 17.75 17 17.75C17.6904 17.75 18.25 18.3096 18.25 19Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconRemoveFromBasket: {\n title: \"remove-from-basket\",\n svg: '<path d=\"M21.25 5.75L19.5 15.25H6L3.5 2.75H1.75M10.4519 9.2981L12.75 7M12.75 7L15.0481 4.7019M12.75 7L10.4519 4.7019M12.75 7L15.0481 9.2981M9.25 19C9.25 19.6904 8.69036 20.25 8 20.25C7.30964 20.25 6.75 19.6904 6.75 19C6.75 18.3096 7.30964 17.75 8 17.75C8.69036 17.75 9.25 18.3096 9.25 19ZM18.25 19C18.25 19.6904 17.6904 20.25 17 20.25C16.3096 20.25 15.75 19.6904 15.75 19C15.75 18.3096 16.3096 17.75 17 17.75C17.6904 17.75 18.25 18.3096 18.25 19Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconBasket2: {\n title: \"basket-2, shopping-bag\",\n svg: '<path d=\"M8.25 3.75L6.25 8.75H17.75L15.75 3.75M21.25 8.75L19.25 20.25H4.75L2.75 8.75H21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconAddToBasket2: {\n title: \"add-to-basket-2\",\n svg: '<path d=\"M17.75 8.75H21.25L20.7285 11.7485M17.75 8.75H6.25M17.75 8.75L15.75 3.75M6.25 8.75H2.75L4.75 20.25H10.25M6.25 8.75L8.25 3.75M13.75 18H17M17 18H20.25M17 18V14.75M17 18V21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconRemoveFromBasket2: {\n title: \"remove-from-basket-2\",\n svg: '<path d=\"M17.75 8.75H21.25L20.7285 11.7485M17.75 8.75H6.25M17.75 8.75L15.75 3.75M6.25 8.75H2.75L4.75 20.25H10.25M6.25 8.75L8.25 3.75M14.7019 20.2981L17 18M17 18L19.2981 15.7019M17 18L14.7019 15.7019M17 18L19.2981 20.2981\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconShoppingBag1: {\n title: \"shopping-bag-1\",\n svg: '<path d=\"M15 8C15 9.65685 13.6569 11 12 11C10.3431 11 9 9.65685 9 8M4.75 3.75L3.75 20.25H20.25L19.25 3.75H4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconShoppingBagLike1: {\n title: \"shopping-bag-like-1\",\n svg: '<path d=\"M19.7654 12.254L19.25 3.75H4.75L3.75 20.25H12.2525M15 8C15 9.65685 13.6569 11 12 11C10.3431 11 9 9.65685 9 8M18 21.2778C18.2708 21.2778 21.25 19.7431 21.25 17.6667C21.25 16.2222 20.3472 15.5 19.4444 15.5C18.5417 15.5 18 16.0417 18 16.0417C18 16.0417 17.4583 15.5 16.5556 15.5C15.6528 15.5 14.75 16.2222 14.75 17.6667C14.75 19.7431 17.7292 21.2778 18 21.2778Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconShoppingBag2: {\n title: \"shopping-bag-2\",\n svg: '<path d=\"M15.25 7.75V6C15.25 4.20507 13.7949 2.75 12 2.75C10.2051 2.75 8.75 4.20507 8.75 6V7.75M6.25 7.75H17.75L19.75 21.25H4.25L6.25 7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconShoppingBagBlock2: {\n title: \"shopping-bag-block-2\",\n svg: '<path d=\"M15.25 7.75V6C15.25 4.20507 13.7949 2.75 12 2.75C10.2051 2.75 8.75 4.20507 8.75 6V7.75M9.25 21.25H4.25L6.25 7.75H17.75L18.0833 10M19.932 20.932C21.6893 19.1746 21.6893 16.3254 19.932 14.568C18.1746 12.8107 15.3254 12.8107 13.568 14.568M19.932 20.932C18.1746 22.6893 15.3254 22.6893 13.568 20.932C11.8107 19.1746 11.8107 16.3254 13.568 14.568M19.932 20.932L13.568 14.568\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconShoppingBagEdit2: {\n title: \"shopping-bag-edit-2\",\n svg: '<path d=\"M15.25 7.75V6C15.25 4.20507 13.7949 2.75 12 2.75C10.2051 2.75 8.75 4.20507 8.75 6V7.75M10.75 21.25H4.25L6.25 7.75H17.75L18.4898 12.7437M13.75 19.9166V22.2499H16.0833L19.8333 18.4999C20.4777 17.8556 20.4777 16.8109 19.8333 16.1666C19.189 15.5223 18.1443 15.5223 17.5 16.1666L13.75 19.9166Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconShoppingBagBookmark2: {\n title: \"shopping-bag-bookmark-2\",\n svg: '<path d=\"M15.25 7.75V6C15.25 4.20507 13.7949 2.75 12 2.75C10.2051 2.75 8.75 4.20507 8.75 6V7.75M11.75 21.25H4.25L6.25 7.75H17.75L18.3056 11.5M20.25 14.75H14.75V21.25L17.5 19.75L20.25 21.25V14.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconShoppingBagAdd2: {\n title: \"shopping-bag-add-2\",\n svg: '<path d=\"M15.25 7.75V6C15.25 4.20507 13.7949 2.75 12 2.75C10.2051 2.75 8.75 4.20507 8.75 6V7.75M18.25 16.25V19.25M18.25 19.25V22.25M18.25 19.25H15.25M18.25 19.25H21.25M12.25 21.25H4.25L6.25 7.75H17.75L18.5278 13\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconShoppingBagLike2: {\n title: \"shopping-bag-like-2\",\n svg: '<path d=\"M6.25 7.75V7C5.87824 7 5.56258 7.27234 5.5081 7.64009L6.25 7.75ZM17.75 7.75L18.4919 7.64009C18.4374 7.27234 18.1218 7 17.75 7V7.75ZM4.25 21.25L3.5081 21.1401C3.47614 21.3558 3.53967 21.5748 3.68214 21.7399C3.82461 21.9051 4.0319 22 4.25 22V21.25ZM12.25 22C12.6642 22 13 21.6642 13 21.25C13 20.8358 12.6642 20.5 12.25 20.5V22ZM17.6377 12.1099C17.6984 12.5197 18.0798 12.8026 18.4895 12.7419C18.8993 12.6812 19.1822 12.2998 19.1215 11.8901L17.6377 12.1099ZM18 16.0417L17.4697 16.572C17.7626 16.8649 18.2374 16.8649 18.5303 16.572L18 16.0417ZM14.5 6V7.75H16V6H14.5ZM9.5 7.75V6H8V7.75H9.5ZM12 3.5C13.3807 3.5 14.5 4.61929 14.5 6H16C16 3.79086 14.2091 2 12 2V3.5ZM12 2C9.79086 2 8 3.79086 8 6H9.5C9.5 4.61929 10.6193 3.5 12 3.5V2ZM6.25 8.5H8.75V7H6.25V8.5ZM8.75 8.5H15.25V7H8.75V8.5ZM15.25 8.5H17.75V7H15.25V8.5ZM4.9919 21.3599L6.9919 7.85991L5.5081 7.64009L3.5081 21.1401L4.9919 21.3599ZM12.25 20.5H4.25V22H12.25V20.5ZM17.0081 7.85991L17.6377 12.1099L19.1215 11.8901L18.4919 7.64009L17.0081 7.85991ZM18 22.0278C18.1437 22.0278 18.2684 21.9876 18.3098 21.9743C18.3764 21.953 18.4457 21.9259 18.5128 21.8971C18.6487 21.8389 18.8105 21.7588 18.9863 21.6612C19.3381 21.4657 19.7749 21.1838 20.2042 20.8291C21.0225 20.1531 22 19.0572 22 17.6667H20.5C20.5 18.3525 19.9879 19.0622 19.2489 19.6726C18.8996 19.9612 18.5408 20.1927 18.2578 20.3499C18.1162 20.4286 18.0009 20.4846 17.922 20.5184C17.8818 20.5357 17.8593 20.5436 17.8525 20.5457C17.8205 20.556 17.8902 20.5278 18 20.5278V22.0278ZM22 17.6667C22 16.7839 21.7209 16.0493 21.2329 15.5287C20.7485 15.012 20.0971 14.75 19.4444 14.75V16.25C19.6946 16.25 19.946 16.3491 20.1386 16.5546C20.3277 16.7563 20.5 17.105 20.5 17.6667H22ZM19.4444 14.75C18.8397 14.75 18.3556 14.9318 18.0245 15.1124C17.8589 15.2028 17.7287 15.2943 17.6365 15.3664C17.5903 15.4026 17.5531 15.4343 17.5253 15.4592C17.5114 15.4716 17.4998 15.4823 17.4905 15.4911C17.4859 15.4955 17.4818 15.4994 17.4783 15.5028C17.4766 15.5045 17.475 15.506 17.4736 15.5075C17.4728 15.5082 17.4722 15.5089 17.4715 15.5095C17.4712 15.5098 17.4709 15.5101 17.4706 15.5104C17.4704 15.5106 17.4702 15.5108 17.4701 15.5109C17.4699 15.5111 17.4697 15.5113 18 16.0417C18.5303 16.572 18.5301 16.5722 18.5299 16.5724C18.5298 16.5725 18.5296 16.5727 18.5295 16.5728C18.5292 16.5731 18.529 16.5734 18.5287 16.5736C18.5282 16.5741 18.5277 16.5746 18.5272 16.5751C18.5263 16.576 18.5255 16.5768 18.5248 16.5774C18.5235 16.5788 18.5226 16.5796 18.5221 16.58C18.5212 16.5809 18.5221 16.58 18.5248 16.5776C18.5301 16.5728 18.5423 16.5622 18.561 16.5477C18.5986 16.5182 18.6602 16.4743 18.7428 16.4293C18.9083 16.339 19.1464 16.25 19.4444 16.25V14.75ZM18 20.5278C18.1098 20.5278 18.1795 20.556 18.1475 20.5457C18.1407 20.5436 18.1182 20.5357 18.078 20.5184C17.9991 20.4846 17.8838 20.4286 17.7422 20.3499C17.4592 20.1927 17.1004 19.9612 16.7511 19.6726C16.0121 19.0622 15.5 18.3525 15.5 17.6667H14C14 19.0572 14.9775 20.1531 15.7958 20.8291C16.2251 21.1838 16.6619 21.4657 17.0137 21.6612C17.1895 21.7588 17.3513 21.8389 17.4872 21.8971C17.5543 21.9259 17.6236 21.953 17.6902 21.9743C17.7316 21.9876 17.8563 22.0278 18 22.0278V20.5278ZM15.5 17.6667C15.5 17.105 15.6723 16.7563 15.8614 16.5546C16.054 16.3491 16.3054 16.25 16.5556 16.25V14.75C15.9029 14.75 15.2515 15.012 14.7671 15.5287C14.2791 16.0493 14 16.7839 14 17.6667H15.5ZM16.5556 16.25C16.8536 16.25 17.0917 16.339 17.2572 16.4293C17.3398 16.4743 17.4014 16.5182 17.439 16.5477C17.4577 16.5622 17.4699 16.5728 17.4752 16.5776C17.4779 16.58 17.4788 16.5809 17.4779 16.58C17.4774 16.5796 17.4765 16.5788 17.4752 16.5774C17.4745 16.5768 17.4737 16.576 17.4728 16.5751C17.4723 16.5746 17.4718 16.5741 17.4713 16.5736C17.471 16.5734 17.4708 16.5731 17.4705 16.5728C17.4704 16.5727 17.4702 16.5725 17.4701 16.5724C17.4699 16.5722 17.4697 16.572 18 16.0417C18.5303 15.5113 18.5301 15.5111 18.5299 15.5109C18.5298 15.5108 18.5296 15.5106 18.5294 15.5104C18.5291 15.5101 18.5288 15.5098 18.5285 15.5095C18.5278 15.5089 18.5272 15.5082 18.5264 15.5075C18.525 15.506 18.5234 15.5045 18.5217 15.5028C18.5182 15.4994 18.5141 15.4955 18.5095 15.4911C18.5002 15.4823 18.4886 15.4716 18.4747 15.4592C18.4469 15.4343 18.4097 15.4026 18.3635 15.3664C18.2713 15.2943 18.1411 15.2028 17.9755 15.1124C17.6444 14.9318 17.1603 14.75 16.5556 14.75V16.25Z\" fill=\"currentColor\"/>',\n category: \"Shopping & Payment\",\n },\n IconShoppingBag3: {\n title: \"shopping-bag-3\",\n svg: '<path d=\"M7.75 11.25V3.75H16.25V11.25M3.75 7.75H20.25V20.25H3.75V7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconShoppingBag4: {\n title: \"shopping-bag-4\",\n svg: '<path d=\"M3.75 7.75H20.25V17.25C20.25 18.9069 18.9069 20.25 17.25 20.25H6.75C5.09315 20.25 3.75 18.9069 3.75 17.25V7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 7.75V7C7.75 4.65279 9.65279 2.75 12 2.75C14.3472 2.75 16.25 4.65279 16.25 7V7.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconGift1: {\n title: \"gift-1, present\",\n svg: '<path d=\"M12 7.75V6.08333M12 7.75H10.3333C8.49238 7.75 7 6.25762 7 4.41667C7 3.49619 7.74619 2.75 8.66667 2.75C10.5076 2.75 12 4.24238 12 6.08333M12 7.75H13.6667C15.5076 7.75 17 6.25762 17 4.41667C17 3.49619 16.2538 2.75 15.3333 2.75C13.4924 2.75 12 4.24238 12 6.08333M12 7.75V20.25M4.75 12V20.25H19.25V12M4.75 12H19.25M4.75 12H3.75V7.75H20.25V12H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconGiftBox: {\n title: \"gift-box, present\",\n svg: '<path d=\"M21.25 4.75H2.75V9.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 9.25V19.25H20.25V9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 4.75V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconGift2: {\n title: \"gift-2, present\",\n svg: '<path d=\"M8 16C9.64819 14.9363 10.9156 13.6374 12 12M12 12C13.0844 13.6374 14.3518 14.9363 16 16M12 12V10.5833M12 12H10.5833C9.01853 12 7.75 10.7315 7.75 9.16667C7.75 8.38426 8.38426 7.75 9.16667 7.75C10.7315 7.75 12 9.01853 12 10.5833M12 12H13.4167C14.9815 12 16.25 10.7315 16.25 9.16667C16.25 8.38426 15.6157 7.75 14.8333 7.75C13.2685 7.75 12 9.01853 12 10.5833M12 12V20.25M12 10.5833V3.75M12 3.75H3.75V12M12 3.75H20.25V12M20.25 12V20.25H12M20.25 12H3.75M12 20.25H3.75V12\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconGiftcard: {\n title: \"giftcard, present\",\n svg: '<path d=\"M14 4.75V12M14 12V19.25M14 12H21.25M14 12H2.75M14 12L16.75 9.25M14 12L11.25 9.25M14 12L16.75 14.75M14 12L11.25 14.75M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackage: {\n title: \"package, delivery\",\n svg: '<path d=\"M8.75 3.75H3.75V20.25H20.25V3.75H15.25M8.75 3.75H15.25M8.75 3.75V9.25H15.25V3.75M13.75 16.25H16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageDelivery2: {\n title: \"package-delivery-2, address\",\n svg: '<path d=\"M13.23 20.25H3.75V3.75H8.75M8.75 3.75H15.25M8.75 3.75V9.25H15.25V3.75M15.25 3.75H20.25V10.25M18.25 20.5L16.1287 18.3765C14.9571 17.2038 14.9571 15.3023 16.1287 14.1296C17.3003 12.9568 19.1997 12.9568 20.3713 14.1296C21.5429 15.3023 21.5429 17.2038 20.3713 18.3765L18.25 20.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageSearch: {\n title: \"package-search,delivery\",\n svg: '<path d=\"M11.23 20.25H3.75V3.75H8.75M8.75 3.75H15.25M8.75 3.75V9.25H15.25V3.75M15.25 3.75H20.25V11.25M19.3713 19.364C18.1997 20.5355 16.3003 20.5355 15.1287 19.364C13.9571 18.1924 13.9571 16.2929 15.1287 15.1213C16.3003 13.9497 18.1997 13.9497 19.3713 15.1213C20.5429 16.2929 20.5429 18.1924 19.3713 19.364ZM19.3713 19.364L21.25 21.2426\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageEdit: {\n title: \"package-edit,delivery\",\n svg: '<path d=\"M11.73 20.25H3.75V3.75H8.75M8.75 3.75H15.25M8.75 3.75V9.25H15.25V3.75M15.25 3.75H20.25V10.75M14.75 17.9166V20.2499H17.0833L20.8333 16.4999C21.4777 15.8556 21.4777 14.8109 20.8333 14.1666C20.189 13.5223 19.1443 13.5223 18.5 14.1666L14.75 17.9166Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageCkeck: {\n title: \"package-ckeck,delivery\",\n svg: '<path d=\"M12.23 20.25H3.75V3.75H8.75M8.75 3.75H15.25M8.75 3.75V9.25H15.25V3.75M15.25 3.75H20.25V12.75M15.25 18.25L17 20L21 16\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageBlock: {\n title: \"package-block,delivery\",\n svg: '<path d=\"M10.73 20.25H3.75V3.75H8.75M8.75 3.75H15.25M8.75 3.75V9.25H15.25V3.75M15.25 3.75H20.25V9.75M20.1516 19.1517C21.6161 17.6872 21.6161 15.3128 20.1516 13.8483C18.6872 12.3839 16.3128 12.3839 14.8483 13.8483M20.1516 19.1517C18.6872 20.6161 16.3128 20.6161 14.8483 19.1517C13.3839 17.6872 13.3839 15.3128 14.8483 13.8483M20.1516 19.1517L14.8483 13.8483\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageRemove: {\n title: \"package-remove,delivery\",\n svg: '<path d=\"M13.23 20.25H3.75V3.75H8.75M8.75 3.75H15.25M8.75 3.75V9.25H15.25V3.75M15.25 3.75H20.25V12.25M20.8713 15.6287L18.75 17.75M18.75 17.75L16.6287 19.8713M18.75 17.75L16.6287 15.6287M18.75 17.75L20.8713 19.8713\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageAdd: {\n title: \"package-add,delivery\",\n svg: '<path d=\"M12.23 20.25H3.75V3.75H8.75M8.75 3.75H15.25M8.75 3.75V9.25H15.25V3.75M15.25 3.75H20.25V11.25M18.25 14.25V17.25M18.25 17.25V20.25M18.25 17.25H15.25M18.25 17.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageSecurity: {\n title: \"package-security,delivery\",\n svg: '<path d=\"M11.73 20.25H3.75V3.75H8.75M8.75 3.75H15.25M8.75 3.75V9.25H15.25V3.75M15.25 3.75H20.25V10.75M14.75 14.5V17.4435C14.75 19.4994 16.3943 20.2864 18 21C19.6057 20.2864 21.25 19.4994 21.25 17.4435V14.5C19 13.2253 17 13.2253 14.75 14.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageDelivery1: {\n title: \"package-delivery-1, address\",\n svg: '<path d=\"M13.23 20.25H3.75V3.75H8.75M8.75 3.75H15.25M8.75 3.75V9.25H15.25V3.75M15.25 3.75H20.25V10.25M18.25 20.5L16.1287 18.3765C14.9571 17.2038 14.9571 15.3023 16.1287 14.1296C17.3003 12.9568 19.1997 12.9568 20.3713 14.1296C21.5429 15.3023 21.5429 17.2038 20.3713 18.3765L18.25 20.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageIn: {\n title: \"package-in,delivery\",\n svg: '<path d=\"M20.25 10.25V3.75H3.75V20.25H12.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.75 3.75V9.25H15.25V3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.25 20.25V18C21.25 16.8954 20.3546 16 19.25 16H15M16.75 13.75L14.5 16L16.75 18.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageOut: {\n title: \"package-out, return,delivery\",\n svg: '<path d=\"M3.75 9.25V3.75H20.25V20.25H13.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.75 3.75V9.25H15.25V3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 20.25V18C9.25 16.8954 8.35457 16 7.25 16H3M4.75 13.75L2.5 16L4.75 18.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconFastDelivery: {\n title: \"fast-delivery, quick-commerce\",\n svg: '<path d=\"M12.75 20.25H20.25V3.75H3.75V9.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.75 3.75V9.25H15.25V3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M1.75 17H6.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 20.25H8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 13.75L8.25 13.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPackageDelivery: {\n title: \"package-delivery\",\n svg: '<path d=\"M3.75 3C3.33579 3 3 3.33579 3 3.75C3 4.16421 3.33579 4.5 3.75 4.5V3ZM6.75 3.75H7.5V3H6.75V3.75ZM6 14C6 14.4142 6.33579 14.75 6.75 14.75C7.16421 14.75 7.5 14.4142 7.5 14H6ZM10 16.5C9.58579 16.5 9.25 16.8358 9.25 17.25C9.25 17.6642 9.58579 18 10 18V16.5ZM20.25 18C20.6642 18 21 17.6642 21 17.25C21 16.8358 20.6642 16.5 20.25 16.5V18ZM10.75 4.75V4C10.3358 4 10 4.33579 10 4.75H10.75ZM20.25 4.75H21C21 4.33579 20.6642 4 20.25 4V4.75ZM20.25 13.25V14C20.6642 14 21 13.6642 21 13.25H20.25ZM10.75 13.25H10C10 13.6642 10.3358 14 10.75 14V13.25ZM14.75 8.25C14.75 8.66421 15.0858 9 15.5 9C15.9142 9 16.25 8.66421 16.25 8.25H14.75ZM3.75 4.5H6.75V3H3.75V4.5ZM6 3.75V14H7.5V3.75H6ZM10 18H20.25V16.5H10V18ZM19.5 4.75V13.25H21V4.75H19.5ZM20.25 12.5H10.75V14H20.25V12.5ZM11.5 13.25V4.75H10V13.25H11.5ZM10.75 5.5H15.5V4H10.75V5.5ZM15.5 5.5H20.25V4H15.5V5.5ZM16.25 8.25V4.75H14.75V8.25H16.25ZM9 17.25C9 18.4926 7.99264 19.5 6.75 19.5V21C8.82107 21 10.5 19.3211 10.5 17.25H9ZM6.75 19.5C5.50736 19.5 4.5 18.4926 4.5 17.25H3C3 19.3211 4.67893 21 6.75 21V19.5ZM4.5 17.25C4.5 16.0074 5.50736 15 6.75 15V13.5C4.67893 13.5 3 15.1789 3 17.25H4.5ZM6.75 15C7.99264 15 9 16.0074 9 17.25H10.5C10.5 15.1789 8.82107 13.5 6.75 13.5V15Z\" fill=\"currentColor\"/>',\n category: \"Shopping & Payment\",\n },\n IconTruck: {\n title: \"truck, delivery\",\n svg: '<path d=\"M10 16.25H14.5M4.71429 16.25H2.75V10L5 6.75H8.75V15M19.3561 16.25H21.25V4.75H8.75V6.84091M9.75 16.75C9.75 18.1307 8.63071 19.25 7.25 19.25C5.86929 19.25 4.75 18.1307 4.75 16.75C4.75 15.3693 5.86929 14.25 7.25 14.25C8.63071 14.25 9.75 15.3693 9.75 16.75ZM19.25 16.75C19.25 18.1307 18.1307 19.25 16.75 19.25C15.3693 19.25 14.25 18.1307 14.25 16.75C14.25 15.3693 15.3693 14.25 16.75 14.25C18.1307 14.25 19.25 15.3693 19.25 16.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPercent: {\n title: \"percent, sales\",\n svg: '<path d=\"M16 8L8 16M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.25 9C8.25 9.41421 8.58579 9.75 9 9.75C9.41421 9.75 9.75 9.41421 9.75 9C9.75 8.58579 9.41421 8.25 9 8.25C8.58579 8.25 8.25 8.58579 8.25 9Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.25 15C14.25 15.4142 14.5858 15.75 15 15.75C15.4142 15.75 15.75 15.4142 15.75 15C15.75 14.5858 15.4142 14.25 15 14.25C14.5858 14.25 14.25 14.5858 14.25 15Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconPayment: {\n title: \"payment, flow, connection\",\n svg: '<path d=\"M20.1036 14.5425C20.1987 14.0411 20.2484 13.5236 20.2484 12.9946C20.2484 10.9198 19.4831 9.02379 18.2193 7.57348M4.14844 10.4147C4.93178 8.03144 6.77094 6.12722 9.1126 5.25537M13.5407 21.1052C13.0394 21.2004 12.5219 21.2501 11.9929 21.2501C10.0389 21.2501 8.24343 20.5713 6.82952 19.4365\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"5.25\" r=\"2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.69554 14.8688C5.01063 14.1096 6.69222 14.5601 7.45148 15.8752C8.21075 17.1903 7.76017 18.8719 6.44508 19.6312C5.13 20.3904 3.44841 19.9399 2.68914 18.6248C1.92988 17.3097 2.38046 15.6281 3.69554 14.8688Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5471 19.6312C16.232 18.8719 15.7814 17.1903 16.5407 15.8752C17.3 14.5601 18.9816 14.1096 20.2966 14.8688C21.6117 15.6281 22.0623 17.3097 21.303 18.6248C20.5438 19.9399 18.8622 20.3904 17.5471 19.6312Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconReceiptCheck: {\n title: \"receipt-check, ticket\",\n svg: '<path d=\"M9.75 13.75H14.25M10 9.15003L11.2 10.35L14 7.55003M4.75 2.75V20.75L8.375 18.75L12 20.75L15.625 18.75L19.25 20.75V2.75H4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconReceiptBill: {\n title: \"receipt-bill, purchase, invoice\",\n svg: '<path d=\"M8.75 7.75H15.25M8.75 11.75H11.25M4.75 2.75H19.25V21.25L16.6667 19L14.3333 21.25L12 19L9.66667 21.25L7.33333 19L4.75 21.25V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconReceiptTax: {\n title: \"receipt-tax, discount\",\n svg: '<path d=\"M4.75 2.75V2C4.33579 2 4 2.33579 4 2.75H4.75ZM19.25 2.75H20C20 2.33579 19.6642 2 19.25 2V2.75ZM19.25 21.25L18.7574 21.8156C18.9791 22.0086 19.2931 22.0544 19.5607 21.9326C19.8283 21.8108 20 21.544 20 21.25H19.25ZM16.6667 19L17.1593 18.4344C16.866 18.179 16.426 18.1901 16.1461 18.4601L16.6667 19ZM14.3333 21.25L13.8127 21.7899C14.1033 22.07 14.5634 22.07 14.8539 21.7899L14.3333 21.25ZM12 19L12.5206 18.4601C12.2301 18.18 11.7699 18.18 11.4794 18.4601L12 19ZM9.66667 21.25L9.14606 21.7899C9.4366 22.07 9.89674 22.07 10.1873 21.7899L9.66667 21.25ZM7.33333 19L7.85394 18.4601C7.57396 18.1901 7.13404 18.179 6.84075 18.4344L7.33333 19ZM4.75 21.25H4C4 21.544 4.17175 21.8108 4.43931 21.9326C4.70687 22.0544 5.02091 22.0086 5.24259 21.8156L4.75 21.25ZM15.792 8.28033C16.0849 7.98744 16.0849 7.51256 15.792 7.21967C15.4992 6.92678 15.0243 6.92678 14.7314 7.21967L15.792 8.28033ZM8.23139 13.7197C7.9385 14.0126 7.9385 14.4874 8.23139 14.7803C8.52428 15.0732 8.99916 15.0732 9.29205 14.7803L8.23139 13.7197ZM4.75 3.5H19.25V2H4.75V3.5ZM18.5 2.75V21.25H20V2.75H18.5ZM19.7426 20.6844L17.1593 18.4344L16.1741 19.5656L18.7574 21.8156L19.7426 20.6844ZM16.1461 18.4601L13.8127 20.7101L14.8539 21.7899L17.1873 19.5399L16.1461 18.4601ZM14.8539 20.7101L12.5206 18.4601L11.4794 19.5399L13.8127 21.7899L14.8539 20.7101ZM11.4794 18.4601L9.14606 20.7101L10.1873 21.7899L12.5206 19.5399L11.4794 18.4601ZM10.1873 20.7101L7.85394 18.4601L6.81273 19.5399L9.14606 21.7899L10.1873 20.7101ZM6.84075 18.4344L4.25741 20.6844L5.24259 21.8156L7.82592 19.5656L6.84075 18.4344ZM5.5 21.25V2.75H4V21.25H5.5ZM14.7314 7.21967L8.23139 13.7197L9.29205 14.7803L15.792 8.28033L14.7314 7.21967Z\" fill=\"currentColor\"/><path d=\"M9 8V7.99M9.25 8C9.25 8.13807 9.13807 8.25 9 8.25C8.86193 8.25 8.75 8.13807 8.75 8C8.75 7.86193 8.86193 7.75 9 7.75C9.13807 7.75 9.25 7.86193 9.25 8Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M15 14V13.99M15.25 14C15.25 14.1381 15.1381 14.25 15 14.25C14.8619 14.25 14.75 14.1381 14.75 14C14.75 13.8619 14.8619 13.75 15 13.75C15.1381 13.75 15.25 13.8619 15.25 14Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconReceiptCheck2: {\n title: \"receipt-check-2, ticket\",\n svg: '<path d=\"M8.75 14.75H15.25M9.875 9.50001L11.4583 11.0834L14.625 7.91669M4.75 2.75H19.25V21.25L16.6667 19L14.3333 21.25L12 19L9.66667 21.25L7.33333 19L4.75 21.25V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconReceiptStorno: {\n title: \"receipt-storno, close, remove\",\n svg: '<path d=\"M8.75 14.75H15.25M13.875 7.375L12 9.25M12 9.25L10.125 11.125M12 9.25L10.125 7.375M12 9.25L13.875 11.125M4.75 2.75H19.25V21.25L16.6667 19L14.3333 21.25L12 19L9.66667 21.25L7.33333 19L4.75 21.25V2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCurrencyDollar: {\n title: \"currency-dollar, money\",\n svg: '<path d=\"M5.75 17.6374C8.13095 22.1337 18.25 21.7142 18.25 16.6672C18.25 10.7882 6.27083 13.8148 6.27083 7.30303C6.27083 2.72429 14.3217 1.95535 17.5 5.35201\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M12 22.75V1.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCurrencyEuro: {\n title: \"currency-euro, money\",\n svg: '<path d=\"M2.75 10.25H13.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 13.75H13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.25 6.03917C17.7428 4.0277 15.4873 2.75 12.9667 2.75C8.42873 2.75 4.75 6.89137 4.75 12C4.75 17.1086 8.42873 21.25 12.9667 21.25C15.4873 21.25 17.7428 19.9723 19.25 17.9608\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCurrencyYen: {\n title: \"currency-yen, money\",\n svg: '<path d=\"M5.75 3.75L12 10.9688M12 10.9688L18.25 3.75M12 10.9688V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.75 14.75H17.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 11.75H17.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCurrencyPounds: {\n title: \"currency-pounds, money\",\n svg: '<path d=\"M5.75 20.25C10.688 20.25 8.8855 11.313 8.8855 8.39062C8.8855 5.82768 10.9912 3.75 13.5888 3.75C15.2194 3.75 16.6563 4.56883 17.5 5.8125\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M5.75 20.25H18.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.75 12.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCurrencyRupees: {\n title: \"currency-rupees, money\",\n svg: '<path d=\"M4.75 2.75H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75 8H19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.25 21.25L4.75 13.25H11C18 13.25 18 2.75 11 2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCoinRupees: {\n title: \"coin-rupees, currency, money\",\n svg: '<path d=\"M7.75 10.75L16.25 10.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 7.75H11.75C13.4069 7.75 14.75 9.09315 14.75 10.75V10.75C14.75 12.4069 13.4069 13.75 11.75 13.75H9.75L14.25 16.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCurrencyPesos: {\n title: \"currency-pesos, money\",\n svg: '<path d=\"M20.25 10.75H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 6.75H3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 21.25V2.75H12.4044C15.7137 2.75 18.3981 5.42937 18.4044 8.73864C18.4107 12.0568 15.7226 14.75 12.4044 14.75H7.29546\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCoinPesos: {\n title: \"coin-pesos, currency, money\",\n svg: '<path d=\"M7.75 10.5L16.25 10.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 13.75H11.75C13.5449 13.75 15 12.2949 15 10.5C15 8.70507 13.5449 7.25 11.75 7.25H9.75V13.75ZM9.75 13.75V16.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCoinWon: {\n title: \"coin-won, currency, money\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M7.75 8.5L9.875 16L12 8.5L14.125 16L16.25 8.5\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.75 12H8.5M15.5 12H17.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCoinLira: {\n title: \"coin-lira, currency, money\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 7.75V16.25H12.4472C13.5735 16.25 14.6253 15.6871 15.25 14.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.25 13.5L15.25 9.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconCoinRand: {\n title: \"coin-rand, currency, money\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M9.25 15.7501V8.25L14.75 15.75V8.25005\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9 12H7.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.25 12H15\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Shopping & Payment\",\n },\n IconVolumeFull: {\n title: \"volume-full, speaker, loud, sound\",\n svg: '<path d=\"M19.2478 4.75195C21.1027 6.60684 22.25 9.16934 22.25 11.9998C22.25 14.8303 21.1027 17.3928 19.2478 19.2476M15.8891 8.11133C16.8844 9.10663 17.5 10.4816 17.5 12.0004C17.5 13.5192 16.8844 14.8942 15.8891 15.8895M1.75 7.75H6L12.25 3.75V20.25L6 16.25H1.75V7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconVolumeHalf: {\n title: \"volume-half, speaker, loud, sound\",\n svg: '<path d=\"M15.8891 8.11133C16.8844 9.10663 17.5 10.4816 17.5 12.0004C17.5 13.5192 16.8844 14.8942 15.8891 15.8895M1.75 7.75H6L12.25 3.75V20.25L6 16.25H1.75V7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconVolumeMinimum: {\n title: \"volume-minimum, speaker, loud, sound\",\n svg: '<path d=\"M1.75 7.75V7C1.33579 7 1 7.33579 1 7.75H1.75ZM6 7.75V8.5C6.1433 8.5 6.2836 8.45895 6.40429 8.3817L6 7.75ZM12.25 3.75H13C13 3.47592 12.8505 3.22366 12.6101 3.09208C12.3696 2.9605 12.0766 2.97055 11.8457 3.1183L12.25 3.75ZM12.25 20.25L11.8457 20.8817C12.0766 21.0294 12.3696 21.0395 12.6101 20.9079C12.8505 20.7763 13 20.5241 13 20.25H12.25ZM6 16.25L6.40429 15.6183C6.2836 15.5411 6.1433 15.5 6 15.5V16.25ZM1.75 16.25H1C1 16.6642 1.33579 17 1.75 17L1.75 16.25ZM16.114 9.62444C15.9066 9.2659 15.4478 9.14339 15.0893 9.3508C14.7307 9.55822 14.6082 10.017 14.8156 10.3756L16.114 9.62444ZM14.8156 13.6246C14.6082 13.9831 14.7307 14.4419 15.0893 14.6493C15.4478 14.8567 15.9066 14.7342 16.114 14.3757L14.8156 13.6246ZM1.75 8.5H6V7H1.75V8.5ZM6.40429 8.3817L12.6543 4.3817L11.8457 3.1183L5.59571 7.1183L6.40429 8.3817ZM11.5 3.75V20.25H13V3.75H11.5ZM12.6543 19.6183L6.40429 15.6183L5.59571 16.8817L11.8457 20.8817L12.6543 19.6183ZM6 15.5H1.75V17H6V15.5ZM2.5 16.25V7.75H1V16.25H2.5ZM14.8156 10.3756C15.0917 10.8528 15.25 11.4068 15.25 12.0001H16.75C16.75 11.1361 16.5187 10.3239 16.114 9.62444L14.8156 10.3756ZM15.25 12.0001C15.25 12.5933 15.0917 13.1473 14.8156 13.6246L16.114 14.3757C16.5187 13.6762 16.75 12.864 16.75 12.0001H15.25Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconVolumeOff: {\n title: \"volume-off, sound-off\",\n svg: '<path d=\"M1.75 7.75V7C1.33579 7 1 7.33579 1 7.75H1.75ZM6 7.75V8.5C6.1433 8.5 6.2836 8.45895 6.40429 8.3817L6 7.75ZM12.25 3.75H13C13 3.47592 12.8505 3.22366 12.6101 3.09208C12.3696 2.9605 12.0766 2.97055 11.8457 3.1183L12.25 3.75ZM12.25 20.25L11.8457 20.8817C12.0766 21.0294 12.3696 21.0395 12.6101 20.9079C12.8505 20.7763 13 20.5241 13 20.25H12.25ZM6 16.25L6.40429 15.6183C6.2836 15.5411 6.1433 15.5 6 15.5V16.25ZM1.75 16.25H1C1 16.6642 1.33579 17 1.75 17L1.75 16.25ZM22.0303 10.5303C22.3232 10.2374 22.3232 9.76256 22.0303 9.46967C21.7374 9.17678 21.2626 9.17678 20.9697 9.46967L22.0303 10.5303ZM16.727 13.7123C16.4341 14.0052 16.4341 14.4801 16.727 14.773C17.0199 15.0659 17.4948 15.0659 17.7877 14.773L16.727 13.7123ZM17.7877 9.46967C17.4948 9.17678 17.0199 9.17678 16.727 9.46967C16.4341 9.76256 16.4341 10.2374 16.727 10.5303L17.7877 9.46967ZM20.9697 14.773C21.2626 15.0659 21.7374 15.0659 22.0303 14.773C22.3232 14.4801 22.3232 14.0052 22.0303 13.7123L20.9697 14.773ZM1.75 8.5H6V7H1.75V8.5ZM6.40429 8.3817L12.6543 4.3817L11.8457 3.1183L5.59571 7.1183L6.40429 8.3817ZM11.5 3.75V20.25H13V3.75H11.5ZM12.6543 19.6183L6.40429 15.6183L5.59571 16.8817L11.8457 20.8817L12.6543 19.6183ZM6 15.5H1.75V17H6V15.5ZM2.5 16.25V7.75H1V16.25H2.5ZM20.9697 9.46967L18.8483 11.591L19.909 12.6517L22.0303 10.5303L20.9697 9.46967ZM18.8483 11.591L16.727 13.7123L17.7877 14.773L19.909 12.6517L18.8483 11.591ZM16.727 10.5303L18.8483 12.6517L19.909 11.591L17.7877 9.46967L16.727 10.5303ZM18.8483 12.6517L20.9697 14.773L22.0303 13.7123L19.909 11.591L18.8483 12.6517Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconVolumeDown: {\n title: \"volume-down\",\n svg: '<path d=\"M22.25 12H15.75M1.75 7.75H6L12.25 3.75V20.25L6 16.25H1.75V7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconVolumeUp: {\n title: \"volume-up\",\n svg: '<path d=\"M19 8.75V12M19 12V15.25M19 12H15.75M19 12H22.25M1.75 7.75H6L12.25 3.75V20.25L6 16.25H1.75V7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconMute: {\n title: \"mute, sound-off\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17 5.93934V3.75C17 3.47592 16.8505 3.22366 16.6101 3.09208C16.3696 2.9605 16.0766 2.97055 15.8457 3.1183L9.78055 7H5.75C5.33579 7 5 7.33579 5 7.75V16.25C5 16.6642 5.33579 17 5.75 17H5.93934L3.21967 19.7197C2.92678 20.0126 2.92678 20.4874 3.21967 20.7803C3.51256 21.0732 3.98744 21.0732 4.28033 20.7803L20.7803 4.28033C21.0732 3.98744 21.0732 3.51256 20.7803 3.21967C20.4874 2.92678 20.0126 2.92678 19.7197 3.21967L17 5.93934ZM7.43934 15.5H6.5V8.5H10C10.1433 8.5 10.2836 8.45895 10.4043 8.3817L15.5 5.12045V7.43934L7.43934 15.5Z\" fill=\"currentColor\"/><path d=\"M15.5 18.8796L11.1102 16.0701L10.0243 17.156L15.8457 20.8817C16.0766 21.0294 16.3696 21.0395 16.6101 20.9079C16.8505 20.7763 17 20.5241 17 20.25V10.1803L15.5 11.6803V18.8796Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconMicrophone: {\n title: \"microphone, mic, sound, podcast\",\n svg: '<path d=\"M12.0009 19C15.0764 19 17.7195 17.1489 18.8769 14.5M12.0009 19C8.92546 19 6.28233 17.1489 5.125 14.5M12.0009 19V21.25M12.0009 15.75C9.65372 15.75 7.75093 13.8472 7.75093 11.5V7C7.75093 4.65279 9.65372 2.75 12.0009 2.75C14.3481 2.75 16.2509 4.65279 16.2509 7V11.5C16.2509 13.8472 14.3481 15.75 12.0009 15.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconMicrophoneOff: {\n title: \"microphone-off\",\n svg: '<path d=\"M16.25 11.5V7C16.25 4.65279 14.3472 2.75 12 2.75C10.6334 2.75 9.41741 3.39504 8.63994 4.39727M3 3L7.75 7.75M7.75 7.75V11.5C7.75 13.8472 9.65279 15.75 12 15.75C13.0463 15.75 14.0043 15.3719 14.7449 14.7449M7.75 7.75L14.7449 14.7449M14.7449 14.7449L17.0474 17.0474M21 21L17.0474 17.0474M12 19C8.92453 19 6.2814 17.1489 5.12407 14.5M12 19V21.25M12 19C13.9439 19 15.715 18.2605 17.0474 17.0474\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconAudio: {\n title: \"audio, music, playlist, musical-note\",\n svg: '<path d=\"M9.75 18.75C9.75 20.1307 8.40685 21.25 6.75 21.25C5.09315 21.25 3.75 20.1307 3.75 18.75C3.75 17.3693 5.09315 16.25 6.75 16.25C8.40685 16.25 9.75 17.3693 9.75 18.75ZM9.75 18.75V5.75L20.2522 2.75V15.75M20.2522 15.75C20.2522 17.1307 18.9091 18.25 17.2522 18.25C15.5953 18.25 14.2522 17.1307 14.2522 15.75C14.2522 14.3693 15.5953 13.25 17.2522 13.25C18.9091 13.25 20.2522 14.3693 20.2522 15.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconPlaylist: {\n title: \"playlist\",\n svg: '<path d=\"M2.75 5.75H16.26M2.75 12H11.25M2.75 18.25H9.25M21.2539 16.75C21.2539 18.1307 19.9108 19.25 18.2539 19.25C16.5971 19.25 15.2539 18.1307 15.2539 16.75C15.2539 15.3693 16.5971 14.25 18.2539 14.25C19.9108 14.25 21.2539 15.3693 21.2539 16.75ZM21.2539 16.75V4.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconHeadphones: {\n title: \"headphones, support\",\n svg: '<path d=\"M3.75 13.75V12C3.75 7.44365 7.44365 3.75 12 3.75C16.5563 3.75 20.25 7.44365 20.25 12V13.75M3.75 13.75V20.25H7.75V13.75H3.75ZM20.25 13.75V20.25H16.25V13.75H20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconKeyboard: {\n title: \"keyboard, midi, keys, piano\",\n svg: '<path d=\"M8.75 13V21M15.25 13V21M7.25 3.75V12.75H10.25V3.75H7.25ZM13.75 3.75V12.75H16.75V3.75H13.75ZM3.75 3.75H20.25V21.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconVoice1: {\n title: \"voice-1, wave\",\n svg: '<path d=\"M7.75 3.75V20.25M3.75 9.75V14.25M12 7.75V16.25M16.25 5.75V18.25M20.25 9.75V14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconVoiceRecord: {\n title: \"voice-record\",\n svg: '<path d=\"M2.75 8.75V11.25M6.25 3.75V16.25M9.75 6.75V13.25M13.25 4.75V8.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"16.75\" cy=\"15.75\" r=\"4.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"16.75\" cy=\"15.75\" r=\"2.75\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconSpeachToText: {\n title: \"speach-to-text, voice-to-text\",\n svg: '<path d=\"M13.25 13.75V11.75H17.5M21.75 13.75V11.75H17.5M17.5 11.75V20.25M17.5 20.25H15.75M17.5 20.25H19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 8.75V11.25M6.25 3.75V16.25M9.75 6.75V13.25M13.25 4.75V8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconTextToSpeach: {\n title: \"text-to-speach\",\n svg: '<path d=\"M10.75 14.75V17.25M14.25 7.75V20.25M17.75 10.75V17.25M21.25 12.75V15.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 5.25V3.75H7M11.25 5.25V3.75H7M7 3.75V12.25M7 12.25H5.25M7 12.25H8.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconVoice2: {\n title: \"voice-2, siri, wave\",\n svg: '<path d=\"M2.75 11.9C6.86695 11.9 12.6791 20.5873 17.5711 19.386M4.60263 17.6C10.6237 17.6 14.5 10 20.5 10\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Sound & Music\",\n },\n IconVoice3: {\n title: \"voice-3, wave\",\n svg: '<path d=\"M22.25 12C19.6875 10.4625 19.6875 4.825 17.6375 4.825C15.5875 4.825 15.5875 9.95 13.025 9.95C10.4625 9.95 10.4625 1.75 7.9 1.75C5.3375 1.75 4.825 10.4625 1.75 12C4.825 13.5375 5.3375 22.25 7.9 22.25C10.4625 22.25 10.4625 14.05 13.025 14.05C15.5875 14.05 15.5875 19.175 17.6375 19.175C19.6875 19.175 19.175 13.5375 22.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconMegaphone: {\n title: \"megaphone, loud, speak, promote, feedback\",\n svg: '<path d=\"M18.2461 14C19.9029 14 21.2461 12.6569 21.2461 11C21.2461 9.34315 19.9029 8 18.2461 8M12.5754 18.25C12.1636 19.4152 11.0523 20.25 9.74609 20.25C8.08924 20.25 6.74609 18.9069 6.74609 17.25V15.75M6.74829 6.25V15.75M18.2461 2.75V19.25L2.74609 14.4643V7.53571L18.2461 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconPlay: {\n title: \"play, go\",\n svg: '<path d=\"M21.25 12L5.75 2.75V21.25L21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconPlayCircle: {\n title: \"play-circle\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.25 3.75C7.55558 3.75 3.75 7.55558 3.75 12.25C3.75 16.9444 7.55558 20.75 12.25 20.75C16.9444 20.75 20.75 16.9444 20.75 12.25C20.75 7.55558 16.9444 3.75 12.25 3.75ZM2.25 12.25C2.25 6.72715 6.72715 2.25 12.25 2.25C17.7728 2.25 22.25 6.72715 22.25 12.25C22.25 17.7728 17.7728 22.25 12.25 22.25C6.72715 22.25 2.25 17.7728 2.25 12.25Z\" fill=\"currentColor\"/><path d=\"M10.25 15.0539V9.44607C10.25 9.04436 10.6998 8.80666 11.0317 9.03295L15.1441 11.8369C15.4352 12.0354 15.4352 12.4646 15.1441 12.6631L11.0317 15.467C10.6998 15.6933 10.25 15.4556 10.25 15.0539Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconPause: {\n title: \"pause\",\n svg: '<path d=\"M4.75 3.75H9.25V20.25H4.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M14.75 3.75H19.25V20.25H14.75V3.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconStop: {\n title: \"stop\",\n svg: '<path d=\"M20.25 20.25V3.75H3.75V20.25H20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconStopCircle: {\n title: \"stop-circle\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z\" fill=\"currentColor\"/><path d=\"M9.5 10.5C9.5 9.94772 9.94772 9.5 10.5 9.5H13.5C14.0523 9.5 14.5 9.94772 14.5 10.5V13.5C14.5 14.0523 14.0523 14.5 13.5 14.5H10.5C9.94772 14.5 9.5 14.0523 9.5 13.5V10.5Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconRecord: {\n title: \"record\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z\" fill=\"currentColor\"/><path d=\"M16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconRewind5s: {\n title: \"rewind-5s\",\n svg: '<path d=\"M13 0.785721C13 0.480851 12.8204 0.203501 12.5393 0.0741891C12.2582 -0.0551232 11.9263 -0.0130522 11.6879 0.182121L9.28785 2.1464C9.10546 2.29568 9 2.51682 9 2.75C9 2.98318 9.10546 3.20432 9.28785 3.3536L11.6879 5.31788C11.9263 5.51305 12.2582 5.55512 12.5393 5.42581C12.8204 5.2965 13 5.01915 13 4.71428V3.5582C17.2232 4.05313 20.5 7.64389 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 9.74982 4.37337 7.70528 5.80106 6.18419C6.08453 5.88217 6.0695 5.40754 5.76748 5.12406C5.46546 4.84059 4.99083 4.85562 4.70735 5.15764C3.02903 6.94576 2 9.35353 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.81465 18.0533 2.5511 13 2.04938V0.785721Z\" fill=\"currentColor\"/><path d=\"M11.9243 15.9058C10.4688 15.9058 9.4375 15.084 9.4375 14.2622C9.4375 13.9023 9.66846 13.6177 10.0283 13.6177C10.2539 13.6177 10.4258 13.7144 10.603 13.9668C10.9414 14.4717 11.3711 14.7241 11.9189 14.7241C12.73 14.7241 13.3047 14.1602 13.3047 13.3491C13.3047 12.5649 12.7515 12.0278 11.978 12.0278C11.6182 12.0278 11.2529 12.1621 10.936 12.4092C10.6191 12.6777 10.4634 12.7422 10.2646 12.7422C9.82422 12.7422 9.52344 12.4253 9.55566 11.9312L9.75439 9.17041C9.79199 8.66016 10.0981 8.41309 10.689 8.41309H13.729C14.1587 8.41309 14.4111 8.6333 14.4111 9.00928C14.4111 9.38525 14.1641 9.59473 13.729 9.59473H10.9521L10.8018 11.4907H10.877C11.1294 11.147 11.7256 10.9106 12.354 10.9106C13.7505 10.9106 14.7119 11.8774 14.7119 13.2954C14.7119 14.8584 13.5894 15.9058 11.9243 15.9058Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconRewind10s: {\n title: \"rewind-10s\",\n svg: '<path d=\"M13 0.785721C13 0.480851 12.8204 0.203501 12.5393 0.0741891C12.2582 -0.0551232 11.9263 -0.0130522 11.6879 0.182121L9.28785 2.1464C9.10546 2.29568 9 2.51682 9 2.75C9 2.98318 9.10546 3.20432 9.28785 3.3536L11.6879 5.31788C11.9263 5.51305 12.2582 5.55512 12.5393 5.42581C12.8204 5.2965 13 5.01915 13 4.71428V3.5582C17.2232 4.05313 20.5 7.64389 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 9.74982 4.37337 7.70528 5.80106 6.18419C6.08453 5.88217 6.0695 5.40754 5.76748 5.12406C5.46546 4.84059 4.99083 4.85562 4.70735 5.15764C3.02903 6.94576 2 9.35353 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.81465 18.0533 2.5511 13 2.04938V0.785721Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.2363 15.9062C12.4961 15.9062 11.4595 14.4775 11.4595 12.2646V11.9209C11.4595 9.71875 12.5122 8.2793 14.2578 8.2793C16.0088 8.2793 17.04 9.70264 17.04 11.9209V12.2646C17.04 14.4614 15.9766 15.9062 14.2363 15.9062ZM14.2471 9.46094C13.4146 9.46094 12.9097 10.3794 12.9097 11.9263V12.2539C12.9097 13.8008 13.4146 14.7246 14.2471 14.7246C15.0796 14.7246 15.5845 13.8008 15.5845 12.2539V11.9263C15.5845 10.3848 15.0796 9.46094 14.2471 9.46094Z\" fill=\"currentColor\"/><path d=\"M9.47217 15.8149C9.021 15.8149 8.75781 15.5249 8.75781 15.0361V9.81543H8.72559L7.98975 10.3364C7.75879 10.4868 7.62451 10.5352 7.46875 10.5352C7.17334 10.5352 6.95312 10.3149 6.95312 10.0195C6.95312 9.79395 7.09277 9.59521 7.3667 9.4126L8.32812 8.74121C8.71484 8.47803 9.021 8.37061 9.32178 8.37061C9.84277 8.37061 10.1919 8.73047 10.1919 9.27295V15.0361C10.1919 15.5303 9.92871 15.8149 9.47217 15.8149Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconRewind15s: {\n title: \"rewind-15s\",\n svg: '<path d=\"M13 0.785721C13 0.480851 12.8204 0.203501 12.5393 0.0741891C12.2582 -0.0551232 11.9263 -0.0130522 11.6879 0.182121L9.28785 2.1464C9.10546 2.29568 9 2.51682 9 2.75C9 2.98318 9.10546 3.20432 9.28785 3.3536L11.6879 5.31788C11.9263 5.51305 12.2582 5.55512 12.5393 5.42581C12.8204 5.2965 13 5.01915 13 4.71428V3.5582C17.2232 4.05313 20.5 7.64389 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 9.74982 4.37337 7.70528 5.80106 6.18419C6.08453 5.88217 6.0695 5.40754 5.76748 5.12406C5.46546 4.84059 4.99083 4.85562 4.70735 5.15764C3.02903 6.94576 2 9.35353 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.81465 18.0533 2.5511 13 2.04938V0.785721Z\" fill=\"currentColor\"/><path d=\"M9.42139 15.8145C8.97021 15.8145 8.70703 15.5244 8.70703 15.0356V9.81494H8.6748L7.93896 10.3359C7.70801 10.4863 7.57373 10.5347 7.41797 10.5347C7.12256 10.5347 6.90234 10.3145 6.90234 10.019C6.90234 9.79346 7.04199 9.59473 7.31592 9.41211L8.27734 8.74072C8.66406 8.47754 8.97021 8.37012 9.271 8.37012C9.79199 8.37012 10.1411 8.72998 10.1411 9.27246V15.0356C10.1411 15.5298 9.87793 15.8145 9.42139 15.8145Z\" fill=\"currentColor\"/><path d=\"M14.1802 15.9058C12.7246 15.9058 11.6934 15.084 11.6934 14.2622C11.6934 13.9023 11.9243 13.6177 12.2842 13.6177C12.5098 13.6177 12.6816 13.7144 12.8589 13.9668C13.1973 14.4717 13.627 14.7241 14.1748 14.7241C14.9858 14.7241 15.5605 14.1602 15.5605 13.3491C15.5605 12.5649 15.0073 12.0278 14.2339 12.0278C13.874 12.0278 13.5088 12.1621 13.1919 12.4092C12.875 12.6777 12.7192 12.7422 12.5205 12.7422C12.0801 12.7422 11.7793 12.4253 11.8115 11.9312L12.0103 9.17041C12.0479 8.66016 12.354 8.41309 12.9448 8.41309H15.9849C16.4146 8.41309 16.667 8.6333 16.667 9.00928C16.667 9.38525 16.4199 9.59473 15.9849 9.59473H13.208L13.0576 11.4907H13.1328C13.3853 11.147 13.9814 10.9106 14.6099 10.9106C16.0063 10.9106 16.9678 11.8774 16.9678 13.2954C16.9678 14.8584 15.8452 15.9058 14.1802 15.9058Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconRewind30s: {\n title: \"rewind-30s\",\n svg: '<path d=\"M13 0.785721C13 0.480851 12.8204 0.203501 12.5393 0.0741891C12.2582 -0.0551232 11.9263 -0.0130522 11.6879 0.182121L9.28785 2.1464C9.10546 2.29568 9 2.51682 9 2.75C9 2.98318 9.10546 3.20432 9.28785 3.3536L11.6879 5.31788C11.9263 5.51305 12.2582 5.55512 12.5393 5.42581C12.8204 5.2965 13 5.01915 13 4.71428V3.5582C17.2232 4.05313 20.5 7.64389 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 9.74982 4.37337 7.70528 5.80106 6.18419C6.08453 5.88217 6.0695 5.40754 5.76748 5.12406C5.46546 4.84059 4.99083 4.85562 4.70735 5.15764C3.02903 6.94576 2 9.35353 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.81465 18.0533 2.5511 13 2.04938V0.785721Z\" fill=\"currentColor\"/><path d=\"M8.74951 15.9062C7.29932 15.9062 6.1875 15.0898 6.1875 14.2036C6.1875 13.8652 6.4292 13.6182 6.75684 13.6182C6.99316 13.6182 7.17041 13.731 7.36914 14.021C7.68066 14.5151 8.15869 14.7783 8.76025 14.7783C9.56592 14.7783 10.0869 14.3433 10.0869 13.6772C10.0869 13.0112 9.55518 12.5601 8.76562 12.5601H8.23926C7.91699 12.5601 7.68066 12.3184 7.68066 11.9854C7.68066 11.6631 7.91162 11.4214 8.23926 11.4214H8.73877C9.39941 11.4214 9.88281 10.9917 9.88281 10.4009C9.88281 9.81006 9.41016 9.40723 8.72803 9.40723C8.19629 9.40723 7.78271 9.6543 7.49805 10.1377C7.33691 10.4062 7.14893 10.519 6.89648 10.519C6.55273 10.519 6.30566 10.2773 6.30566 9.92822C6.30566 9.06885 7.35303 8.2793 8.75488 8.2793C10.2373 8.2793 11.2793 9.07959 11.2793 10.2236C11.2793 11.0186 10.6831 11.749 9.94189 11.8564V11.9478C10.8335 12.0337 11.5049 12.7964 11.5049 13.7256C11.5049 15.0093 10.3662 15.9062 8.74951 15.9062Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.1035 15.9062C13.3633 15.9062 12.3267 14.4775 12.3267 12.2646V11.9209C12.3267 9.71875 13.3794 8.2793 15.125 8.2793C16.876 8.2793 17.9072 9.70264 17.9072 11.9209V12.2646C17.9072 14.4614 16.8438 15.9062 15.1035 15.9062ZM15.1143 9.46094C14.2817 9.46094 13.7769 10.3794 13.7769 11.9263V12.2539C13.7769 13.8008 14.2817 14.7246 15.1143 14.7246C15.9468 14.7246 16.4517 13.8008 16.4517 12.2539V11.9263C16.4517 10.3848 15.9468 9.46094 15.1143 9.46094Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconFastForward5s: {\n title: \"fast-forward-5s\",\n svg: '<path d=\"M11.4607 0.0741891C11.1796 0.203501 11 0.480851 11 0.785721V2.04938C5.94668 2.5511 2 6.81465 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 9.35353 20.971 6.94576 19.2926 5.15764C19.0092 4.85562 18.5345 4.84059 18.2325 5.12406C17.9305 5.40754 17.9155 5.88217 18.1989 6.18419C19.6266 7.70528 20.5 9.74982 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 7.64389 6.77683 4.05313 11 3.5582V4.71428C11 5.01915 11.1796 5.2965 11.4607 5.42581C11.7418 5.55512 12.0737 5.51305 12.3121 5.31788L14.7121 3.3536C14.8945 3.20432 15 2.98318 15 2.75C15 2.51682 14.8945 2.29568 14.7121 2.1464L12.3121 0.182121C12.0737 -0.0130522 11.7418 -0.0551232 11.4607 0.0741891Z\" fill=\"currentColor\"/><path d=\"M9.43799 14.2622C9.43799 15.084 10.4692 15.9058 11.9248 15.9058C13.5898 15.9058 14.7124 14.8584 14.7124 13.2954C14.7124 11.8774 13.751 10.9106 12.3545 10.9106C11.7261 10.9106 11.1299 11.147 10.8774 11.4907H10.8022L10.9526 9.59473H13.7295C14.1646 9.59473 14.4116 9.38525 14.4116 9.00928C14.4116 8.6333 14.1592 8.41309 13.7295 8.41309H10.6895C10.0986 8.41309 9.79248 8.66016 9.75488 9.17041L9.55615 11.9312C9.52393 12.4253 9.82471 12.7422 10.2651 12.7422C10.4639 12.7422 10.6196 12.6777 10.9365 12.4092C11.2534 12.1621 11.6187 12.0278 11.9785 12.0278C12.752 12.0278 13.3052 12.5649 13.3052 13.3491C13.3052 14.1602 12.7305 14.7241 11.9194 14.7241C11.3716 14.7241 10.9419 14.4717 10.6035 13.9668C10.4263 13.7144 10.2544 13.6177 10.0288 13.6177C9.66895 13.6177 9.43799 13.9023 9.43799 14.2622Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconFastForward10s: {\n title: \"fast-forward-10s\",\n svg: '<path d=\"M11.4607 0.0741891C11.1796 0.203501 11 0.480851 11 0.785721V2.04938C5.94668 2.5511 2 6.81465 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 9.35353 20.971 6.94576 19.2926 5.15764C19.0092 4.85562 18.5345 4.84059 18.2325 5.12406C17.9305 5.40754 17.9155 5.88217 18.1989 6.18419C19.6266 7.70528 20.5 9.74982 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 7.64389 6.77683 4.05313 11 3.5582V4.71428C11 5.01915 11.1796 5.2965 11.4607 5.42581C11.7418 5.55512 12.0737 5.51305 12.3121 5.31788L14.7121 3.3536C14.8945 3.20432 15 2.98318 15 2.75C15 2.51682 14.8945 2.29568 14.7121 2.1464L12.3121 0.182121C12.0737 -0.0130522 11.7418 -0.0551232 11.4607 0.0741891Z\" fill=\"currentColor\"/><path d=\"M8.75586 15.0356C8.75586 15.5244 9.01904 15.8145 9.47021 15.8145C9.92676 15.8145 10.1899 15.5298 10.1899 15.0356V9.27246C10.1899 8.72998 9.84082 8.37012 9.31982 8.37012C9.01904 8.37012 8.71289 8.47754 8.32617 8.74072L7.36475 9.41211C7.09082 9.59473 6.95117 9.79346 6.95117 10.019C6.95117 10.3145 7.17139 10.5347 7.4668 10.5347C7.62256 10.5347 7.75684 10.4863 7.98779 10.3359L8.72363 9.81494H8.75586V15.0356Z\" fill=\"currentColor\"/><path d=\"M11.4575 12.2642C11.4575 14.4771 12.4941 15.9058 14.2344 15.9058C15.9746 15.9058 17.0381 14.4609 17.0381 12.2642V11.9204C17.0381 9.70215 16.0068 8.27881 14.2559 8.27881C12.5103 8.27881 11.4575 9.71826 11.4575 11.9204V12.2642ZM12.9077 11.9258C12.9077 10.3789 13.4126 9.46045 14.2451 9.46045C15.0776 9.46045 15.5825 10.3843 15.5825 11.9258V12.2534C15.5825 13.8003 15.0776 14.7241 14.2451 14.7241C13.4126 14.7241 12.9077 13.8003 12.9077 12.2534V11.9258Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconFastForward15s: {\n title: \"fast-forward-15s\",\n svg: '<path d=\"M11.4607 0.0741891C11.1796 0.203501 11 0.480851 11 0.785721V2.04938C5.94668 2.5511 2 6.81465 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 9.35353 20.971 6.94576 19.2926 5.15764C19.0092 4.85562 18.5345 4.84059 18.2325 5.12406C17.9305 5.40754 17.9155 5.88217 18.1989 6.18419C19.6266 7.70528 20.5 9.74982 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 7.64389 6.77683 4.05313 11 3.5582V4.71428C11 5.01915 11.1796 5.2965 11.4607 5.42581C11.7418 5.55512 12.0737 5.51305 12.3121 5.31788L14.7121 3.3536C14.8945 3.20432 15 2.98318 15 2.75C15 2.51682 14.8945 2.29568 14.7121 2.1464L12.3121 0.182121C12.0737 -0.0130522 11.7418 -0.0551232 11.4607 0.0741891Z\" fill=\"currentColor\"/><path d=\"M8.70752 15.0356C8.70752 15.5244 8.9707 15.8145 9.42188 15.8145C9.87842 15.8145 10.1416 15.5298 10.1416 15.0356V9.27246C10.1416 8.72998 9.79248 8.37012 9.27148 8.37012C8.9707 8.37012 8.66455 8.47754 8.27783 8.74072L7.31641 9.41211C7.04248 9.59473 6.90283 9.79346 6.90283 10.019C6.90283 10.3145 7.12305 10.5347 7.41846 10.5347C7.57422 10.5347 7.7085 10.4863 7.93945 10.3359L8.67529 9.81494H8.70752V15.0356Z\" fill=\"currentColor\"/><path d=\"M11.6938 14.2622C11.6938 15.084 12.7251 15.9058 14.1807 15.9058C15.8457 15.9058 16.9683 14.8584 16.9683 13.2954C16.9683 11.8774 16.0068 10.9106 14.6104 10.9106C13.9819 10.9106 13.3857 11.147 13.1333 11.4907H13.0581L13.2085 9.59473H15.9854C16.4204 9.59473 16.6675 9.38525 16.6675 9.00928C16.6675 8.6333 16.415 8.41309 15.9854 8.41309H12.9453C12.3545 8.41309 12.0483 8.66016 12.0107 9.17041L11.812 11.9312C11.7798 12.4253 12.0806 12.7422 12.521 12.7422C12.7197 12.7422 12.8755 12.6777 13.1924 12.4092C13.5093 12.1621 13.8745 12.0278 14.2344 12.0278C15.0078 12.0278 15.561 12.5649 15.561 13.3491C15.561 14.1602 14.9863 14.7241 14.1753 14.7241C13.6274 14.7241 13.1978 14.4717 12.8594 13.9668C12.6821 13.7144 12.5103 13.6177 12.2847 13.6177C11.9248 13.6177 11.6938 13.9023 11.6938 14.2622Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconFastForward30s: {\n title: \"fast-forward-30s\",\n svg: '<path d=\"M11.4607 0.0741891C11.1796 0.203501 11 0.480851 11 0.785721V2.04938C5.94668 2.5511 2 6.81465 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 9.35353 20.971 6.94576 19.2926 5.15764C19.0092 4.85562 18.5345 4.84059 18.2325 5.12406C17.9305 5.40754 17.9155 5.88217 18.1989 6.18419C19.6266 7.70528 20.5 9.74982 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 7.64389 6.77683 4.05313 11 3.5582V4.71428C11 5.01915 11.1796 5.2965 11.4607 5.42581C11.7418 5.55512 12.0737 5.51305 12.3121 5.31788L14.7121 3.3536C14.8945 3.20432 15 2.98318 15 2.75C15 2.51682 14.8945 2.29568 14.7121 2.1464L12.3121 0.182121C12.0737 -0.0130522 11.7418 -0.0551232 11.4607 0.0741891Z\" fill=\"currentColor\"/><path d=\"M6.18848 14.2031C6.18848 15.0894 7.30029 15.9058 8.75049 15.9058C10.3672 15.9058 11.5059 15.0088 11.5059 13.7251C11.5059 12.7959 10.8345 12.0332 9.94287 11.9473V11.856C10.6841 11.7485 11.2803 11.0181 11.2803 10.2231C11.2803 9.0791 10.2383 8.27881 8.75586 8.27881C7.354 8.27881 6.30664 9.06836 6.30664 9.92773C6.30664 10.2769 6.55371 10.5186 6.89746 10.5186C7.1499 10.5186 7.33789 10.4058 7.49902 10.1372C7.78369 9.65381 8.19727 9.40674 8.729 9.40674C9.41113 9.40674 9.88379 9.80957 9.88379 10.4004C9.88379 10.9912 9.40039 11.4209 8.73975 11.4209H8.24023C7.9126 11.4209 7.68164 11.6626 7.68164 11.9849C7.68164 12.3179 7.91797 12.5596 8.24023 12.5596H8.7666C9.55615 12.5596 10.0879 13.0107 10.0879 13.6768C10.0879 14.3428 9.56689 14.7778 8.76123 14.7778C8.15967 14.7778 7.68164 14.5146 7.37012 14.0205C7.17139 13.7305 6.99414 13.6177 6.75781 13.6177C6.43018 13.6177 6.18848 13.8647 6.18848 14.2031Z\" fill=\"currentColor\"/><path d=\"M12.3276 12.2642C12.3276 14.4771 13.3643 15.9058 15.1045 15.9058C16.8447 15.9058 17.9082 14.4609 17.9082 12.2642V11.9204C17.9082 9.70215 16.877 8.27881 15.126 8.27881C13.3804 8.27881 12.3276 9.71826 12.3276 11.9204V12.2642ZM13.7778 11.9258C13.7778 10.3789 14.2827 9.46045 15.1152 9.46045C15.9478 9.46045 16.4526 10.3843 16.4526 11.9258V12.2534C16.4526 13.8003 15.9478 14.7241 15.1152 14.7241C14.2827 14.7241 13.7778 13.8003 13.7778 12.2534V11.9258Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconBack10s: {\n title: \"back-10s\",\n svg: '<path d=\"M4.35057 9.25C5.3 6 8.541 3.75 12.0053 3.75C15.4998 3.75 18.4872 6.02978 19.6917 9.25M3.75 4.75V9.25H8.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.66406 20.1558V13.9858H7.62598L6.75635 14.6016C6.4834 14.7793 6.32471 14.8364 6.14062 14.8364C5.7915 14.8364 5.53125 14.5762 5.53125 14.2271C5.53125 13.9604 5.69629 13.7256 6.02002 13.5098L7.15625 12.7163C7.61328 12.4053 7.9751 12.2783 8.33057 12.2783C8.94629 12.2783 9.35889 12.7036 9.35889 13.3447V20.1558C9.35889 20.7397 9.04785 21.0762 8.5083 21.0762C7.9751 21.0762 7.66406 20.7334 7.66406 20.1558Z\" fill=\"currentColor\"/><path d=\"M10.8569 16.8804V16.4741C10.8569 13.8716 12.1011 12.1704 14.1641 12.1704C16.2334 12.1704 17.4521 13.8525 17.4521 16.4741V16.8804C17.4521 19.4766 16.1953 21.1841 14.1387 21.1841C12.082 21.1841 10.8569 19.4956 10.8569 16.8804ZM12.5708 16.4805V16.8677C12.5708 18.6958 13.1675 19.7876 14.1514 19.7876C15.1353 19.7876 15.7319 18.6958 15.7319 16.8677V16.4805C15.7319 14.6587 15.1353 13.5669 14.1514 13.5669C13.1675 13.5669 12.5708 14.6523 12.5708 16.4805Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconForwards10s: {\n title: \"forwards-10s\",\n svg: '<path d=\"M19.6497 9.25C18.7003 6 15.4593 3.75 11.995 3.75C8.50046 3.75 5.5131 6.02978 4.30859 9.25M19.6497 9.25H20.2503V4.75M19.6497 9.25H15.7503\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.16406 20.1558V13.9858H8.12598L7.25635 14.6016C6.9834 14.7793 6.82471 14.8364 6.64062 14.8364C6.2915 14.8364 6.03125 14.5762 6.03125 14.2271C6.03125 13.9604 6.19629 13.7256 6.52002 13.5098L7.65625 12.7163C8.11328 12.4053 8.4751 12.2783 8.83057 12.2783C9.44629 12.2783 9.85889 12.7036 9.85889 13.3447V20.1558C9.85889 20.7397 9.54785 21.0762 9.0083 21.0762C8.4751 21.0762 8.16406 20.7334 8.16406 20.1558Z\" fill=\"currentColor\"/><path d=\"M11.3569 16.8804V16.4741C11.3569 13.8716 12.6011 12.1704 14.6641 12.1704C16.7334 12.1704 17.9521 13.8525 17.9521 16.4741V16.8804C17.9521 19.4766 16.6953 21.1841 14.6387 21.1841C12.582 21.1841 11.3569 19.4956 11.3569 16.8804ZM13.0708 16.4805V16.8677C13.0708 18.6958 13.6675 19.7876 14.6514 19.7876C15.6353 19.7876 16.2319 18.6958 16.2319 16.8677V16.4805C16.2319 14.6587 15.6353 13.5669 14.6514 13.5669C13.6675 13.5669 13.0708 14.6523 13.0708 16.4805Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconFastForward: {\n title: \"fast-forward\",\n svg: '<path d=\"M12.75 11.6324V5.75L21.25 12L12.75 18.25V12.3676M12.75 11.6324L4.75 5.75V18.25L12.75 12.3676M12.75 11.6324V12.3676\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconRewind: {\n title: \"rewind\",\n svg: '<path d=\"M11.25 12.3676V18.25L2.75 12L11.25 5.75V11.6324M11.25 12.3676L19.25 18.25V5.75L11.25 11.6324M11.25 12.3676V11.6324\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconSkip: {\n title: \"skip, next\",\n svg: '<path d=\"M19.25 4.75V19.25M4.75 4.75L16 12L4.75 19.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconBack: {\n title: \"back\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.609 4.09151C19.368 3.96011 19.0745 3.97087 18.8437 4.11957L7.59372 11.3696C7.37946 11.5077 7.25 11.7451 7.25 12C7.25 12.2549 7.37946 12.4923 7.59372 12.6304L18.8437 19.8804C19.0745 20.0291 19.368 20.0399 19.609 19.9085C19.85 19.7771 20 19.5245 20 19.25V4.75C20 4.47549 19.85 4.22292 19.609 4.09151ZM4.75 4C4.33579 4 4 4.33579 4 4.75V19.25C4 19.6642 4.33579 20 4.75 20C5.16421 20 5.5 19.6642 5.5 19.25V4.75C5.5 4.33579 5.16421 4 4.75 4ZM18.5 6.12558V17.8744L9.38453 12L18.5 6.12558Z\" fill=\"currentColor\"/>',\n category: \"Sound & Music\",\n },\n IconShuffle: {\n title: \"shuffle, random\",\n svg: '<path d=\"M2.75 18.1875H4.80556L16.25 6.75H20.5M2.75 5.75H4.75L8.5 9.5M20.5 17.1562H16.1111L13.5 14.5M18.25 3.75L21.25 6.75L18.25 9.75M18.1667 14.0625L21.25 17.1562L18.1667 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconRepeat: {\n title: \"repeat\",\n svg: '<path d=\"M7.25 18.25H2.75V3.75H21.25V18.25H12.25M15 15L11.75 18.25L15 21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconAlbums: {\n title: \"albums, cover\",\n svg: '<path d=\"M3.75 5.75V18.25M7.75 4.75V19.25M11.75 3.75V20.25L20.25 18.7031V5.29688L11.75 3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconAirpods: {\n title: \"airpods, headphones, vibe\",\n svg: '<path d=\"M7.25 12.8984V20.25H10.25V8.5C10.25 5.87669 8.09145 3.75007 5.42871 3.75C4.43757 3.75 3.51612 4.04459 2.75 4.5498V12.4492C3.51621 12.9546 4.43738 13.25 5.42871 13.25C6.07328 13.25 6.68799 13.1246 7.25 12.8984ZM7.25 12.8984V11.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M16.75 12.8984V20.25H13.75V8.5C13.75 5.87669 15.9086 3.75007 18.5713 3.75C19.5624 3.75 20.4839 4.04459 21.25 4.5498V12.4492C20.4838 12.9546 19.5626 13.25 18.5713 13.25C17.9267 13.25 17.312 13.1246 16.75 12.8984ZM16.75 12.8984V11.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconAirpodLeft: {\n title: \"airpod-left\",\n svg: '<path d=\"M7.75 12.8984V20.25H4.75V8.5C4.75 5.87669 6.90855 3.75007 9.57129 3.75C10.5624 3.75 11.4839 4.04459 12.25 4.5498V12.4492C11.4838 12.9546 10.5626 13.25 9.57129 13.25C8.92672 13.25 8.31201 13.1246 7.75 12.8984ZM7.75 12.8984V11.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.75 13.75V20.25H19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconAirpodRight: {\n title: \"airpod-right\",\n svg: '<path d=\"M14.4287 3.75C17.0914 3.75007 19.25 5.87669 19.25 8.5V20.25H16.25V12.8984C15.688 13.1246 15.0733 13.25 14.4287 13.25C13.4374 13.25 12.5162 12.9546 11.75 12.4492V4.5498C12.5161 4.04459 13.4376 3.75 14.4287 3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M16.25 13V11.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.75 20.25V13.75H7.375C8.41053 13.75 9.25 14.5895 9.25 15.625V15.625C9.25 16.6605 8.41053 17.5 7.375 17.5H5.3125\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25988 20.25V20C9.25988 18.8603 8.5 17.5 6.5 17.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconPodcast1: {\n title: \"podcast-1, broadcast, mic\",\n svg: '<path d=\"M17.1149 19.75C19.6073 18.0888 21.25 15.248 21.25 12.0227C21.25 6.90154 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.90154 2.75 12.0227C2.75 15.248 4.39266 18.0888 6.88507 19.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M7.8 15.25C7.14069 14.3621 6.75 13.2583 6.75 12.0622C6.75 9.12834 9.1005 6.75 12 6.75C14.8995 6.75 17.25 9.12834 17.25 12.0622C17.25 13.2583 16.8593 14.3621 16.2 15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M12.8523 20.7569L13.2983 17.4862C13.4055 16.7001 12.7944 16 12.001 16C11.2075 16 10.5964 16.7001 10.7036 17.4862L11.1496 20.7569C11.2077 21.1826 11.5713 21.5 12.001 21.5C12.4306 21.5 12.7943 21.1826 12.8523 20.7569Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M13.25 12C13.25 12.6904 12.6904 13.25 12 13.25C11.3096 13.25 10.75 12.6904 10.75 12C10.75 11.3096 11.3096 10.75 12 10.75C12.6904 10.75 13.25 11.3096 13.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Sound & Music\",\n },\n IconPodcast2: {\n title: \"podcast-2, broadcast, mic\",\n svg: '<path d=\"M8.75 11C8.75 9.20507 10.2051 7.75 12 7.75C13.7949 7.75 15.25 9.20507 15.25 11V13.5C15.25 15.2949 13.7949 16.75 12 16.75C10.2051 16.75 8.75 15.2949 8.75 13.5V11Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M11.9998 16.7607V20.2501M11.9998 20.2501H9.75M11.9998 20.2501H14.27\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.5407 18.5407C22.1531 14.9284 22.1531 9.07161 18.5407 5.45926C14.9284 1.84691 9.07161 1.84691 5.45926 5.45926C1.84691 9.07161 1.84691 14.9284 5.45926 18.5407\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Sound & Music\",\n },\n IconTennis: {\n title: \"tennis\",\n svg: '<path d=\"M6 4.9597C7.98887 6.65632 9.25 9.18088 9.25 12C9.25 14.8191 7.98887 17.3437 6 19.0403M6 4.9597C4.01113 6.65632 2.75 9.18088 2.75 12C2.75 14.8191 4.01113 17.3437 6 19.0403M6 4.9597C7.61524 3.58181 9.71048 2.75 12 2.75C14.2895 2.75 16.3848 3.58181 18 4.9597M6 19.0403C7.61524 20.4182 9.71048 21.25 12 21.25C14.2895 21.25 16.3848 20.4182 18 19.0403M18 4.9597C16.0111 6.65632 14.75 9.18088 14.75 12C14.75 14.8191 16.0111 17.3437 18 19.0403M18 4.9597C19.9889 6.65632 21.25 9.18088 21.25 12C21.25 14.8191 19.9889 17.3437 18 19.0403\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Sports\",\n },\n IconBasketball: {\n title: \"basketball, nba\",\n svg: '<path d=\"M21.25 12H2.75M21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12M18.4597 6C17.0818 7.61524 16.25 9.71048 16.25 12C16.25 14.2895 17.0818 16.3848 18.4597 18M5.5403 18C6.91819 16.3848 7.75 14.2895 7.75 12C7.75 9.71048 6.91819 7.61524 5.5403 6M12 3V21\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Sports\",\n },\n IconSoccer: {\n title: \"soccer, football, mls\",\n svg: '<path d=\"M8.57915 3.40315L12 5.88854L15.4209 3.40315M8.57915 3.40315C9.6373 2.98172 10.7916 2.75 12 2.75C13.2084 2.75 14.3627 2.98172 15.4209 3.40315M8.57915 3.40315C7.13065 3.98003 5.86229 4.9124 4.88182 6.0925M4.88182 6.0925C3.55053 7.69486 2.75 9.75394 2.75 12C2.75 12.2 2.75635 12.3985 2.76885 12.5954M4.88182 6.0925L6.18766 10.1115L2.76885 12.5954M2.76885 12.5954C2.87003 14.1882 3.37434 15.6714 4.18088 16.9443M4.18088 16.9443H8.40778L9.71434 20.9654M4.18088 16.9443C5.42752 18.9117 7.39622 20.3763 9.71434 20.9654M9.71434 20.9654C10.4454 21.1513 11.2112 21.25 12 21.25C12.7888 21.25 13.5546 21.1513 14.2857 20.9654M14.2857 20.9654L15.5922 16.9443H19.8191M14.2857 20.9654C16.6038 20.3763 18.5725 18.9117 19.8191 16.9443M19.8191 16.9443C20.6257 15.6714 21.13 14.1882 21.2311 12.5954M21.2311 12.5954C21.2437 12.3985 21.25 12.2 21.25 12C21.25 9.75394 20.4495 7.69486 19.1182 6.0925M21.2311 12.5954L17.8123 10.1115L19.1182 6.0925M19.1182 6.0925C18.1377 4.9124 16.8693 3.98003 15.4209 3.40315M12 8.75L15.0909 10.9957L13.9103 14.6293H10.0897L8.90907 10.9957L12 8.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Sports\",\n },\n IconAmericanFootball: {\n title: \"american-football, nfl\",\n svg: '<path d=\"M13 3L21 11M3 13L11 21M10 14L14 10M14.75 2.75H19.25C20.3546 2.75 21.25 3.64543 21.25 4.75V9.25C21.25 15.8774 15.8774 21.25 9.25 21.25H4.75C3.64543 21.25 2.75 20.3546 2.75 19.25V14.75C2.75 8.12258 8.12258 2.75 14.75 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sports\",\n },\n IconBaseball: {\n title: \"baseball\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.78942 7.83969C7.50782 7.99043 7.15864 7.88237 6.98851 7.61205C6.81837 7.34173 6.87304 6.98155 7.13082 6.79296L7.32311 6.65229C7.62774 6.42944 8.05694 6.49361 8.25799 6.81305C8.45904 7.13248 8.33224 7.54913 7.99947 7.72725L7.78942 7.83969ZM16.0021 7.72725C15.6694 7.54913 15.5426 7.13248 15.7436 6.81305C15.9447 6.49361 16.3739 6.42944 16.6785 6.65229L16.8708 6.79296C17.1286 6.98155 17.1832 7.34173 17.0131 7.61205C16.843 7.88237 16.4938 7.99043 16.2122 7.83969L16.0021 7.72725ZM8.63599 10.1567C8.32379 10.223 8.01838 10.0205 7.93012 9.71377C7.84186 9.40706 7.99469 9.07802 8.29444 8.96843L8.51825 8.88659C8.87294 8.75691 9.26719 8.93604 9.37163 9.29897C9.47606 9.6619 9.23851 10.0287 8.86909 10.1072L8.63599 10.1567ZM15.1325 10.1072C14.7631 10.0287 14.5255 9.6619 14.63 9.29897C14.7344 8.93604 15.1287 8.75691 15.4834 8.88659L15.7072 8.96843C16.0069 9.07802 16.1597 9.40706 16.0715 9.71377C15.9832 10.0205 15.6778 10.223 15.3656 10.1567L15.1325 10.1072ZM8.2508 12C8.2508 11.6801 8.48956 11.4033 8.8087 11.3812L9.04601 11.3648C9.42226 11.3388 9.7508 11.6228 9.7508 12C9.7508 12.3771 9.42226 12.6612 9.04601 12.6352L8.8087 12.6188C8.48956 12.5967 8.2508 12.3199 8.2508 12ZM14.2508 12C14.2508 11.6228 14.5793 11.3388 14.9556 11.3648L15.1929 11.3812C15.512 11.4033 15.7508 11.6801 15.7508 12C15.7508 12.3199 15.512 12.5967 15.1929 12.6188L14.9556 12.6352C14.5793 12.6612 14.2508 12.3771 14.2508 12ZM8.29444 15.0315C7.99469 14.9219 7.84186 14.5929 7.93012 14.2862C8.01838 13.9795 8.32379 13.777 8.63599 13.8433L8.86909 13.8928C9.23851 13.9713 9.47606 14.3381 9.37163 14.701C9.26719 15.0639 8.87294 15.2431 8.51825 15.1134L8.29444 15.0315ZM15.4834 15.1134C15.1287 15.2431 14.7344 15.0639 14.63 14.701C14.5255 14.3381 14.7631 13.9713 15.1325 13.8928L15.3656 13.8433C15.6778 13.777 15.9832 13.9795 16.0715 14.2862C16.1597 14.5929 16.0069 14.9219 15.7072 15.0315L15.4834 15.1134ZM7.13082 17.207C6.87304 17.0184 6.81837 16.6582 6.98851 16.3879C7.15864 16.1176 7.50782 16.0095 7.78942 16.1603L7.99947 16.2727C8.33224 16.4508 8.45904 16.8675 8.25799 17.1869C8.05694 17.5064 7.62774 17.5705 7.32311 17.3477L7.13082 17.207ZM16.6785 17.3477C16.3739 17.5705 15.9447 17.5064 15.7436 17.1869C15.5426 16.8675 15.6694 16.4508 16.0021 16.2727L16.2122 16.1603C16.4938 16.0095 16.843 16.1176 17.0131 16.3879C17.1832 16.6582 17.1286 17.0184 16.8708 17.207L16.6785 17.3477Z\" fill=\"currentColor\"/>',\n category: \"Sports\",\n },\n IconVolleyball: {\n title: \"volleyball\",\n svg: '<path d=\"M11.9986 12C13.2614 9.67556 13.3429 5.9991 12.2433 3.5M11.9986 12C9.36946 12.0687 6.16712 13.8156 4.54372 16M11.9986 12C13.3958 14.2818 16.5947 16.2075 19.3294 16.4713M12.864 7.39184C9.81372 7.5089 6.36064 8.84695 3.5 10.8275M7.54281 13.5C9.15798 16.0967 12.0743 18.4246 15.2406 19.888M15.534 15.1004C16.9811 12.3854 17.5377 8.67142 17.2142 5.1801\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Sports\",\n },\n IconIceHockey: {\n title: \"ice-hockey\",\n svg: '<path d=\"M22.25 9.39583C22.25 11.4094 17.6609 13.0417 12 13.0417C6.33908 13.0417 1.75 11.4094 1.75 9.39583M22.25 9.39583C22.25 7.3823 17.6609 5.75 12 5.75C6.33908 5.75 1.75 7.3823 1.75 9.39583M22.25 9.39583V14.6042C22.25 16.6177 17.6609 18.25 12 18.25C6.33908 18.25 1.75 16.6177 1.75 14.6042V9.39583\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Sports\",\n },\n IconGolfBall: {\n title: \"golf-ball\",\n svg: '<path d=\"M12.25 12.7502C12.8023 12.7502 13.25 12.3025 13.25 11.7502C13.25 11.6729 13.2412 11.5976 13.2246 11.5254C13.6688 11.6273 14 12.025 14 12.5001C14 13.0523 13.5523 13.5001 13 13.5001C12.525 13.5001 12.1274 13.1689 12.0254 12.7249C12.0976 12.7414 12.1728 12.7502 12.25 12.7502Z\" fill=\"currentColor\"/><path d=\"M9.72463 12.2502C10.2769 12.2502 10.7246 11.8025 10.7246 11.2502C10.7246 11.1729 10.7159 11.0977 10.6993 11.0254C11.1434 11.1274 11.4746 11.5251 11.4746 12.0001C11.4746 12.5524 11.0269 13.0001 10.4746 13.0001C9.99964 13.0001 9.602 12.669 9.5 12.2249C9.57221 12.2415 9.6474 12.2502 9.72463 12.2502Z\" fill=\"currentColor\"/><path d=\"M11.7246 10.2502C12.2769 10.2502 12.7246 9.80253 12.7246 9.25024C12.7246 9.17295 12.7159 9.0977 12.6993 9.02545C13.1434 9.12739 13.4746 9.52507 13.4746 10.0001C13.4746 10.5524 13.0269 11.0001 12.4746 11.0001C11.9996 11.0001 11.602 10.669 11.5 10.2249C11.5722 10.2415 11.6474 10.2502 11.7246 10.2502Z\" fill=\"currentColor\"/><path d=\"M13.75 8.27551C14.3023 8.27551 14.75 7.8278 14.75 7.27551C14.75 7.19822 14.7412 7.12298 14.7246 7.05072C15.1688 7.15266 15.5 7.55034 15.5 8.02539C15.5 8.57768 15.0523 9.02539 14.5 9.02539C14.025 9.02539 13.6274 8.69422 13.5254 8.25018C13.5976 8.26676 13.6728 8.27551 13.75 8.27551Z\" fill=\"currentColor\"/><path d=\"M14.2246 10.7502C14.7769 10.7502 15.2246 10.3025 15.2246 9.75024C15.2246 9.67295 15.2159 9.5977 15.1993 9.52545C15.6434 9.62739 15.9746 10.0251 15.9746 10.5001C15.9746 11.0524 15.5269 11.5001 14.9746 11.5001C14.4996 11.5001 14.102 11.169 14 10.7249C14.0722 10.7415 14.1474 10.7502 14.2246 10.7502Z\" fill=\"currentColor\"/><path d=\"M15.25 17.75C13.4551 17.75 12 19.317 12 21.25C12 19.317 10.5449 17.75 8.75 17.75M18.75 9.5C18.75 13.2279 15.7279 16.25 12 16.25C8.27208 16.25 5.25 13.2279 5.25 9.5C5.25 5.77208 8.27208 2.75 12 2.75C15.7279 2.75 18.75 5.77208 18.75 9.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Sports\",\n },\n IconFrisbee: {\n title: \"frisbee\",\n svg: '<path d=\"M22.25 12C22.25 14.8995 17.6609 17.25 12 17.25C6.33908 17.25 1.75 14.8995 1.75 12C1.75 9.10051 6.33908 6.75 12 6.75C17.6609 6.75 22.25 9.10051 22.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.20312 6.36237C4.54064 4.82311 7.82483 3.83517 11.4846 3.75M12.5159 20.2384C16.1756 20.1532 19.4598 19.1653 21.7973 17.626\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20 10.5C20 12.433 16.4183 14 12 14C7.58172 14 4 12.433 4 10.5C4 8.567 7.58172 7 12 7C16.4183 7 20 8.567 20 10.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Sports\",\n },\n IconFrisbeeGolf: {\n title: \"frisbee-golf\",\n svg: '<path d=\"M5.36586 16.25C2.49356 12.8132 1.87674 8.14485 2.76863 3.75H15.2353C15.8179 6.49115 15.8925 9.95344 14.8814 12.7061\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 16.25H6.67103\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><ellipse cx=\"14\" cy=\"16.5\" rx=\"7.25\" ry=\"3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><ellipse cx=\"14\" cy=\"15.25\" rx=\"4.75\" ry=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.77966 3.75C6.10158 7.16899 6.33846 11.1888 8.11466 14.25M11.2097 3.75C11.817 6.81177 11.6904 10.3554 10.3817 13.2609\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Sports\",\n },\n IconPickelball: {\n title: \"pickelball\",\n svg: '<circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M13.0984 12C13.0984 12.6075 12.606 13.1 11.9984 13.1C11.3909 13.1 10.8984 12.6075 10.8984 12C10.8984 11.3925 11.3909 10.9 11.9984 10.9C12.606 10.9 13.0984 11.3925 13.0984 12Z\" fill=\"currentColor\"/><path d=\"M10.9985 7.9999C10.9985 8.60742 10.506 9.0999 9.89854 9.0999C9.29102 9.0999 8.79854 8.60742 8.79854 7.9999C8.79854 7.39239 9.29102 6.8999 9.89854 6.8999C10.506 6.8999 10.9985 7.39239 10.9985 7.9999Z\" fill=\"currentColor\"/><path d=\"M10.9985 15.9999C10.9985 16.6074 10.506 17.0999 9.89854 17.0999C9.29102 17.0999 8.79854 16.6074 8.79854 15.9999C8.79854 15.3924 9.29102 14.8999 9.89854 14.8999C10.506 14.8999 10.9985 15.3924 10.9985 15.9999Z\" fill=\"currentColor\"/><path d=\"M15.1985 7.9999C15.1985 8.60742 14.706 9.0999 14.0985 9.0999C13.491 9.0999 12.9985 8.60742 12.9985 7.9999C12.9985 7.39239 13.491 6.8999 14.0985 6.8999C14.706 6.8999 15.1985 7.39239 15.1985 7.9999Z\" fill=\"currentColor\"/><path d=\"M15.1985 15.9999C15.1985 16.6074 14.706 17.0999 14.0985 17.0999C13.491 17.0999 12.9985 16.6074 12.9985 15.9999C12.9985 15.3924 13.491 14.8999 14.0985 14.8999C14.706 14.8999 15.1985 15.3924 15.1985 15.9999Z\" fill=\"currentColor\"/><path d=\"M8.34844 12C8.34844 12.6075 7.85595 13.1 7.24844 13.1C6.64092 13.1 6.14844 12.6075 6.14844 12C6.14844 11.3925 6.64092 10.9 7.24844 10.9C7.85595 10.9 8.34844 11.3925 8.34844 12Z\" fill=\"currentColor\"/><path d=\"M17.8436 12C17.8436 12.6075 17.3511 13.1 16.7436 13.1C16.136 13.1 15.6436 12.6075 15.6436 12C15.6436 11.3925 16.136 10.9 16.7436 10.9C17.3511 10.9 17.8436 11.3925 17.8436 12Z\" fill=\"currentColor\"/>',\n category: \"Sports\",\n },\n IconBowling: {\n title: \"bowling\",\n svg: '<path d=\"M14.8984 8.25C14.8984 9.07843 14.2269 9.75 13.3984 9.75C12.57 9.75 11.8984 9.07843 11.8984 8.25C11.8984 7.42157 12.57 6.75 13.3984 6.75C14.2269 6.75 14.8984 7.42157 14.8984 8.25Z\" fill=\"currentColor\"/><circle cx=\"16.5\" cy=\"11.5\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"12.25\" cy=\"12.5\" r=\"1.5\" fill=\"currentColor\"/><circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Sports\",\n },\n IconKickball: {\n title: \"kickball\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M8.93573 10.0643C8.79784 10.0225 8.65154 10 8.5 10C7.67157 10 7 10.6716 7 11.5C7 11.6515 7.02247 11.7978 7.06427 11.9357C6.44835 11.7491 6 11.1769 6 10.5C6 9.67157 6.67157 9 7.5 9C8.17688 9 8.74905 9.44835 8.93573 10.0643Z\" fill=\"currentColor\"/><path d=\"M11.9357 7.06427C11.7978 7.02247 11.6515 7 11.5 7C10.6716 7 10 7.67157 10 8.5C10 8.65154 10.0225 8.79784 10.0643 8.93573C9.44835 8.74905 9 8.17688 9 7.5C9 6.67157 9.67157 6 10.5 6C11.1769 6 11.7491 6.44835 11.9357 7.06427Z\" fill=\"currentColor\"/><path d=\"M9.93573 13.0643C9.79784 13.0225 9.65154 13 9.5 13C8.67157 13 8 13.6716 8 14.5C8 14.6515 8.02247 14.7978 8.06427 14.9357C7.44835 14.7491 7 14.1769 7 13.5C7 12.6716 7.67157 12 8.5 12C9.17688 12 9.74905 12.4483 9.93573 13.0643Z\" fill=\"currentColor\"/><path d=\"M12.9357 10.0643C12.7978 10.0225 12.6515 10 12.5 10C11.6716 10 11 10.6716 11 11.5C11 11.6515 11.0225 11.7978 11.0643 11.9357C10.4483 11.7491 10 11.1769 10 10.5C10 9.67157 10.6716 9 11.5 9C12.1769 9 12.7491 9.44835 12.9357 10.0643Z\" fill=\"currentColor\"/>',\n category: \"Sports\",\n },\n IconVersusCircle: {\n title: \"versus-circle, vs\",\n svg: '<path d=\"M16.8984 10V10C16.8984 9.44772 16.4507 9 15.8984 9H14.3984C13.8462 9 13.3984 9.44772 13.3984 10V11C13.3984 11.5523 13.8462 12 14.3984 12H15.8984C16.4507 12 16.8984 12.4477 16.8984 13V14C16.8984 14.5523 16.4507 15 15.8984 15H14.3984C13.8462 15 13.3984 14.5523 13.3984 14V14\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11 9L9.5 15H8.5L7 9\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Sports\",\n },\n IconChart1: {\n title: \"chart-1, statistics, flipchart, presentation, graph 2\",\n svg: '<path d=\"M16 21.75L15.1431 18.7507M8 21.75L8.85694 18.7507M7.75 12.75V14.25M12 7.75V14.25M16.25 10.75V14.25M21.25 3.75V18.25H2.75V3.75H21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconChart2: {\n title: \"chart-2, statistics, flipchart, presentation, graph\",\n svg: '<path d=\"M3.74999 3.75H20.25M3.74999 3.75V17.25H20.25V3.75M3.74999 3.75H23H20.25M3.74999 3.75H1M14 20.25L12.3338 17.7506M9.99999 20.25L11.6662 17.7506M12 7.75V13.25M8.24999 11.75V13.25M15.75 9.75V13.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconWhiteboard1: {\n title: \"whiteboard-1, artboard\",\n svg: '<path d=\"M16 18.25H21.25V4.75H12M16 18.25L17 21.25M16 18.25H12M8 18.25H2.75V4.75H12M8 18.25L7 21.25M8 18.25H12M12 4.75V2.75M12 18.25V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconWhiteboard2: {\n title: \"whiteboard-2\",\n svg: '<path d=\"M20.25 4.75V19.25M20.25 4.75H12.0002M20.25 4.75H21.25M20.25 19.25H3.75M20.25 19.25H2.75H3.75M20.25 19.25H21.25M3.75 19.25V4.75M3.75 4.75H12.0002M3.75 4.75H2.75M12.0002 4.75V3.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconAnalytics: {\n title: \"analytics, analysis\",\n svg: '<path d=\"M3.75 12H7.75L10 16.25L14 7.75L16.25 12H20.25M3.75 3.75H20.25V20.25H3.75V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconPieChart1: {\n title: \"pie-chart-1, graph, chart, statistics\",\n svg: '<path d=\"M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C16.0275 21.25 19.4538 18.676 20.7237 15.0833M12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 13.0811 21.0645 14.1189 20.7237 15.0833M12 2.75V12L20.7237 15.0833\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconPieChart2: {\n title: \"pie-chart-2, graph, chart, statistics\",\n svg: '<path d=\"M21.25 9.25C20.7693 5.88913 18.1109 3.23074 14.75 2.75V9.25H21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.25 13C19.25 17.5563 15.5563 21.25 11 21.25C6.44365 21.25 2.75 17.5563 2.75 13C2.75 8.44365 6.44365 4.75 11 4.75C11.085 4.75 11.1697 4.75129 11.2541 4.75384V12.7502H19.2463C19.2488 12.8332 19.25 12.9164 19.25 13Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconTrending1: {\n title: \"trending-1, trends\",\n svg: '<path d=\"M2.75 13.0312L5 10L8 15L13 3.75L18 20.25L21.25 14.0625\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconTrending2: {\n title: \"trending-2, trends\",\n svg: '<path d=\"M2.75 10.9688L5 14L8 9L13 20.25L18 3.75L21.25 9.9375\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconTrending3: {\n title: \"trending-3, trends\",\n svg: '<path d=\"M15.75 6.75H21.25V12.25M20.7361 7.275L13 15L9 11L2.75 17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconTrending4: {\n title: \"trending-4, chart\",\n svg: '<path d=\"M2.75 4.75V19.25H21.25M6.75 15.25L11 11L13 13L18.754 7.246M14.75 6.75H19.25V11.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconTrending5: {\n title: \"trending-5, chart, analytics\",\n svg: '<path d=\"M19.2188 10.9688L17.1562 8.90625L12 14.0625L9.42188 11.4844L3.75 17.1562M3.75 3.75V17.1562M20.25 20.25H3.75V17.1562\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconPointChart: {\n title: \"point-chart, dots\",\n svg: '<path d=\"M3.75 3.75V20.25H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.5 14.5H9.51M10 14.5C10 14.7761 9.77614 15 9.5 15C9.22386 15 9 14.7761 9 14.5C9 14.2239 9.22386 14 9.5 14C9.77614 14 10 14.2239 10 14.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.5 8.5H11.51M12 8.5C12 8.77614 11.7761 9 11.5 9C11.2239 9 11 8.77614 11 8.5C11 8.22386 11.2239 8 11.5 8C11.7761 8 12 8.22386 12 8.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 11.5H16.51M17 11.5C17 11.7761 16.7761 12 16.5 12C16.2239 12 16 11.7761 16 11.5C16 11.2239 16.2239 11 16.5 11C16.7761 11 17 11.2239 17 11.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.5 5.5H18.51M19 5.5C19 5.77614 18.7761 6 18.5 6C18.2239 6 18 5.77614 18 5.5C18 5.22386 18.2239 5 18.5 5C18.7761 5 19 5.22386 19 5.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconTrendingCircle: {\n title: \"trending-circle\",\n svg: '<circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.5 14.5L10 12L12 14L15.5 10.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 9.75H16.25V13.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconChart3: {\n title: \"chart-3, statistics, graph, signal\",\n svg: '<path d=\"M3.75 13.5273V20.2496H7.58V13.5273H3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M10.08 9.08398V20.2507H13.91V9.08398H10.08Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M16.42 3.75V20.25H20.25V3.75H16.42Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconChart4: {\n title: \"chart-4, statistics, graph\",\n svg: '<path d=\"M9.25 20.25V14.75H3.75V20.25H9.25ZM9.25 20.25H14.75M9.25 20.25V9.25H14.75V20.25M14.75 20.25H20.25V3.75H14.75V20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconChart5: {\n title: \"chart-5, statistics, graph\",\n svg: '<path d=\"M9.25 20.25V13.75H3.75V20.25H9.25ZM9.25 20.25H14.75M9.25 20.25V3.75H14.75V20.25M14.75 20.25H20.25V8.75H14.75V20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconChart6: {\n title: \"chart-6, statistics, graph\",\n svg: '<path d=\"M9.25 20.25V14.75H3.75V20.25H9.25ZM9.25 20.25H14.75M9.25 20.25V9.25H14.75V20.25M14.75 20.25H20.25V3.75H14.75V20.25ZM1.75 20.25H22.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconChart7: {\n title: \"chart-7, statistics, graph\",\n svg: '<path d=\"M9.25 3.75L10 3.75V3H9.25V3.75ZM9.25 9.25V10L10 10V9.25H9.25ZM3.75 9.25H3H3.75ZM3.75 3.75L3.75 3H3L3 3.75H3.75ZM14.75 9.25H15.5V8.5H14.75V9.25ZM14.75 14.75V15.5H15.5V14.75H14.75ZM20.25 14.75H21V14H20.25V14.75ZM20.25 20.25V21H21V20.25H20.25ZM3.75 20.25H3V21H3.75V20.25ZM4.5 1.75C4.5 1.33579 4.16421 1 3.75 1C3.33579 1 3 1.33579 3 1.75H4.5ZM3 22.25C3 22.6642 3.33579 23 3.75 23C4.16421 23 4.5 22.6642 4.5 22.25H3ZM8.5 3.75L8.5 9.25H10L10 3.75L8.5 3.75ZM9.25 8.5L3.75 8.5L3.75 10H9.25V8.5ZM4.5 9.25L4.5 3.75H3L3 9.25H4.5ZM3.75 4.5L9.25 4.5V3L3.75 3L3.75 4.5ZM14 9.25V14.75H15.5V9.25H14ZM14.75 14H3.75V15.5H14.75V14ZM4.5 14.75V9.25H3V14.75H4.5ZM3.75 10H14.75V8.5L3.75 8.5L3.75 10ZM19.5 14.75V20.25H21V14.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V14.75H3V20.25H4.5ZM3.75 15.5L20.25 15.5V14L3.75 14L3.75 15.5ZM3 1.75V22.25H4.5V1.75H3Z\" fill=\"currentColor\"/>',\n category: \"Statistics & Charts\",\n },\n IconLineChart1: {\n title: \"line-chart-1, statistics, graph\",\n svg: '<path d=\"M9.25 10.75V16.25M14.25 4.75V16.25M19.25 12.75V16.25M3.75 3.75V20.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconLineChart2: {\n title: \"line-chart-2, statistics, graph\",\n svg: '<path d=\"M2.75 10.75V19.25M8.91602 4.75V19.25M15.082 13.75V19.25M21.248 7.75V19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconLineChart3: {\n title: \"line-chart-3, statistics, graph\",\n svg: '<path d=\"M2.75 16.75V19.25M8.91602 12.75L8.91602 19.25M15.082 8.75V19.25M21.248 4.75V19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconLineChart4: {\n title: \"line-chart-4, statistics, graph\",\n svg: '<path d=\"M21.248 16.75V19.25M15.082 12.75V19.25M8.91602 8.75V19.25M2.75 4.75V19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconLeaderboard: {\n title: \"leaderboard, winner, stats, graph\",\n svg: '<path d=\"M8.25 6.75H15.75V17.25H12H8.25V6.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M1.25 9.25H8.25V17.25H1.25V9.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M15.75 10.75H22.75V17.25H15.75V10.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Statistics & Charts\",\n },\n IconEmojiSmilingFace: {\n title: \"emoji-smiling-face, heart-eyes\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M9.3512 12.1294C11.249 10.6235 11.5267 9.18021 10.9644 8.29916C10.6914 7.87139 10.2309 7.61154 9.73854 7.59301C9.30505 7.5767 8.86465 7.74783 8.52071 8.12296C8.06921 7.88809 7.59683 7.8779 7.19507 8.0415C6.73873 8.22731 6.39488 8.62899 6.28465 9.12434C6.05761 10.1446 6.81225 11.4058 9.11063 12.1719C9.19284 12.1993 9.28332 12.1833 9.3512 12.1294Z\" fill=\"currentColor\"/><path d=\"M14.8895 12.1719C17.1878 11.4059 17.9425 10.1446 17.7154 9.12441C17.6052 8.62906 17.2613 8.22738 16.805 8.04157C16.4032 7.87798 15.9309 7.88816 15.4794 8.12303C15.1354 7.7479 14.695 7.57677 14.2615 7.59309C13.7692 7.61162 13.3087 7.87147 13.0356 8.29924C12.4734 9.18029 12.7511 10.6236 14.6489 12.1295C14.7168 12.1834 14.8073 12.1993 14.8895 12.1719Z\" fill=\"currentColor\"/><path d=\"M11.999 18C14.0206 18 15.6919 16.5003 15.9611 14.5527C16.0017 14.2591 15.7425 14.0267 15.4473 14.053C13.1381 14.2588 10.8598 14.2588 8.55062 14.053C8.25537 14.0267 7.99624 14.2591 8.03682 14.5527C8.306 16.5003 9.97734 18 11.999 18Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconEmojiSmiley: {\n title: \"emoji-smiley, face, smile\",\n svg: '<path d=\"M17.5 12C17.5 15.0376 15.0376 17.5 12 17.5C8.96243 17.5 6.5 15.0376 6.5 12M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12ZM10.25 9C10.25 9.41421 9.91421 9.75 9.5 9.75C9.08579 9.75 8.75 9.41421 8.75 9C8.75 8.58579 9.08579 8.25 9.5 8.25C9.91421 8.25 10.25 8.58579 10.25 9ZM15.25 9C15.25 9.41421 14.9142 9.75 14.5 9.75C14.0858 9.75 13.75 9.41421 13.75 9C13.75 8.58579 14.0858 8.25 14.5 8.25C14.9142 8.25 15.25 8.58579 15.25 9Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconEmojiAlt: {\n title: \"emoji-alt\",\n svg: '<path d=\"M8.5 9.25H9M13.5 9.25H14M17.4492 12.7507C17.1168 15.1864 15.1897 17.1146 12.7545 17.4487M9.25 9.25C9.25 9.52614 9.02614 9.75 8.75 9.75C8.47386 9.75 8.25 9.52614 8.25 9.25C8.25 8.97386 8.47386 8.75 8.75 8.75C9.02614 8.75 9.25 8.97386 9.25 9.25ZM14.25 9.25C14.25 9.52614 14.0261 9.75 13.75 9.75C13.4739 9.75 13.25 9.52614 13.25 9.25C13.25 8.97386 13.4739 8.75 13.75 8.75C14.0261 8.75 14.25 8.97386 14.25 9.25ZM21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconEmojiArc: {\n title: \"emoji-arc\",\n svg: '<path d=\"M8.75 15.25C11 16.6 13 16.6 15.25 15.25M9.75 7.75V11.25M14.25 7.75V11.25M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconEmojiSmile: {\n title: \"emoji-smile\",\n svg: '<path d=\"M14.8287 14.8284C13.2666 16.3905 10.734 16.3905 9.17188 14.8284\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M14.5 9.5H15M15.25 9.5C15.25 9.77614 15.0261 10 14.75 10C14.4739 10 14.25 9.77614 14.25 9.5C14.25 9.22386 14.4739 9 14.75 9C15.0261 9 15.25 9.22386 15.25 9.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M9 9.5H9.5M9.75 9.5C9.75 9.77614 9.52614 10 9.25 10C8.97386 10 8.75 9.77614 8.75 9.5C8.75 9.22386 8.97386 9 9.25 9C9.52614 9 9.75 9.22386 9.75 9.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Things\",\n },\n IconEmojiAddReaction: {\n title: \"emoji-add-reaction, reaction\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19 1.75V8.25M15.75 5H22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.8287 14.8284C13.2666 16.3905 10.734 16.3905 9.17188 14.8284\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 9.5H15M15.25 9.5C15.25 9.77614 15.0261 10 14.75 10C14.4739 10 14.25 9.77614 14.25 9.5C14.25 9.22386 14.4739 9 14.75 9C15.0261 9 15.25 9.22386 15.25 9.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 9.5H9.5M9.75 9.5C9.75 9.77614 9.52614 10 9.25 10C8.97386 10 8.75 9.77614 8.75 9.5C8.75 9.22386 8.97386 9 9.25 9C9.52614 9 9.75 9.22386 9.75 9.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconEmojiSad: {\n title: \"emoji-sad, unhappy\",\n svg: '<circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.17188 15.4216C10.734 13.8595 13.2666 13.8595 14.8287 15.4216\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 9.5H15M15.25 9.5C15.25 9.77614 15.0261 10 14.75 10C14.4739 10 14.25 9.77614 14.25 9.5C14.25 9.22386 14.4739 9 14.75 9C15.0261 9 15.25 9.22386 15.25 9.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 9.5H9.5M9.75 9.5C9.75 9.77614 9.52614 10 9.25 10C8.97386 10 8.75 9.77614 8.75 9.5C8.75 9.22386 8.97386 9 9.25 9C9.52614 9 9.75 9.22386 9.75 9.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconEmojiSleep: {\n title: \"emoji-sleep,snooze\",\n svg: '<path d=\"M9.78947 15.713C11.3216 16.2957 12.6784 16.2957 14.2105 15.713M6.75 10.25C7.5 11 9.5 11 10.25 10.25M13.75 10.25C14.5 11 16.5 11 17.25 10.25M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconAlien: {\n title: \"alien\",\n svg: '<path d=\"M8 11.4979L9.5 12.495M16 11.4979L14.5 12.4949M20.25 10.9605C20.25 17.1184 14.0625 22.25 12 22.25C9.9375 22.25 3.75 17.1184 3.75 10.9605C3.75 6.42598 7.44365 2.75 12 2.75C16.5563 2.75 20.25 6.42598 20.25 10.9605ZM7.25 10.7964C10.0742 10.7966 10.25 11.7026 10.25 13.1964C7.67245 13.1964 7.25 12.2964 7.25 10.7964ZM16.75 10.7964C13.9258 10.7965 13.75 11.7025 13.75 13.1964C16.3275 13.1964 16.75 12.2964 16.75 10.7964Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconMask: {\n title: \"mask, theatre\",\n svg: '<path d=\"M3.75 12.5V3.25C9.35992 4.40427 14.6401 4.40427 20.25 3.25V12.5C20.25 17.0563 16.5563 20.75 12 20.75C7.44365 20.75 3.75 17.0563 3.75 12.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M10.4931 10.6996C10.4929 10.6992 10.4935 10.6945 10.4958 10.6869C10.4945 10.6962 10.4934 10.7 10.4931 10.6996ZM10.7694 10.5003C10.771 10.5004 10.7718 10.5005 10.7718 10.5005L10.7694 10.5003ZM10.4773 10.3987C10.1928 10.2858 9.72785 10.1058 9.25 10.1058C8.77215 10.1058 8.30721 10.2858 8.02272 10.3987C8.13004 9.91185 8.60784 9.5 9.25 9.5C9.89216 9.5 10.37 9.91185 10.4773 10.3987ZM8.00689 10.6996C8.00663 10.7 8.00546 10.6962 8.00416 10.6869C8.0065 10.6945 8.00715 10.6992 8.00689 10.6996ZM7.72821 10.5005C7.72824 10.5005 7.72904 10.5004 7.73056 10.5003L7.72821 10.5005Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M16.5 10.6058C16.5 11.1421 16.2135 11.0298 15.7732 10.8572C15.4855 10.7444 15.132 10.6058 14.75 10.6058C14.368 10.6058 14.0145 10.7444 13.7268 10.8572C13.2865 11.0298 13 11.1421 13 10.6058C13 9.71896 13.7835 9 14.75 9C15.7165 9 16.5 9.71896 16.5 10.6058Z\" fill=\"currentColor\"/><path d=\"M15.1593 13.4157C13.0535 14.278 10.9477 14.278 8.8419 13.4157C8.39739 13.2337 7.93985 13.6717 8.2094 14.0692C10.2372 17.0602 13.764 17.0602 15.7918 14.0692C16.0614 13.6717 15.6038 13.2337 15.1593 13.4157Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconPoop: {\n title: \"poop, spam\",\n svg: '<path d=\"M9.25 9.75H7.5C5.98122 9.75 4.75 10.9812 4.75 12.5C4.75 13.2064 5.01633 13.8506 5.45405 14.3376M13.75 9.75H16.5C18.0188 9.75 19.25 10.9812 19.25 12.5C19.25 13.2308 18.965 13.895 18.5 14.3875M12.25 14.75H5.5C3.98122 14.75 2.75 15.9812 2.75 17.5C2.75 19.0188 3.98122 20.25 5.5 20.25H18.5C20.0188 20.25 21.25 19.0188 21.25 17.5C21.25 15.9812 20.0188 14.75 18.5 14.75H16.75M7.5 9.38747C7.03504 8.89496 6.75 8.23077 6.75 7.5C6.75 5.98122 7.98122 4.75 9.5 4.75H13V2.75C15.3472 2.75 17.25 4.42893 17.25 6.5C17.25 7.66147 16.6516 8.69962 15.7119 9.38747\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconToiletPaper: {\n title: \"toilet-paper, wipe\",\n svg: '<path d=\"M7 3.75H17.25C18.9069 3.75 20.25 6.43629 20.25 9.75V20.25H10.25V16.25M7 3.75C8.79493 3.75 10.25 6.54822 10.25 10M7 3.75C5.20507 3.75 3.75 6.54822 3.75 10C3.75 13.4518 5.20507 16.25 7 16.25M10.25 10V16.25M10.25 10C10.25 13.4518 8.79493 16.25 7 16.25M10.25 16.25H7M7 16.25H6.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M7.75 10C7.75 10.6904 7.41421 11.25 7 11.25C6.58579 11.25 6.25 10.6904 6.25 10C6.25 9.30964 6.58579 8.75 7 8.75C7.41421 8.75 7.75 9.30964 7.75 10Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconDoorHanger: {\n title: \"door-hanger, sign, do-not-disdurb\",\n svg: '<path d=\"M5.75 7.91489V8.93989H8.875V7.91489C8.875 6.21662 10.2741 4.83989 12 4.83989C13.7259 4.83989 15.125 6.21662 15.125 7.91489V8.03478C15.125 9.79954 13.9774 11.3663 12.276 11.9244L8.59905 13.1304C6.89763 13.6885 5.75 15.2552 5.75 17.02V22.2649H18.25V7.91489C18.25 4.51834 15.4518 1.76489 12 1.76489C8.54822 1.76489 5.75 4.51834 5.75 7.91489Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCirclesThree: {\n title: \"circles-three, bubbles\",\n svg: '<path d=\"M12.75 7.75C12.75 10.5114 10.5114 12.75 7.75 12.75C4.98858 12.75 2.75 10.5114 2.75 7.75C2.75 4.98858 4.98858 2.75 7.75 2.75C10.5114 2.75 12.75 4.98858 12.75 7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M17.5 17.75C17.5 19.683 15.933 21.25 14 21.25C12.067 21.25 10.5 19.683 10.5 17.75C10.5 15.817 12.067 14.25 14 14.25C15.933 14.25 17.5 15.817 17.5 17.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M21.25 9.25C21.25 10.7688 20.0188 12 18.5 12C16.9812 12 15.75 10.7688 15.75 9.25C15.75 7.73122 16.9812 6.5 18.5 6.5C20.0188 6.5 21.25 7.73122 21.25 9.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Things\",\n },\n IconPlayground: {\n title: \"playground, forms, shapes, geo\",\n svg: '<path d=\"M17.1073 17.1577C17.1073 18.8655 15.7213 20.25 14.0116 20.25C12.3019 20.25 10.9159 18.8655 10.9159 17.1577C10.9159 15.4499 12.3019 14.0654 14.0116 14.0654C15.7213 14.0654 17.1073 15.4499 17.1073 17.1577Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M4.99145 6.98598L10.4681 11.5764L3.75 14.0189L4.99145 6.98598Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M14.2695 3.5L20.25 5.1007L18.6475 11.0746L12.6671 9.47388L14.2695 3.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconTactics1: {\n title: \"tactics-1, game-plan,prototype,play\",\n svg: '<path d=\"M3.75 5.81251L5.8125 7.87501M5.8125 7.87501L7.875 9.93751M5.8125 7.87501L7.875 5.81251M5.8125 7.87501L3.75 9.93751M16.125 16.125L18.1875 18.1875M18.1875 18.1875L20.25 20.25M18.1875 18.1875L20.25 16.125M18.1875 18.1875L16.125 20.25M14.0625 6.84375L16.125 3.75L19.2188 5.81251M16.3828 5.29688C18.1875 9.93751 13.5469 12.5156 12 13.5469M8.90625 17.6719C8.90625 19.0957 7.75198 20.25 6.32812 20.25C4.90427 20.25 3.75 19.0957 3.75 17.6719C3.75 16.248 4.90427 15.0938 6.32812 15.0938C7.75198 15.0938 8.90625 16.248 8.90625 17.6719Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconTactics2: {\n title: \"tactics-2, game-plan,prototype,play\",\n svg: '<circle cx=\"6\" cy=\"18\" r=\"2.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.25 4.25L7.75 7.75M7.75 4.25L4.25 7.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.25 16.25L19.75 19.75M19.75 16.25L16.25 19.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 18H12V6H19\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.75 3.75L20 6L17.75 8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconSubscriptionTick1: {\n title: \"subscription-tick-1,verify\",\n svg: '<path d=\"M9.49817 12.75L10.9982 14.25L14.4982 10.75M11.9982 2.75L14.4447 5.56579L18.1288 4.98137L18.193 8.711L21.3909 10.6314L19.0427 13.5297L20.258 17.0564L16.5962 17.7673L15.2602 21.25L11.9982 19.4408L8.73612 21.25L7.40018 17.7673L3.73837 17.0564L4.95364 13.5297L2.60547 10.6314L5.80332 8.711L5.86752 4.98137L9.55163 5.56579L11.9982 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconSubscriptionTick2: {\n title: \"subscription-tick-2,verify\",\n svg: '<path d=\"M8.68005 13.093L10.9128 15.06L14.8201 9.44M8.925 4.825L12 1.75L15.075 4.825H19.175V8.925L22.25 12L19.175 15.075V19.175H15.075L12 22.25L8.925 19.175H4.825V15.075L1.75 12L4.825 8.925V4.825H8.925Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconSubscriptionStar: {\n title: \"subscription-star,verify\",\n svg: '<path d=\"M11.9983 1.75L14.5323 4.20134L18.0231 3.70758L18.6323 7.18016L21.7467 8.83258L20.1983 12L21.7467 15.1674L18.6323 16.8198L18.0231 20.2924L14.5323 19.7987L11.9983 22.25L9.46439 19.7987L5.97353 20.2924L5.36439 16.8198L2.25 15.1674L3.79833 12L2.25 8.83258L5.36439 7.18016L5.97353 3.70758L9.46439 4.20134L11.9983 1.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M11.9983 8L13.2915 10.2202L15.8026 10.7639L14.0907 12.6798L14.3495 15.2361L11.9983 14.2L9.64719 15.2361L9.906 12.6798L8.1941 10.7639L10.7052 10.2202L11.9983 8Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconSupport: {\n title: \"support\",\n svg: '<path d=\"M4.75 9.75V9.5C4.75 5.77208 7.99594 2.75 12 2.75C16.0041 2.75 19.25 5.77208 19.25 9.5V9.75M12 19.6429V21.25H15C17.4853 21.25 19.5 19.2353 19.5 16.75M4.25 9.75H5.75V16.25H4.25C3.42157 16.25 2.75 15.5784 2.75 14.75V11.25C2.75 10.4216 3.42157 9.75 4.25 9.75ZM18.25 9.75H19.75C20.5784 9.75 21.25 10.4216 21.25 11.25V14.75C21.25 15.5784 20.5784 16.25 19.75 16.25H18.25V9.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconReceiptionBell: {\n title: \"receiption-bell, concierge\",\n svg: '<path d=\"M11.9983 6.75C7.44194 6.75 3.74829 10.6172 3.74829 16.2891V17.25H20.2483V16.2891C20.2483 10.6172 16.5546 6.75 11.9983 6.75ZM11.9983 6.75V3.75M3.74609 20.25H20.2461M11.9983 17.5V20.25M9.74829 3.75H14.2483\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconRescueRing: {\n title: \"rescue-ring, swim-boyle, help, support\",\n svg: '<path d=\"M18.5 5.5L14.8659 9.13411M9.1289 14.8711L5.5 18.5M5.5 5.5L9.1289 9.1289M14.8659 14.8659L18.5 18.5M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12ZM16.25 12C16.25 14.3472 14.3472 16.25 12 16.25C9.65279 16.25 7.75 14.3472 7.75 12C7.75 9.65279 9.65279 7.75 12 7.75C14.3472 7.75 16.25 9.65279 16.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Things\",\n },\n IconParachute: {\n title: \"parachute, airdrop\",\n svg: '<rect x=\"9.75\" y=\"16.75\" width=\"4.5\" height=\"4.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M22 12.75C22 7.22715 17.5228 2.75 12 2.75C6.47715 2.75 2 7.22715 2 12.75M22 12.75C18.5666 10.3797 15.2833 9.19449 12 9.19449M22 12.75L14.6968 18.1057M2 12.75C5.4334 10.3797 8.7167 9.19449 12 9.19449M2 12.75L9.30322 18.1057M12 9.19449V16.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconScissors1: {\n title: \"scissors-1, cut\",\n svg: '<path d=\"M7 14L11.75 12.0345M11.75 12.0345L11.8333 12M11.75 12.0345V11.9655M11.75 12.0345V15.5L18.5 18.5L21.5 16L11.8333 12M11.8333 12L21.5 8L18.5 5.5L11.75 8.5V11.9655M11.8333 12L11.75 11.9655M11.75 11.9655L7 10M9.25 7C9.25 8.79493 7.79493 10.25 6 10.25C4.20507 10.25 2.75 8.79493 2.75 7C2.75 5.20507 4.20507 3.75 6 3.75C7.79493 3.75 9.25 5.20507 9.25 7ZM9.25 17C9.25 18.7949 7.79493 20.25 6 20.25C4.20507 20.25 2.75 18.7949 2.75 17C2.75 15.2051 4.20507 13.75 6 13.75C7.79493 13.75 9.25 15.2051 9.25 17Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconScissors2: {\n title: \"scissors-2, cut\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6 3C3.79086 3 2 4.79086 2 7C2 9.20914 3.79086 11 6 11C7.11278 11 8.11943 10.5456 8.84453 9.81224L11.8831 12L8.84453 14.1878C8.11943 13.4544 7.11278 13 6 13C3.79086 13 2 14.7909 2 17C2 19.2091 3.79086 21 6 21C8.20914 21 10 19.2091 10 17C10 16.444 9.88657 15.9145 9.68159 15.4334L22.5469 6.17042L22.0675 5.94277C21.409 5.63006 20.6325 5.70039 20.041 6.12633L13.1667 11.0758L9.68159 8.56657C9.88657 8.08546 10 7.55598 10 7C10 4.79086 8.20914 3 6 3ZM3.5 7C3.5 5.61929 4.61929 4.5 6 4.5C7.38071 4.5 8.5 5.61929 8.5 7C8.5 8.38071 7.38071 9.5 6 9.5C4.61929 9.5 3.5 8.38071 3.5 7ZM3.5 17C3.5 15.6193 4.61929 14.5 6 14.5C7.38071 14.5 8.5 15.6193 8.5 17C8.5 18.3807 7.38071 19.5 6 19.5C4.61929 19.5 3.5 18.3807 3.5 17Z\" fill=\"currentColor\"/><path d=\"M22.0675 18.0572C21.409 18.3699 20.6325 18.2996 20.041 17.8737L14.4502 13.8483L15.7338 12.9242L22.5469 17.8296L22.0675 18.0572Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconStocks: {\n title: \"stocks\",\n svg: '<path d=\"M14.25 12.25C15.4926 12.25 16.5 11.2426 16.5 10C16.5 8.75736 15.4926 7.75 14.25 7.75M14.25 12.25C13.565 12.25 12.9516 11.9439 12.5389 11.4611M14.25 12.25V20.25M14.25 7.75C13.0074 7.75 12 8.75736 12 10C12 10.5577 12.2029 11.068 12.5389 11.4611M14.25 7.75V3.75M12.5389 11.4611L9 15L7 13L4 16M14.25 3.75H3.75V20.25H14.25M14.25 3.75H20.25V20.25H14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconDashboardFast: {\n title: \"dashboard-fast\",\n svg: '<path d=\"M15 10L12.2599 15.2519M20 15.75H4M18.5407 5.45927C14.9284 1.84691 9.07162 1.84691 5.45927 5.45927C1.84691 9.0716 1.84691 14.9284 5.45927 18.5407C9.0716 22.1531 14.9284 22.1531 18.5407 18.5407C22.1531 14.9284 22.1531 9.07162 18.5407 5.45927Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconDashboardMiddle: {\n title: \"dashboard-middle\",\n svg: '<path d=\"M12 15.75V8.75M12 15.75H20H4H12ZM18.5407 5.45927C14.9284 1.84691 9.07162 1.84691 5.45927 5.45927C1.84691 9.0716 1.84691 14.9284 5.45927 18.5407C9.0716 22.1531 14.9284 22.1531 18.5407 18.5407C22.1531 14.9284 22.1531 9.07162 18.5407 5.45927Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconDashboardLow: {\n title: \"dashboard-low\",\n svg: '<path d=\"M9.25 10.25L12.1216 15.7538M20.2467 16H4.25M18.7907 5.70927C15.1784 2.09691 9.32162 2.09691 5.70927 5.70927C2.09691 9.3216 2.09691 15.1784 5.70927 18.7907C9.3216 22.4031 15.1784 22.4031 18.7907 18.7907C22.4031 15.1784 22.4031 9.32162 18.7907 5.70927Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconLimit: {\n title: \"limit\",\n svg: '<path d=\"M12 13L8.75 9.75M5.17886 19.248C1.84946 15.6186 1.94293 9.97559 5.45926 6.45926C9.07161 2.84691 14.9284 2.84691 18.5407 6.45926C22.0571 9.97559 22.1505 15.6186 18.8211 19.248\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconFire1: {\n title: \"fire-1, flame, hot, heat\",\n svg: '<path d=\"M19.75 13.8679C19.75 23.7053 4.25 23.7161 4.25 13.8679C4.25 6.4747 12 2.25 12 2.25C12 2.25 19.75 6.4747 19.75 13.8679Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.75 17.4618C15.75 22.51 8.25 22.5155 8.25 17.4618C8.25 13.6679 12 11.5 12 11.5C12 11.5 15.75 13.6679 15.75 17.4618Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconFire2: {\n title: \"fire-2, flame, hot, heat\",\n svg: '<path d=\"M12 21.25C16.2802 21.25 19.75 17.7046 19.75 13.3311C19.75 6.86111 12.5167 2.75 12.5167 2.75L8.9 7.88889L7.35 6.34722C5.28333 8.40278 4.25 11.2548 4.25 13.3311C4.25 17.7046 7.71979 21.25 12 21.25ZM12 21.25C13.6569 21.25 15 19.7169 15 17.8256C15 15.0278 12 13.25 12 13.25C12 13.25 9 15.0278 9 17.8256C9 19.7169 10.3431 21.25 12 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconFire3: {\n title: \"fire-3, flame, hot, heat\",\n svg: '<path d=\"M17.8186 7.96008C18.9803 9.06824 19.4816 10.4992 19.6695 11.9928C20.8623 21.3865 8.45545 24.7553 4.84302 16.7772C3.33975 13.447 4.88844 10.2793 7.31572 7.94562C8.99792 6.33156 10.6416 5.03914 11.3646 2.5C14.5716 4.58333 15.0895 8.75 15.0895 10.8333C15.0895 10.8333 17.2824 8.71744 17.8186 7.96008Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconConstructionHelmet: {\n title: \"construction-helmet, work, wip\",\n svg: '<path d=\"M9.75 14.75V3.75H14.25V14.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><rect x=\"2.75\" y=\"14.75\" width=\"18.5\" height=\"4.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.5 14.75V12.75C3.5 8.83519 6.14653 5.53852 9.74805 4.55151M20.5 14.75V12.75C20.5 8.83519 17.8535 5.53852 14.252 4.55151\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconReadingList: {\n title: \"reading-list, glasses, steve-jobs\",\n svg: '<path d=\"M0.75 9.75H2M23.25 9.75H22M14.0612 9.28239C13.4507 8.94319 12.7479 8.75 12 8.75C11.2521 8.75 10.5493 8.94319 9.93881 9.28239M10.25 12C10.25 14.3472 8.34721 16.25 6 16.25C3.65279 16.25 1.75 14.3472 1.75 12C1.75 9.65279 3.65279 7.75 6 7.75C8.34721 7.75 10.25 9.65279 10.25 12ZM22.25 12C22.25 14.3472 20.3472 16.25 18 16.25C15.6528 16.25 13.75 14.3472 13.75 12C13.75 9.65279 15.6528 7.75 18 7.75C20.3472 7.75 22.25 9.65279 22.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconSuitcase: {\n title: \"suitcase, luggage, case\",\n svg: '<path d=\"M8.75 5.75H3.75V20.25H6.75M8.75 5.75V2.75H15.25V5.75M8.75 5.75H15.25M15.25 5.75H20.25V20.25H17.25M6.75 20.25V21.25M6.75 20.25H17.25M17.25 20.25V21.25M8.75 9.75V16.25M15.25 9.75V16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconTicket: {\n title: \"ticket, admit, vip\",\n svg: '<path d=\"M15.25 7.75V8.25M15.25 11.75V12.25M15.25 15.75V16.25M2.75 4.75H21.25V9.25C18.5 10 18.5 14 21.25 14.75V19.25H2.75V14.75C5.5 14 5.5 10 2.75 9.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconFlag1: {\n title: \"flag-1, priority\",\n svg: '<path d=\"M4.75 21.25V14.75M4.75 14.75V2.75H20.25L16.25 8.75L20.25 14.75H4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconFlag2: {\n title: \"flag-2, priority\",\n svg: '<path d=\"M4.75 21.2498V15.0831M4.75 15.0831V3.77755C10.0003 1.18383 13.9997 6.37127 19.25 3.77755V15.0831C13.9997 17.6768 10.0003 12.4894 4.75 15.0831Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconPiggyBank: {\n title: \"piggy-bank, save-money\",\n svg: '<path d=\"M19.7181 14.5359C20.0626 13.7609 20.254 12.9028 20.254 12C20.254 8.54822 17.4558 5.75 14.004 5.75H10.004C9.93732 5.75 9.87088 5.75104 9.8047 5.75312C8.32457 3.97909 6.38818 3.75 5.75 3.75V7.4211C5.06066 8.06182 4.51621 8.85631 4.17124 9.75H1.75V14.25H4.17124C4.51621 15.1437 5.06066 15.9382 5.75 16.5789V20.25H10.25V18.25H13.75V20.25H18.25V16.5863C18.8686 16.0134 19.371 15.3168 19.7181 14.5359ZM19.7181 14.5359C20.085 14.9725 20.6351 15.25 21.25 15.25C22.3546 15.25 23.25 14.3546 23.25 13.25C23.25 12.777 23.0858 12.3424 22.8113 12M8 10.75H8.5M8.75 10.75C8.75 11.0261 8.52614 11.25 8.25 11.25C7.97386 11.25 7.75 11.0261 7.75 10.75C7.75 10.4739 7.97386 10.25 8.25 10.25C8.52614 10.25 8.75 10.4739 8.75 10.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconTeddyBear: {\n title: \"teddy-bear, play\",\n svg: '<path d=\"M8.75 11.75C8.05785 12.891 7.68107 14.1367 7.76046 15.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.25 11.75C15.9421 12.891 16.3189 14.1367 16.2395 15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 19.25C11.2245 19.9167 12.7755 19.9167 14.5 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 18.625C9.5 20.0747 8.32475 21.25 6.875 21.25C5.42525 21.25 4.25 20.0747 4.25 18.625C4.25 17.1753 5.42525 16 6.875 16C8.32475 16 9.5 17.1753 9.5 18.625Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.75 18.625C19.75 20.0747 18.5747 21.25 17.125 21.25C15.6753 21.25 14.5 20.0747 14.5 18.625C14.5 17.1753 15.6753 16 17.125 16C18.5747 16 19.75 17.1753 19.75 18.625Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.25 11.5L5.29667 12.3204C4.38259 12.5743 3.75 13.4065 3.75 14.3552C3.75 14.8975 3.9586 15.419 4.3326 15.8117L4.75 16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.75 11.5L18.7033 12.3204C19.6174 12.5743 20.25 13.4065 20.25 14.3552C20.25 14.8975 20.0414 15.419 19.6674 15.8117L19.25 16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 2.75C11.2137 2.75 10.468 2.90892 9.7996 3.19347C9.38606 2.91334 8.88894 2.75 8.35417 2.75C6.91593 2.75 5.75 3.93147 5.75 5.38889C5.75 6.25224 6.15914 7.01875 6.79167 7.50019C6.79178 10.1235 9.12359 12.25 12 12.25C14.8764 12.25 17.2082 10.1235 17.2083 7.50019C17.8409 7.01875 18.25 6.25224 18.25 5.38889C18.25 3.93147 17.0841 2.75 15.6458 2.75C15.1111 2.75 14.6139 2.91334 14.2004 3.19348C13.532 2.90892 12.7863 2.75 12 2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.9554 8.10982C10.5727 8.18767 10.3796 8.53558 10.5808 8.82263C10.875 9.24226 11.3626 9.75 12 9.75C12.6374 9.75 13.125 9.24226 13.4192 8.82263C13.6204 8.53558 13.4273 8.18767 13.0446 8.10982C12.3248 7.96339 11.6752 7.96339 10.9554 8.10982Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconDiamond: {\n title: \"diamond, pro, premium\",\n svg: '<path d=\"M8.5 7.75L6.25 10L8.5 12.25M1.25 10L7.39286 3.75H16.6071L22.75 10L12 20.75L1.25 10Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconDiamondShine: {\n title: \"diamond-shine, pop, polish\",\n svg: '<path d=\"M16.25 7.75H7.75L3.75 12.75L12 21.25L20.25 12.75L16.25 7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.5 12.75H19.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 2.75V4.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 4.5L19.5 5.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.5 4.5L4.5 5.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconBike: {\n title: \"bike\",\n svg: '<circle cx=\"19\" cy=\"15\" r=\"4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"5\" cy=\"15\" r=\"4.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 13L16.5 8\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.25 7.25L11.6912 12.4546C11.8884 12.6433 12 12.9044 12 13.1773V14C12 14.5522 11.5523 15 11 15H5M6.25 7.25H8.75M6.25 7.25H5.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19 15L16.1627 5.4648C16.0365 5.04074 15.6467 4.75 15.2042 4.75H13.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconMountainBike: {\n title: \"mountain-bike\",\n svg: '<path d=\"M19 15L16 4.75H13.75M6.75 6.75H9.75M10.9643 11.575L7.75 7M16.75 8.75L5 15\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"19\" cy=\"15\" r=\"4.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"5\" cy=\"15\" r=\"4.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconDeliveryBike: {\n title: \"delivery-bike\",\n svg: '<circle cx=\"19\" cy=\"16\" r=\"3.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.13672 15.2488H13.2994C13.6674 12.4281 16.0797 10.25 19.0007 10.25H19.251\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 16C9.25 17.7949 7.79493 19.25 6 19.25C4.20507 19.25 2.75 17.7949 2.75 16\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 4.75H15L17 10\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.25 15.25H1.75V8.75H10.25V15.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconRoller: {\n title: \"roller, scooter\",\n svg: '<circle cx=\"5.5\" cy=\"16.5\" r=\"2.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"18.5\" cy=\"16.5\" r=\"2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 4.75H16L18 13.5625\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 16.5H15.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconRocket: {\n title: \"rocket, startup, launch\",\n svg: '<path d=\"M6.86111 13.25H3.25L6.25 7.75H11.2292M6.86111 13.25L10.75 17.1389M6.86111 13.25L11.2292 7.75M10.75 17.1389V20.75L16.25 17.75V12.7708M10.75 17.1389L16.25 12.7708M16.25 12.7708C19.3333 9.94444 21.25 6.86111 21.25 2.75C17.1389 2.75 14.0556 4.66667 11.2292 7.75M4.80556 21.25H2.75V19.1944C2.75 18.0592 3.6703 17.1389 4.80556 17.1389C5.94081 17.1389 6.86111 18.0592 6.86111 19.1944C6.86111 20.3297 5.94081 21.25 4.80556 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconUfo: {\n title: \"ufo, beam\",\n svg: '<path d=\"M3.75 20.25L7.68216 13.902M20.25 20.25L16.3178 13.902M7.76461 7.0841C7.75494 6.97394 7.75 6.86251 7.75 6.75C7.75 4.54086 9.65279 2.75 12 2.75C14.3472 2.75 16.25 4.54086 16.25 6.75C16.25 6.86251 16.2451 6.97394 16.2354 7.0841M7.76461 7.0841C4.21698 7.67381 1.75 8.9815 1.75 10.5C1.75 12.0067 4.17881 13.3059 7.68216 13.902M7.76461 7.0841C9.05558 6.86951 10.4896 6.75 12 6.75C13.5104 6.75 14.9444 6.86951 16.2354 7.0841M16.2354 7.0841C19.783 7.67381 22.25 8.9815 22.25 10.5C22.25 12.0067 19.8212 13.3059 16.3178 13.902M7.68216 13.902L9.9375 10.2611C11.34 9.96631 12.66 9.96631 14.0625 10.2611L16.3178 13.902\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconDirectorChair: {\n title: \"director-chair, chair\",\n svg: '<path d=\"M4.75 11.75L12 16.5M4.75 11.75H2.75M4.75 11.75H19.25M4.75 11.75V2.75H19.25V11.75M12 16.5L19.25 21.25M12 16.5L19.25 11.75M12 16.5L4.75 21.25M19.25 11.75H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconLab: {\n title: \"lab\",\n svg: '<path d=\"M8.75 6.75V11C7.57396 12.4701 5.69652 14.1135 4.99696 16.0714M8.75 6.75H15.25M8.75 6.75H7.75M15.25 6.75V11C16.426 12.4701 18.3035 14.1135 19.003 16.0714M15.25 6.75H16.25M19.003 16.0714C19.1596 16.5096 19.25 16.9581 19.25 17.4162C19.25 19.5336 17.5336 21.25 15.4162 21.25H8.58376C6.46643 21.25 4.75 19.5336 4.75 17.4162C4.75 16.9581 4.84041 16.5096 4.99696 16.0714M19.003 16.0714C19.003 16.0714 16.3242 16.6356 14.5893 16.5893C12.5276 16.5343 11.4724 15.6086 9.41071 15.5536C7.67583 15.5073 4.99696 16.0714 4.99696 16.0714M10.25 4C10.25 4.13807 10.1381 4.25 10 4.25M10.25 4C10.25 3.86193 10.1381 3.75 10 3.75M10.25 4H10M10 4.25C9.86193 4.25 9.75 4.13807 9.75 4M10 4.25V4M9.75 4C9.75 3.86193 9.86193 3.75 10 3.75M9.75 4H10M10 3.75V4M10 4L9.82322 4.17678M10 4L10.1768 3.82322M10 4L9.82322 3.82322M10 4L10.1768 4.17678M10.1768 3.82322C10.2744 3.92085 10.2744 4.07915 10.1768 4.17678M10.1768 3.82322C10.0791 3.72559 9.92085 3.72559 9.82322 3.82322M10.1768 4.17678C10.0791 4.27441 9.92085 4.27441 9.82322 4.17678M9.82322 4.17678C9.72559 4.07915 9.72559 3.92085 9.82322 3.82322M14.25 2.5C14.25 2.91421 13.9142 3.25 13.5 3.25C13.0858 3.25 12.75 2.91421 12.75 2.5C12.75 2.08579 13.0858 1.75 13.5 1.75C13.9142 1.75 14.25 2.08579 14.25 2.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconTestTube: {\n title: \"test-tube\",\n svg: '<path d=\"M13.2504 3.75L14.2504 4.75M14.2504 4.75L19.2504 9.75M14.2504 4.75L3.75038 15.25C2.36967 16.6307 2.36966 18.8693 3.75038 20.25C5.13109 21.6307 7.36967 21.6307 8.75038 20.25L19.2504 9.75M19.2504 9.75L20.2504 10.75M6.73862 12.75H15.7347M20 6V5.99M19.2504 2.5C19.2504 2.91421 18.9146 3.25 18.5004 3.25C18.0862 3.25 17.7504 2.91421 17.7504 2.5C17.7504 2.08579 18.0862 1.75 18.5004 1.75C18.9146 1.75 19.2504 2.08579 19.2504 2.5ZM20.25 6C20.25 6.13807 20.1381 6.25 20 6.25C19.8619 6.25 19.75 6.13807 19.75 6C19.75 5.86193 19.8619 5.75 20 5.75C20.1381 5.75 20.25 5.86193 20.25 6Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconShovel: {\n title: \"shovel, spade, pick\",\n svg: '<path d=\"M13.8291 17.1699L6.82912 10.1699C3.32907 13.6699 1.82921 16.1699 3.32922 20.6699C7.82917 22.1699 10.3291 20.6699 13.8291 17.1699Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.5 15.5L15.5 8.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.7503 4.25L17.2503 2.75L21.2503 6.75L19.7503 8.25C18.6457 9.35457 16.8549 9.35457 15.7503 8.25C14.6457 7.14543 14.6457 5.35457 15.7503 4.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconTag: {\n title: \"tag, sale\",\n svg: '<path d=\"M8.25 7.5C8.25 7.91421 7.91421 8.25 7.5 8.25C7.08579 8.25 6.75 7.91421 6.75 7.5C6.75 7.08579 7.08579 6.75 7.5 6.75C7.91421 6.75 8.25 7.08579 8.25 7.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M2.75 12V2.75H12L21.25 12L12 21.25L2.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconLifeVest: {\n title: \"life-vest, vest\",\n svg: '<path d=\"M12 7.25V11.75M12 11.75V15.75M12 11.75H9.75M12 11.75H14.25M12 15.75V20.25M12 15.75H3.75M12 15.75H20.25M7.75 2.75C7.75 8.57667 16.25 8.57667 16.25 2.75C16.25 5.76482 16.25 9.62219 20.25 9.75V20.25H3.75V9.75C7.75 9.75 7.75 5.76482 7.75 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCrown: {\n title: \"crown, vip\",\n svg: '<path d=\"M4.3125 19.25L1.75 6.75L7.75 10.25L12 3.75L16.25 10.25L22.25 6.75L19.6875 19.25H4.3125Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconPillow: {\n title: \"pillow, sleep, snooze\",\n svg: '<path d=\"M6.49501 4.63731C6.12382 4.10107 5.50555 3.75 4.80556 3.75C3.6703 3.75 2.75 4.67341 2.75 5.8125C2.75 6.48112 3.06709 7.07543 3.55861 7.4523C3.16102 8.79055 2.75 10.5296 2.75 12C2.75 13.4704 3.16102 15.2094 3.55861 16.5477C3.06709 16.9246 2.75 17.5189 2.75 18.1875C2.75 19.3266 3.6703 20.25 4.80556 20.25C5.50311 20.25 6.11951 19.9014 6.49113 19.3683C8.05487 19.7875 10.1902 20.25 12 20.25C13.8098 20.25 15.9452 19.7875 17.5089 19.3683C17.8805 19.9014 18.4969 20.25 19.1945 20.25C20.3297 20.25 21.25 19.3266 21.25 18.1875C21.25 17.5189 20.9329 16.9245 20.4414 16.5477C20.839 15.2094 21.25 13.4704 21.25 12C21.25 10.5296 20.839 8.79056 20.4414 7.4523C20.9329 7.07543 21.25 6.48112 21.25 5.8125C21.25 4.67341 20.3297 3.75 19.1944 3.75C18.4945 3.75 17.8762 4.10107 17.505 4.63731C15.9276 4.21663 13.7773 3.75 12 3.75C10.2227 3.75 8.07242 4.21663 6.49501 4.63731Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconPillowZz: {\n title: \"pillow-zz, sleep, snooze\",\n svg: '<path d=\"M9.75 9.25H14.25L9.75 14.75H14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.49501 4.63731C6.12382 4.10107 5.50555 3.75 4.80556 3.75C3.6703 3.75 2.75 4.67341 2.75 5.8125C2.75 6.48112 3.06709 7.07543 3.55861 7.4523C3.16102 8.79055 2.75 10.5296 2.75 12C2.75 13.4704 3.16102 15.2094 3.55861 16.5477C3.06709 16.9246 2.75 17.5189 2.75 18.1875C2.75 19.3266 3.6703 20.25 4.80556 20.25C5.50311 20.25 6.11951 19.9014 6.49113 19.3683C8.05487 19.7875 10.1902 20.25 12 20.25C13.8098 20.25 15.9452 19.7875 17.5089 19.3683C17.8805 19.9014 18.4969 20.25 19.1945 20.25C20.3297 20.25 21.25 19.3266 21.25 18.1875C21.25 17.5189 20.9329 16.9245 20.4414 16.5477C20.839 15.2094 21.25 13.4704 21.25 12C21.25 10.5296 20.839 8.79056 20.4414 7.4523C20.9329 7.07543 21.25 6.48112 21.25 5.8125C21.25 4.67341 20.3297 3.75 19.1944 3.75C18.4945 3.75 17.8762 4.10107 17.505 4.63731C15.9276 4.21663 13.7773 3.75 12 3.75C10.2227 3.75 8.07242 4.21663 6.49501 4.63731Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCap: {\n title: \"cap, fan\",\n svg: '<path d=\"M2.75 12.75V18.1792C2.75 18.911 3.51244 19.3966 4.19257 19.1265C9.4439 17.0416 14.5561 17.0416 19.8074 19.1265C20.4876 19.3966 21.25 18.911 21.25 18.1792V12.75C21.25 7.77944 17.2206 3.75 12.25 3.75H11.75C6.77944 3.75 2.75 7.77944 2.75 12.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3 14.837C9.23113 12.0543 14.7689 12.0543 21 14.837\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.3984 4.09717C13.593 5.65113 15.3984 9.21418 15.3984 12.8472\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.6016 4.09717C10.407 5.65113 8.60156 9.21418 8.60156 12.8472\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconWip: {\n title: \"wip, work, barrier\",\n svg: '<path d=\"M2.75 4.75H21.25V13.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.74996 13.25V21.25M6.74996 21.25H5.25M6.74996 21.25H8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.25 13.25V21.25M17.25 21.25H15.75M17.25 21.25H18.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 4.5V2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.25 4.5V2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.5 13L8.5 5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.5 13L18.5 5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.5 13L13.5 5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconStamps: {\n title: \"stamps, collection\",\n svg: '<path d=\"M4.95781 15.1331C4.94806 15.6477 4.74682 16.1594 4.35409 16.5522L3.75 17.1562V20.25H6.84375L7.44784 19.6459C8.2533 18.8405 9.5592 18.8405 10.3647 19.6459L10.9688 20.25H13.0312L13.6353 19.6459C14.4408 18.8405 15.7467 18.8405 16.5522 19.6459L17.1562 20.25H20.25V17.1562L19.6459 16.5522C19.2988 16.2051 19.1013 15.7651 19.0534 15.3122M4.95781 15.1331C4.96806 14.5922 4.76682 14.0481 4.35409 13.6353L3.75 13.0312V10.9688L4.35409 10.3647C5.15955 9.5592 5.15955 8.2533 4.35409 7.44784L3.75 6.84375V3.75H6.84375L7.44784 4.35409C8.2533 5.15955 9.5592 5.15955 10.3647 4.35409L10.9688 3.75H13.0312L13.6353 4.35409C14.4408 5.15955 15.7467 5.15955 16.5522 4.35409L17.1562 3.75H20.25V6.84375L19.6459 7.44784C18.8405 8.2533 18.8405 9.5592 19.6459 10.3647L20.25 10.9688V13.0312L19.6459 13.6353C19.1875 14.0937 18.99 14.7142 19.0534 15.3122M4.95781 15.1331C6.09064 14.3069 7.08435 13.8595 7.99155 13.6659M19.0534 15.3122C17.4529 15.762 16.1301 15.6481 14.9368 15.3221M7.99155 13.6659C7.83511 13.223 7.75 12.7464 7.75 12.25C7.75 9.90279 9.65279 8 12 8C14.3472 8 16.25 9.90279 16.25 12.25C16.25 13.458 15.746 14.5483 14.9368 15.3221M7.99155 13.6659C10.6055 13.1079 12.5012 14.6567 14.9368 15.3221\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconInfinity: {\n title: \"infinity, loop, boomerang\",\n svg: '<path d=\"M12 12L15.295 15.3588C17.1149 17.2137 20.0653 17.2137 21.8851 15.3588C23.7049 13.5038 23.7049 10.4962 21.8851 8.64124C20.0653 6.78625 17.1149 6.78625 15.295 8.64124L12 12ZM12 12L8.70495 8.64124C6.88515 6.78625 3.93466 6.78625 2.11485 8.64124C0.295049 10.4962 0.295049 13.5038 2.11485 15.3588C3.93466 17.2137 6.88515 17.2137 8.70495 15.3588L12 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/>',\n category: \"Things\",\n },\n IconBlackHole: {\n title: \"black-hole, galaxy, delete-forever, hide\",\n svg: '<path d=\"M20.75 12C20.75 16.8325 16.8325 20.75 12 20.75C9.54169 20.75 7.32017 19.7362 5.73068 18.1039L3.25 20.75V12C3.25 7.16751 7.16751 3.25 12 3.25C14.3713 3.25 16.5223 4.19327 18.0982 5.72505L20.75 3.25V12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconSpace: {\n title: \"space, star\",\n svg: '<path d=\"M9.28771 8.53447L10.6304 7.86314C10.7311 7.81278 10.8128 7.7311 10.8631 7.63038L11.5345 6.28771C11.7263 5.9041 12.2737 5.9041 12.4655 6.28771L13.1369 7.63037C13.1872 7.7311 13.2689 7.81278 13.3696 7.86314L14.7123 8.53447C15.0959 8.72628 15.0959 9.27372 14.7123 9.46553L13.3696 10.1369C13.2689 10.1872 13.1872 10.2689 13.1369 10.3696L12.4655 11.7123C12.2737 12.0959 11.7263 12.0959 11.5345 11.7123L10.8631 10.3696C10.8128 10.2689 10.7311 10.1872 10.6304 10.1369L9.28771 9.46553C8.9041 9.27372 8.9041 8.72628 9.28771 8.53447Z\" fill=\"currentColor\"/><path d=\"M5.18084 18.25C6.8718 16.406 9.30089 15.25 12 15.25C14.6991 15.25 17.1282 16.406 18.8192 18.25M5.18084 18.25C6.8718 20.094 9.30089 21.25 12 21.25C14.6991 21.25 17.1282 20.094 18.8192 18.25M5.18084 18.25C3.67129 16.6039 2.75 14.4095 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 14.4095 20.3287 16.6039 18.8192 18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Things\",\n },\n IconSticker: {\n title: \"sticker, badge\",\n svg: '<path d=\"M12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 11.6526 21.2308 11.3097 21.1935 10.9722L13.0278 2.80645C12.6903 2.76915 12.3474 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M13.0416 3C12.4995 7.5 16.4993 11.5 20.9995 10.9578\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M14 5.5L18.5 10\" stroke=\"currentColor\" stroke-width=\"2\" strokeLinecap=\"square\"/>',\n category: \"Things\",\n },\n IconBomb: {\n title: \"bomb, boom\",\n svg: '<path d=\"M15.5 8.5L17.5 6.5M16.75 1.75V3.25M20.75 7.25H22.25M20 4L21.25 2.75M17.25 14C17.25 18.0041 14.0041 21.25 10 21.25C5.99594 21.25 2.75 18.0041 2.75 14C2.75 9.99594 5.99594 6.75 10 6.75C14.0041 6.75 17.25 9.99594 17.25 14Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconTrophy: {\n title: \"trophy, win, champion\",\n svg: '<path d=\"M12.0039 18V15M18.25 4.75H21.25V7.25C21.25 8.90685 19.9069 10.25 18.25 10.25M5.75 4.75H2.75V7.25C2.75 8.90685 4.09315 10.25 5.75 10.25M5.75 2.75H18.25V9.25C18.25 12.5637 15.5637 15.25 12.25 15.25H11.75C8.43629 15.25 5.75 12.5637 5.75 9.25V2.75ZM6.75 17.75H17.25V21.25H6.75V17.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconMedal: {\n title: \"medal, trophy, badge, winner, win\",\n svg: '<path d=\"M7.75 15.25V22.25L12 20.25L16.25 22.25V15.25M19.25 9C19.25 13.0041 16.0041 16.25 12 16.25C7.99594 16.25 4.75 13.0041 4.75 9C4.75 4.99594 7.99594 1.75 12 1.75C16.0041 1.75 19.25 4.99594 19.25 9Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCelebrate: {\n title: \"celebrate, party, confetti\",\n svg: '<path d=\"M14.05 1.75C14.05 1.75 14.2329 2.81812 14.05 3.80405C13.8531 4.86594 13.0214 5.85811 13.0214 5.85811M15.5929 8.42568L16.6214 7.39865M18.4729 4.57432L18.9357 3.29054M20.2214 7.91216L21.25 7.39865M18.1643 10.9932C18.1643 10.9932 18.942 11.0261 19.7071 11.2705C20.3968 11.4909 21.25 12.0203 21.25 12.0203M3.25 20.75L18.1625 16.1284L7.8768 5.85811L3.25 20.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconExplosion: {\n title: \"explosion, boom, bang, pop\",\n svg: '<path d=\"M12 2.75L14.1239 6.87247L18.5407 5.45926L17.1275 9.87611L21.25 12L17.1275 14.1239L20.2763 20.2763L14.1239 17.1275L12 21.25L9.87611 17.1275L5.45926 18.5407L6.87247 14.1239L2.75 12L6.87247 9.87611L3.72368 3.72368L9.87611 6.87247L12 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconGalaxy: {\n title: \"galaxy, dark-hole\",\n svg: '<path d=\"M1.5 10.897C4.0625 3.50607 17.9 4.64303 17.9 10.7053C17.9 14.1426 11.6307 14.8456 10.4152 13.0808C9.5147 11.7733 13.9522 11.8856 13.0848 10.6262C11.8693 8.86138 5.6 9.56426 5.6 13.0015C5.6 19.3451 20.4625 20.5624 22 13.1713\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconMakeItPop: {\n title: \"make-it-pop, design\",\n svg: '<path d=\"M14.6649 1.90103C14.7724 1.72392 15.0364 1.74701 15.1115 1.94011L15.4823 2.89267C15.5121 2.96935 15.5778 3.02643 15.6579 3.04531L16.6528 3.2799C16.8545 3.32746 16.9141 3.58563 16.7537 3.71678L15.9623 4.36376C15.8986 4.41584 15.8646 4.49593 15.8714 4.57793L15.9557 5.59663C15.9728 5.80313 15.7457 5.93959 15.5714 5.82755L14.7115 5.27485C14.6423 5.23036 14.5556 5.22277 14.4797 5.25457L13.537 5.64956C13.3458 5.72963 13.1459 5.5558 13.1986 5.35541L13.4585 4.36684C13.4794 4.28726 13.4599 4.20248 13.4062 4.14013L12.7392 3.36556C12.604 3.20854 12.7075 2.96464 12.9144 2.95283L13.9349 2.89457C14.017 2.88988 14.0916 2.84507 14.1343 2.77473L14.6649 1.90103Z\" fill=\"currentColor\"/><path d=\"M8.30826 18.0043C8.38342 17.8112 8.64737 17.7881 8.75492 17.9652L9.28547 18.839C9.32818 18.9093 9.40276 18.9541 9.48491 18.9588L10.5054 19.0171C10.7123 19.0289 10.8158 19.2728 10.6806 19.4298L10.0136 20.2043C9.95992 20.2667 9.94035 20.3515 9.96128 20.4311L10.2212 21.4196C10.2739 21.62 10.0739 21.7939 9.88283 21.7138L8.94006 21.3188C8.86417 21.287 8.77749 21.2946 8.70827 21.3391L7.84841 21.8918C7.67411 22.0038 7.44699 21.8673 7.46409 21.6608L7.54842 20.6422C7.5552 20.5602 7.52121 20.4801 7.4575 20.428L6.66614 19.781C6.50572 19.6498 6.56532 19.3917 6.767 19.3441L7.76189 19.1095C7.84198 19.0906 7.90764 19.0336 7.93749 18.9569L8.30826 18.0043Z\" fill=\"currentColor\"/><path d=\"M9.75151 4.87516C9.75151 5.63455 9.13591 6.25016 8.37651 6.25016C7.61712 6.25016 7.00151 5.63455 7.00151 4.87516C7.00151 4.11577 7.61712 3.50016 8.37651 3.50016C9.13591 3.50016 9.75151 4.11577 9.75151 4.87516Z\" fill=\"currentColor\"/><path d=\"M16.0015 19.3752C16.0015 20.1346 15.3859 20.7502 14.6265 20.7502C13.8671 20.7502 13.2515 20.1346 13.2515 19.3752C13.2515 18.6158 13.8671 18.0002 14.6265 18.0002C15.3859 18.0002 16.0015 18.6158 16.0015 19.3752Z\" fill=\"currentColor\"/><path d=\"M16.2136 15.2766L16.8244 8.29541L19.8675 8.56165C21.1527 8.67409 22.1034 9.80711 21.991 11.0923C21.8785 12.3775 20.7455 13.3282 19.4603 13.2158L17.0139 13.0018M3.21691 15.8653L2 8.96385L5.00831 8.4334C6.27883 8.20937 7.4904 9.05772 7.71443 10.3282C7.93845 11.5988 7.0901 12.8103 5.81959 13.0344L3.40114 13.4608M15.4767 11.9395C15.4767 13.8747 13.9079 15.4435 11.9728 15.4435C10.0376 15.4435 8.46882 13.8747 8.46882 11.9395C8.46882 10.0043 10.0376 8.43556 11.9728 8.43556C13.9079 8.43556 15.4767 10.0043 15.4767 11.9395Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconNailedIt: {\n title: \"nailed-it\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.71967 14.7197C4.01256 14.4268 4.48744 14.4268 4.78033 14.7197L5.78033 15.7197C6.07322 16.0126 6.07322 16.4874 5.78033 16.7803C5.48744 17.0732 5.01256 17.0732 4.71967 16.7803L3.71967 15.7803C3.42678 15.4874 3.42678 15.0126 3.71967 14.7197Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.2803 14.7197C20.5732 15.0126 20.5732 15.4874 20.2803 15.7803L19.2803 16.7803C18.9874 17.0732 18.5126 17.0732 18.2197 16.7803C17.9268 16.4874 17.9268 16.0126 18.2197 15.7197L19.2197 14.7197C19.5126 14.4268 19.9874 14.4268 20.2803 14.7197Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.71967 18.7197C6.01256 18.4268 6.48744 18.4268 6.78033 18.7197L7.78033 19.7197C8.07322 20.0126 8.07322 20.4874 7.78033 20.7803C7.48744 21.0732 7.01256 21.0732 6.71967 20.7803L5.71967 19.7803C5.42678 19.4874 5.42678 19.0126 5.71967 18.7197Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.2803 18.7197C18.5732 19.0126 18.5732 19.4874 18.2803 19.7803L17.2803 20.7803C16.9874 21.0732 16.5126 21.0732 16.2197 20.7803C15.9268 20.4874 15.9268 20.0126 16.2197 19.7197L17.2197 18.7197C17.5126 18.4268 17.9874 18.4268 18.2803 18.7197Z\" fill=\"currentColor\"/><path d=\"M7.75219 2.75H16.2522M7.75219 2.75H8.25219C9.35676 2.75 10.2522 3.64543 10.2522 4.75V18.5L12.0022 21.25L13.7522 18.5V4.75C13.7522 3.64543 14.6476 2.75 15.7522 2.75H16.2522M7.75219 2.75H7.74219M16.2522 2.75H16.2622\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconPushTheButton: {\n title: \"push-the-button, hot, alarm\",\n svg: '<path d=\"M19.25 6.82079C19.25 7.96446 15.9626 8.89159 12 8.89159C8.03736 8.89159 4.75 7.96446 4.75 6.82079M19.25 6.82079C19.25 5.67713 15.9626 4.75 12 4.75C8.03736 4.75 4.75 5.67713 4.75 6.82079M19.25 6.82079V14.0686C19.25 15.2122 15.9626 16.1394 12 16.1394C8.03736 16.1394 4.75 15.2122 4.75 14.0686V6.82079M4.75 14.1791C2.85235 14.716 1.75 15.4642 1.75 16.2917C1.75 17.9255 6.33908 19.25 12 19.25C17.6609 19.25 22.25 17.9255 22.25 16.2917C22.25 15.4642 21.1476 14.716 19.25 14.1791\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/>',\n category: \"Things\",\n },\n IconGraduateCap: {\n title: \"graduate-cap, study, education, academic, student\",\n svg: '<path d=\"M23.25 9L12 14.25L0.75 9L12 3.75L23.25 9ZM23.25 9V15.25M4.75002 10.9688V16.6406L12 20.25L19.25 16.6406V10.9688\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconBalloon: {\n title: \"balloon, birthday\",\n svg: '<path d=\"M10.4531 19.175L9.5 22.25H14.5L13.5469 19.175M11.2471 5.80312C11.4915 5.76793 11.7431 5.75 12 5.75L11.2471 5.80312ZM11.2471 5.80312C9.40488 6.06838 7.97398 7.31441 7.77396 9.25222M20.25 9.46679C20.25 15.5875 15.0938 19.175 12 19.175C8.90625 19.175 3.75 15.5875 3.75 9.46679C3.75 4.655 7.44365 1.75 12 1.75C16.5563 1.75 20.25 4.655 20.25 9.46679Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconPuzzle: {\n title: \"puzzle, plugin\",\n svg: '<path d=\"M3.75 4.75H9.25V4.5C9.25 2.98122 10.4812 1.75 12 1.75C13.5188 1.75 14.75 2.98122 14.75 4.5V4.75H20.25V9.25H20C18.4812 9.25 17.25 10.4812 17.25 12C17.25 13.5188 18.4812 14.75 20 14.75H20.25V19.25H3.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconPlugin1: {\n title: \"plugin-1, power, adapter\",\n svg: '<path d=\"M8.75 6.25H4.75V14.25C4.75 16.4591 6.54086 18.25 8.75 18.25H12M8.75 6.25V2.75M8.75 6.25H15.25M15.25 6.25H19.25V14.25C19.25 16.4591 17.4591 18.25 15.25 18.25H12M15.25 6.25V2.75M12 18.25V21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconPlugin2: {\n title: \"plugin-2, build\",\n svg: '<path d=\"M2.75 7.75H21.25V19.25H2.75V7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75 7.5V3.75H10.25V7.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 7.5V3.75H19.25V7.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconLiveActivity: {\n title: \"live-activity, fitness\",\n svg: '<path d=\"M7.88889 3.71163C4.84313 5.22524 2.75 8.36824 2.75 12.0001C2.75 17.1088 6.89137 21.2501 12 21.2501C17.1086 21.2501 21.25 17.1088 21.25 12.0001C21.25 7.14269 17.5059 3.15974 12.7462 2.77979M6.86111 9.6419C6.53119 10.3597 6.34722 11.1584 6.34722 12.0001C6.34722 15.1221 8.87806 17.6529 12 17.6529C15.1219 17.6529 17.6528 15.1221 17.6528 12.0001C17.6528 9.13114 15.5155 6.76136 12.7462 6.39616M9.94444 12.0001C9.94444 13.1354 10.8647 14.0557 12 14.0557C13.1353 14.0557 14.0556 13.1354 14.0556 12.0001C14.0556 11.1281 13.5125 10.3829 12.7462 10.0842\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconStage: {\n title: \"stage, show\",\n svg: '<path d=\"M3 18L6.25 14.75H17.7453L21 18M2.75 4.75H21.25V19.25H2.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconOrganisation: {\n title: \"organisation, organimgram\",\n svg: '<path d=\"M12 12V15M9.5 17.5H7M14.5 17.5H17M16.75 7.5C16.75 10.1234 14.6234 12.25 12 12.25C9.37665 12.25 7.25 10.1234 7.25 7.5C7.25 4.87665 9.37665 2.75 12 2.75C14.6234 2.75 16.75 4.87665 16.75 7.5ZM7.25 17.5C7.25 19.0188 6.01878 20.25 4.5 20.25C2.98122 20.25 1.75 19.0188 1.75 17.5C1.75 15.9812 2.98122 14.75 4.5 14.75C6.01878 14.75 7.25 15.9812 7.25 17.5ZM14.75 17.5C14.75 19.0188 13.5188 20.25 12 20.25C10.4812 20.25 9.25 19.0188 9.25 17.5C9.25 15.9812 10.4812 14.75 12 14.75C13.5188 14.75 14.75 15.9812 14.75 17.5ZM22.25 17.5C22.25 19.0188 21.0188 20.25 19.5 20.25C17.9812 20.25 16.75 19.0188 16.75 17.5C16.75 15.9812 17.9812 14.75 19.5 14.75C21.0188 14.75 22.25 15.9812 22.25 17.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Things\",\n },\n IconCopyright: {\n title: \"copyright\",\n svg: '<path d=\"M14.907 14.907C13.3015 16.5125 10.6985 16.5125 9.093 14.907C7.48751 13.3015 7.48751 10.6985 9.093 9.09301C10.6985 7.48752 13.3015 7.48752 14.907 9.09301M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconThread: {\n title: \"thread\",\n svg: '<path d=\"M5.75 3.75V8.4079M5.75 3.75H4.75M5.75 3.75H10.9375M5.75 8.4079V13.5395M5.75 8.4079L18.25 10.4605M5.75 13.5395V20.25M5.75 13.5395L18.25 15.5921M5.75 20.25H4.75M5.75 20.25H10.9375M18.25 10.4605V3.75M18.25 10.4605V15.5921M18.25 3.75H19.25M18.25 3.75H13M18.25 15.5921V20.25M18.25 15.5921L21.25 16.1M18.25 20.25H19.25M18.25 20.25H13M10.9375 3.75V3.27632C10.9375 2.7095 11.3992 2.25 11.9688 2.25C12.5383 2.25 13 2.7095 13 3.27632V3.75M10.9375 3.75H13M10.9375 20.25V20.75C10.9375 21.3023 11.3852 21.75 11.9375 21.75H12C12.5523 21.75 13 21.3023 13 20.75V20.25M10.9375 20.25H13\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconBaymax: {\n title: \"baymax, bot, help\",\n svg: '<path d=\"M22.25 12.5156C22.25 17.072 17.6609 20.25 12 20.25C6.33908 20.25 1.75 17.072 1.75 12.5156C1.75 7.95928 6.33908 3.75 12 3.75C17.6609 3.75 22.25 7.95928 22.25 12.5156Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M6 11.5C6 10.3954 6.89543 9.5 8 9.5C8.78703 9.5 9.46788 9.95459 9.7943 10.6155C11.2772 10.3977 12.7228 10.3977 14.2057 10.6155C14.5321 9.95459 15.213 9.5 16 9.5C17.1046 9.5 18 10.3954 18 11.5C18 12.6046 17.1046 13.5 16 13.5C15.016 13.5 14.1979 12.7893 14.0311 11.8533C12.664 11.6518 11.336 11.6518 9.9689 11.8533C9.80206 12.7894 8.98402 13.5 8 13.5C6.89543 13.5 6 12.6046 6 11.5Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconUnicorn: {\n title: \"unicorn, startup, success\",\n svg: '<path d=\"M10.4861 10.9907L10.2654 11.8815C10.0762 12.6451 10.164 13.4518 10.5128 14.1558C10.8291 14.7939 11.3419 15.3114 11.9743 15.6304L16.64 17.9843C16.9863 18.159 17.3683 18.25 17.7555 18.25C19.1332 18.25 20.25 17.1231 20.25 15.7331V14.9723C20.25 14.4019 20.1025 13.8414 19.822 13.3461L16.1389 6.84259V4.25L13.0556 5.80556C5.86111 2.17593 1.75 12.0278 1.75 18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.25 20.2498C13.072 18.1505 12.4312 16.6435 12 15.8398\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22.2237 4.07192C22.7052 3.79493 23.2271 4.36584 22.8919 4.80289L18.4982 9.74902C18.3002 10.0072 17.9077 10.017 17.6964 9.76912L16.3647 8.00008C16.1627 7.76306 16.2263 7.40546 16.4982 7.24902L22.2237 4.07192Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconPets: {\n title: \"pets, paw, animal\",\n svg: '<path d=\"M14.0833 20.2448C13.0417 19.2953 10.9583 19.2953 10.0531 20.2448C9.09442 21.0729 7.94773 21.7552 6.77732 20.7442C3.43786 17.8596 9.05701 10.75 12 10.75C14.943 10.75 20.5621 17.8596 17.2227 20.7442C16.0523 21.7552 15.042 21.0729 14.0833 20.2448Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M10.7465 5.57309C10.8068 7.09133 10.0737 8.28938 9.10914 8.24901C8.14455 8.20864 7.31374 6.94514 7.25347 5.42691C7.19319 3.90867 7.92628 2.71062 8.89086 2.75099C9.85545 2.79136 10.6863 4.05486 10.7465 5.57309Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M13.2535 5.57309C13.1932 7.09133 13.9263 8.28938 14.8909 8.24901C15.8554 8.20864 16.6863 6.94514 16.7465 5.42691C16.8068 3.90867 16.0737 2.71062 15.1091 2.75099C14.1446 2.79136 13.3137 4.05486 13.2535 5.57309Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M6.1747 8.99423C6.45428 10.3676 5.93113 11.5954 5.00622 11.7367C4.08131 11.8779 3.10488 10.8791 2.8253 9.50577C2.54572 8.13242 3.06887 6.90458 3.99378 6.76332C4.91869 6.62205 5.89512 7.62087 6.1747 8.99423Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M21.1747 9.50577C20.8951 10.8791 19.9187 11.8779 18.9938 11.7367C18.0689 11.5954 17.5457 10.3676 17.8253 8.99423C18.1049 7.62087 19.0813 6.62205 20.0062 6.76332C20.9311 6.90458 21.4543 8.13242 21.1747 9.50577Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Things\",\n },\n IconPokeball: {\n title: \"pokeball, catch\",\n svg: '<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12M21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12M21.25 12H15.0833M2.75 12H8.91667M15.0833 12C15.0833 13.7029 13.7029 15.0833 12 15.0833C10.2971 15.0833 8.91667 13.7029 8.91667 12M15.0833 12C15.0833 10.2971 13.7029 8.91667 12 8.91667C10.2971 8.91667 8.91667 10.2971 8.91667 12\" stroke=\"currentColor\" strokeWidth=\"1.5\"/>',\n category: \"Things\",\n },\n IconBroom: {\n title: \"broom, brush, clear, clean\",\n svg: '<path d=\"M12.99 9.00512L15.8952 3.92207C16.5259 2.81843 17.9329 2.42534 19.0496 3.04074C20.1747 3.66076 20.5812 5.07016 19.9575 6.18872L17.0928 11.3267M8.92867 11.8188C7.2347 13.8088 5.31367 14.4095 2.75 13.8663C3.77941 20.6898 15.6222 25.1279 16.652 16.4258M18.1482 16.5904L7.89057 10.9377C8.47327 9.89261 9.05598 8.84754 9.63858 7.80242L19.8931 13.4568C19.3131 14.5023 18.7304 15.5462 18.1482 16.5904Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconBooks: {\n title: \"books, library\",\n svg: '<path d=\"M6.75 20.25V5.75H2.75V20.25H6.75ZM6.75 20.25H13.25V3.75H6.75V20.25ZM6.75 7.875H13.25M6.75 16.125H13.25M14 7.25L18.3467 6.08531L21.8407 19.1253L17.4941 20.29L14 7.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconPilone: {\n title: \"pilone, maintenance\",\n svg: '<path d=\"M2.75 20.25H21.25M16 9.75H8M6.75 14.25H17.25M4.82143 20L9.75 2.75H14.25L19.1786 20\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconParasol: {\n title: \"parasol,umbrella,vacation\",\n svg: '<g clip-path=\"url(#clip0_9082_25702)\"><path d=\"M16.624 20.0107L11.6136 11.3324M7.37402 3.98926C2.94981 6.54357 1.43396 12.2008 3.98828 16.625C5.25455 14.7071 7.03472 13.6794 8.88373 13.7986M7.37402 3.98926C11.7982 1.43494 17.4554 2.95079 20.0098 7.37499C17.7157 7.51266 15.9355 8.54047 15.1143 10.2014M7.37402 3.98926C5.65349 4.9826 6.32941 9.3744 8.88373 13.7986M7.37402 3.98926C9.09454 2.99591 12.56 5.77717 15.1143 10.2014M8.88373 13.7986C9.73939 12.7112 10.6123 11.9106 11.6136 11.3324M15.1143 10.2014C13.7448 10.3987 12.6149 10.7543 11.6136 11.3324\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></g><defs><clipPath id=\"clip0_9082_25702\"><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs>',\n category: \"Things\",\n },\n IconBag: {\n title: \"bag, luggage, buggage \",\n svg: '<path d=\"M21 12.75H12M12 12.75H3M12 12.75L12.0022 15.25M8.0022 7.75V3.75H16.0022V7.75M21.25 20.25H2.75V7.75H21.25V20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconBag2: {\n title: \"bag-2, luggage, buggage \",\n svg: '<path d=\"M21.25 20.25V21C21.6642 21 22 20.6642 22 20.25H21.25ZM2.75 20.25H2C2 20.6642 2.33579 21 2.75 21V20.25ZM2.75 7.75V7C2.33579 7 2 7.33579 2 7.75H2.75ZM21.25 7.75H22C22 7.33579 21.6642 7 21.25 7V7.75ZM16.75 7.25V6.5H15.25V7.25H16.75ZM15.25 20.25V21H16.75V20.25H15.25ZM8.75 7.25V6.5H7.25V7.25H8.75ZM7.25 20.25V21H8.75V20.25H7.25ZM7.2522 7.75C7.2522 8.16421 7.58798 8.5 8.0022 8.5C8.41641 8.5 8.7522 8.16421 8.7522 7.75H7.2522ZM8.0022 3.75V3C7.58798 3 7.2522 3.33579 7.2522 3.75H8.0022ZM16.0022 3.75H16.7522C16.7522 3.33579 16.4164 3 16.0022 3V3.75ZM15.2522 7.75C15.2522 8.16421 15.588 8.5 16.0022 8.5C16.4164 8.5 16.7522 8.16421 16.7522 7.75H15.2522ZM21.25 19.5H2.75V21H21.25V19.5ZM2.75 8.5H21.25V7H2.75V8.5ZM20.5 7.75V20.25H22V7.75H20.5ZM3.5 20.25V7.75H2V20.25H3.5ZM15.25 7.25V20.25H16.75V7.25H15.25ZM7.25 7.25V20.25H8.75V7.25H7.25ZM8.7522 7.75V3.75H7.2522V7.75H8.7522ZM8.0022 4.5H16.0022V3H8.0022V4.5ZM15.2522 3.75V7.75H16.7522V3.75H15.2522Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconSuitcaseWork: {\n title: \"suitcase-work,workspace\",\n svg: '<path d=\"M7.75 6.75H2.75V20.25H21.25V6.75H16.25M7.75 6.75V2.75H16.25V6.75M7.75 6.75H16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconSuitcaseSticker: {\n title: \"suitcase-sticker, vacation, travel\",\n svg: '<path d=\"M7.75 6.75H2.75V20.25H21.25V6.75H16.25M7.75 6.75V2.75H16.25V6.75M7.75 6.75H16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.4996 16.9999C16.7398 16.9999 17.7691 16.0968 17.9658 14.9124C18.0092 14.6508 17.8943 14.3945 17.7067 14.207L15.7925 12.2928C15.605 12.1053 15.3488 11.9903 15.0871 12.0338C13.9027 12.2304 12.9996 13.2597 12.9996 14.4999C12.9996 15.8806 14.1189 16.9999 15.4996 16.9999Z\" fill=\"currentColor\"/><path d=\"M6.20511 12.8029C6.01622 12.284 6.2838 11.7101 6.80278 11.5212L9.78826 10.4346C10.3072 10.2457 10.8811 10.5133 11.07 11.0323L11.4528 12.084C11.6417 12.6029 11.3741 13.1768 10.8551 13.3657L7.86961 14.4523C7.35063 14.6412 6.77679 14.3736 6.5879 13.8546L6.20511 12.8029Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconBackpack: {\n title: \"backpack,travel\",\n svg: '<path d=\"M4.75 10.5V18.25C4.75 19.9069 6.09315 21.25 7.75 21.25H16.25C17.9069 21.25 19.25 19.9069 19.25 18.25V10.5M9.25 4.75V1.75H14.75V4.75M8.75 11.25V13.25M15.25 11.25V13.25M9.75 17.25H14.25M3.75 4.75H20.25V8.25C20.25 9.90685 18.9069 11.25 17.25 11.25H6.75C5.09315 11.25 3.75 9.90685 3.75 8.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCurtain: {\n title: \"curtain,showtime,theater\",\n svg: '<path d=\"M8.25 19.25V20C8.65893 20 8.99249 19.6724 8.99988 19.2635L8.25 19.25ZM2.75 19.25H2C2 19.6642 2.33579 20 2.75 20V19.25ZM2.75 4.75V4C2.33579 4 2 4.33579 2 4.75H2.75ZM21.25 4.75H22C22 4.33579 21.6642 4 21.25 4V4.75ZM21.25 19.25V20C21.6642 20 22 19.6642 22 19.25H21.25ZM15.75 19.25L15.0001 19.2635C15.0075 19.6724 15.3411 20 15.75 20V19.25ZM8.5 17.5H7.75V19H8.5V17.5ZM15.5 19H16.25V17.5H15.5V19ZM9.99915 4.71433C9.97945 4.30058 9.62807 3.98115 9.21433 4.00085C8.80058 4.02055 8.48115 4.37193 8.50085 4.78567L9.99915 4.71433ZM15.4992 4.78567C15.5189 4.37193 15.1994 4.02055 14.7857 4.00085C14.3719 3.98115 14.0206 4.30058 14.0008 4.71433L15.4992 4.78567ZM8.25 18.5H2.75V20H8.25V18.5ZM2.75 5.5H21.25V4H2.75V5.5ZM21.25 18.5H15.75V20H21.25V18.5ZM20.5 4.75V14.0714H22V4.75H20.5ZM20.5 14.0714V19.25H22V14.0714H20.5ZM3.5 19.25V14.0714H2V19.25H3.5ZM3.5 14.0714V4.75H2V14.0714H3.5ZM8.5 19H15.5V17.5H8.5V19ZM16.4999 19.2365C16.4544 16.7178 18.3644 14.8214 21.25 14.8214V13.3214C17.6356 13.3214 14.9376 15.7999 15.0001 19.2635L16.4999 19.2365ZM8.99988 19.2635C9.06216 15.8149 6.37719 13.2415 2.73352 13.3216L2.76648 14.8212C5.62281 14.7585 7.54588 16.7028 7.50012 19.2365L8.99988 19.2635ZM2.91503 14.803C5.41655 14.2388 7.2936 13.1413 8.49235 11.4036C9.68233 9.67859 10.1285 7.43101 9.99915 4.71433L8.50085 4.78567C8.62148 7.31899 8.19267 9.19641 7.25765 10.5518C6.3314 11.8945 4.83345 12.8326 2.58497 13.3398L2.91503 14.803ZM21.3874 13.3341C18.6224 12.8189 17.1738 11.8744 16.3906 10.5877C15.579 9.25432 15.375 7.39268 15.4992 4.78567L14.0008 4.71433C13.875 7.35732 14.046 9.62068 15.1094 11.3676C16.2012 13.1613 18.1276 14.2525 21.1126 14.8087L21.3874 13.3341Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconWarningSign: {\n title: \"warning-sign,attention,coution\",\n svg: '<path d=\"M2.75 20.25L6.75 3.75H17.25M17.25 3.75L21.25 20.25M17.25 3.75L13.25 20.25M4 16.75H20\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconWreath: {\n title: \"wreath, crown, laurel-leafs\",\n svg: '<path d=\"M9.40545 18.1053C7.83173 19.4414 6.26907 19.2749 4.6926 17.6057C8.35815 13.9616 12.9218 19.2418 8.8818 21.25M14.5945 18.1053C16.1683 19.4414 17.7309 19.2749 19.3074 17.6057C15.6419 13.9616 11.0782 19.2418 15.1182 21.25M6.78495 15.166C6.20088 12.6898 4.69907 11.8277 2.25 12.563C2.83406 15.0392 4.33587 15.9012 6.78495 15.166ZM5.57581 11.7024C6.31536 9.26759 5.44829 7.77454 2.95755 7.19388C2.218 9.62867 3.08507 11.1217 5.57581 11.7024ZM6.71761 2.75C4.57685 4.14255 4.27572 5.84039 5.8083 7.87688C7.94907 6.48432 8.2502 4.78649 6.71761 2.75ZM17.2151 15.166C17.7991 12.6898 19.3009 11.8277 21.75 12.563C21.1659 15.0392 19.6641 15.9012 17.2151 15.166ZM18.4242 11.7024C17.6846 9.26759 18.5517 7.77454 21.0424 7.19388C21.782 9.62867 20.9149 11.1217 18.4242 11.7024ZM17.2824 2.75C19.4232 4.14255 19.7243 5.84039 18.1917 7.87688C16.0509 6.48432 15.7498 4.78649 17.2824 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconThinkingBubble: {\n title: \"thinking-bubble\",\n svg: '<path d=\"M7.25 19C7.25 20.2426 6.24264 21.25 5 21.25C3.75736 21.25 2.75 20.2426 2.75 19C2.75 17.7574 3.75736 16.75 5 16.75C6.24264 16.75 7.25 17.7574 7.25 19Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M15.9705 4.99182C16.3368 4.88447 16.7242 4.82692 17.125 4.82692C19.4032 4.82692 21.25 6.68666 21.25 8.98077C21.25 10.6654 20.2542 12.1157 18.8229 12.7675C18.1757 14.2087 16.7354 15.2115 15.0625 15.2115C14.1855 15.2115 13.3724 14.9359 12.704 14.4661C12.2083 15.5206 11.1418 16.25 9.90625 16.25C8.19762 16.25 6.8125 14.8552 6.8125 13.1346C6.8125 12.9539 6.82778 12.7768 6.85711 12.6045C5.59958 11.8929 4.75 10.5367 4.75 8.98077C4.75 6.68666 6.59683 4.82692 8.875 4.82692C9.27576 4.82692 9.66317 4.88447 10.0295 4.99181C10.4046 3.69645 11.5925 2.75 13 2.75C14.4075 2.75 15.5954 3.69645 15.9705 4.99182Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconJudgeGavel: {\n title: \"judge-gavel, legal, terms, law\",\n svg: '<path d=\"M15.25 20.25H16.25M15.25 20.25L14.25 17.25H4.75L3.75 20.25M15.25 20.25H3.75M2.75 20.25H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M1.75 13.25H4.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.5 9.75L3.5 8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.875 9.375L12.5 12.75L9.75 10L16.5 3.25L19.25 6L15.875 9.375ZM15.875 9.375L20.75 14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconFashion: {\n title: \"fashion, wear, clothes, t-shirt\",\n svg: '<path d=\"M20.7125 11.5768L22.25 7.25L15.075 3.75C14.0732 7.01444 9.92685 7.01444 8.925 3.75L1.75 7.25L3.2875 11.5768L5.75 10.45V20.25H18.25V10.45L20.7125 11.5768Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconMouth: {\n title: \"mouth, kiss\",\n svg: '<path d=\"M1.25 11.3502C1.25 11.3502 4.25809 4.767 7.96875 4.767C9.62821 4.767 12 6.08364 12 6.08364C12 6.08364 13.9544 4.91395 15.3594 4.767C19.238 4.36135 22.75 11.3502 22.75 11.3502M1.25 11.3502C1.25 11.3502 7.77794 9.58333 12 9.58333C16.2221 9.58333 22.75 11.3502 22.75 11.3502M1.25 11.3502C1.25 11.3502 4.475 19.25 12 19.25C19.525 19.25 22.75 11.3502 22.75 11.3502M1.25 11.3502C1.25 11.3502 7.66879 14.4167 12 14.4167C16.3312 14.4167 22.75 11.3502 22.75 11.3502\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconFootsteps: {\n title: \"footsteps\",\n svg: '<path d=\"M9.25 15.25H3.75V16.4375C3.75 17.9908 4.98122 19.25 6.5 19.25C8.01878 19.25 9.25 17.9908 9.25 16.4375V15.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M9.26546 12.75H3.73457C1.97336 9.75 2.39037 2.75 6.49986 2.75C10.6093 2.75 11.0268 9.75 9.26546 12.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M20.25 17.25H14.75V18.4375C14.75 19.9908 15.9812 21.25 17.5 21.25C19.0188 21.25 20.25 19.9908 20.25 18.4375V17.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M20.2655 14.75H14.7346C12.9734 11.75 13.3904 4.75 17.4999 4.75C21.6093 4.75 22.0268 11.75 20.2655 14.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconPeace: {\n title: \"peace\",\n svg: '<circle cx=\"12\" cy=\"12\" r=\"9.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M12 12V20.75\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M12 12L5.75 18.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M12 12L18.25 18.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M12 3.25V12\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Things\",\n },\n IconAirplane: {\n title: \"airplane, flight\",\n svg: '<path d=\"M16.4812 3.92157L13.5417 6.86111L4.80556 3.77778L2.75 5.83333L9.43056 10.9722L7.375 13.0278H5.31944L2.75 15.5972L6.86111 17.1389L8.40278 21.25L10.9722 18.6806V16.625L13.0278 14.5694L18.1667 21.25L20.2222 19.1944L17.1389 10.4583L20.0784 7.5188C20.8286 6.76865 21.25 5.75123 21.25 4.69037V2.75H19.3096C18.2488 2.75 17.2314 3.17143 16.4812 3.92157Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Things\",\n },\n IconAirplaneUp: {\n title: \"airplane-up, takeoff\",\n svg: '<path d=\"M4.15869 6.39279L1.75 7.2837L4.11619 10.8437L3.5 11.9998L3.77183 12.6794C4.1763 13.6906 5.31551 14.1923 6.33453 13.808L10 12.4256L10.4012 15.7698L13.2916 14.7008L15.5 10.3513L20.4817 8.35611C21.0968 8.10979 21.5 7.51394 21.5 6.85141C21.5 6.06858 20.9405 5.39761 20.1704 5.2569L17.9451 4.85029C17.5854 4.78458 17.2181 4.81742 16.8764 4.94754C15.2983 5.54857 10.5415 7.35838 8.52196 8.10535C7.95008 8.31688 7.31528 8.25934 6.78927 7.9483L4.15869 6.39279Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 19.25H21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconAirplaneDown: {\n title: \"airplane-down, landing\",\n svg: '<path d=\"M2.75 19.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.78904 3.41741L4.26557 2.75L4.16025 7.12582L2.97386 7.73365L2.8041 8.46332C2.55149 9.54905 3.20715 10.6389 4.27905 10.9151L8.1347 11.9084L6.51992 14.9491L9.54809 15.75L13.9201 13.3988L19.2281 14.6511C19.8834 14.8058 20.5662 14.5428 20.9522 13.9871C21.4083 13.3304 21.3337 12.439 20.7749 11.8687L19.16 10.2207C18.899 9.95432 18.5742 9.76609 18.214 9.67458C16.5507 9.25188 11.5378 7.97612 9.42202 7.41654C8.82289 7.25808 8.32818 6.83699 8.0717 6.26715L6.78904 3.41741Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconForYou: {\n title: \"for-you, for-me, event, address, post\",\n svg: '<path d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 16.25H16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.75 9.25V7.75H9.25V9.25H7.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconBean: {\n title: \"bean, java\",\n svg: '<path d=\"M19.2228 4.77723C22.414 7.96845 21.7672 13.7892 17.7782 17.7782C13.7892 21.7672 7.96845 22.414 4.77723 19.2228C1.58601 16.0315 2.23276 10.2108 6.22178 6.22178C10.2108 2.23276 16.0315 1.58601 19.2228 4.77723Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M4 18C8.12903 9.65217 15.871 14.3478 20 6\" stroke=\"currentColor\" stroke-width=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Things\",\n },\n IconMedicineTablett: {\n title: \"medicine-tablett, pill\",\n svg: '<path d=\"M11.9986 4.50057L4.49861 12.0006C2.42755 14.0716 2.42755 17.4295 4.49861 19.5006C6.56968 21.5716 9.92755 21.5716 11.9986 19.5006L19.4986 12.0006C21.5697 9.9295 21.5697 6.57163 19.4986 4.50057C17.4275 2.4295 14.0697 2.4295 11.9986 4.50057Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M8.5 8.5L15.5 15.5\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Things\",\n },\n IconMedicinePill: {\n title: \"medicine-pill\",\n svg: '<path d=\"M17.4968 9.98987C18.677 8.17259 18.4702 5.71715 16.8765 4.12345C15.0453 2.29218 12.0762 2.29218 10.2449 4.12345L4.12345 10.2449C2.29218 12.0762 2.29218 15.0453 4.12345 16.8765C5.71715 18.4702 8.17259 18.677 9.98987 17.4968\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.5 7.5L11 11\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"15.5\" cy=\"15.5\" r=\"5.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 21L14.5 10\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconMedicinePill2: {\n title: \"medicine-pill-2, tablett\",\n svg: '<ellipse cx=\"11.5\" cy=\"9\" rx=\"9.75\" ry=\"4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M1.75 9V15C1.75 17.3472 6.11522 19.25 11.5 19.25C16.8848 19.25 21.25 17.3472 21.25 15V9\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M5.5 5.5L18.5 12\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Things\",\n },\n IconWaste: {\n title: \"waste, trash-can\",\n svg: '<path d=\"M18.5 17.25L19.25 5.83333L17.1786 2.75H6.82143L4.75 5.83333L5.78571 21.25H15\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 6H20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19 19C19 20.3807 17.8807 21.5 16.5 21.5C15.1193 21.5 14 20.3807 14 19C14 17.6193 15.1193 16.5 16.5 16.5C17.8807 16.5 19 17.6193 19 19Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconSteeringWheel: {\n title: \"steering-wheel, control, navigate, boot\",\n svg: '<circle cx=\"12\" cy=\"12\" r=\"8.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 1.75V22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M1.75 12H22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.75 4.75195L19.2457 19.2476\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.2457 4.75195L4.75 19.2476\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconTreasure: {\n title: \"treasure, chest\",\n svg: '<path d=\"M3 10.75H21\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.75 4.75V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.25 4.75V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 9.75V11.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.75 7.75C2.75 6.09315 4.09315 4.75 5.75 4.75H18.25C19.9069 4.75 21.25 6.09315 21.25 7.75V19.25H2.75V7.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconTelescope: {\n title: \"telescope, deep-search, research\",\n svg: '<path d=\"M5.87492 10.9956L1.9981 12.4067C1.47912 12.5955 1.21153 13.1694 1.40042 13.6884L2.16997 15.8027C2.35886 16.3217 2.9327 16.5892 3.45168 16.4003L7.32851 14.9893\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.2873 7.89258L6.91707 9.48323C6.1386 9.76657 5.73722 10.6273 6.02056 11.4058L7.17487 14.5773C7.45821 15.3557 8.31898 15.7571 9.09744 15.4738L13.4677 13.8831\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.8048 6.20977L19.5951 3.73828L22.5023 11.7257L15.712 14.1972C14.674 14.5749 13.5263 14.0398 13.1485 13.0018L11.6094 8.77319C11.2317 7.73523 11.7668 6.58755 12.8048 6.20977Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.75 20.25V14.75\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M7.75 20.25L13.75 20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Things\",\n },\n IconBee: {\n title: \"bee, fly\",\n svg: '<path d=\"M10.5 5L8.5 2\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.5 5L15.5 2\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.25 10.75V12.25C10.25 15.5637 7.56371 18.25 4.25 18.25H2.75V15.75C2.75 12.4363 5.43629 9.75 8.75 9.75H9\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 10.75V12.25C13.75 15.5637 16.4363 18.25 19.75 18.25H21.25V15.75C21.25 12.4363 18.5637 9.75 15.25 9.75H15\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 22.25V21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.25 8C15.25 9.79493 13.7949 11.25 12 11.25C10.2051 11.25 8.75 9.79493 8.75 8C8.75 6.20507 10.2051 4.75 12 4.75C13.7949 4.75 15.25 6.20507 15.25 8Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.10547 17C8.67245 19.3304 10.2023 21 12.0006 21C13.7989 21 15.3287 19.3304 15.8957 17\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconThinkingBubble1: {\n title: \"thinking-bubble-1, thoughts\",\n svg: '<path d=\"M10.4385 4.71693C9.96381 4.55321 9.45467 4.46437 8.92496 4.46437C6.34305 4.46437 4.25 6.57502 4.25 9.17865C4.25 10.834 5.09607 12.2901 6.37592 13.1311C6.42631 15.6907 8.49965 17.75 11.0499 17.75C12.4262 17.75 13.6636 17.1503 14.5191 16.1958C15.0312 16.37 15.5797 16.4644 16.15 16.4644C18.9667 16.4644 21.25 14.1619 21.25 11.3216C21.25 9.79031 20.5864 8.41537 19.5333 7.47324C19.3216 4.82918 17.1266 2.75 14.4501 2.75C12.8221 2.75 11.3723 3.51923 10.4385 4.71693Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M6.25 19.75C6.25 20.8546 5.35457 21.75 4.25 21.75C3.14543 21.75 2.25 20.8546 2.25 19.75C2.25 18.6454 3.14543 17.75 4.25 17.75C5.35457 17.75 6.25 18.6454 6.25 19.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Things\",\n },\n IconSocial: {\n title: \"social, connection\",\n svg: '<path d=\"M8.25 6C8.25 7.24264 7.24264 8.25 6 8.25C4.75736 8.25 3.75 7.24264 3.75 6C3.75 4.75736 4.75736 3.75 6 3.75C7.24264 3.75 8.25 4.75736 8.25 6Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M20.25 6C20.25 7.24264 19.2426 8.25 18 8.25C16.7574 8.25 15.75 7.24264 15.75 6C15.75 4.75736 16.7574 3.75 18 3.75C19.2426 3.75 20.25 4.75736 20.25 6Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M20.25 17C20.25 18.2426 19.2426 19.25 18 19.25C16.7574 19.25 15.75 18.2426 15.75 17C15.75 15.7574 16.7574 14.75 18 14.75C19.2426 14.75 20.25 15.7574 20.25 17Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M11.25 16C11.25 18.3472 9.34721 20.25 7 20.25C4.65279 20.25 2.75 18.3472 2.75 16C2.75 13.6528 4.65279 11.75 7 11.75C9.34721 11.75 11.25 13.6528 11.25 16Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M6.23828 8.40065L6.56252 11.6431M10.3112 12.9888L16.2237 7.61376L16.2522 7.58789M15.5994 16.7825L11.4382 16.4042\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Things\",\n },\n IconTrainFrontView: {\n title: \"train-front-view, tram\",\n svg: '<path d=\"M6.75 2.75H17.25L20.25 5.25V17.25H3.75V5.25L6.75 2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.16222 17L4.84312 21.6382C4.76001 21.8044 4.88088 22 5.06673 22H6.18476C6.27946 22 6.36602 21.9465 6.40837 21.8618L8.67157 17.3354L7.16222 17Z\" fill=\"currentColor\"/><path d=\"M15.3299 17.3354L17.5931 21.8618C17.6355 21.9465 17.722 22 17.8167 22H18.9348C19.1206 22 19.2415 21.8044 19.1584 21.6382L16.8393 17L15.3299 17.3354Z\" fill=\"currentColor\"/><path d=\"M4 11.25H20\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"8\" cy=\"14.25\" r=\"1\" fill=\"currentColor\"/><circle cx=\"16\" cy=\"14.25\" r=\"1\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconBus: {\n title: \"bus, school-bus\",\n svg: '<path d=\"M7.75 20.25H3.75V3.75H20.25V20.25H16.25V18.25H7.75V20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4 12.25H20\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 15.25H8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.75 15.25H17.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M1.75 7.75L3.70959 7.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 7.75H22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 6.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCar9: {\n title: \"car-9, van\",\n svg: '<path d=\"M4.25 17.25H1.75V4.75H16.5L18.25 9.25L22.25 11V17.25H19.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCar9Ev: {\n title: \"car-9-ev, van\",\n svg: '<path d=\"M4.25 17.25H1.75V4.75H16.5L18.25 9.25L22.25 11V17.25H19.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.9949 9.99935H11.9183L12.2046 7.93759C12.24 7.68326 11.9148 7.54731 11.7586 7.75109L8.80987 11.5972C8.68378 11.7617 8.80104 11.9994 9.00827 11.9994H11.0849L10.7986 14.0611C10.7633 14.3155 11.0884 14.4514 11.2446 14.2476L14.1933 10.4015C14.3194 10.237 14.2022 9.99935 13.9949 9.99935Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconCar8: {\n title: \"car-8, mini-van\",\n svg: '<path d=\"M4.25 17.25H1.75V4.75H16.5L22.25 9.75V17.25H19.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCar8Ev: {\n title: \"car-8-ev, mini-van\",\n svg: '<path d=\"M4.25 17.25H1.75V4.75H16.5L22.25 9.75V17.25H19.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.9949 9.99935H11.9183L12.2046 7.93759C12.24 7.68326 11.9148 7.54731 11.7586 7.75109L8.80987 11.5972C8.68378 11.7617 8.80104 11.9994 9.00827 11.9994H11.0849L10.7986 14.0611C10.7633 14.3155 11.0884 14.4514 11.2446 14.2476L14.1933 10.4015C14.3194 10.237 14.2022 9.99935 13.9949 9.99935Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconCar10: {\n title: \"car-10, truck\",\n svg: '<path d=\"M4.5 17.25H1.75V4.75H12.75V6.75H18.75L22.25 12V17.25H19.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.75 7V16.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Things\",\n },\n IconCar10Ev: {\n title: \"car-10-ev, truck\",\n svg: '<path d=\"M4.5 17.25H1.75V4.75H12.75V6.75H18.75L22.25 12V17.25H19.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.75 7V16.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M9.77179 9.10368H7.87965L8.14057 7.25567C8.17275 7.02771 7.87652 6.90586 7.73417 7.08851L5.04743 10.5359C4.93255 10.6833 5.03939 10.8963 5.22821 10.8963H7.12034L6.85944 12.7443C6.82726 12.9723 7.12349 13.0941 7.26584 12.9115L9.95257 9.46409C10.0675 9.31668 9.96061 9.10368 9.77179 9.10368Z\" fill=\"currentColor\"/><path d=\"M9.77179 9.10368H7.87965L8.14057 7.25567C8.17275 7.02771 7.87652 6.90586 7.73417 7.08851L5.04743 10.5359C4.93255 10.6833 5.03939 10.8963 5.22821 10.8963H7.12034L6.85944 12.7443C6.82726 12.9723 7.12349 13.0941 7.26584 12.9115L9.95257 9.46409C10.0675 9.31668 9.96061 9.10368 9.77179 9.10368Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconCar1: {\n title: \"car-1\",\n svg: '<path d=\"M19.75 17.25H22.25V10L17 9L14 4.75H7L5 8L1.75 10V17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCar1Ev: {\n title: \"car-1-ev\",\n svg: '<path d=\"M19.75 17.25H22.25V10L17 9L14 4.75H7L5 8L1.75 10V17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.9949 10.0003H11.9183L12.2046 7.93856C12.24 7.68423 11.9148 7.54829 11.7586 7.75206L8.80987 11.5982C8.68378 11.7627 8.80104 12.0003 9.00827 12.0003H11.0849L10.7986 14.0621C10.7633 14.3164 11.0884 14.4524 11.2446 14.2486L14.1933 10.4024C14.3194 10.238 14.2022 10.0003 13.9949 10.0003Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconCar7: {\n title: \"car-7, pickup\",\n svg: '<path d=\"M19.75 17.25H22.25V9.75L18 8.75L15 4.75H8.75V9.75H1.75V17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCar7Ev: {\n title: \"car-7-ev, pickup\",\n svg: '<path d=\"M19.75 17.25H22.25V9.75L18 8.75L15 4.75H8.75V9.75H1.75V17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.7718 10.1037H13.8797L14.1406 8.25567C14.1728 8.02771 13.8765 7.90586 13.7342 8.08851L11.0474 11.5359C10.9325 11.6833 11.0394 11.8963 11.2282 11.8963H13.1203L12.8594 13.7443C12.8273 13.9723 13.1235 14.0941 13.2658 13.9115L15.9526 10.4641C16.0675 10.3167 15.9606 10.1037 15.7718 10.1037Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconCar6: {\n title: \"car-6\",\n svg: '<path d=\"M19.75 17.25H22.25V9.75L17 8.75L14 4.75L1.75 4.75V17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCar6Ev: {\n title: \"car-6-ev\",\n svg: '<path d=\"M19.75 17.25H22.25V9.75L17 8.75L14 4.75L1.75 4.75V17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.9949 9.99935H11.9183L12.2046 7.93759C12.24 7.68326 11.9148 7.54731 11.7586 7.75109L8.80987 11.5972C8.68378 11.7617 8.80104 11.9994 9.00827 11.9994H11.0849L10.7986 14.0611C10.7633 14.3155 11.0884 14.4514 11.2446 14.2476L14.1933 10.4015C14.3194 10.237 14.2022 9.99935 13.9949 9.99935Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconCar5: {\n title: \"car-5\",\n svg: '<path d=\"M19.75 17.25H22.25V13.3208C22.25 12.3111 21.8682 11.3388 21.1812 10.599L16.9369 6.02819C16.18 5.21313 15.118 4.75 14.0057 4.75H3.75L1.75 17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.5 17.25H14.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 17.25H14\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCar5Ev: {\n title: \"car-5-ev\",\n svg: '<path d=\"M19.75 17.25H22.25V13.3208C22.25 12.3111 21.8682 11.3388 21.1812 10.599L16.9369 6.02819C16.18 5.21313 15.118 4.75 14.0057 4.75H3.75L1.75 17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.5 17.25H14.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 17.25H14\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.9949 9.99935H11.9183L12.2046 7.93759C12.24 7.68326 11.9148 7.54731 11.7586 7.75109L8.80987 11.5972C8.68378 11.7617 8.80104 11.9994 9.00827 11.9994H11.0849L10.7986 14.0611C10.7633 14.3155 11.0884 14.4514 11.2446 14.2476L14.1933 10.4015C14.3194 10.237 14.2022 9.99935 13.9949 9.99935Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconCar4: {\n title: \"car-4\",\n svg: '<path d=\"M19.75 17.25H22.25V9.75L16 8.75L13 4.75L3.75 4.75001L1.75 17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCar4Ev: {\n title: \"car-4-ev\",\n svg: '<path d=\"M19.75 17.25H22.25V9.75L16 8.75L13 4.75L3.75 4.75001L1.75 17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M13.9949 9.99935H11.9183L12.2046 7.93759C12.24 7.68326 11.9148 7.54731 11.7586 7.75109L8.80987 11.5972C8.68378 11.7617 8.80104 11.9994 9.00827 11.9994H11.0849L10.7986 14.0611C10.7633 14.3155 11.0884 14.4514 11.2446 14.2476L14.1933 10.4015C14.3194 10.237 14.2022 9.99935 13.9949 9.99935Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconCar3: {\n title: \"car-3\",\n svg: '<path d=\"M20 17.25H22.25V15.099C22.25 12.1342 20.1573 9.33146 17.25 8.75L14 4.75H7.46208C4.21434 4.75 1.75 7.25 1.75 11.3319V17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCar3Ev: {\n title: \"car-3-ev\",\n svg: '<path d=\"M20 17.25H22.25V15.099C22.25 12.1342 20.1573 9.33146 17.25 8.75L14 4.75H7.46208C4.21434 4.75 1.75 7.25 1.75 11.3319V17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.9949 10.0003H11.9183L12.2046 7.93856C12.24 7.68423 11.9148 7.54829 11.7586 7.75206L8.80987 11.5982C8.68378 11.7627 8.80104 12.0003 9.00827 12.0003H11.0849L10.7986 14.0621C10.7633 14.3164 11.0884 14.4524 11.2446 14.2486L14.1933 10.4024C14.3194 10.238 14.2022 10.0003 13.9949 10.0003Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconCar2: {\n title: \"car-2\",\n svg: '<path d=\"M19.75 17.25H22.25V10L17 8.75L14 4.75H7L1.75 10V17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCar2Ev: {\n title: \"car-2-ev\",\n svg: '<path d=\"M19.75 17.25H22.25V10L17 8.75L14 4.75H7L1.75 10V17.25H4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"7\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"17\" cy=\"16.75\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 17.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.9949 10.0003H11.9183L12.2046 7.93856C12.24 7.68423 11.9148 7.54829 11.7586 7.75206L8.80987 11.5982C8.68378 11.7627 8.80104 12.0003 9.00827 12.0003H11.0849L10.7986 14.0621C10.7633 14.3164 11.0884 14.4524 11.2446 14.2486L14.1933 10.4024C14.3194 10.238 14.2022 10.0003 13.9949 10.0003Z\" fill=\"currentColor\"/>',\n category: \"Things\",\n },\n IconCarFrontView: {\n title: \"car-front-view\",\n svg: '<path d=\"M2.75 19.25V11L7 4.75H17L21.25 11V19.25H17.25V17.1786H6.75V19.25H2.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M1.75 10.25H3\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21 10.25H22.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.75 13.25H7.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.75 13.25H18.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Things\",\n },\n IconCalendar1: {\n title: \"calendar-1, date\",\n svg: '<path d=\"M3.75 9.75H20.25M7.75 4.75V2.75M16.25 4.75V2.75M3.75 4.75H20.25V20.25H3.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendarTearOff: {\n title: \"calendar-tear-off, date\",\n svg: '<path d=\"M4.26562 8.21193L7.875 9.24134L10.9688 8.21193L13.5469 9.24134L14.5781 8.21193L18.1875 8.72664L19.7481 8.33719M7.75 4.80882V2.75M16.25 4.80882V2.75M3.75 4.80882H20.25V20.25H3.75V4.80882Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendar2: {\n title: \"calendar-2, date\",\n svg: '<path d=\"M3.75 9.75H20.25M7.75 4.75V2.75M16.25 4.75V2.75M3.75 4.75H20.25V20.25H3.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalenderAdd: {\n title: \"calender-add, date-add\",\n svg: '<path d=\"M7.75 4.75H3.75V9.25M7.75 4.75H16.25M7.75 4.75V2.75M16.25 4.75H20.25V9.25M16.25 4.75V2.75M11.25 20.25H3.75V9.25M3.75 9.25H20.25M20.25 9.25V11.25M17.75 14.75V18M17.75 18V21.25M17.75 18H14.5M17.75 18H21\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalenderRemove: {\n title: \"calender-remove, date-remove\",\n svg: '<path d=\"M7.75 4.75H3.75V9.25M7.75 4.75H16.25M7.75 4.75V2.75M16.25 4.75H20.25V9.25M16.25 4.75V2.75M11.25 20.25H3.75V9.25M3.75 9.25H20.25M20.25 9.25V11.25M15.7488 15.75L17.9988 18M17.9988 18L20.2488 20.25M17.9988 18L15.7488 20.25M17.9988 18L20.2488 15.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendarCheck: {\n title: \"calendar-check, date-check\",\n svg: '<path d=\"M7.75 4.75H3.75V9.25M7.75 4.75H16.25M7.75 4.75V2.75M16.25 4.75H20.25V9.25M16.25 4.75V2.75M11.25 20.25H3.75V9.25M3.75 9.25H20.25M20.25 9.25V12.25M21.25 15.75L16.9167 21.25L14.75 19.05\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendarEdit: {\n title: \"calendar-edit, date-edit\",\n svg: '<path d=\"M7.75 4.75H3.75V9.25M7.75 4.75H16.25M7.75 4.75V2.75M16.25 4.75H20.25V9.25M16.25 4.75V2.75M11.25 20.25H3.75V9.25M3.75 9.25H20.25M20.25 9.25V10.25M16.75 21.25L22.25 15.75L20.25 13.75L14.75 19.25V21.25H16.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendarSearch: {\n title: \"calendar-search, date-search\",\n svg: '<path d=\"M7.75 4.75H3.75V9.25M7.75 4.75H16.25M7.75 4.75V2.75M16.25 4.75H20.25V9.25M16.25 4.75V2.75M11.25 20.25H3.75V9.25M3.75 9.25H20.25M20.25 9.25V11.25M19.3713 19.364C18.1997 20.5355 16.3003 20.5355 15.1287 19.364C13.9571 18.1924 13.9571 16.2929 15.1287 15.1213C16.3003 13.9497 18.1997 13.9497 19.3713 15.1213C20.5429 16.2929 20.5429 18.1924 19.3713 19.364ZM19.3713 19.364L21.25 21.2426\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendarRepeat: {\n title: \"calendar-repeat, date-repeat\",\n svg: '<path d=\"M7.75 4.75H3.75V9.25M7.75 4.75H16.25M7.75 4.75V2.75M16.25 4.75H20.25V9.25H3.75M16.25 4.75V2.75M10.25 20.25H3.75V9.25M20.3398 20.1875C19.5795 20.8488 18.5779 21.25 17.5 21.25C15.5197 21.25 13.8557 19.8956 13.3839 18.0625M14.4195 14.0388C15.2021 13.2439 16.3042 12.75 17.5 12.75C19.4803 12.75 21.1443 14.1044 21.6161 15.9375\" stroke=\"currentColor\" strokeWidth=\"1.59375\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M22.2812 19.125V21.5612C22.2812 22.0345 21.709 22.2715 21.3743 21.9369L18.4069 18.9694C18.0722 18.6347 18.3093 18.0625 18.7826 18.0625H21.2188C21.8056 18.0625 22.2812 18.5382 22.2812 19.125Z\" fill=\"currentColor\"/><path d=\"M12.7188 14.875V12.4388C12.7188 11.9655 13.291 11.7285 13.6257 12.0632L16.5931 15.0306C16.9278 15.3653 16.6907 15.9375 16.2174 15.9375H13.7812C13.1944 15.9375 12.7188 15.4618 12.7188 14.875Z\" fill=\"currentColor\"/>',\n category: \"Time & Date\",\n },\n IconCalenderToday: {\n title: \"calender-today\",\n svg: '<path d=\"M20.25 7.25V3.75H3.75V7.25M20.25 7.25V20.25H3.75V7.25M20.25 7.25H3.75M13.75 13.75C13.75 14.7165 12.9665 15.5 12 15.5C11.0335 15.5 10.25 14.7165 10.25 13.75C10.25 12.7835 11.0335 12 12 12C12.9665 12 13.75 12.7835 13.75 13.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalenderTomorrow: {\n title: \"calender-tomorrow\",\n svg: '<path d=\"M20.25 7.25V3.75H3.75V7.25M20.25 7.25V20.25H3.75V7.25M20.25 7.25H3.75M11 11.5L13.25 13.75L11 16\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalenderNextWeek: {\n title: \"calender-next-week\",\n svg: '<path d=\"M8.5 11.75L10.5 13.75L8.5 15.75M13.5 11.75L15.5 13.75L13.5 15.75M20.25 7.25V3.75H3.75V7.25M20.25 7.25V20.25H3.75V7.25M20.25 7.25H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendarDays: {\n title: \"calendar-days\",\n svg: '<path d=\"M3.75 3.75V3C3.33579 3 3 3.33579 3 3.75H3.75ZM20.25 3.75H21C21 3.33579 20.6642 3 20.25 3V3.75ZM20.25 20.25V21C20.6642 21 21 20.6642 21 20.25H20.25ZM3.75 20.25H3C3 20.6642 3.33579 21 3.75 21V20.25ZM7.25 12C7.25 12.4142 7.58579 12.75 8 12.75C8.41421 12.75 8.75 12.4142 8.75 12H7.25ZM8.75 11.99C8.75 11.5758 8.41421 11.24 8 11.24C7.58579 11.24 7.25 11.5758 7.25 11.99H8.75ZM11.25 12C11.25 12.4142 11.5858 12.75 12 12.75C12.4142 12.75 12.75 12.4142 12.75 12H11.25ZM12.75 11.99C12.75 11.5758 12.4142 11.24 12 11.24C11.5858 11.24 11.25 11.5758 11.25 11.99H12.75ZM7.25 16C7.25 16.4142 7.58579 16.75 8 16.75C8.41421 16.75 8.75 16.4142 8.75 16H7.25ZM8.75 15.99C8.75 15.5758 8.41421 15.24 8 15.24C7.58579 15.24 7.25 15.5758 7.25 15.99H8.75ZM11.25 16C11.25 16.4142 11.5858 16.75 12 16.75C12.4142 16.75 12.75 16.4142 12.75 16H11.25ZM12.75 15.99C12.75 15.5758 12.4142 15.24 12 15.24C11.5858 15.24 11.25 15.5758 11.25 15.99H12.75ZM15.25 12C15.25 12.4142 15.5858 12.75 16 12.75C16.4142 12.75 16.75 12.4142 16.75 12H15.25ZM16.75 11.99C16.75 11.5758 16.4142 11.24 16 11.24C15.5858 11.24 15.25 11.5758 15.25 11.99H16.75ZM3.75 4.5H20.25V3H3.75V4.5ZM19.5 3.75V7.75H21V3.75H19.5ZM19.5 7.75V20.25H21V7.75H19.5ZM20.25 19.5H3.75V21H20.25V19.5ZM4.5 20.25V7.75H3V20.25H4.5ZM4.5 7.75V3.75H3V7.75H4.5ZM3.75 8.5H20.25V7H3.75V8.5ZM7.5 12C7.5 11.7239 7.72386 11.5 8 11.5V13C8.55228 13 9 12.5523 9 12H7.5ZM8 11.5C8.27614 11.5 8.5 11.7239 8.5 12H7C7 12.5523 7.44772 13 8 13V11.5ZM8.5 12C8.5 12.2761 8.27614 12.5 8 12.5V11C7.44772 11 7 11.4477 7 12H8.5ZM8 12.5C7.72386 12.5 7.5 12.2761 7.5 12H9C9 11.4477 8.55228 11 8 11V12.5ZM8.75 12V11.99H7.25V12H8.75ZM11.5 12C11.5 11.7239 11.7239 11.5 12 11.5V13C12.5523 13 13 12.5523 13 12H11.5ZM12 11.5C12.2761 11.5 12.5 11.7239 12.5 12H11C11 12.5523 11.4477 13 12 13V11.5ZM12.5 12C12.5 12.2761 12.2761 12.5 12 12.5V11C11.4477 11 11 11.4477 11 12H12.5ZM12 12.5C11.7239 12.5 11.5 12.2761 11.5 12H13C13 11.4477 12.5523 11 12 11V12.5ZM12.75 12V11.99H11.25V12H12.75ZM7.5 16C7.5 15.7239 7.72386 15.5 8 15.5V17C8.55228 17 9 16.5523 9 16H7.5ZM8 15.5C8.27614 15.5 8.5 15.7239 8.5 16H7C7 16.5523 7.44772 17 8 17V15.5ZM8.5 16C8.5 16.2761 8.27614 16.5 8 16.5V15C7.44772 15 7 15.4477 7 16H8.5ZM8 16.5C7.72386 16.5 7.5 16.2761 7.5 16H9C9 15.4477 8.55228 15 8 15V16.5ZM8.75 16V15.99H7.25V16H8.75ZM11.5 16C11.5 15.7239 11.7239 15.5 12 15.5V17C12.5523 17 13 16.5523 13 16H11.5ZM12 15.5C12.2761 15.5 12.5 15.7239 12.5 16H11C11 16.5523 11.4477 17 12 17V15.5ZM12.5 16C12.5 16.2761 12.2761 16.5 12 16.5V15C11.4477 15 11 15.4477 11 16H12.5ZM12 16.5C11.7239 16.5 11.5 16.2761 11.5 16H13C13 15.4477 12.5523 15 12 15V16.5ZM12.75 16V15.99H11.25V16H12.75ZM15.5 12C15.5 11.7239 15.7239 11.5 16 11.5V13C16.5523 13 17 12.5523 17 12H15.5ZM16 11.5C16.2761 11.5 16.5 11.7239 16.5 12H15C15 12.5523 15.4477 13 16 13V11.5ZM16.5 12C16.5 12.2761 16.2761 12.5 16 12.5V11C15.4477 11 15 11.4477 15 12H16.5ZM16 12.5C15.7239 12.5 15.5 12.2761 15.5 12H17C17 11.4477 16.5523 11 16 11V12.5ZM16.75 12V11.99H15.25V12H16.75Z\" fill=\"currentColor\"/>',\n category: \"Time & Date\",\n },\n IconCalendarClock: {\n title: \"calendar-clock, date-time\",\n svg: '<path d=\"M2.48916 10.1205L3.93623 18.3272L10.1143 17.2378M2.48916 10.1205L1.76562 6.0171L15.0605 3.67285L15.7083 7.3465M2.48916 10.1205L13.25 8.22304M16 11.75V14L18 16M22.25 14C22.25 17.4518 19.4518 20.25 16 20.25C12.5482 20.25 9.75 17.4518 9.75 14C9.75 10.5482 12.5482 7.75003 16 7.75003C19.4518 7.75003 22.25 10.5482 22.25 14Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendar3: {\n title: \"calendar-3, date\",\n svg: '<path d=\"M7.75 8.75H16.25M7.75 4.75V2.75M16.25 4.75V2.75M3.75 4.75H20.25V20.25H3.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendar4: {\n title: \"calendar-4, date\",\n svg: '<path d=\"M7.75 4.75V2.75M16.25 4.75V2.75M3.75 4.75H20.25V20.25H3.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalender5: {\n title: \"calender-5,date\",\n svg: '<path d=\"M3.75 8.25V20.25H20.25V8.25M3.75 8.25V3.75H7.75M3.75 8.25H20.25M20.25 8.25V3.75H16.25M7.75 3.75V5.29688M7.75 3.75H16.25M16.25 3.75V5.29688\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendarSearch4: {\n title: \"calendar-search-4\",\n svg: '<path d=\"M7.75 4.75V2.75M16.25 4.75V2.75M14 14.25L15.25 15.5M3.75 4.75H20.25V20.25H3.75V4.75ZM14.75 12C14.75 13.6569 13.4069 15 11.75 15C10.0931 15 8.75 13.6569 8.75 12C8.75 10.3431 10.0931 9 11.75 9C13.4069 9 14.75 10.3431 14.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendarRemove4: {\n title: \"calendar-remove-4\",\n svg: '<path d=\"M7.75 4.75V2.75M16.25 4.75V2.75M9.49802 10L14.4997 15.0017M14.5017 10L9.5 15.0017M3.75 4.75H20.25V20.25H3.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendarAdd4: {\n title: \"calendar-add-4\",\n svg: '<path d=\"M7.75 4.75V2.75M16.25 4.75V2.75M11.9991 9.75V15.25M14.75 12.5H9.25M3.75 4.75H20.25V20.25H3.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendarCheck4: {\n title: \"calendar-check-4\",\n svg: '<path d=\"M7.75 4.75V2.75M16.25 4.75V2.75M9.25 12.775L10.9 14.425L14.75 10.575M3.75 4.75H20.25V20.25H3.75V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconCalendarClock4: {\n title: \"calendar-clock-4\",\n svg: '<path d=\"M20.25 8.75V4.75H3.75V20.25H8.75M7.75 4.75V2.75M16.25 4.75V2.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"17\" cy=\"17\" r=\"5.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 14.75V16.9996L18.75 18.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconClockSquare: {\n title: \"clock-square, time, timer\",\n svg: '<path d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"5.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 9.75V11.9996L13.75 13.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconClock: {\n title: \"clock, time, timer\",\n svg: '<path d=\"M12 7.75V12L14.75 14.75M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconHistory: {\n title: \"history, back, timeline\",\n svg: '<path d=\"M12 7.75V12L15.5 15.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 4.75V8.75H6.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.25 15.0833C4.52169 18.676 7.95303 21.25 11.9864 21.25C17.1026 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1026 2.75 11.9864 2.75C8.14808 2.75 4.85497 5.08106 3.44947 8.40278\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconClockAlert: {\n title: \"clock-alert, timer\",\n svg: '<path d=\"M2 5.25L5 2.25M22 5.25L19 2.25M12 8V12L14.5 14.5M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconClockSnooze: {\n title: \"clock-snooze, timer, snooze, zz\",\n svg: '<path d=\"M18.75 1C18.3358 1 18 1.33579 18 1.75C18 2.16421 18.3358 2.5 18.75 2.5V1ZM22.25 1.75L22.842 2.21046C23.0179 1.98435 23.0496 1.67781 22.9237 1.42049C22.7979 1.16316 22.5364 1 22.25 1V1.75ZM18.75 6.25L18.158 5.78954C17.9821 6.01565 17.9504 6.32219 18.0763 6.57951C18.2021 6.83684 18.4635 7 18.75 7V6.25ZM22.25 7C22.6642 7 23 6.66421 23 6.25C23 5.83579 22.6642 5.5 22.25 5.5V7ZM12.75 7.75C12.75 7.33579 12.4142 7 12 7C11.5858 7 11.25 7.33579 11.25 7.75H12.75ZM12 12H11.25C11.25 12.1989 11.329 12.3897 11.4697 12.5303L12 12ZM13.9697 15.0303C14.2626 15.3232 14.7374 15.3232 15.0303 15.0303C15.3232 14.7374 15.3232 14.2626 15.0303 13.9697L13.9697 15.0303ZM15.216 4.12926C15.5994 4.28609 16.0373 4.10243 16.1942 3.71906C16.351 3.33568 16.1673 2.89776 15.784 2.74093L15.216 4.12926ZM21.6304 9.29774C21.5187 8.89887 21.1048 8.66608 20.7059 8.77779C20.3071 8.88949 20.0743 9.3034 20.186 9.70226L21.6304 9.29774ZM18.75 2.5H22.25V1H18.75V2.5ZM21.658 1.28954L18.158 5.78954L19.342 6.71046L22.842 2.21046L21.658 1.28954ZM18.75 7H22.25V5.5H18.75V7ZM11.25 7.75V12H12.75V7.75H11.25ZM11.4697 12.5303L13.9697 15.0303L15.0303 13.9697L12.5303 11.4697L11.4697 12.5303ZM20.5 12C20.5 16.6944 16.6944 20.5 12 20.5V22C17.5228 22 22 17.5228 22 12H20.5ZM12 20.5C7.30558 20.5 3.5 16.6944 3.5 12H2C2 17.5228 6.47715 22 12 22V20.5ZM3.5 12C3.5 7.30558 7.30558 3.5 12 3.5V2C6.47715 2 2 6.47715 2 12H3.5ZM12 3.5C13.1396 3.5 14.225 3.72384 15.216 4.12926L15.784 2.74093C14.6157 2.26304 13.3377 2 12 2V3.5ZM20.186 9.70226C20.3904 10.4323 20.5 11.2027 20.5 12H22C22 11.0647 21.8714 10.1581 21.6304 9.29774L20.186 9.70226Z\" fill=\"currentColor\"/>',\n category: \"Time & Date\",\n },\n IconSleep: {\n title: \"sleep, snooze, zzz\",\n svg: '<path d=\"M3.75 8.75H8.25L3.75 15.25H8.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.75 2.75H15.75L11.75 8.25H15.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 12.75H19.25L12.75 21.25H19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconStopwatch: {\n title: \"stopwatch, track\",\n svg: '<path d=\"M9.75 2.25H14.25M12 13L9 10M20.25 13C20.25 17.5563 16.5563 21.25 12 21.25C7.44365 21.25 3.75 17.5563 3.75 13C3.75 8.44365 7.44365 4.75 12 4.75C16.5563 4.75 20.25 8.44365 20.25 13Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Time & Date\",\n },\n IconTimeFlies: {\n title: \"time-flies, speed\",\n svg: '<circle cx=\"15\" cy=\"12\" r=\"7.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M1.75 12H4.25M2.75 16.25H5.25M2.75 7.75H5.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15 8.75V12L17 14\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconHourglass: {\n title: \"hourglass\",\n svg: '<path d=\"M12 12L5.75 8V2.75H18.25V8L12 12ZM12 12L18.25 16V21.25H5.75V16L12 12ZM20.25 21.25H3.75M20.25 2.75H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconDateDaily: {\n title: \"date-daily\",\n svg: '<path d=\"M13.75 12C13.75 12.9665 12.9665 13.75 12 13.75C11.0335 13.75 10.25 12.9665 10.25 12C10.25 11.0335 11.0335 10.25 12 10.25C12.9665 10.25 13.75 11.0335 13.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M13.75 5.5C13.75 6.4665 12.9665 7.25 12 7.25C11.0335 7.25 10.25 6.4665 10.25 5.5C10.25 4.5335 11.0335 3.75 12 3.75C12.9665 3.75 13.75 4.5335 13.75 5.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M20.25 12C20.25 12.9665 19.4665 13.75 18.5 13.75C17.5335 13.75 16.75 12.9665 16.75 12C16.75 11.0335 17.5335 10.25 18.5 10.25C19.4665 10.25 20.25 11.0335 20.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M20.25 5.5C20.25 6.4665 19.4665 7.25 18.5 7.25C17.5335 7.25 16.75 6.4665 16.75 5.5C16.75 4.5335 17.5335 3.75 18.5 3.75C19.4665 3.75 20.25 4.5335 20.25 5.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M13.75 18.5C13.75 19.4665 12.9665 20.25 12 20.25C11.0335 20.25 10.25 19.4665 10.25 18.5C10.25 17.5335 11.0335 16.75 12 16.75C12.9665 16.75 13.75 17.5335 13.75 18.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M7.25 12C7.25 12.9665 6.4665 13.75 5.5 13.75C4.5335 13.75 3.75 12.9665 3.75 12C3.75 11.0335 4.5335 10.25 5.5 10.25C6.4665 10.25 7.25 11.0335 7.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M7.25 18.5C7.25 19.4665 6.4665 20.25 5.5 20.25C4.5335 20.25 3.75 19.4665 3.75 18.5C3.75 17.5335 4.5335 16.75 5.5 16.75C6.4665 16.75 7.25 17.5335 7.25 18.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Time & Date\",\n },\n IconDateWeekly: {\n title: \"date-weekly\",\n svg: '<path d=\"M19.25 5.5C19.25 5.91421 18.9142 6.25 18.5 6.25C18.0858 6.25 17.75 5.91421 17.75 5.5C17.75 5.08579 18.0858 4.75 18.5 4.75C18.9142 4.75 19.25 5.08579 19.25 5.5Z\" fill=\"currentColor\"/><path d=\"M19.25 12C19.25 12.4142 18.9142 12.75 18.5 12.75C18.0858 12.75 17.75 12.4142 17.75 12C17.75 11.5858 18.0858 11.25 18.5 11.25C18.9142 11.25 19.25 11.5858 19.25 12Z\" fill=\"currentColor\"/><path d=\"M6.25 12C6.25 12.4142 5.91421 12.75 5.5 12.75C5.08579 12.75 4.75 12.4142 4.75 12C4.75 11.5858 5.08579 11.25 5.5 11.25C5.91421 11.25 6.25 11.5858 6.25 12Z\" fill=\"currentColor\"/><path d=\"M6.25 18.5C6.25 18.9142 5.91421 19.25 5.5 19.25C5.08579 19.25 4.75 18.9142 4.75 18.5C4.75 18.0858 5.08579 17.75 5.5 17.75C5.91421 17.75 6.25 18.0858 6.25 18.5Z\" fill=\"currentColor\"/><path d=\"M13.75 12C13.75 12.9665 12.9665 13.75 12 13.75C11.0335 13.75 10.25 12.9665 10.25 12C10.25 11.0335 11.0335 10.25 12 10.25C12.9665 10.25 13.75 11.0335 13.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M13.75 5.5C13.75 6.4665 12.9665 7.25 12 7.25C11.0335 7.25 10.25 6.4665 10.25 5.5C10.25 4.5335 11.0335 3.75 12 3.75C12.9665 3.75 13.75 4.5335 13.75 5.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M13.75 18.5C13.75 19.4665 12.9665 20.25 12 20.25C11.0335 20.25 10.25 19.4665 10.25 18.5C10.25 17.5335 11.0335 16.75 12 16.75C12.9665 16.75 13.75 17.5335 13.75 18.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M19.25 5.5C19.25 5.91421 18.9142 6.25 18.5 6.25C18.0858 6.25 17.75 5.91421 17.75 5.5C17.75 5.08579 18.0858 4.75 18.5 4.75C18.9142 4.75 19.25 5.08579 19.25 5.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M19.25 12C19.25 12.4142 18.9142 12.75 18.5 12.75C18.0858 12.75 17.75 12.4142 17.75 12C17.75 11.5858 18.0858 11.25 18.5 11.25C18.9142 11.25 19.25 11.5858 19.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M6.25 12C6.25 12.4142 5.91421 12.75 5.5 12.75C5.08579 12.75 4.75 12.4142 4.75 12C4.75 11.5858 5.08579 11.25 5.5 11.25C5.91421 11.25 6.25 11.5858 6.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M6.25 18.5C6.25 18.9142 5.91421 19.25 5.5 19.25C5.08579 19.25 4.75 18.9142 4.75 18.5C4.75 18.0858 5.08579 17.75 5.5 17.75C5.91421 17.75 6.25 18.0858 6.25 18.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Time & Date\",\n },\n IconDateWeekdays: {\n title: \"date-weekdays\",\n svg: '<path d=\"M19.25 5.5C19.25 5.91421 18.9142 6.25 18.5 6.25C18.0858 6.25 17.75 5.91421 17.75 5.5C17.75 5.08579 18.0858 4.75 18.5 4.75C18.9142 4.75 19.25 5.08579 19.25 5.5Z\" fill=\"currentColor\"/><path d=\"M19.25 12C19.25 12.4142 18.9142 12.75 18.5 12.75C18.0858 12.75 17.75 12.4142 17.75 12C17.75 11.5858 18.0858 11.25 18.5 11.25C18.9142 11.25 19.25 11.5858 19.25 12Z\" fill=\"currentColor\"/><path d=\"M13.75 12C13.75 12.9665 12.9665 13.75 12 13.75C11.0335 13.75 10.25 12.9665 10.25 12C10.25 11.0335 11.0335 10.25 12 10.25C12.9665 10.25 13.75 11.0335 13.75 12Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M13.75 5.5C13.75 6.4665 12.9665 7.25 12 7.25C11.0335 7.25 10.25 6.4665 10.25 5.5C10.25 4.5335 11.0335 3.75 12 3.75C12.9665 3.75 13.75 4.5335 13.75 5.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M13.75 18.5C13.75 19.4665 12.9665 20.25 12 20.25C11.0335 20.25 10.25 19.4665 10.25 18.5C10.25 17.5335 11.0335 16.75 12 16.75C12.9665 16.75 13.75 17.5335 13.75 18.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M19.25 5.5C19.25 5.91421 18.9142 6.25 18.5 6.25C18.0858 6.25 17.75 5.91421 17.75 5.5C17.75 5.08579 18.0858 4.75 18.5 4.75C18.9142 4.75 19.25 5.08579 19.25 5.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M19.25 12C19.25 12.4142 18.9142 12.75 18.5 12.75C18.0858 12.75 17.75 12.4142 17.75 12C17.75 11.5858 18.0858 11.25 18.5 11.25C18.9142 11.25 19.25 11.5858 19.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M7.25 12C7.25 12.9665 6.4665 13.75 5.5 13.75C4.5335 13.75 3.75 12.9665 3.75 12C3.75 11.0335 4.5335 10.25 5.5 10.25C6.4665 10.25 7.25 11.0335 7.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M7.25 18.5C7.25 19.4665 6.4665 20.25 5.5 20.25C4.5335 20.25 3.75 19.4665 3.75 18.5C3.75 17.5335 4.5335 16.75 5.5 16.75C6.4665 16.75 7.25 17.5335 7.25 18.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Time & Date\",\n },\n IconDateMonthly: {\n title: \"date-monthly\",\n svg: '<path d=\"M19.25 5.5C19.25 5.91421 18.9142 6.25 18.5 6.25C18.0858 6.25 17.75 5.91421 17.75 5.5C17.75 5.08579 18.0858 4.75 18.5 4.75C18.9142 4.75 19.25 5.08579 19.25 5.5Z\" fill=\"currentColor\"/><path d=\"M19.25 12C19.25 12.4142 18.9142 12.75 18.5 12.75C18.0858 12.75 17.75 12.4142 17.75 12C17.75 11.5858 18.0858 11.25 18.5 11.25C18.9142 11.25 19.25 11.5858 19.25 12Z\" fill=\"currentColor\"/><path d=\"M6.25 12C6.25 12.4142 5.91421 12.75 5.5 12.75C5.08579 12.75 4.75 12.4142 4.75 12C4.75 11.5858 5.08579 11.25 5.5 11.25C5.91421 11.25 6.25 11.5858 6.25 12Z\" fill=\"currentColor\"/><path d=\"M6.25 18.5C6.25 18.9142 5.91421 19.25 5.5 19.25C5.08579 19.25 4.75 18.9142 4.75 18.5C4.75 18.0858 5.08579 17.75 5.5 17.75C5.91421 17.75 6.25 18.0858 6.25 18.5Z\" fill=\"currentColor\"/><path d=\"M12.75 12C12.75 12.4142 12.4142 12.75 12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12Z\" fill=\"currentColor\"/><path d=\"M12.75 18.5C12.75 18.9142 12.4142 19.25 12 19.25C11.5858 19.25 11.25 18.9142 11.25 18.5C11.25 18.0858 11.5858 17.75 12 17.75C12.4142 17.75 12.75 18.0858 12.75 18.5Z\" fill=\"currentColor\"/><path d=\"M13.75 5.5C13.75 6.4665 12.9665 7.25 12 7.25C11.0335 7.25 10.25 6.4665 10.25 5.5C10.25 4.5335 11.0335 3.75 12 3.75C12.9665 3.75 13.75 4.5335 13.75 5.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M19.25 5.5C19.25 5.91421 18.9142 6.25 18.5 6.25C18.0858 6.25 17.75 5.91421 17.75 5.5C17.75 5.08579 18.0858 4.75 18.5 4.75C18.9142 4.75 19.25 5.08579 19.25 5.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M19.25 12C19.25 12.4142 18.9142 12.75 18.5 12.75C18.0858 12.75 17.75 12.4142 17.75 12C17.75 11.5858 18.0858 11.25 18.5 11.25C18.9142 11.25 19.25 11.5858 19.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M6.25 12C6.25 12.4142 5.91421 12.75 5.5 12.75C5.08579 12.75 4.75 12.4142 4.75 12C4.75 11.5858 5.08579 11.25 5.5 11.25C5.91421 11.25 6.25 11.5858 6.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M6.25 18.5C6.25 18.9142 5.91421 19.25 5.5 19.25C5.08579 19.25 4.75 18.9142 4.75 18.5C4.75 18.0858 5.08579 17.75 5.5 17.75C5.91421 17.75 6.25 18.0858 6.25 18.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M12.75 12C12.75 12.4142 12.4142 12.75 12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M12.75 18.5C12.75 18.9142 12.4142 19.25 12 19.25C11.5858 19.25 11.25 18.9142 11.25 18.5C11.25 18.0858 11.5858 17.75 12 17.75C12.4142 17.75 12.75 18.0858 12.75 18.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Time & Date\",\n },\n IconDateCustom: {\n title: \"date-custom\",\n svg: '<path d=\"M19.25 5.5C19.25 5.91421 18.9142 6.25 18.5 6.25C18.0858 6.25 17.75 5.91421 17.75 5.5C17.75 5.08579 18.0858 4.75 18.5 4.75C18.9142 4.75 19.25 5.08579 19.25 5.5Z\" fill=\"currentColor\"/><path d=\"M19.25 12C19.25 12.4142 18.9142 12.75 18.5 12.75C18.0858 12.75 17.75 12.4142 17.75 12C17.75 11.5858 18.0858 11.25 18.5 11.25C18.9142 11.25 19.25 11.5858 19.25 12Z\" fill=\"currentColor\"/><path d=\"M6.25 12C6.25 12.4142 5.91421 12.75 5.5 12.75C5.08579 12.75 4.75 12.4142 4.75 12C4.75 11.5858 5.08579 11.25 5.5 11.25C5.91421 11.25 6.25 11.5858 6.25 12Z\" fill=\"currentColor\"/><path d=\"M6.25 18.5C6.25 18.9142 5.91421 19.25 5.5 19.25C5.08579 19.25 4.75 18.9142 4.75 18.5C4.75 18.0858 5.08579 17.75 5.5 17.75C5.91421 17.75 6.25 18.0858 6.25 18.5Z\" fill=\"currentColor\"/><path d=\"M12.75 5.5C12.75 5.91421 12.4142 6.25 12 6.25C11.5858 6.25 11.25 5.91421 11.25 5.5C11.25 5.08579 11.5858 4.75 12 4.75C12.4142 4.75 12.75 5.08579 12.75 5.5Z\" fill=\"currentColor\"/><path d=\"M12.75 18.5C12.75 18.9142 12.4142 19.25 12 19.25C11.5858 19.25 11.25 18.9142 11.25 18.5C11.25 18.0858 11.5858 17.75 12 17.75C12.4142 17.75 12.75 18.0858 12.75 18.5Z\" fill=\"currentColor\"/><path d=\"M19.25 5.5C19.25 5.91421 18.9142 6.25 18.5 6.25C18.0858 6.25 17.75 5.91421 17.75 5.5C17.75 5.08579 18.0858 4.75 18.5 4.75C18.9142 4.75 19.25 5.08579 19.25 5.5Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M19.25 12C19.25 12.4142 18.9142 12.75 18.5 12.75C18.0858 12.75 17.75 12.4142 17.75 12C17.75 11.5858 18.0858 11.25 18.5 11.25C18.9142 11.25 19.25 11.5858 19.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M6.25 12C6.25 12.4142 5.91421 12.75 5.5 12.75C5.08579 12.75 4.75 12.4142 4.75 12C4.75 11.5858 5.08579 11.25 5.5 11.25C5.91421 11.25 6.25 11.5858 6.25 12Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M6.25 18.5C6.25 18.9142 5.91421 19.25 5.5 19.25C5.08579 19.25 4.75 18.9142 4.75 18.5C4.75 18.0858 5.08579 17.75 5.5 17.75C5.91421 17.75 6.25 18.0858 6.25 18.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M12.75 5.5C12.75 5.91421 12.4142 6.25 12 6.25C11.5858 6.25 11.25 5.91421 11.25 5.5C11.25 5.08579 11.5858 4.75 12 4.75C12.4142 4.75 12.75 5.08579 12.75 5.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M12.75 18.5C12.75 18.9142 12.4142 19.25 12 19.25C11.5858 19.25 11.25 18.9142 11.25 18.5C11.25 18.0858 11.5858 17.75 12 17.75C12.4142 17.75 12.75 18.0858 12.75 18.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>',\n category: \"Time & Date\",\n },\n IconDateYearly: {\n title: \"date-yearly,fireworks,new-year\",\n svg: '<path d=\"M12 6.25V1.75M12 20.25V15.75M7.25 11H2.75M21.25 11H16.75M8.64121 7.64121L7 6M17 16L15.3587 14.3587M15.3588 7.64123L17 6.00002\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.75 21.2499C5.00002 17.9999 6.54068 16.2435 8.64136 14.3586\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.5 11C13.5 11.8284 12.8284 12.5 12 12.5C11.1716 12.5 10.5 11.8284 10.5 11C10.5 10.1716 11.1716 9.5 12 9.5C12.8284 9.5 13.5 10.1716 13.5 11Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Time & Date\",\n },\n IconAlignmentCenter: {\n title: \"alignment-center\",\n svg: '<path d=\"M3.75 4.75H20.25M7.75 12H16.25M3.75 19.25H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconAlignmentLeft: {\n title: \"alignment-left\",\n svg: '<path d=\"M3.75 4.75H20.25M3.75 12H12.25M3.75 19.25H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconAlignmentRight: {\n title: \"alignment-right\",\n svg: '<path d=\"M3.75 4.75H20.25M11.75 12H20.25M3.75 19.25H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconAlignmentJustify: {\n title: \"alignment-justify\",\n svg: '<path d=\"M3.75 4.75H20.25M3.75 12H20.25M3.75 19.25H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconLineHeight: {\n title: \"line-height, spacing, eleborate\",\n svg: '<path d=\"M2.75 4.75H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 19.25H21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 10L12 7.75L14.25 10\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 14.25L12 16.5L14.25 14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconConcise: {\n title: \"concise, text-shorten, squeeze\",\n svg: '<path d=\"M3.75 10.25H20.25M20.25 13.75H3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9 20.25L12 17.25L15 20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15 3.75L12 6.75L9 3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconSpacer: {\n title: \"spacer,seperator\",\n svg: '<path d=\"M2.75 4.75H21.25M2.75 12H5.25M10.75 12H13.25M18.75 12H21.25M2.75 19.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconDivider: {\n title: \"divider, add-line\",\n svg: '<path d=\"M2.75 12H21.25M2.75 4.75H5.25M10.75 4.75H13.25M18.75 4.75H21.25M2.75 19.25H5.25M10.75 19.25H13.25M18.75 19.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconAlignmentLeftBar: {\n title: \"alignment-left-bar\",\n svg: '<path d=\"M2.75 4.75V19.25M7.75 6.25H21.25M7.75 12H21.25M7.75 17.75H16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconVerticalAlignmentLeft: {\n title: \"vertical-alignment-left\",\n svg: '<path d=\"M3.75 3.75V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.25 6.75H6.75V10.25H20.25V6.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.25 13.75H6.75V17.25H16.25V13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconVerticalAlignmentCenter: {\n title: \"vertical-alignment-center\",\n svg: '<path d=\"M12 3.75V6.75M12 17.25V20.25M12 10.25V13.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.25 6.75H4.75V10.25H19.25V6.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.25 13.75H6.75V17.25H17.25V13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconVerticalAlignmentRight: {\n title: \"vertical-alignment-right\",\n svg: '<path d=\"M20.25 3.75V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M17.25 6.75H3.75V10.25H17.25V6.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.25 13.75H7.75V17.25H17.25V13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconHorizontalAlignmentTop: {\n title: \"horizontal-alignment-top\",\n svg: '<path d=\"M3.75 3.75H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.75 6.75V16.25H17.25V6.75H13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 6.75V20.25H10.25V6.75H6.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconHorizontalAlignmentCenter: {\n title: \"horizontal-alignment-center\",\n svg: '<path d=\"M3.75 12H6.75M17.25 12H20.25M10.25 12H13.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.75 4.75V19.75H10.25V4.75H6.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 6.75V17.25H17.25V6.75H13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconHorizontalAlignmentBottom: {\n title: \"horizontal-alignment-bottom\",\n svg: '<path d=\"M3.75 20.25H20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.75 7.75V17.25H17.25V7.75H13.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.75 3.75V17.25H10.25V3.75H6.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconTextSelectDashed: {\n title: \"text-select-dashed, lollipops\",\n svg: '<path d=\"M4.25 7.25V18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.75 5.75V16.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"4.25\" cy=\"5\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"19.75\" cy=\"19\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.75 5.75H11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.75 5.75H16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.75 18.25H9.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 18.25H14.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconTextSelect: {\n title: \"text-select, lollipops\",\n svg: '<path d=\"M4.25 7.25V18.75H13.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19.75 16.75V5.25H10.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"4.25\" cy=\"5\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"19.75\" cy=\"19\" r=\"2.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 10.25H14.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 13.75H12.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconBold: {\n title: \"bold\",\n svg: '<path d=\"M5.74219 12H13.252C15.4611 12 17.252 10.2091 17.252 8V7.75C17.252 5.54086 15.4611 3.75 13.252 3.75H5.74219V12ZM5.74219 12V20.25H12.502M13.0022 20.25H14.2522C16.4613 20.25 18.2522 18.4591 18.2522 16.25V16C18.2522 13.7909 16.4613 12 14.2522 12H13.0022\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconItalic: {\n title: \"italic\",\n svg: '<path d=\"M9.75 3.75L14.5 3.75M19.25 3.75L14.5 3.75M14.5 3.75L9.5 20.25M9.5 20.25H4.75M9.5 20.25L14.2601 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconStrikeThrough: {\n title: \"strike-through\",\n svg: '<path d=\"M17.5778 6.86111C17.3271 5.65617 16.2789 2.75 12.0017 2.75C7.89058 2.75 6.34892 5.42341 6.34892 7.375C6.34892 10.4127 9.15452 11.2058 12.0017 11.9657M5.96875 17.1389C6.3534 18.3438 7.72446 21.25 12.0017 21.25C16.1128 21.25 17.9114 18.5766 17.9114 16.625C17.9114 15.8732 17.7396 15.259 17.4378 14.7486\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M2.75 12H21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>',\n category: \"Typography\",\n },\n IconUnderline: {\n title: \"underline\",\n svg: '<path d=\"M5.75 20.75H18.25M5.75 3.75V12C5.75 15.4518 8.54822 18.25 12 18.25C15.4518 18.25 18.25 15.4518 18.25 12V3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/>',\n category: \"Typography\",\n },\n IconRemoveTextstyle: {\n title: \"remove-textstyle\",\n svg: '<path d=\"M8.75 3.75H11.9M11.9 3.75H19.25M11.9 3.75L11.3906 7.75209M9.8 20.25L10.9184 11.4629M2.75 3.75L20.25 19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconTextMotion: {\n title: \"text-motion, text-animation\",\n svg: '<path d=\"M12.25 14.25H18.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M5.75 6.75H10.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M2.75 12H8.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M3.75 17.25H6.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M9.75 19.25L15.5 4.75L21.25 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconBulletList: {\n title: \"bullet-list\",\n svg: '<path d=\"M11.75 16.75H20.25M11.75 7.25H20.25M7.75 7.25C7.75 8.35457 6.85457 9.25 5.75 9.25C4.64543 9.25 3.75 8.35457 3.75 7.25C3.75 6.14543 4.64543 5.25 5.75 5.25C6.85457 5.25 7.75 6.14543 7.75 7.25ZM7.75 16.75C7.75 17.8546 6.85457 18.75 5.75 18.75C4.64543 18.75 3.75 17.8546 3.75 16.75C3.75 15.6454 4.64543 14.75 5.75 14.75C6.85457 14.75 7.75 15.6454 7.75 16.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconNumberedList: {\n title: \"numbered-list\",\n svg: '<path d=\"M11.75 16.75H20.25M11.75 7.25H20.25M6.25 9.75V4.75L3.75 6.5M4 14.9318C4 14.9318 4.72373 14.25 5.60886 14.25C6.494 14.25 7.21154 14.8719 7.21154 15.639C7.21154 17.4385 3.75 17.75 3.75 19.25H7.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconTextBlock: {\n title: \"text-block\",\n svg: '<path d=\"M12.75 5.25H20.25M12.75 8.75H17.25M12.75 15.25H20.25M12.75 18.75H17.25M3.75 4.75H8.25V9.25H3.75V4.75ZM3.75 14.75H8.25V19.25H3.75V14.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconWrite: {\n title: \"write, edit-list, list\",\n svg: '<path d=\"M3.75195 3.75H20.252M3.75195 7.75H10.252M3.75 11.75H7.2522M17.2384 7.75L21.252 11.7635L11.7655 21.25H7.75195V17.2365L17.2384 7.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconTextIndentLeft: {\n title: \"text-indent-left\",\n svg: '<path d=\"M9.75 5.75H21.25M9.75 18.25H21.25M9.75 12H21.25M4.5 12L3.5 12M2.75 10V14L5.75 12L2.75 10Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconTextIndentRight: {\n title: \"text-indent-right\",\n svg: '<path d=\"M14.25 5.75H2.75M14.25 18.25H2.75M14.25 12H2.75M19.5 12L20.5 12M21.25 10V14L18.25 12L21.25 10Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconTextSize: {\n title: \"text-size\",\n svg: '<path d=\"M6.92676 20.25V10.999M22.25 4.75H9.75M12.25 11H1.75M16 5V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconText1: {\n title: \"text-1\",\n svg: '<path d=\"M3.75 6.25V3.75H12M20.25 6.25V3.75H12M12 3.75V20.25M12 20.25H9.75M12 20.25H14.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconText2: {\n title: \"text-2\",\n svg: '<path d=\"M3.75 3.75H12M20.25 3.75H12M12 3.75V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconTextIndicator: {\n title: \"text-indicator\",\n svg: '<path d=\"M2.75 5.75H8M8 5.75H13.25M8 5.75V18.25M16.75 2.75H19M19 2.75H21.25M19 2.75V21.25M19 21.25H16.75M19 21.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconParagraph: {\n title: \"paragraph\",\n svg: '<path d=\"M20.25 3.75H15.25M9.75 12.25H7.75C5.40279 12.25 3.5 10.3472 3.5 8V8C3.5 5.65279 5.40279 3.75 7.75 3.75H9.75M9.75 12.25V20.1725M9.75 12.25V3.75M9.75 3.75H15.25M15.25 3.75V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconTitleCase: {\n title: \"title-case\",\n svg: '<path d=\"M2.00797 18.6469C2.52996 18.6469 2.82695 18.3949 3.01594 17.81L3.99691 15.02H8.96477L9.95475 17.819C10.1347 18.3949 10.4317 18.6469 10.9717 18.6469C11.5567 18.6469 11.9797 18.2599 11.9797 17.729C11.9797 17.558 11.9437 17.387 11.8537 17.135L7.8938 6.41628C7.62381 5.69631 7.19182 5.37231 6.48984 5.37231C5.77886 5.37231 5.33788 5.7053 5.07688 6.42528L1.126 17.135C1.036 17.378 1 17.576 1 17.729C1 18.2779 1.40499 18.6469 2.00797 18.6469ZM4.5099 13.3731L6.44485 7.67625H6.49884L8.45179 13.3731H4.5099Z\" fill=\"currentColor\"/><path d=\"M17.1041 18.6649C18.3371 18.6649 19.5431 17.999 20.0921 16.946H20.1371V17.747C20.1551 18.3229 20.524 18.6739 21.064 18.6739C21.613 18.6739 22 18.3049 22 17.693V11.9781C22 10.0792 20.533 8.86422 18.2381 8.86422C16.5372 8.86422 15.1062 9.5482 14.6112 10.6192C14.4942 10.8352 14.4402 11.0512 14.4402 11.2491C14.4402 11.7351 14.7912 12.0591 15.2772 12.0591C15.6192 12.0591 15.8712 11.9331 16.0692 11.6451C16.6092 10.7812 17.2301 10.4482 18.1661 10.4482C19.3541 10.4482 20.0651 11.0782 20.0651 12.1311V12.8601L17.4641 13.0131C15.2232 13.1391 13.9452 14.1561 13.9452 15.812C13.9452 17.513 15.2502 18.6649 17.1041 18.6649ZM17.6351 17.126C16.6002 17.126 15.9072 16.586 15.9072 15.758C15.9072 14.948 16.5642 14.4351 17.7251 14.3541L20.0651 14.2101V14.957C20.0651 16.19 18.9941 17.126 17.6351 17.126Z\" fill=\"currentColor\"/>',\n category: \"Typography\",\n },\n IconTextColor: {\n title: \"text-color\",\n svg: '<path d=\"M21.25 7.4375C21.25 8.88725 20.0188 10.25 18.5 10.25C16.9812 10.25 15.75 8.88725 15.75 7.4375C15.75 5.5625 18.5 2.75 18.5 2.75C18.5 2.75 21.25 5.5625 21.25 7.4375Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 20.25L10 4.75L17.25 20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 14.75H14\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconAutoCorrect: {\n title: \"auto-correct,autocheck, text-correction\",\n svg: '<path d=\"M2.75 19.25L10.0447 2.75L15.06 14.0938H5.3553\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.75 18.75L16.25 21.25L21.25 13.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconSubscript: {\n title: \"subscript\",\n svg: '<path d=\"M21.25 20.25H16.75C16.75 17.75 21.25 17.4352 21.25 14.9459C21.25 13.6227 20.2485 12.75 19.0058 12.75C17.9336 12.75 17.1989 13.3949 16.9025 14.2455\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 5.75L13.25 18.25M13.25 5.75L2.75 18.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconSuperscript: {\n title: \"superscript\",\n svg: '<path d=\"M21.25 11.25H16.75C16.75 8.75 21.25 8.43516 21.25 5.9459C21.25 4.62271 20.2485 3.75 19.0058 3.75C17.9336 3.75 17.1989 4.39493 16.9025 5.24555\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M2.75 5.75L13.25 18.25M13.25 5.75L2.75 18.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconHeadline: {\n title: \"headline, heading\",\n svg: '<path d=\"M5.75 3.75H3.75M5.75 3.75H7.75M5.75 3.75V12M5.75 20.25H7.75M5.75 20.25H3.75M5.75 20.25V12M18.25 3.75H16.25M18.25 3.75H20.25M18.25 3.75V12M18.25 20.25H16.25M18.25 20.25H20.25M18.25 20.25V12M18.25 12H5.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconH1: {\n title: \"h1, heading, headline\",\n svg: '<path d=\"M2.75 4.75V12M2.75 19.25V12M13.25 4.75V12M13.25 19.25V12M13.25 12H2.75M18 13.5L21.25 10.75V19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconH2: {\n title: \"h2, heading, headline\",\n svg: '<path d=\"M13.25 4.75V12M13.25 12V19.25M13.25 12H2.75M2.75 4.75V12M2.75 12V19.25M22.25 19.25H17.75L21.6817 14.5413C22.0478 14.1524 22.25 13.5204 22.25 13C22.25 11.8264 21.3603 10.75 20 10.75C19.1672 10.75 18.44 11.1773 18.051 11.8125C17.9603 11.9725 17.897 12.1556 17.8527 12.3334\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconH3: {\n title: \"h3, heading, headline\",\n svg: '<path d=\"M13.25 4.75V12M13.25 12V19.25M13.25 12H2.75M2.75 4.75V12M2.75 12V19.25M18 11.8125C18.3938 11.1773 19.1297 10.75 19.9727 10.75C21.2304 10.75 22.25 11.7014 22.25 12.875C22.25 14.0486 21.2304 15 19.9727 15C21.2304 15 22.25 15.9514 22.25 17.125C22.25 18.2986 21.2304 19.25 19.9727 19.25C19.1297 19.25 18.3938 18.8227 18 18.1875\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconInsertHtml: {\n title: \"insert-html,code, brackets\",\n svg: '<path d=\"M17.25 7.75L21.25 12L17.25 16.25M6.75 16.25L2.75 12L6.75 7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconLinebreak: {\n title: \"linebreak,next-line\",\n svg: '<path d=\"M3.75 12H16.875C18.877 12 20.5 13.623 20.5 15.625C20.5 17.627 18.877 19.25 16.875 19.25H12.1832M3.75 19.25H7.25M3.75 4.75H20.25M14.25 16.75L11.75 19.25L14.25 21.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconTranslate: {\n title: \"translate,language\",\n svg: '<path d=\"M3.75 5.81641L12.25 5.81641\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8 5.75V3.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 14.25C7.93498 13.1983 5.84489 10.6138 5.25 6\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4 14C8.06352 12.9798 10.1538 10.4735 10.75 6\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 19.25L17 10.75L21.25 19.25M14.3438 17.125H19.6562\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconOpenQuote1: {\n title: \"open-quote-1,blockquote\",\n svg: '<path d=\"M13.7703 14.6042C13.7703 12.5906 15.4447 10.9583 17.5101 10.9583C19.5756 10.9583 21.25 12.5906 21.25 14.6042C21.25 16.6177 19.5756 18.25 17.5101 18.25C15.4447 18.25 13.7703 16.6177 13.7703 14.6042ZM13.7703 14.6042C13.5031 9.65625 15.9073 7.83333 19.1129 5.75M2.77028 14.6042C2.77028 12.5906 4.44467 10.9583 6.51014 10.9583C8.57561 10.9583 10.25 12.5906 10.25 14.6042C10.25 16.6177 8.57561 18.25 6.51014 18.25C4.44467 18.25 2.77028 16.6177 2.77028 14.6042ZM2.77028 14.6042C2.50314 9.65625 4.90734 7.83333 8.11294 5.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconCloseQuote1: {\n title: \"close-quote-1, blockquote\",\n svg: '<path d=\"M10.2297 9.39583C10.2297 11.4094 8.55533 13.0417 6.48986 13.0417C4.42439 13.0417 2.75 11.4094 2.75 9.39583C2.75 7.3823 4.42439 5.75 6.48986 5.75C8.55533 5.75 10.2297 7.3823 10.2297 9.39583ZM10.2297 9.39583C10.4969 14.3437 8.09266 16.1667 4.88706 18.25M21.2297 9.39583C21.2297 11.4094 19.5553 13.0417 17.4899 13.0417C15.4244 13.0417 13.75 11.4094 13.75 9.39583C13.75 7.3823 15.4244 5.75 17.4899 5.75C19.5553 5.75 21.2297 7.3823 21.2297 9.39583ZM21.2297 9.39583C21.4969 14.3437 19.0927 16.1667 15.8871 18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconOpenQuote2: {\n title: \"open-quote-2, blockquote\",\n svg: '<path d=\"M13.75 19.25H21.25V10.9643H17.75V4.75C17.75 4.75 13.75 6.30357 13.75 10.9643V19.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M2.75 19.25L10.25 19.25L10.25 10.9643H6.75V4.75C6.75 4.75 2.75 6.30357 2.75 10.9643V19.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconCloseQuote2: {\n title: \"close-quote-2, blockquote\",\n svg: '<path d=\"M10.25 4.75H2.75V13.0357H6.25V19.25C6.25 19.25 10.25 17.6964 10.25 13.0357V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/><path d=\"M21.25 4.75H13.75V13.0357H17.25V19.25C17.25 19.25 21.25 17.6964 21.25 13.0357V4.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconAlpha: {\n title: \"alpha\",\n svg: '<path d=\"M16.15 5.78571C15.5151 10.3083 13.2594 19.25 8.91667 19.25C5.50561 19.25 3.71951 15.625 3.75043 12C3.78135 8.375 5.62929 4.75 8.91667 4.75C15.1167 4.75 13.4692 19.25 17.1833 19.25C18.9832 19.25 19.25 17.1786 19.25 16.1429\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconBeta: {\n title: \"beta\",\n svg: '<path d=\"M7.83011 14.0441V8.38235C7.83011 5.82398 9.91517 3.75 12.5 3.75C17.7769 3.75 18.5 11.25 12.75 11.25M7.83011 14.0441V19.1699C7.83011 20.3187 6.89881 21.25 5.75 21.25M7.83011 14.0441C7.83011 16.8868 9.62797 19.25 12.5 19.25C18.4696 19.25 19.5 11.25 13 11.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconOmega: {\n title: \"omega, special-character\",\n svg: '<path d=\"M3.75 19.25V21.25H9.9375V17.8896C6.66721 16.99 4.26562 14.0037 4.26562 10.4583C4.26562 6.20114 7.72842 2.75 12 2.75C16.2716 2.75 19.7344 6.20114 19.7344 10.4583C19.7344 14.0037 17.3328 16.99 14.0625 17.8896L14.0625 21.25H20.25V19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Typography\",\n },\n IconSun: {\n title: \"sun, light-mode, day, today\",\n svg: '<path d=\"M11.9982 3.29071V1.76746M5.83985 18.1585L4.76275 19.2356M11.9982 22.2326V20.7093M19.2334 4.76456L18.1562 5.84166M20.707 12H22.2303M18.1562 18.1584L19.2334 19.2355M1.76562 12H3.28888M4.76267 4.7645L5.83977 5.8416M15.7104 8.28769C17.7606 10.3379 17.7606 13.6621 15.7104 15.7123C13.6601 17.7626 10.336 17.7626 8.28574 15.7123C6.23548 13.6621 6.23548 10.3379 8.28574 8.28769C10.336 6.23744 13.6601 6.23744 15.7104 8.28769Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconMoon: {\n title: \"moon, dark-mode, night\",\n svg: '<path d=\"M21.2481 11.8112C20.1889 12.5601 18.8958 13 17.5 13C13.9101 13 11 10.0899 11 6.50003C11 5.10419 11.44 3.81111 12.1888 2.75192C12.126 2.75066 12.0631 2.75003 12 2.75003C6.89137 2.75003 2.75 6.8914 2.75 12C2.75 17.1087 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1087 21.25 12C21.25 11.9369 21.2494 11.874 21.2481 11.8112Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconMoonStar: {\n title: \"moon-star, night\",\n svg: '<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.8644 3.57526C6.70688 4.13035 3.5 7.6907 3.5 12.0001C3.5 16.6945 7.30558 20.5001 12 20.5001C16.3094 20.5001 19.8697 17.2932 20.4248 13.1357C19.5298 13.5307 18.54 13.7501 17.5 13.7501C13.4959 13.7501 10.25 10.5041 10.25 6.50006C10.25 5.46002 10.4694 4.47021 10.8644 3.57526ZM2 12.0001C2 6.47721 6.47715 2.00006 12 2.00006C12.0681 2.00006 12.136 2.00074 12.2038 2.0021C12.4814 2.00766 12.7331 2.16605 12.8583 2.41383C12.9834 2.66161 12.9615 2.95825 12.8012 3.18492C12.139 4.12164 11.75 5.26431 11.75 6.50006C11.75 9.6757 14.3244 12.2501 17.5 12.2501C18.7358 12.2501 19.8784 11.8611 20.8151 11.1988C21.0418 11.0386 21.3384 11.0166 21.5862 11.1418C21.834 11.2669 21.9924 11.5187 21.998 11.7962C21.9993 11.864 22 11.9319 22 12.0001C22 17.5229 17.5228 22.0001 12 22.0001C6.47715 22.0001 2 17.5229 2 12.0001Z\" fill=\"currentColor\"/><path d=\"M16.2404 5.01762L17.052 3.39445C17.2363 3.02593 17.7622 3.02593 17.9464 3.39445L18.758 5.01762C18.8064 5.11438 18.8849 5.19285 18.9816 5.24123L20.6048 6.05281C20.9733 6.23707 20.9733 6.76298 20.6048 6.94724L18.9816 7.75882C18.8849 7.8072 18.8064 7.88567 18.758 7.98243L17.9464 9.6056C17.7622 9.97412 17.2363 9.97412 17.052 9.6056L16.2404 7.98243C16.1921 7.88567 16.1136 7.8072 16.0168 7.75882L14.3937 6.94724C14.0251 6.76298 14.0251 6.23707 14.3937 6.05281L16.0168 5.24123C16.1136 5.19285 16.1921 5.11438 16.2404 5.01762Z\" fill=\"currentColor\"/>',\n category: \"Weather\",\n },\n IconLightning: {\n title: \"lightning, zap, flash, thunder\",\n svg: '<path d=\"M3.75 12.75L8.75 2.75H18L15.25 8.25H21.25L6.75 21.25L8.89706 12.75H3.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconThunder: {\n title: \"thunder,zap, flash\",\n svg: '<path d=\"M20.25 10.25H13.0312L15.25 0.75L3.75 13.75H10.9688L8.75 23.25L20.25 10.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconSnowFlakes: {\n title: \"snow-flakes, freeze, frozen\",\n svg: '<path d=\"M11.9987 5.5V18.5M11.9987 5.5L9.51097 3M11.9987 5.5L14.4865 3M11.9987 18.5L9.51097 21M11.9987 18.5L14.4865 21M6.39836 8.74998L17.6016 15.25M6.39836 8.74998L3 9.66504M6.39836 8.74998L5.48777 5.33491M17.6016 15.25L18.5122 18.665M17.6016 15.25L21 14.3349M6.39836 15.25L17.6016 8.74998M6.39836 15.25L5.48777 18.665M6.39836 15.25L3 14.3349M17.6016 8.74998L21 9.66504M17.6016 8.74998L18.5122 5.33491\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconWind: {\n title: \"wind, windy\",\n svg: '<path d=\"M2.75 12H19.25C20.3546 12 21.25 11.1046 21.25 10C21.25 8.89544 20.3546 8.00001 19.25 8.00001C18.6341 8.00001 18.0832 8.27844 17.7163 8.7163M2.75 7.75001L11.25 7.75C12.3546 7.75 13.25 6.85457 13.25 5.75C13.25 4.64543 12.3546 3.75 11.25 3.75C10.6341 3.75 10.0869 4.02843 9.72 4.46629M2.75 16.25H15.25C16.3546 16.25 17.25 17.1454 17.25 18.25C17.25 19.3546 16.3546 20.25 15.25 20.25C14.57 20.25 13.9693 19.9107 13.6079 19.3921\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconCloudy: {\n title: \"cloudy, clouds\",\n svg: '<path d=\"M18.6152 10C18.9831 9.38088 19.1944 8.65692 19.1944 7.88333C19.1944 5.60056 17.3538 3.75 15.0833 3.75C13.171 3.75 11.5637 5.06271 11.1041 6.84075M8.91667 19.25C5.51091 19.25 2.75 16.4742 2.75 13.05C2.75 9.62583 5.51091 6.85 8.91667 6.85C9.65704 6.85 10.3669 6.98118 11.0246 7.22168C12.5748 7.78856 13.835 8.96283 14.5203 10.4583C15.1517 10.1333 15.867 9.95 16.625 9.95C17.2584 9.95 17.8621 10.078 18.4119 10.3098C20.079 11.0125 21.25 12.6687 21.25 14.6C21.25 17.1681 19.1793 19.25 16.625 19.25H8.91667Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconCloudySun: {\n title: \"cloudy-sun, clouds\",\n svg: '<path d=\"M22.25 9.75H23.25M15.25 2.75V1.75M20.1997 4.80025L20.9069 4.09315M9.59375 4.09315L10.3009 4.80026M18.5495 12.0119C18.9914 11.3686 19.25 10.5895 19.25 9.75C19.25 7.54086 17.4591 5.75 15.25 5.75C13.2972 5.75 11.6713 7.14935 11.3202 9M16.625 11.95C15.867 11.95 15.1517 12.1333 14.5203 12.4583C13.872 11.0435 12.7092 9.91622 11.273 9.31871C10.547 9.01667 9.7512 8.85 8.91667 8.85C5.51091 8.85 2.75 11.6258 2.75 15.05C2.75 18.4742 5.51091 21.25 8.91667 21.25H16.625C19.1793 21.25 21.25 19.1681 21.25 16.6C21.25 14.6435 20.0481 12.9692 18.3462 12.2827C17.8142 12.0681 17.2333 11.95 16.625 11.95Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconRainy: {\n title: \"rainy, rain\",\n svg: '<path d=\"M11.8227 17.75L10.7773 20.25M6.8 17.75L5.75 20.25M16.8228 17.75L15.7773 20.25M9.42188 14.25H16.125C18.4032 14.25 20.25 12.3777 20.25 10.0682C20.25 7.75863 18.4032 5.88636 16.125 5.88636C15.5908 5.88636 15.0803 5.98932 14.6117 6.17673C13.7313 4.15838 11.7388 2.75 9.42188 2.75C6.28939 2.75 3.75 5.32436 3.75 8.5C3.75 11.6756 6.28939 14.25 9.42188 14.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconRainyLight: {\n title: \"rainy-light\",\n svg: '<path d=\"M11.25 15.75L10.25 17.75M13.5 18.5L12.5 20.5M9.42188 15.25H16.125C18.4032 15.25 20.25 13.3777 20.25 11.0682C20.25 8.75863 18.4032 6.88636 16.125 6.88636C15.5908 6.88636 15.0803 6.98932 14.6117 7.17673C13.7313 5.15838 11.7388 3.75 9.42188 3.75C6.28939 3.75 3.75 6.32436 3.75 9.5C3.75 12.6756 6.28939 15.25 9.42188 15.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconCloudSnow: {\n title: \"cloud-snow\",\n svg: '<path d=\"M6.25 18C6.25 18.1381 6.13807 18.25 6 18.25M6.25 18C6.25 17.8619 6.13807 17.75 6 17.75M6.25 18H6M6 18.25C5.86193 18.25 5.75 18.1381 5.75 18M6 18.25V18M5.75 18C5.75 17.8619 5.86193 17.75 6 17.75M5.75 18H6M6 17.75V18M6 18L5.82322 18.1768M6 18L6.17678 17.8232M6 18L5.82322 17.8232M6 18L6.17678 18.1768M6.17678 17.8232C6.27441 17.9209 6.27441 18.0791 6.17678 18.1768M6.17678 17.8232C6.07915 17.7256 5.92085 17.7256 5.82322 17.8232M6.17678 18.1768C6.07915 18.2744 5.92085 18.2744 5.82322 18.1768M5.82322 18.1768C5.72559 18.0791 5.72559 17.9209 5.82322 17.8232M12.25 18C12.25 18.1381 12.1381 18.25 12 18.25M12.25 18C12.25 17.8619 12.1381 17.75 12 17.75M12.25 18H12M12 18.25C11.8619 18.25 11.75 18.1381 11.75 18M12 18.25V18M11.75 18C11.75 17.8619 11.8619 17.75 12 17.75M11.75 18H12M12 17.75V18M12 18L11.8232 18.1768M12 18L12.1768 17.8232M12 18L11.8232 17.8232M12 18L12.1768 18.1768M12.1768 17.8232C12.2744 17.9209 12.2744 18.0791 12.1768 18.1768M12.1768 17.8232C12.0791 17.7256 11.9209 17.7256 11.8232 17.8232M12.1768 18.1768C12.0791 18.2744 11.9209 18.2744 11.8232 18.1768M11.8232 18.1768C11.7256 18.0791 11.7256 17.9209 11.8232 17.8232M18.25 18C18.25 18.1381 18.1381 18.25 18 18.25M18.25 18C18.25 17.8619 18.1381 17.75 18 17.75M18.25 18H18M18 18.25C17.8619 18.25 17.75 18.1381 17.75 18M18 18.25V18M17.75 18C17.75 17.8619 17.8619 17.75 18 17.75M17.75 18H18M18 17.75V18M18 18L17.8232 18.1768M18 18L18.1768 17.8232M18 18L17.8232 17.8232M18 18L18.1768 18.1768M18.1768 17.8232C18.2744 17.9209 18.2744 18.0791 18.1768 18.1768M18.1768 17.8232C18.0791 17.7256 17.9209 17.7256 17.8232 17.8232M18.1768 18.1768C18.0791 18.2744 17.9209 18.2744 17.8232 18.1768M17.8232 18.1768C17.7256 18.0791 17.7256 17.9209 17.8232 17.8232M15.25 20C15.25 20.1381 15.1381 20.25 15 20.25M15.25 20C15.25 19.8619 15.1381 19.75 15 19.75M15.25 20H15M15 20.25C14.8619 20.25 14.75 20.1381 14.75 20M15 20.25V20M14.75 20C14.75 19.8619 14.8619 19.75 15 19.75M14.75 20H15M15 19.75V20M15 20L14.8232 20.1768M15 20L15.1768 19.8232M15 20L14.8232 19.8232M15 20L15.1768 20.1768M15.1768 19.8232C15.2744 19.9209 15.2744 20.0791 15.1768 20.1768M15.1768 19.8232C15.0791 19.7256 14.9209 19.7256 14.8232 19.8232M15.1768 20.1768C15.0791 20.2744 14.9209 20.2744 14.8232 20.1768M14.8232 20.1768C14.7256 20.0791 14.7256 19.9209 14.8232 19.8232M9.25 20C9.25 20.1381 9.13807 20.25 9 20.25M9.25 20C9.25 19.8619 9.13807 19.75 9 19.75M9.25 20H9M9 20.25C8.86193 20.25 8.75 20.1381 8.75 20M9 20.25V20M8.75 20C8.75 19.8619 8.86193 19.75 9 19.75M8.75 20H9M9 19.75V20M9 20L8.82322 20.1768M9 20L9.17678 19.8232M9 20L8.82322 19.8232M9 20L9.17678 20.1768M9.17678 19.8232C9.27441 19.9209 9.27441 20.0791 9.17678 20.1768M9.17678 19.8232C9.07915 19.7256 8.92085 19.7256 8.82322 19.8232M9.17678 20.1768C9.07915 20.2744 8.92085 20.2744 8.82322 20.1768M8.82322 20.1768C8.72559 20.0791 8.72559 19.9209 8.82322 19.8232M9.42188 15.25H16.125C18.4032 15.25 20.25 13.3777 20.25 11.0682C20.25 8.75863 18.4032 6.88636 16.125 6.88636C15.5908 6.88636 15.0803 6.98932 14.6117 7.17673C13.7313 5.15838 11.7388 3.75 9.42188 3.75C6.28939 3.75 3.75 6.32436 3.75 9.5C3.75 12.6756 6.28939 15.25 9.42188 15.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconSunriseArrowUp: {\n title: \"sunrise-arrow-up\",\n svg: '<path d=\"M2.75391 20.25H21.2539M12 8.25V3M2.75 16.25H4.25M19.75 16.25H21.25M9.5 5.255L12 2.755L14.5 5.255M7.75 16.25V16C7.75 13.6528 9.65279 11.75 12 11.75C14.3472 11.75 16.25 13.6528 16.25 16V16.25M17.9375 11.0184L19.0866 10.0542M4.91406 10.0542L6.06313 11.0184\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconSunsetArrowDown: {\n title: \"sunset-arrow-down\",\n svg: '<path d=\"M2.75391 20.25H21.2539M12 8V2.75M2.75 16.25H4.25M19.75 16.25H21.25M17.9375 11.0184L19.0866 10.0542M4.91406 10.0542L6.06313 11.0184M9.5 6L12 8.5L14.5 6M7.75 16.25V16C7.75 13.6528 9.65279 11.75 12 11.75C14.3472 11.75 16.25 13.6528 16.25 16V16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconSunrise: {\n title: \"sunrise\",\n svg: '<path d=\"M12 2.75V3.77941M3.77778 12.25H2.75M20.2222 12.25H21.25M17.8134 6.19148L18.5401 5.46357M2.75 16.25H21.25M6.75 20.25H17.25M6.18671 6.19147L5.45996 5.46357M7.75 12.25V12.0068C7.75 9.65581 9.65279 7.75 12 7.75C14.3472 7.75 16.25 9.65581 16.25 12.0068V12.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconSunset: {\n title: \"sunset\",\n svg: '<path d=\"M3.75 12.25V12C3.75 7.44365 7.44365 3.75 12 3.75C16.5563 3.75 20.25 7.44365 20.25 12V12.25M1.75 16.25H22.25M6.75 20.25H17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconDrop: {\n title: \"drop, water, precipitation, liquid\",\n svg: '<path d=\"M19.25 14.0556C19.25 18.0289 16.0041 21.25 12 21.25C7.99594 21.25 4.75 18.0289 4.75 14.0556C4.75 8.40278 12 2.75 12 2.75C12 2.75 19.25 8.40278 19.25 14.0556Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n IconThermostat: {\n title: \"thermostat, temprature\",\n svg: '<path d=\"M15.75 4.25H19.25M15.75 8.25H19.25M15.75 12.25H19.25M13.25 17C13.25 19.3472 11.3472 21.25 9 21.25C6.65279 21.25 4.75 19.3472 4.75 17C4.75 15.4791 5.54892 14.1447 6.75 13.3938V2.75H11.25V13.3938C12.4511 14.1447 13.25 15.4791 13.25 17Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>',\n category: \"Weather\",\n },\n};\n\nexport default centralIcons;\n"],"mappings":"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","names":["index_exports","__export","CentralIcon","index_default","__toCommonJS","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","props","React","centralIcons","import_react","CentralIcon","name","props","React","CentralIconBase","centralIcons","index_default"]}
|