@agility/plenum-ui 2.0.0-rc48 → 2.0.0-rc49
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/dist/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../stories/atoms/Avatar/Avatar.tsx", "../stories/atoms/Avatar/index.ts", "../stories/atoms/badges/Badge.tsx", "../stories/atoms/icons/DynamicIcon.tsx", "../stories/atoms/icons/tablerIconNames.ts", "../stories/atoms/icons/TablerIcon.tsx", "../stories/atoms/icons/IconWithShadow.tsx", "../stories/atoms/badges/index.ts", "../stories/atoms/buttons/Button/Button.tsx", "../stories/atoms/buttons/Button/index.ts", "../stories/atoms/buttons/Capsule/Capsule.tsx", "../stories/atoms/buttons/Capsule/index.ts", "../stories/atoms/loaders/Loader.tsx", "../stories/atoms/loaders/NProgress/RadialProgress.tsx", "../stories/atoms/loaders/NProgress/index.ts", "../stories/molecules/inputs/checkbox/Checkbox.tsx", "../stories/molecules/inputs/InputLabel/InputLabel.tsx", "../stories/molecules/inputs/InputLabel/index.tsx", "../utils/useId.tsx", "../stories/molecules/inputs/checkbox/index.ts", "../stories/molecules/inputs/combobox/ComboBox.tsx", "../stories/molecules/inputs/combobox/index.ts", "../stories/molecules/inputs/InputField/InputField.tsx", "../stories/molecules/inputs/InputField/index.tsx", "../stories/molecules/inputs/NestedInputButton/NestedInputButton.tsx", "../stories/molecules/inputs/NestedInputButton/index.tsx", "../stories/molecules/inputs/radio/Radio.tsx", "../stories/molecules/inputs/radio/index.ts", "../stories/molecules/inputs/select/Select.tsx", "../stories/molecules/inputs/select/index.ts", "../stories/molecules/inputs/textArea/TextArea.tsx", "../stories/molecules/inputs/InputCounter/InputCounter.tsx", "../stories/molecules/inputs/textArea/index.ts", "../stories/molecules/inputs/TextInput/TextInput.tsx", "../stories/molecules/inputs/TextInput/index.tsx", "../stories/molecules/inputs/toggleSwitch/ToggleSwitch.tsx", "../stories/molecules/inputs/toggleSwitch/index.ts", "../stories/organisms/AnimatedLabelInput/AnimatedLabelInput.tsx", "../stories/organisms/AnimatedLabelInput/index.tsx", "../stories/organisms/AnimatedLabelTextArea/AnimatedLabelTextArea.tsx", "../stories/organisms/AnimatedLabelTextArea/index.tsx", "../stories/organisms/ButtonDropdown/ButtonDropdown.tsx", "../stories/organisms/DropdownComponent/DropdownComponent.tsx", "../stories/organisms/DropdownComponent/index.ts", "../stories/organisms/ButtonDropdown/index.tsx", "../stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.tsx", "../stories/organisms/EmptySectionPlaceholder/index.tsx", "../stories/organisms/FormInputWithAddons/FormInputWithAddons.tsx", "../stories/organisms/FormInputWithAddons/index.tsx", "../stories/organisms/TextInputSelect/TextInputSelect.tsx", "../stories/organisms/TextInputSelect/InputSelect.tsx", "../stories/organisms/TextInputSelect/index.tsx"],
|
|
4
|
-
"sourcesContent": ["import React, { FC, useMemo } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n// import Image from \"next/image\"\r\nexport interface IAvatarProps {\r\n\t/**\r\n\t * source url for the avatar\r\n\t */\r\n\tsrc?: string\r\n\t/**\r\n\t * Initials we use as fallback if no src is passed\r\n\t */\r\n\tinitials?: string\r\n\t/**\r\n\t * optional status\r\n\t */\r\n\tstatus?: \"offline\" | \"online\" | \"busy\"\r\n\t/**\r\n\t * avatar picture size (also affects status indicator)\r\n\t */\r\n\tsize?: \"xxs\" | \"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\"\r\n\t/**\r\n\t * avatar img alt\r\n\t */\r\n\talt?: string\r\n}\r\n\r\n/**\r\n * Avatar component that shows profile image or name initials of the user\r\n */\r\nconst Avatar: FC<IAvatarProps> = ({ src, status, size = \"md\", alt = \"Avatar image\", initials }: IAvatarProps) => {\r\n\tconst imageStyles = cn(\"rounded-full\", {\r\n\t\t\"h-6 w-6\": size === \"xxs\",\r\n\t\t\"h-8 w-8\": size === \"xs\",\r\n\t\t\"h-10 w-10\": size === \"sm\",\r\n\t\t\"h-12 w-12\": size === \"md\",\r\n\t\t\"h-14 w-14\": size === \"lg\",\r\n\t\t\"h-16 w-16\": size === \"xl\"\r\n\t})\r\n\tconst initialsStyles = cn(\"inline-flex items-center justify-center rounded-full bg-gray-500\", {\r\n\t\t\"h-6 w-6\": size === \"xxs\",\r\n\t\t\"h-8 w-8\": size === \"xs\",\r\n\t\t\"h-10 w-10\": size === \"sm\",\r\n\t\t\"h-12 w-12\": size === \"md\",\r\n\t\t\"h-14 w-14\": size === \"lg\",\r\n\t\t\"h-16 w-16\": size === \"xl\"\r\n\t})\r\n\tconst fontStyles = cn(\"font-medium leading-none text-white uppercase\", {\r\n\t\t\"text-xs\": size === \"xxs\" || size === \"xs\",\r\n\t\t\"text-sm\": size === \"sm\",\r\n\t\t\"text-base\": size === \"md\",\r\n\t\t\"text-lg\": size === \"lg\",\r\n\t\t\"text-xl\": size === \"xl\"\r\n\t})\r\n\tconst defaultAvatarStyles = cn(\"inline-block rounded-full overflow-hidden bg-gray-100\", {\r\n\t\t\"h-6 w-6\": size === \"xxs\",\r\n\t\t\"h-8 w-8\": size === \"xs\",\r\n\t\t\"h-10 w-10\": size === \"sm\",\r\n\t\t\"h-12 w-12\": size === \"md\",\r\n\t\t\"h-14 w-14\": size === \"lg\",\r\n\t\t\"h-16 w-16\": size === \"xl\"\r\n\t})\r\n\r\n\tconst statusStyles = cn(\"absolute top-0 right-0 block rounded-full ring-2 ring-white\", {\r\n\t\t\"h-1.5 w-1.5\": size === \"xxs\",\r\n\t\t\"h-2 w-2\": size === \"xs\",\r\n\t\t\"h-2.5 w-2.5\": size === \"sm\",\r\n\t\t\"h-3 w-3\": size === \"md\",\r\n\t\t\"h-3.5 w-3.5\": size === \"lg\",\r\n\t\t\"h-4 w-4\": size === \"xl\",\r\n\t\t\"bg-gray-300\": status === \"offline\",\r\n\t\t\"bg-red-400\": status === \"busy\",\r\n\t\t\"bg-green-400\": status === \"online\"\r\n\t})\r\n\tconst imageSize: number = useMemo(() => {\r\n\t\tlet imageSize: number = 0\r\n\t\tswitch (size) {\r\n\t\t\tcase \"xxs\":\r\n\t\t\t\timageSize = 24\r\n\t\t\t\tbreak\r\n\t\t\tcase \"xs\":\r\n\t\t\t\timageSize = 32\r\n\t\t\t\tbreak\r\n\t\t\tcase \"sm\":\r\n\t\t\t\timageSize = 40\r\n\t\t\t\tbreak\r\n\t\t\tcase \"md\":\r\n\t\t\t\timageSize = 48\r\n\t\t\t\tbreak\r\n\t\t\tcase \"lg\":\r\n\t\t\t\timageSize = 56\r\n\t\t\t\tbreak\r\n\t\t\tcase \"xl\":\r\n\t\t\t\timageSize = 64\r\n\t\t\t\tbreak\r\n\t\t\tdefault:\r\n\t\t\t\timageSize = 48\r\n\t\t\t\tbreak\r\n\t\t}\r\n\t\treturn imageSize\r\n\t}, [size])\r\n\r\n\treturn (\r\n\t\t<span className=\"inline-block relative\">\r\n\t\t\t{src ? (\r\n\t\t\t\t// eslint-disable-next-line @next/next/no-img-element\r\n\t\t\t\t<img className={imageStyles} width={imageSize} height={imageSize} src={src} alt={alt} loading=\"eager\" />\r\n\t\t\t) : initials ? (\r\n\t\t\t\t<span className={initialsStyles}>\r\n\t\t\t\t\t<span className={fontStyles}>{initials}</span>\r\n\t\t\t\t</span>\r\n\t\t\t) : (\r\n\t\t\t\t<span className={defaultAvatarStyles}>\r\n\t\t\t\t\t<svg className=\"h-full w-full text-gray-300\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\r\n\t\t\t\t\t\t<path d=\"M24 20.993V24H0v-2.996A14.977 14.977 0 0112.004 15c4.904 0 9.26 2.354 11.996 5.993zM16.002 8.999a4 4 0 11-8 0 4 4 0 018 0z\" />\r\n\t\t\t\t\t</svg>\r\n\t\t\t\t</span>\r\n\t\t\t)}\r\n\t\t\t{status && <span className={statusStyles}></span>}\r\n\t\t</span>\r\n\t)\r\n}\r\n\r\nexport default Avatar\r\n", "import Avatar, { IAvatarProps } from \"./Avatar\"\r\nexport default Avatar\r\nexport type { IAvatarProps }\r\n", "import React from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport { ClassNameWithAutocomplete } from \"@/utils/types\"\r\nimport { DynamicIcon } from \"../icons\"\r\nexport interface IBadgeProps {\r\n\t/** The content scheme of the badge */\r\n\tcolor: \"primary\" | \"secondary\" | \"danger\" | \"warning\" | \"success\" | \"info\" | \"basic\" | \"pink\"\r\n\t/** Render with slightly rounded corners or as a pill shape */\r\n\tvariant: \"rounded\" | \"pill\"\r\n\t/** The text content of the badge */\r\n\tlabel: string\r\n\t/** The size of the badge */\r\n\tsize?: \"sm\" | \"lg\"\r\n\t/** Render a loader inside the badge */\r\n\tloading?: boolean\r\n\t/** Render with a small circle in a darker shade of the color chosen*/\r\n\tstatusDot?: boolean\r\n\t/** Render with a button to remove the badge */\r\n\tremoveButton?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>\r\n\t/** Render the badge as a clickable button */\r\n\tactionButton?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>\r\n}\r\nconst Badge: React.FC<IBadgeProps> = ({\r\n\tcolor,\r\n\tvariant,\r\n\tlabel,\r\n\tsize = \"sm\",\r\n\tloading,\r\n\tstatusDot,\r\n\tremoveButton,\r\n\tactionButton\r\n}) => {\r\n\tconst badgeStyles = cn(\r\n\t\t\"text-sm flex items-center font-medium py-[2px] focus:ring-1 focus:ring-purple-600 focus:ring-offset-2 focus:ring-offset-white outline-0\",\r\n\t\t{\r\n\t\t\t\"rounded-[3px]\": variant === \"rounded\",\r\n\t\t\t\"rounded-full px-[6px]\": variant === \"pill\",\r\n\t\t\t\"rounded-full\": variant === \"pill\" && size === \"lg\",\r\n\t\t\t\"px-[6px] text-xs\": size === \"sm\",\r\n\t\t\t\"px-[10px]\": size === \"lg\",\r\n\t\t\t\"pl-[10px]\": !statusDot && size === \"lg\",\r\n\t\t\t\"pl-2\": !statusDot && size === \"sm\",\r\n\t\t\t\"pr-3\": !removeButton && size === \"lg\",\r\n\t\t\t\"pr-[10px]\": !removeButton && size === \"sm\",\r\n\t\t\t\"gap-x-[6px]\": statusDot || removeButton || loading,\r\n\t\t\t\"bg-purple-100 text-purple-800 \": color === \"primary\",\r\n\t\t\t\"bg-violet-100 text-violet-800\": color === \"secondary\",\r\n\t\t\t\"bg-pink-100 text-pink-800\": color === \"pink\",\r\n\t\t\t\"bg-red-100 text-red-800\": color === \"danger\",\r\n\t\t\t\"bg-blue-100 text-blue-800\": color === \"info\",\r\n\t\t\t\"bg-green-100 text-green-800\": color === \"success\",\r\n\t\t\t\"bg-yellow-100 text-yellow-800\": color === \"warning\",\r\n\t\t\t\"bg-gray-100 text-gray-800\": color === \"basic\"\r\n\t\t}\r\n\t)\r\n\tconst statusDotStyles = cn(\"rounded-full h-[6px] p-[1px] w-[6px]\", {\r\n\t\t\"bg-purple-400 text-purple-400\": color === \"primary\",\r\n\t\t\"bg-violet-400 text-violet-400\": color === \"secondary\",\r\n\t\t\"bg-pink-400 text-pink-400\": color === \"pink\",\r\n\t\t\"bg-red-400 text-red-400\": color === \"danger\",\r\n\t\t\"bg-blue-400 text-blue-400\": color === \"info\",\r\n\t\t\"bg-green-400 text-green-400\": color === \"success\",\r\n\t\t\"bg-yellow-400 text-yellow-400\": color === \"warning\",\r\n\t\t\"bg-gray-400 text-gray-400\": color === \"basic\"\r\n\t})\r\n\tconst removeButtonStyles: ClassNameWithAutocomplete = cn(\r\n\t\t\"h-4 w-4 group-focus-within:ring-1 group-focus-within:ring-purple-600 rounded-full group-focus-within:ring-offset-[1px] group-focus-within:ring-offset-white outline-0\",\r\n\t\t{\r\n\t\t\t\"text-purple-400\": color === \"primary\",\r\n\t\t\t\"text-violet-400\": color === \"secondary\",\r\n\t\t\t\"text-pink-400\": color === \"pink\",\r\n\t\t\t\"text-red-400\": color === \"danger\",\r\n\t\t\t\"text-blue-400\": color === \"info\",\r\n\t\t\t\"text-green-400\": color === \"success\",\r\n\t\t\t\"text-yellow-400\": color === \"warning\",\r\n\t\t\t\"text-gray-400\": color === \"basic\"\r\n\t\t}\r\n\t)\r\n\r\n\tconst loaderStyles = cn(\"h-4 w-4 rounded-full border-2 animate-spin\", {\r\n\t\t\"border-purple-400 !border-r-purple-200\": color === \"primary\",\r\n\t\t\"border-violet-400 !border-r-violet-200\": color === \"secondary\",\r\n\t\t\"border-pink-400 !border-r-pink-200\": color === \"pink\",\r\n\t\t\"border-red-400 !border-r-red-200\": color === \"danger\",\r\n\t\t\"border-blue-400 !border-r-blue-200\": color === \"info\",\r\n\t\t\"border-green-400 !border-r-green-200\": color === \"success\",\r\n\t\t\"border-yellow-400 !border-r-yellow-200\": color === \"warning\",\r\n\t\t\"border-gray-400 !border-r-gray-200\": color === \"basic\"\r\n\t})\r\n\r\n\treturn actionButton ? (\r\n\t\t<button {...{ ...actionButton, className: badgeStyles }}>\r\n\t\t\t{statusDot && <div className={statusDotStyles} role=\"status\" />}\r\n\t\t\t{label}\r\n\t\t\t{removeButton && (\r\n\t\t\t\t<button\r\n\t\t\t\t\t{...{\r\n\t\t\t\t\t\tremoveButton,\r\n\t\t\t\t\t\t\"aria-label\": `Remove ${label}`,\r\n\t\t\t\t\t\tclassName: `${removeButton?.className || \"\"} group outline-0 `\r\n\t\t\t\t\t}}\r\n\t\t\t\t>\r\n\t\t\t\t\t<DynamicIcon {...{ icon: \"IconX\", className: removeButtonStyles }} />\r\n\t\t\t\t</button>\r\n\t\t\t)}\r\n\t\t</button>\r\n\t) : (\r\n\t\t<div className={badgeStyles}>\r\n\t\t\t{loading && <div className={loaderStyles} role=\"status\" />}\r\n\t\t\t{!loading && statusDot && <div className={statusDotStyles} role=\"status\" />}\r\n\t\t\t{label}\r\n\t\t\t{!loading && removeButton && (\r\n\t\t\t\t<button\r\n\t\t\t\t\t{...{\r\n\t\t\t\t\t\t...removeButton,\r\n\t\t\t\t\t\t\"aria-label\": `Remove ${label}`,\r\n\t\t\t\t\t\tclassName: `${removeButton?.className || \"\"} group outline-0 `\r\n\t\t\t\t\t}}\r\n\t\t\t\t>\r\n\t\t\t\t\t<DynamicIcon {...{ icon: \"IconX\", className: removeButtonStyles }} />\r\n\t\t\t\t</button>\r\n\t\t\t)}\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default Badge\r\n", "import React from \"react\"\r\n// TODO: Fix heroicons support\r\nimport * as SolidIcons from \"@heroicons/react/solid\"\r\nimport * as OutlineIcons from \"@heroicons/react/outline\"\r\nimport * as FA from \"react-icons/fa\"\r\nimport { tablerIconNames, TablerIconName } from \"./tablerIconNames\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nimport { ClassNameWithAutocomplete } from \"@/utils/types\"\r\nimport TablerIcon from \"./TablerIcon\"\r\n\r\nexport type IconName = keyof typeof SolidIcons | keyof typeof OutlineIcons\r\nexport type FAIconName = keyof typeof FA\r\n\r\nexport type UnifiedIconName = TablerIconName | IconName | FAIconName\r\n\r\nexport function isHeroIcon(name: UnifiedIconName): name is keyof typeof SolidIcons | keyof typeof OutlineIcons {\r\n\treturn name in SolidIcons || name in OutlineIcons\r\n}\r\n\r\nexport function isTablerIcon(name: UnifiedIconName): name is TablerIconName {\r\n\treturn tablerIconNames.includes(name as TablerIconName)\r\n}\r\n\r\nexport function isFAIcon(name: UnifiedIconName): name is keyof typeof FA {\r\n\treturn name in FA\r\n}\r\n\r\nexport function isUnifiedIconName(name: UnifiedIconName): name is UnifiedIconName {\r\n\treturn isTablerIcon(name) // || isHeroIcon(name) || isFAIcon(name)\r\n}\r\n\r\nexport interface IDynamicIconProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {\r\n\ticon: UnifiedIconName\r\n\tclassName?: ClassNameWithAutocomplete\r\n\toutline?: boolean\r\n\tCustomSVG?: React.ReactNode\r\n}\r\n\r\nexport const DynamicIcon = ({\r\n\ticon,\r\n\tclassName = \"w-5 h-5 text-gray-400\",\r\n\toutline,\r\n\tCustomSVG,\r\n\t...props\r\n}: IDynamicIconProps): JSX.Element => {\r\n\tif (CustomSVG) {\r\n\t\treturn <i {...{ ...props, className: \"flex items-center justify-center\" }}>{CustomSVG}</i>\r\n\t}\r\n\r\n\tif (isTablerIcon(icon)) {\r\n\t\treturn (\r\n\t\t\t<TablerIcon\r\n\t\t\t\t{...{\r\n\t\t\t\t\ticon,\r\n\t\t\t\t\tclassName: cn(className, {\r\n\t\t\t\t\t\t\"text-gray-600 h-5 w-5\": !className\r\n\t\t\t\t\t}),\r\n\t\t\t\t\toutline\r\n\t\t\t\t}}\r\n\t\t\t/>\r\n\t\t)\r\n\t}\r\n\r\n\tif (isFAIcon(icon)) {\r\n\t\tconst Icon = FA[icon]\r\n\t\treturn (\r\n\t\t\t<i {...{ ...props, className: \"flex items-center justify-center\" }}>\r\n\t\t\t\t<Icon\r\n\t\t\t\t\tclassName={cn(className, {\r\n\t\t\t\t\t\t\"h-5 w-5 text-gray-600\": !className\r\n\t\t\t\t\t})}\r\n\t\t\t\t/>\r\n\t\t\t</i>\r\n\t\t)\r\n\t}\r\n\tif (isHeroIcon(icon)) {\r\n\t\tconst Icon = outline ? OutlineIcons[icon] : SolidIcons[icon]\r\n\t\treturn (\r\n\t\t\t<i {...{ ...props, className: \"flex items-center justify-center\" }}>\r\n\t\t\t\t<Icon\r\n\t\t\t\t\tclassName={cn(className, {\r\n\t\t\t\t\t\t\"h-5 w-5 text-gray-600\": !className\r\n\t\t\t\t\t})}\r\n\t\t\t\t/>\r\n\t\t\t</i>\r\n\t\t)\r\n\t}\r\n\treturn <></>\r\n}\r\n", "export const tablerIconNames = [\r\n\t\"Icon123\",\r\n\t\"Icon24Hours\",\r\n\t\"Icon2fa\",\r\n\t\"Icon360View\",\r\n\t\"Icon360\",\r\n\t\"Icon3dCubeSphereOff\",\r\n\t\"Icon3dCubeSphere\",\r\n\t\"Icon3dRotate\",\r\n\t\"IconAB2\",\r\n\t\"IconABOff\",\r\n\t\"IconAB\",\r\n\t\"IconAbacusOff\",\r\n\t\"IconAbacus\",\r\n\t\"IconAbc\",\r\n\t\"IconAccessPointOff\",\r\n\t\"IconAccessPoint\",\r\n\t\"IconAccessibleOffFilled\",\r\n\t\"IconAccessibleOff\",\r\n\t\"IconAccessible\",\r\n\t\"IconActivityHeartbeat\",\r\n\t\"IconActivity\",\r\n\t\"IconAd2\",\r\n\t\"IconAdCircleFilled\",\r\n\t\"IconAdCircleOff\",\r\n\t\"IconAdCircle\",\r\n\t\"IconAdFilled\",\r\n\t\"IconAdOff\",\r\n\t\"IconAd\",\r\n\t\"IconAddressBookOff\",\r\n\t\"IconAddressBook\",\r\n\t\"IconAdjustmentsAlt\",\r\n\t\"IconAdjustmentsBolt\",\r\n\t\"IconAdjustmentsCancel\",\r\n\t\"IconAdjustmentsCheck\",\r\n\t\"IconAdjustmentsCode\",\r\n\t\"IconAdjustmentsCog\",\r\n\t\"IconAdjustmentsDollar\",\r\n\t\"IconAdjustmentsDown\",\r\n\t\"IconAdjustmentsExclamation\",\r\n\t\"IconAdjustmentsFilled\",\r\n\t\"IconAdjustmentsHeart\",\r\n\t\"IconAdjustmentsHorizontal\",\r\n\t\"IconAdjustmentsMinus\",\r\n\t\"IconAdjustmentsOff\",\r\n\t\"IconAdjustmentsPause\",\r\n\t\"IconAdjustmentsPin\",\r\n\t\"IconAdjustmentsPlus\",\r\n\t\"IconAdjustmentsQuestion\",\r\n\t\"IconAdjustmentsSearch\",\r\n\t\"IconAdjustmentsShare\",\r\n\t\"IconAdjustmentsStar\",\r\n\t\"IconAdjustmentsUp\",\r\n\t\"IconAdjustmentsX\",\r\n\t\"IconAdjustments\",\r\n\t\"IconAerialLift\",\r\n\t\"IconAffiliateFilled\",\r\n\t\"IconAffiliate\",\r\n\t\"IconAirBalloon\",\r\n\t\"IconAirConditioningDisabled\",\r\n\t\"IconAirConditioning\",\r\n\t\"IconAirTrafficControl\",\r\n\t\"IconAlarmFilled\",\r\n\t\"IconAlarmMinusFilled\",\r\n\t\"IconAlarmMinus\",\r\n\t\"IconAlarmOff\",\r\n\t\"IconAlarmPlusFilled\",\r\n\t\"IconAlarmPlus\",\r\n\t\"IconAlarmSnoozeFilled\",\r\n\t\"IconAlarmSnooze\",\r\n\t\"IconAlarm\",\r\n\t\"IconAlbumOff\",\r\n\t\"IconAlbum\",\r\n\t\"IconAlertCircleFilled\",\r\n\t\"IconAlertCircle\",\r\n\t\"IconAlertHexagonFilled\",\r\n\t\"IconAlertHexagon\",\r\n\t\"IconAlertOctagonFilled\",\r\n\t\"IconAlertOctagon\",\r\n\t\"IconAlertSmall\",\r\n\t\"IconAlertSquareFilled\",\r\n\t\"IconAlertSquareRoundedFilled\",\r\n\t\"IconAlertSquareRounded\",\r\n\t\"IconAlertSquare\",\r\n\t\"IconAlertTriangleFilled\",\r\n\t\"IconAlertTriangle\",\r\n\t\"IconAlienFilled\",\r\n\t\"IconAlien\",\r\n\t\"IconAlignBoxBottomCenterFilled\",\r\n\t\"IconAlignBoxBottomCenter\",\r\n\t\"IconAlignBoxBottomLeftFilled\",\r\n\t\"IconAlignBoxBottomLeft\",\r\n\t\"IconAlignBoxBottomRightFilled\",\r\n\t\"IconAlignBoxBottomRight\",\r\n\t\"IconAlignBoxCenterBottom\",\r\n\t\"IconAlignBoxCenterMiddleFilled\",\r\n\t\"IconAlignBoxCenterMiddle\",\r\n\t\"IconAlignBoxCenterStretch\",\r\n\t\"IconAlignBoxCenterTop\",\r\n\t\"IconAlignBoxLeftBottomFilled\",\r\n\t\"IconAlignBoxLeftBottom\",\r\n\t\"IconAlignBoxLeftMiddleFilled\",\r\n\t\"IconAlignBoxLeftMiddle\",\r\n\t\"IconAlignBoxLeftStretch\",\r\n\t\"IconAlignBoxLeftTopFilled\",\r\n\t\"IconAlignBoxLeftTop\",\r\n\t\"IconAlignBoxRightBottomFilled\",\r\n\t\"IconAlignBoxRightBottom\",\r\n\t\"IconAlignBoxRightMiddleFilled\",\r\n\t\"IconAlignBoxRightMiddle\",\r\n\t\"IconAlignBoxRightStretch\",\r\n\t\"IconAlignBoxRightTopFilled\",\r\n\t\"IconAlignBoxRightTop\",\r\n\t\"IconAlignBoxTopCenterFilled\",\r\n\t\"IconAlignBoxTopCenter\",\r\n\t\"IconAlignBoxTopLeftFilled\",\r\n\t\"IconAlignBoxTopLeft\",\r\n\t\"IconAlignBoxTopRightFilled\",\r\n\t\"IconAlignBoxTopRight\",\r\n\t\"IconAlignCenter\",\r\n\t\"IconAlignJustified\",\r\n\t\"IconAlignLeft\",\r\n\t\"IconAlignRight\",\r\n\t\"IconAlpha\",\r\n\t\"IconAlphabetCyrillic\",\r\n\t\"IconAlphabetGreek\",\r\n\t\"IconAlphabetLatin\",\r\n\t\"IconAmbulance\",\r\n\t\"IconAmpersand\",\r\n\t\"IconAnalyzeFilled\",\r\n\t\"IconAnalyzeOff\",\r\n\t\"IconAnalyze\",\r\n\t\"IconAnchorOff\",\r\n\t\"IconAnchor\",\r\n\t\"IconAngle\",\r\n\t\"IconAnkh\",\r\n\t\"IconAntennaBars1\",\r\n\t\"IconAntennaBars2\",\r\n\t\"IconAntennaBars3\",\r\n\t\"IconAntennaBars4\",\r\n\t\"IconAntennaBars5\",\r\n\t\"IconAntennaBarsOff\",\r\n\t\"IconAntennaOff\",\r\n\t\"IconAntenna\",\r\n\t\"IconApertureOff\",\r\n\t\"IconAperture\",\r\n\t\"IconApiAppOff\",\r\n\t\"IconApiApp\",\r\n\t\"IconApiOff\",\r\n\t\"IconApi\",\r\n\t\"IconAppWindowFilled\",\r\n\t\"IconAppWindow\",\r\n\t\"IconApple\",\r\n\t\"IconAppsFilled\",\r\n\t\"IconAppsOff\",\r\n\t\"IconApps\",\r\n\t\"IconArchiveFilled\",\r\n\t\"IconArchiveOff\",\r\n\t\"IconArchive\",\r\n\t\"IconArmchair2Off\",\r\n\t\"IconArmchair2\",\r\n\t\"IconArmchairOff\",\r\n\t\"IconArmchair\",\r\n\t\"IconArrowAutofitContentFilled\",\r\n\t\"IconArrowAutofitContent\",\r\n\t\"IconArrowAutofitDown\",\r\n\t\"IconArrowAutofitHeight\",\r\n\t\"IconArrowAutofitLeft\",\r\n\t\"IconArrowAutofitRight\",\r\n\t\"IconArrowAutofitUp\",\r\n\t\"IconArrowAutofitWidth\",\r\n\t\"IconArrowBackUpDouble\",\r\n\t\"IconArrowBackUp\",\r\n\t\"IconArrowBack\",\r\n\t\"IconArrowBadgeDownFilled\",\r\n\t\"IconArrowBadgeDown\",\r\n\t\"IconArrowBadgeLeftFilled\",\r\n\t\"IconArrowBadgeLeft\",\r\n\t\"IconArrowBadgeRightFilled\",\r\n\t\"IconArrowBadgeRight\",\r\n\t\"IconArrowBadgeUpFilled\",\r\n\t\"IconArrowBadgeUp\",\r\n\t\"IconArrowBarBoth\",\r\n\t\"IconArrowBarDown\",\r\n\t\"IconArrowBarLeft\",\r\n\t\"IconArrowBarRight\",\r\n\t\"IconArrowBarToDown\",\r\n\t\"IconArrowBarToLeft\",\r\n\t\"IconArrowBarToRight\",\r\n\t\"IconArrowBarToUp\",\r\n\t\"IconArrowBarUp\",\r\n\t\"IconArrowBearLeft2\",\r\n\t\"IconArrowBearLeft\",\r\n\t\"IconArrowBearRight2\",\r\n\t\"IconArrowBearRight\",\r\n\t\"IconArrowBigDownFilled\",\r\n\t\"IconArrowBigDownLineFilled\",\r\n\t\"IconArrowBigDownLine\",\r\n\t\"IconArrowBigDownLinesFilled\",\r\n\t\"IconArrowBigDownLines\",\r\n\t\"IconArrowBigDown\",\r\n\t\"IconArrowBigLeftFilled\",\r\n\t\"IconArrowBigLeftLineFilled\",\r\n\t\"IconArrowBigLeftLine\",\r\n\t\"IconArrowBigLeftLinesFilled\",\r\n\t\"IconArrowBigLeftLines\",\r\n\t\"IconArrowBigLeft\",\r\n\t\"IconArrowBigRightFilled\",\r\n\t\"IconArrowBigRightLineFilled\",\r\n\t\"IconArrowBigRightLine\",\r\n\t\"IconArrowBigRightLinesFilled\",\r\n\t\"IconArrowBigRightLines\",\r\n\t\"IconArrowBigRight\",\r\n\t\"IconArrowBigUpFilled\",\r\n\t\"IconArrowBigUpLineFilled\",\r\n\t\"IconArrowBigUpLine\",\r\n\t\"IconArrowBigUpLinesFilled\",\r\n\t\"IconArrowBigUpLines\",\r\n\t\"IconArrowBigUp\",\r\n\t\"IconArrowBounce\",\r\n\t\"IconArrowCapsule\",\r\n\t\"IconArrowCurveLeft\",\r\n\t\"IconArrowCurveRight\",\r\n\t\"IconArrowDownBar\",\r\n\t\"IconArrowDownCircle\",\r\n\t\"IconArrowDownLeftCircle\",\r\n\t\"IconArrowDownLeft\",\r\n\t\"IconArrowDownRhombus\",\r\n\t\"IconArrowDownRightCircle\",\r\n\t\"IconArrowDownRight\",\r\n\t\"IconArrowDownSquare\",\r\n\t\"IconArrowDownTail\",\r\n\t\"IconArrowDown\",\r\n\t\"IconArrowElbowLeft\",\r\n\t\"IconArrowElbowRight\",\r\n\t\"IconArrowFork\",\r\n\t\"IconArrowForwardUpDouble\",\r\n\t\"IconArrowForwardUp\",\r\n\t\"IconArrowForward\",\r\n\t\"IconArrowGuide\",\r\n\t\"IconArrowIteration\",\r\n\t\"IconArrowLeftBar\",\r\n\t\"IconArrowLeftCircle\",\r\n\t\"IconArrowLeftRhombus\",\r\n\t\"IconArrowLeftRight\",\r\n\t\"IconArrowLeftSquare\",\r\n\t\"IconArrowLeftTail\",\r\n\t\"IconArrowLeft\",\r\n\t\"IconArrowLoopLeft2\",\r\n\t\"IconArrowLoopLeft\",\r\n\t\"IconArrowLoopRight2\",\r\n\t\"IconArrowLoopRight\",\r\n\t\"IconArrowMergeBoth\",\r\n\t\"IconArrowMergeLeft\",\r\n\t\"IconArrowMergeRight\",\r\n\t\"IconArrowMerge\",\r\n\t\"IconArrowMoveDown\",\r\n\t\"IconArrowMoveLeft\",\r\n\t\"IconArrowMoveRight\",\r\n\t\"IconArrowMoveUp\",\r\n\t\"IconArrowNarrowDown\",\r\n\t\"IconArrowNarrowLeft\",\r\n\t\"IconArrowNarrowRight\",\r\n\t\"IconArrowNarrowUp\",\r\n\t\"IconArrowRampLeft2\",\r\n\t\"IconArrowRampLeft3\",\r\n\t\"IconArrowRampLeft\",\r\n\t\"IconArrowRampRight2\",\r\n\t\"IconArrowRampRight3\",\r\n\t\"IconArrowRampRight\",\r\n\t\"IconArrowRightBar\",\r\n\t\"IconArrowRightCircle\",\r\n\t\"IconArrowRightRhombus\",\r\n\t\"IconArrowRightSquare\",\r\n\t\"IconArrowRightTail\",\r\n\t\"IconArrowRight\",\r\n\t\"IconArrowRotaryFirstLeft\",\r\n\t\"IconArrowRotaryFirstRight\",\r\n\t\"IconArrowRotaryLastLeft\",\r\n\t\"IconArrowRotaryLastRight\",\r\n\t\"IconArrowRotaryLeft\",\r\n\t\"IconArrowRotaryRight\",\r\n\t\"IconArrowRotaryStraight\",\r\n\t\"IconArrowRoundaboutLeft\",\r\n\t\"IconArrowRoundaboutRight\",\r\n\t\"IconArrowSharpTurnLeft\",\r\n\t\"IconArrowSharpTurnRight\",\r\n\t\"IconArrowUpBar\",\r\n\t\"IconArrowUpCircle\",\r\n\t\"IconArrowUpLeftCircle\",\r\n\t\"IconArrowUpLeft\",\r\n\t\"IconArrowUpRhombus\",\r\n\t\"IconArrowUpRightCircle\",\r\n\t\"IconArrowUpRight\",\r\n\t\"IconArrowUpSquare\",\r\n\t\"IconArrowUpTail\",\r\n\t\"IconArrowUp\",\r\n\t\"IconArrowWaveLeftDown\",\r\n\t\"IconArrowWaveLeftUp\",\r\n\t\"IconArrowWaveRightDown\",\r\n\t\"IconArrowWaveRightUp\",\r\n\t\"IconArrowZigZag\",\r\n\t\"IconArrowsCross\",\r\n\t\"IconArrowsDiagonal2\",\r\n\t\"IconArrowsDiagonalMinimize2\",\r\n\t\"IconArrowsDiagonalMinimize\",\r\n\t\"IconArrowsDiagonal\",\r\n\t\"IconArrowsDiff\",\r\n\t\"IconArrowsDoubleNeSw\",\r\n\t\"IconArrowsDoubleNwSe\",\r\n\t\"IconArrowsDoubleSeNw\",\r\n\t\"IconArrowsDoubleSwNe\",\r\n\t\"IconArrowsDownUp\",\r\n\t\"IconArrowsDown\",\r\n\t\"IconArrowsExchange2\",\r\n\t\"IconArrowsExchange\",\r\n\t\"IconArrowsHorizontal\",\r\n\t\"IconArrowsJoin2\",\r\n\t\"IconArrowsJoin\",\r\n\t\"IconArrowsLeftDown\",\r\n\t\"IconArrowsLeftRight\",\r\n\t\"IconArrowsLeft\",\r\n\t\"IconArrowsMaximize\",\r\n\t\"IconArrowsMinimize\",\r\n\t\"IconArrowsMoveHorizontal\",\r\n\t\"IconArrowsMoveVertical\",\r\n\t\"IconArrowsMove\",\r\n\t\"IconArrowsRandom\",\r\n\t\"IconArrowsRightDown\",\r\n\t\"IconArrowsRightLeft\",\r\n\t\"IconArrowsRight\",\r\n\t\"IconArrowsShuffle2\",\r\n\t\"IconArrowsShuffle\",\r\n\t\"IconArrowsSort\",\r\n\t\"IconArrowsSplit2\",\r\n\t\"IconArrowsSplit\",\r\n\t\"IconArrowsTransferDown\",\r\n\t\"IconArrowsTransferUp\",\r\n\t\"IconArrowsUpDown\",\r\n\t\"IconArrowsUpLeft\",\r\n\t\"IconArrowsUpRight\",\r\n\t\"IconArrowsUp\",\r\n\t\"IconArrowsVertical\",\r\n\t\"IconArtboardFilled\",\r\n\t\"IconArtboardOff\",\r\n\t\"IconArtboard\",\r\n\t\"IconArticleFilledFilled\",\r\n\t\"IconArticleOff\",\r\n\t\"IconArticle\",\r\n\t\"IconAspectRatioFilled\",\r\n\t\"IconAspectRatioOff\",\r\n\t\"IconAspectRatio\",\r\n\t\"IconAssemblyOff\",\r\n\t\"IconAssembly\",\r\n\t\"IconAsset\",\r\n\t\"IconAsteriskSimple\",\r\n\t\"IconAsterisk\",\r\n\t\"IconAtOff\",\r\n\t\"IconAt\",\r\n\t\"IconAtom2Filled\",\r\n\t\"IconAtom2\",\r\n\t\"IconAtomOff\",\r\n\t\"IconAtom\",\r\n\t\"IconAugmentedReality2\",\r\n\t\"IconAugmentedRealityOff\",\r\n\t\"IconAugmentedReality\",\r\n\t\"IconAwardFilled\",\r\n\t\"IconAwardOff\",\r\n\t\"IconAward\",\r\n\t\"IconAxe\",\r\n\t\"IconAxisX\",\r\n\t\"IconAxisY\",\r\n\t\"IconBabyBottle\",\r\n\t\"IconBabyCarriage\",\r\n\t\"IconBackhoe\",\r\n\t\"IconBackpackOff\",\r\n\t\"IconBackpack\",\r\n\t\"IconBackslash\",\r\n\t\"IconBackspaceFilled\",\r\n\t\"IconBackspace\",\r\n\t\"IconBadge3d\",\r\n\t\"IconBadge4k\",\r\n\t\"IconBadge8k\",\r\n\t\"IconBadgeAd\",\r\n\t\"IconBadgeAr\",\r\n\t\"IconBadgeCc\",\r\n\t\"IconBadgeFilled\",\r\n\t\"IconBadgeHd\",\r\n\t\"IconBadgeOff\",\r\n\t\"IconBadgeSd\",\r\n\t\"IconBadgeTm\",\r\n\t\"IconBadgeVo\",\r\n\t\"IconBadgeVr\",\r\n\t\"IconBadgeWc\",\r\n\t\"IconBadge\",\r\n\t\"IconBadgesFilled\",\r\n\t\"IconBadgesOff\",\r\n\t\"IconBadges\",\r\n\t\"IconBaguette\",\r\n\t\"IconBallAmericanFootballOff\",\r\n\t\"IconBallAmericanFootball\",\r\n\t\"IconBallBaseball\",\r\n\t\"IconBallBasketball\",\r\n\t\"IconBallBowling\",\r\n\t\"IconBallFootballOff\",\r\n\t\"IconBallFootball\",\r\n\t\"IconBallTennis\",\r\n\t\"IconBallVolleyball\",\r\n\t\"IconBalloonFilled\",\r\n\t\"IconBalloonOff\",\r\n\t\"IconBalloon\",\r\n\t\"IconBallpenFilled\",\r\n\t\"IconBallpenOff\",\r\n\t\"IconBallpen\",\r\n\t\"IconBan\",\r\n\t\"IconBandageFilled\",\r\n\t\"IconBandageOff\",\r\n\t\"IconBandage\",\r\n\t\"IconBarbellOff\",\r\n\t\"IconBarbell\",\r\n\t\"IconBarcodeOff\",\r\n\t\"IconBarcode\",\r\n\t\"IconBarrelOff\",\r\n\t\"IconBarrel\",\r\n\t\"IconBarrierBlockOff\",\r\n\t\"IconBarrierBlock\",\r\n\t\"IconBaselineDensityLarge\",\r\n\t\"IconBaselineDensityMedium\",\r\n\t\"IconBaselineDensitySmall\",\r\n\t\"IconBaseline\",\r\n\t\"IconBasketFilled\",\r\n\t\"IconBasketOff\",\r\n\t\"IconBasket\",\r\n\t\"IconBat\",\r\n\t\"IconBathFilled\",\r\n\t\"IconBathOff\",\r\n\t\"IconBath\",\r\n\t\"IconBattery1Filled\",\r\n\t\"IconBattery1\",\r\n\t\"IconBattery2Filled\",\r\n\t\"IconBattery2\",\r\n\t\"IconBattery3Filled\",\r\n\t\"IconBattery3\",\r\n\t\"IconBattery4Filled\",\r\n\t\"IconBattery4\",\r\n\t\"IconBatteryAutomotive\",\r\n\t\"IconBatteryCharging2\",\r\n\t\"IconBatteryCharging\",\r\n\t\"IconBatteryEco\",\r\n\t\"IconBatteryFilled\",\r\n\t\"IconBatteryOff\",\r\n\t\"IconBattery\",\r\n\t\"IconBeachOff\",\r\n\t\"IconBeach\",\r\n\t\"IconBedFilled\",\r\n\t\"IconBedOff\",\r\n\t\"IconBed\",\r\n\t\"IconBeerFilled\",\r\n\t\"IconBeerOff\",\r\n\t\"IconBeer\",\r\n\t\"IconBellBolt\",\r\n\t\"IconBellCancel\",\r\n\t\"IconBellCheck\",\r\n\t\"IconBellCode\",\r\n\t\"IconBellCog\",\r\n\t\"IconBellDollar\",\r\n\t\"IconBellDown\",\r\n\t\"IconBellExclamation\",\r\n\t\"IconBellFilled\",\r\n\t\"IconBellHeart\",\r\n\t\"IconBellMinusFilled\",\r\n\t\"IconBellMinus\",\r\n\t\"IconBellOff\",\r\n\t\"IconBellPause\",\r\n\t\"IconBellPin\",\r\n\t\"IconBellPlusFilled\",\r\n\t\"IconBellPlus\",\r\n\t\"IconBellQuestion\",\r\n\t\"IconBellRinging2Filled\",\r\n\t\"IconBellRinging2\",\r\n\t\"IconBellRingingFilled\",\r\n\t\"IconBellRinging\",\r\n\t\"IconBellSchool\",\r\n\t\"IconBellSearch\",\r\n\t\"IconBellShare\",\r\n\t\"IconBellStar\",\r\n\t\"IconBellUp\",\r\n\t\"IconBellXFilled\",\r\n\t\"IconBellX\",\r\n\t\"IconBellZFilled\",\r\n\t\"IconBellZ\",\r\n\t\"IconBell\",\r\n\t\"IconBeta\",\r\n\t\"IconBible\",\r\n\t\"IconBikeOff\",\r\n\t\"IconBike\",\r\n\t\"IconBinaryOff\",\r\n\t\"IconBinaryTree2\",\r\n\t\"IconBinaryTree\",\r\n\t\"IconBinary\",\r\n\t\"IconBiohazardOff\",\r\n\t\"IconBiohazard\",\r\n\t\"IconBladeFilled\",\r\n\t\"IconBlade\",\r\n\t\"IconBleachChlorine\",\r\n\t\"IconBleachNoChlorine\",\r\n\t\"IconBleachOff\",\r\n\t\"IconBleach\",\r\n\t\"IconBlockquote\",\r\n\t\"IconBluetoothConnected\",\r\n\t\"IconBluetoothOff\",\r\n\t\"IconBluetoothX\",\r\n\t\"IconBluetooth\",\r\n\t\"IconBlurOff\",\r\n\t\"IconBlur\",\r\n\t\"IconBmp\",\r\n\t\"IconBoldOff\",\r\n\t\"IconBold\",\r\n\t\"IconBoltOff\",\r\n\t\"IconBolt\",\r\n\t\"IconBombFilled\",\r\n\t\"IconBomb\",\r\n\t\"IconBoneOff\",\r\n\t\"IconBone\",\r\n\t\"IconBongOff\",\r\n\t\"IconBong\",\r\n\t\"IconBook2\",\r\n\t\"IconBookDownload\",\r\n\t\"IconBookFilled\",\r\n\t\"IconBookOff\",\r\n\t\"IconBookUpload\",\r\n\t\"IconBook\",\r\n\t\"IconBookmarkEdit\",\r\n\t\"IconBookmarkFilled\",\r\n\t\"IconBookmarkMinus\",\r\n\t\"IconBookmarkOff\",\r\n\t\"IconBookmarkPlus\",\r\n\t\"IconBookmarkQuestion\",\r\n\t\"IconBookmark\",\r\n\t\"IconBookmarksFilled\",\r\n\t\"IconBookmarksOff\",\r\n\t\"IconBookmarks\",\r\n\t\"IconBooksOff\",\r\n\t\"IconBooks\",\r\n\t\"IconBorderAll\",\r\n\t\"IconBorderBottom\",\r\n\t\"IconBorderCorners\",\r\n\t\"IconBorderHorizontal\",\r\n\t\"IconBorderInner\",\r\n\t\"IconBorderLeft\",\r\n\t\"IconBorderNone\",\r\n\t\"IconBorderOuter\",\r\n\t\"IconBorderRadius\",\r\n\t\"IconBorderRight\",\r\n\t\"IconBorderSides\",\r\n\t\"IconBorderStyle2\",\r\n\t\"IconBorderStyle\",\r\n\t\"IconBorderTop\",\r\n\t\"IconBorderVertical\",\r\n\t\"IconBottleFilled\",\r\n\t\"IconBottleOff\",\r\n\t\"IconBottle\",\r\n\t\"IconBounceLeftFilled\",\r\n\t\"IconBounceLeft\",\r\n\t\"IconBounceRightFilled\",\r\n\t\"IconBounceRight\",\r\n\t\"IconBow\",\r\n\t\"IconBowlFilled\",\r\n\t\"IconBowl\",\r\n\t\"IconBoxAlignBottomFilled\",\r\n\t\"IconBoxAlignBottomLeftFilled\",\r\n\t\"IconBoxAlignBottomLeft\",\r\n\t\"IconBoxAlignBottomRightFilled\",\r\n\t\"IconBoxAlignBottomRight\",\r\n\t\"IconBoxAlignBottom\",\r\n\t\"IconBoxAlignLeftFilled\",\r\n\t\"IconBoxAlignLeft\",\r\n\t\"IconBoxAlignRightFilled\",\r\n\t\"IconBoxAlignRight\",\r\n\t\"IconBoxAlignTopFilled\",\r\n\t\"IconBoxAlignTopLeftFilled\",\r\n\t\"IconBoxAlignTopLeft\",\r\n\t\"IconBoxAlignTopRightFilled\",\r\n\t\"IconBoxAlignTopRight\",\r\n\t\"IconBoxAlignTop\",\r\n\t\"IconBoxMargin\",\r\n\t\"IconBoxModel2Off\",\r\n\t\"IconBoxModel2\",\r\n\t\"IconBoxModelOff\",\r\n\t\"IconBoxModel\",\r\n\t\"IconBoxMultiple0\",\r\n\t\"IconBoxMultiple1\",\r\n\t\"IconBoxMultiple2\",\r\n\t\"IconBoxMultiple3\",\r\n\t\"IconBoxMultiple4\",\r\n\t\"IconBoxMultiple5\",\r\n\t\"IconBoxMultiple6\",\r\n\t\"IconBoxMultiple7\",\r\n\t\"IconBoxMultiple8\",\r\n\t\"IconBoxMultiple9\",\r\n\t\"IconBoxMultiple\",\r\n\t\"IconBoxOff\",\r\n\t\"IconBoxPadding\",\r\n\t\"IconBoxSeam\",\r\n\t\"IconBox\",\r\n\t\"IconBracesOff\",\r\n\t\"IconBraces\",\r\n\t\"IconBracketsContainEnd\",\r\n\t\"IconBracketsContainStart\",\r\n\t\"IconBracketsContain\",\r\n\t\"IconBracketsOff\",\r\n\t\"IconBrackets\",\r\n\t\"IconBraille\",\r\n\t\"IconBrain\",\r\n\t\"IconBrand4chan\",\r\n\t\"IconBrandAbstract\",\r\n\t\"IconBrandAdobe\",\r\n\t\"IconBrandAdonisJs\",\r\n\t\"IconBrandAirbnb\",\r\n\t\"IconBrandAirtable\",\r\n\t\"IconBrandAlgolia\",\r\n\t\"IconBrandAlipay\",\r\n\t\"IconBrandAlpineJs\",\r\n\t\"IconBrandAmazon\",\r\n\t\"IconBrandAmd\",\r\n\t\"IconBrandAmigo\",\r\n\t\"IconBrandAmongUs\",\r\n\t\"IconBrandAndroid\",\r\n\t\"IconBrandAngular\",\r\n\t\"IconBrandAnsible\",\r\n\t\"IconBrandAo3\",\r\n\t\"IconBrandAppgallery\",\r\n\t\"IconBrandAppleArcade\",\r\n\t\"IconBrandApplePodcast\",\r\n\t\"IconBrandApple\",\r\n\t\"IconBrandAppstore\",\r\n\t\"IconBrandAsana\",\r\n\t\"IconBrandAws\",\r\n\t\"IconBrandAzure\",\r\n\t\"IconBrandBackbone\",\r\n\t\"IconBrandBadoo\",\r\n\t\"IconBrandBaidu\",\r\n\t\"IconBrandBandcamp\",\r\n\t\"IconBrandBandlab\",\r\n\t\"IconBrandBeats\",\r\n\t\"IconBrandBehance\",\r\n\t\"IconBrandBilibili\",\r\n\t\"IconBrandBinance\",\r\n\t\"IconBrandBing\",\r\n\t\"IconBrandBitbucket\",\r\n\t\"IconBrandBlackberry\",\r\n\t\"IconBrandBlender\",\r\n\t\"IconBrandBlogger\",\r\n\t\"IconBrandBooking\",\r\n\t\"IconBrandBootstrap\",\r\n\t\"IconBrandBulma\",\r\n\t\"IconBrandBumble\",\r\n\t\"IconBrandBunpo\",\r\n\t\"IconBrandCSharp\",\r\n\t\"IconBrandCake\",\r\n\t\"IconBrandCakephp\",\r\n\t\"IconBrandCampaignmonitor\",\r\n\t\"IconBrandCarbon\",\r\n\t\"IconBrandCashapp\",\r\n\t\"IconBrandChrome\",\r\n\t\"IconBrandCinema4d\",\r\n\t\"IconBrandCitymapper\",\r\n\t\"IconBrandCloudflare\",\r\n\t\"IconBrandCodecov\",\r\n\t\"IconBrandCodepen\",\r\n\t\"IconBrandCodesandbox\",\r\n\t\"IconBrandCohost\",\r\n\t\"IconBrandCoinbase\",\r\n\t\"IconBrandComedyCentral\",\r\n\t\"IconBrandCoreos\",\r\n\t\"IconBrandCouchdb\",\r\n\t\"IconBrandCouchsurfing\",\r\n\t\"IconBrandCpp\",\r\n\t\"IconBrandCraft\",\r\n\t\"IconBrandCrunchbase\",\r\n\t\"IconBrandCss3\",\r\n\t\"IconBrandCtemplar\",\r\n\t\"IconBrandCucumber\",\r\n\t\"IconBrandCupra\",\r\n\t\"IconBrandCypress\",\r\n\t\"IconBrandD3\",\r\n\t\"IconBrandDaysCounter\",\r\n\t\"IconBrandDcos\",\r\n\t\"IconBrandDebian\",\r\n\t\"IconBrandDeezer\",\r\n\t\"IconBrandDeliveroo\",\r\n\t\"IconBrandDeno\",\r\n\t\"IconBrandDenodo\",\r\n\t\"IconBrandDeviantart\",\r\n\t\"IconBrandDigg\",\r\n\t\"IconBrandDingtalk\",\r\n\t\"IconBrandDiscordFilled\",\r\n\t\"IconBrandDiscord\",\r\n\t\"IconBrandDisney\",\r\n\t\"IconBrandDisqus\",\r\n\t\"IconBrandDjango\",\r\n\t\"IconBrandDocker\",\r\n\t\"IconBrandDoctrine\",\r\n\t\"IconBrandDolbyDigital\",\r\n\t\"IconBrandDouban\",\r\n\t\"IconBrandDribbbleFilled\",\r\n\t\"IconBrandDribbble\",\r\n\t\"IconBrandDrops\",\r\n\t\"IconBrandDrupal\",\r\n\t\"IconBrandEdge\",\r\n\t\"IconBrandElastic\",\r\n\t\"IconBrandElectronicArts\",\r\n\t\"IconBrandEmber\",\r\n\t\"IconBrandEnvato\",\r\n\t\"IconBrandEtsy\",\r\n\t\"IconBrandEvernote\",\r\n\t\"IconBrandFacebookFilled\",\r\n\t\"IconBrandFacebook\",\r\n\t\"IconBrandFeedly\",\r\n\t\"IconBrandFigma\",\r\n\t\"IconBrandFilezilla\",\r\n\t\"IconBrandFinder\",\r\n\t\"IconBrandFirebase\",\r\n\t\"IconBrandFirefox\",\r\n\t\"IconBrandFiverr\",\r\n\t\"IconBrandFlickr\",\r\n\t\"IconBrandFlightradar24\",\r\n\t\"IconBrandFlipboard\",\r\n\t\"IconBrandFlutter\",\r\n\t\"IconBrandFortnite\",\r\n\t\"IconBrandFoursquare\",\r\n\t\"IconBrandFramerMotion\",\r\n\t\"IconBrandFramer\",\r\n\t\"IconBrandFunimation\",\r\n\t\"IconBrandGatsby\",\r\n\t\"IconBrandGit\",\r\n\t\"IconBrandGithubCopilot\",\r\n\t\"IconBrandGithubFilled\",\r\n\t\"IconBrandGithub\",\r\n\t\"IconBrandGitlab\",\r\n\t\"IconBrandGmail\",\r\n\t\"IconBrandGolang\",\r\n\t\"IconBrandGoogleAnalytics\",\r\n\t\"IconBrandGoogleBigQuery\",\r\n\t\"IconBrandGoogleDrive\",\r\n\t\"IconBrandGoogleFit\",\r\n\t\"IconBrandGoogleHome\",\r\n\t\"IconBrandGoogleMaps\",\r\n\t\"IconBrandGoogleOne\",\r\n\t\"IconBrandGooglePhotos\",\r\n\t\"IconBrandGooglePlay\",\r\n\t\"IconBrandGooglePodcasts\",\r\n\t\"IconBrandGoogle\",\r\n\t\"IconBrandGrammarly\",\r\n\t\"IconBrandGraphql\",\r\n\t\"IconBrandGravatar\",\r\n\t\"IconBrandGrindr\",\r\n\t\"IconBrandGuardian\",\r\n\t\"IconBrandGumroad\",\r\n\t\"IconBrandHbo\",\r\n\t\"IconBrandHeadlessui\",\r\n\t\"IconBrandHexo\",\r\n\t\"IconBrandHipchat\",\r\n\t\"IconBrandHtml5\",\r\n\t\"IconBrandInertia\",\r\n\t\"IconBrandInstagram\",\r\n\t\"IconBrandIntercom\",\r\n\t\"IconBrandItch\",\r\n\t\"IconBrandJavascript\",\r\n\t\"IconBrandJuejin\",\r\n\t\"IconBrandKbin\",\r\n\t\"IconBrandKick\",\r\n\t\"IconBrandKickstarter\",\r\n\t\"IconBrandKotlin\",\r\n\t\"IconBrandLaravel\",\r\n\t\"IconBrandLastfm\",\r\n\t\"IconBrandLeetcode\",\r\n\t\"IconBrandLetterboxd\",\r\n\t\"IconBrandLine\",\r\n\t\"IconBrandLinkedin\",\r\n\t\"IconBrandLinktree\",\r\n\t\"IconBrandLinqpad\",\r\n\t\"IconBrandLoom\",\r\n\t\"IconBrandMailgun\",\r\n\t\"IconBrandMantine\",\r\n\t\"IconBrandMastercard\",\r\n\t\"IconBrandMastodon\",\r\n\t\"IconBrandMatrix\",\r\n\t\"IconBrandMcdonalds\",\r\n\t\"IconBrandMedium\",\r\n\t\"IconBrandMercedes\",\r\n\t\"IconBrandMessenger\",\r\n\t\"IconBrandMeta\",\r\n\t\"IconBrandMicrosoftTeams\",\r\n\t\"IconBrandMinecraft\",\r\n\t\"IconBrandMiniprogram\",\r\n\t\"IconBrandMixpanel\",\r\n\t\"IconBrandMonday\",\r\n\t\"IconBrandMongodb\",\r\n\t\"IconBrandMyOppo\",\r\n\t\"IconBrandMysql\",\r\n\t\"IconBrandNationalGeographic\",\r\n\t\"IconBrandNem\",\r\n\t\"IconBrandNetbeans\",\r\n\t\"IconBrandNeteaseMusic\",\r\n\t\"IconBrandNetflix\",\r\n\t\"IconBrandNexo\",\r\n\t\"IconBrandNextcloud\",\r\n\t\"IconBrandNextjs\",\r\n\t\"IconBrandNodejs\",\r\n\t\"IconBrandNordVpn\",\r\n\t\"IconBrandNotion\",\r\n\t\"IconBrandNpm\",\r\n\t\"IconBrandNuxt\",\r\n\t\"IconBrandNytimes\",\r\n\t\"IconBrandOauth\",\r\n\t\"IconBrandOffice\",\r\n\t\"IconBrandOkRu\",\r\n\t\"IconBrandOnedrive\",\r\n\t\"IconBrandOnlyfans\",\r\n\t\"IconBrandOpenSource\",\r\n\t\"IconBrandOpenai\",\r\n\t\"IconBrandOpenvpn\",\r\n\t\"IconBrandOpera\",\r\n\t\"IconBrandPagekit\",\r\n\t\"IconBrandPatreon\",\r\n\t\"IconBrandPaypalFilled\",\r\n\t\"IconBrandPaypal\",\r\n\t\"IconBrandPaypay\",\r\n\t\"IconBrandPeanut\",\r\n\t\"IconBrandPepsi\",\r\n\t\"IconBrandPhp\",\r\n\t\"IconBrandPicsart\",\r\n\t\"IconBrandPinterest\",\r\n\t\"IconBrandPlanetscale\",\r\n\t\"IconBrandPocket\",\r\n\t\"IconBrandPolymer\",\r\n\t\"IconBrandPowershell\",\r\n\t\"IconBrandPrisma\",\r\n\t\"IconBrandProducthunt\",\r\n\t\"IconBrandPushbullet\",\r\n\t\"IconBrandPushover\",\r\n\t\"IconBrandPython\",\r\n\t\"IconBrandQq\",\r\n\t\"IconBrandRadixUi\",\r\n\t\"IconBrandReactNative\",\r\n\t\"IconBrandReact\",\r\n\t\"IconBrandReason\",\r\n\t\"IconBrandReddit\",\r\n\t\"IconBrandRedhat\",\r\n\t\"IconBrandRedux\",\r\n\t\"IconBrandRevolut\",\r\n\t\"IconBrandRumble\",\r\n\t\"IconBrandRust\",\r\n\t\"IconBrandSafari\",\r\n\t\"IconBrandSamsungpass\",\r\n\t\"IconBrandSass\",\r\n\t\"IconBrandSentry\",\r\n\t\"IconBrandSharik\",\r\n\t\"IconBrandShazam\",\r\n\t\"IconBrandShopee\",\r\n\t\"IconBrandSketch\",\r\n\t\"IconBrandSkype\",\r\n\t\"IconBrandSlack\",\r\n\t\"IconBrandSnapchat\",\r\n\t\"IconBrandSnapseed\",\r\n\t\"IconBrandSnowflake\",\r\n\t\"IconBrandSocketIo\",\r\n\t\"IconBrandSolidjs\",\r\n\t\"IconBrandSoundcloud\",\r\n\t\"IconBrandSpacehey\",\r\n\t\"IconBrandSpeedtest\",\r\n\t\"IconBrandSpotify\",\r\n\t\"IconBrandStackoverflow\",\r\n\t\"IconBrandStackshare\",\r\n\t\"IconBrandSteam\",\r\n\t\"IconBrandStorj\",\r\n\t\"IconBrandStorybook\",\r\n\t\"IconBrandStorytel\",\r\n\t\"IconBrandStrava\",\r\n\t\"IconBrandStripe\",\r\n\t\"IconBrandSublimeText\",\r\n\t\"IconBrandSugarizer\",\r\n\t\"IconBrandSupabase\",\r\n\t\"IconBrandSuperhuman\",\r\n\t\"IconBrandSupernova\",\r\n\t\"IconBrandSurfshark\",\r\n\t\"IconBrandSvelte\",\r\n\t\"IconBrandSwift\",\r\n\t\"IconBrandSymfony\",\r\n\t\"IconBrandTabler\",\r\n\t\"IconBrandTailwind\",\r\n\t\"IconBrandTaobao\",\r\n\t\"IconBrandTed\",\r\n\t\"IconBrandTelegram\",\r\n\t\"IconBrandTerraform\",\r\n\t\"IconBrandTether\",\r\n\t\"IconBrandThreads\",\r\n\t\"IconBrandThreejs\",\r\n\t\"IconBrandTidal\",\r\n\t\"IconBrandTiktoFilled\",\r\n\t\"IconBrandTiktok\",\r\n\t\"IconBrandTinder\",\r\n\t\"IconBrandTopbuzz\",\r\n\t\"IconBrandTorchain\",\r\n\t\"IconBrandToyota\",\r\n\t\"IconBrandTrello\",\r\n\t\"IconBrandTripadvisor\",\r\n\t\"IconBrandTumblr\",\r\n\t\"IconBrandTwilio\",\r\n\t\"IconBrandTwitch\",\r\n\t\"IconBrandTwitterFilled\",\r\n\t\"IconBrandTwitter\",\r\n\t\"IconBrandTypescript\",\r\n\t\"IconBrandUber\",\r\n\t\"IconBrandUbuntu\",\r\n\t\"IconBrandUnity\",\r\n\t\"IconBrandUnsplash\",\r\n\t\"IconBrandUpwork\",\r\n\t\"IconBrandValorant\",\r\n\t\"IconBrandVercel\",\r\n\t\"IconBrandVimeo\",\r\n\t\"IconBrandVinted\",\r\n\t\"IconBrandVisa\",\r\n\t\"IconBrandVisualStudio\",\r\n\t\"IconBrandVite\",\r\n\t\"IconBrandVivaldi\",\r\n\t\"IconBrandVk\",\r\n\t\"IconBrandVlc\",\r\n\t\"IconBrandVolkswagen\",\r\n\t\"IconBrandVsco\",\r\n\t\"IconBrandVscode\",\r\n\t\"IconBrandVue\",\r\n\t\"IconBrandWalmart\",\r\n\t\"IconBrandWaze\",\r\n\t\"IconBrandWebflow\",\r\n\t\"IconBrandWechat\",\r\n\t\"IconBrandWeibo\",\r\n\t\"IconBrandWhatsapp\",\r\n\t\"IconBrandWikipedia\",\r\n\t\"IconBrandWindows\",\r\n\t\"IconBrandWindy\",\r\n\t\"IconBrandWish\",\r\n\t\"IconBrandWix\",\r\n\t\"IconBrandWordpress\",\r\n\t\"IconBrandXamarin\",\r\n\t\"IconBrandXbox\",\r\n\t\"IconBrandXing\",\r\n\t\"IconBrandYahoo\",\r\n\t\"IconBrandYandex\",\r\n\t\"IconBrandYatse\",\r\n\t\"IconBrandYcombinator\",\r\n\t\"IconBrandYoutubeKids\",\r\n\t\"IconBrandYoutube\",\r\n\t\"IconBrandZalando\",\r\n\t\"IconBrandZapier\",\r\n\t\"IconBrandZeit\",\r\n\t\"IconBrandZhihu\",\r\n\t\"IconBrandZoom\",\r\n\t\"IconBrandZulip\",\r\n\t\"IconBrandZwift\",\r\n\t\"IconBreadOff\",\r\n\t\"IconBread\",\r\n\t\"IconBriefcase2\",\r\n\t\"IconBriefcaseOff\",\r\n\t\"IconBriefcase\",\r\n\t\"IconBrightness2\",\r\n\t\"IconBrightnessDownFilled\",\r\n\t\"IconBrightnessDown\",\r\n\t\"IconBrightnessHalf\",\r\n\t\"IconBrightnessOff\",\r\n\t\"IconBrightnessUpFilled\",\r\n\t\"IconBrightnessUp\",\r\n\t\"IconBrightness\",\r\n\t\"IconBroadcastOff\",\r\n\t\"IconBroadcast\",\r\n\t\"IconBrowserCheck\",\r\n\t\"IconBrowserOff\",\r\n\t\"IconBrowserPlus\",\r\n\t\"IconBrowserX\",\r\n\t\"IconBrowser\",\r\n\t\"IconBrushOff\",\r\n\t\"IconBrush\",\r\n\t\"IconBucketDroplet\",\r\n\t\"IconBucketOff\",\r\n\t\"IconBucket\",\r\n\t\"IconBugOff\",\r\n\t\"IconBug\",\r\n\t\"IconBuildingArch\",\r\n\t\"IconBuildingBank\",\r\n\t\"IconBuildingBridge2\",\r\n\t\"IconBuildingBridge\",\r\n\t\"IconBuildingBroadcastTower\",\r\n\t\"IconBuildingCarousel\",\r\n\t\"IconBuildingCastle\",\r\n\t\"IconBuildingChurch\",\r\n\t\"IconBuildingCircus\",\r\n\t\"IconBuildingCommunity\",\r\n\t\"IconBuildingCottage\",\r\n\t\"IconBuildingEstate\",\r\n\t\"IconBuildingFactory2\",\r\n\t\"IconBuildingFactory\",\r\n\t\"IconBuildingFortress\",\r\n\t\"IconBuildingHospital\",\r\n\t\"IconBuildingLighthouse\",\r\n\t\"IconBuildingMonument\",\r\n\t\"IconBuildingMosque\",\r\n\t\"IconBuildingPavilion\",\r\n\t\"IconBuildingSkyscraper\",\r\n\t\"IconBuildingStadium\",\r\n\t\"IconBuildingStore\",\r\n\t\"IconBuildingTunnel\",\r\n\t\"IconBuildingWarehouse\",\r\n\t\"IconBuildingWindTurbine\",\r\n\t\"IconBuilding\",\r\n\t\"IconBulbFilled\",\r\n\t\"IconBulbOff\",\r\n\t\"IconBulb\",\r\n\t\"IconBulldozer\",\r\n\t\"IconBusOff\",\r\n\t\"IconBusStop\",\r\n\t\"IconBus\",\r\n\t\"IconBusinessplan\",\r\n\t\"IconButterfly\",\r\n\t\"IconCactusFilled\",\r\n\t\"IconCactusOff\",\r\n\t\"IconCactus\",\r\n\t\"IconCakeOff\",\r\n\t\"IconCake\",\r\n\t\"IconCalculatorFilled\",\r\n\t\"IconCalculatorOff\",\r\n\t\"IconCalculator\",\r\n\t\"IconCalendarBolt\",\r\n\t\"IconCalendarCancel\",\r\n\t\"IconCalendarCheck\",\r\n\t\"IconCalendarCode\",\r\n\t\"IconCalendarCog\",\r\n\t\"IconCalendarDollar\",\r\n\t\"IconCalendarDown\",\r\n\t\"IconCalendarDue\",\r\n\t\"IconCalendarEvent\",\r\n\t\"IconCalendarExclamation\",\r\n\t\"IconCalendarFilled\",\r\n\t\"IconCalendarHeart\",\r\n\t\"IconCalendarMinus\",\r\n\t\"IconCalendarOff\",\r\n\t\"IconCalendarPause\",\r\n\t\"IconCalendarPin\",\r\n\t\"IconCalendarPlus\",\r\n\t\"IconCalendarQuestion\",\r\n\t\"IconCalendarRepeat\",\r\n\t\"IconCalendarSearch\",\r\n\t\"IconCalendarShare\",\r\n\t\"IconCalendarStar\",\r\n\t\"IconCalendarStats\",\r\n\t\"IconCalendarTime\",\r\n\t\"IconCalendarUp\",\r\n\t\"IconCalendarX\",\r\n\t\"IconCalendar\",\r\n\t\"IconCameraBolt\",\r\n\t\"IconCameraCancel\",\r\n\t\"IconCameraCheck\",\r\n\t\"IconCameraCode\",\r\n\t\"IconCameraCog\",\r\n\t\"IconCameraDollar\",\r\n\t\"IconCameraDown\",\r\n\t\"IconCameraExclamation\",\r\n\t\"IconCameraFilled\",\r\n\t\"IconCameraHeart\",\r\n\t\"IconCameraMinus\",\r\n\t\"IconCameraOff\",\r\n\t\"IconCameraPause\",\r\n\t\"IconCameraPin\",\r\n\t\"IconCameraPlus\",\r\n\t\"IconCameraQuestion\",\r\n\t\"IconCameraRotate\",\r\n\t\"IconCameraSearch\",\r\n\t\"IconCameraSelfie\",\r\n\t\"IconCameraShare\",\r\n\t\"IconCameraStar\",\r\n\t\"IconCameraUp\",\r\n\t\"IconCameraX\",\r\n\t\"IconCamera\",\r\n\t\"IconCamper\",\r\n\t\"IconCampfireFilled\",\r\n\t\"IconCampfire\",\r\n\t\"IconCandle\",\r\n\t\"IconCandyOff\",\r\n\t\"IconCandy\",\r\n\t\"IconCane\",\r\n\t\"IconCannabis\",\r\n\t\"IconCapsuleHorizontal\",\r\n\t\"IconCapsule\",\r\n\t\"IconCaptureFilled\",\r\n\t\"IconCaptureOff\",\r\n\t\"IconCapture\",\r\n\t\"IconCarCrane\",\r\n\t\"IconCarCrash\",\r\n\t\"IconCarOff\",\r\n\t\"IconCarTurbine\",\r\n\t\"IconCar\",\r\n\t\"IconCaravan\",\r\n\t\"IconCardboardsOff\",\r\n\t\"IconCardboards\",\r\n\t\"IconCards\",\r\n\t\"IconCaretDownFilled\",\r\n\t\"IconCaretDown\",\r\n\t\"IconCaretLeftFilled\",\r\n\t\"IconCaretLeft\",\r\n\t\"IconCaretRightFilled\",\r\n\t\"IconCaretRight\",\r\n\t\"IconCaretUpFilled\",\r\n\t\"IconCaretUp\",\r\n\t\"IconCarouselHorizontalFilled\",\r\n\t\"IconCarouselHorizontal\",\r\n\t\"IconCarouselVerticalFilled\",\r\n\t\"IconCarouselVertical\",\r\n\t\"IconCarrotOff\",\r\n\t\"IconCarrot\",\r\n\t\"IconCashBanknoteOff\",\r\n\t\"IconCashBanknote\",\r\n\t\"IconCashOff\",\r\n\t\"IconCash\",\r\n\t\"IconCastOff\",\r\n\t\"IconCast\",\r\n\t\"IconCat\",\r\n\t\"IconCategory2\",\r\n\t\"IconCategoryFilled\",\r\n\t\"IconCategory\",\r\n\t\"IconCeOff\",\r\n\t\"IconCe\",\r\n\t\"IconCellSignal1\",\r\n\t\"IconCellSignal2\",\r\n\t\"IconCellSignal3\",\r\n\t\"IconCellSignal4\",\r\n\t\"IconCellSignal5\",\r\n\t\"IconCellSignalOff\",\r\n\t\"IconCell\",\r\n\t\"IconCertificate2Off\",\r\n\t\"IconCertificate2\",\r\n\t\"IconCertificateOff\",\r\n\t\"IconCertificate\",\r\n\t\"IconChairDirector\",\r\n\t\"IconChalkboardOff\",\r\n\t\"IconChalkboard\",\r\n\t\"IconChargingPile\",\r\n\t\"IconChartArcs3\",\r\n\t\"IconChartArcs\",\r\n\t\"IconChartAreaFilled\",\r\n\t\"IconChartAreaLineFilled\",\r\n\t\"IconChartAreaLine\",\r\n\t\"IconChartArea\",\r\n\t\"IconChartArrowsVertical\",\r\n\t\"IconChartArrows\",\r\n\t\"IconChartBarOff\",\r\n\t\"IconChartBar\",\r\n\t\"IconChartBubbleFilled\",\r\n\t\"IconChartBubble\",\r\n\t\"IconChartCandleFilled\",\r\n\t\"IconChartCandle\",\r\n\t\"IconChartCircles\",\r\n\t\"IconChartDonut2\",\r\n\t\"IconChartDonut3\",\r\n\t\"IconChartDonut4\",\r\n\t\"IconChartDonutFilled\",\r\n\t\"IconChartDonut\",\r\n\t\"IconChartDots2\",\r\n\t\"IconChartDots3\",\r\n\t\"IconChartDots\",\r\n\t\"IconChartGridDots\",\r\n\t\"IconChartHistogram\",\r\n\t\"IconChartInfographic\",\r\n\t\"IconChartLine\",\r\n\t\"IconChartPie2\",\r\n\t\"IconChartPie3\",\r\n\t\"IconChartPie4\",\r\n\t\"IconChartPieFilled\",\r\n\t\"IconChartPieOff\",\r\n\t\"IconChartPie\",\r\n\t\"IconChartPpf\",\r\n\t\"IconChartRadar\",\r\n\t\"IconChartSankey\",\r\n\t\"IconChartTreemap\",\r\n\t\"IconCheck\",\r\n\t\"IconCheckbox\",\r\n\t\"IconChecklist\",\r\n\t\"IconChecks\",\r\n\t\"IconCheckupList\",\r\n\t\"IconCheese\",\r\n\t\"IconChefHatOff\",\r\n\t\"IconChefHat\",\r\n\t\"IconCherryFilled\",\r\n\t\"IconCherry\",\r\n\t\"IconChessBishopFilled\",\r\n\t\"IconChessBishop\",\r\n\t\"IconChessFilled\",\r\n\t\"IconChessKingFilled\",\r\n\t\"IconChessKing\",\r\n\t\"IconChessKnightFilled\",\r\n\t\"IconChessKnight\",\r\n\t\"IconChessQueenFilled\",\r\n\t\"IconChessQueen\",\r\n\t\"IconChessRookFilled\",\r\n\t\"IconChessRook\",\r\n\t\"IconChess\",\r\n\t\"IconChevronCompactDown\",\r\n\t\"IconChevronCompactLeft\",\r\n\t\"IconChevronCompactRight\",\r\n\t\"IconChevronCompactUp\",\r\n\t\"IconChevronDownLeft\",\r\n\t\"IconChevronDownRight\",\r\n\t\"IconChevronDown\",\r\n\t\"IconChevronLeftPipe\",\r\n\t\"IconChevronLeft\",\r\n\t\"IconChevronRightPipe\",\r\n\t\"IconChevronRight\",\r\n\t\"IconChevronUpLeft\",\r\n\t\"IconChevronUpRight\",\r\n\t\"IconChevronUp\",\r\n\t\"IconChevronsDownLeft\",\r\n\t\"IconChevronsDownRight\",\r\n\t\"IconChevronsDown\",\r\n\t\"IconChevronsLeft\",\r\n\t\"IconChevronsRight\",\r\n\t\"IconChevronsUpLeft\",\r\n\t\"IconChevronsUpRight\",\r\n\t\"IconChevronsUp\",\r\n\t\"IconChisel\",\r\n\t\"IconChristmasTreeOff\",\r\n\t\"IconChristmasTree\",\r\n\t\"IconCircle0Filled\",\r\n\t\"IconCircle1Filled\",\r\n\t\"IconCircle2Filled\",\r\n\t\"IconCircle3Filled\",\r\n\t\"IconCircle4Filled\",\r\n\t\"IconCircle5Filled\",\r\n\t\"IconCircle6Filled\",\r\n\t\"IconCircle7Filled\",\r\n\t\"IconCircle8Filled\",\r\n\t\"IconCircle9Filled\",\r\n\t\"IconCircleArrowDownFilled\",\r\n\t\"IconCircleArrowDownLeftFilled\",\r\n\t\"IconCircleArrowDownLeft\",\r\n\t\"IconCircleArrowDownRightFilled\",\r\n\t\"IconCircleArrowDownRight\",\r\n\t\"IconCircleArrowDown\",\r\n\t\"IconCircleArrowLeftFilled\",\r\n\t\"IconCircleArrowLeft\",\r\n\t\"IconCircleArrowRightFilled\",\r\n\t\"IconCircleArrowRight\",\r\n\t\"IconCircleArrowUpFilled\",\r\n\t\"IconCircleArrowUpLeftFilled\",\r\n\t\"IconCircleArrowUpLeft\",\r\n\t\"IconCircleArrowUpRightFilled\",\r\n\t\"IconCircleArrowUpRight\",\r\n\t\"IconCircleArrowUp\",\r\n\t\"IconCircleCaretDown\",\r\n\t\"IconCircleCaretLeft\",\r\n\t\"IconCircleCaretRight\",\r\n\t\"IconCircleCaretUp\",\r\n\t\"IconCircleCheckFilled\",\r\n\t\"IconCircleCheck\",\r\n\t\"IconCircleChevronDown\",\r\n\t\"IconCircleChevronLeft\",\r\n\t\"IconCircleChevronRight\",\r\n\t\"IconCircleChevronUp\",\r\n\t\"IconCircleChevronsDown\",\r\n\t\"IconCircleChevronsLeft\",\r\n\t\"IconCircleChevronsRight\",\r\n\t\"IconCircleChevronsUp\",\r\n\t\"IconCircleDashed\",\r\n\t\"IconCircleDotFilled\",\r\n\t\"IconCircleDot\",\r\n\t\"IconCircleDotted\",\r\n\t\"IconCircleFilled\",\r\n\t\"IconCircleHalf2\",\r\n\t\"IconCircleHalfVertical\",\r\n\t\"IconCircleHalf\",\r\n\t\"IconCircleKeyFilled\",\r\n\t\"IconCircleKey\",\r\n\t\"IconCircleLetterA\",\r\n\t\"IconCircleLetterB\",\r\n\t\"IconCircleLetterC\",\r\n\t\"IconCircleLetterD\",\r\n\t\"IconCircleLetterE\",\r\n\t\"IconCircleLetterF\",\r\n\t\"IconCircleLetterG\",\r\n\t\"IconCircleLetterH\",\r\n\t\"IconCircleLetterI\",\r\n\t\"IconCircleLetterJ\",\r\n\t\"IconCircleLetterK\",\r\n\t\"IconCircleLetterL\",\r\n\t\"IconCircleLetterM\",\r\n\t\"IconCircleLetterN\",\r\n\t\"IconCircleLetterO\",\r\n\t\"IconCircleLetterP\",\r\n\t\"IconCircleLetterQ\",\r\n\t\"IconCircleLetterR\",\r\n\t\"IconCircleLetterS\",\r\n\t\"IconCircleLetterT\",\r\n\t\"IconCircleLetterU\",\r\n\t\"IconCircleLetterV\",\r\n\t\"IconCircleLetterW\",\r\n\t\"IconCircleLetterX\",\r\n\t\"IconCircleLetterY\",\r\n\t\"IconCircleLetterZ\",\r\n\t\"IconCircleMinus\",\r\n\t\"IconCircleNumber0\",\r\n\t\"IconCircleNumber1\",\r\n\t\"IconCircleNumber2\",\r\n\t\"IconCircleNumber3\",\r\n\t\"IconCircleNumber4\",\r\n\t\"IconCircleNumber5\",\r\n\t\"IconCircleNumber6\",\r\n\t\"IconCircleNumber7\",\r\n\t\"IconCircleNumber8\",\r\n\t\"IconCircleNumber9\",\r\n\t\"IconCircleOff\",\r\n\t\"IconCirclePlus\",\r\n\t\"IconCircleRectangleOff\",\r\n\t\"IconCircleRectangle\",\r\n\t\"IconCircleSquare\",\r\n\t\"IconCircleTriangle\",\r\n\t\"IconCircleXFilled\",\r\n\t\"IconCircleX\",\r\n\t\"IconCircle\",\r\n\t\"IconCirclesFilled\",\r\n\t\"IconCirclesRelation\",\r\n\t\"IconCircles\",\r\n\t\"IconCircuitAmmeter\",\r\n\t\"IconCircuitBattery\",\r\n\t\"IconCircuitBulb\",\r\n\t\"IconCircuitCapacitorPolarized\",\r\n\t\"IconCircuitCapacitor\",\r\n\t\"IconCircuitCellPlus\",\r\n\t\"IconCircuitCell\",\r\n\t\"IconCircuitChangeover\",\r\n\t\"IconCircuitDiodeZener\",\r\n\t\"IconCircuitDiode\",\r\n\t\"IconCircuitGroundDigital\",\r\n\t\"IconCircuitGround\",\r\n\t\"IconCircuitInductor\",\r\n\t\"IconCircuitMotor\",\r\n\t\"IconCircuitPushbutton\",\r\n\t\"IconCircuitResistor\",\r\n\t\"IconCircuitSwitchClosed\",\r\n\t\"IconCircuitSwitchOpen\",\r\n\t\"IconCircuitVoltmeter\",\r\n\t\"IconClearAll\",\r\n\t\"IconClearFormatting\",\r\n\t\"IconClick\",\r\n\t\"IconClipboardCheck\",\r\n\t\"IconClipboardCopy\",\r\n\t\"IconClipboardData\",\r\n\t\"IconClipboardHeart\",\r\n\t\"IconClipboardList\",\r\n\t\"IconClipboardOff\",\r\n\t\"IconClipboardPlus\",\r\n\t\"IconClipboardText\",\r\n\t\"IconClipboardTypography\",\r\n\t\"IconClipboardX\",\r\n\t\"IconClipboard\",\r\n\t\"IconClock2\",\r\n\t\"IconClockBolt\",\r\n\t\"IconClockCancel\",\r\n\t\"IconClockCheck\",\r\n\t\"IconClockCode\",\r\n\t\"IconClockCog\",\r\n\t\"IconClockDollar\",\r\n\t\"IconClockDown\",\r\n\t\"IconClockEdit\",\r\n\t\"IconClockExclamation\",\r\n\t\"IconClockFilled\",\r\n\t\"IconClockHeart\",\r\n\t\"IconClockHour1\",\r\n\t\"IconClockHour10\",\r\n\t\"IconClockHour11\",\r\n\t\"IconClockHour12\",\r\n\t\"IconClockHour2\",\r\n\t\"IconClockHour3\",\r\n\t\"IconClockHour4\",\r\n\t\"IconClockHour5\",\r\n\t\"IconClockHour6\",\r\n\t\"IconClockHour7\",\r\n\t\"IconClockHour8\",\r\n\t\"IconClockHour9\",\r\n\t\"IconClockMinus\",\r\n\t\"IconClockOff\",\r\n\t\"IconClockPause\",\r\n\t\"IconClockPin\",\r\n\t\"IconClockPlay\",\r\n\t\"IconClockPlus\",\r\n\t\"IconClockQuestion\",\r\n\t\"IconClockRecord\",\r\n\t\"IconClockSearch\",\r\n\t\"IconClockShare\",\r\n\t\"IconClockShield\",\r\n\t\"IconClockStar\",\r\n\t\"IconClockStop\",\r\n\t\"IconClockUp\",\r\n\t\"IconClockX\",\r\n\t\"IconClock\",\r\n\t\"IconClothesRackOff\",\r\n\t\"IconClothesRack\",\r\n\t\"IconCloudBolt\",\r\n\t\"IconCloudCancel\",\r\n\t\"IconCloudCheck\",\r\n\t\"IconCloudCode\",\r\n\t\"IconCloudCog\",\r\n\t\"IconCloudComputing\",\r\n\t\"IconCloudDataConnection\",\r\n\t\"IconCloudDollar\",\r\n\t\"IconCloudDown\",\r\n\t\"IconCloudDownload\",\r\n\t\"IconCloudExclamation\",\r\n\t\"IconCloudFilled\",\r\n\t\"IconCloudFog\",\r\n\t\"IconCloudHeart\",\r\n\t\"IconCloudLockOpen\",\r\n\t\"IconCloudLock\",\r\n\t\"IconCloudMinus\",\r\n\t\"IconCloudOff\",\r\n\t\"IconCloudPause\",\r\n\t\"IconCloudPin\",\r\n\t\"IconCloudPlus\",\r\n\t\"IconCloudQuestion\",\r\n\t\"IconCloudRain\",\r\n\t\"IconCloudSearch\",\r\n\t\"IconCloudShare\",\r\n\t\"IconCloudSnow\",\r\n\t\"IconCloudStar\",\r\n\t\"IconCloudStorm\",\r\n\t\"IconCloudUp\",\r\n\t\"IconCloudUpload\",\r\n\t\"IconCloudX\",\r\n\t\"IconCloud\",\r\n\t\"IconClover2\",\r\n\t\"IconClover\",\r\n\t\"IconClubsFilled\",\r\n\t\"IconClubs\",\r\n\t\"IconCodeAsterix\",\r\n\t\"IconCodeCircle2\",\r\n\t\"IconCodeCircle\",\r\n\t\"IconCodeDots\",\r\n\t\"IconCodeMinus\",\r\n\t\"IconCodeOff\",\r\n\t\"IconCodePlus\",\r\n\t\"IconCode\",\r\n\t\"IconCoffeeOff\",\r\n\t\"IconCoffee\",\r\n\t\"IconCoffin\",\r\n\t\"IconCoinBitcoin\",\r\n\t\"IconCoinEuro\",\r\n\t\"IconCoinMonero\",\r\n\t\"IconCoinOff\",\r\n\t\"IconCoinPound\",\r\n\t\"IconCoinRupee\",\r\n\t\"IconCoinYen\",\r\n\t\"IconCoinYuan\",\r\n\t\"IconCoin\",\r\n\t\"IconCoins\",\r\n\t\"IconColorFilter\",\r\n\t\"IconColorPickerOff\",\r\n\t\"IconColorPicker\",\r\n\t\"IconColorSwatchOff\",\r\n\t\"IconColorSwatch\",\r\n\t\"IconColumnInsertLeft\",\r\n\t\"IconColumnInsertRight\",\r\n\t\"IconColumnRemove\",\r\n\t\"IconColumns1\",\r\n\t\"IconColumns2\",\r\n\t\"IconColumns3\",\r\n\t\"IconColumnsOff\",\r\n\t\"IconColumns\",\r\n\t\"IconComet\",\r\n\t\"IconCommandOff\",\r\n\t\"IconCommand\",\r\n\t\"IconCompassOff\",\r\n\t\"IconCompass\",\r\n\t\"IconComponentsOff\",\r\n\t\"IconComponents\",\r\n\t\"IconCone2\",\r\n\t\"IconConeOff\",\r\n\t\"IconConePlus\",\r\n\t\"IconCone\",\r\n\t\"IconConfettiOff\",\r\n\t\"IconConfetti\",\r\n\t\"IconConfucius\",\r\n\t\"IconContainerOff\",\r\n\t\"IconContainer\",\r\n\t\"IconContrast2Off\",\r\n\t\"IconContrast2\",\r\n\t\"IconContrastOff\",\r\n\t\"IconContrast\",\r\n\t\"IconCooker\",\r\n\t\"IconCookieMan\",\r\n\t\"IconCookieOff\",\r\n\t\"IconCookie\",\r\n\t\"IconCopyOff\",\r\n\t\"IconCopy\",\r\n\t\"IconCopyleftFilled\",\r\n\t\"IconCopyleftOff\",\r\n\t\"IconCopyleft\",\r\n\t\"IconCopyrightFilled\",\r\n\t\"IconCopyrightOff\",\r\n\t\"IconCopyright\",\r\n\t\"IconCornerDownLeftDouble\",\r\n\t\"IconCornerDownLeft\",\r\n\t\"IconCornerDownRightDouble\",\r\n\t\"IconCornerDownRight\",\r\n\t\"IconCornerLeftDownDouble\",\r\n\t\"IconCornerLeftDown\",\r\n\t\"IconCornerLeftUpDouble\",\r\n\t\"IconCornerLeftUp\",\r\n\t\"IconCornerRightDownDouble\",\r\n\t\"IconCornerRightDown\",\r\n\t\"IconCornerRightUpDouble\",\r\n\t\"IconCornerRightUp\",\r\n\t\"IconCornerUpLeftDouble\",\r\n\t\"IconCornerUpLeft\",\r\n\t\"IconCornerUpRightDouble\",\r\n\t\"IconCornerUpRight\",\r\n\t\"IconCpu2\",\r\n\t\"IconCpuOff\",\r\n\t\"IconCpu\",\r\n\t\"IconCraneOff\",\r\n\t\"IconCrane\",\r\n\t\"IconCreativeCommonsBy\",\r\n\t\"IconCreativeCommonsNc\",\r\n\t\"IconCreativeCommonsNd\",\r\n\t\"IconCreativeCommonsOff\",\r\n\t\"IconCreativeCommonsSa\",\r\n\t\"IconCreativeCommonsZero\",\r\n\t\"IconCreativeCommons\",\r\n\t\"IconCreditCardOff\",\r\n\t\"IconCreditCard\",\r\n\t\"IconCricket\",\r\n\t\"IconCrop\",\r\n\t\"IconCrossFilled\",\r\n\t\"IconCrossOff\",\r\n\t\"IconCross\",\r\n\t\"IconCrosshair\",\r\n\t\"IconCrownOff\",\r\n\t\"IconCrown\",\r\n\t\"IconCrutchesOff\",\r\n\t\"IconCrutches\",\r\n\t\"IconCrystalBall\",\r\n\t\"IconCsv\",\r\n\t\"IconCubeOff\",\r\n\t\"IconCubePlus\",\r\n\t\"IconCubeSend\",\r\n\t\"IconCubeUnfolded\",\r\n\t\"IconCube\",\r\n\t\"IconCupOff\",\r\n\t\"IconCup\",\r\n\t\"IconCurling\",\r\n\t\"IconCurlyLoop\",\r\n\t\"IconCurrencyAfghani\",\r\n\t\"IconCurrencyBahraini\",\r\n\t\"IconCurrencyBaht\",\r\n\t\"IconCurrencyBitcoin\",\r\n\t\"IconCurrencyCent\",\r\n\t\"IconCurrencyDinar\",\r\n\t\"IconCurrencyDirham\",\r\n\t\"IconCurrencyDogecoin\",\r\n\t\"IconCurrencyDollarAustralian\",\r\n\t\"IconCurrencyDollarBrunei\",\r\n\t\"IconCurrencyDollarCanadian\",\r\n\t\"IconCurrencyDollarGuyanese\",\r\n\t\"IconCurrencyDollarOff\",\r\n\t\"IconCurrencyDollarSingapore\",\r\n\t\"IconCurrencyDollarZimbabwean\",\r\n\t\"IconCurrencyDollar\",\r\n\t\"IconCurrencyDong\",\r\n\t\"IconCurrencyDram\",\r\n\t\"IconCurrencyEthereum\",\r\n\t\"IconCurrencyEuroOff\",\r\n\t\"IconCurrencyEuro\",\r\n\t\"IconCurrencyFlorin\",\r\n\t\"IconCurrencyForint\",\r\n\t\"IconCurrencyFrank\",\r\n\t\"IconCurrencyGuarani\",\r\n\t\"IconCurrencyHryvnia\",\r\n\t\"IconCurrencyIranianRial\",\r\n\t\"IconCurrencyKip\",\r\n\t\"IconCurrencyKroneCzech\",\r\n\t\"IconCurrencyKroneDanish\",\r\n\t\"IconCurrencyKroneSwedish\",\r\n\t\"IconCurrencyLari\",\r\n\t\"IconCurrencyLeu\",\r\n\t\"IconCurrencyLira\",\r\n\t\"IconCurrencyLitecoin\",\r\n\t\"IconCurrencyLyd\",\r\n\t\"IconCurrencyManat\",\r\n\t\"IconCurrencyMonero\",\r\n\t\"IconCurrencyNaira\",\r\n\t\"IconCurrencyNano\",\r\n\t\"IconCurrencyOff\",\r\n\t\"IconCurrencyPaanga\",\r\n\t\"IconCurrencyPeso\",\r\n\t\"IconCurrencyPoundOff\",\r\n\t\"IconCurrencyPound\",\r\n\t\"IconCurrencyQuetzal\",\r\n\t\"IconCurrencyReal\",\r\n\t\"IconCurrencyRenminbi\",\r\n\t\"IconCurrencyRipple\",\r\n\t\"IconCurrencyRiyal\",\r\n\t\"IconCurrencyRubel\",\r\n\t\"IconCurrencyRufiyaa\",\r\n\t\"IconCurrencyRupeeNepalese\",\r\n\t\"IconCurrencyRupee\",\r\n\t\"IconCurrencyShekel\",\r\n\t\"IconCurrencySolana\",\r\n\t\"IconCurrencySom\",\r\n\t\"IconCurrencyTaka\",\r\n\t\"IconCurrencyTenge\",\r\n\t\"IconCurrencyTugrik\",\r\n\t\"IconCurrencyWon\",\r\n\t\"IconCurrencyYenOff\",\r\n\t\"IconCurrencyYen\",\r\n\t\"IconCurrencyYuan\",\r\n\t\"IconCurrencyZloty\",\r\n\t\"IconCurrency\",\r\n\t\"IconCurrentLocationOff\",\r\n\t\"IconCurrentLocation\",\r\n\t\"IconCursorOff\",\r\n\t\"IconCursorText\",\r\n\t\"IconCut\",\r\n\t\"IconCylinderOff\",\r\n\t\"IconCylinderPlus\",\r\n\t\"IconCylinder\",\r\n\t\"IconDashboardOff\",\r\n\t\"IconDashboard\",\r\n\t\"IconDatabaseCog\",\r\n\t\"IconDatabaseDollar\",\r\n\t\"IconDatabaseEdit\",\r\n\t\"IconDatabaseExclamation\",\r\n\t\"IconDatabaseExport\",\r\n\t\"IconDatabaseHeart\",\r\n\t\"IconDatabaseImport\",\r\n\t\"IconDatabaseLeak\",\r\n\t\"IconDatabaseMinus\",\r\n\t\"IconDatabaseOff\",\r\n\t\"IconDatabasePlus\",\r\n\t\"IconDatabaseSearch\",\r\n\t\"IconDatabaseShare\",\r\n\t\"IconDatabaseStar\",\r\n\t\"IconDatabaseX\",\r\n\t\"IconDatabase\",\r\n\t\"IconDecimal\",\r\n\t\"IconDeer\",\r\n\t\"IconDelta\",\r\n\t\"IconDentalBroken\",\r\n\t\"IconDentalOff\",\r\n\t\"IconDental\",\r\n\t\"IconDeselect\",\r\n\t\"IconDetailsOff\",\r\n\t\"IconDetails\",\r\n\t\"IconDeviceAirpodsCase\",\r\n\t\"IconDeviceAirpods\",\r\n\t\"IconDeviceAirtag\",\r\n\t\"IconDeviceAnalytics\",\r\n\t\"IconDeviceAudioTape\",\r\n\t\"IconDeviceCameraPhone\",\r\n\t\"IconDeviceCctvOff\",\r\n\t\"IconDeviceCctv\",\r\n\t\"IconDeviceComputerCameraOff\",\r\n\t\"IconDeviceComputerCamera\",\r\n\t\"IconDeviceDesktopAnalytics\",\r\n\t\"IconDeviceDesktopBolt\",\r\n\t\"IconDeviceDesktopCancel\",\r\n\t\"IconDeviceDesktopCheck\",\r\n\t\"IconDeviceDesktopCode\",\r\n\t\"IconDeviceDesktopCog\",\r\n\t\"IconDeviceDesktopDollar\",\r\n\t\"IconDeviceDesktopDown\",\r\n\t\"IconDeviceDesktopExclamation\",\r\n\t\"IconDeviceDesktopHeart\",\r\n\t\"IconDeviceDesktopMinus\",\r\n\t\"IconDeviceDesktopOff\",\r\n\t\"IconDeviceDesktopPause\",\r\n\t\"IconDeviceDesktopPin\",\r\n\t\"IconDeviceDesktopPlus\",\r\n\t\"IconDeviceDesktopQuestion\",\r\n\t\"IconDeviceDesktopSearch\",\r\n\t\"IconDeviceDesktopShare\",\r\n\t\"IconDeviceDesktopStar\",\r\n\t\"IconDeviceDesktopUp\",\r\n\t\"IconDeviceDesktopX\",\r\n\t\"IconDeviceDesktop\",\r\n\t\"IconDeviceFloppy\",\r\n\t\"IconDeviceGamepad2\",\r\n\t\"IconDeviceGamepad\",\r\n\t\"IconDeviceHeartMonitorFilled\",\r\n\t\"IconDeviceHeartMonitor\",\r\n\t\"IconDeviceImacBolt\",\r\n\t\"IconDeviceImacCancel\",\r\n\t\"IconDeviceImacCheck\",\r\n\t\"IconDeviceImacCode\",\r\n\t\"IconDeviceImacCog\",\r\n\t\"IconDeviceImacDollar\",\r\n\t\"IconDeviceImacDown\",\r\n\t\"IconDeviceImacExclamation\",\r\n\t\"IconDeviceImacHeart\",\r\n\t\"IconDeviceImacMinus\",\r\n\t\"IconDeviceImacOff\",\r\n\t\"IconDeviceImacPause\",\r\n\t\"IconDeviceImacPin\",\r\n\t\"IconDeviceImacPlus\",\r\n\t\"IconDeviceImacQuestion\",\r\n\t\"IconDeviceImacSearch\",\r\n\t\"IconDeviceImacShare\",\r\n\t\"IconDeviceImacStar\",\r\n\t\"IconDeviceImacUp\",\r\n\t\"IconDeviceImacX\",\r\n\t\"IconDeviceImac\",\r\n\t\"IconDeviceIpadBolt\",\r\n\t\"IconDeviceIpadCancel\",\r\n\t\"IconDeviceIpadCheck\",\r\n\t\"IconDeviceIpadCode\",\r\n\t\"IconDeviceIpadCog\",\r\n\t\"IconDeviceIpadDollar\",\r\n\t\"IconDeviceIpadDown\",\r\n\t\"IconDeviceIpadExclamation\",\r\n\t\"IconDeviceIpadHeart\",\r\n\t\"IconDeviceIpadHorizontalBolt\",\r\n\t\"IconDeviceIpadHorizontalCancel\",\r\n\t\"IconDeviceIpadHorizontalCheck\",\r\n\t\"IconDeviceIpadHorizontalCode\",\r\n\t\"IconDeviceIpadHorizontalCog\",\r\n\t\"IconDeviceIpadHorizontalDollar\",\r\n\t\"IconDeviceIpadHorizontalDown\",\r\n\t\"IconDeviceIpadHorizontalExclamation\",\r\n\t\"IconDeviceIpadHorizontalHeart\",\r\n\t\"IconDeviceIpadHorizontalMinus\",\r\n\t\"IconDeviceIpadHorizontalOff\",\r\n\t\"IconDeviceIpadHorizontalPause\",\r\n\t\"IconDeviceIpadHorizontalPin\",\r\n\t\"IconDeviceIpadHorizontalPlus\",\r\n\t\"IconDeviceIpadHorizontalQuestion\",\r\n\t\"IconDeviceIpadHorizontalSearch\",\r\n\t\"IconDeviceIpadHorizontalShare\",\r\n\t\"IconDeviceIpadHorizontalStar\",\r\n\t\"IconDeviceIpadHorizontalUp\",\r\n\t\"IconDeviceIpadHorizontalX\",\r\n\t\"IconDeviceIpadHorizontal\",\r\n\t\"IconDeviceIpadMinus\",\r\n\t\"IconDeviceIpadOff\",\r\n\t\"IconDeviceIpadPause\",\r\n\t\"IconDeviceIpadPin\",\r\n\t\"IconDeviceIpadPlus\",\r\n\t\"IconDeviceIpadQuestion\",\r\n\t\"IconDeviceIpadSearch\",\r\n\t\"IconDeviceIpadShare\",\r\n\t\"IconDeviceIpadStar\",\r\n\t\"IconDeviceIpadUp\",\r\n\t\"IconDeviceIpadX\",\r\n\t\"IconDeviceIpad\",\r\n\t\"IconDeviceLandlinePhone\",\r\n\t\"IconDeviceLaptopOff\",\r\n\t\"IconDeviceLaptop\",\r\n\t\"IconDeviceMobileBolt\",\r\n\t\"IconDeviceMobileCancel\",\r\n\t\"IconDeviceMobileCharging\",\r\n\t\"IconDeviceMobileCheck\",\r\n\t\"IconDeviceMobileCode\",\r\n\t\"IconDeviceMobileCog\",\r\n\t\"IconDeviceMobileDollar\",\r\n\t\"IconDeviceMobileDown\",\r\n\t\"IconDeviceMobileExclamation\",\r\n\t\"IconDeviceMobileFilled\",\r\n\t\"IconDeviceMobileHeart\",\r\n\t\"IconDeviceMobileMessage\",\r\n\t\"IconDeviceMobileMinus\",\r\n\t\"IconDeviceMobileOff\",\r\n\t\"IconDeviceMobilePause\",\r\n\t\"IconDeviceMobilePin\",\r\n\t\"IconDeviceMobilePlus\",\r\n\t\"IconDeviceMobileQuestion\",\r\n\t\"IconDeviceMobileRotated\",\r\n\t\"IconDeviceMobileSearch\",\r\n\t\"IconDeviceMobileShare\",\r\n\t\"IconDeviceMobileStar\",\r\n\t\"IconDeviceMobileUp\",\r\n\t\"IconDeviceMobileVibration\",\r\n\t\"IconDeviceMobileX\",\r\n\t\"IconDeviceMobile\",\r\n\t\"IconDeviceNintendoOff\",\r\n\t\"IconDeviceNintendo\",\r\n\t\"IconDeviceRemote\",\r\n\t\"IconDeviceSdCard\",\r\n\t\"IconDeviceSim1\",\r\n\t\"IconDeviceSim2\",\r\n\t\"IconDeviceSim3\",\r\n\t\"IconDeviceSim\",\r\n\t\"IconDeviceSpeakerOff\",\r\n\t\"IconDeviceSpeaker\",\r\n\t\"IconDeviceTabletBolt\",\r\n\t\"IconDeviceTabletCancel\",\r\n\t\"IconDeviceTabletCheck\",\r\n\t\"IconDeviceTabletCode\",\r\n\t\"IconDeviceTabletCog\",\r\n\t\"IconDeviceTabletDollar\",\r\n\t\"IconDeviceTabletDown\",\r\n\t\"IconDeviceTabletExclamation\",\r\n\t\"IconDeviceTabletFilled\",\r\n\t\"IconDeviceTabletHeart\",\r\n\t\"IconDeviceTabletMinus\",\r\n\t\"IconDeviceTabletOff\",\r\n\t\"IconDeviceTabletPause\",\r\n\t\"IconDeviceTabletPin\",\r\n\t\"IconDeviceTabletPlus\",\r\n\t\"IconDeviceTabletQuestion\",\r\n\t\"IconDeviceTabletSearch\",\r\n\t\"IconDeviceTabletShare\",\r\n\t\"IconDeviceTabletStar\",\r\n\t\"IconDeviceTabletUp\",\r\n\t\"IconDeviceTabletX\",\r\n\t\"IconDeviceTablet\",\r\n\t\"IconDeviceTvOff\",\r\n\t\"IconDeviceTvOld\",\r\n\t\"IconDeviceTv\",\r\n\t\"IconDeviceVisionPro\",\r\n\t\"IconDeviceWatchBolt\",\r\n\t\"IconDeviceWatchCancel\",\r\n\t\"IconDeviceWatchCheck\",\r\n\t\"IconDeviceWatchCode\",\r\n\t\"IconDeviceWatchCog\",\r\n\t\"IconDeviceWatchDollar\",\r\n\t\"IconDeviceWatchDown\",\r\n\t\"IconDeviceWatchExclamation\",\r\n\t\"IconDeviceWatchHeart\",\r\n\t\"IconDeviceWatchMinus\",\r\n\t\"IconDeviceWatchOff\",\r\n\t\"IconDeviceWatchPause\",\r\n\t\"IconDeviceWatchPin\",\r\n\t\"IconDeviceWatchPlus\",\r\n\t\"IconDeviceWatchQuestion\",\r\n\t\"IconDeviceWatchSearch\",\r\n\t\"IconDeviceWatchShare\",\r\n\t\"IconDeviceWatchStar\",\r\n\t\"IconDeviceWatchStats2\",\r\n\t\"IconDeviceWatchStats\",\r\n\t\"IconDeviceWatchUp\",\r\n\t\"IconDeviceWatchX\",\r\n\t\"IconDeviceWatch\",\r\n\t\"IconDevices2\",\r\n\t\"IconDevicesBolt\",\r\n\t\"IconDevicesCancel\",\r\n\t\"IconDevicesCheck\",\r\n\t\"IconDevicesCode\",\r\n\t\"IconDevicesCog\",\r\n\t\"IconDevicesDollar\",\r\n\t\"IconDevicesDown\",\r\n\t\"IconDevicesExclamation\",\r\n\t\"IconDevicesHeart\",\r\n\t\"IconDevicesMinus\",\r\n\t\"IconDevicesOff\",\r\n\t\"IconDevicesPause\",\r\n\t\"IconDevicesPcOff\",\r\n\t\"IconDevicesPc\",\r\n\t\"IconDevicesPin\",\r\n\t\"IconDevicesPlus\",\r\n\t\"IconDevicesQuestion\",\r\n\t\"IconDevicesSearch\",\r\n\t\"IconDevicesShare\",\r\n\t\"IconDevicesStar\",\r\n\t\"IconDevicesUp\",\r\n\t\"IconDevicesX\",\r\n\t\"IconDevices\",\r\n\t\"IconDiaboloOff\",\r\n\t\"IconDiaboloPlus\",\r\n\t\"IconDiabolo\",\r\n\t\"IconDialpadFilled\",\r\n\t\"IconDialpadOff\",\r\n\t\"IconDialpad\",\r\n\t\"IconDiamondFilled\",\r\n\t\"IconDiamondOff\",\r\n\t\"IconDiamond\",\r\n\t\"IconDiamondsFilled\",\r\n\t\"IconDiamonds\",\r\n\t\"IconDice1Filled\",\r\n\t\"IconDice1\",\r\n\t\"IconDice2Filled\",\r\n\t\"IconDice2\",\r\n\t\"IconDice3Filled\",\r\n\t\"IconDice3\",\r\n\t\"IconDice4Filled\",\r\n\t\"IconDice4\",\r\n\t\"IconDice5Filled\",\r\n\t\"IconDice5\",\r\n\t\"IconDice6Filled\",\r\n\t\"IconDice6\",\r\n\t\"IconDiceFilled\",\r\n\t\"IconDice\",\r\n\t\"IconDimensions\",\r\n\t\"IconDirectionHorizontal\",\r\n\t\"IconDirectionSignFilled\",\r\n\t\"IconDirectionSignOff\",\r\n\t\"IconDirectionSign\",\r\n\t\"IconDirection\",\r\n\t\"IconDirectionsOff\",\r\n\t\"IconDirections\",\r\n\t\"IconDisabled2\",\r\n\t\"IconDisabledOff\",\r\n\t\"IconDisabled\",\r\n\t\"IconDiscGolf\",\r\n\t\"IconDiscOff\",\r\n\t\"IconDisc\",\r\n\t\"IconDiscount2Off\",\r\n\t\"IconDiscount2\",\r\n\t\"IconDiscountCheckFilled\",\r\n\t\"IconDiscountCheck\",\r\n\t\"IconDiscountOff\",\r\n\t\"IconDiscount\",\r\n\t\"IconDivide\",\r\n\t\"IconDna2Off\",\r\n\t\"IconDna2\",\r\n\t\"IconDnaOff\",\r\n\t\"IconDna\",\r\n\t\"IconDogBowl\",\r\n\t\"IconDog\",\r\n\t\"IconDoorEnter\",\r\n\t\"IconDoorExit\",\r\n\t\"IconDoorOff\",\r\n\t\"IconDoor\",\r\n\t\"IconDotsCircleHorizontal\",\r\n\t\"IconDotsDiagonal2\",\r\n\t\"IconDotsDiagonal\",\r\n\t\"IconDotsVertical\",\r\n\t\"IconDots\",\r\n\t\"IconDownloadOff\",\r\n\t\"IconDownload\",\r\n\t\"IconDragDrop2\",\r\n\t\"IconDragDrop\",\r\n\t\"IconDroneOff\",\r\n\t\"IconDrone\",\r\n\t\"IconDropCircle\",\r\n\t\"IconDropletBolt\",\r\n\t\"IconDropletCancel\",\r\n\t\"IconDropletCheck\",\r\n\t\"IconDropletCode\",\r\n\t\"IconDropletCog\",\r\n\t\"IconDropletDollar\",\r\n\t\"IconDropletDown\",\r\n\t\"IconDropletExclamation\",\r\n\t\"IconDropletFilled\",\r\n\t\"IconDropletHalf2\",\r\n\t\"IconDropletHalfFilled\",\r\n\t\"IconDropletHalf\",\r\n\t\"IconDropletHeart\",\r\n\t\"IconDropletMinus\",\r\n\t\"IconDropletOff\",\r\n\t\"IconDropletPause\",\r\n\t\"IconDropletPin\",\r\n\t\"IconDropletPlus\",\r\n\t\"IconDropletQuestion\",\r\n\t\"IconDropletSearch\",\r\n\t\"IconDropletShare\",\r\n\t\"IconDropletStar\",\r\n\t\"IconDropletUp\",\r\n\t\"IconDropletX\",\r\n\t\"IconDroplet\",\r\n\t\"IconDualScreen\",\r\n\t\"IconEPassport\",\r\n\t\"IconEarOff\",\r\n\t\"IconEar\",\r\n\t\"IconEaseInControlPoint\",\r\n\t\"IconEaseInOutControlPoints\",\r\n\t\"IconEaseInOut\",\r\n\t\"IconEaseIn\",\r\n\t\"IconEaseOutControlPoint\",\r\n\t\"IconEaseOut\",\r\n\t\"IconEditCircleOff\",\r\n\t\"IconEditCircle\",\r\n\t\"IconEditOff\",\r\n\t\"IconEdit\",\r\n\t\"IconEggCracked\",\r\n\t\"IconEggFilled\",\r\n\t\"IconEggFried\",\r\n\t\"IconEggOff\",\r\n\t\"IconEgg\",\r\n\t\"IconEggs\",\r\n\t\"IconElevatorOff\",\r\n\t\"IconElevator\",\r\n\t\"IconEmergencyBed\",\r\n\t\"IconEmpathizeOff\",\r\n\t\"IconEmpathize\",\r\n\t\"IconEmphasis\",\r\n\t\"IconEngineOff\",\r\n\t\"IconEngine\",\r\n\t\"IconEqualDouble\",\r\n\t\"IconEqualNot\",\r\n\t\"IconEqual\",\r\n\t\"IconEraserOff\",\r\n\t\"IconEraser\",\r\n\t\"IconError404Off\",\r\n\t\"IconError404\",\r\n\t\"IconEscalatorDown\",\r\n\t\"IconEscalatorUp\",\r\n\t\"IconEscalator\",\r\n\t\"IconExchangeOff\",\r\n\t\"IconExchange\",\r\n\t\"IconExclamationCircle\",\r\n\t\"IconExclamationMarkOff\",\r\n\t\"IconExclamationMark\",\r\n\t\"IconExplicitOff\",\r\n\t\"IconExplicit\",\r\n\t\"IconExposure0\",\r\n\t\"IconExposureMinus1\",\r\n\t\"IconExposureMinus2\",\r\n\t\"IconExposureOff\",\r\n\t\"IconExposurePlus1\",\r\n\t\"IconExposurePlus2\",\r\n\t\"IconExposure\",\r\n\t\"IconExternalLinkOff\",\r\n\t\"IconExternalLink\",\r\n\t\"IconEyeCheck\",\r\n\t\"IconEyeClosed\",\r\n\t\"IconEyeCog\",\r\n\t\"IconEyeEdit\",\r\n\t\"IconEyeExclamation\",\r\n\t\"IconEyeFilled\",\r\n\t\"IconEyeHeart\",\r\n\t\"IconEyeOff\",\r\n\t\"IconEyeTable\",\r\n\t\"IconEyeX\",\r\n\t\"IconEye\",\r\n\t\"IconEyeglass2\",\r\n\t\"IconEyeglassOff\",\r\n\t\"IconEyeglass\",\r\n\t\"IconFaceIdError\",\r\n\t\"IconFaceId\",\r\n\t\"IconFaceMaskOff\",\r\n\t\"IconFaceMask\",\r\n\t\"IconFall\",\r\n\t\"IconFeatherOff\",\r\n\t\"IconFeather\",\r\n\t\"IconFenceOff\",\r\n\t\"IconFence\",\r\n\t\"IconFidgetSpinner\",\r\n\t\"IconFile3d\",\r\n\t\"IconFileAlert\",\r\n\t\"IconFileAnalytics\",\r\n\t\"IconFileArrowLeft\",\r\n\t\"IconFileArrowRight\",\r\n\t\"IconFileBarcode\",\r\n\t\"IconFileBroken\",\r\n\t\"IconFileCertificate\",\r\n\t\"IconFileChart\",\r\n\t\"IconFileCheck\",\r\n\t\"IconFileCode2\",\r\n\t\"IconFileCode\",\r\n\t\"IconFileCv\",\r\n\t\"IconFileDatabase\",\r\n\t\"IconFileDelta\",\r\n\t\"IconFileDescription\",\r\n\t\"IconFileDiff\",\r\n\t\"IconFileDigit\",\r\n\t\"IconFileDislike\",\r\n\t\"IconFileDollar\",\r\n\t\"IconFileDots\",\r\n\t\"IconFileDownload\",\r\n\t\"IconFileEuro\",\r\n\t\"IconFileExport\",\r\n\t\"IconFileFilled\",\r\n\t\"IconFileFunction\",\r\n\t\"IconFileHorizontal\",\r\n\t\"IconFileImport\",\r\n\t\"IconFileInfinity\",\r\n\t\"IconFileInfo\",\r\n\t\"IconFileInvoice\",\r\n\t\"IconFileLambda\",\r\n\t\"IconFileLike\",\r\n\t\"IconFileMinus\",\r\n\t\"IconFileMusic\",\r\n\t\"IconFileOff\",\r\n\t\"IconFileOrientation\",\r\n\t\"IconFilePencil\",\r\n\t\"IconFilePercent\",\r\n\t\"IconFilePhone\",\r\n\t\"IconFilePlus\",\r\n\t\"IconFilePower\",\r\n\t\"IconFileReport\",\r\n\t\"IconFileRss\",\r\n\t\"IconFileScissors\",\r\n\t\"IconFileSearch\",\r\n\t\"IconFileSettings\",\r\n\t\"IconFileShredder\",\r\n\t\"IconFileSignal\",\r\n\t\"IconFileSpreadsheet\",\r\n\t\"IconFileStack\",\r\n\t\"IconFileStar\",\r\n\t\"IconFileSymlink\",\r\n\t\"IconFileTextAi\",\r\n\t\"IconFileText\",\r\n\t\"IconFileTime\",\r\n\t\"IconFileTypeBmp\",\r\n\t\"IconFileTypeCss\",\r\n\t\"IconFileTypeCsv\",\r\n\t\"IconFileTypeDoc\",\r\n\t\"IconFileTypeDocx\",\r\n\t\"IconFileTypeHtml\",\r\n\t\"IconFileTypeJpg\",\r\n\t\"IconFileTypeJs\",\r\n\t\"IconFileTypeJsx\",\r\n\t\"IconFileTypePdf\",\r\n\t\"IconFileTypePhp\",\r\n\t\"IconFileTypePng\",\r\n\t\"IconFileTypePpt\",\r\n\t\"IconFileTypeRs\",\r\n\t\"IconFileTypeSql\",\r\n\t\"IconFileTypeSvg\",\r\n\t\"IconFileTypeTs\",\r\n\t\"IconFileTypeTsx\",\r\n\t\"IconFileTypeTxt\",\r\n\t\"IconFileTypeVue\",\r\n\t\"IconFileTypeXls\",\r\n\t\"IconFileTypeXml\",\r\n\t\"IconFileTypeZip\",\r\n\t\"IconFileTypography\",\r\n\t\"IconFileUnknown\",\r\n\t\"IconFileUpload\",\r\n\t\"IconFileVector\",\r\n\t\"IconFileXFilled\",\r\n\t\"IconFileX\",\r\n\t\"IconFileZip\",\r\n\t\"IconFile\",\r\n\t\"IconFilesOff\",\r\n\t\"IconFiles\",\r\n\t\"IconFilterCog\",\r\n\t\"IconFilterDollar\",\r\n\t\"IconFilterEdit\",\r\n\t\"IconFilterMinus\",\r\n\t\"IconFilterOff\",\r\n\t\"IconFilterPlus\",\r\n\t\"IconFilterStar\",\r\n\t\"IconFilterX\",\r\n\t\"IconFilter\",\r\n\t\"IconFilters\",\r\n\t\"IconFingerprintOff\",\r\n\t\"IconFingerprint\",\r\n\t\"IconFireExtinguisher\",\r\n\t\"IconFireHydrantOff\",\r\n\t\"IconFireHydrant\",\r\n\t\"IconFiretruck\",\r\n\t\"IconFirstAidKitOff\",\r\n\t\"IconFirstAidKit\",\r\n\t\"IconFishBone\",\r\n\t\"IconFishChristianity\",\r\n\t\"IconFishHookOff\",\r\n\t\"IconFishHook\",\r\n\t\"IconFishOff\",\r\n\t\"IconFish\",\r\n\t\"IconFlag2Filled\",\r\n\t\"IconFlag2Off\",\r\n\t\"IconFlag2\",\r\n\t\"IconFlag3Filled\",\r\n\t\"IconFlag3\",\r\n\t\"IconFlagFilled\",\r\n\t\"IconFlagOff\",\r\n\t\"IconFlag\",\r\n\t\"IconFlameOff\",\r\n\t\"IconFlame\",\r\n\t\"IconFlare\",\r\n\t\"IconFlask2Off\",\r\n\t\"IconFlask2\",\r\n\t\"IconFlaskOff\",\r\n\t\"IconFlask\",\r\n\t\"IconFlipFlops\",\r\n\t\"IconFlipHorizontal\",\r\n\t\"IconFlipVertical\",\r\n\t\"IconFloatCenter\",\r\n\t\"IconFloatLeft\",\r\n\t\"IconFloatNone\",\r\n\t\"IconFloatRight\",\r\n\t\"IconFlowerOff\",\r\n\t\"IconFlower\",\r\n\t\"IconFocus2\",\r\n\t\"IconFocusAuto\",\r\n\t\"IconFocusCentered\",\r\n\t\"IconFocus\",\r\n\t\"IconFoldDown\",\r\n\t\"IconFoldUp\",\r\n\t\"IconFold\",\r\n\t\"IconFolderBolt\",\r\n\t\"IconFolderCancel\",\r\n\t\"IconFolderCheck\",\r\n\t\"IconFolderCode\",\r\n\t\"IconFolderCog\",\r\n\t\"IconFolderDollar\",\r\n\t\"IconFolderDown\",\r\n\t\"IconFolderExclamation\",\r\n\t\"IconFolderFilled\",\r\n\t\"IconFolderHeart\",\r\n\t\"IconFolderMinus\",\r\n\t\"IconFolderOff\",\r\n\t\"IconFolderOpen\",\r\n\t\"IconFolderPause\",\r\n\t\"IconFolderPin\",\r\n\t\"IconFolderPlus\",\r\n\t\"IconFolderQuestion\",\r\n\t\"IconFolderSearch\",\r\n\t\"IconFolderShare\",\r\n\t\"IconFolderStar\",\r\n\t\"IconFolderSymlink\",\r\n\t\"IconFolderUp\",\r\n\t\"IconFolderX\",\r\n\t\"IconFolder\",\r\n\t\"IconFoldersOff\",\r\n\t\"IconFolders\",\r\n\t\"IconForbid2\",\r\n\t\"IconForbid\",\r\n\t\"IconForklift\",\r\n\t\"IconForms\",\r\n\t\"IconFountainOff\",\r\n\t\"IconFountain\",\r\n\t\"IconFrameOff\",\r\n\t\"IconFrame\",\r\n\t\"IconFreeRights\",\r\n\t\"IconFreezeColumn\",\r\n\t\"IconFreezeRowColumn\",\r\n\t\"IconFreezeRow\",\r\n\t\"IconFridgeOff\",\r\n\t\"IconFridge\",\r\n\t\"IconFriendsOff\",\r\n\t\"IconFriends\",\r\n\t\"IconFrustumOff\",\r\n\t\"IconFrustumPlus\",\r\n\t\"IconFrustum\",\r\n\t\"IconFunctionOff\",\r\n\t\"IconFunction\",\r\n\t\"IconGardenCartOff\",\r\n\t\"IconGardenCart\",\r\n\t\"IconGasStationOff\",\r\n\t\"IconGasStation\",\r\n\t\"IconGaugeOff\",\r\n\t\"IconGauge\",\r\n\t\"IconGavel\",\r\n\t\"IconGenderAgender\",\r\n\t\"IconGenderAndrogyne\",\r\n\t\"IconGenderBigender\",\r\n\t\"IconGenderDemiboy\",\r\n\t\"IconGenderDemigirl\",\r\n\t\"IconGenderEpicene\",\r\n\t\"IconGenderFemale\",\r\n\t\"IconGenderFemme\",\r\n\t\"IconGenderGenderfluid\",\r\n\t\"IconGenderGenderless\",\r\n\t\"IconGenderGenderqueer\",\r\n\t\"IconGenderHermaphrodite\",\r\n\t\"IconGenderIntergender\",\r\n\t\"IconGenderMale\",\r\n\t\"IconGenderNeutrois\",\r\n\t\"IconGenderThird\",\r\n\t\"IconGenderTransgender\",\r\n\t\"IconGenderTrasvesti\",\r\n\t\"IconGeometry\",\r\n\t\"IconGhost2Filled\",\r\n\t\"IconGhost2\",\r\n\t\"IconGhostFilled\",\r\n\t\"IconGhostOff\",\r\n\t\"IconGhost\",\r\n\t\"IconGif\",\r\n\t\"IconGiftCard\",\r\n\t\"IconGiftOff\",\r\n\t\"IconGift\",\r\n\t\"IconGitBranchDeleted\",\r\n\t\"IconGitBranch\",\r\n\t\"IconGitCherryPick\",\r\n\t\"IconGitCommit\",\r\n\t\"IconGitCompare\",\r\n\t\"IconGitFork\",\r\n\t\"IconGitMerge\",\r\n\t\"IconGitPullRequestClosed\",\r\n\t\"IconGitPullRequestDraft\",\r\n\t\"IconGitPullRequest\",\r\n\t\"IconGizmo\",\r\n\t\"IconGlassFull\",\r\n\t\"IconGlassOff\",\r\n\t\"IconGlass\",\r\n\t\"IconGlobeOff\",\r\n\t\"IconGlobe\",\r\n\t\"IconGoGame\",\r\n\t\"IconGolfOff\",\r\n\t\"IconGolf\",\r\n\t\"IconGps\",\r\n\t\"IconGradienter\",\r\n\t\"IconGrain\",\r\n\t\"IconGraphOff\",\r\n\t\"IconGraph\",\r\n\t\"IconGrave2\",\r\n\t\"IconGrave\",\r\n\t\"IconGridDots\",\r\n\t\"IconGridPattern\",\r\n\t\"IconGrillFork\",\r\n\t\"IconGrillOff\",\r\n\t\"IconGrillSpatula\",\r\n\t\"IconGrill\",\r\n\t\"IconGripHorizontal\",\r\n\t\"IconGripVertical\",\r\n\t\"IconGrowth\",\r\n\t\"IconGuitarPickFilled\",\r\n\t\"IconGuitarPick\",\r\n\t\"IconH1\",\r\n\t\"IconH2\",\r\n\t\"IconH3\",\r\n\t\"IconH4\",\r\n\t\"IconH5\",\r\n\t\"IconH6\",\r\n\t\"IconHammerOff\",\r\n\t\"IconHammer\",\r\n\t\"IconHandClick\",\r\n\t\"IconHandFingerOff\",\r\n\t\"IconHandFinger\",\r\n\t\"IconHandGrab\",\r\n\t\"IconHandLittleFinger\",\r\n\t\"IconHandMiddleFinger\",\r\n\t\"IconHandMove\",\r\n\t\"IconHandOff\",\r\n\t\"IconHandRingFinger\",\r\n\t\"IconHandRock\",\r\n\t\"IconHandSanitizer\",\r\n\t\"IconHandStop\",\r\n\t\"IconHandThreeFingers\",\r\n\t\"IconHandTwoFingers\",\r\n\t\"IconHanger2\",\r\n\t\"IconHangerOff\",\r\n\t\"IconHanger\",\r\n\t\"IconHash\",\r\n\t\"IconHazeMoon\",\r\n\t\"IconHaze\",\r\n\t\"IconHdr\",\r\n\t\"IconHeadingOff\",\r\n\t\"IconHeading\",\r\n\t\"IconHeadphonesFilled\",\r\n\t\"IconHeadphonesOff\",\r\n\t\"IconHeadphones\",\r\n\t\"IconHeadsetOff\",\r\n\t\"IconHeadset\",\r\n\t\"IconHealthRecognition\",\r\n\t\"IconHeartBroken\",\r\n\t\"IconHeartFilled\",\r\n\t\"IconHeartHandshake\",\r\n\t\"IconHeartMinus\",\r\n\t\"IconHeartOff\",\r\n\t\"IconHeartPlus\",\r\n\t\"IconHeartRateMonitor\",\r\n\t\"IconHeart\",\r\n\t\"IconHeartbeat\",\r\n\t\"IconHeartsOff\",\r\n\t\"IconHearts\",\r\n\t\"IconHelicopterLanding\",\r\n\t\"IconHelicopter\",\r\n\t\"IconHelmetOff\",\r\n\t\"IconHelmet\",\r\n\t\"IconHelpCircleFilled\",\r\n\t\"IconHelpCircle\",\r\n\t\"IconHelpHexagonFilled\",\r\n\t\"IconHelpHexagon\",\r\n\t\"IconHelpOctagonFilled\",\r\n\t\"IconHelpOctagon\",\r\n\t\"IconHelpOff\",\r\n\t\"IconHelpSmall\",\r\n\t\"IconHelpSquareFilled\",\r\n\t\"IconHelpSquareRoundedFilled\",\r\n\t\"IconHelpSquareRounded\",\r\n\t\"IconHelpSquare\",\r\n\t\"IconHelpTriangleFilled\",\r\n\t\"IconHelpTriangle\",\r\n\t\"IconHelp\",\r\n\t\"IconHemisphereOff\",\r\n\t\"IconHemispherePlus\",\r\n\t\"IconHemisphere\",\r\n\t\"IconHexagon0Filled\",\r\n\t\"IconHexagon1Filled\",\r\n\t\"IconHexagon2Filled\",\r\n\t\"IconHexagon3Filled\",\r\n\t\"IconHexagon3d\",\r\n\t\"IconHexagon4Filled\",\r\n\t\"IconHexagon5Filled\",\r\n\t\"IconHexagon6Filled\",\r\n\t\"IconHexagon7Filled\",\r\n\t\"IconHexagon8Filled\",\r\n\t\"IconHexagon9Filled\",\r\n\t\"IconHexagonFilled\",\r\n\t\"IconHexagonLetterA\",\r\n\t\"IconHexagonLetterB\",\r\n\t\"IconHexagonLetterC\",\r\n\t\"IconHexagonLetterD\",\r\n\t\"IconHexagonLetterE\",\r\n\t\"IconHexagonLetterF\",\r\n\t\"IconHexagonLetterG\",\r\n\t\"IconHexagonLetterH\",\r\n\t\"IconHexagonLetterI\",\r\n\t\"IconHexagonLetterJ\",\r\n\t\"IconHexagonLetterK\",\r\n\t\"IconHexagonLetterL\",\r\n\t\"IconHexagonLetterM\",\r\n\t\"IconHexagonLetterN\",\r\n\t\"IconHexagonLetterO\",\r\n\t\"IconHexagonLetterP\",\r\n\t\"IconHexagonLetterQ\",\r\n\t\"IconHexagonLetterR\",\r\n\t\"IconHexagonLetterS\",\r\n\t\"IconHexagonLetterT\",\r\n\t\"IconHexagonLetterU\",\r\n\t\"IconHexagonLetterV\",\r\n\t\"IconHexagonLetterW\",\r\n\t\"IconHexagonLetterX\",\r\n\t\"IconHexagonLetterY\",\r\n\t\"IconHexagonLetterZ\",\r\n\t\"IconHexagonNumber0\",\r\n\t\"IconHexagonNumber1\",\r\n\t\"IconHexagonNumber2\",\r\n\t\"IconHexagonNumber3\",\r\n\t\"IconHexagonNumber4\",\r\n\t\"IconHexagonNumber5\",\r\n\t\"IconHexagonNumber6\",\r\n\t\"IconHexagonNumber7\",\r\n\t\"IconHexagonNumber8\",\r\n\t\"IconHexagonNumber9\",\r\n\t\"IconHexagonOff\",\r\n\t\"IconHexagon\",\r\n\t\"IconHexagonalPrismOff\",\r\n\t\"IconHexagonalPrismPlus\",\r\n\t\"IconHexagonalPrism\",\r\n\t\"IconHexagonalPyramidOff\",\r\n\t\"IconHexagonalPyramidPlus\",\r\n\t\"IconHexagonalPyramid\",\r\n\t\"IconHexagonsOff\",\r\n\t\"IconHexagons\",\r\n\t\"IconHierarchy2\",\r\n\t\"IconHierarchy3\",\r\n\t\"IconHierarchyOff\",\r\n\t\"IconHierarchy\",\r\n\t\"IconHighlightOff\",\r\n\t\"IconHighlight\",\r\n\t\"IconHistoryOff\",\r\n\t\"IconHistoryToggle\",\r\n\t\"IconHistory\",\r\n\t\"IconHome2\",\r\n\t\"IconHomeBolt\",\r\n\t\"IconHomeCancel\",\r\n\t\"IconHomeCheck\",\r\n\t\"IconHomeCog\",\r\n\t\"IconHomeDollar\",\r\n\t\"IconHomeDot\",\r\n\t\"IconHomeDown\",\r\n\t\"IconHomeEco\",\r\n\t\"IconHomeEdit\",\r\n\t\"IconHomeExclamation\",\r\n\t\"IconHomeHand\",\r\n\t\"IconHomeHeart\",\r\n\t\"IconHomeInfinity\",\r\n\t\"IconHomeLink\",\r\n\t\"IconHomeMinus\",\r\n\t\"IconHomeMove\",\r\n\t\"IconHomeOff\",\r\n\t\"IconHomePlus\",\r\n\t\"IconHomeQuestion\",\r\n\t\"IconHomeRibbon\",\r\n\t\"IconHomeSearch\",\r\n\t\"IconHomeShare\",\r\n\t\"IconHomeShield\",\r\n\t\"IconHomeSignal\",\r\n\t\"IconHomeStar\",\r\n\t\"IconHomeStats\",\r\n\t\"IconHomeUp\",\r\n\t\"IconHomeX\",\r\n\t\"IconHome\",\r\n\t\"IconHorseToy\",\r\n\t\"IconHotelService\",\r\n\t\"IconHourglassEmpty\",\r\n\t\"IconHourglassFilled\",\r\n\t\"IconHourglassHigh\",\r\n\t\"IconHourglassLow\",\r\n\t\"IconHourglassOff\",\r\n\t\"IconHourglass\",\r\n\t\"IconHtml\",\r\n\t\"IconHttpConnect\",\r\n\t\"IconHttpDelete\",\r\n\t\"IconHttpGet\",\r\n\t\"IconHttpHead\",\r\n\t\"IconHttpOptions\",\r\n\t\"IconHttpPatch\",\r\n\t\"IconHttpPost\",\r\n\t\"IconHttpPut\",\r\n\t\"IconHttpQue\",\r\n\t\"IconHttpTrace\",\r\n\t\"IconIceCream2\",\r\n\t\"IconIceCreamOff\",\r\n\t\"IconIceCream\",\r\n\t\"IconIceSkating\",\r\n\t\"IconIconsOff\",\r\n\t\"IconIcons\",\r\n\t\"IconIdBadge2\",\r\n\t\"IconIdBadgeOff\",\r\n\t\"IconIdBadge\",\r\n\t\"IconIdOff\",\r\n\t\"IconId\",\r\n\t\"IconInboxOff\",\r\n\t\"IconInbox\",\r\n\t\"IconIndentDecrease\",\r\n\t\"IconIndentIncrease\",\r\n\t\"IconInfinityOff\",\r\n\t\"IconInfinity\",\r\n\t\"IconInfoCircleFilled\",\r\n\t\"IconInfoCircle\",\r\n\t\"IconInfoHexagonFilled\",\r\n\t\"IconInfoHexagon\",\r\n\t\"IconInfoOctagonFilled\",\r\n\t\"IconInfoOctagon\",\r\n\t\"IconInfoSmall\",\r\n\t\"IconInfoSquareFilled\",\r\n\t\"IconInfoSquareRoundedFilled\",\r\n\t\"IconInfoSquareRounded\",\r\n\t\"IconInfoSquare\",\r\n\t\"IconInfoTriangleFilled\",\r\n\t\"IconInfoTriangle\",\r\n\t\"IconInnerShadowBottomFilled\",\r\n\t\"IconInnerShadowBottomLeftFilled\",\r\n\t\"IconInnerShadowBottomLeft\",\r\n\t\"IconInnerShadowBottomRightFilled\",\r\n\t\"IconInnerShadowBottomRight\",\r\n\t\"IconInnerShadowBottom\",\r\n\t\"IconInnerShadowLeftFilled\",\r\n\t\"IconInnerShadowLeft\",\r\n\t\"IconInnerShadowRightFilled\",\r\n\t\"IconInnerShadowRight\",\r\n\t\"IconInnerShadowTopFilled\",\r\n\t\"IconInnerShadowTopLeftFilled\",\r\n\t\"IconInnerShadowTopLeft\",\r\n\t\"IconInnerShadowTopRightFilled\",\r\n\t\"IconInnerShadowTopRight\",\r\n\t\"IconInnerShadowTop\",\r\n\t\"IconInputSearch\",\r\n\t\"IconIroning1\",\r\n\t\"IconIroning2\",\r\n\t\"IconIroning3\",\r\n\t\"IconIroningOff\",\r\n\t\"IconIroningSteamOff\",\r\n\t\"IconIroningSteam\",\r\n\t\"IconIroning\",\r\n\t\"IconIrregularPolyhedronOff\",\r\n\t\"IconIrregularPolyhedronPlus\",\r\n\t\"IconIrregularPolyhedron\",\r\n\t\"IconItalic\",\r\n\t\"IconJacket\",\r\n\t\"IconJetpack\",\r\n\t\"IconJewishStarFilled\",\r\n\t\"IconJewishStar\",\r\n\t\"IconJpg\",\r\n\t\"IconJson\",\r\n\t\"IconJumpRope\",\r\n\t\"IconKarate\",\r\n\t\"IconKayak\",\r\n\t\"IconKering\",\r\n\t\"IconKeyOff\",\r\n\t\"IconKey\",\r\n\t\"IconKeyboardHide\",\r\n\t\"IconKeyboardOff\",\r\n\t\"IconKeyboardShow\",\r\n\t\"IconKeyboard\",\r\n\t\"IconKeyframeAlignCenter\",\r\n\t\"IconKeyframeAlignHorizontal\",\r\n\t\"IconKeyframeAlignVertical\",\r\n\t\"IconKeyframe\",\r\n\t\"IconKeyframes\",\r\n\t\"IconLadderOff\",\r\n\t\"IconLadder\",\r\n\t\"IconLambda\",\r\n\t\"IconLamp2\",\r\n\t\"IconLampOff\",\r\n\t\"IconLamp\",\r\n\t\"IconLane\",\r\n\t\"IconLanguageHiragana\",\r\n\t\"IconLanguageKatakana\",\r\n\t\"IconLanguageOff\",\r\n\t\"IconLanguage\",\r\n\t\"IconLassoOff\",\r\n\t\"IconLassoPolygon\",\r\n\t\"IconLasso\",\r\n\t\"IconLayersDifference\",\r\n\t\"IconLayersIntersect2\",\r\n\t\"IconLayersIntersect\",\r\n\t\"IconLayersLinked\",\r\n\t\"IconLayersOff\",\r\n\t\"IconLayersSubtract\",\r\n\t\"IconLayersUnion\",\r\n\t\"IconLayout2\",\r\n\t\"IconLayoutAlignBottom\",\r\n\t\"IconLayoutAlignCenter\",\r\n\t\"IconLayoutAlignLeft\",\r\n\t\"IconLayoutAlignMiddle\",\r\n\t\"IconLayoutAlignRight\",\r\n\t\"IconLayoutAlignTop\",\r\n\t\"IconLayoutBoardSplit\",\r\n\t\"IconLayoutBoard\",\r\n\t\"IconLayoutBottombarCollapse\",\r\n\t\"IconLayoutBottombarExpand\",\r\n\t\"IconLayoutBottombar\",\r\n\t\"IconLayoutCards\",\r\n\t\"IconLayoutCollage\",\r\n\t\"IconLayoutColumns\",\r\n\t\"IconLayoutDashboard\",\r\n\t\"IconLayoutDistributeHorizontal\",\r\n\t\"IconLayoutDistributeVertical\",\r\n\t\"IconLayoutGridAdd\",\r\n\t\"IconLayoutGridRemove\",\r\n\t\"IconLayoutGrid\",\r\n\t\"IconLayoutKanban\",\r\n\t\"IconLayoutList\",\r\n\t\"IconLayoutNavbarCollapse\",\r\n\t\"IconLayoutNavbarExpand\",\r\n\t\"IconLayoutNavbar\",\r\n\t\"IconLayoutOff\",\r\n\t\"IconLayoutRows\",\r\n\t\"IconLayoutSidebarLeftCollapse\",\r\n\t\"IconLayoutSidebarLeftExpand\",\r\n\t\"IconLayoutSidebarRightCollapse\",\r\n\t\"IconLayoutSidebarRightExpand\",\r\n\t\"IconLayoutSidebarRight\",\r\n\t\"IconLayoutSidebar\",\r\n\t\"IconLayout\",\r\n\t\"IconLeafOff\",\r\n\t\"IconLeaf\",\r\n\t\"IconLegoOff\",\r\n\t\"IconLego\",\r\n\t\"IconLemon2\",\r\n\t\"IconLemon\",\r\n\t\"IconLetterA\",\r\n\t\"IconLetterB\",\r\n\t\"IconLetterC\",\r\n\t\"IconLetterCaseLower\",\r\n\t\"IconLetterCaseToggle\",\r\n\t\"IconLetterCaseUpper\",\r\n\t\"IconLetterCase\",\r\n\t\"IconLetterD\",\r\n\t\"IconLetterE\",\r\n\t\"IconLetterF\",\r\n\t\"IconLetterG\",\r\n\t\"IconLetterH\",\r\n\t\"IconLetterI\",\r\n\t\"IconLetterJ\",\r\n\t\"IconLetterK\",\r\n\t\"IconLetterL\",\r\n\t\"IconLetterM\",\r\n\t\"IconLetterN\",\r\n\t\"IconLetterO\",\r\n\t\"IconLetterP\",\r\n\t\"IconLetterQ\",\r\n\t\"IconLetterR\",\r\n\t\"IconLetterS\",\r\n\t\"IconLetterSpacing\",\r\n\t\"IconLetterT\",\r\n\t\"IconLetterU\",\r\n\t\"IconLetterV\",\r\n\t\"IconLetterW\",\r\n\t\"IconLetterX\",\r\n\t\"IconLetterY\",\r\n\t\"IconLetterZ\",\r\n\t\"IconLicenseOff\",\r\n\t\"IconLicense\",\r\n\t\"IconLifebuoyOff\",\r\n\t\"IconLifebuoy\",\r\n\t\"IconLighter\",\r\n\t\"IconLineDashed\",\r\n\t\"IconLineDotted\",\r\n\t\"IconLineHeight\",\r\n\t\"IconLine\",\r\n\t\"IconLinkOff\",\r\n\t\"IconLink\",\r\n\t\"IconListCheck\",\r\n\t\"IconListDetails\",\r\n\t\"IconListNumbers\",\r\n\t\"IconListSearch\",\r\n\t\"IconListTree\",\r\n\t\"IconList\",\r\n\t\"IconLivePhotoOff\",\r\n\t\"IconLivePhoto\",\r\n\t\"IconLiveView\",\r\n\t\"IconLoadBalancer\",\r\n\t\"IconLoader2\",\r\n\t\"IconLoader3\",\r\n\t\"IconLoaderQuarter\",\r\n\t\"IconLoader\",\r\n\t\"IconLocationBroken\",\r\n\t\"IconLocationFilled\",\r\n\t\"IconLocationOff\",\r\n\t\"IconLocation\",\r\n\t\"IconLockAccessOff\",\r\n\t\"IconLockAccess\",\r\n\t\"IconLockBolt\",\r\n\t\"IconLockCancel\",\r\n\t\"IconLockCheck\",\r\n\t\"IconLockCode\",\r\n\t\"IconLockCog\",\r\n\t\"IconLockDollar\",\r\n\t\"IconLockDown\",\r\n\t\"IconLockExclamation\",\r\n\t\"IconLockHeart\",\r\n\t\"IconLockMinus\",\r\n\t\"IconLockOff\",\r\n\t\"IconLockOpenOff\",\r\n\t\"IconLockOpen\",\r\n\t\"IconLockPause\",\r\n\t\"IconLockPin\",\r\n\t\"IconLockPlus\",\r\n\t\"IconLockQuestion\",\r\n\t\"IconLockSearch\",\r\n\t\"IconLockShare\",\r\n\t\"IconLockSquareRoundedFilled\",\r\n\t\"IconLockSquareRounded\",\r\n\t\"IconLockSquare\",\r\n\t\"IconLockStar\",\r\n\t\"IconLockUp\",\r\n\t\"IconLockX\",\r\n\t\"IconLock\",\r\n\t\"IconLogicAnd\",\r\n\t\"IconLogicBuffer\",\r\n\t\"IconLogicNand\",\r\n\t\"IconLogicNor\",\r\n\t\"IconLogicNot\",\r\n\t\"IconLogicOr\",\r\n\t\"IconLogicXnor\",\r\n\t\"IconLogicXor\",\r\n\t\"IconLogin\",\r\n\t\"IconLogout2\",\r\n\t\"IconLogout\",\r\n\t\"IconLollipopOff\",\r\n\t\"IconLollipop\",\r\n\t\"IconLuggageOff\",\r\n\t\"IconLuggage\",\r\n\t\"IconLungsOff\",\r\n\t\"IconLungs\",\r\n\t\"IconMacroOff\",\r\n\t\"IconMacro\",\r\n\t\"IconMagnetOff\",\r\n\t\"IconMagnet\",\r\n\t\"IconMailAi\",\r\n\t\"IconMailBolt\",\r\n\t\"IconMailCancel\",\r\n\t\"IconMailCheck\",\r\n\t\"IconMailCode\",\r\n\t\"IconMailCog\",\r\n\t\"IconMailDollar\",\r\n\t\"IconMailDown\",\r\n\t\"IconMailExclamation\",\r\n\t\"IconMailFast\",\r\n\t\"IconMailFilled\",\r\n\t\"IconMailForward\",\r\n\t\"IconMailHeart\",\r\n\t\"IconMailMinus\",\r\n\t\"IconMailOff\",\r\n\t\"IconMailOpenedFilled\",\r\n\t\"IconMailOpened\",\r\n\t\"IconMailPause\",\r\n\t\"IconMailPin\",\r\n\t\"IconMailPlus\",\r\n\t\"IconMailQuestion\",\r\n\t\"IconMailSearch\",\r\n\t\"IconMailShare\",\r\n\t\"IconMailStar\",\r\n\t\"IconMailUp\",\r\n\t\"IconMailX\",\r\n\t\"IconMail\",\r\n\t\"IconMailboxOff\",\r\n\t\"IconMailbox\",\r\n\t\"IconMan\",\r\n\t\"IconManualGearbox\",\r\n\t\"IconMap2\",\r\n\t\"IconMapOff\",\r\n\t\"IconMapPinBolt\",\r\n\t\"IconMapPinCancel\",\r\n\t\"IconMapPinCheck\",\r\n\t\"IconMapPinCode\",\r\n\t\"IconMapPinCog\",\r\n\t\"IconMapPinDollar\",\r\n\t\"IconMapPinDown\",\r\n\t\"IconMapPinExclamation\",\r\n\t\"IconMapPinFilled\",\r\n\t\"IconMapPinHeart\",\r\n\t\"IconMapPinMinus\",\r\n\t\"IconMapPinOff\",\r\n\t\"IconMapPinPause\",\r\n\t\"IconMapPinPin\",\r\n\t\"IconMapPinPlus\",\r\n\t\"IconMapPinQuestion\",\r\n\t\"IconMapPinSearch\",\r\n\t\"IconMapPinShare\",\r\n\t\"IconMapPinStar\",\r\n\t\"IconMapPinUp\",\r\n\t\"IconMapPinX\",\r\n\t\"IconMapPin\",\r\n\t\"IconMapPins\",\r\n\t\"IconMapSearch\",\r\n\t\"IconMap\",\r\n\t\"IconMarkdownOff\",\r\n\t\"IconMarkdown\",\r\n\t\"IconMarquee2\",\r\n\t\"IconMarqueeOff\",\r\n\t\"IconMarquee\",\r\n\t\"IconMars\",\r\n\t\"IconMaskOff\",\r\n\t\"IconMask\",\r\n\t\"IconMasksTheaterOff\",\r\n\t\"IconMasksTheater\",\r\n\t\"IconMassage\",\r\n\t\"IconMatchstick\",\r\n\t\"IconMath1Divide2\",\r\n\t\"IconMath1Divide3\",\r\n\t\"IconMathAvg\",\r\n\t\"IconMathEqualGreater\",\r\n\t\"IconMathEqualLower\",\r\n\t\"IconMathFunctionOff\",\r\n\t\"IconMathFunctionY\",\r\n\t\"IconMathFunction\",\r\n\t\"IconMathGreater\",\r\n\t\"IconMathIntegralX\",\r\n\t\"IconMathIntegral\",\r\n\t\"IconMathIntegrals\",\r\n\t\"IconMathLower\",\r\n\t\"IconMathMax\",\r\n\t\"IconMathMin\",\r\n\t\"IconMathNot\",\r\n\t\"IconMathOff\",\r\n\t\"IconMathPiDivide2\",\r\n\t\"IconMathPi\",\r\n\t\"IconMathSymbols\",\r\n\t\"IconMathXDivide2\",\r\n\t\"IconMathXDivideY2\",\r\n\t\"IconMathXDivideY\",\r\n\t\"IconMathXMinusX\",\r\n\t\"IconMathXMinusY\",\r\n\t\"IconMathXPlusX\",\r\n\t\"IconMathXPlusY\",\r\n\t\"IconMathXy\",\r\n\t\"IconMathYMinusY\",\r\n\t\"IconMathYPlusY\",\r\n\t\"IconMath\",\r\n\t\"IconMaximizeOff\",\r\n\t\"IconMaximize\",\r\n\t\"IconMeatOff\",\r\n\t\"IconMeat\",\r\n\t\"IconMedal2\",\r\n\t\"IconMedal\",\r\n\t\"IconMedicalCrossCircle\",\r\n\t\"IconMedicalCrossFilled\",\r\n\t\"IconMedicalCrossOff\",\r\n\t\"IconMedicalCross\",\r\n\t\"IconMedicineSyrup\",\r\n\t\"IconMeeple\",\r\n\t\"IconMenorah\",\r\n\t\"IconMenu2\",\r\n\t\"IconMenuDeep\",\r\n\t\"IconMenuOrder\",\r\n\t\"IconMenu\",\r\n\t\"IconMessage2Bolt\",\r\n\t\"IconMessage2Cancel\",\r\n\t\"IconMessage2Check\",\r\n\t\"IconMessage2Code\",\r\n\t\"IconMessage2Cog\",\r\n\t\"IconMessage2Dollar\",\r\n\t\"IconMessage2Down\",\r\n\t\"IconMessage2Exclamation\",\r\n\t\"IconMessage2Heart\",\r\n\t\"IconMessage2Minus\",\r\n\t\"IconMessage2Off\",\r\n\t\"IconMessage2Pause\",\r\n\t\"IconMessage2Pin\",\r\n\t\"IconMessage2Plus\",\r\n\t\"IconMessage2Question\",\r\n\t\"IconMessage2Search\",\r\n\t\"IconMessage2Share\",\r\n\t\"IconMessage2Star\",\r\n\t\"IconMessage2Up\",\r\n\t\"IconMessage2X\",\r\n\t\"IconMessage2\",\r\n\t\"IconMessageBolt\",\r\n\t\"IconMessageCancel\",\r\n\t\"IconMessageChatbot\",\r\n\t\"IconMessageCheck\",\r\n\t\"IconMessageCircle2Filled\",\r\n\t\"IconMessageCircle2\",\r\n\t\"IconMessageCircleBolt\",\r\n\t\"IconMessageCircleCancel\",\r\n\t\"IconMessageCircleCheck\",\r\n\t\"IconMessageCircleCode\",\r\n\t\"IconMessageCircleCog\",\r\n\t\"IconMessageCircleDollar\",\r\n\t\"IconMessageCircleDown\",\r\n\t\"IconMessageCircleExclamation\",\r\n\t\"IconMessageCircleHeart\",\r\n\t\"IconMessageCircleMinus\",\r\n\t\"IconMessageCircleOff\",\r\n\t\"IconMessageCirclePause\",\r\n\t\"IconMessageCirclePin\",\r\n\t\"IconMessageCirclePlus\",\r\n\t\"IconMessageCircleQuestion\",\r\n\t\"IconMessageCircleSearch\",\r\n\t\"IconMessageCircleShare\",\r\n\t\"IconMessageCircleStar\",\r\n\t\"IconMessageCircleUp\",\r\n\t\"IconMessageCircleX\",\r\n\t\"IconMessageCircle\",\r\n\t\"IconMessageCode\",\r\n\t\"IconMessageCog\",\r\n\t\"IconMessageDollar\",\r\n\t\"IconMessageDots\",\r\n\t\"IconMessageDown\",\r\n\t\"IconMessageExclamation\",\r\n\t\"IconMessageForward\",\r\n\t\"IconMessageHeart\",\r\n\t\"IconMessageLanguage\",\r\n\t\"IconMessageMinus\",\r\n\t\"IconMessageOff\",\r\n\t\"IconMessagePause\",\r\n\t\"IconMessagePin\",\r\n\t\"IconMessagePlus\",\r\n\t\"IconMessageQuestion\",\r\n\t\"IconMessageReport\",\r\n\t\"IconMessageSearch\",\r\n\t\"IconMessageShare\",\r\n\t\"IconMessageStar\",\r\n\t\"IconMessageUp\",\r\n\t\"IconMessageX\",\r\n\t\"IconMessage\",\r\n\t\"IconMessagesOff\",\r\n\t\"IconMessages\",\r\n\t\"IconMeteorOff\",\r\n\t\"IconMeteor\",\r\n\t\"IconMichelinBibGourmand\",\r\n\t\"IconMichelinStarGreen\",\r\n\t\"IconMichelinStar\",\r\n\t\"IconMickeyFilled\",\r\n\t\"IconMickey\",\r\n\t\"IconMicrophone2Off\",\r\n\t\"IconMicrophone2\",\r\n\t\"IconMicrophoneOff\",\r\n\t\"IconMicrophone\",\r\n\t\"IconMicroscopeOff\",\r\n\t\"IconMicroscope\",\r\n\t\"IconMicrowaveOff\",\r\n\t\"IconMicrowave\",\r\n\t\"IconMilitaryAward\",\r\n\t\"IconMilitaryRank\",\r\n\t\"IconMilkOff\",\r\n\t\"IconMilk\",\r\n\t\"IconMilkshake\",\r\n\t\"IconMinimize\",\r\n\t\"IconMinusVertical\",\r\n\t\"IconMinus\",\r\n\t\"IconMistOff\",\r\n\t\"IconMist\",\r\n\t\"IconMobiledataOff\",\r\n\t\"IconMobiledata\",\r\n\t\"IconMoneybag\",\r\n\t\"IconMoodAngry\",\r\n\t\"IconMoodAnnoyed2\",\r\n\t\"IconMoodAnnoyed\",\r\n\t\"IconMoodBoy\",\r\n\t\"IconMoodCheck\",\r\n\t\"IconMoodCog\",\r\n\t\"IconMoodConfuzedFilled\",\r\n\t\"IconMoodConfuzed\",\r\n\t\"IconMoodCrazyHappy\",\r\n\t\"IconMoodCry\",\r\n\t\"IconMoodDollar\",\r\n\t\"IconMoodEdit\",\r\n\t\"IconMoodEmptyFilled\",\r\n\t\"IconMoodEmpty\",\r\n\t\"IconMoodHappyFilled\",\r\n\t\"IconMoodHappy\",\r\n\t\"IconMoodHeart\",\r\n\t\"IconMoodKidFilled\",\r\n\t\"IconMoodKid\",\r\n\t\"IconMoodLookLeft\",\r\n\t\"IconMoodLookRight\",\r\n\t\"IconMoodMinus\",\r\n\t\"IconMoodNerd\",\r\n\t\"IconMoodNervous\",\r\n\t\"IconMoodNeutralFilled\",\r\n\t\"IconMoodNeutral\",\r\n\t\"IconMoodOff\",\r\n\t\"IconMoodPin\",\r\n\t\"IconMoodPlus\",\r\n\t\"IconMoodSad2\",\r\n\t\"IconMoodSadDizzy\",\r\n\t\"IconMoodSadFilled\",\r\n\t\"IconMoodSadSquint\",\r\n\t\"IconMoodSad\",\r\n\t\"IconMoodSearch\",\r\n\t\"IconMoodShare\",\r\n\t\"IconMoodSick\",\r\n\t\"IconMoodSilence\",\r\n\t\"IconMoodSing\",\r\n\t\"IconMoodSmileBeam\",\r\n\t\"IconMoodSmileDizzy\",\r\n\t\"IconMoodSmileFilled\",\r\n\t\"IconMoodSmile\",\r\n\t\"IconMoodSuprised\",\r\n\t\"IconMoodTongueWink2\",\r\n\t\"IconMoodTongueWink\",\r\n\t\"IconMoodTongue\",\r\n\t\"IconMoodUnamused\",\r\n\t\"IconMoodUp\",\r\n\t\"IconMoodWink2\",\r\n\t\"IconMoodWink\",\r\n\t\"IconMoodWrrr\",\r\n\t\"IconMoodX\",\r\n\t\"IconMoodXd\",\r\n\t\"IconMoon2\",\r\n\t\"IconMoonFilled\",\r\n\t\"IconMoonOff\",\r\n\t\"IconMoonStars\",\r\n\t\"IconMoon\",\r\n\t\"IconMoped\",\r\n\t\"IconMotorbike\",\r\n\t\"IconMountainOff\",\r\n\t\"IconMountain\",\r\n\t\"IconMouse2\",\r\n\t\"IconMouseFilled\",\r\n\t\"IconMouseOff\",\r\n\t\"IconMouse\",\r\n\t\"IconMoustache\",\r\n\t\"IconMovieOff\",\r\n\t\"IconMovie\",\r\n\t\"IconMugOff\",\r\n\t\"IconMug\",\r\n\t\"IconMultiplier05x\",\r\n\t\"IconMultiplier15x\",\r\n\t\"IconMultiplier1x\",\r\n\t\"IconMultiplier2x\",\r\n\t\"IconMushroomFilled\",\r\n\t\"IconMushroomOff\",\r\n\t\"IconMushroom\",\r\n\t\"IconMusicOff\",\r\n\t\"IconMusic\",\r\n\t\"IconNavigationFilled\",\r\n\t\"IconNavigationNorth\",\r\n\t\"IconNavigationOff\",\r\n\t\"IconNavigation\",\r\n\t\"IconNeedleThread\",\r\n\t\"IconNeedle\",\r\n\t\"IconNetworkOff\",\r\n\t\"IconNetwork\",\r\n\t\"IconNewSection\",\r\n\t\"IconNewsOff\",\r\n\t\"IconNews\",\r\n\t\"IconNfcOff\",\r\n\t\"IconNfc\",\r\n\t\"IconNoCopyright\",\r\n\t\"IconNoCreativeCommons\",\r\n\t\"IconNoDerivatives\",\r\n\t\"IconNorthStar\",\r\n\t\"IconNoteOff\",\r\n\t\"IconNote\",\r\n\t\"IconNotebookOff\",\r\n\t\"IconNotebook\",\r\n\t\"IconNotesOff\",\r\n\t\"IconNotes\",\r\n\t\"IconNotificationOff\",\r\n\t\"IconNotification\",\r\n\t\"IconNumber0\",\r\n\t\"IconNumber1\",\r\n\t\"IconNumber2\",\r\n\t\"IconNumber3\",\r\n\t\"IconNumber4\",\r\n\t\"IconNumber5\",\r\n\t\"IconNumber6\",\r\n\t\"IconNumber7\",\r\n\t\"IconNumber8\",\r\n\t\"IconNumber9\",\r\n\t\"IconNumber\",\r\n\t\"IconNumbers\",\r\n\t\"IconNurse\",\r\n\t\"IconOctagonFilled\",\r\n\t\"IconOctagonOff\",\r\n\t\"IconOctagon\",\r\n\t\"IconOctahedronOff\",\r\n\t\"IconOctahedronPlus\",\r\n\t\"IconOctahedron\",\r\n\t\"IconOld\",\r\n\t\"IconOlympicsOff\",\r\n\t\"IconOlympics\",\r\n\t\"IconOm\",\r\n\t\"IconOmega\",\r\n\t\"IconOutbound\",\r\n\t\"IconOutlet\",\r\n\t\"IconOvalFilled\",\r\n\t\"IconOvalVerticalFilled\",\r\n\t\"IconOvalVertical\",\r\n\t\"IconOval\",\r\n\t\"IconOverline\",\r\n\t\"IconPackageExport\",\r\n\t\"IconPackageImport\",\r\n\t\"IconPackageOff\",\r\n\t\"IconPackage\",\r\n\t\"IconPackages\",\r\n\t\"IconPacman\",\r\n\t\"IconPageBreak\",\r\n\t\"IconPaintFilled\",\r\n\t\"IconPaintOff\",\r\n\t\"IconPaint\",\r\n\t\"IconPaletteOff\",\r\n\t\"IconPalette\",\r\n\t\"IconPanoramaHorizontalOff\",\r\n\t\"IconPanoramaHorizontal\",\r\n\t\"IconPanoramaVerticalOff\",\r\n\t\"IconPanoramaVertical\",\r\n\t\"IconPaperBagOff\",\r\n\t\"IconPaperBag\",\r\n\t\"IconPaperclip\",\r\n\t\"IconParachuteOff\",\r\n\t\"IconParachute\",\r\n\t\"IconParenthesesOff\",\r\n\t\"IconParentheses\",\r\n\t\"IconParkingOff\",\r\n\t\"IconParking\",\r\n\t\"IconPassword\",\r\n\t\"IconPawFilled\",\r\n\t\"IconPawOff\",\r\n\t\"IconPaw\",\r\n\t\"IconPdf\",\r\n\t\"IconPeace\",\r\n\t\"IconPencilMinus\",\r\n\t\"IconPencilOff\",\r\n\t\"IconPencilPlus\",\r\n\t\"IconPencil\",\r\n\t\"IconPennant2Filled\",\r\n\t\"IconPennant2\",\r\n\t\"IconPennantFilled\",\r\n\t\"IconPennantOff\",\r\n\t\"IconPennant\",\r\n\t\"IconPentagonFilled\",\r\n\t\"IconPentagonOff\",\r\n\t\"IconPentagon\",\r\n\t\"IconPentagram\",\r\n\t\"IconPepperOff\",\r\n\t\"IconPepper\",\r\n\t\"IconPercentage\",\r\n\t\"IconPerfume\",\r\n\t\"IconPerspectiveOff\",\r\n\t\"IconPerspective\",\r\n\t\"IconPhoneCall\",\r\n\t\"IconPhoneCalling\",\r\n\t\"IconPhoneCheck\",\r\n\t\"IconPhoneFilled\",\r\n\t\"IconPhoneIncoming\",\r\n\t\"IconPhoneOff\",\r\n\t\"IconPhoneOutgoing\",\r\n\t\"IconPhonePause\",\r\n\t\"IconPhonePlus\",\r\n\t\"IconPhoneX\",\r\n\t\"IconPhone\",\r\n\t\"IconPhotoAi\",\r\n\t\"IconPhotoBolt\",\r\n\t\"IconPhotoCancel\",\r\n\t\"IconPhotoCheck\",\r\n\t\"IconPhotoCode\",\r\n\t\"IconPhotoCog\",\r\n\t\"IconPhotoDollar\",\r\n\t\"IconPhotoDown\",\r\n\t\"IconPhotoEdit\",\r\n\t\"IconPhotoExclamation\",\r\n\t\"IconPhotoFilled\",\r\n\t\"IconPhotoHeart\",\r\n\t\"IconPhotoMinus\",\r\n\t\"IconPhotoOff\",\r\n\t\"IconPhotoPause\",\r\n\t\"IconPhotoPin\",\r\n\t\"IconPhotoPlus\",\r\n\t\"IconPhotoQuestion\",\r\n\t\"IconPhotoSearch\",\r\n\t\"IconPhotoSensor2\",\r\n\t\"IconPhotoSensor3\",\r\n\t\"IconPhotoSensor\",\r\n\t\"IconPhotoShare\",\r\n\t\"IconPhotoShield\",\r\n\t\"IconPhotoStar\",\r\n\t\"IconPhotoUp\",\r\n\t\"IconPhotoX\",\r\n\t\"IconPhoto\",\r\n\t\"IconPhysotherapist\",\r\n\t\"IconPiano\",\r\n\t\"IconPick\",\r\n\t\"IconPictureInPictureOff\",\r\n\t\"IconPictureInPictureOn\",\r\n\t\"IconPictureInPictureTop\",\r\n\t\"IconPictureInPicture\",\r\n\t\"IconPigMoney\",\r\n\t\"IconPigOff\",\r\n\t\"IconPig\",\r\n\t\"IconPilcrow\",\r\n\t\"IconPillOff\",\r\n\t\"IconPill\",\r\n\t\"IconPills\",\r\n\t\"IconPinFilled\",\r\n\t\"IconPin\",\r\n\t\"IconPingPong\",\r\n\t\"IconPinnedFilled\",\r\n\t\"IconPinnedOff\",\r\n\t\"IconPinned\",\r\n\t\"IconPizzaOff\",\r\n\t\"IconPizza\",\r\n\t\"IconPlaceholder\",\r\n\t\"IconPlaneArrival\",\r\n\t\"IconPlaneDeparture\",\r\n\t\"IconPlaneInflight\",\r\n\t\"IconPlaneOff\",\r\n\t\"IconPlaneTilt\",\r\n\t\"IconPlane\",\r\n\t\"IconPlanetOff\",\r\n\t\"IconPlanet\",\r\n\t\"IconPlant2Off\",\r\n\t\"IconPlant2\",\r\n\t\"IconPlantOff\",\r\n\t\"IconPlant\",\r\n\t\"IconPlayBasketball\",\r\n\t\"IconPlayCardOff\",\r\n\t\"IconPlayCard\",\r\n\t\"IconPlayFootball\",\r\n\t\"IconPlayHandball\",\r\n\t\"IconPlayVolleyball\",\r\n\t\"IconPlayerEjectFilled\",\r\n\t\"IconPlayerEject\",\r\n\t\"IconPlayerPauseFilled\",\r\n\t\"IconPlayerPause\",\r\n\t\"IconPlayerPlayFilled\",\r\n\t\"IconPlayerPlay\",\r\n\t\"IconPlayerRecordFilled\",\r\n\t\"IconPlayerRecord\",\r\n\t\"IconPlayerSkipBackFilled\",\r\n\t\"IconPlayerSkipBack\",\r\n\t\"IconPlayerSkipForwardFilled\",\r\n\t\"IconPlayerSkipForward\",\r\n\t\"IconPlayerStopFilled\",\r\n\t\"IconPlayerStop\",\r\n\t\"IconPlayerTrackNextFilled\",\r\n\t\"IconPlayerTrackNext\",\r\n\t\"IconPlayerTrackPrevFilled\",\r\n\t\"IconPlayerTrackPrev\",\r\n\t\"IconPlaylistAdd\",\r\n\t\"IconPlaylistOff\",\r\n\t\"IconPlaylistX\",\r\n\t\"IconPlaylist\",\r\n\t\"IconPlaystationCircle\",\r\n\t\"IconPlaystationSquare\",\r\n\t\"IconPlaystationTriangle\",\r\n\t\"IconPlaystationX\",\r\n\t\"IconPlugConnectedX\",\r\n\t\"IconPlugConnected\",\r\n\t\"IconPlugOff\",\r\n\t\"IconPlugX\",\r\n\t\"IconPlug\",\r\n\t\"IconPlusEqual\",\r\n\t\"IconPlusMinus\",\r\n\t\"IconPlus\",\r\n\t\"IconPng\",\r\n\t\"IconPodiumOff\",\r\n\t\"IconPodium\",\r\n\t\"IconPointFilled\",\r\n\t\"IconPointOff\",\r\n\t\"IconPoint\",\r\n\t\"IconPointerBolt\",\r\n\t\"IconPointerCancel\",\r\n\t\"IconPointerCheck\",\r\n\t\"IconPointerCode\",\r\n\t\"IconPointerCog\",\r\n\t\"IconPointerDollar\",\r\n\t\"IconPointerDown\",\r\n\t\"IconPointerExclamation\",\r\n\t\"IconPointerFilled\",\r\n\t\"IconPointerHeart\",\r\n\t\"IconPointerMinus\",\r\n\t\"IconPointerOff\",\r\n\t\"IconPointerPause\",\r\n\t\"IconPointerPin\",\r\n\t\"IconPointerPlus\",\r\n\t\"IconPointerQuestion\",\r\n\t\"IconPointerSearch\",\r\n\t\"IconPointerShare\",\r\n\t\"IconPointerStar\",\r\n\t\"IconPointerUp\",\r\n\t\"IconPointerX\",\r\n\t\"IconPointer\",\r\n\t\"IconPokeballOff\",\r\n\t\"IconPokeball\",\r\n\t\"IconPokerChip\",\r\n\t\"IconPolaroidFilled\",\r\n\t\"IconPolaroid\",\r\n\t\"IconPolygonOff\",\r\n\t\"IconPolygon\",\r\n\t\"IconPoo\",\r\n\t\"IconPoolOff\",\r\n\t\"IconPool\",\r\n\t\"IconPower\",\r\n\t\"IconPray\",\r\n\t\"IconPremiumRights\",\r\n\t\"IconPrescription\",\r\n\t\"IconPresentationAnalytics\",\r\n\t\"IconPresentationOff\",\r\n\t\"IconPresentation\",\r\n\t\"IconPrinterOff\",\r\n\t\"IconPrinter\",\r\n\t\"IconPrismOff\",\r\n\t\"IconPrismPlus\",\r\n\t\"IconPrism\",\r\n\t\"IconPrison\",\r\n\t\"IconProgressAlert\",\r\n\t\"IconProgressBolt\",\r\n\t\"IconProgressCheck\",\r\n\t\"IconProgressDown\",\r\n\t\"IconProgressHelp\",\r\n\t\"IconProgressX\",\r\n\t\"IconProgress\",\r\n\t\"IconPrompt\",\r\n\t\"IconPropellerOff\",\r\n\t\"IconPropeller\",\r\n\t\"IconPumpkinScary\",\r\n\t\"IconPuzzle2\",\r\n\t\"IconPuzzleFilled\",\r\n\t\"IconPuzzleOff\",\r\n\t\"IconPuzzle\",\r\n\t\"IconPyramidOff\",\r\n\t\"IconPyramidPlus\",\r\n\t\"IconPyramid\",\r\n\t\"IconQrcodeOff\",\r\n\t\"IconQrcode\",\r\n\t\"IconQuestionMark\",\r\n\t\"IconQuoteOff\",\r\n\t\"IconQuote\",\r\n\t\"IconQuotes\",\r\n\t\"IconRadar2\",\r\n\t\"IconRadarOff\",\r\n\t\"IconRadar\",\r\n\t\"IconRadioOff\",\r\n\t\"IconRadio\",\r\n\t\"IconRadioactiveFilled\",\r\n\t\"IconRadioactiveOff\",\r\n\t\"IconRadioactive\",\r\n\t\"IconRadiusBottomLeft\",\r\n\t\"IconRadiusBottomRight\",\r\n\t\"IconRadiusTopLeft\",\r\n\t\"IconRadiusTopRight\",\r\n\t\"IconRainbowOff\",\r\n\t\"IconRainbow\",\r\n\t\"IconRating12Plus\",\r\n\t\"IconRating14Plus\",\r\n\t\"IconRating16Plus\",\r\n\t\"IconRating18Plus\",\r\n\t\"IconRating21Plus\",\r\n\t\"IconRazorElectric\",\r\n\t\"IconRazor\",\r\n\t\"IconReceipt2\",\r\n\t\"IconReceiptOff\",\r\n\t\"IconReceiptRefund\",\r\n\t\"IconReceiptTax\",\r\n\t\"IconReceipt\",\r\n\t\"IconRecharging\",\r\n\t\"IconRecordMailOff\",\r\n\t\"IconRecordMail\",\r\n\t\"IconRectangleFilled\",\r\n\t\"IconRectangleRoundedBottom\",\r\n\t\"IconRectangleRoundedTop\",\r\n\t\"IconRectangleVerticalFilled\",\r\n\t\"IconRectangleVertical\",\r\n\t\"IconRectangle\",\r\n\t\"IconRectangularPrismOff\",\r\n\t\"IconRectangularPrismPlus\",\r\n\t\"IconRectangularPrism\",\r\n\t\"IconRecycleOff\",\r\n\t\"IconRecycle\",\r\n\t\"IconRefreshAlert\",\r\n\t\"IconRefreshDot\",\r\n\t\"IconRefreshOff\",\r\n\t\"IconRefresh\",\r\n\t\"IconRegexOff\",\r\n\t\"IconRegex\",\r\n\t\"IconRegistered\",\r\n\t\"IconRelationManyToMany\",\r\n\t\"IconRelationOneToMany\",\r\n\t\"IconRelationOneToOne\",\r\n\t\"IconReload\",\r\n\t\"IconRepeatOff\",\r\n\t\"IconRepeatOnce\",\r\n\t\"IconRepeat\",\r\n\t\"IconReplaceFilled\",\r\n\t\"IconReplaceOff\",\r\n\t\"IconReplace\",\r\n\t\"IconReportAnalytics\",\r\n\t\"IconReportMedical\",\r\n\t\"IconReportMoney\",\r\n\t\"IconReportOff\",\r\n\t\"IconReportSearch\",\r\n\t\"IconReport\",\r\n\t\"IconReservedLine\",\r\n\t\"IconResize\",\r\n\t\"IconRestore\",\r\n\t\"IconRewindBackward10\",\r\n\t\"IconRewindBackward15\",\r\n\t\"IconRewindBackward20\",\r\n\t\"IconRewindBackward30\",\r\n\t\"IconRewindBackward40\",\r\n\t\"IconRewindBackward5\",\r\n\t\"IconRewindBackward50\",\r\n\t\"IconRewindBackward60\",\r\n\t\"IconRewindForward10\",\r\n\t\"IconRewindForward15\",\r\n\t\"IconRewindForward20\",\r\n\t\"IconRewindForward30\",\r\n\t\"IconRewindForward40\",\r\n\t\"IconRewindForward5\",\r\n\t\"IconRewindForward50\",\r\n\t\"IconRewindForward60\",\r\n\t\"IconRibbonHealth\",\r\n\t\"IconRings\",\r\n\t\"IconRippleOff\",\r\n\t\"IconRipple\",\r\n\t\"IconRoadOff\",\r\n\t\"IconRoadSign\",\r\n\t\"IconRoad\",\r\n\t\"IconRobotOff\",\r\n\t\"IconRobot\",\r\n\t\"IconRocketOff\",\r\n\t\"IconRocket\",\r\n\t\"IconRollerSkating\",\r\n\t\"IconRollercoasterOff\",\r\n\t\"IconRollercoaster\",\r\n\t\"IconRosetteFilled\",\r\n\t\"IconRosetteNumber0\",\r\n\t\"IconRosetteNumber1\",\r\n\t\"IconRosetteNumber2\",\r\n\t\"IconRosetteNumber3\",\r\n\t\"IconRosetteNumber4\",\r\n\t\"IconRosetteNumber5\",\r\n\t\"IconRosetteNumber6\",\r\n\t\"IconRosetteNumber7\",\r\n\t\"IconRosetteNumber8\",\r\n\t\"IconRosetteNumber9\",\r\n\t\"IconRosette\",\r\n\t\"IconRotate2\",\r\n\t\"IconRotate360\",\r\n\t\"IconRotateClockwise2\",\r\n\t\"IconRotateClockwise\",\r\n\t\"IconRotateDot\",\r\n\t\"IconRotateRectangle\",\r\n\t\"IconRotate\",\r\n\t\"IconRoute2\",\r\n\t\"IconRouteOff\",\r\n\t\"IconRoute\",\r\n\t\"IconRouterOff\",\r\n\t\"IconRouter\",\r\n\t\"IconRowInsertBottom\",\r\n\t\"IconRowInsertTop\",\r\n\t\"IconRowRemove\",\r\n\t\"IconRss\",\r\n\t\"IconRubberStampOff\",\r\n\t\"IconRubberStamp\",\r\n\t\"IconRuler2Off\",\r\n\t\"IconRuler2\",\r\n\t\"IconRuler3\",\r\n\t\"IconRulerMeasure\",\r\n\t\"IconRulerOff\",\r\n\t\"IconRuler\",\r\n\t\"IconRun\",\r\n\t\"IconSTurnDown\",\r\n\t\"IconSTurnLeft\",\r\n\t\"IconSTurnRight\",\r\n\t\"IconSTurnUp\",\r\n\t\"IconSailboat2\",\r\n\t\"IconSailboatOff\",\r\n\t\"IconSailboat\",\r\n\t\"IconSalad\",\r\n\t\"IconSalt\",\r\n\t\"IconSatelliteOff\",\r\n\t\"IconSatellite\",\r\n\t\"IconSausage\",\r\n\t\"IconScaleOff\",\r\n\t\"IconScaleOutlineOff\",\r\n\t\"IconScaleOutline\",\r\n\t\"IconScale\",\r\n\t\"IconScanEye\",\r\n\t\"IconScan\",\r\n\t\"IconSchemaOff\",\r\n\t\"IconSchema\",\r\n\t\"IconSchoolBell\",\r\n\t\"IconSchoolOff\",\r\n\t\"IconSchool\",\r\n\t\"IconScissorsOff\",\r\n\t\"IconScissors\",\r\n\t\"IconScooterElectric\",\r\n\t\"IconScooter\",\r\n\t\"IconScoreboard\",\r\n\t\"IconScreenShareOff\",\r\n\t\"IconScreenShare\",\r\n\t\"IconScreenshot\",\r\n\t\"IconScribbleOff\",\r\n\t\"IconScribble\",\r\n\t\"IconScriptMinus\",\r\n\t\"IconScriptPlus\",\r\n\t\"IconScriptX\",\r\n\t\"IconScript\",\r\n\t\"IconScubaMaskOff\",\r\n\t\"IconScubaMask\",\r\n\t\"IconSdk\",\r\n\t\"IconSearchOff\",\r\n\t\"IconSearch\",\r\n\t\"IconSectionSign\",\r\n\t\"IconSection\",\r\n\t\"IconSeedingOff\",\r\n\t\"IconSeeding\",\r\n\t\"IconSelectAll\",\r\n\t\"IconSelect\",\r\n\t\"IconSelector\",\r\n\t\"IconSendOff\",\r\n\t\"IconSend\",\r\n\t\"IconSeo\",\r\n\t\"IconSeparatorHorizontal\",\r\n\t\"IconSeparatorVertical\",\r\n\t\"IconSeparator\",\r\n\t\"IconServer2\",\r\n\t\"IconServerBolt\",\r\n\t\"IconServerCog\",\r\n\t\"IconServerOff\",\r\n\t\"IconServer\",\r\n\t\"IconServicemark\",\r\n\t\"IconSettings2\",\r\n\t\"IconSettingsAutomation\",\r\n\t\"IconSettingsBolt\",\r\n\t\"IconSettingsCancel\",\r\n\t\"IconSettingsCheck\",\r\n\t\"IconSettingsCode\",\r\n\t\"IconSettingsCog\",\r\n\t\"IconSettingsDollar\",\r\n\t\"IconSettingsDown\",\r\n\t\"IconSettingsExclamation\",\r\n\t\"IconSettingsFilled\",\r\n\t\"IconSettingsHeart\",\r\n\t\"IconSettingsMinus\",\r\n\t\"IconSettingsOff\",\r\n\t\"IconSettingsPause\",\r\n\t\"IconSettingsPin\",\r\n\t\"IconSettingsPlus\",\r\n\t\"IconSettingsQuestion\",\r\n\t\"IconSettingsSearch\",\r\n\t\"IconSettingsShare\",\r\n\t\"IconSettingsStar\",\r\n\t\"IconSettingsUp\",\r\n\t\"IconSettingsX\",\r\n\t\"IconSettings\",\r\n\t\"IconShadowOff\",\r\n\t\"IconShadow\",\r\n\t\"IconShape2\",\r\n\t\"IconShape3\",\r\n\t\"IconShapeOff\",\r\n\t\"IconShape\",\r\n\t\"IconShare2\",\r\n\t\"IconShare3\",\r\n\t\"IconShareOff\",\r\n\t\"IconShare\",\r\n\t\"IconShiJumping\",\r\n\t\"IconShieldBolt\",\r\n\t\"IconShieldCancel\",\r\n\t\"IconShieldCheckFilled\",\r\n\t\"IconShieldCheck\",\r\n\t\"IconShieldCheckeredFilled\",\r\n\t\"IconShieldCheckered\",\r\n\t\"IconShieldChevron\",\r\n\t\"IconShieldCode\",\r\n\t\"IconShieldCog\",\r\n\t\"IconShieldDollar\",\r\n\t\"IconShieldDown\",\r\n\t\"IconShieldExclamation\",\r\n\t\"IconShieldFilled\",\r\n\t\"IconShieldHalfFilled\",\r\n\t\"IconShieldHalf\",\r\n\t\"IconShieldHeart\",\r\n\t\"IconShieldLockFilled\",\r\n\t\"IconShieldLock\",\r\n\t\"IconShieldMinus\",\r\n\t\"IconShieldOff\",\r\n\t\"IconShieldPause\",\r\n\t\"IconShieldPin\",\r\n\t\"IconShieldPlus\",\r\n\t\"IconShieldQuestion\",\r\n\t\"IconShieldSearch\",\r\n\t\"IconShieldShare\",\r\n\t\"IconShieldStar\",\r\n\t\"IconShieldUp\",\r\n\t\"IconShieldX\",\r\n\t\"IconShield\",\r\n\t\"IconShipOff\",\r\n\t\"IconShip\",\r\n\t\"IconShirtFilled\",\r\n\t\"IconShirtOff\",\r\n\t\"IconShirtSport\",\r\n\t\"IconShirt\",\r\n\t\"IconShoeOff\",\r\n\t\"IconShoe\",\r\n\t\"IconShoppingBag\",\r\n\t\"IconShoppingCartDiscount\",\r\n\t\"IconShoppingCartOff\",\r\n\t\"IconShoppingCartPlus\",\r\n\t\"IconShoppingCartX\",\r\n\t\"IconShoppingCart\",\r\n\t\"IconShovel\",\r\n\t\"IconShredder\",\r\n\t\"IconSignLeftFilled\",\r\n\t\"IconSignLeft\",\r\n\t\"IconSignRightFilled\",\r\n\t\"IconSignRight\",\r\n\t\"IconSignal2g\",\r\n\t\"IconSignal3g\",\r\n\t\"IconSignal4gPlus\",\r\n\t\"IconSignal4g\",\r\n\t\"IconSignal5g\",\r\n\t\"IconSignal6g\",\r\n\t\"IconSignalE\",\r\n\t\"IconSignalG\",\r\n\t\"IconSignalHPlus\",\r\n\t\"IconSignalH\",\r\n\t\"IconSignalLte\",\r\n\t\"IconSignatureOff\",\r\n\t\"IconSignature\",\r\n\t\"IconSitemapOff\",\r\n\t\"IconSitemap\",\r\n\t\"IconSkateboardOff\",\r\n\t\"IconSkateboard\",\r\n\t\"IconSkateboarding\",\r\n\t\"IconSkull\",\r\n\t\"IconSlash\",\r\n\t\"IconSlashes\",\r\n\t\"IconSleigh\",\r\n\t\"IconSlice\",\r\n\t\"IconSlideshow\",\r\n\t\"IconSmartHomeOff\",\r\n\t\"IconSmartHome\",\r\n\t\"IconSmokingNo\",\r\n\t\"IconSmoking\",\r\n\t\"IconSnowflakeOff\",\r\n\t\"IconSnowflake\",\r\n\t\"IconSnowman\",\r\n\t\"IconSoccerField\",\r\n\t\"IconSocialOff\",\r\n\t\"IconSocial\",\r\n\t\"IconSock\",\r\n\t\"IconSofaOff\",\r\n\t\"IconSofa\",\r\n\t\"IconSolarPanel2\",\r\n\t\"IconSolarPanel\",\r\n\t\"IconSort09\",\r\n\t\"IconSort90\",\r\n\t\"IconSortAZ\",\r\n\t\"IconSortAscending2\",\r\n\t\"IconSortAscendingLetters\",\r\n\t\"IconSortAscendingNumbers\",\r\n\t\"IconSortAscending\",\r\n\t\"IconSortDescending2\",\r\n\t\"IconSortDescendingLetters\",\r\n\t\"IconSortDescendingNumbers\",\r\n\t\"IconSortDescending\",\r\n\t\"IconSortZA\",\r\n\t\"IconSos\",\r\n\t\"IconSoupOff\",\r\n\t\"IconSoup\",\r\n\t\"IconSourceCode\",\r\n\t\"IconSpaceOff\",\r\n\t\"IconSpace\",\r\n\t\"IconSpacingHorizontal\",\r\n\t\"IconSpacingVertical\",\r\n\t\"IconSpadeFilled\",\r\n\t\"IconSpade\",\r\n\t\"IconSparkles\",\r\n\t\"IconSpeakerphone\",\r\n\t\"IconSpeedboat\",\r\n\t\"IconSphereOff\",\r\n\t\"IconSpherePlus\",\r\n\t\"IconSphere\",\r\n\t\"IconSpider\",\r\n\t\"IconSpiralOff\",\r\n\t\"IconSpiral\",\r\n\t\"IconSportBillard\",\r\n\t\"IconSpray\",\r\n\t\"IconSpyOff\",\r\n\t\"IconSpy\",\r\n\t\"IconSql\",\r\n\t\"IconSquare0Filled\",\r\n\t\"IconSquare1Filled\",\r\n\t\"IconSquare2Filled\",\r\n\t\"IconSquare3Filled\",\r\n\t\"IconSquare4Filled\",\r\n\t\"IconSquare5Filled\",\r\n\t\"IconSquare6Filled\",\r\n\t\"IconSquare7Filled\",\r\n\t\"IconSquare8Filled\",\r\n\t\"IconSquare9Filled\",\r\n\t\"IconSquareArrowDown\",\r\n\t\"IconSquareArrowLeft\",\r\n\t\"IconSquareArrowRight\",\r\n\t\"IconSquareArrowUp\",\r\n\t\"IconSquareAsterisk\",\r\n\t\"IconSquareCheckFilled\",\r\n\t\"IconSquareCheck\",\r\n\t\"IconSquareChevronDown\",\r\n\t\"IconSquareChevronLeft\",\r\n\t\"IconSquareChevronRight\",\r\n\t\"IconSquareChevronUp\",\r\n\t\"IconSquareChevronsDown\",\r\n\t\"IconSquareChevronsLeft\",\r\n\t\"IconSquareChevronsRight\",\r\n\t\"IconSquareChevronsUp\",\r\n\t\"IconSquareDot\",\r\n\t\"IconSquareF0Filled\",\r\n\t\"IconSquareF0\",\r\n\t\"IconSquareF1Filled\",\r\n\t\"IconSquareF1\",\r\n\t\"IconSquareF2Filled\",\r\n\t\"IconSquareF2\",\r\n\t\"IconSquareF3Filled\",\r\n\t\"IconSquareF3\",\r\n\t\"IconSquareF4Filled\",\r\n\t\"IconSquareF4\",\r\n\t\"IconSquareF5Filled\",\r\n\t\"IconSquareF5\",\r\n\t\"IconSquareF6Filled\",\r\n\t\"IconSquareF6\",\r\n\t\"IconSquareF7Filled\",\r\n\t\"IconSquareF7\",\r\n\t\"IconSquareF8Filled\",\r\n\t\"IconSquareF8\",\r\n\t\"IconSquareF9Filled\",\r\n\t\"IconSquareF9\",\r\n\t\"IconSquareForbid2\",\r\n\t\"IconSquareForbid\",\r\n\t\"IconSquareHalf\",\r\n\t\"IconSquareKey\",\r\n\t\"IconSquareLetterA\",\r\n\t\"IconSquareLetterB\",\r\n\t\"IconSquareLetterC\",\r\n\t\"IconSquareLetterD\",\r\n\t\"IconSquareLetterE\",\r\n\t\"IconSquareLetterF\",\r\n\t\"IconSquareLetterG\",\r\n\t\"IconSquareLetterH\",\r\n\t\"IconSquareLetterI\",\r\n\t\"IconSquareLetterJ\",\r\n\t\"IconSquareLetterK\",\r\n\t\"IconSquareLetterL\",\r\n\t\"IconSquareLetterM\",\r\n\t\"IconSquareLetterN\",\r\n\t\"IconSquareLetterO\",\r\n\t\"IconSquareLetterP\",\r\n\t\"IconSquareLetterQ\",\r\n\t\"IconSquareLetterR\",\r\n\t\"IconSquareLetterS\",\r\n\t\"IconSquareLetterT\",\r\n\t\"IconSquareLetterU\",\r\n\t\"IconSquareLetterV\",\r\n\t\"IconSquareLetterW\",\r\n\t\"IconSquareLetterX\",\r\n\t\"IconSquareLetterY\",\r\n\t\"IconSquareLetterZ\",\r\n\t\"IconSquareMinus\",\r\n\t\"IconSquareNumber0\",\r\n\t\"IconSquareNumber1\",\r\n\t\"IconSquareNumber2\",\r\n\t\"IconSquareNumber3\",\r\n\t\"IconSquareNumber4\",\r\n\t\"IconSquareNumber5\",\r\n\t\"IconSquareNumber6\",\r\n\t\"IconSquareNumber7\",\r\n\t\"IconSquareNumber8\",\r\n\t\"IconSquareNumber9\",\r\n\t\"IconSquareOff\",\r\n\t\"IconSquarePlus\",\r\n\t\"IconSquareRoot2\",\r\n\t\"IconSquareRoot\",\r\n\t\"IconSquareRotatedFilled\",\r\n\t\"IconSquareRotatedForbid2\",\r\n\t\"IconSquareRotatedForbid\",\r\n\t\"IconSquareRotatedOff\",\r\n\t\"IconSquareRotated\",\r\n\t\"IconSquareRoundedArrowDownFilled\",\r\n\t\"IconSquareRoundedArrowDown\",\r\n\t\"IconSquareRoundedArrowLeftFilled\",\r\n\t\"IconSquareRoundedArrowLeft\",\r\n\t\"IconSquareRoundedArrowRightFilled\",\r\n\t\"IconSquareRoundedArrowRight\",\r\n\t\"IconSquareRoundedArrowUpFilled\",\r\n\t\"IconSquareRoundedArrowUp\",\r\n\t\"IconSquareRoundedCheckFilled\",\r\n\t\"IconSquareRoundedCheck\",\r\n\t\"IconSquareRoundedChevronDownFilled\",\r\n\t\"IconSquareRoundedChevronDown\",\r\n\t\"IconSquareRoundedChevronLeftFilled\",\r\n\t\"IconSquareRoundedChevronLeft\",\r\n\t\"IconSquareRoundedChevronRightFilled\",\r\n\t\"IconSquareRoundedChevronRight\",\r\n\t\"IconSquareRoundedChevronUpFilled\",\r\n\t\"IconSquareRoundedChevronUp\",\r\n\t\"IconSquareRoundedChevronsDownFilled\",\r\n\t\"IconSquareRoundedChevronsDown\",\r\n\t\"IconSquareRoundedChevronsLeftFilled\",\r\n\t\"IconSquareRoundedChevronsLeft\",\r\n\t\"IconSquareRoundedChevronsRightFilled\",\r\n\t\"IconSquareRoundedChevronsRight\",\r\n\t\"IconSquareRoundedChevronsUpFilled\",\r\n\t\"IconSquareRoundedChevronsUp\",\r\n\t\"IconSquareRoundedFilled\",\r\n\t\"IconSquareRoundedLetterA\",\r\n\t\"IconSquareRoundedLetterB\",\r\n\t\"IconSquareRoundedLetterC\",\r\n\t\"IconSquareRoundedLetterD\",\r\n\t\"IconSquareRoundedLetterE\",\r\n\t\"IconSquareRoundedLetterF\",\r\n\t\"IconSquareRoundedLetterG\",\r\n\t\"IconSquareRoundedLetterH\",\r\n\t\"IconSquareRoundedLetterI\",\r\n\t\"IconSquareRoundedLetterJ\",\r\n\t\"IconSquareRoundedLetterK\",\r\n\t\"IconSquareRoundedLetterL\",\r\n\t\"IconSquareRoundedLetterM\",\r\n\t\"IconSquareRoundedLetterN\",\r\n\t\"IconSquareRoundedLetterO\",\r\n\t\"IconSquareRoundedLetterP\",\r\n\t\"IconSquareRoundedLetterQ\",\r\n\t\"IconSquareRoundedLetterR\",\r\n\t\"IconSquareRoundedLetterS\",\r\n\t\"IconSquareRoundedLetterT\",\r\n\t\"IconSquareRoundedLetterU\",\r\n\t\"IconSquareRoundedLetterV\",\r\n\t\"IconSquareRoundedLetterW\",\r\n\t\"IconSquareRoundedLetterX\",\r\n\t\"IconSquareRoundedLetterY\",\r\n\t\"IconSquareRoundedLetterZ\",\r\n\t\"IconSquareRoundedMinus\",\r\n\t\"IconSquareRoundedNumber0Filled\",\r\n\t\"IconSquareRoundedNumber0\",\r\n\t\"IconSquareRoundedNumber1Filled\",\r\n\t\"IconSquareRoundedNumber1\",\r\n\t\"IconSquareRoundedNumber2Filled\",\r\n\t\"IconSquareRoundedNumber2\",\r\n\t\"IconSquareRoundedNumber3Filled\",\r\n\t\"IconSquareRoundedNumber3\",\r\n\t\"IconSquareRoundedNumber4Filled\",\r\n\t\"IconSquareRoundedNumber4\",\r\n\t\"IconSquareRoundedNumber5Filled\",\r\n\t\"IconSquareRoundedNumber5\",\r\n\t\"IconSquareRoundedNumber6Filled\",\r\n\t\"IconSquareRoundedNumber6\",\r\n\t\"IconSquareRoundedNumber7Filled\",\r\n\t\"IconSquareRoundedNumber7\",\r\n\t\"IconSquareRoundedNumber8Filled\",\r\n\t\"IconSquareRoundedNumber8\",\r\n\t\"IconSquareRoundedNumber9Filled\",\r\n\t\"IconSquareRoundedNumber9\",\r\n\t\"IconSquareRoundedPlusFilled\",\r\n\t\"IconSquareRoundedPlus\",\r\n\t\"IconSquareRoundedXFilled\",\r\n\t\"IconSquareRoundedX\",\r\n\t\"IconSquareRounded\",\r\n\t\"IconSquareToggleHorizontal\",\r\n\t\"IconSquareToggle\",\r\n\t\"IconSquareX\",\r\n\t\"IconSquare\",\r\n\t\"IconSquaresDiagonal\",\r\n\t\"IconSquaresFilled\",\r\n\t\"IconStack2\",\r\n\t\"IconStack3\",\r\n\t\"IconStackPop\",\r\n\t\"IconStackPush\",\r\n\t\"IconStack\",\r\n\t\"IconStairsDown\",\r\n\t\"IconStairsUp\",\r\n\t\"IconStairs\",\r\n\t\"IconStarFilled\",\r\n\t\"IconStarHalfFilled\",\r\n\t\"IconStarHalf\",\r\n\t\"IconStarOff\",\r\n\t\"IconStar\",\r\n\t\"IconStarsFilled\",\r\n\t\"IconStarsOff\",\r\n\t\"IconStars\",\r\n\t\"IconStatusChange\",\r\n\t\"IconSteam\",\r\n\t\"IconSteeringWheelOff\",\r\n\t\"IconSteeringWheel\",\r\n\t\"IconStepInto\",\r\n\t\"IconStepOut\",\r\n\t\"IconStereoGlasses\",\r\n\t\"IconStethoscopeOff\",\r\n\t\"IconStethoscope\",\r\n\t\"IconSticker\",\r\n\t\"IconStormOff\",\r\n\t\"IconStorm\",\r\n\t\"IconStretching2\",\r\n\t\"IconStretching\",\r\n\t\"IconStrikethrough\",\r\n\t\"IconSubmarine\",\r\n\t\"IconSubscript\",\r\n\t\"IconSubtask\",\r\n\t\"IconSumOff\",\r\n\t\"IconSum\",\r\n\t\"IconSunFilled\",\r\n\t\"IconSunHigh\",\r\n\t\"IconSunLow\",\r\n\t\"IconSunMoon\",\r\n\t\"IconSunOff\",\r\n\t\"IconSunWind\",\r\n\t\"IconSun\",\r\n\t\"IconSunglasses\",\r\n\t\"IconSunrise\",\r\n\t\"IconSunset2\",\r\n\t\"IconSunset\",\r\n\t\"IconSuperscript\",\r\n\t\"IconSvg\",\r\n\t\"IconSwimming\",\r\n\t\"IconSwipe\",\r\n\t\"IconSwitch2\",\r\n\t\"IconSwitch3\",\r\n\t\"IconSwitchHorizontal\",\r\n\t\"IconSwitchVertical\",\r\n\t\"IconSwitch\",\r\n\t\"IconSwordOff\",\r\n\t\"IconSword\",\r\n\t\"IconSwords\",\r\n\t\"IconTableAlias\",\r\n\t\"IconTableColumn\",\r\n\t\"IconTableDown\",\r\n\t\"IconTableExport\",\r\n\t\"IconTableFilled\",\r\n\t\"IconTableHeart\",\r\n\t\"IconTableImport\",\r\n\t\"IconTableMinus\",\r\n\t\"IconTableOff\",\r\n\t\"IconTableOptions\",\r\n\t\"IconTablePlus\",\r\n\t\"IconTableRow\",\r\n\t\"IconTableShare\",\r\n\t\"IconTableShortcut\",\r\n\t\"IconTable\",\r\n\t\"IconTagOff\",\r\n\t\"IconTag\",\r\n\t\"IconTagsOff\",\r\n\t\"IconTags\",\r\n\t\"IconTallymark1\",\r\n\t\"IconTallymark2\",\r\n\t\"IconTallymark3\",\r\n\t\"IconTallymark4\",\r\n\t\"IconTallymarks\",\r\n\t\"IconTank\",\r\n\t\"IconTargetArrow\",\r\n\t\"IconTargetOff\",\r\n\t\"IconTarget\",\r\n\t\"IconTeapot\",\r\n\t\"IconTelescopeOff\",\r\n\t\"IconTelescope\",\r\n\t\"IconTemperatureCelsius\",\r\n\t\"IconTemperatureFahrenheit\",\r\n\t\"IconTemperatureMinus\",\r\n\t\"IconTemperatureOff\",\r\n\t\"IconTemperaturePlus\",\r\n\t\"IconTemperature\",\r\n\t\"IconTemplateOff\",\r\n\t\"IconTemplate\",\r\n\t\"IconTentOff\",\r\n\t\"IconTent\",\r\n\t\"IconTerminal2\",\r\n\t\"IconTerminal\",\r\n\t\"IconTestPipe2\",\r\n\t\"IconTestPipeOff\",\r\n\t\"IconTestPipe\",\r\n\t\"IconTex\",\r\n\t\"IconTextCaption\",\r\n\t\"IconTextColor\",\r\n\t\"IconTextDecrease\",\r\n\t\"IconTextDirectionLtr\",\r\n\t\"IconTextDirectionRtl\",\r\n\t\"IconTextIncrease\",\r\n\t\"IconTextOrientation\",\r\n\t\"IconTextPlus\",\r\n\t\"IconTextRecognition\",\r\n\t\"IconTextResize\",\r\n\t\"IconTextSize\",\r\n\t\"IconTextSpellcheck\",\r\n\t\"IconTextWrapDisabled\",\r\n\t\"IconTextWrap\",\r\n\t\"IconTexture\",\r\n\t\"IconTheater\",\r\n\t\"IconThermometer\",\r\n\t\"IconThumbDownFilled\",\r\n\t\"IconThumbDownOff\",\r\n\t\"IconThumbDown\",\r\n\t\"IconThumbUpFilled\",\r\n\t\"IconThumbUpOff\",\r\n\t\"IconThumbUp\",\r\n\t\"IconTicTac\",\r\n\t\"IconTicketOff\",\r\n\t\"IconTicket\",\r\n\t\"IconTie\",\r\n\t\"IconTilde\",\r\n\t\"IconTiltShiftOff\",\r\n\t\"IconTiltShift\",\r\n\t\"IconTimeDuration0\",\r\n\t\"IconTimeDuration10\",\r\n\t\"IconTimeDuration15\",\r\n\t\"IconTimeDuration30\",\r\n\t\"IconTimeDuration45\",\r\n\t\"IconTimeDuration5\",\r\n\t\"IconTimeDuration60\",\r\n\t\"IconTimeDuration90\",\r\n\t\"IconTimeDurationOff\",\r\n\t\"IconTimelineEventExclamation\",\r\n\t\"IconTimelineEventMinus\",\r\n\t\"IconTimelineEventPlus\",\r\n\t\"IconTimelineEventText\",\r\n\t\"IconTimelineEventX\",\r\n\t\"IconTimelineEvent\",\r\n\t\"IconTimeline\",\r\n\t\"IconTir\",\r\n\t\"IconToggleLeft\",\r\n\t\"IconToggleRight\",\r\n\t\"IconToiletPaperOff\",\r\n\t\"IconToiletPaper\",\r\n\t\"IconToml\",\r\n\t\"IconTool\",\r\n\t\"IconToolsKitchen2Off\",\r\n\t\"IconToolsKitchen2\",\r\n\t\"IconToolsKitchenOff\",\r\n\t\"IconToolsKitchen\",\r\n\t\"IconToolsOff\",\r\n\t\"IconTools\",\r\n\t\"IconTooltip\",\r\n\t\"IconTopologyBus\",\r\n\t\"IconTopologyComplex\",\r\n\t\"IconTopologyFullHierarchy\",\r\n\t\"IconTopologyFull\",\r\n\t\"IconTopologyRing2\",\r\n\t\"IconTopologyRing3\",\r\n\t\"IconTopologyRing\",\r\n\t\"IconTopologyStar2\",\r\n\t\"IconTopologyStar3\",\r\n\t\"IconTopologyStarRing2\",\r\n\t\"IconTopologyStarRing3\",\r\n\t\"IconTopologyStarRing\",\r\n\t\"IconTopologyStar\",\r\n\t\"IconTorii\",\r\n\t\"IconTornado\",\r\n\t\"IconTournament\",\r\n\t\"IconTowerOff\",\r\n\t\"IconTower\",\r\n\t\"IconTrack\",\r\n\t\"IconTractor\",\r\n\t\"IconTrademark\",\r\n\t\"IconTrafficConeOff\",\r\n\t\"IconTrafficCone\",\r\n\t\"IconTrafficLightsOff\",\r\n\t\"IconTrafficLights\",\r\n\t\"IconTrain\",\r\n\t\"IconTransferIn\",\r\n\t\"IconTransferOut\",\r\n\t\"IconTransformFilled\",\r\n\t\"IconTransform\",\r\n\t\"IconTransitionBottom\",\r\n\t\"IconTransitionLeft\",\r\n\t\"IconTransitionRight\",\r\n\t\"IconTransitionTop\",\r\n\t\"IconTrashFilled\",\r\n\t\"IconTrashOff\",\r\n\t\"IconTrashXFilled\",\r\n\t\"IconTrashX\",\r\n\t\"IconTrash\",\r\n\t\"IconTreadmill\",\r\n\t\"IconTree\",\r\n\t\"IconTrees\",\r\n\t\"IconTrekking\",\r\n\t\"IconTrendingDown2\",\r\n\t\"IconTrendingDown3\",\r\n\t\"IconTrendingDown\",\r\n\t\"IconTrendingUp2\",\r\n\t\"IconTrendingUp3\",\r\n\t\"IconTrendingUp\",\r\n\t\"IconTriangleFilled\",\r\n\t\"IconTriangleInvertedFilled\",\r\n\t\"IconTriangleInverted\",\r\n\t\"IconTriangleOff\",\r\n\t\"IconTriangleSquareCircle\",\r\n\t\"IconTriangle\",\r\n\t\"IconTriangles\",\r\n\t\"IconTrident\",\r\n\t\"IconTrolley\",\r\n\t\"IconTrophyFilled\",\r\n\t\"IconTrophyOff\",\r\n\t\"IconTrophy\",\r\n\t\"IconTrowel\",\r\n\t\"IconTruckDelivery\",\r\n\t\"IconTruckLoading\",\r\n\t\"IconTruckOff\",\r\n\t\"IconTruckReturn\",\r\n\t\"IconTruck\",\r\n\t\"IconTxt\",\r\n\t\"IconTypographyOff\",\r\n\t\"IconTypography\",\r\n\t\"IconUfoOff\",\r\n\t\"IconUfo\",\r\n\t\"IconUmbrellaFilled\",\r\n\t\"IconUmbrellaOff\",\r\n\t\"IconUmbrella\",\r\n\t\"IconUnderline\",\r\n\t\"IconUnlink\",\r\n\t\"IconUpload\",\r\n\t\"IconUrgent\",\r\n\t\"IconUsb\",\r\n\t\"IconUserBolt\",\r\n\t\"IconUserCancel\",\r\n\t\"IconUserCheck\",\r\n\t\"IconUserCircle\",\r\n\t\"IconUserCode\",\r\n\t\"IconUserCog\",\r\n\t\"IconUserDollar\",\r\n\t\"IconUserDown\",\r\n\t\"IconUserEdit\",\r\n\t\"IconUserExclamation\",\r\n\t\"IconUserHeart\",\r\n\t\"IconUserMinus\",\r\n\t\"IconUserOff\",\r\n\t\"IconUserPause\",\r\n\t\"IconUserPin\",\r\n\t\"IconUserPlus\",\r\n\t\"IconUserQuestion\",\r\n\t\"IconUserSearch\",\r\n\t\"IconUserShare\",\r\n\t\"IconUserShield\",\r\n\t\"IconUserStar\",\r\n\t\"IconUserUp\",\r\n\t\"IconUserX\",\r\n\t\"IconUser\",\r\n\t\"IconUsersGroup\",\r\n\t\"IconUsersMinus\",\r\n\t\"IconUsersPlus\",\r\n\t\"IconUsers\",\r\n\t\"IconUvIndex\",\r\n\t\"IconUxCircle\",\r\n\t\"IconVaccineBottleOff\",\r\n\t\"IconVaccineBottle\",\r\n\t\"IconVaccineOff\",\r\n\t\"IconVaccine\",\r\n\t\"IconVacuumCleaner\",\r\n\t\"IconVariableMinus\",\r\n\t\"IconVariableOff\",\r\n\t\"IconVariablePlus\",\r\n\t\"IconVariable\",\r\n\t\"IconVectorBezier2\",\r\n\t\"IconVectorBezierArc\",\r\n\t\"IconVectorBezierCircle\",\r\n\t\"IconVectorBezier\",\r\n\t\"IconVectorOff\",\r\n\t\"IconVectorSpline\",\r\n\t\"IconVectorTriangleOff\",\r\n\t\"IconVectorTriangle\",\r\n\t\"IconVector\",\r\n\t\"IconVenus\",\r\n\t\"IconVersionsFilled\",\r\n\t\"IconVersionsOff\",\r\n\t\"IconVersions\",\r\n\t\"IconVideoMinus\",\r\n\t\"IconVideoOff\",\r\n\t\"IconVideoPlus\",\r\n\t\"IconVideo\",\r\n\t\"IconView360Off\",\r\n\t\"IconView360\",\r\n\t\"IconViewfinderOff\",\r\n\t\"IconViewfinder\",\r\n\t\"IconViewportNarrow\",\r\n\t\"IconViewportWide\",\r\n\t\"IconVinyl\",\r\n\t\"IconVipOff\",\r\n\t\"IconVip\",\r\n\t\"IconVirusOff\",\r\n\t\"IconVirusSearch\",\r\n\t\"IconVirus\",\r\n\t\"IconVocabularyOff\",\r\n\t\"IconVocabulary\",\r\n\t\"IconVolcano\",\r\n\t\"IconVolume2\",\r\n\t\"IconVolume3\",\r\n\t\"IconVolumeOff\",\r\n\t\"IconVolume\",\r\n\t\"IconWalk\",\r\n\t\"IconWallOff\",\r\n\t\"IconWall\",\r\n\t\"IconWalletOff\",\r\n\t\"IconWallet\",\r\n\t\"IconWallpaperOff\",\r\n\t\"IconWallpaper\",\r\n\t\"IconWandOff\",\r\n\t\"IconWand\",\r\n\t\"IconWashDry1\",\r\n\t\"IconWashDry2\",\r\n\t\"IconWashDry3\",\r\n\t\"IconWashDryA\",\r\n\t\"IconWashDryDip\",\r\n\t\"IconWashDryF\",\r\n\t\"IconWashDryFlat\",\r\n\t\"IconWashDryHang\",\r\n\t\"IconWashDryOff\",\r\n\t\"IconWashDryP\",\r\n\t\"IconWashDryShade\",\r\n\t\"IconWashDryW\",\r\n\t\"IconWashDry\",\r\n\t\"IconWashDrycleanOff\",\r\n\t\"IconWashDryclean\",\r\n\t\"IconWashEco\",\r\n\t\"IconWashGentle\",\r\n\t\"IconWashHand\",\r\n\t\"IconWashMachine\",\r\n\t\"IconWashOff\",\r\n\t\"IconWashPress\",\r\n\t\"IconWashTemperature1\",\r\n\t\"IconWashTemperature2\",\r\n\t\"IconWashTemperature3\",\r\n\t\"IconWashTemperature4\",\r\n\t\"IconWashTemperature5\",\r\n\t\"IconWashTemperature6\",\r\n\t\"IconWashTumbleDry\",\r\n\t\"IconWashTumbleOff\",\r\n\t\"IconWash\",\r\n\t\"IconWaterpolo\",\r\n\t\"IconWaveSawTool\",\r\n\t\"IconWaveSine\",\r\n\t\"IconWaveSquare\",\r\n\t\"IconWebhookOff\",\r\n\t\"IconWebhook\",\r\n\t\"IconWeight\",\r\n\t\"IconWheelchairOff\",\r\n\t\"IconWheelchair\",\r\n\t\"IconWhirl\",\r\n\t\"IconWifi0\",\r\n\t\"IconWifi1\",\r\n\t\"IconWifi2\",\r\n\t\"IconWifiOff\",\r\n\t\"IconWifi\",\r\n\t\"IconWindOff\",\r\n\t\"IconWind\",\r\n\t\"IconWindmillFilled\",\r\n\t\"IconWindmillOff\",\r\n\t\"IconWindmill\",\r\n\t\"IconWindowMaximize\",\r\n\t\"IconWindowMinimize\",\r\n\t\"IconWindowOff\",\r\n\t\"IconWindow\",\r\n\t\"IconWindsock\",\r\n\t\"IconWiperWash\",\r\n\t\"IconWiper\",\r\n\t\"IconWoman\",\r\n\t\"IconWood\",\r\n\t\"IconWorldBolt\",\r\n\t\"IconWorldCancel\",\r\n\t\"IconWorldCheck\",\r\n\t\"IconWorldCode\",\r\n\t\"IconWorldCog\",\r\n\t\"IconWorldDollar\",\r\n\t\"IconWorldDown\",\r\n\t\"IconWorldDownload\",\r\n\t\"IconWorldExclamation\",\r\n\t\"IconWorldHeart\",\r\n\t\"IconWorldLatitude\",\r\n\t\"IconWorldLongitude\",\r\n\t\"IconWorldMinus\",\r\n\t\"IconWorldOff\",\r\n\t\"IconWorldPause\",\r\n\t\"IconWorldPin\",\r\n\t\"IconWorldPlus\",\r\n\t\"IconWorldQuestion\",\r\n\t\"IconWorldSearch\",\r\n\t\"IconWorldShare\",\r\n\t\"IconWorldStar\",\r\n\t\"IconWorldUp\",\r\n\t\"IconWorldUpload\",\r\n\t\"IconWorldWww\",\r\n\t\"IconWorldX\",\r\n\t\"IconWorld\",\r\n\t\"IconWreckingBall\",\r\n\t\"IconWritingOff\",\r\n\t\"IconWritingSignOff\",\r\n\t\"IconWritingSign\",\r\n\t\"IconWriting\",\r\n\t\"IconX\",\r\n\t\"IconXboxA\",\r\n\t\"IconXboxB\",\r\n\t\"IconXboxX\",\r\n\t\"IconXboxY\",\r\n\t\"IconXd\",\r\n\t\"IconYinYangFilled\",\r\n\t\"IconYinYang\",\r\n\t\"IconYoga\",\r\n\t\"IconZeppelinOff\",\r\n\t\"IconZeppelin\",\r\n\t\"IconZip\",\r\n\t\"IconZodiacAquarius\",\r\n\t\"IconZodiacAries\",\r\n\t\"IconZodiacCancer\",\r\n\t\"IconZodiacCapricorn\",\r\n\t\"IconZodiacGemini\",\r\n\t\"IconZodiacLeo\",\r\n\t\"IconZodiacLibra\",\r\n\t\"IconZodiacPisces\",\r\n\t\"IconZodiacSagittarius\",\r\n\t\"IconZodiacScorpio\",\r\n\t\"IconZodiacTaurus\",\r\n\t\"IconZodiacVirgo\",\r\n\t\"IconZoomCancel\",\r\n\t\"IconZoomCheckFilled\",\r\n\t\"IconZoomCheck\",\r\n\t\"IconZoomCode\",\r\n\t\"IconZoomExclamation\",\r\n\t\"IconZoomFilled\",\r\n\t\"IconZoomInAreaFilled\",\r\n\t\"IconZoomInArea\",\r\n\t\"IconZoomInFilled\",\r\n\t\"IconZoomIn\",\r\n\t\"IconZoomMoney\",\r\n\t\"IconZoomOutArea\",\r\n\t\"IconZoomOutFilled\",\r\n\t\"IconZoomOut\",\r\n\t\"IconZoomPan\",\r\n\t\"IconZoomQuestion\",\r\n\t\"IconZoomReplace\",\r\n\t\"IconZoomReset\",\r\n\t\"IconZzzOff\",\r\n\t\"IconZzz\"\r\n] as const\r\n\r\nexport type TablerIconName = (typeof tablerIconNames)[number]\r\n", "import React from \"react\"\r\nimport { TablerIconName } from \"./tablerIconNames\"\r\nimport * as TablerIcons from \"@tabler/icons-react\"\r\nimport { ClassNameWithAutocomplete } from \"@/utils/types\"\r\n\r\nexport interface ITablerIconProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {\r\n\ticon: TablerIconName\r\n\tclassName?: ClassNameWithAutocomplete\r\n}\r\n\r\nconst TablerIcon: React.FC<ITablerIconProps> = ({\r\n\ticon,\r\n\tclassName = \"w-6 h-6 text-gray-600\"\r\n}: ITablerIconProps): JSX.Element => {\r\n\tconst Icon = TablerIcons[icon]\r\n\treturn (\r\n\t\t<i>\r\n\t\t\t<Icon className={className} />\r\n\t\t</i>\r\n\t)\r\n}\r\nexport default TablerIcon\r\n", "import { DynamicIcon } from \"./DynamicIcon\"\r\nimport { default as cn } from \"classnames\"\r\nimport { IDynamicIconProps } from \"./DynamicIcon\"\r\n\r\nexport interface IIconWithShadowProps extends IDynamicIconProps {}\r\n\r\nconst IconWithShadow: React.FC<IIconWithShadowProps> = (props) => {\r\n\treturn (\r\n\t\t<div className=\"flex flex-col items-center justify-center \">\r\n\t\t\t<DynamicIcon {...{ ...props, className: cn(\"h-12 w-12 text-gray-400\") }} outline />\r\n\t\t\t<div className={cn(\"mt-2 h-2 w-24 bg-gray-100\")} style={{ borderRadius: \"40%\" }} />\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default IconWithShadow\r\n", "import Badge, { IBadgeProps } from \"./Badge\"\r\nexport default Badge\r\nexport type { IBadgeProps }\r\n", "import Loader from \"stories/atoms/loaders/Loader\"\r\nimport { default as cn } from \"classnames\"\r\nimport React, { HTMLAttributeAnchorTarget, forwardRef } from \"react\"\r\nimport { DynamicIcon, UnifiedIconName, IDynamicIconProps } from \"../../icons\"\r\n\r\n// import Loader from \"../loaders/loader/Loader\"\r\n\r\nexport type BTNActionType = \"primary\" | \"secondary\" | \"alternative\" | \"danger\"\r\n\r\nexport interface IButtonProps\r\n\textends Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, \"ref\"> {\r\n\t/** Is the button a Primary CTA, alternative or danger button? */\r\n\tactionType?: BTNActionType\r\n\t/** How lg should the button be? - Defaults to 'base'. */\r\n\tsize?: \"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\"\r\n\t/** The Button's text content. */\r\n\tlabel: string\r\n\t/** The Icon to be displayed inside the button. */\r\n\ticon?: IDynamicIconProps | UnifiedIconName\r\n\t/** Does the button width grow to fill it's container? */\r\n\tfullWidth?: boolean\r\n\t/** Optionally render as anchor tag */\r\n\tasLink?: {\r\n\t\thref: string\r\n\t\ttarget: HTMLAttributeAnchorTarget\r\n\t\ttitle?: string\r\n\t}\r\n\t/** The placement of the icon relative to the text content. */\r\n\ticonPosition?: \"trailing\" | \"leading\"\r\n\t/** Use an custom svg element */\r\n\tCustomSVGIcon?: JSX.Element\r\n\t/** Is the associated content loading? */\r\n\tisLoading?: boolean\r\n\tclassName?: string\r\n\ticonObj?: React.ReactNode\r\n}\r\n/**\r\n * Primary UI component for user interaction\r\n */\r\nconst _Button = (\r\n\t{\r\n\t\tactionType = \"primary\",\r\n\t\tsize = \"sm\",\r\n\t\tlabel,\r\n\t\ticon,\r\n\t\ticonObj,\r\n\t\tCustomSVGIcon,\r\n\t\tfullWidth = false,\r\n\t\ticonPosition = \"leading\",\r\n\t\tasLink,\r\n\t\tisLoading = false,\r\n\t\tclassName,\r\n\t\t...props\r\n\t}: IButtonProps,\r\n\tref: React.LegacyRef<HTMLButtonElement>\r\n) => {\r\n\tconst iconStyles = cn(\r\n\t\t{ \"text-white h-5 w-5\": actionType === \"primary\" || actionType === \"danger\" },\r\n\t\t{ \"text-purple-700 h-5 w-5 \": actionType === \"secondary\" },\r\n\t\t{ \"text-gray-700 h-5 w-5\": actionType === \"alternative\" }\r\n\t)\r\n\tconst loaderColors = cn(\r\n\t\t{ \"border-r-white\": actionType === \"primary\" },\r\n\t\t{ \"border-purple-200 border-r-purple-700\": actionType === \"secondary\" },\r\n\t\t{ \"border-gray-200 border-r-gray-700\": actionType === \"alternative\" },\r\n\t\t{ \"border-red-800 border-r-white\": actionType === \"danger\" }\r\n\t)\r\n\tconst loaderSize = cn({ \"h-4 w-4\": size === \"sm\" }, { \"h-5 w-5\": size === \"md\" }, { \"h-6 w-6 \": size === \"lg\" })\r\n\r\n\treturn asLink ? (\r\n\t\t//@ts-ignore\r\n\t\t<a\r\n\t\t\t{...{\r\n\t\t\t\thref: asLink.href,\r\n\t\t\t\ttarget: asLink.target,\r\n\t\t\t\ttitle: asLink.title,\r\n\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\"inline-flex items-center justify-center gap-x-2 font-medium rounded-[3px] !ring-offset-white outline-none focus-visible:ring-2 focus-visible:ring-purple-600 focus-visible:ring-offset-2 focus-within:ring-2 focus-within:ring-purple-600 focus-within:ring-offset-2 focus:ring-2 focus:ring-purple-600 focus:ring-offset-2 active:ring-2 active:ring-purple-600 active:ring-offset-2 transition-all\",\r\n\t\t\t\t\t{ \"w-full\": fullWidth },\r\n\t\t\t\t\t{ \"px-[11px] py-[7px] text-xs\": size === \"xs\" },\r\n\t\t\t\t\t{ \"px-[13px] py-[9px] text-sm\": size === \"sm\" },\r\n\t\t\t\t\t{ \"px-[17px] py-[9px] text-sm\": size === \"md\" },\r\n\t\t\t\t\t{ \"px-[17px] py-[9px] text-base\": size === \"lg\" },\r\n\t\t\t\t\t{ \"px-[25px] py-[13px] text-base\": size === \"xl\" },\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"bg-purple-600 text-white hover:border-purple-700 hover:bg-purple-700 disabled:bg-purple-400 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\t\tactionType === \"primary\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\" bg-purple-50 text-purple-700 hover:bg-purple-200 focus-within:bg-purple-100 focus-visible:bg-purple-100 focus:bg-purple-100 active:bg-purple-100 disabled:bg-purple-50 disabled:text-purple-300 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\t\tactionType === \"secondary\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"border-gray-300 bg-white border text-gray-700 hover:bg-gray-50 focus-visible:!border-gray-300 focus-within:!border-gray-300 focus:!border-gray-300 active:!border-gray-300 disabled:bg-gray-50 disabled:text-gray-300 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\t\tactionType === \"alternative\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\" bg-red-600 text-white hover:bg-red-700 <focus-visible:!></focus-visible:!>ring-red-500 focus:!ring-red-500 active:!ring-red-500 focus-within:!ring-red-500 disabled:bg-red-400 disabled:text-gray-50 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\t\tactionType === \"danger\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\tclassName ? className : \"\"\r\n\t\t\t\t),\r\n\t\t\t\tonClick: props.onClick\r\n\t\t\t}}\r\n\t\t>\r\n\t\t\t{\" \"}\r\n\t\t\t{CustomSVGIcon &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<i>{CustomSVGIcon}</i>\r\n\t\t\t\t))}\r\n\t\t\t{iconObj &&\r\n\t\t\t\ticonPosition === \"leading\" &&\r\n\t\t\t\t(!isLoading ? (\r\n\t\t\t\t\t<>{iconObj}</>\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t))}\r\n\t\t\t{icon &&\r\n\t\t\t\ticonPosition === \"leading\" &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : typeof icon === \"string\" ? (\r\n\t\t\t\t\t<DynamicIcon {...{ icon: icon, className: iconStyles }} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<DynamicIcon {...{ ...icon, className: iconStyles }} />\r\n\t\t\t\t))}\r\n\t\t\t{!icon && !CustomSVGIcon && isLoading && (\r\n\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t)}\r\n\t\t\t{label}\r\n\t\t\t{icon &&\r\n\t\t\t\ticonPosition === \"trailing\" &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : typeof icon === \"string\" ? (\r\n\t\t\t\t\t<DynamicIcon {...{ icon: icon, className: iconStyles }} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<DynamicIcon {...{ ...icon, className: iconStyles }} />\r\n\t\t\t\t))}\r\n\t\t\t{iconObj &&\r\n\t\t\t\ticonPosition === \"trailing\" &&\r\n\t\t\t\t(!isLoading ? (\r\n\t\t\t\t\t<>{iconObj}</>\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t))}\r\n\t\t</a>\r\n\t) : (\r\n\t\t<button\r\n\t\t\ttype=\"button\"\r\n\t\t\tclassName={cn(\r\n\t\t\t\t\"inline-flex items-center justify-center gap-x-2 font-medium rounded-[3px] !ring-offset-white outline-none focus-visible:ring-2 focus-visible:ring-purple-600 focus-visible:ring-offset-2 focus-within:ring-2 focus-within:ring-purple-600 focus-within:ring-offset-2 focus:ring-2 focus:ring-purple-600 focus:ring-offset-2 active:ring-2 active:ring-purple-600 active:ring-offset-2 transition-all\",\r\n\t\t\t\t{ \"w-full\": fullWidth },\r\n\t\t\t\t{ \"px-[11px] py-[7px] text-xs\": size === \"xs\" },\r\n\t\t\t\t{ \"px-[13px] py-[9px] text-sm\": size === \"sm\" },\r\n\t\t\t\t{ \"px-[17px] py-[9px] text-sm\": size === \"md\" },\r\n\t\t\t\t{ \"px-[17px] py-[9px] text-base\": size === \"lg\" },\r\n\t\t\t\t{ \"px-[25px] py-[13px] text-base\": size === \"xl\" },\r\n\t\t\t\t{\r\n\t\t\t\t\t\"bg-purple-600 text-white hover:border-purple-700 hover:bg-purple-700 disabled:bg-purple-400 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\tactionType === \"primary\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\" bg-purple-50 text-purple-700 hover:bg-purple-200 focus-within:bg-purple-100 focus-visible:bg-purple-100 focus:bg-purple-100 active:bg-purple-100 disabled:bg-purple-50 disabled:text-purple-300 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\tactionType === \"secondary\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"border-gray-300 bg-white border text-gray-700 hover:bg-gray-50 focus-visible:!border-gray-300 focus-within:!border-gray-300 focus:!border-gray-300 active:!border-gray-300 disabled:bg-gray-50 disabled:text-gray-300 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\tactionType === \"alternative\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\" bg-red-600 text-white hover:bg-red-700 <focus-visible:!></focus-visible:!>ring-red-500 focus:!ring-red-500 active:!ring-red-500 focus-within:!ring-red-500 disabled:bg-red-400 disabled:text-gray-50 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\tactionType === \"danger\"\r\n\t\t\t\t},\r\n\t\t\t\tclassName ? className : \"\"\r\n\t\t\t)}\r\n\t\t\tref={ref}\r\n\t\t\t{...props}\r\n\t\t>\r\n\t\t\t{CustomSVGIcon &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<i>{CustomSVGIcon}</i>\r\n\t\t\t\t))}\r\n\t\t\t{iconObj &&\r\n\t\t\t\ticonPosition === \"leading\" &&\r\n\t\t\t\t(!isLoading ? (\r\n\t\t\t\t\t<>{iconObj}</>\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t))}\r\n\r\n\t\t\t{icon &&\r\n\t\t\t\ticonPosition === \"leading\" &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : typeof icon === \"string\" ? (\r\n\t\t\t\t\t<DynamicIcon {...{ icon: icon, className: iconStyles }} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<DynamicIcon {...{ ...icon, className: iconStyles }} />\r\n\t\t\t\t))}\r\n\r\n\t\t\t{!icon && !CustomSVGIcon && isLoading && (\r\n\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t)}\r\n\t\t\t{label}\r\n\t\t\t{icon &&\r\n\t\t\t\ticonPosition === \"trailing\" &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : typeof icon === \"string\" ? (\r\n\t\t\t\t\t<DynamicIcon {...{ icon: icon, className: iconStyles }} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<DynamicIcon {...{ ...icon, className: iconStyles }} />\r\n\t\t\t\t))}\r\n\t\t\t{iconObj &&\r\n\t\t\t\ticonPosition === \"trailing\" &&\r\n\t\t\t\t(!isLoading ? (\r\n\t\t\t\t\t<>{iconObj}</>\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t))}\r\n\t\t</button>\r\n\t)\r\n}\r\n\r\nconst Button = forwardRef<HTMLButtonElement, IButtonProps>(_Button)\r\n\r\nexport default Button\r\n", "import Button, { IButtonProps, BTNActionType } from \"./Button\"\r\nexport type { IButtonProps, BTNActionType }\r\nexport default Button\r\n", "import { default as cn } from \"classnames\"\r\nimport { HTMLAttributeAnchorTarget } from \"react\"\r\nimport { BTNActionType, IButtonProps } from \"../Button/Button\"\r\nimport { UnifiedIconName } from \"../../icons/DynamicIcon\"\r\n\r\n/**\r\n * Capsule Style Button\r\n */\r\nexport interface ICapsuleProps\r\n\textends React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {\r\n\t/** Is the button a Primary CTA, alternative or danger button? */\r\n\tactionType: BTNActionType\r\n\t/** How lg should the button be? - Defaults to 'base'. */\r\n\tsize?: \"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\"\r\n\t/** The Button's text content. */\r\n\tlabel: string\r\n\t/** Does the button width grow to fill it's container? */\r\n\tfullWidth?: boolean\r\n\t/** Optionally render as anchor tag */\r\n\tasLink?: {\r\n\t\thref: string\r\n\t\ttarget: HTMLAttributeAnchorTarget\r\n\t\ttitle?: string\r\n\t}\r\n\t/** Is the associated content loading? */\r\n\tisLoading?: boolean\r\n\t/**Optional Classname String*/\r\n\tclassName?: string\r\n}\r\nconst Capsule = ({\r\n\tactionType = \"primary\",\r\n\tsize = \"sm\",\r\n\tlabel,\r\n\tfullWidth = false,\r\n\tasLink,\r\n\tisLoading = false,\r\n\tclassName,\r\n\t...props\r\n}: ICapsuleProps) => {\r\n\tconst iconStyles = cn(\r\n\t\t{ \"text-white\": actionType === \"primary\" || actionType === \"danger\" },\r\n\t\t{ \"text-purple-700\": actionType === \"secondary\" },\r\n\t\t{ \"text-gray-700\": actionType === \"alternative\" }\r\n\t)\r\n\tconst loaderColors = cn(\r\n\t\t{ \"border-r-white\": actionType === \"primary\" },\r\n\t\t{ \"border-purple-200 border-r-purple-700\": actionType === \"secondary\" },\r\n\t\t{ \"border-gray-200 border-r-gray-700\": actionType === \"alternative\" },\r\n\t\t{ \"border-red-800 border-r-white\": actionType === \"danger\" }\r\n\t)\r\n\tconst loaderSize = cn({ \"h-4 w-4\": size === \"sm\" }, { \"h-5 w-5\": size === \"md\" }, { \"h-6 w-6 \": size === \"lg\" })\r\n\r\n\treturn (\r\n\t\t<button\r\n\t\t\ttype=\"button\"\r\n\t\t\tclassName={cn(\r\n\t\t\t\t\"inline-flex items-center justify-center gap-x-2 text-sm font-medium p-2 !ring-offset-white outline-none focus-visible:ring-2 focus-visible:ring-purple-600 focus-visible:ring-offset-2 focus-within:ring-2 focus-within:ring-purple-600 focus-within:ring-offset-2 focus:ring-2 focus:ring-purple-600 focus:ring-offset-2 active:ring-2 active:ring-purple-600 active:ring-offset-2 transition-all\",\r\n\t\t\t\t{ \"w-full\": fullWidth },\r\n\t\t\t\t{ \"px-[11px] py-[7px] text-xs rounded-[15px]\": size === \"xs\" },\r\n\t\t\t\t{ \"px-[15px] py-[9px] text-sm rounded-[17px]\": size === \"sm\" },\r\n\t\t\t\t{ \"px-[17px] py-[9px] text-sm rounded-[19px]\": size === \"md\" },\r\n\t\t\t\t{ \"px-[17px] py-[9px] text-base rounded-[21px]\": size === \"lg\" },\r\n\t\t\t\t{ \"px-[25px] py-[13px] text-base rounded-[25px]\": size === \"xl\" },\r\n\t\t\t\t{\r\n\t\t\t\t\t\"bg-purple-600 text-white hover:border-purple-700 hover:bg-purple-700 \": actionType === \"primary\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\" bg-purple-50 text-purple-700 hover:bg-purple-200 focus-within:bg-purple-100 focus-visible:bg-purple-100 focus:bg-purple-100 active:bg-purple-100\":\r\n\t\t\t\t\t\tactionType === \"secondary\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"border-gray-300 bg-white border text-gray-700 hover:bg-gray-50 focus-visible:!border-gray-300 focus-within:!border-gray-300 focus:!border-gray-300 active:!border-gray-300\":\r\n\t\t\t\t\t\tactionType === \"alternative\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\" bg-red-600 text-white hover:bg-red-700 <focus-visible:!></focus-visible:!>ring-red-500 focus:!ring-red-500 active:!ring-red-500 focus-within:!ring-red-500 \":\r\n\t\t\t\t\t\tactionType === \"danger\"\r\n\t\t\t\t},\r\n\t\t\t\tclassName ? className : \"\"\r\n\t\t\t)}\r\n\t\t\t{...props}\r\n\t\t>\r\n\t\t\t{label}\r\n\t\t</button>\r\n\t)\r\n}\r\n\r\nexport default Capsule\r\n", "import Capsule, { ICapsuleProps } from \"./Capsule\"\r\nexport default Capsule\r\nexport type { ICapsuleProps }\r\n", "import React from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport interface ILoaderProps {\r\n\tclassName?: string\r\n}\r\nconst Loader: React.FC<ILoaderProps> = ({ className }) => {\r\n\treturn (\r\n\t\t<>\r\n\t\t\t<i\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"rounded-full w-16 h-16 inline-block border-8 animate-spin m-auto\",\r\n\t\t\t\t\tclassName ? className : \"border-purple-700 border-r-gray-200\"\r\n\t\t\t\t)}\r\n\t\t\t\trole=\"status\"\r\n\t\t\t/>\r\n\t\t</>\r\n\t)\r\n}\r\n\r\nexport default Loader\r\n", "import React, { useMemo } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nexport interface IRadialProgressProps extends React.PropsWithChildren {\r\n\t/** Percentage value to display */\r\n\tinputValue: number\r\n\t/** Radius for the circle - Max value of 100 */\r\n\tradius: number\r\n\t/** Additional classnames */\r\n\tclassName?: string\r\n}\r\n\r\nconst RadialProgress: React.FC<IRadialProgressProps> = ({\r\n inputValue,\r\n radius,\r\n children,\r\n className,\r\n}) => {\r\n const r = radius / 2\r\n\r\n if (inputValue < 0) {\r\n inputValue = 0\r\n }\r\n if (inputValue > 100) {\r\n inputValue = 100\r\n }\r\n if (radius < 0) {\r\n radius = 0\r\n }\r\n if (radius > 100) {\r\n radius = 100\r\n }\r\n const drawPercentage = useMemo(() => {\r\n const roundCircum = Math.round(2 * r * Math.PI)\r\n return (inputValue * roundCircum) / 50\r\n }, [inputValue, r])\r\n\r\n const xyPos = (radius + 2) * -1\r\n const viewPortXY = (radius + 2) * 2\r\n return (\r\n <div\r\n className={cn(`overflow-visible`, className && className)}\r\n style={{ height: `${viewPortXY}px`, width: `${viewPortXY}px` }}\r\n >\r\n <svg\r\n viewBox={`${xyPos} ${xyPos} ${viewPortXY} ${viewPortXY}`}\r\n data-percent={drawPercentage}\r\n fill=\"none\"\r\n >\r\n <circle\r\n className=\"-rotate-90 stroke-gray-200 stroke-1\"\r\n cx={0}\r\n cy={0}\r\n r={radius}\r\n ></circle>\r\n <circle\r\n strokeDasharray={`${drawPercentage} 999`}\r\n className=\"m-1 -rotate-90 stroke-purple-600 stroke-1 transition-all\"\r\n cx={0}\r\n cy={0}\r\n r={radius}\r\n ></circle>\r\n </svg>\r\n <div\r\n className={cn(\r\n `h-[${viewPortXY}px] w-[${viewPortXY}px] absolute inset-0 flex items-center justify-center overflow-hidden `\r\n )}\r\n >\r\n {children}\r\n </div>\r\n </div>\r\n )\r\n}\r\n\r\nexport default RadialProgress\r\n", "import RadialProgress, { IRadialProgressProps } from \"./RadialProgress\"\r\nexport default RadialProgress\r\nexport type { IRadialProgressProps }\r\n", "import React, { FC } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport InputLabel from \"@/stories/molecules/inputs/InputLabel\"\r\nimport { useId } from \"@/utils/useId\"\r\n\r\nexport interface ICheckboxProps {\r\n\t/** Checkbox label */\r\n\tlabel: string\r\n\t/** Checkbox ID */\r\n\tid?: string\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** value */\r\n\tvalue?: string\r\n\t/** Check state */\r\n\tisChecked?: boolean\r\n\t/** If field is required */\r\n\tisRequired?: boolean\r\n\t/** Error state */\r\n\tisError?: boolean\r\n\t/** Message or description */\r\n\tmessage?: string\r\n\t/** Callback on input change */\r\n\tonChange?(value: string, isChecked: boolean): void\r\n\t/** Has a border around the checkbox and label */\r\n\thasBorder?: boolean\r\n\t/** any arbitrary classNames to add to the wrapper */\r\n\tclassName?: string\r\n}\r\n\r\n/** Comment */\r\nconst Checkbox: FC<ICheckboxProps> = ({\r\n\tlabel,\r\n\tid,\r\n\tisDisabled,\r\n\tisChecked,\r\n\tisRequired,\r\n\tisError,\r\n\tmessage,\r\n\tvalue,\r\n\tonChange,\r\n\thasBorder,\r\n\tclassName,\r\n\t...props\r\n}: ICheckboxProps) => {\r\n\tconst uniqueID = useId()\r\n\tif (!id) id = `cb-${uniqueID}`\r\n\r\n\tconst checkboxStyles = cn(\r\n\t\t\"rounded-sm border-gray-300 text-sm font-normal leading-5 text-purple-600 focus:ring-purple-600\",\r\n\t\t{ \"border-red-500 shadow-none\": isError }\r\n\t)\r\n\tconst wrapperStyles = cn(\r\n\t\t\"relative flex items-center min-h-[38px]\",\r\n\t\t{ \"opacity-50\": isDisabled },\r\n\t\t{ \"rounded-sm border border-1 px-3 border-gray-200\": hasBorder },\r\n\t\t{ \"py-3\": hasBorder && message },\r\n\t\tclassName\r\n\t)\r\n\r\n\tconst handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {\r\n\t\tconst targetValue = e.target.value\r\n\t\tconst targetChecked = e.target.checked\r\n\t\ttypeof onChange === \"function\" && onChange(targetValue, targetChecked)\r\n\t}\r\n\r\n\treturn (\r\n\t\t<div className={wrapperStyles}>\r\n\t\t\t<div className=\"flex items-center\">\r\n\t\t\t\t<input\r\n\t\t\t\t\tid={id}\r\n\t\t\t\t\taria-describedby={`${id}-description`}\r\n\t\t\t\t\tname={id}\r\n\t\t\t\t\tvalue={value}\r\n\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\tclassName={checkboxStyles}\r\n\t\t\t\t\tdisabled={isDisabled}\r\n\t\t\t\t\tchecked={isChecked}\r\n\t\t\t\t\tonChange={(e) => {\r\n\t\t\t\t\t\thandleChange(e)\r\n\t\t\t\t\t}}\r\n\t\t\t\t\t{...props}\r\n\t\t\t\t/>\r\n\t\t\t</div>\r\n\t\t\t<div className=\"ml-3 text-sm \">\r\n\t\t\t\t<label htmlFor={id} className=\"font-medium text-gray-700\">\r\n\t\t\t\t\t<InputLabel label={label} isRequired={isRequired} id={id} />\r\n\t\t\t\t</label>\r\n\t\t\t\t{message && (\r\n\t\t\t\t\t<p id={`${id}-description`} className=\"text-gray-500\">\r\n\t\t\t\t\t\t{message}\r\n\t\t\t\t\t</p>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\nexport default Checkbox\r\n", "import React, { FC } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport interface IInputLabelProps {\r\n\t/** Prop comment */\r\n\tisPlaceholder?: boolean\r\n\tid: string\r\n\tisRequired?: boolean\r\n\tisDisabled?: boolean\r\n\tisError?: boolean\r\n\tisActive?: boolean\r\n\tisFocused?: boolean\r\n\tlabel?: string\r\n}\r\n\r\n/** Comment */\r\nconst InputLabel: FC<IInputLabelProps> = ({\r\n\tisPlaceholder = false,\r\n\tid,\r\n\tisRequired,\r\n\tisDisabled,\r\n\tisActive,\r\n\tisError,\r\n\tlabel\r\n}: IInputLabelProps) => {\r\n\tconst labelStyles = cn(\r\n\t\t\"z-[2]\",\r\n\t\t{ \"inline-block font-medium transition-all text-sm text-gray-700 mb-1\": !isPlaceholder },\r\n\t\t{ \"inline-block font-medium ml-2 relative transition-all\": isPlaceholder },\r\n\t\t{ \"text-sm text-gray-400 px-2 top-8\": isPlaceholder && !isActive },\r\n\t\t{ \"text-xs text-gray-700 px-1 top-[10px] bg-white\": isPlaceholder && isActive },\r\n\t\t{ \"text-xs text-red-500 px-1 top-[10px] bg-white\": isPlaceholder && isError },\r\n\t\t{ \"text-red-500 bg-white\": !isPlaceholder && isError },\r\n\t\t{ \"text-gray-700/[.5]\": isDisabled }\r\n\t)\r\n\tif (!label) return null\r\n\treturn (\r\n\t\t<label htmlFor={id} className={labelStyles}>\r\n\t\t\t{label}\r\n\t\t\t{isRequired && <span className=\"text-red-500\"> *</span>}\r\n\t\t</label>\r\n\t)\r\n}\r\n\r\nexport default InputLabel\r\n", "import InputLabel, { IInputLabelProps } from \"./InputLabel\"\r\nexport type { IInputLabelProps }\r\nexport default InputLabel\r\n", "import { useLayoutEffect, useState } from \"react\"\r\n\r\nlet id = 0\r\nfunction generateId() {\r\n\treturn ++id\r\n}\r\n\r\nexport const useId = () => {\r\n\tconst [id, setId] = useState(generateId)\r\n\r\n\tuseLayoutEffect(() => {\r\n\t\tif (id === null) setId(generateId())\r\n\t}, [id])\r\n\r\n\treturn id != null ? \"\" + id : undefined\r\n}\r\n", "import Checkbox, { ICheckboxProps } from \"./Checkbox\"\r\nexport type { ICheckboxProps }\r\nexport default Checkbox\r\n", "import React, { useState, useEffect } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport { Combobox as HeadlessUICombobox } from \"@headlessui/react\"\r\nimport InputLabel from \"@/stories/molecules/inputs/InputLabel\"\r\nimport { DynamicIcon } from \"@/stories/atoms/icons\"\r\n\r\nexport interface IComboboxProps<T extends Record<string, unknown>> {\r\n\t/** Label */\r\n\tlabel?: string\r\n\t/** ID */\r\n\tid: string\r\n\t/** Array of items to display */\r\n\titems: T[]\r\n\t/** the item property to use as the key */\r\n\tkeyProperty: string\r\n\r\n\t/** the item property to use as the display */\r\n\tdisplayProperty: string\r\n\t/** Placeholder */\r\n\tplaceholder?: string\r\n\t/** Callback to trigger on change */\r\n\tonChange?(value: T | undefined): void\r\n\t/** Select disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Select error state */\r\n\tisError?: boolean\r\n\t/** Select required state */\r\n\tisRequired?: boolean\r\n\t/** Message shown under field */\r\n\tmessage?: string\r\n\r\n\tdisplayValue?: string\r\n\r\n\t/**\r\n\t * Whether this item is nullable or not.\r\n\t *\r\n\t * @type {boolean}\r\n\t * @memberof ComboboxProps\r\n\t */\r\n\tnullable?: boolean\r\n}\r\n\r\nfunction classNames(...classes: string[]) {\r\n\treturn classes.filter(Boolean).join(\" \")\r\n}\r\n\r\nconst Combobox = <T extends Record<string, unknown>>({\r\n\tlabel,\r\n\titems,\r\n\tdisplayProperty,\r\n\tdisplayValue,\r\n\tkeyProperty,\r\n\tonChange,\r\n\tplaceholder,\r\n\tmessage,\r\n\tisDisabled,\r\n\tisError,\r\n\tisRequired,\r\n\tid,\r\n\tnullable\r\n}: IComboboxProps<T>) => {\r\n\tconst [query, setQuery] = useState<string>(\"\")\r\n\tconst [selectedItem, setSelectedItem] = useState<T | undefined>()\r\n\r\n\tconst onChangeValue = (value: T | undefined) => {\r\n\t\tif (value && selectedItem && value[keyProperty] === selectedItem[keyProperty]) {\r\n\t\t\tsetSelectedItem(undefined)\r\n\t\t} else {\r\n\t\t\tsetSelectedItem(value)\r\n\t\t}\r\n\t}\r\n\r\n\tuseEffect(() => {\r\n\t\tif (displayValue) {\r\n\t\t\tconst dv = items.find((i) => i[displayProperty] === displayValue)\r\n\t\t\tsetSelectedItem(dv)\r\n\t\t}\r\n\t}, [displayValue])\r\n\r\n\tuseEffect(() => {\r\n\t\ttypeof onChange === \"function\" && onChange(selectedItem)\r\n\t}, [selectedItem])\r\n\r\n\tconst filteredItems =\r\n\t\tquery === \"\"\r\n\t\t\t? items\r\n\t\t\t: items.filter((item) => {\r\n\t\t\t\t\treturn `${item[displayProperty]}`.toLowerCase().includes(query.toLowerCase())\r\n\t\t\t })\r\n\tconst labelStyles = cn(\"block text-sm font-medium text-gray-700\")\r\n\tconst buttonStyles = cn(\"absolute inset-y-0 right-0 flex items-center rounded-r px-2 focus:outline-none\")\r\n\tconst optionStyles = cn(\r\n\t\t\"absolute z-30 mt-1 max-h-60 w-full overflow-auto rounded bg-white py-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm\"\r\n\t)\r\n\treturn (\r\n\t\t<HeadlessUICombobox\r\n\t\t\tas=\"div\"\r\n\t\t\tvalue={selectedItem}\r\n\t\t\tonChange={(e: T | undefined) => onChangeValue(e)}\r\n\t\t\tdisabled={isDisabled}\r\n\t\t\tnullable={nullable ? undefined : false}\r\n\t\t>\r\n\t\t\t{label && (\r\n\t\t\t\t<HeadlessUICombobox.Label className={labelStyles}>\r\n\t\t\t\t\t<InputLabel\r\n\t\t\t\t\t\tisPlaceholder\r\n\t\t\t\t\t\tisActive\r\n\t\t\t\t\t\tlabel={label}\r\n\t\t\t\t\t\tisRequired={isRequired}\r\n\t\t\t\t\t\tid={id}\r\n\t\t\t\t\t\tisError={isError}\r\n\t\t\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\t\t/>\r\n\t\t\t\t</HeadlessUICombobox.Label>\r\n\t\t\t)}\r\n\t\t\t<div className=\"relative\">\r\n\t\t\t\t<div className=\"relative\">\r\n\t\t\t\t\t<HeadlessUICombobox.Input\r\n\t\t\t\t\t\tclassName={`w-full rounded border border-gray-300 focus:border-purple-500 focus:outline-none focus:ring-1 focus:ring-purple-500 sm:text-sm ${\r\n\t\t\t\t\t\t\tisError ? \"border-red-500\" : \"\"\r\n\t\t\t\t\t\t}`}\r\n\t\t\t\t\t\tonChange={(event) => setQuery(event.target.value)}\r\n\t\t\t\t\t\tdisplayValue={(item: Record<string, unknown>) => `${item ? item[displayProperty] : \"\"}`}\r\n\t\t\t\t\t\tplaceholder={placeholder}\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t{selectedItem && nullable && (\r\n\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\tclassName=\"absolute right-8 top-[1px] h-9 w-5 text-gray-400 hover:text-gray-500\"\r\n\t\t\t\t\t\t\tonClick={() => setSelectedItem(undefined)}\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<DynamicIcon icon=\"IconX\" className=\"h-4 w-4 \" aria-hidden=\"true\" />\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t)}\r\n\t\t\t\t</div>\r\n\t\t\t\t<HeadlessUICombobox.Button className={buttonStyles}>\r\n\t\t\t\t\t<DynamicIcon icon=\"IconSelector\" className=\"h-5 w-5 text-gray-400\" aria-hidden=\"true\" />\r\n\t\t\t\t</HeadlessUICombobox.Button>\r\n\r\n\t\t\t\t{filteredItems.length > 0 && (\r\n\t\t\t\t\t<HeadlessUICombobox.Options className={optionStyles}>\r\n\t\t\t\t\t\t{filteredItems.map((item, index) => (\r\n\t\t\t\t\t\t\t<HeadlessUICombobox.Option\r\n\t\t\t\t\t\t\t\tkey={`${item[keyProperty]}-${index}`}\r\n\t\t\t\t\t\t\t\tvalue={item}\r\n\t\t\t\t\t\t\t\tclassName={({ active }) =>\r\n\t\t\t\t\t\t\t\t\tclassNames(\r\n\t\t\t\t\t\t\t\t\t\t\"relative cursor-default select-none py-2 pl-3 pr-9\",\r\n\t\t\t\t\t\t\t\t\t\tactive ? \"bg-purple-600 text-white\" : \"text-gray-900\"\r\n\t\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t{({ active, selected }) => (\r\n\t\t\t\t\t\t\t\t\t<>\r\n\t\t\t\t\t\t\t\t\t\t<span className={classNames(\"block truncate\", selected ? \"font-semibold\" : \"\")}>\r\n\t\t\t\t\t\t\t\t\t\t\t{`${item[displayProperty]}`}\r\n\t\t\t\t\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t\t\t\t\t\t\t{selected && (\r\n\t\t\t\t\t\t\t\t\t\t\t<span\r\n\t\t\t\t\t\t\t\t\t\t\t\tclassName={classNames(\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"absolute inset-y-0 right-0 flex items-center pr-4\",\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tactive ? \"text-white\" : \"text-purple-600\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<DynamicIcon icon=\"IconCheck\" className=\"h-5 w-5\" aria-hidden=\"true\" />\r\n\t\t\t\t\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t\t\t\t</>\r\n\t\t\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t\t</HeadlessUICombobox.Option>\r\n\t\t\t\t\t\t))}\r\n\t\t\t\t\t</HeadlessUICombobox.Options>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t\t<div className=\"grow\">\r\n\t\t\t\t{message && (\r\n\t\t\t\t\t<span className={`mt-1 block text-sm ${isError ? `text-red-500` : `text-gray-500`}`}>\r\n\t\t\t\t\t\t{message}\r\n\t\t\t\t\t</span>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</HeadlessUICombobox>\r\n\t)\r\n}\r\nexport default Combobox\r\n", "import Combobox, { IComboboxProps } from \"./ComboBox\"\r\nexport type { IComboboxProps }\r\nexport default Combobox\r\n", "import React, { forwardRef } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport type AcceptedInputTypes =\r\n\t| \"date\"\r\n\t| \"datetime-local\"\r\n\t| \"email\"\r\n\t| \"month\"\r\n\t| \"number\"\r\n\t| \"password\"\r\n\t| \"search\"\r\n\t| \"submit\"\r\n\t| \"tel\"\r\n\t| \"text\"\r\n\t| \"url\"\r\n\t| \"currency\"\r\n\r\nexport interface IInputFieldProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, \"onChange\"> {\r\n\t/** Callback on change */\r\n\thandleChange: (value: string) => void\r\n\t/** Input ID*/\r\n\tid?: string\r\n\t/** Input Name */\r\n\tname?: string\r\n\t/** Force the focus state on the input */\r\n\tisFocused?: boolean\r\n\t/** Error condition */\r\n\tisError?: boolean\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Readonly state */\r\n\tisReadonly?: boolean\r\n\t/** Input value */\r\n\tvalue: string\r\n\t/** Type of Text Input to Render eg. \"text\", \"email\" */\r\n\ttype: AcceptedInputTypes\r\n\t/** If field is required */\r\n\trequired?: boolean\r\n\t/** use input psuedo classes for :valid and :invalid styles. on by default */\r\n\tclientSideCheck?: boolean\r\n\t/** Placeholder text */\r\n\tplaceholder?: string\r\n\t/**ref for input */\r\n}\r\n\r\nconst InputField = (\r\n\t{\r\n\t\ttype,\r\n\t\tid,\r\n\t\tname,\r\n\t\tvalue,\r\n\t\tisFocused,\r\n\t\tisError,\r\n\t\tisReadonly,\r\n\t\tisDisabled,\r\n\t\thandleChange,\r\n\t\trequired,\r\n\t\tclientSideCheck = true,\r\n\t\tclassName,\r\n\t\tplaceholder,\r\n\t\t...rest\r\n\t}: IInputFieldProps,\r\n\tref: React.Ref<HTMLInputElement>\r\n) => {\r\n\treturn (\r\n\t\t<input\r\n\t\t\t{...{\r\n\t\t\t\tref,\r\n\t\t\t\ttype,\r\n\t\t\t\tid,\r\n\t\t\t\tname,\r\n\t\t\t\tvalue,\r\n\t\t\t\tonChange: (e) => {\r\n\t\t\t\t\tif (handleChange) handleChange(e.target.value)\r\n\t\t\t\t},\r\n\t\t\t\tautoFocus: isFocused,\r\n\t\t\t\treadOnly: isReadonly,\r\n\t\t\t\tdisabled: isDisabled,\r\n\t\t\t\tplaceholder: placeholder || undefined,\r\n\t\t\t\trequired,\r\n\t\t\t\t\"aria-invalid\": isError,\r\n\t\t\t\t\"aria-disabled\": isDisabled,\r\n\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\"peer w-full rounded border border-gray-200 px-3 text-sm font-normal leading-5 outline-offset-0 ring-offset-0 focus:border-purple-600 focus:ring-purple-600 \",\r\n\t\t\t\t\tisError ? \"!border-red-600 !text-red-600 focus:!ring-red-600\" : \"\",\r\n\t\t\t\t\tisReadonly ? \"!border-gray-400 !text-gray-500 focus:!ring-gray-400\" : \"\",\r\n\t\t\t\t\tclassName\r\n\t\t\t\t),\r\n\t\t\t\t...rest\r\n\t\t\t}}\r\n\t\t/>\r\n\t)\r\n}\r\n\r\nconst _InputField = forwardRef<HTMLInputElement, IInputFieldProps>(InputField)\r\nexport default _InputField\r\n", "import InputField, { AcceptedInputTypes, IInputFieldProps } from \"./InputField\"\r\nexport type { AcceptedInputTypes, IInputFieldProps }\r\nexport default InputField\r\n", "import React from \"react\"\r\nimport { DynamicIcon, IDynamicIconProps } from \"@/stories/atoms/icons\"\r\nimport { default as cn } from \"classnames\"\r\nexport interface INestedInputButtonProps {\r\n\t/** Icon to be included*/\r\n\ticon?: IDynamicIconProps\r\n\t/** CTA label */\r\n\tctaLabel?: string\r\n\t/** Alignment */\r\n\talign: \"left\" | \"right\"\r\n\t/** Show the CTA without Background color and a border seperator */\r\n\tisClear?: boolean\r\n\t/** Onclick callback */\r\n\tonClickHandler?(): void\r\n\tbuttonProps?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>\r\n}\r\n\r\nconst NestedInputButton: React.FC<INestedInputButtonProps> = ({\r\n\ticon,\r\n\tctaLabel,\r\n\talign = \"right\",\r\n\tisClear = false,\r\n\tonClickHandler,\r\n\tbuttonProps\r\n}) => {\r\n\tconst handleClick = () => {\r\n\t\tonClickHandler && onClickHandler()\r\n\t}\r\n\tconst buttonStyle = cn(\r\n\t\t\"relative inline-flex items-center space-x-2 px-4 py-2 border border-gray-300 text-sm font-medium focus:outline-none focus:ring-1 focus:ring-purple-500 focus:border-purple-500\",\r\n\t\t{\r\n\t\t\t\"rounded-r text-gray-500 -ml-px\": align === \"right\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"rounded-l text-gray-500 -mr-px\": align === \"left\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"cursor-default\": !onClickHandler\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"hover:bg-gray-100\": onClickHandler && !isClear\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"!border-l-white\": isClear && align === \"right\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"!border-r-white\": isClear && align === \"left\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"bg-gray-50\": !isClear\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"bg-white\": isClear\r\n\t\t}\r\n\t)\r\n\treturn (\r\n\t\t<button {...{ ...buttonProps, className: buttonStyle, onClick: handleClick }}>\r\n\t\t\t{icon && <DynamicIcon {...{ ...icon, className: \"text-gray-400\" }} />}\r\n\t\t\t{ctaLabel && <span>{ctaLabel}</span>}\r\n\t\t</button>\r\n\t)\r\n}\r\n\r\nexport default NestedInputButton\r\n", "import NestedInputButton, { INestedInputButtonProps } from \"./NestedInputButton\"\r\nexport type { INestedInputButtonProps }\r\nexport default NestedInputButton\r\n", "import InputLabel from \"@/stories/molecules/inputs/InputLabel\"\r\nimport { useId } from \"@/utils/useId\"\r\nimport React from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nexport interface IRadioProps {\r\n\t/** group name */\r\n\tname?: string\r\n\t/** Radio label */\r\n\tlabel: string\r\n\t/** Radio ID */\r\n\tid?: string\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Check state */\r\n\tisChecked?: boolean\r\n\t/** If field is required */\r\n\tisRequired?: boolean\r\n\t/** Error state */\r\n\tisError?: boolean\r\n\t/** Message or description */\r\n\tmessage?: string\r\n\t/** value */\r\n\tvalue?: string\r\n\t/** Callback on input change */\r\n\tonChange?(value: string, isChecked: boolean): void\r\n\t/** Callback on click */\r\n\tonClick?(value: string, isChecked: boolean): void\r\n}\r\nconst Radio: React.FC<IRadioProps> = ({\r\n\tlabel,\r\n\tid,\r\n\tname,\r\n\tisDisabled = false,\r\n\tisChecked = false,\r\n\tisRequired = false,\r\n\tisError = false,\r\n\tmessage,\r\n\tonChange,\r\n\tonClick,\r\n\tvalue\r\n}) => {\r\n\tconst uniqueID = useId()\r\n\tif (!id) id = `input-${uniqueID}`\r\n\tif (!name) name = id\r\n\r\n\tconst checboxStyles = cn(\"focus:ring-purple-500 h-4 w-4 text-purple-600 border-gray-300\", {\r\n\t\t\"border-red-500 shadow-none\": isError\r\n\t})\r\n\tconst wrapperStyles = cn(\"relative flex items-start\", { \"opacity-50\": isDisabled })\r\n\tconst handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {\r\n\t\tconst targetValue = e.currentTarget.value\r\n\t\tconst targetChecked = e.currentTarget.checked\r\n\t\ttypeof onChange === \"function\" && onChange(targetValue, targetChecked)\r\n\t}\r\n\tconst handleClick = (e: React.MouseEvent<HTMLInputElement>) => {\r\n\t\tconst targetValue = e.currentTarget.value\r\n\t\tconst targetChecked = e.currentTarget.checked\r\n\t\ttypeof onClick === \"function\" && onClick(targetValue, targetChecked)\r\n\t}\r\n\treturn (\r\n\t\t<div className={wrapperStyles}>\r\n\t\t\t<div className=\"flex items-center h-5\">\r\n\t\t\t\t<input\r\n\t\t\t\t\tid={id}\r\n\t\t\t\t\taria-describedby={`${id}-description`}\r\n\t\t\t\t\tname={name}\r\n\t\t\t\t\ttype=\"radio\"\r\n\t\t\t\t\tvalue={value}\r\n\t\t\t\t\tclassName={checboxStyles}\r\n\t\t\t\t\tdisabled={isDisabled}\r\n\t\t\t\t\tdefaultChecked={isChecked}\r\n\t\t\t\t\tonChange={(e) => {\r\n\t\t\t\t\t\thandleChange(e)\r\n\t\t\t\t\t}}\r\n\t\t\t\t\tonClick={(e) => {\r\n\t\t\t\t\t\thandleClick(e)\r\n\t\t\t\t\t}}\r\n\t\t\t\t/>\r\n\t\t\t</div>\r\n\t\t\t<div className=\"ml-3 text-sm\">\r\n\t\t\t\t<InputLabel label={label} isRequired={isRequired} id={id} />\r\n\t\t\t\t{message && (\r\n\t\t\t\t\t<p id={`${id}-description`} className=\"text-gray-500\">\r\n\t\t\t\t\t\t{message}\r\n\t\t\t\t\t</p>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default Radio\r\n", "import Radio, { IRadioProps } from \"./Radio\"\r\nexport type { IRadioProps }\r\nexport default Radio\r\n", "import React, { useEffect, useState } from \"react\"\r\nimport InputLabel from \"@/stories/molecules/inputs/InputLabel\"\r\nimport { useId } from \"@/utils/useId\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport interface ISimpleSelectOptions {\r\n\tlabel: string\r\n\tvalue: string\r\n}\r\nexport interface ISelectProps {\r\n\t/** Label */\r\n\tlabel?: string\r\n\t/** Select ID prop */\r\n\tid?: string\r\n\t/** Select name prop */\r\n\tname?: string\r\n\t/** List of options to display in the select menu */\r\n\toptions: ISimpleSelectOptions[]\r\n\t/** Select name prop */\r\n\tonChange?(value: string): void\r\n\t/** Select disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Select error state */\r\n\tisError?: boolean\r\n\t/** Select required state */\r\n\tisRequired?: boolean\r\n\r\n\tvalue?: string\r\n\r\n\tclassName?: string\r\n}\r\nconst Select: React.FC<ISelectProps> = ({\r\n\tlabel,\r\n\tid,\r\n\tname,\r\n\toptions,\r\n\tonChange,\r\n\tisDisabled,\r\n\tisError,\r\n\tisRequired,\r\n\tvalue,\r\n\tclassName\r\n}) => {\r\n\tconst [selectedOption, setSelectedOption] = useState<string>(value || options[0].value)\r\n\tconst uniqueID = useId()\r\n\tif (!id) id = `select-${uniqueID}`\r\n\tif (!name) name = id\r\n\r\n\tuseEffect(() => {\r\n\t\tif (value !== undefined && value !== null) {\r\n\t\t\tsetSelectedOption(value)\r\n\t\t}\r\n\t}, [value])\r\n\r\n\tconst handleChange = (e: React.ChangeEvent<HTMLSelectElement>) => {\r\n\t\tconst targetValue = e.target.value\r\n\t\ttypeof onChange == \"function\" && onChange(targetValue)\r\n\t\tsetSelectedOption(targetValue)\r\n\t}\r\n\tconst wrapperStyle = cn({ \"opacity-50\": isDisabled })\r\n\treturn (\r\n\t\t<div className={wrapperStyle}>\r\n\t\t\t{label && (\r\n\t\t\t\t<InputLabel\r\n\t\t\t\t\tisPlaceholder\r\n\t\t\t\t\tisActive\r\n\t\t\t\t\tlabel={label}\r\n\t\t\t\t\tisRequired={isRequired}\r\n\t\t\t\t\tid={id}\r\n\t\t\t\t\tisError={isError}\r\n\t\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\t/>\r\n\t\t\t)}\r\n\t\t\t<select\r\n\t\t\t\tid={id}\r\n\t\t\t\tname={name}\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"block w-full border-gray-300 py-2 pl-3 pr-10 text-base focus:outline-none\",\r\n\t\t\t\t\t\"rounded focus:border-purple-500 focus:ring-purple-500 sm:text-sm\",\r\n\t\t\t\t\t{ \"border-red-500\": isError },\r\n\t\t\t\t\t{ \"border-gray-300\": !isError },\r\n\t\t\t\t\tclassName\r\n\t\t\t\t)}\r\n\t\t\t\tonChange={handleChange}\r\n\t\t\t\tdisabled={isDisabled}\r\n\t\t\t\tvalue={selectedOption}\r\n\t\t\t>\r\n\t\t\t\t{options.map(({ value, label }) => {\r\n\t\t\t\t\treturn (\r\n\t\t\t\t\t\t<option key={value} value={value}>\r\n\t\t\t\t\t\t\t{label}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t)\r\n\t\t\t\t})}\r\n\t\t\t</select>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default Select\r\n", "import Select, { ISelectProps, ISimpleSelectOptions } from \"./Select\"\r\nexport type { ISelectProps, ISimpleSelectOptions }\r\nexport default Select\r\n", "import React, { forwardRef, useEffect, useId, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport InputLabel from \"../InputLabel\"\r\nimport InputCounter from \"../InputCounter\"\r\n\r\ninterface ILabelProps extends React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> {\r\n\tdisplay: string\r\n\thtmlFor?: string\r\n}\r\n\r\nexport interface ITextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, \"onChange\"> {\r\n\t/** Input ID */\r\n\tid?: string\r\n\t/** Input Name */\r\n\tname?: string\r\n\t/** Label for the input */\r\n\tlabel?: ILabelProps\r\n\t/** Error state */\r\n\tisError?: boolean\r\n\t/** If field is required */\r\n\tisRequired?: boolean\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Set default value */\r\n\tdefaultValue?: string\r\n\r\n\tvalue?: string\r\n\r\n\t/** Message shown under the text field */\r\n\tmessage?: string\r\n\t/** Input character counter */\r\n\tisShowCounter?: boolean\r\n\t/** Max length of input character */\r\n\tmaxLength?: number\r\n\t/** Callback on change */\r\n\tonChange?(value: string): void\r\n\t/** Number of rows */\r\n\trows?: number\r\n\t/** Number of cols */\r\n\tcols?: number\r\n\tplaceholder?: string\r\n\tclassName?: string\r\n\tref?: React.LegacyRef<HTMLTextAreaElement>\r\n}\r\n\r\nconst Textarea: React.FC<ITextareaProps> = ({\r\n\tid,\r\n\tname,\r\n\tlabel,\r\n\tisError,\r\n\tisRequired,\r\n\tisDisabled,\r\n\tdefaultValue,\r\n\tmessage,\r\n\tisShowCounter,\r\n\tmaxLength,\r\n\trows = 12,\r\n\tcols = 48,\r\n\tonChange,\r\n\tvalue,\r\n\tplaceholder,\r\n\tclassName,\r\n\tref,\r\n\t...rest\r\n}) => {\r\n\tconst uniqueID = useId()\r\n\r\n\tconst discriptionStyles = cn(\"text-sm mt-1 block\", { \"text-gray-500\": !isError }, { \"text-red-500\": isError })\r\n\r\n\tif (!id) id = `ta-${uniqueID}`\r\n\r\n\tif (!label) {\r\n\t\treturn (\r\n\t\t\t<textarea\r\n\t\t\t\tref={ref}\r\n\t\t\t\tmaxLength={maxLength}\r\n\t\t\t\tonChange={(e: React.ChangeEvent<HTMLTextAreaElement>) => {\r\n\t\t\t\t\tconst targetValue = e.target.value\r\n\t\t\t\t\tif (onChange) {\r\n\t\t\t\t\t\tonChange(targetValue)\r\n\t\t\t\t\t}\r\n\t\t\t\t}}\r\n\t\t\t\trows={rows}\r\n\t\t\t\tname={name}\r\n\t\t\t\tid={id}\r\n\t\t\t\tcols={cols}\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"peer block w-full rounded focus:border-purple-500 focus:ring-purple-500 sm:text-sm\",\r\n\t\t\t\t\t{ \"border-gray-300 \": !isError },\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"border-red-500 outline-red-500 focus:ring-red-500\": isError\r\n\t\t\t\t\t},\r\n\t\t\t\t\tclassName\r\n\t\t\t\t)}\r\n\t\t\t\tdisabled={isDisabled}\r\n\t\t\t\tdefaultValue={defaultValue}\r\n\t\t\t\tvalue={value}\r\n\t\t\t\tplaceholder={placeholder}\r\n\t\t\t\t{...rest}\r\n\t\t\t/>\r\n\t\t)\r\n\t}\r\n\r\n\t//with label\r\n\treturn (\r\n\t\t<div>\r\n\t\t\t<InputLabel\r\n\t\t\t\tisPlaceholder\r\n\t\t\t\tisActive\r\n\t\t\t\tlabel={label.display}\r\n\t\t\t\tisRequired={isRequired}\r\n\t\t\t\tid={id}\r\n\t\t\t\tisError={isError}\r\n\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t/>\r\n\r\n\t\t\t<div>\r\n\t\t\t\t<textarea\r\n\t\t\t\t\tref={ref}\r\n\t\t\t\t\tmaxLength={maxLength}\r\n\t\t\t\t\tonChange={(e: React.ChangeEvent<HTMLTextAreaElement>) => {\r\n\t\t\t\t\t\tconst targetValue = e.target.value\r\n\t\t\t\t\t\tif (onChange) {\r\n\t\t\t\t\t\t\tonChange(targetValue)\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}}\r\n\t\t\t\t\trows={rows}\r\n\t\t\t\t\tname={name}\r\n\t\t\t\t\tid={id}\r\n\t\t\t\t\tcols={cols}\r\n\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\t\"block w-full rounded focus:border-purple-500 focus:ring-purple-500 sm:text-sm\",\r\n\t\t\t\t\t\t{ \"border-gray-300 \": !isError },\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"border-red-500 outline-red-500 focus:ring-red-500\": isError\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\tclassName\r\n\t\t\t\t\t)}\r\n\t\t\t\t\tdisabled={isDisabled}\r\n\t\t\t\t\tdefaultValue={defaultValue}\r\n\t\t\t\t\tvalue={value}\r\n\t\t\t\t\tplaceholder={placeholder}\r\n\t\t\t\t\t{...rest}\r\n\t\t\t\t/>\r\n\t\t\t</div>\r\n\t\t\t<div className=\"flex flex-row space-x-3\">\r\n\t\t\t\t<div className=\"grow\">{message && <span className={discriptionStyles}>{message}</span>}</div>\r\n\t\t\t\t{isShowCounter && (\r\n\t\t\t\t\t<div className=\"shrink-0\">\r\n\t\t\t\t\t\t<InputCounter current={Number(value?.length)} limit={maxLength} />\r\n\t\t\t\t\t</div>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default Textarea\r\n", "import React, { FC } from \"react\"\r\n\r\nexport interface IInputCounterProps {\r\n\t/** Counter limit */\r\n\tlimit: number | undefined\r\n\t/** Counter current number */\r\n\tcurrent: number\r\n}\r\n\r\n/** Primary UI component for user interaction */\r\nconst InputCounter: FC<IInputCounterProps> = ({ current = 0, limit }) => {\r\n\treturn (\r\n\t\t<div className=\"mt-1 text-center text-sm text-gray-500 flex gap-1\">\r\n\t\t\t<div className=\"currentCount\">{current}</div>\r\n\t\t\t{(limit || 0) > 0 && (\r\n\t\t\t\t<>\r\n\t\t\t\t\t<div>/</div>\r\n\t\t\t\t\t<div className=\"limitCount\">{limit}</div>\r\n\t\t\t\t</>\r\n\t\t\t)}\r\n\t\t</div>\r\n\t)\r\n}\r\nexport default InputCounter\r\n", "import TextArea, { ITextareaProps } from \"./TextArea\"\r\nexport type { ITextareaProps }\r\nexport default TextArea\r\n", "import React, { forwardRef, useEffect, useId, useRef, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport InputLabel from \"../InputLabel\"\r\nimport InputField, { AcceptedInputTypes } from \"../InputField\"\r\nimport InputCounter from \"../InputCounter\"\r\n\r\nexport interface ITextInputProps {\r\n\t/** Input type*/\r\n\ttype: AcceptedInputTypes\r\n\t/** Input ID */\r\n\tid?: string\r\n\t/** Input Name */\r\n\tname?: string\r\n\t/** Label for the input */\r\n\tlabel?: string\r\n\t/** Force the focus state on the input */\r\n\tisFocused?: boolean\r\n\t/** Error state */\r\n\tisError?: boolean\r\n\t/** If field is required */\r\n\tisRequired?: boolean\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Readonly state */\r\n\tisReadonly?: boolean\r\n\t/** Set default value */\r\n\tdefaultValue?: string\r\n\t/** Message shown under the text field */\r\n\tmessage?: string\r\n\t/** Input character counter */\r\n\tisShowCounter?: boolean\r\n\t/** Max length of input character */\r\n\tmaxLength?: number\r\n\t/** Callback on change */\r\n\thandleChange(value: string): void\r\n\t/** input value */\r\n\tvalue: string\r\n\t/**Placeholder input text*/\r\n\tplaceholder?: string\r\n\r\n\tclassName?: string\r\n}\r\n\r\nconst TextInput = (\r\n\t{\r\n\t\tlabel,\r\n\t\tisFocused,\r\n\t\tisError,\r\n\t\tid,\r\n\t\tname,\r\n\t\tisRequired,\r\n\t\ttype,\r\n\t\tdefaultValue,\r\n\t\tisDisabled,\r\n\t\tisReadonly,\r\n\t\tmessage,\r\n\t\tisShowCounter,\r\n\t\tmaxLength,\r\n\t\thandleChange,\r\n\t\tplaceholder,\r\n\t\tvalue: externalValue,\r\n\t\tclassName,\r\n\t\t...props\r\n\t}: ITextInputProps,\r\n\tref: React.Ref<HTMLInputElement>\r\n) => {\r\n\tconst uniqueID = useId()\r\n\tconst [isFocus, setIsFocus] = useState<boolean>(Boolean(isFocused))\r\n\r\n\tconst [value, setValue] = useState<string>(externalValue || defaultValue || \"\")\r\n\tconst inputRef = useRef<HTMLInputElement>(null)\r\n\r\n\tuseEffect(() => {\r\n\t\t//if the external value is updated by the parent component, reset the value in here...\r\n\t\tif (externalValue !== undefined && externalValue !== null) {\r\n\t\t\tsetValue(externalValue)\r\n\t\t}\r\n\t}, [externalValue])\r\n\r\n\t// set force focus\r\n\tuseEffect(() => {\r\n\t\tconst input = inputRef.current\r\n\t\tif (!input || isFocus === undefined || isDisabled) return\r\n\t\tif (isFocus) {\r\n\t\t\tinput.focus()\r\n\t\t} else {\r\n\t\t\tinput.blur()\r\n\t\t}\r\n\t}, [isFocus])\r\n\r\n\t// set label as active if default value is set\r\n\tuseEffect(() => {\r\n\t\tconst input = inputRef.current\r\n\t\tif (!input || defaultValue === undefined || defaultValue === \"\") return\r\n\t}, [defaultValue])\r\n\r\n\tconst handleInputFocus = () => setIsFocus(true)\r\n\t// add other focus effects here\r\n\r\n\tconst handleInputBlur = () => setIsFocus(false)\r\n\r\n\tif (!id) id = `input-${uniqueID}`\r\n\tif (!name) name = id\r\n\r\n\treturn (\r\n\t\t<div className=\"relative\">\r\n\t\t\t<InputLabel\r\n\t\t\t\tisPlaceholder={true}\r\n\t\t\t\tlabel={label}\r\n\t\t\t\tisRequired={isRequired}\r\n\t\t\t\tid={id}\r\n\t\t\t\tisError={isError}\r\n\t\t\t\tisActive={true}\r\n\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t/>\r\n\t\t\t<InputField\r\n\t\t\t\tonFocus={handleInputFocus}\r\n\t\t\t\tonBlur={handleInputBlur}\r\n\t\t\t\thandleChange={(v: string) => {\r\n\t\t\t\t\tsetValue(v)\r\n\t\t\t\t\thandleChange(v)\r\n\t\t\t\t}}\r\n\t\t\t\tref={ref}\r\n\t\t\t\ttype={type}\r\n\t\t\t\tname={name}\r\n\t\t\t\tid={id}\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"w-full rounded border py-2 px-3 text-sm font-normal leading-5\",\r\n\t\t\t\t\t{ \"border-gray-300\": !isFocus && !isError },\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"!border-purple-500 shadow-none outline-purple-500 focus:!ring-purple-500\": isFocus && !isError\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"!border-red-500 shadow-none focus:ring-red-500\": isError\r\n\t\t\t\t\t},\r\n\t\t\t\t\tclassName\r\n\t\t\t\t)}\r\n\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\tisReadonly={isReadonly}\r\n\t\t\t\tvalue={value}\r\n\t\t\t\tdefaultValue={defaultValue}\r\n\t\t\t\tmaxLength={maxLength}\r\n\t\t\t\tplaceholder={placeholder}\r\n\t\t\t\t{...props}\r\n\t\t\t/>\r\n\t\t\t<div className=\"flex flex-row space-x-3\">\r\n\t\t\t\t<div className=\"grow\">\r\n\t\t\t\t\t{message && (\r\n\t\t\t\t\t\t<span className={cn(\"mt-1 block text-sm\", isError ? \"text-red-500\" : \"text-gray-500\")}>\r\n\t\t\t\t\t\t\t{message}\r\n\t\t\t\t\t\t</span>\r\n\t\t\t\t\t)}\r\n\t\t\t\t</div>\r\n\t\t\t\t{isShowCounter && (\r\n\t\t\t\t\t<div className=\"shrink-0\">\r\n\t\t\t\t\t\t<InputCounter current={Number(value?.length)} limit={maxLength} />\r\n\t\t\t\t\t</div>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nconst _TextInput = forwardRef<HTMLInputElement, ITextInputProps>(TextInput)\r\nexport default _TextInput\r\n", "import TextInput from \"./TextInput\"\r\nimport { ITextInputProps } from \"./TextInput\"\r\n\r\nexport type { ITextInputProps }\r\nexport default TextInput\r\n", "import React, { useEffect, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport { Switch } from \"@headlessui/react\"\r\nimport { DynamicIcon, IDynamicIconProps } from \"@/stories/atoms\"\r\n\r\ninterface ToggleSwitchLabel {\r\n\ttext: string | JSX.Element\r\n\tclassName?: string\r\n\txPosition?: \"left\" | \"right\"\r\n}\r\n\r\nexport interface IToggleSwitchProps {\r\n\tisChecked: boolean\r\n\tonChange: (isChecked: boolean) => void\r\n\tlabel?: ToggleSwitchLabel\r\n\tscreenReaderLabel?: string\r\n\tname: string\r\n\tid: string\r\n\tvariant?: \"base\" | \"short\"\r\n\twithIcon?: IDynamicIconProps\r\n\tdisabled?: boolean,\r\n\tgroupClassName?: string\r\n}\r\n\r\nconst ToggleSwitch: React.FC<IToggleSwitchProps> = ({\r\n\tisChecked,\r\n\tonChange,\r\n\tlabel,\r\n\tscreenReaderLabel,\r\n\tname,\r\n\tid,\r\n\tvariant = \"base\",\r\n\twithIcon,\r\n\tdisabled,\r\n\tgroupClassName,\r\n}) => {\r\n\tconst [checked, setChecked] = useState<boolean>(isChecked)\r\n\tuseEffect(() => setChecked(isChecked), [isChecked])\r\n\r\n\treturn (\r\n\t\t<Switch.Group as={\"div\"} className={cn(\"flex items-center gap-2\", groupClassName)}>\r\n\t\t\t{label && (label.xPosition === \"left\" || !label?.xPosition) && (\r\n\t\t\t\t<Switch.Label className={label.className}>{label.text}</Switch.Label>\r\n\t\t\t)}\r\n\t\t\t<Switch\r\n\t\t\t\tname={name}\r\n\t\t\t\tid={id}\r\n\t\t\t\tchecked={checked}\r\n\t\t\t\tonChange={(v: boolean) => {\r\n\t\t\t\t\tonChange(v)\r\n\t\t\t\t\tsetChecked(v)\r\n\t\t\t\t}}\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t{ \"w-9 h-4 transition-all\": variant === \"short\", \" h-6 w-11\": variant === \"base\" },\r\n\t\t\t\t\tchecked && disabled ? \"bg-purple-200\" : checked ? \"bg-purple-600\" : \"bg-gray-200\",\r\n\t\t\t\t\t\"relative inline-flex items-center rounded-full focus-visible:ring-2 focus-visible:ring-purple-600 focus-visible:ring-offset-2 focus-within:ring-2 focus-within:ring-purple-600 focus-within:ring-offset-2 focus:ring-2 focus:ring-purple-600 focus:ring-offset-2 active:ring-2 active:ring-purple-600 active:ring-offset-2\"\r\n\t\t\t\t)}\r\n\t\t\t\tdisabled={disabled}\r\n\t\t\t>\r\n\t\t\t\t{screenReaderLabel && <span className=\"sr-only\">{screenReaderLabel}</span>}\r\n\t\t\t\t<span\r\n\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\tchecked ? \"translate-x-[22px]\" : \"translate-x-[2px]\",\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"border border-gray-200 translate-x-0\": variant === \"short\",\r\n\t\t\t\t\t\t\t\"!translate-x-[22px]\": checked && variant === \"short\"\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\" h-5 w-5 transform rounded-full bg-white transition shadow-sm drop-shadow flex items-center justify-center\"\r\n\t\t\t\t\t)}\r\n\t\t\t\t>\r\n\t\t\t\t\t{withIcon && <DynamicIcon {...withIcon} className={\"text-gray-400 m-[2px]\"} />}\r\n\t\t\t\t</span>\r\n\t\t\t</Switch>\r\n\t\t\t{label && label.xPosition === \"right\" && (\r\n\t\t\t\t<Switch.Label className={label.className}>{label.text}</Switch.Label>\r\n\t\t\t)}\r\n\t\t</Switch.Group>\r\n\t)\r\n}\r\n\r\nexport default ToggleSwitch\r\n", "import ToggleSwitch, { IToggleSwitchProps } from \"./ToggleSwitch\"\r\nexport type { IToggleSwitchProps }\r\nexport default ToggleSwitch\r\n", "import React from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport InputField, { IInputFieldProps } from \"@/stories/molecules/inputs/InputField\"\r\n\r\ninterface ILabelProps extends React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> {\r\n\tdisplay: string\r\n}\r\n\r\nexport interface IAnimatedLabelInputProps extends Omit<IInputFieldProps, \"handleChange\"> {\r\n\tid: string\r\n\tcontainerStyles?: string\r\n\tmessage?: string\r\n\trequired?: boolean\r\n\tisError?: boolean\r\n\tlabel: ILabelProps\r\n\thandleChange: (value: string) => void\r\n}\r\n\r\nconst AnimatedLabelInput: React.FC<IAnimatedLabelInputProps> = (props: IAnimatedLabelInputProps) => {\r\n\tconst { id, containerStyles, message, required, isError, label, value, handleChange, ...input } = props\r\n\r\n\tconst [hasValue, setHasValue] = React.useState<boolean>(!!value)\r\n\r\n\treturn (\r\n\t\t<>\r\n\t\t\t<div className={cn(\"group relative\", containerStyles ? containerStyles : \"\")}>\r\n\t\t\t\t<InputField\r\n\t\t\t\t\tid={id}\r\n\t\t\t\t\tisError={isError}\r\n\t\t\t\t\tvalue={value}\r\n\t\t\t\t\thandleChange={(v) => {\r\n\t\t\t\t\t\tsetHasValue(!!v)\r\n\t\t\t\t\t\tif (handleChange) handleChange(v)\r\n\t\t\t\t\t}}\r\n\t\t\t\t\t{...input}\r\n\t\t\t\t/>\r\n\t\t\t\t<label\r\n\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\t\"absolute z-10 ml-[3px] inline-block bg-white text-sm transition-all text-gray-500 left-1 px-1\",\r\n\t\t\t\t\t\thasValue ? \"!-top-[8px] !ml-[.172rem] !text-xs text-gray-600\" : \"top-[9px]\",\r\n\t\t\t\t\t\t\"peer-placeholder-shown:!-top-[8px] peer-placeholder-shown:!ml-[.172rem] peer-placeholder-shown:!text-xs peer-placeholder-shown:text-gray-600\",\r\n\t\t\t\t\t\t\"group-focus-within:!-top-[8px] group-focus-within:!ml-[.172rem] group-focus-within:!text-xs group-focus-within:text-gray-600\",\r\n\r\n\t\t\t\t\t\tisError && \"!text-red-600\"\r\n\t\t\t\t\t)}\r\n\t\t\t\t\thtmlFor={id}\r\n\t\t\t\t>\r\n\t\t\t\t\t{label.display}\r\n\t\t\t\t\t{required && <span className=\"text-red-600 ml-1\">*</span>}\r\n\t\t\t\t</label>\r\n\r\n\t\t\t\t<div className=\"flex flex-row space-x-3\">\r\n\t\t\t\t\t<div className=\"grow transition-all\">\r\n\t\t\t\t\t\t{message && (\r\n\t\t\t\t\t\t\t<span className={cn(\"mt-1 block text-sm\", isError ? \"text-red-500\" : \"text-gray-500\")}>\r\n\t\t\t\t\t\t\t\t{message}\r\n\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</>\r\n\t)\r\n}\r\n\r\nexport default AnimatedLabelInput\r\n", "import AnimatedLabelInput, { IAnimatedLabelInputProps } from \"./AnimatedLabelInput\"\r\nexport type { IAnimatedLabelInputProps }\r\nexport default AnimatedLabelInput\r\n", "import React from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nimport TextArea, { ITextareaProps } from \"@/stories/molecules/inputs/textArea\"\r\n\r\nexport interface IAnimatedLabelTextAreaProps extends ITextareaProps {\r\n\tid: string\r\n\tcontainerStyles?: string\r\n\tmessage?: string\r\n\trequired?: boolean\r\n\tisError?: boolean\r\n\thandleChange: (value: string) => void\r\n}\r\n\r\nconst AnimatedLabelTextArea: React.FC<IAnimatedLabelTextAreaProps> = (props: IAnimatedLabelTextAreaProps) => {\r\n\tconst { id, containerStyles, message, required, isError, label, value, handleChange, onChange, ...input } = props\r\n\r\n\tconst [hasValue, setHasValue] = React.useState<boolean>(!!value)\r\n\r\n\treturn (\r\n\t\t<div className={cn(\"group relative\", containerStyles ? containerStyles : \"\")}>\r\n\t\t\t<TextArea\r\n\t\t\t\tid={id}\r\n\t\t\t\tisError={isError}\r\n\t\t\t\tvalue={value}\r\n\t\t\t\t{...input}\r\n\t\t\t\tonChange={(v) => {\r\n\t\t\t\t\tsetHasValue(!!v)\r\n\t\t\t\t\tif (handleChange) handleChange(v)\r\n\t\t\t\t}}\r\n\t\t\t\tlabel={undefined}\r\n\t\t\t/>\r\n\t\t\t<label\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"absolute z-10 ml-[3px] inline-block bg-white text-sm transition-all text-gray-500 left-1 px-1\",\r\n\t\t\t\t\thasValue ? \"!-top-[8px] !ml-[.172rem] !text-xs text-gray-600\" : \"top-[9px]\",\r\n\t\t\t\t\t\"peer-placeholder-shown:!-top-[8px] peer-placeholder-shown:!ml-[.172rem] peer-placeholder-shown:!text-xs peer-placeholder-shown:text-gray-600\",\r\n\t\t\t\t\t\"group-focus-within:!-top-[8px] group-focus-within:!ml-[.172rem] group-focus-within:!text-xs group-focus-within:text-gray-600\",\r\n\r\n\t\t\t\t\tisError && \"!text-red-600\"\r\n\t\t\t\t)}\r\n\t\t\t\thtmlFor={label?.htmlFor || id}\r\n\t\t\t>\r\n\t\t\t\t{label?.display}\r\n\t\t\t\t{required && <span className=\"text-red-600 ml-1\">*</span>}\r\n\t\t\t</label>\r\n\r\n\t\t\t<div className=\"flex flex-row space-x-3\">\r\n\t\t\t\t<div className=\"grow transition-all\">\r\n\t\t\t\t\t{message && (\r\n\t\t\t\t\t\t<span className={cn(\"mt-1 block text-sm\", isError ? \"text-red-500\" : \"text-gray-500\")}>\r\n\t\t\t\t\t\t\t{message}\r\n\t\t\t\t\t\t</span>\r\n\t\t\t\t\t)}\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default AnimatedLabelTextArea\r\n", "import AnimatedLabelTextArea, { IAnimatedLabelTextAreaProps } from \"./AnimatedLabelTextArea\"\r\nexport type { IAnimatedLabelTextAreaProps }\r\nexport default AnimatedLabelTextArea\r\n", "import React, { FC } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport Button, { IButtonProps } from \"@/stories/atoms/buttons/Button\"\r\n\r\nimport { DynamicIcon } from \"@/stories/atoms/icons\"\r\nimport Dropdown, { IDropdownProps, defaultClassNames } from \"../DropdownComponent\"\r\n\r\nexport interface IButtonDropdownProps {\r\n\tbutton: IButtonProps\r\n\tdropDown: IDropdownProps\r\n\tplacement?: IDropdownProps[\"placement\"]\r\n\toffsetOptions?: IDropdownProps[\"offsetOptions\"]\r\n}\r\n\r\n/**\r\n * Primary UI component for user interaction\r\n */\r\nconst ButtonDropdown: FC<IButtonDropdownProps> = ({ button, dropDown, placement = \"bottom-end\", offsetOptions }) => {\r\n\treturn (\r\n\t\t<div className=\"flex items-stretch focus-within:ring-purple-600 focus-within:ring-2 focus-within:ring-offset-white focus-within:ring-offset-2 rounded-[3px]\">\r\n\t\t\t<Button\r\n\t\t\t\t{...{\r\n\t\t\t\t\t...button,\r\n\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\tbutton.className,\r\n\t\t\t\t\t\t\"!rounded-r-none !border-r-0 hover:!border-r-0 !focus:ring-transparent !focus-visible:ring-transparent !focus-within:ring-transparent !focus:ring-0 !focus-within:ring-0 !focus-visible:ring-0 !focus:ring-offset-0 !focus-visible:ring-offset-0 !focus-within:ring-offset-0 !ring-0 outline-none focus:outline-none focus-visible:outline-none focus-within:outline-none !ring-offset-0\"\r\n\t\t\t\t\t)\r\n\t\t\t\t}}\r\n\t\t\t/>\r\n\t\t\t<div\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"w-[1px] rt\",\r\n\t\t\t\t\tbutton.actionType === \"primary\" ? \"bg-purple-700 \" : \"\",\r\n\t\t\t\t\tbutton.actionType === \"secondary\" ? \"bg-purple-200\" : \"\",\r\n\t\t\t\t\tbutton.actionType === \"alternative\" ? \"bg-gray-300\" : \"\"\r\n\t\t\t\t)}\r\n\t\t\t></div>\r\n\t\t\t<Dropdown\r\n\t\t\t\t{...{\r\n\t\t\t\t\t...(dropDown as IDropdownProps),\r\n\t\t\t\t\tCustomDropdownTrigger: (\r\n\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\ticon: \"IconChevronDown\",\r\n\t\t\t\t\t\t\t\tclassName: cn(\"h-5 w-5\", {\r\n\t\t\t\t\t\t\t\t\t\"text-white\": button.actionType === \"primary\",\r\n\t\t\t\t\t\t\t\t\t\"text-purple-700\": button.actionType === \"secondary\",\r\n\t\t\t\t\t\t\t\t\t\"text-gray-700\": button.actionType === \"alternative\"\r\n\t\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t/>\r\n\t\t\t\t\t),\r\n\t\t\t\t\tbuttonClassname: cn(\r\n\t\t\t\t\t\t\"flex items-center justify-center rounded-l-none border !border-l-0 rounded-r px-2 transition-all hover:!border-l-0\",\r\n\t\t\t\t\t\tbutton.actionType === \"primary\"\r\n\t\t\t\t\t\t\t? cn(\r\n\t\t\t\t\t\t\t\t\t\"border-purple-600 bg-purple-600 !text-white hover:border-purple-700 hover:bg-purple-700 active:!border-purple-800 active:bg-purple-800 fill-white\",\r\n\t\t\t\t\t\t\t\t\t\"disabled:bg-purple-400 disabled:text-white disabled:hover:none disabled:active:bg-purple-400 disabled:border-purple-400\"\r\n\t\t\t\t\t\t\t )\r\n\t\t\t\t\t\t\t: \"\",\r\n\t\t\t\t\t\tbutton.actionType === \"secondary\"\r\n\t\t\t\t\t\t\t? cn(\r\n\t\t\t\t\t\t\t\t\t\"border-purple-50 bg-purple-50 text-purple-700 hover:border-purple-100 hover:bg-purple-100 active:border-purple-300 active:bg-purple-300 fill-purple-700\",\r\n\t\t\t\t\t\t\t\t\t\"disabled:bg-purple-50 disabled:text-grey-50 disabled:hover:none disabled:active:bg-purple-50 disabled:border-purple-50\"\r\n\t\t\t\t\t\t\t )\r\n\t\t\t\t\t\t\t: \"\",\r\n\t\t\t\t\t\tbutton.actionType === \"alternative\"\r\n\t\t\t\t\t\t\t? cn(\r\n\t\t\t\t\t\t\t\t\t\"border-gray-300 bg-white text-gray-700 fill-gray-700 hover:border-gray-300 hover:bg-gray-50 active:bg-gray-100\",\r\n\t\t\t\t\t\t\t\t\t\"disabled:bg-gray-100 disabled:text-gray-500 disabled:hover:none disabled:active:bg-gray-100 disabled:border-gray-300\"\r\n\t\t\t\t\t\t\t )\r\n\t\t\t\t\t\t\t: \"\"\r\n\t\t\t\t\t),\r\n\t\t\t\t\toffsetOptions: offsetOptions ?? {\r\n\t\t\t\t\t\tcrossAxis: 0,\r\n\t\t\t\t\t\tmainAxis: -4, //up/down\r\n\t\t\t\t\t\talignmentAxis: 0 //left/right\r\n\t\t\t\t\t},\r\n\t\t\t\t\tplacement\r\n\t\t\t\t}}\r\n\t\t\t/>\r\n\t\t\t<div className=\"hidden !bg-purple-100 !text-purple-600 transition-all hover:bg-purple-200 focus:bg-purple-300\" />\r\n\t\t</div>\r\n\t)\r\n}\r\nexport default ButtonDropdown\r\n", "import React, { HTMLAttributes, useEffect, useMemo, useRef, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport {\r\n\tuseFloating,\r\n\tautoUpdate,\r\n\toffset,\r\n\tuseDismiss,\r\n\tuseRole,\r\n\tuseClick,\r\n\tuseInteractions,\r\n\tFloatingFocusManager,\r\n\tautoPlacement,\r\n\tshift,\r\n\tFloatingPortal,\r\n\tFloatingList,\r\n\tuseTransitionStyles,\r\n\tPlacement,\r\n\tuseListNavigation\r\n} from \"@floating-ui/react\"\r\n\r\nimport { ClassNameWithAutocomplete } from \"utils/types\"\r\nimport { DynamicIcon, IDynamicIconProps, UnifiedIconName } from \"@/stories/atoms/icons\"\r\nimport { list } from \"postcss\"\r\n\r\nexport interface IItemProp {\r\n\t//Don't think this needs to extend HtmlButton... extends HTMLAttributes<HTMLButtonElement> {\r\n\ticon?: IDynamicIconProps\r\n\ticonPosition?: \"trailing\" | \"leading\"\r\n\tlabel: string | JSX.Element\r\n\tonClick?(): void\r\n\tisEmphasized?: boolean\r\n\tkey: React.Key\r\n\ticonObj?: JSX.Element\r\n}\r\n\r\nexport interface IDropdownProps extends HTMLAttributes<HTMLDivElement> {\r\n\titems: IItemProp[][]\r\n\tlabel: string\r\n\tCustomDropdownTrigger?: React.ReactNode\r\n\tid: string\r\n\tgroupClassname?: ClassNameWithAutocomplete\r\n\titemsClassname?: ClassNameWithAutocomplete\r\n\titemClassname?: ClassNameWithAutocomplete\r\n\tactiveItemClassname?: ClassNameWithAutocomplete\r\n\tbuttonClassname?: ClassNameWithAutocomplete\r\n\ticonClassname?: ClassNameWithAutocomplete\r\n\ticonSpacingClassname?: ClassNameWithAutocomplete\r\n\tplacement?: Placement\r\n\toffsetOptions?: Partial<{\r\n\t\tmainAxis: number\r\n\t\tcrossAxis: number\r\n\t\talignmentAxis: number | null\r\n\t}>\r\n\tdisabled?: boolean\r\n\tonFocus?: () => void\r\n\tonBlur?: () => void\r\n}\r\nexport const defaultClassNames = {\r\n\tgroupClassname: \"flex inline-block text-left\",\r\n\titemsClassname:\r\n\t\t\"mt-2 origin-bottom-right rounded bg-white shadow-lg z-[99999] divide-y divide-gray-100 border border-gray-300 \",\r\n\titemClassname:\r\n\t\t\"group flex font-muli cursor-pointer items-center px-4 py-2 text-sm transition-all hover:bg-gray-100 hover:text-gray-900 justify-between gap-4 \",\r\n\tactiveItemClassname: \"block px-4 py-2 text-sm text-gray-700 bg-gray-100 hover:bg-gray-200 hover:text-gray-900\",\r\n\tbuttonClassname:\r\n\t\t\"py-[2px] flex items-center rounded outline-purple-500 transition-all text-gray-400 hover:text-gray-600 \",\r\n\ticonClassname: \"ml-1 h-5 w-6\",\r\n\ticonSpacingClassname: \"flex items-center gap-x-4\"\r\n}\r\n\r\n/** Comment */\r\nconst Dropdown: React.FC<IDropdownProps> = ({\r\n\titems,\r\n\tid,\r\n\tlabel,\r\n\tgroupClassname,\r\n\titemsClassname,\r\n\titemClassname,\r\n\tactiveItemClassname,\r\n\tbuttonClassname,\r\n\ticonClassname,\r\n\ticonSpacingClassname,\r\n\tCustomDropdownTrigger,\r\n\tplacement = \"bottom-start\",\r\n\toffsetOptions,\r\n\tdisabled,\r\n\tonFocus,\r\n\tonBlur,\r\n\t...props\r\n}: IDropdownProps): JSX.Element | null => {\r\n\tconst [isOpen, setIsOpen] = useState(false)\r\n\tconst [activeItem, setActiveItem] = useState<React.Key | null>(null)\r\n\tconst [activeIndex, setActiveIndex] = useState<number | null>(null)\r\n\r\n\tconst listRef = useRef<(HTMLButtonElement | null)[]>([])\r\n\r\n\t// Floating UI logic\r\n\tconst { refs, floatingStyles, context } = useFloating({\r\n\t\topen: isOpen,\r\n\t\tonOpenChange: (bool: boolean) => {\r\n\t\t\tlistRef.current = []\r\n\t\t\tsetActiveIndex(null)\r\n\t\t\tsetIsOpen(bool)\r\n\t\t},\r\n\t\tplacement,\r\n\t\tmiddleware: [\r\n\t\t\toffset(offsetOptions ?? 10),\r\n\t\t\tautoPlacement({\r\n\t\t\t\tallowedPlacements: [placement, \"bottom-start\", \"bottom-end\", \"bottom\"]\r\n\t\t\t}),\r\n\t\t\tshift({ rootBoundary: \"document\" })\r\n\t\t],\r\n\t\twhileElementsMounted: autoUpdate\r\n\t})\r\n\tconst click = useClick(context)\r\n\tconst dismiss = useDismiss(context)\r\n\tconst role = useRole(context)\r\n\tconst listNavigation = useListNavigation(context, {\r\n\t\tlistRef,\r\n\t\tactiveIndex,\r\n\t\tonNavigate: (index: number | null) => {\r\n\t\t\tif (index !== null && listRef.current[index]) {\r\n\t\t\t\tsetActiveIndex(index)\r\n\t\t\t\tlistRef.current[index]?.focus()\r\n\t\t\t}\r\n\t\t}\r\n\t})\r\n\r\n\tconst { getReferenceProps, getFloatingProps, getItemProps } = useInteractions([\r\n\t\tclick,\r\n\t\tdismiss,\r\n\t\trole,\r\n\t\tlistNavigation\r\n\t])\r\n\r\n\tuseEffect(() => {\r\n\t\tif (isOpen) {\r\n\t\t\tonFocus && onFocus()\r\n\t\t} else {\r\n\t\t\tonBlur && onBlur()\r\n\t\t}\r\n\t}, [isOpen, onBlur, onFocus])\r\n\r\n\tconst ItemComponents = useMemo(\r\n\t\t() =>\r\n\t\t\titems.map((itemStack, stackIndex) => {\r\n\t\t\t\treturn itemStack.map((item, itemIndex) => {\r\n\t\t\t\t\tconst { key, label, icon, iconObj, iconPosition, isEmphasized, onClick, ...rest } = item\r\n\t\t\t\t\tconst active = activeItem && activeItem === key\r\n\t\t\t\t\tconst itemClass = cn(\r\n\t\t\t\t\t\tdefaultClassNames.itemClassname,\r\n\t\t\t\t\t\titemClassname,\r\n\t\t\t\t\t\t\"group flex cursor-pointer items-center px-4 py-2 text-sm transition-all\",\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"text-red-500\": isEmphasized\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"text-gray-900\": !isEmphasized\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"bg-gray-100 text-gray-900\": active\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\tactive ? cn(defaultClassNames.activeItemClassname, activeItemClassname) : \"\",\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"bg-gray-100 text-red-500 hover:text-red-500\": active && isEmphasized\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t)\r\n\t\t\t\t\treturn (\r\n\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\tkey: key,\r\n\t\t\t\t\t\t\t\tid: key.toString(),\r\n\t\t\t\t\t\t\t\tclassName: cn(itemClass, \"w-full\"),\r\n\t\t\t\t\t\t\t\t...rest,\r\n\t\t\t\t\t\t\t\t...getItemProps(),\r\n\t\t\t\t\t\t\t\tonClick: () => {\r\n\t\t\t\t\t\t\t\t\tonClick && onClick()\r\n\t\t\t\t\t\t\t\t\tsetTimeout(() => {\r\n\t\t\t\t\t\t\t\t\t\t//hide the dropdown after click\r\n\t\t\t\t\t\t\t\t\t\tsetIsOpen(false)\r\n\t\t\t\t\t\t\t\t\t}, 150)\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\tref={(node) => {\r\n\t\t\t\t\t\t\t\t//If the list ref already contains a node with the same id do nothing, otherwise add it\r\n\t\t\t\t\t\t\t\tif (listRef.current.some((item) => item?.id === key)) {\r\n\t\t\t\t\t\t\t\t\treturn\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\tlistRef.current.push(node)\r\n\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\tkey={key}\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<div className={cn(defaultClassNames.iconSpacingClassname, iconSpacingClassname)}>\r\n\t\t\t\t\t\t\t\t{iconObj && (iconPosition === \"leading\" || iconPosition === undefined) && (\r\n\t\t\t\t\t\t\t\t\t<>{iconObj}</>\r\n\t\t\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t\t\t{icon &&\r\n\t\t\t\t\t\t\t\t\t(iconPosition === \"leading\" || iconPosition === undefined) &&\r\n\t\t\t\t\t\t\t\t\t(typeof icon === \"string\" ? (\r\n\t\t\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t\t\ticon: icon,\r\n\t\t\t\t\t\t\t\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"text-red-500\": isEmphasized\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"opacity-60 group\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t\t\t) : (\r\n\t\t\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t\t\t...icon,\r\n\t\t\t\t\t\t\t\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\t\t\t\t\t\t\t\ticon.className,\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"text-red-500\": isEmphasized\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"opacity-60 group\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t\t\t))}\r\n\t\t\t\t\t\t\t\t<div className=\"whitespace-nowrap\">{label}</div>\r\n\t\t\t\t\t\t\t\t{iconObj && iconPosition === \"trailing\" && <>{iconObj}</>}\r\n\t\t\t\t\t\t\t\t{icon &&\r\n\t\t\t\t\t\t\t\t\ticonPosition === \"trailing\" &&\r\n\t\t\t\t\t\t\t\t\t(typeof icon === \"string\" ? (\r\n\t\t\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t\t\ticon: icon,\r\n\t\t\t\t\t\t\t\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"text-red-500\": isEmphasized\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"opacity-60 group\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t\t\t) : (\r\n\t\t\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t\t\t...icon,\r\n\t\t\t\t\t\t\t\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\t\t\t\t\t\t\t\ticon.className,\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"text-red-500\": isEmphasized\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"opacity-60 group\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t\t\t))}\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t)\r\n\t\t\t\t})\r\n\t\t\t}),\r\n\t\t[activeItem, activeItemClassname, getItemProps, iconSpacingClassname, itemClassname, items]\r\n\t)\r\n\r\n\tconst { isMounted, styles: transitionStyles } = useTransitionStyles(context, {\r\n\t\tduration: {\r\n\t\t\topen: 200,\r\n\t\t\tclose: 200\r\n\t\t},\r\n\t\tinitial: {\r\n\t\t\topacity: 0,\r\n\t\t\tscale: 95\r\n\t\t},\r\n\t\topen: {\r\n\t\t\topacity: 1,\r\n\t\t\tscale: 100\r\n\t\t}\r\n\t})\r\n\treturn (\r\n\t\t<div\r\n\t\t\t{...{\r\n\t\t\t\tclassName: cn(defaultClassNames.groupClassname, groupClassname),\r\n\t\t\t\trole: \"combobox\",\r\n\t\t\t\t\"aria-owns\": `${id}-list`,\r\n\t\t\t\t\"aria-expanded\": isOpen,\r\n\t\t\t\t\"aria-haspopup\": \"listbox\",\r\n\t\t\t\t...props\r\n\t\t\t}}\r\n\t\t>\r\n\t\t\t<button\r\n\t\t\t\t{...{\r\n\t\t\t\t\tref: refs.setReference,\r\n\t\t\t\t\tclassName: cn(defaultClassNames.buttonClassname, buttonClassname),\r\n\t\t\t\t\tonClick: () => {\r\n\t\t\t\t\t\tsetIsOpen(!isOpen)\r\n\t\t\t\t\t},\r\n\t\t\t\t\ttype: \"button\",\r\n\t\t\t\t\tdisabled: disabled,\r\n\t\t\t\t\t...getReferenceProps()\r\n\t\t\t\t}}\r\n\t\t\t>\r\n\t\t\t\t{CustomDropdownTrigger ? (\r\n\t\t\t\t\t<span className=\"\">{CustomDropdownTrigger}</span>\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<>\r\n\t\t\t\t\t\t<span className=\"pl-1\">{label}</span>\r\n\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\ticon=\"IconChevronDown\"\r\n\t\t\t\t\t\t\tclassName={cn(defaultClassNames.iconClassname, iconClassname)}\r\n\t\t\t\t\t\t/>\r\n\t\t\t\t\t</>\r\n\t\t\t\t)}\r\n\t\t\t</button>\r\n\r\n\t\t\t{isMounted && items.length > 0 && isOpen && (\r\n\t\t\t\t<FloatingList\r\n\t\t\t\t\t{...{\r\n\t\t\t\t\t\telementsRef: listRef\r\n\t\t\t\t\t}}\r\n\t\t\t\t>\r\n\t\t\t\t\t<FloatingPortal>\r\n\t\t\t\t\t\t<FloatingFocusManager context={context} modal={true}>\r\n\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t{...getFloatingProps()}\r\n\t\t\t\t\t\t\t\tclassName={cn(defaultClassNames.itemsClassname, itemsClassname)}\r\n\t\t\t\t\t\t\t\tref={refs.setFloating}\r\n\t\t\t\t\t\t\t\taria-labelledby={label}\r\n\t\t\t\t\t\t\t\tstyle={{\r\n\t\t\t\t\t\t\t\t\tposition: context.strategy,\r\n\t\t\t\t\t\t\t\t\ttop: Math.round(context.y ?? 0),\r\n\t\t\t\t\t\t\t\t\tleft: Math.round(context.x ?? 0),\r\n\t\t\t\t\t\t\t\t\twidth: \"max-content\",\r\n\t\t\t\t\t\t\t\t\tmaxWidth: \"min(calc(100vw - 10px), 25rem)\",\r\n\t\t\t\t\t\t\t\t\t...floatingStyles,\r\n\t\t\t\t\t\t\t\t\t...transitionStyles\r\n\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t{ItemComponents}\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</FloatingFocusManager>\r\n\t\t\t\t\t</FloatingPortal>\r\n\t\t\t\t</FloatingList>\r\n\t\t\t)}\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default Dropdown\r\n", "import Dropdown, { IItemProp, IDropdownProps, defaultClassNames } from \"./DropdownComponent\"\r\nexport type { IItemProp, IDropdownProps }\r\nexport { defaultClassNames }\r\nexport default Dropdown\r\n", "import ButtonDropdown, { IButtonDropdownProps } from \"./ButtonDropdown\"\r\nexport type { IButtonDropdownProps }\r\nexport default ButtonDropdown\r\n", "import React from \"react\"\r\nimport Button, { IButtonProps } from \"@/stories/atoms/buttons/Button\"\r\nimport { IDynamicIconProps } from \"@/stories/atoms/icons\"\r\nimport IconWithShadow from \"@/stories/atoms/icons/IconWithShadow\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport interface IEmptySectionPlaceholderProps {\r\n\t/** the primary icon to display at top of component */\r\n\ticon: IDynamicIconProps\r\n\t/** the muted text to display below the icon */\r\n\tmutedText?: string\r\n\t/** the primary message to display below the muted text */\r\n\tprimaryMessage: string\r\n\t/** the call to action component that if provided will be used instead of primaryMessage */\r\n\tCallToActionComponent?: React.ReactNode\r\n\t/** the actions to display below the primary call to action or message */\r\n\tactions: IButtonProps[]\r\n\t/** whether to display the component in a wide or narrow format */\r\n\tisWide?: boolean\r\n}\r\n\r\nconst EmptySectionPlaceholder: React.FC<IEmptySectionPlaceholderProps> = ({\r\n\ticon,\r\n\tmutedText,\r\n\tprimaryMessage,\r\n\tCallToActionComponent,\r\n\tactions,\r\n\tisWide\r\n}) => {\r\n\treturn (\r\n\t\t<div className=\"flex h-full w-full flex-col items-center justify-center border-2 border-dashed border-gray-300 p-5\">\r\n\t\t\t<IconWithShadow {...icon} />\r\n\t\t\t{mutedText && <p className=\"my-2 block text-xs text-gray-500\">{mutedText}</p>}\r\n\t\t\t{CallToActionComponent ? (\r\n\t\t\t\tCallToActionComponent\r\n\t\t\t) : (\r\n\t\t\t\t<p className=\"mb-2 block text-sm font-medium text-gray-600\">{primaryMessage}</p>\r\n\t\t\t)}\r\n\t\t\t{actions.length > 0 ? (\r\n\t\t\t\t<div className={cn(\"mt-2 flex gap-2\", isWide ? \"\" : \"flex-col items-center\")}>\r\n\t\t\t\t\t{actions.map((action, index) => (\r\n\t\t\t\t\t\t<Button {...{ ...action }} key={action.label.replaceAll(\" \", \"-\")} />\r\n\t\t\t\t\t))}\r\n\t\t\t\t</div>\r\n\t\t\t) : (\r\n\t\t\t\t<></>\r\n\t\t\t)}\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default EmptySectionPlaceholder\r\n", "import EmptySectionPlaceholder, { IEmptySectionPlaceholderProps } from \"./EmptySectionPlaceholder\"\r\n\r\nexport type { IEmptySectionPlaceholderProps }\r\nexport default EmptySectionPlaceholder\r\n", "import { DynamicIcon, IDynamicIconProps } from \"@/stories/atoms/icons\"\r\nimport React, { useLayoutEffect, useRef, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport InputField, { IInputFieldProps, AcceptedInputTypes } from \"@/stories/molecules/inputs/InputField\"\r\n\r\nexport interface IFormInputWithAddonsProps extends Omit<IInputFieldProps, \"type\"> {\r\n\tleadIcon?: IDynamicIconProps\r\n\tleadLabel?: string\r\n\ttrailIcon?: IDynamicIconProps\r\n\ttrailLabel?: string\r\n\ticonOutlined?: boolean\r\n\t/** @param addonOffset An extra buffer zone in pixels between the trailing/leading icon or label and search input -- Default is 24 */\r\n\taddonOffset?: number\r\n\ttopLabel?: string\r\n\tlabelClass?: string\r\n\tcontainerClassName?: string\r\n\tdescription?: string\r\n\tleadIconClassNames?: string\r\n\tcustomIconClass?: string\r\n\ttype: AcceptedInputTypes\r\n}\r\n\r\nconst FormInputWithAddons: React.FC<IFormInputWithAddonsProps> = ({\r\n\thandleChange,\r\n\tvalue,\r\n\tname,\r\n\tid,\r\n\tplaceholder,\r\n\tclassName,\r\n\tcontainerClassName,\r\n\tleadIcon,\r\n\tleadLabel,\r\n\ttrailIcon,\r\n\ttrailLabel,\r\n\ttopLabel,\r\n\tlabelClass,\r\n\tisDisabled,\r\n\tisReadonly,\r\n\tisError,\r\n\taddonOffset = 24,\r\n\ticonOutlined = false,\r\n\tdescription,\r\n\tleadIconClassNames,\r\n\tcustomIconClass,\r\n\ttype,\r\n\t...rest\r\n}) => {\r\n\t// #region logic to determine the width of the lead and or trailing labels in order to offset the input padding by the appropriate amount.\r\n\tconst leadLabelRef = useRef<HTMLLabelElement>(null)\r\n\tconst trailLabelRef = useRef<HTMLLabelElement>(null)\r\n\tconst [leadLabelWidth, setLeadLabelWidth] = useState<number>(0)\r\n\tconst [trailLabelWidth, setTrailLabelWidth] = useState<number>(0)\r\n\tuseLayoutEffect(() => {\r\n\t\tsetLeadLabelWidth(leadLabelRef.current?.clientWidth || 0)\r\n\t\tsetTrailLabelWidth(trailLabelRef.current?.clientWidth || 0)\r\n\t}, [])\r\n\t// #endregion\r\n\r\n\treturn (\r\n\t\t<div className={cn(\"group flex flex-col\", containerClassName)}>\r\n\t\t\t{!leadLabel && !trailLabel && topLabel && (\r\n\t\t\t\t<label htmlFor={id} className={cn(\"flex items-center text-sm font-medium text-gray-600\", labelClass)}>\r\n\t\t\t\t\t{topLabel}\r\n\t\t\t\t</label>\r\n\t\t\t)}\r\n\t\t\t{description && <div className=\"mb-2 text-sm text-gray-500\">{description}</div>}\r\n\t\t\t<div className=\"relative flex-grow\">\r\n\t\t\t\t{(leadLabel || leadIcon) && (\r\n\t\t\t\t\t<label\r\n\t\t\t\t\t\tref={leadLabelRef}\r\n\t\t\t\t\t\thtmlFor={id}\r\n\t\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\t\t\"absolute top-0 bottom-0 left-3 flex items-center justify-center text-sm text-gray-500\",\r\n\t\t\t\t\t\t\tlabelClass\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{leadIcon && (\r\n\t\t\t\t\t\t\t<span>\r\n\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t...leadIcon,\r\n\t\t\t\t\t\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\t\t\t\t\t\t\"h-5 w-5 text-gray-400\",\r\n\t\t\t\t\t\t\t\t\t\t\tleadIconClassNames,\r\n\t\t\t\t\t\t\t\t\t\t\tcustomIconClass,\r\n\t\t\t\t\t\t\t\t\t\t\tleadIcon.className\r\n\t\t\t\t\t\t\t\t\t\t),\r\n\t\t\t\t\t\t\t\t\t\toutline: iconOutlined\r\n\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t{leadLabel && leadLabel}\r\n\t\t\t\t\t</label>\r\n\t\t\t\t)}\r\n\t\t\t\t<InputField\r\n\t\t\t\t\t{...{\r\n\t\t\t\t\t\t...rest,\r\n\t\t\t\t\t\thandleChange,\r\n\t\t\t\t\t\tvalue,\r\n\t\t\t\t\t\tid,\r\n\t\t\t\t\t\tname,\r\n\t\t\t\t\t\ttype,\r\n\t\t\t\t\t\tautoComplete: \"off\",\r\n\t\t\t\t\t\tdisabled: isDisabled,\r\n\t\t\t\t\t\tplaceholder: placeholder || \"\",\r\n\t\t\t\t\t\tisReadonly,\r\n\t\t\t\t\t\tisError,\r\n\t\t\t\t\t\tclassName,\r\n\t\t\t\t\t\t// add padding to accomodate inner labels and icons\r\n\t\t\t\t\t\tstyle: {\r\n\t\t\t\t\t\t\tpaddingRight: `${trailLabelWidth + addonOffset}px`,\r\n\t\t\t\t\t\t\tpaddingLeft: `${leadLabelWidth + addonOffset}px`\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}}\r\n\t\t\t\t/>\r\n\t\t\t\t{(trailLabel || trailIcon) && (\r\n\t\t\t\t\t<label\r\n\t\t\t\t\t\tref={trailLabelRef}\r\n\t\t\t\t\t\thtmlFor={id}\r\n\t\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\t\t\"right absolute top-0 bottom-0 right-3 flex items-center justify-center text-sm !text-gray-500 \",\r\n\t\t\t\t\t\t\tlabelClass\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{trailIcon && (\r\n\t\t\t\t\t\t\t<span>\r\n\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t...trailIcon,\r\n\t\t\t\t\t\t\t\t\t\tclassName: cn(\"h-5 w-5 text-gray-400\", customIconClass, trailIcon.className),\r\n\t\t\t\t\t\t\t\t\t\toutline: iconOutlined\r\n\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t{trailLabel && trailLabel}\r\n\t\t\t\t\t</label>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default FormInputWithAddons\r\n", "import FormInputWithAddons, { IFormInputWithAddonsProps } from \"./FormInputWithAddons\"\r\nexport type { IFormInputWithAddonsProps }\r\nexport default FormInputWithAddons\r\n", "import React, { FC, useEffect, useId, useRef, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nimport { InputSelect } from \"./InputSelect\"\r\nimport { AcceptedInputTypes, InputField } from \"@/stories/molecules\"\r\nimport InputCounter from \"@/stories/molecules/inputs/InputCounter\"\r\n\r\nexport type SelectOptions = {\r\n\tlabel: string\r\n\tvalue: string\r\n}\r\n\r\nexport interface ITextInputSelectProps {\r\n\t/** Input type*/\r\n\ttype: AcceptedInputTypes\r\n\t/** Input ID */\r\n\tid?: string\r\n\t/** Input Name */\r\n\tname?: string\r\n\t/** Label for the input */\r\n\tlabel?: string\r\n\t/** placeholder for the input */\r\n\tplaceholder?: string\r\n\t/** Force the focus state on the input */\r\n\tisFocused?: boolean\r\n\t/** Error state */\r\n\tisError?: boolean\r\n\t/** If field is required */\r\n\tisRequired?: boolean\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Set default value */\r\n\tdefaultValue?: string\r\n\t/** Set value */\r\n\tvalue: string\r\n\t/** Message shown under the text field */\r\n\tmessage?: string\r\n\t/** Input character counter */\r\n\tisShowCounter?: boolean\r\n\t/** Max length of input character */\r\n\tmaxLength?: number\r\n\t/** Select input location */\r\n\tselectLocation?: \"left\" | \"right\"\r\n\t/** Prefix */\r\n\tprefix?: string\r\n\t/** List of options to show on the select field */\r\n\tinputOptions?: SelectOptions[]\r\n\t/** Callback on base input */\r\n\tonChange?(value: string): void\r\n\t/** Callback on input select field */\r\n\tonSelectOption?(value: string): void\r\n}\r\n\r\nconst TextInputSelect: FC<ITextInputSelectProps> = ({\r\n\tlabel,\r\n\tisFocused,\r\n\tisError,\r\n\tid,\r\n\tname,\r\n\tisRequired,\r\n\ttype,\r\n\tdefaultValue,\r\n\tisDisabled,\r\n\tmessage,\r\n\tisShowCounter,\r\n\tmaxLength,\r\n\tplaceholder,\r\n\tinputOptions,\r\n\tselectLocation = \"right\",\r\n\tprefix,\r\n\tonChange,\r\n\tonSelectOption,\r\n\tvalue: externalValue\r\n}: ITextInputSelectProps) => {\r\n\tconst [isFocus, setIsFocus] = useState<boolean>(Boolean(isFocused))\r\n\tconst [value, setValue] = useState<string>(defaultValue || \"\")\r\n\tconst inputRef = useRef<HTMLInputElement>(null)\r\n\r\n\tconst uniqueID = useId()\r\n\tif (!id) id = `select-${uniqueID}`\r\n\tif (!name) name = id\r\n\r\n\tuseEffect(() => {\r\n\t\tsetValue(externalValue)\r\n\t}, [externalValue])\r\n\r\n\t// set force focus\r\n\tuseEffect(() => {\r\n\t\tconst input = inputRef.current\r\n\t\tif (!input || isFocus === undefined || isFocused === undefined || isDisabled) return\r\n\t\tif (isFocus || isFocused) {\r\n\t\t\tinput.focus()\r\n\t\t} else {\r\n\t\t\tinput.blur()\r\n\t\t}\r\n\t}, [isFocus, isFocused])\r\n\r\n\t// set label as active if default value is set\r\n\tuseEffect(() => {\r\n\t\tconst input = inputRef.current\r\n\t\tif (!input || defaultValue === undefined || defaultValue === \"\") return\r\n\t}, [defaultValue])\r\n\r\n\tconst handleInputFocus = (): void => {\r\n\t\tsetIsFocus(true)\r\n\t\t// add other focus effects here\r\n\t}\r\n\r\n\tconst handleInputBlur = (): void => {\r\n\t\tsetIsFocus(false)\r\n\t\t// add other focus effects here\r\n\t}\r\n\tconst labelStyles = cn(\"block inline-block font-medium transition-all text-sm text-gray-700 mb-1\", {\r\n\t\t\"text-red-500 bg-white\": isError\r\n\t})\r\n\r\n\tconst discriptionStyles = cn(\"text-sm mt-1 block\", { \"text-gray-500\": !isError }, { \"text-red-500\": isError })\r\n\r\n\treturn (\r\n\t\t<div>\r\n\t\t\t{label && (\r\n\t\t\t\t<label htmlFor={id} className={labelStyles}>\r\n\t\t\t\t\t{label}\r\n\t\t\t\t\t{isRequired && <span className=\"text-red-500\"> *</span>}\r\n\t\t\t\t</label>\r\n\t\t\t)}\r\n\t\t\t<div className=\"flex\">\r\n\t\t\t\t{inputOptions?.length && selectLocation === \"left\" && (\r\n\t\t\t\t\t<InputSelect\r\n\t\t\t\t\t\tinputOptions={inputOptions}\r\n\t\t\t\t\t\talign=\"left\"\r\n\t\t\t\t\t\tonSelectOption={onSelectOption}\r\n\t\t\t\t\t\tclassName={cn(isError ? \"border-red-500\" : \"\")}\r\n\t\t\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\t\t/>\r\n\t\t\t\t)}\r\n\t\t\t\t<div className=\"relative flex-grow focus-within:z-20\">\r\n\t\t\t\t\t{prefix && (\r\n\t\t\t\t\t\t<div className=\"pointer-events-none pr-10 absolute inset-y-0 left-0 flex items-center pl-3\">\r\n\t\t\t\t\t\t\t<span className=\"text-gray-500 sm:text-sm\">{prefix}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t)}\r\n\t\t\t\t\t<InputField\r\n\t\t\t\t\t\tonFocus={handleInputFocus}\r\n\t\t\t\t\t\tonBlur={handleInputBlur}\r\n\t\t\t\t\t\thandleChange={(v) => onChange && onChange(v)}\r\n\t\t\t\t\t\tref={inputRef}\r\n\t\t\t\t\t\ttype={type}\r\n\t\t\t\t\t\tname={name}\r\n\t\t\t\t\t\tid={id}\r\n\t\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\t\t\"w-full border border-gray-300 py-2 px-3 text-sm font-normal leading-5\",\r\n\t\t\t\t\t\t\t\"focus:border-purple-500 focus:outline-none focus:ring-1 focus:ring-purple-500 sm:text-sm\",\r\n\t\t\t\t\t\t\tselectLocation === \"right\" ? `rounded-l` : `rounded-r`,\r\n\t\t\t\t\t\t\tisError ? \"border-red-500\" : \"\",\r\n\t\t\t\t\t\t\tprefix ? `pl-7` : \"\"\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\t\t\tdefaultValue={defaultValue}\r\n\t\t\t\t\t\tvalue={value}\r\n\t\t\t\t\t\tmaxLength={maxLength}\r\n\t\t\t\t\t\tplaceholder={placeholder}\r\n\t\t\t\t\t/>\r\n\t\t\t\t</div>\r\n\t\t\t\t{inputOptions?.length && selectLocation === \"right\" && (\r\n\t\t\t\t\t<InputSelect\r\n\t\t\t\t\t\tinputOptions={inputOptions}\r\n\t\t\t\t\t\talign={\"right\"}\r\n\t\t\t\t\t\tonSelectOption={onSelectOption}\r\n\t\t\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\t\t\tclassName={cn(isError ? \"border-red-500\" : \"\")}\r\n\t\t\t\t\t/>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t\t<div className=\"flex flex-row space-x-3\">\r\n\t\t\t\t<div className=\"grow\">{message && <span className={discriptionStyles}>{message}</span>}</div>\r\n\t\t\t\t{isShowCounter && (\r\n\t\t\t\t\t<div className=\"shrink-0\">\r\n\t\t\t\t\t\t<InputCounter current={Number(value?.length)} limit={maxLength} />\r\n\t\t\t\t\t</div>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\nexport default TextInputSelect\r\n", "import React, { FC, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport type SelectOptions = {\r\n\tlabel: string\r\n\tvalue: string\r\n}\r\nexport interface InputSelectProps {\r\n\talign: \"left\" | \"right\"\r\n\t/** Show the CTA without Background color and a border seperator */\r\n\tinputOptions: SelectOptions[]\r\n\t/** Onclick callback */\r\n\tonSelectOption?(value: string): void\r\n\tclassName?: string\r\n\tisDisabled?: boolean\r\n}\r\n\r\n/** Comment */\r\nexport const InputSelect: FC<InputSelectProps> = ({\r\n\tinputOptions,\r\n\tonSelectOption,\r\n\talign = \"right\",\r\n\tclassName,\r\n\tisDisabled\r\n}: InputSelectProps): JSX.Element | null => {\r\n\tconst [selectedOption, setSelectedOption] = useState<string>(inputOptions[0].value)\r\n\r\n\tconst handleChange = (e: React.ChangeEvent<HTMLSelectElement>) => {\r\n\t\tconst targetValue = e.target.value\r\n\t\tonSelectOption && onSelectOption(targetValue)\r\n\t\tsetSelectedOption(targetValue)\r\n\t}\r\n\r\n\tif (!inputOptions?.length) return null\r\n\treturn (\r\n\t\t<select\r\n\t\t\tclassName={cn(\r\n\t\t\t\t\"relative z-10 inline-flex items-center space-x-2 border border-gray-300 bg-white px-4 py-2 pr-7 text-sm font-medium\",\r\n\t\t\t\t\"focus:border-purple-500 focus:outline-none focus:ring-1 focus:ring-purple-500\",\r\n\t\t\t\talign === \"right\"\r\n\t\t\t\t\t? \"-ml-px rounded-r border-l-white text-gray-700\"\r\n\t\t\t\t\t: align === \"left\"\r\n\t\t\t\t\t? \"-mr-px rounded-l border-r-white text-gray-500 focus-within:z-10\"\r\n\t\t\t\t\t: \"\",\r\n\t\t\t\t!onSelectOption ? \"cursor-default\" : \"\",\r\n\t\t\t\tclassName\r\n\t\t\t)}\r\n\t\t\tonChange={handleChange}\r\n\t\t\tvalue={selectedOption}\r\n\t\t\tdisabled={isDisabled}\r\n\t\t>\r\n\t\t\t{inputOptions.map((option) => (\r\n\t\t\t\t<option key={option.value} value={option.value}>\r\n\t\t\t\t\t{option.label}\r\n\t\t\t\t</option>\r\n\t\t\t))}\r\n\t\t</select>\r\n\t)\r\n}\r\n", "import TextInputSelect, { ITextInputSelectProps } from \"./TextInputSelect\"\r\nexport type { ITextInputSelectProps }\r\nexport default TextInputSelect\r\n"],
|
|
5
|
-
"mappings": "AAAA,OAAOA,GAAa,WAAAC,OAAe,QACnC,OAAS,WAAWC,OAAU,aA4B9B,IAAMC,GAA2B,CAAC,CAAE,IAAAC,EAAK,OAAAC,EAAQ,KAAAC,EAAO,KAAM,IAAAC,EAAM,eAAgB,SAAAC,CAAS,IAAoB,CAChH,IAAMC,EAAcP,GAAG,eAAgB,CACtC,UAAWI,IAAS,MACpB,UAAWA,IAAS,KACpB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,IACvB,CAAC,EACKI,EAAiBR,GAAG,mEAAoE,CAC7F,UAAWI,IAAS,MACpB,UAAWA,IAAS,KACpB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,IACvB,CAAC,EACKK,EAAaT,GAAG,gDAAiD,CACtE,UAAWI,IAAS,OAASA,IAAS,KACtC,UAAWA,IAAS,KACpB,YAAaA,IAAS,KACtB,UAAWA,IAAS,KACpB,UAAWA,IAAS,IACrB,CAAC,EACKM,EAAsBV,GAAG,wDAAyD,CACvF,UAAWI,IAAS,MACpB,UAAWA,IAAS,KACpB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,IACvB,CAAC,EAEKO,EAAeX,GAAG,8DAA+D,CACtF,cAAeI,IAAS,MACxB,UAAWA,IAAS,KACpB,cAAeA,IAAS,KACxB,UAAWA,IAAS,KACpB,cAAeA,IAAS,KACxB,UAAWA,IAAS,KACpB,cAAeD,IAAW,UAC1B,aAAcA,IAAW,OACzB,eAAgBA,IAAW,QAC5B,CAAC,EACKS,EAAoBb,GAAQ,IAAM,CACvC,IAAIa,EAAoB,EACxB,OAAQR,EAAM,CACb,IAAK,MACJQ,EAAY,GACZ,MACD,IAAK,KACJA,EAAY,GACZ,MACD,IAAK,KACJA,EAAY,GACZ,MACD,IAAK,KACJA,EAAY,GACZ,MACD,IAAK,KACJA,EAAY,GACZ,MACD,IAAK,KACJA,EAAY,GACZ,MACD,QACCA,EAAY,GACZ,KACF,CACA,OAAOA,CACR,EAAG,CAACR,CAAI,CAAC,EAET,OACCN,EAAA,cAAC,QAAK,UAAU,yBACdI,EAEAJ,EAAA,cAAC,OAAI,UAAWS,EAAa,MAAOK,EAAW,OAAQA,EAAW,IAAKV,EAAK,IAAKG,EAAK,QAAQ,QAAQ,EACnGC,EACHR,EAAA,cAAC,QAAK,UAAWU,GAChBV,EAAA,cAAC,QAAK,UAAWW,GAAaH,CAAS,CACxC,EAEAR,EAAA,cAAC,QAAK,UAAWY,GAChBZ,EAAA,cAAC,OAAI,UAAU,8BAA8B,KAAK,eAAe,QAAQ,aACxEA,EAAA,cAAC,QAAK,EAAE,6HAA6H,CACtI,CACD,EAEAK,GAAUL,EAAA,cAAC,QAAK,UAAWa,EAAc,CAC3C,CAEF,EAEOE,GAAQZ,GCzHf,IAAOa,GAAQA,GCDf,OAAOC,MAAW,QAClB,OAAS,WAAWC,OAAU,aCD9B,OAAOC,MAAW,QAElB,UAAYC,OAAgB,yBAC5B,UAAYC,OAAkB,2BAC9B,UAAYC,OAAQ,iBCJb,IAAMC,GAAkB,CAC9B,UACA,cACA,UACA,cACA,UACA,sBACA,mBACA,eACA,UACA,YACA,SACA,gBACA,aACA,UACA,qBACA,kBACA,0BACA,oBACA,iBACA,wBACA,eACA,UACA,qBACA,kBACA,eACA,eACA,YACA,SACA,qBACA,kBACA,qBACA,sBACA,wBACA,uBACA,sBACA,qBACA,wBACA,sBACA,6BACA,wBACA,uBACA,4BACA,uBACA,qBACA,uBACA,qBACA,sBACA,0BACA,wBACA,uBACA,sBACA,oBACA,mBACA,kBACA,iBACA,sBACA,gBACA,iBACA,8BACA,sBACA,wBACA,kBACA,uBACA,iBACA,eACA,sBACA,gBACA,wBACA,kBACA,YACA,eACA,YACA,wBACA,kBACA,yBACA,mBACA,yBACA,mBACA,iBACA,wBACA,+BACA,yBACA,kBACA,0BACA,oBACA,kBACA,YACA,iCACA,2BACA,+BACA,yBACA,gCACA,0BACA,2BACA,iCACA,2BACA,4BACA,wBACA,+BACA,yBACA,+BACA,yBACA,0BACA,4BACA,sBACA,gCACA,0BACA,gCACA,0BACA,2BACA,6BACA,uBACA,8BACA,wBACA,4BACA,sBACA,6BACA,uBACA,kBACA,qBACA,gBACA,iBACA,YACA,uBACA,oBACA,oBACA,gBACA,gBACA,oBACA,iBACA,cACA,gBACA,aACA,YACA,WACA,mBACA,mBACA,mBACA,mBACA,mBACA,qBACA,iBACA,cACA,kBACA,eACA,gBACA,aACA,aACA,UACA,sBACA,gBACA,YACA,iBACA,cACA,WACA,oBACA,iBACA,cACA,mBACA,gBACA,kBACA,eACA,gCACA,0BACA,uBACA,yBACA,uBACA,wBACA,qBACA,wBACA,wBACA,kBACA,gBACA,2BACA,qBACA,2BACA,qBACA,4BACA,sBACA,yBACA,mBACA,mBACA,mBACA,mBACA,oBACA,qBACA,qBACA,sBACA,mBACA,iBACA,qBACA,oBACA,sBACA,qBACA,yBACA,6BACA,uBACA,8BACA,wBACA,mBACA,yBACA,6BACA,uBACA,8BACA,wBACA,mBACA,0BACA,8BACA,wBACA,+BACA,yBACA,oBACA,uBACA,2BACA,qBACA,4BACA,sBACA,iBACA,kBACA,mBACA,qBACA,sBACA,mBACA,sBACA,0BACA,oBACA,uBACA,2BACA,qBACA,sBACA,oBACA,gBACA,qBACA,sBACA,gBACA,2BACA,qBACA,mBACA,iBACA,qBACA,mBACA,sBACA,uBACA,qBACA,sBACA,oBACA,gBACA,qBACA,oBACA,sBACA,qBACA,qBACA,qBACA,sBACA,iBACA,oBACA,oBACA,qBACA,kBACA,sBACA,sBACA,uBACA,oBACA,qBACA,qBACA,oBACA,sBACA,sBACA,qBACA,oBACA,uBACA,wBACA,uBACA,qBACA,iBACA,2BACA,4BACA,0BACA,2BACA,sBACA,uBACA,0BACA,0BACA,2BACA,yBACA,0BACA,iBACA,oBACA,wBACA,kBACA,qBACA,yBACA,mBACA,oBACA,kBACA,cACA,wBACA,sBACA,yBACA,uBACA,kBACA,kBACA,sBACA,8BACA,6BACA,qBACA,iBACA,uBACA,uBACA,uBACA,uBACA,mBACA,iBACA,sBACA,qBACA,uBACA,kBACA,iBACA,qBACA,sBACA,iBACA,qBACA,qBACA,2BACA,yBACA,iBACA,mBACA,sBACA,sBACA,kBACA,qBACA,oBACA,iBACA,mBACA,kBACA,yBACA,uBACA,mBACA,mBACA,oBACA,eACA,qBACA,qBACA,kBACA,eACA,0BACA,iBACA,cACA,wBACA,qBACA,kBACA,kBACA,eACA,YACA,qBACA,eACA,YACA,SACA,kBACA,YACA,cACA,WACA,wBACA,0BACA,uBACA,kBACA,eACA,YACA,UACA,YACA,YACA,iBACA,mBACA,cACA,kBACA,eACA,gBACA,sBACA,gBACA,cACA,cACA,cACA,cACA,cACA,cACA,kBACA,cACA,eACA,cACA,cACA,cACA,cACA,cACA,YACA,mBACA,gBACA,aACA,eACA,8BACA,2BACA,mBACA,qBACA,kBACA,sBACA,mBACA,iBACA,qBACA,oBACA,iBACA,cACA,oBACA,iBACA,cACA,UACA,oBACA,iBACA,cACA,iBACA,cACA,iBACA,cACA,gBACA,aACA,sBACA,mBACA,2BACA,4BACA,2BACA,eACA,mBACA,gBACA,aACA,UACA,iBACA,cACA,WACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,wBACA,uBACA,sBACA,iBACA,oBACA,iBACA,cACA,eACA,YACA,gBACA,aACA,UACA,iBACA,cACA,WACA,eACA,iBACA,gBACA,eACA,cACA,iBACA,eACA,sBACA,iBACA,gBACA,sBACA,gBACA,cACA,gBACA,cACA,qBACA,eACA,mBACA,yBACA,mBACA,wBACA,kBACA,iBACA,iBACA,gBACA,eACA,aACA,kBACA,YACA,kBACA,YACA,WACA,WACA,YACA,cACA,WACA,gBACA,kBACA,iBACA,aACA,mBACA,gBACA,kBACA,YACA,qBACA,uBACA,gBACA,aACA,iBACA,yBACA,mBACA,iBACA,gBACA,cACA,WACA,UACA,cACA,WACA,cACA,WACA,iBACA,WACA,cACA,WACA,cACA,WACA,YACA,mBACA,iBACA,cACA,iBACA,WACA,mBACA,qBACA,oBACA,kBACA,mBACA,uBACA,eACA,sBACA,mBACA,gBACA,eACA,YACA,gBACA,mBACA,oBACA,uBACA,kBACA,iBACA,iBACA,kBACA,mBACA,kBACA,kBACA,mBACA,kBACA,gBACA,qBACA,mBACA,gBACA,aACA,uBACA,iBACA,wBACA,kBACA,UACA,iBACA,WACA,2BACA,+BACA,yBACA,gCACA,0BACA,qBACA,yBACA,mBACA,0BACA,oBACA,wBACA,4BACA,sBACA,6BACA,uBACA,kBACA,gBACA,mBACA,gBACA,kBACA,eACA,mBACA,mBACA,mBACA,mBACA,mBACA,mBACA,mBACA,mBACA,mBACA,mBACA,kBACA,aACA,iBACA,cACA,UACA,gBACA,aACA,yBACA,2BACA,sBACA,kBACA,eACA,cACA,YACA,iBACA,oBACA,iBACA,oBACA,kBACA,oBACA,mBACA,kBACA,oBACA,kBACA,eACA,iBACA,mBACA,mBACA,mBACA,mBACA,eACA,sBACA,uBACA,wBACA,iBACA,oBACA,iBACA,eACA,iBACA,oBACA,iBACA,iBACA,oBACA,mBACA,iBACA,mBACA,oBACA,mBACA,gBACA,qBACA,sBACA,mBACA,mBACA,mBACA,qBACA,iBACA,kBACA,iBACA,kBACA,gBACA,mBACA,2BACA,kBACA,mBACA,kBACA,oBACA,sBACA,sBACA,mBACA,mBACA,uBACA,kBACA,oBACA,yBACA,kBACA,mBACA,wBACA,eACA,iBACA,sBACA,gBACA,oBACA,oBACA,iBACA,mBACA,cACA,uBACA,gBACA,kBACA,kBACA,qBACA,gBACA,kBACA,sBACA,gBACA,oBACA,yBACA,mBACA,kBACA,kBACA,kBACA,kBACA,oBACA,wBACA,kBACA,0BACA,oBACA,iBACA,kBACA,gBACA,mBACA,0BACA,iBACA,kBACA,gBACA,oBACA,0BACA,oBACA,kBACA,iBACA,qBACA,kBACA,oBACA,mBACA,kBACA,kBACA,yBACA,qBACA,mBACA,oBACA,sBACA,wBACA,kBACA,sBACA,kBACA,eACA,yBACA,wBACA,kBACA,kBACA,iBACA,kBACA,2BACA,0BACA,uBACA,qBACA,sBACA,sBACA,qBACA,wBACA,sBACA,0BACA,kBACA,qBACA,mBACA,oBACA,kBACA,oBACA,mBACA,eACA,sBACA,gBACA,mBACA,iBACA,mBACA,qBACA,oBACA,gBACA,sBACA,kBACA,gBACA,gBACA,uBACA,kBACA,mBACA,kBACA,oBACA,sBACA,gBACA,oBACA,oBACA,mBACA,gBACA,mBACA,mBACA,sBACA,oBACA,kBACA,qBACA,kBACA,oBACA,qBACA,gBACA,0BACA,qBACA,uBACA,oBACA,kBACA,mBACA,kBACA,iBACA,8BACA,eACA,oBACA,wBACA,mBACA,gBACA,qBACA,kBACA,kBACA,mBACA,kBACA,eACA,gBACA,mBACA,iBACA,kBACA,gBACA,oBACA,oBACA,sBACA,kBACA,mBACA,iBACA,mBACA,mBACA,wBACA,kBACA,kBACA,kBACA,iBACA,eACA,mBACA,qBACA,uBACA,kBACA,mBACA,sBACA,kBACA,uBACA,sBACA,oBACA,kBACA,cACA,mBACA,uBACA,iBACA,kBACA,kBACA,kBACA,iBACA,mBACA,kBACA,gBACA,kBACA,uBACA,gBACA,kBACA,kBACA,kBACA,kBACA,kBACA,iBACA,iBACA,oBACA,oBACA,qBACA,oBACA,mBACA,sBACA,oBACA,qBACA,mBACA,yBACA,sBACA,iBACA,iBACA,qBACA,oBACA,kBACA,kBACA,uBACA,qBACA,oBACA,sBACA,qBACA,qBACA,kBACA,iBACA,mBACA,kBACA,oBACA,kBACA,eACA,oBACA,qBACA,kBACA,mBACA,mBACA,iBACA,uBACA,kBACA,kBACA,mBACA,oBACA,kBACA,kBACA,uBACA,kBACA,kBACA,kBACA,yBACA,mBACA,sBACA,gBACA,kBACA,iBACA,oBACA,kBACA,oBACA,kBACA,iBACA,kBACA,gBACA,wBACA,gBACA,mBACA,cACA,eACA,sBACA,gBACA,kBACA,eACA,mBACA,gBACA,mBACA,kBACA,iBACA,oBACA,qBACA,mBACA,iBACA,gBACA,eACA,qBACA,mBACA,gBACA,gBACA,iBACA,kBACA,iBACA,uBACA,uBACA,mBACA,mBACA,kBACA,gBACA,iBACA,gBACA,iBACA,iBACA,eACA,YACA,iBACA,mBACA,gBACA,kBACA,2BACA,qBACA,qBACA,oBACA,yBACA,mBACA,iBACA,mBACA,gBACA,mBACA,iBACA,kBACA,eACA,cACA,eACA,YACA,oBACA,gBACA,aACA,aACA,UACA,mBACA,mBACA,sBACA,qBACA,6BACA,uBACA,qBACA,qBACA,qBACA,wBACA,sBACA,qBACA,uBACA,sBACA,uBACA,uBACA,yBACA,uBACA,qBACA,uBACA,yBACA,sBACA,oBACA,qBACA,wBACA,0BACA,eACA,iBACA,cACA,WACA,gBACA,aACA,cACA,UACA,mBACA,gBACA,mBACA,gBACA,aACA,cACA,WACA,uBACA,oBACA,iBACA,mBACA,qBACA,oBACA,mBACA,kBACA,qBACA,mBACA,kBACA,oBACA,0BACA,qBACA,oBACA,oBACA,kBACA,oBACA,kBACA,mBACA,uBACA,qBACA,qBACA,oBACA,mBACA,oBACA,mBACA,iBACA,gBACA,eACA,iBACA,mBACA,kBACA,iBACA,gBACA,mBACA,iBACA,wBACA,mBACA,kBACA,kBACA,gBACA,kBACA,gBACA,iBACA,qBACA,mBACA,mBACA,mBACA,kBACA,iBACA,eACA,cACA,aACA,aACA,qBACA,eACA,aACA,eACA,YACA,WACA,eACA,wBACA,cACA,oBACA,iBACA,cACA,eACA,eACA,aACA,iBACA,UACA,cACA,oBACA,iBACA,YACA,sBACA,gBACA,sBACA,gBACA,uBACA,iBACA,oBACA,cACA,+BACA,yBACA,6BACA,uBACA,gBACA,aACA,sBACA,mBACA,cACA,WACA,cACA,WACA,UACA,gBACA,qBACA,eACA,YACA,SACA,kBACA,kBACA,kBACA,kBACA,kBACA,oBACA,WACA,sBACA,mBACA,qBACA,kBACA,oBACA,oBACA,iBACA,mBACA,iBACA,gBACA,sBACA,0BACA,oBACA,gBACA,0BACA,kBACA,kBACA,eACA,wBACA,kBACA,wBACA,kBACA,mBACA,kBACA,kBACA,kBACA,uBACA,iBACA,iBACA,iBACA,gBACA,oBACA,qBACA,uBACA,gBACA,gBACA,gBACA,gBACA,qBACA,kBACA,eACA,eACA,iBACA,kBACA,mBACA,YACA,eACA,gBACA,aACA,kBACA,aACA,iBACA,cACA,mBACA,aACA,wBACA,kBACA,kBACA,sBACA,gBACA,wBACA,kBACA,uBACA,iBACA,sBACA,gBACA,YACA,yBACA,yBACA,0BACA,uBACA,sBACA,uBACA,kBACA,sBACA,kBACA,uBACA,mBACA,oBACA,qBACA,gBACA,uBACA,wBACA,mBACA,mBACA,oBACA,qBACA,sBACA,iBACA,aACA,uBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,4BACA,gCACA,0BACA,iCACA,2BACA,sBACA,4BACA,sBACA,6BACA,uBACA,0BACA,8BACA,wBACA,+BACA,yBACA,oBACA,sBACA,sBACA,uBACA,oBACA,wBACA,kBACA,wBACA,wBACA,yBACA,sBACA,yBACA,yBACA,0BACA,uBACA,mBACA,sBACA,gBACA,mBACA,mBACA,kBACA,yBACA,iBACA,sBACA,gBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,kBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,gBACA,iBACA,yBACA,sBACA,mBACA,qBACA,oBACA,cACA,aACA,oBACA,sBACA,cACA,qBACA,qBACA,kBACA,gCACA,uBACA,sBACA,kBACA,wBACA,wBACA,mBACA,2BACA,oBACA,sBACA,mBACA,wBACA,sBACA,0BACA,wBACA,uBACA,eACA,sBACA,YACA,qBACA,oBACA,oBACA,qBACA,oBACA,mBACA,oBACA,oBACA,0BACA,iBACA,gBACA,aACA,gBACA,kBACA,iBACA,gBACA,eACA,kBACA,gBACA,gBACA,uBACA,kBACA,iBACA,iBACA,kBACA,kBACA,kBACA,iBACA,iBACA,iBACA,iBACA,iBACA,iBACA,iBACA,iBACA,iBACA,eACA,iBACA,eACA,gBACA,gBACA,oBACA,kBACA,kBACA,iBACA,kBACA,gBACA,gBACA,cACA,aACA,YACA,qBACA,kBACA,gBACA,kBACA,iBACA,gBACA,eACA,qBACA,0BACA,kBACA,gBACA,oBACA,uBACA,kBACA,eACA,iBACA,oBACA,gBACA,iBACA,eACA,iBACA,eACA,gBACA,oBACA,gBACA,kBACA,iBACA,gBACA,gBACA,iBACA,cACA,kBACA,aACA,YACA,cACA,aACA,kBACA,YACA,kBACA,kBACA,iBACA,eACA,gBACA,cACA,eACA,WACA,gBACA,aACA,aACA,kBACA,eACA,iBACA,cACA,gBACA,gBACA,cACA,eACA,WACA,YACA,kBACA,qBACA,kBACA,qBACA,kBACA,uBACA,wBACA,mBACA,eACA,eACA,eACA,iBACA,cACA,YACA,iBACA,cACA,iBACA,cACA,oBACA,iBACA,YACA,cACA,eACA,WACA,kBACA,eACA,gBACA,mBACA,gBACA,mBACA,gBACA,kBACA,eACA,aACA,gBACA,gBACA,aACA,cACA,WACA,qBACA,kBACA,eACA,sBACA,mBACA,gBACA,2BACA,qBACA,4BACA,sBACA,2BACA,qBACA,yBACA,mBACA,4BACA,sBACA,0BACA,oBACA,yBACA,mBACA,0BACA,oBACA,WACA,aACA,UACA,eACA,YACA,wBACA,wBACA,wBACA,yBACA,wBACA,0BACA,sBACA,oBACA,iBACA,cACA,WACA,kBACA,eACA,YACA,gBACA,eACA,YACA,kBACA,eACA,kBACA,UACA,cACA,eACA,eACA,mBACA,WACA,aACA,UACA,cACA,gBACA,sBACA,uBACA,mBACA,sBACA,mBACA,oBACA,qBACA,uBACA,+BACA,2BACA,6BACA,6BACA,wBACA,8BACA,+BACA,qBACA,mBACA,mBACA,uBACA,sBACA,mBACA,qBACA,qBACA,oBACA,sBACA,sBACA,0BACA,kBACA,yBACA,0BACA,2BACA,mBACA,kBACA,mBACA,uBACA,kBACA,oBACA,qBACA,oBACA,mBACA,kBACA,qBACA,mBACA,uBACA,oBACA,sBACA,mBACA,uBACA,qBACA,oBACA,oBACA,sBACA,4BACA,oBACA,qBACA,qBACA,kBACA,mBACA,oBACA,qBACA,kBACA,qBACA,kBACA,mBACA,oBACA,eACA,yBACA,sBACA,gBACA,iBACA,UACA,kBACA,mBACA,eACA,mBACA,gBACA,kBACA,qBACA,mBACA,0BACA,qBACA,oBACA,qBACA,mBACA,oBACA,kBACA,mBACA,qBACA,oBACA,mBACA,gBACA,eACA,cACA,WACA,YACA,mBACA,gBACA,aACA,eACA,iBACA,cACA,wBACA,oBACA,mBACA,sBACA,sBACA,wBACA,oBACA,iBACA,8BACA,2BACA,6BACA,wBACA,0BACA,yBACA,wBACA,uBACA,0BACA,wBACA,+BACA,yBACA,yBACA,uBACA,yBACA,uBACA,wBACA,4BACA,0BACA,yBACA,wBACA,sBACA,qBACA,oBACA,mBACA,qBACA,oBACA,+BACA,yBACA,qBACA,uBACA,sBACA,qBACA,oBACA,uBACA,qBACA,4BACA,sBACA,sBACA,oBACA,sBACA,oBACA,qBACA,yBACA,uBACA,sBACA,qBACA,mBACA,kBACA,iBACA,qBACA,uBACA,sBACA,qBACA,oBACA,uBACA,qBACA,4BACA,sBACA,+BACA,iCACA,gCACA,+BACA,8BACA,iCACA,+BACA,sCACA,gCACA,gCACA,8BACA,gCACA,8BACA,+BACA,mCACA,iCACA,gCACA,+BACA,6BACA,4BACA,2BACA,sBACA,oBACA,sBACA,oBACA,qBACA,yBACA,uBACA,sBACA,qBACA,mBACA,kBACA,iBACA,0BACA,sBACA,mBACA,uBACA,yBACA,2BACA,wBACA,uBACA,sBACA,yBACA,uBACA,8BACA,yBACA,wBACA,0BACA,wBACA,sBACA,wBACA,sBACA,uBACA,2BACA,0BACA,yBACA,wBACA,uBACA,qBACA,4BACA,oBACA,mBACA,wBACA,qBACA,mBACA,mBACA,iBACA,iBACA,iBACA,gBACA,uBACA,oBACA,uBACA,yBACA,wBACA,uBACA,sBACA,yBACA,uBACA,8BACA,yBACA,wBACA,wBACA,sBACA,wBACA,sBACA,uBACA,2BACA,yBACA,wBACA,uBACA,qBACA,oBACA,mBACA,kBACA,kBACA,eACA,sBACA,sBACA,wBACA,uBACA,sBACA,qBACA,wBACA,sBACA,6BACA,uBACA,uBACA,qBACA,uBACA,qBACA,sBACA,0BACA,wBACA,uBACA,sBACA,wBACA,uBACA,oBACA,mBACA,kBACA,eACA,kBACA,oBACA,mBACA,kBACA,iBACA,oBACA,kBACA,yBACA,mBACA,mBACA,iBACA,mBACA,mBACA,gBACA,iBACA,kBACA,sBACA,oBACA,mBACA,kBACA,gBACA,eACA,cACA,iBACA,kBACA,cACA,oBACA,iBACA,cACA,oBACA,iBACA,cACA,qBACA,eACA,kBACA,YACA,kBACA,YACA,kBACA,YACA,kBACA,YACA,kBACA,YACA,kBACA,YACA,iBACA,WACA,iBACA,0BACA,0BACA,uBACA,oBACA,gBACA,oBACA,iBACA,gBACA,kBACA,eACA,eACA,cACA,WACA,mBACA,gBACA,0BACA,oBACA,kBACA,eACA,aACA,cACA,WACA,aACA,UACA,cACA,UACA,gBACA,eACA,cACA,WACA,2BACA,oBACA,mBACA,mBACA,WACA,kBACA,eACA,gBACA,eACA,eACA,YACA,iBACA,kBACA,oBACA,mBACA,kBACA,iBACA,oBACA,kBACA,yBACA,oBACA,mBACA,wBACA,kBACA,mBACA,mBACA,iBACA,mBACA,iBACA,kBACA,sBACA,oBACA,mBACA,kBACA,gBACA,eACA,cACA,iBACA,gBACA,aACA,UACA,yBACA,6BACA,gBACA,aACA,0BACA,cACA,oBACA,iBACA,cACA,WACA,iBACA,gBACA,eACA,aACA,UACA,WACA,kBACA,eACA,mBACA,mBACA,gBACA,eACA,gBACA,aACA,kBACA,eACA,YACA,gBACA,aACA,kBACA,eACA,oBACA,kBACA,gBACA,kBACA,eACA,wBACA,yBACA,sBACA,kBACA,eACA,gBACA,qBACA,qBACA,kBACA,oBACA,oBACA,eACA,sBACA,mBACA,eACA,gBACA,aACA,cACA,qBACA,gBACA,eACA,aACA,eACA,WACA,UACA,gBACA,kBACA,eACA,kBACA,aACA,kBACA,eACA,WACA,iBACA,cACA,eACA,YACA,oBACA,aACA,gBACA,oBACA,oBACA,qBACA,kBACA,iBACA,sBACA,gBACA,gBACA,gBACA,eACA,aACA,mBACA,gBACA,sBACA,eACA,gBACA,kBACA,iBACA,eACA,mBACA,eACA,iBACA,iBACA,mBACA,qBACA,iBACA,mBACA,eACA,kBACA,iBACA,eACA,gBACA,gBACA,cACA,sBACA,iBACA,kBACA,gBACA,eACA,gBACA,iBACA,cACA,mBACA,iBACA,mBACA,mBACA,iBACA,sBACA,gBACA,eACA,kBACA,iBACA,eACA,eACA,kBACA,kBACA,kBACA,kBACA,mBACA,mBACA,kBACA,iBACA,kBACA,kBACA,kBACA,kBACA,kBACA,iBACA,kBACA,kBACA,iBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,qBACA,kBACA,iBACA,iBACA,kBACA,YACA,cACA,WACA,eACA,YACA,gBACA,mBACA,iBACA,kBACA,gBACA,iBACA,iBACA,cACA,aACA,cACA,qBACA,kBACA,uBACA,qBACA,kBACA,gBACA,qBACA,kBACA,eACA,uBACA,kBACA,eACA,cACA,WACA,kBACA,eACA,YACA,kBACA,YACA,iBACA,cACA,WACA,eACA,YACA,YACA,gBACA,aACA,eACA,YACA,gBACA,qBACA,mBACA,kBACA,gBACA,gBACA,iBACA,gBACA,aACA,aACA,gBACA,oBACA,YACA,eACA,aACA,WACA,iBACA,mBACA,kBACA,iBACA,gBACA,mBACA,iBACA,wBACA,mBACA,kBACA,kBACA,gBACA,iBACA,kBACA,gBACA,iBACA,qBACA,mBACA,kBACA,iBACA,oBACA,eACA,cACA,aACA,iBACA,cACA,cACA,aACA,eACA,YACA,kBACA,eACA,eACA,YACA,iBACA,mBACA,sBACA,gBACA,gBACA,aACA,iBACA,cACA,iBACA,kBACA,cACA,kBACA,eACA,oBACA,iBACA,oBACA,iBACA,eACA,YACA,YACA,oBACA,sBACA,qBACA,oBACA,qBACA,oBACA,mBACA,kBACA,wBACA,uBACA,wBACA,0BACA,wBACA,iBACA,qBACA,kBACA,wBACA,sBACA,eACA,mBACA,aACA,kBACA,eACA,YACA,UACA,eACA,cACA,WACA,uBACA,gBACA,oBACA,gBACA,iBACA,cACA,eACA,2BACA,0BACA,qBACA,YACA,gBACA,eACA,YACA,eACA,YACA,aACA,cACA,WACA,UACA,iBACA,YACA,eACA,YACA,aACA,YACA,eACA,kBACA,gBACA,eACA,mBACA,YACA,qBACA,mBACA,aACA,uBACA,iBACA,SACA,SACA,SACA,SACA,SACA,SACA,gBACA,aACA,gBACA,oBACA,iBACA,eACA,uBACA,uBACA,eACA,cACA,qBACA,eACA,oBACA,eACA,uBACA,qBACA,cACA,gBACA,aACA,WACA,eACA,WACA,UACA,iBACA,cACA,uBACA,oBACA,iBACA,iBACA,cACA,wBACA,kBACA,kBACA,qBACA,iBACA,eACA,gBACA,uBACA,YACA,gBACA,gBACA,aACA,wBACA,iBACA,gBACA,aACA,uBACA,iBACA,wBACA,kBACA,wBACA,kBACA,cACA,gBACA,uBACA,8BACA,wBACA,iBACA,yBACA,mBACA,WACA,oBACA,qBACA,iBACA,qBACA,qBACA,qBACA,qBACA,gBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,oBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,iBACA,cACA,wBACA,yBACA,qBACA,0BACA,2BACA,uBACA,kBACA,eACA,iBACA,iBACA,mBACA,gBACA,mBACA,gBACA,iBACA,oBACA,cACA,YACA,eACA,iBACA,gBACA,cACA,iBACA,cACA,eACA,cACA,eACA,sBACA,eACA,gBACA,mBACA,eACA,gBACA,eACA,cACA,eACA,mBACA,iBACA,iBACA,gBACA,iBACA,iBACA,eACA,gBACA,aACA,YACA,WACA,eACA,mBACA,qBACA,sBACA,oBACA,mBACA,mBACA,gBACA,WACA,kBACA,iBACA,cACA,eACA,kBACA,gBACA,eACA,cACA,cACA,gBACA,gBACA,kBACA,eACA,iBACA,eACA,YACA,eACA,iBACA,cACA,YACA,SACA,eACA,YACA,qBACA,qBACA,kBACA,eACA,uBACA,iBACA,wBACA,kBACA,wBACA,kBACA,gBACA,uBACA,8BACA,wBACA,iBACA,yBACA,mBACA,8BACA,kCACA,4BACA,mCACA,6BACA,wBACA,4BACA,sBACA,6BACA,uBACA,2BACA,+BACA,yBACA,gCACA,0BACA,qBACA,kBACA,eACA,eACA,eACA,iBACA,sBACA,mBACA,cACA,6BACA,8BACA,0BACA,aACA,aACA,cACA,uBACA,iBACA,UACA,WACA,eACA,aACA,YACA,aACA,aACA,UACA,mBACA,kBACA,mBACA,eACA,0BACA,8BACA,4BACA,eACA,gBACA,gBACA,aACA,aACA,YACA,cACA,WACA,WACA,uBACA,uBACA,kBACA,eACA,eACA,mBACA,YACA,uBACA,uBACA,sBACA,mBACA,gBACA,qBACA,kBACA,cACA,wBACA,wBACA,sBACA,wBACA,uBACA,qBACA,uBACA,kBACA,8BACA,4BACA,sBACA,kBACA,oBACA,oBACA,sBACA,iCACA,+BACA,oBACA,uBACA,iBACA,mBACA,iBACA,2BACA,yBACA,mBACA,gBACA,iBACA,gCACA,8BACA,iCACA,+BACA,yBACA,oBACA,aACA,cACA,WACA,cACA,WACA,aACA,YACA,cACA,cACA,cACA,sBACA,uBACA,sBACA,iBACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,oBACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,iBACA,cACA,kBACA,eACA,cACA,iBACA,iBACA,iBACA,WACA,cACA,WACA,gBACA,kBACA,kBACA,iBACA,eACA,WACA,mBACA,gBACA,eACA,mBACA,cACA,cACA,oBACA,aACA,qBACA,qBACA,kBACA,eACA,oBACA,iBACA,eACA,iBACA,gBACA,eACA,cACA,iBACA,eACA,sBACA,gBACA,gBACA,cACA,kBACA,eACA,gBACA,cACA,eACA,mBACA,iBACA,gBACA,8BACA,wBACA,iBACA,eACA,aACA,YACA,WACA,eACA,kBACA,gBACA,eACA,eACA,cACA,gBACA,eACA,YACA,cACA,aACA,kBACA,eACA,iBACA,cACA,eACA,YACA,eACA,YACA,gBACA,aACA,aACA,eACA,iBACA,gBACA,eACA,cACA,iBACA,eACA,sBACA,eACA,iBACA,kBACA,gBACA,gBACA,cACA,uBACA,iBACA,gBACA,cACA,eACA,mBACA,iBACA,gBACA,eACA,aACA,YACA,WACA,iBACA,cACA,UACA,oBACA,WACA,aACA,iBACA,mBACA,kBACA,iBACA,gBACA,mBACA,iBACA,wBACA,mBACA,kBACA,kBACA,gBACA,kBACA,gBACA,iBACA,qBACA,mBACA,kBACA,iBACA,eACA,cACA,aACA,cACA,gBACA,UACA,kBACA,eACA,eACA,iBACA,cACA,WACA,cACA,WACA,sBACA,mBACA,cACA,iBACA,mBACA,mBACA,cACA,uBACA,qBACA,sBACA,oBACA,mBACA,kBACA,oBACA,mBACA,oBACA,gBACA,cACA,cACA,cACA,cACA,oBACA,aACA,kBACA,mBACA,oBACA,mBACA,kBACA,kBACA,iBACA,iBACA,aACA,kBACA,iBACA,WACA,kBACA,eACA,cACA,WACA,aACA,YACA,yBACA,yBACA,sBACA,mBACA,oBACA,aACA,cACA,YACA,eACA,gBACA,WACA,mBACA,qBACA,oBACA,mBACA,kBACA,qBACA,mBACA,0BACA,oBACA,oBACA,kBACA,oBACA,kBACA,mBACA,uBACA,qBACA,oBACA,mBACA,iBACA,gBACA,eACA,kBACA,oBACA,qBACA,mBACA,2BACA,qBACA,wBACA,0BACA,yBACA,wBACA,uBACA,0BACA,wBACA,+BACA,yBACA,yBACA,uBACA,yBACA,uBACA,wBACA,4BACA,0BACA,yBACA,wBACA,sBACA,qBACA,oBACA,kBACA,iBACA,oBACA,kBACA,kBACA,yBACA,qBACA,mBACA,sBACA,mBACA,iBACA,mBACA,iBACA,kBACA,sBACA,oBACA,oBACA,mBACA,kBACA,gBACA,eACA,cACA,kBACA,eACA,gBACA,aACA,0BACA,wBACA,mBACA,mBACA,aACA,qBACA,kBACA,oBACA,iBACA,oBACA,iBACA,mBACA,gBACA,oBACA,mBACA,cACA,WACA,gBACA,eACA,oBACA,YACA,cACA,WACA,oBACA,iBACA,eACA,gBACA,mBACA,kBACA,cACA,gBACA,cACA,yBACA,mBACA,qBACA,cACA,iBACA,eACA,sBACA,gBACA,sBACA,gBACA,gBACA,oBACA,cACA,mBACA,oBACA,gBACA,eACA,kBACA,wBACA,kBACA,cACA,cACA,eACA,eACA,mBACA,oBACA,oBACA,cACA,iBACA,gBACA,eACA,kBACA,eACA,oBACA,qBACA,sBACA,gBACA,mBACA,sBACA,qBACA,iBACA,mBACA,aACA,gBACA,eACA,eACA,YACA,aACA,YACA,iBACA,cACA,gBACA,WACA,YACA,gBACA,kBACA,eACA,aACA,kBACA,eACA,YACA,gBACA,eACA,YACA,aACA,UACA,oBACA,oBACA,mBACA,mBACA,qBACA,kBACA,eACA,eACA,YACA,uBACA,sBACA,oBACA,iBACA,mBACA,aACA,iBACA,cACA,iBACA,cACA,WACA,aACA,UACA,kBACA,wBACA,oBACA,gBACA,cACA,WACA,kBACA,eACA,eACA,YACA,sBACA,mBACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,aACA,cACA,YACA,oBACA,iBACA,cACA,oBACA,qBACA,iBACA,UACA,kBACA,eACA,SACA,YACA,eACA,aACA,iBACA,yBACA,mBACA,WACA,eACA,oBACA,oBACA,iBACA,cACA,eACA,aACA,gBACA,kBACA,eACA,YACA,iBACA,cACA,4BACA,yBACA,0BACA,uBACA,kBACA,eACA,gBACA,mBACA,gBACA,qBACA,kBACA,iBACA,cACA,eACA,gBACA,aACA,UACA,UACA,YACA,kBACA,gBACA,iBACA,aACA,qBACA,eACA,oBACA,iBACA,cACA,qBACA,kBACA,eACA,gBACA,gBACA,aACA,iBACA,cACA,qBACA,kBACA,gBACA,mBACA,iBACA,kBACA,oBACA,eACA,oBACA,iBACA,gBACA,aACA,YACA,cACA,gBACA,kBACA,iBACA,gBACA,eACA,kBACA,gBACA,gBACA,uBACA,kBACA,iBACA,iBACA,eACA,iBACA,eACA,gBACA,oBACA,kBACA,mBACA,mBACA,kBACA,iBACA,kBACA,gBACA,cACA,aACA,YACA,qBACA,YACA,WACA,0BACA,yBACA,0BACA,uBACA,eACA,aACA,UACA,cACA,cACA,WACA,YACA,gBACA,UACA,eACA,mBACA,gBACA,aACA,eACA,YACA,kBACA,mBACA,qBACA,oBACA,eACA,gBACA,YACA,gBACA,aACA,gBACA,aACA,eACA,YACA,qBACA,kBACA,eACA,mBACA,mBACA,qBACA,wBACA,kBACA,wBACA,kBACA,uBACA,iBACA,yBACA,mBACA,2BACA,qBACA,8BACA,wBACA,uBACA,iBACA,4BACA,sBACA,4BACA,sBACA,kBACA,kBACA,gBACA,eACA,wBACA,wBACA,0BACA,mBACA,qBACA,oBACA,cACA,YACA,WACA,gBACA,gBACA,WACA,UACA,gBACA,aACA,kBACA,eACA,YACA,kBACA,oBACA,mBACA,kBACA,iBACA,oBACA,kBACA,yBACA,oBACA,mBACA,mBACA,iBACA,mBACA,iBACA,kBACA,sBACA,oBACA,mBACA,kBACA,gBACA,eACA,cACA,kBACA,eACA,gBACA,qBACA,eACA,iBACA,cACA,UACA,cACA,WACA,YACA,WACA,oBACA,mBACA,4BACA,sBACA,mBACA,iBACA,cACA,eACA,gBACA,YACA,aACA,oBACA,mBACA,oBACA,mBACA,mBACA,gBACA,eACA,aACA,mBACA,gBACA,mBACA,cACA,mBACA,gBACA,aACA,iBACA,kBACA,cACA,gBACA,aACA,mBACA,eACA,YACA,aACA,aACA,eACA,YACA,eACA,YACA,wBACA,qBACA,kBACA,uBACA,wBACA,oBACA,qBACA,iBACA,cACA,mBACA,mBACA,mBACA,mBACA,mBACA,oBACA,YACA,eACA,iBACA,oBACA,iBACA,cACA,iBACA,oBACA,iBACA,sBACA,6BACA,0BACA,8BACA,wBACA,gBACA,0BACA,2BACA,uBACA,iBACA,cACA,mBACA,iBACA,iBACA,cACA,eACA,YACA,iBACA,yBACA,wBACA,uBACA,aACA,gBACA,iBACA,aACA,oBACA,iBACA,cACA,sBACA,oBACA,kBACA,gBACA,mBACA,aACA,mBACA,aACA,cACA,uBACA,uBACA,uBACA,uBACA,uBACA,sBACA,uBACA,uBACA,sBACA,sBACA,sBACA,sBACA,sBACA,qBACA,sBACA,sBACA,mBACA,YACA,gBACA,aACA,cACA,eACA,WACA,eACA,YACA,gBACA,aACA,oBACA,uBACA,oBACA,oBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,cACA,cACA,gBACA,uBACA,sBACA,gBACA,sBACA,aACA,aACA,eACA,YACA,gBACA,aACA,sBACA,mBACA,gBACA,UACA,qBACA,kBACA,gBACA,aACA,aACA,mBACA,eACA,YACA,UACA,gBACA,gBACA,iBACA,cACA,gBACA,kBACA,eACA,YACA,WACA,mBACA,gBACA,cACA,eACA,sBACA,mBACA,YACA,cACA,WACA,gBACA,aACA,iBACA,gBACA,aACA,kBACA,eACA,sBACA,cACA,iBACA,qBACA,kBACA,iBACA,kBACA,eACA,kBACA,iBACA,cACA,aACA,mBACA,gBACA,UACA,gBACA,aACA,kBACA,cACA,iBACA,cACA,gBACA,aACA,eACA,cACA,WACA,UACA,0BACA,wBACA,gBACA,cACA,iBACA,gBACA,gBACA,aACA,kBACA,gBACA,yBACA,mBACA,qBACA,oBACA,mBACA,kBACA,qBACA,mBACA,0BACA,qBACA,oBACA,oBACA,kBACA,oBACA,kBACA,mBACA,uBACA,qBACA,oBACA,mBACA,iBACA,gBACA,eACA,gBACA,aACA,aACA,aACA,eACA,YACA,aACA,aACA,eACA,YACA,iBACA,iBACA,mBACA,wBACA,kBACA,4BACA,sBACA,oBACA,iBACA,gBACA,mBACA,iBACA,wBACA,mBACA,uBACA,iBACA,kBACA,uBACA,iBACA,kBACA,gBACA,kBACA,gBACA,iBACA,qBACA,mBACA,kBACA,iBACA,eACA,cACA,aACA,cACA,WACA,kBACA,eACA,iBACA,YACA,cACA,WACA,kBACA,2BACA,sBACA,uBACA,oBACA,mBACA,aACA,eACA,qBACA,eACA,sBACA,gBACA,eACA,eACA,mBACA,eACA,eACA,eACA,cACA,cACA,kBACA,cACA,gBACA,mBACA,gBACA,iBACA,cACA,oBACA,iBACA,oBACA,YACA,YACA,cACA,aACA,YACA,gBACA,mBACA,gBACA,gBACA,cACA,mBACA,gBACA,cACA,kBACA,gBACA,aACA,WACA,cACA,WACA,kBACA,iBACA,aACA,aACA,aACA,qBACA,2BACA,2BACA,oBACA,sBACA,4BACA,4BACA,qBACA,aACA,UACA,cACA,WACA,iBACA,eACA,YACA,wBACA,sBACA,kBACA,YACA,eACA,mBACA,gBACA,gBACA,iBACA,aACA,aACA,gBACA,aACA,mBACA,YACA,aACA,UACA,UACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,sBACA,sBACA,uBACA,oBACA,qBACA,wBACA,kBACA,wBACA,wBACA,yBACA,sBACA,yBACA,yBACA,0BACA,uBACA,gBACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,oBACA,mBACA,iBACA,gBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,kBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,gBACA,iBACA,kBACA,iBACA,0BACA,2BACA,0BACA,uBACA,oBACA,mCACA,6BACA,mCACA,6BACA,oCACA,8BACA,iCACA,2BACA,+BACA,yBACA,qCACA,+BACA,qCACA,+BACA,sCACA,gCACA,mCACA,6BACA,sCACA,gCACA,sCACA,gCACA,uCACA,iCACA,oCACA,8BACA,0BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,yBACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,8BACA,wBACA,2BACA,qBACA,oBACA,6BACA,mBACA,cACA,aACA,sBACA,oBACA,aACA,aACA,eACA,gBACA,YACA,iBACA,eACA,aACA,iBACA,qBACA,eACA,cACA,WACA,kBACA,eACA,YACA,mBACA,YACA,uBACA,oBACA,eACA,cACA,oBACA,qBACA,kBACA,cACA,eACA,YACA,kBACA,iBACA,oBACA,gBACA,gBACA,cACA,aACA,UACA,gBACA,cACA,aACA,cACA,aACA,cACA,UACA,iBACA,cACA,cACA,aACA,kBACA,UACA,eACA,YACA,cACA,cACA,uBACA,qBACA,aACA,eACA,YACA,aACA,iBACA,kBACA,gBACA,kBACA,kBACA,iBACA,kBACA,iBACA,eACA,mBACA,gBACA,eACA,iBACA,oBACA,YACA,aACA,UACA,cACA,WACA,iBACA,iBACA,iBACA,iBACA,iBACA,WACA,kBACA,gBACA,aACA,aACA,mBACA,gBACA,yBACA,4BACA,uBACA,qBACA,sBACA,kBACA,kBACA,eACA,cACA,WACA,gBACA,eACA,gBACA,kBACA,eACA,UACA,kBACA,gBACA,mBACA,uBACA,uBACA,mBACA,sBACA,eACA,sBACA,iBACA,eACA,qBACA,uBACA,eACA,cACA,cACA,kBACA,sBACA,mBACA,gBACA,oBACA,iBACA,cACA,aACA,gBACA,aACA,UACA,YACA,mBACA,gBACA,oBACA,qBACA,qBACA,qBACA,qBACA,oBACA,qBACA,qBACA,sBACA,+BACA,yBACA,wBACA,wBACA,qBACA,oBACA,eACA,UACA,iBACA,kBACA,qBACA,kBACA,WACA,WACA,uBACA,oBACA,sBACA,mBACA,eACA,YACA,cACA,kBACA,sBACA,4BACA,mBACA,oBACA,oBACA,mBACA,oBACA,oBACA,wBACA,wBACA,uBACA,mBACA,YACA,cACA,iBACA,eACA,YACA,YACA,cACA,gBACA,qBACA,kBACA,uBACA,oBACA,YACA,iBACA,kBACA,sBACA,gBACA,uBACA,qBACA,sBACA,oBACA,kBACA,eACA,mBACA,aACA,YACA,gBACA,WACA,YACA,eACA,oBACA,oBACA,mBACA,kBACA,kBACA,iBACA,qBACA,6BACA,uBACA,kBACA,2BACA,eACA,gBACA,cACA,cACA,mBACA,gBACA,aACA,aACA,oBACA,mBACA,eACA,kBACA,YACA,UACA,oBACA,iBACA,aACA,UACA,qBACA,kBACA,eACA,gBACA,aACA,aACA,aACA,UACA,eACA,iBACA,gBACA,iBACA,eACA,cACA,iBACA,eACA,eACA,sBACA,gBACA,gBACA,cACA,gBACA,cACA,eACA,mBACA,iBACA,gBACA,iBACA,eACA,aACA,YACA,WACA,iBACA,iBACA,gBACA,YACA,cACA,eACA,uBACA,oBACA,iBACA,cACA,oBACA,oBACA,kBACA,mBACA,eACA,oBACA,sBACA,yBACA,mBACA,gBACA,mBACA,wBACA,qBACA,aACA,YACA,qBACA,kBACA,eACA,iBACA,eACA,gBACA,YACA,iBACA,cACA,oBACA,iBACA,qBACA,mBACA,YACA,aACA,UACA,eACA,kBACA,YACA,oBACA,iBACA,cACA,cACA,cACA,gBACA,aACA,WACA,cACA,WACA,gBACA,aACA,mBACA,gBACA,cACA,WACA,eACA,eACA,eACA,eACA,iBACA,eACA,kBACA,kBACA,iBACA,eACA,mBACA,eACA,cACA,sBACA,mBACA,cACA,iBACA,eACA,kBACA,cACA,gBACA,uBACA,uBACA,uBACA,uBACA,uBACA,uBACA,oBACA,oBACA,WACA,gBACA,kBACA,eACA,iBACA,iBACA,cACA,aACA,oBACA,iBACA,YACA,YACA,YACA,YACA,cACA,WACA,cACA,WACA,qBACA,kBACA,eACA,qBACA,qBACA,gBACA,aACA,eACA,gBACA,YACA,YACA,WACA,gBACA,kBACA,iBACA,gBACA,eACA,kBACA,gBACA,oBACA,uBACA,iBACA,oBACA,qBACA,iBACA,eACA,iBACA,eACA,gBACA,oBACA,kBACA,iBACA,gBACA,cACA,kBACA,eACA,aACA,YACA,mBACA,iBACA,qBACA,kBACA,cACA,QACA,YACA,YACA,YACA,YACA,SACA,oBACA,cACA,WACA,kBACA,eACA,UACA,qBACA,kBACA,mBACA,sBACA,mBACA,gBACA,kBACA,mBACA,wBACA,oBACA,mBACA,kBACA,iBACA,sBACA,gBACA,eACA,sBACA,iBACA,uBACA,iBACA,mBACA,aACA,gBACA,kBACA,oBACA,cACA,cACA,mBACA,kBACA,gBACA,aACA,SACD,EDvuIA,OAAS,WAAWC,OAAU,aEN9B,OAAOC,OAAW,QAElB,UAAYC,OAAiB,sBAQ7B,IAAMC,GAAyC,CAAC,CAC/C,KAAAC,EACA,UAAAC,EAAY,uBACb,IAAqC,CACpC,IAAMC,EAAOJ,GAAYE,CAAI,EAC7B,OACCH,GAAA,cAAC,SACAA,GAAA,cAACK,EAAA,CAAK,UAAWD,EAAW,CAC7B,CAEF,EACOE,GAAQJ,GFLR,SAASK,GAAWC,EAAoF,CAC9G,OAAOA,KAAQC,IAAcD,KAAQE,EACtC,CAEO,SAASC,GAAaH,EAA+C,CAC3E,OAAOI,GAAgB,SAASJ,CAAsB,CACvD,CAEO,SAASK,GAASL,EAAgD,CACxE,OAAOA,KAAQM,EAChB,CAEO,SAASC,GAAkBP,EAAgD,CACjF,OAAOG,GAAaH,CAAI,CACzB,CASO,IAAMQ,EAAc,CAAC,CAC3B,KAAAC,EACA,UAAAC,EAAY,wBACZ,QAAAC,EACA,UAAAC,EACA,GAAGC,CACJ,IAAsC,CACrC,GAAID,EACH,OAAOE,EAAA,cAAC,KAAQ,GAAGD,EAAO,UAAW,oCAAuCD,CAAU,EAGvF,GAAIT,GAAaM,CAAI,EACpB,OACCK,EAAA,cAACC,GAAA,CAEC,KAAAN,EACA,UAAWO,GAAGN,EAAW,CACxB,wBAAyB,CAACA,CAC3B,CAAC,EACD,QAAAC,EAEF,EAIF,GAAIN,GAASI,CAAI,EAAG,CACnB,IAAMQ,EAAOX,GAAGG,CAAI,EACpB,OACCK,EAAA,cAAC,KAAQ,GAAGD,EAAO,UAAW,oCAC7BC,EAAA,cAACG,EAAA,CACA,UAAWD,GAAGN,EAAW,CACxB,wBAAyB,CAACA,CAC3B,CAAC,EACF,CACD,CAEF,CACA,GAAIX,GAAWU,CAAI,EAAG,CACrB,IAAMQ,EAAON,EAAUT,GAAaO,CAAI,EAAIR,GAAWQ,CAAI,EAC3D,OACCK,EAAA,cAAC,KAAQ,GAAGD,EAAO,UAAW,oCAC7BC,EAAA,cAACG,EAAA,CACA,UAAWD,GAAGN,EAAW,CACxB,wBAAyB,CAACA,CAC3B,CAAC,EACF,CACD,CAEF,CACA,OAAOI,EAAA,cAAAA,EAAA,aAAE,CACV,EGxFA,OAAS,WAAWI,OAAU,aAK9B,IAAMC,GAAkDC,GAEtD,oBAAC,OAAI,UAAU,+CACd,oBAACC,EAAA,CAAkB,GAAGD,EAAO,UAAWF,GAAG,yBAAyB,EAAK,QAAO,GAAC,EACjF,oBAAC,OAAI,UAAWA,GAAG,2BAA2B,EAAG,MAAO,CAAE,aAAc,KAAM,EAAG,CAClF,EAIKI,GAAQH,GJOf,IAAMI,GAA+B,CAAC,CACrC,MAAAC,EACA,QAAAC,EACA,MAAAC,EACA,KAAAC,EAAO,KACP,QAAAC,EACA,UAAAC,EACA,aAAAC,EACA,aAAAC,CACD,IAAM,CACL,IAAMC,EAAcC,GACnB,0IACA,CACC,gBAAiBR,IAAY,UAC7B,wBAAyBA,IAAY,OACrC,eAAgBA,IAAY,QAAUE,IAAS,KAC/C,mBAAoBA,IAAS,KAC7B,YAAaA,IAAS,KACtB,YAAa,CAACE,GAAaF,IAAS,KACpC,OAAQ,CAACE,GAAaF,IAAS,KAC/B,OAAQ,CAACG,GAAgBH,IAAS,KAClC,YAAa,CAACG,GAAgBH,IAAS,KACvC,cAAeE,GAAaC,GAAgBF,EAC5C,iCAAkCJ,IAAU,UAC5C,gCAAiCA,IAAU,YAC3C,4BAA6BA,IAAU,OACvC,0BAA2BA,IAAU,SACrC,4BAA6BA,IAAU,OACvC,8BAA+BA,IAAU,UACzC,gCAAiCA,IAAU,UAC3C,4BAA6BA,IAAU,OACxC,CACD,EACMU,EAAkBD,GAAG,uCAAwC,CAClE,gCAAiCT,IAAU,UAC3C,gCAAiCA,IAAU,YAC3C,4BAA6BA,IAAU,OACvC,0BAA2BA,IAAU,SACrC,4BAA6BA,IAAU,OACvC,8BAA+BA,IAAU,UACzC,gCAAiCA,IAAU,UAC3C,4BAA6BA,IAAU,OACxC,CAAC,EACKW,EAAgDF,GACrD,yKACA,CACC,kBAAmBT,IAAU,UAC7B,kBAAmBA,IAAU,YAC7B,gBAAiBA,IAAU,OAC3B,eAAgBA,IAAU,SAC1B,gBAAiBA,IAAU,OAC3B,iBAAkBA,IAAU,UAC5B,kBAAmBA,IAAU,UAC7B,gBAAiBA,IAAU,OAC5B,CACD,EAEMY,EAAeH,GAAG,6CAA8C,CACrE,yCAA0CT,IAAU,UACpD,yCAA0CA,IAAU,YACpD,qCAAsCA,IAAU,OAChD,mCAAoCA,IAAU,SAC9C,qCAAsCA,IAAU,OAChD,uCAAwCA,IAAU,UAClD,yCAA0CA,IAAU,UACpD,qCAAsCA,IAAU,OACjD,CAAC,EAED,OAAOO,EACNM,EAAA,cAAC,UAAa,GAAGN,EAAc,UAAWC,GACxCH,GAAaQ,EAAA,cAAC,OAAI,UAAWH,EAAiB,KAAK,SAAS,EAC5DR,EACAI,GACAO,EAAA,cAAC,UAEC,aAAAP,EACA,aAAc,UAAUJ,CAAK,GAC7B,UAAW,GAAGI,GAAc,WAAa,EAAE,qBAG5CO,EAAA,cAACC,EAAA,CAAkB,KAAM,QAAS,UAAWH,EAAsB,CACpE,CAEF,EAEAE,EAAA,cAAC,OAAI,UAAWL,GACdJ,GAAWS,EAAA,cAAC,OAAI,UAAWD,EAAc,KAAK,SAAS,EACvD,CAACR,GAAWC,GAAaQ,EAAA,cAAC,OAAI,UAAWH,EAAiB,KAAK,SAAS,EACxER,EACA,CAACE,GAAWE,GACZO,EAAA,cAAC,UAEC,GAAGP,EACH,aAAc,UAAUJ,CAAK,GAC7B,UAAW,GAAGI,GAAc,WAAa,EAAE,qBAG5CO,EAAA,cAACC,EAAA,CAAkB,KAAM,QAAS,UAAWH,EAAsB,CACpE,CAEF,CAEF,EAEOI,GAAQhB,GK7Hf,IAAOiB,GAAQC,GCAf,OAAS,WAAWC,MAAU,aAC9B,OAAOC,GAAoC,cAAAC,OAAkB,QAqC7D,IAAMC,GAAU,CACf,CACC,WAAAC,EAAa,UACb,KAAAC,EAAO,KACP,MAAAC,EACA,KAAAC,EACA,QAAAC,EACA,cAAAC,EACA,UAAAC,EAAY,GACZ,aAAAC,EAAe,UACf,OAAAC,EACA,UAAAC,EAAY,GACZ,UAAAC,EACA,GAAGC,CACJ,EACAC,IACI,CACJ,IAAMC,EAAaC,EAClB,CAAE,qBAAsBd,IAAe,WAAaA,IAAe,QAAS,EAC5E,CAAE,2BAA4BA,IAAe,WAAY,EACzD,CAAE,yBAA0BA,IAAe,aAAc,CAC1D,EACMe,EAAeD,EACpB,CAAE,iBAAkBd,IAAe,SAAU,EAC7C,CAAE,wCAAyCA,IAAe,WAAY,EACtE,CAAE,oCAAqCA,IAAe,aAAc,EACpE,CAAE,gCAAiCA,IAAe,QAAS,CAC5D,EACMgB,EAAaF,EAAG,CAAE,UAAWb,IAAS,IAAK,EAAG,CAAE,UAAWA,IAAS,IAAK,EAAG,CAAE,WAAYA,IAAS,IAAK,CAAC,EAE/G,OAAOO,EAENS,EAAA,cAAC,KAEC,KAAMT,EAAO,KACb,OAAQA,EAAO,OACf,MAAOA,EAAO,MACd,UAAWM,EACV,6YACA,CAAE,SAAUR,CAAU,EACtB,CAAE,6BAA8BL,IAAS,IAAK,EAC9C,CAAE,6BAA8BA,IAAS,IAAK,EAC9C,CAAE,6BAA8BA,IAAS,IAAK,EAC9C,CAAE,+BAAgCA,IAAS,IAAK,EAChD,CAAE,gCAAiCA,IAAS,IAAK,EACjD,CACC,4HACCD,IAAe,SACjB,EACA,CACC,oOACCA,IAAe,WACjB,EACA,CACC,uPACCA,IAAe,aACjB,EACA,CACC,sOACCA,IAAe,QACjB,EACAU,GAAwB,EACzB,EACA,QAASC,EAAM,SAGf,IACAN,IACCI,EACAQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAEhGC,EAAA,cAAC,SAAGZ,CAAc,GAEnBD,GACAG,IAAiB,YACfE,EAGDQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAFhGC,EAAA,cAAAA,EAAA,cAAGb,CAAQ,GAIZD,GACAI,IAAiB,YAChBE,EACAQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAC7F,OAAOb,GAAS,SACnBc,EAAA,cAACC,EAAA,CAAkB,KAAMf,EAAM,UAAWU,EAAc,EAExDI,EAAA,cAACC,EAAA,CAAkB,GAAGf,EAAM,UAAWU,EAAc,GAEtD,CAACV,GAAQ,CAACE,GAAiBI,GAC3BQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAEhGd,EACAC,GACAI,IAAiB,aAChBE,EACAQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAC7F,OAAOb,GAAS,SACnBc,EAAA,cAACC,EAAA,CAAkB,KAAMf,EAAM,UAAWU,EAAc,EAExDI,EAAA,cAACC,EAAA,CAAkB,GAAGf,EAAM,UAAWU,EAAc,GAEtDT,GACAG,IAAiB,aACfE,EAGDQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAFhGC,EAAA,cAAAA,EAAA,cAAGb,CAAQ,EAId,EAEAa,EAAA,cAAC,UACA,KAAK,SACL,UAAWH,EACV,6YACA,CAAE,SAAUR,CAAU,EACtB,CAAE,6BAA8BL,IAAS,IAAK,EAC9C,CAAE,6BAA8BA,IAAS,IAAK,EAC9C,CAAE,6BAA8BA,IAAS,IAAK,EAC9C,CAAE,+BAAgCA,IAAS,IAAK,EAChD,CAAE,gCAAiCA,IAAS,IAAK,EACjD,CACC,4HACCD,IAAe,SACjB,EACA,CACC,oOACCA,IAAe,WACjB,EACA,CACC,uPACCA,IAAe,aACjB,EACA,CACC,sOACCA,IAAe,QACjB,EACAU,GAAwB,EACzB,EACA,IAAKE,EACJ,GAAGD,GAEHN,IACCI,EACAQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAEhGC,EAAA,cAAC,SAAGZ,CAAc,GAEnBD,GACAG,IAAiB,YACfE,EAGDQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAFhGC,EAAA,cAAAA,EAAA,cAAGb,CAAQ,GAKZD,GACAI,IAAiB,YAChBE,EACAQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAC7F,OAAOb,GAAS,SACnBc,EAAA,cAACC,EAAA,CAAkB,KAAMf,EAAM,UAAWU,EAAc,EAExDI,EAAA,cAACC,EAAA,CAAkB,GAAGf,EAAM,UAAWU,EAAc,GAGtD,CAACV,GAAQ,CAACE,GAAiBI,GAC3BQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAEhGd,EACAC,GACAI,IAAiB,aAChBE,EACAQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAC7F,OAAOb,GAAS,SACnBc,EAAA,cAACC,EAAA,CAAkB,KAAMf,EAAM,UAAWU,EAAc,EAExDI,EAAA,cAACC,EAAA,CAAkB,GAAGf,EAAM,UAAWU,EAAc,GAEtDT,GACAG,IAAiB,aACfE,EAGDQ,EAAA,cAAC,OAAI,UAAWH,EAAG,iDAAkDC,EAAcC,CAAU,EAAG,EAFhGC,EAAA,cAAAA,EAAA,cAAGb,CAAQ,EAId,CAEF,EAEMe,GAASC,GAA4CrB,EAAO,EAE3DsB,GAAQF,GCrOf,IAAOG,EAAQA,GCFf,OAAS,WAAWC,OAAU,aA6B9B,IAAMC,GAAU,CAAC,CAChB,WAAAC,EAAa,UACb,KAAAC,EAAO,KACP,MAAAC,EACA,UAAAC,EAAY,GACZ,OAAAC,EACA,UAAAC,EAAY,GACZ,UAAAC,EACA,GAAGC,CACJ,IAAqB,CACpB,IAAMC,EAAaV,GAClB,CAAE,aAAcE,IAAe,WAAaA,IAAe,QAAS,EACpE,CAAE,kBAAmBA,IAAe,WAAY,EAChD,CAAE,gBAAiBA,IAAe,aAAc,CACjD,EACMS,EAAeX,GACpB,CAAE,iBAAkBE,IAAe,SAAU,EAC7C,CAAE,wCAAyCA,IAAe,WAAY,EACtE,CAAE,oCAAqCA,IAAe,aAAc,EACpE,CAAE,gCAAiCA,IAAe,QAAS,CAC5D,EACMU,EAAaZ,GAAG,CAAE,UAAWG,IAAS,IAAK,EAAG,CAAE,UAAWA,IAAS,IAAK,EAAG,CAAE,WAAYA,IAAS,IAAK,CAAC,EAE/G,OACC,oBAAC,UACA,KAAK,SACL,UAAWH,GACV,2YACA,CAAE,SAAUK,CAAU,EACtB,CAAE,4CAA6CF,IAAS,IAAK,EAC7D,CAAE,4CAA6CA,IAAS,IAAK,EAC7D,CAAE,4CAA6CA,IAAS,IAAK,EAC7D,CAAE,8CAA+CA,IAAS,IAAK,EAC/D,CAAE,+CAAgDA,IAAS,IAAK,EAChE,CACC,wEAAyED,IAAe,SACzF,EACA,CACC,uJACCA,IAAe,WACjB,EACA,CACC,8KACCA,IAAe,aACjB,EACA,CACC,+JACCA,IAAe,QACjB,EACAM,GAAwB,EACzB,EACC,GAAGC,GAEHL,CACF,CAEF,EAEOS,GAAQZ,GCtFf,IAAOa,GAAQA,GCDf,OAAOC,OAAW,QAClB,OAAS,WAAWC,OAAU,aAK9B,IAAMC,GAAiC,CAAC,CAAE,UAAAC,CAAU,IAElDH,GAAA,cAAAA,GAAA,cACCA,GAAA,cAAC,KACA,UAAWC,GACV,mEACAE,GAAwB,qCACzB,EACA,KAAK,SACN,CACD,EAIKC,GAAQF,GCpBf,OAAOG,IAAS,WAAAC,OAAe,QAC/B,OAAS,WAAWC,OAAU,aAU9B,IAAMC,GAAiD,CAAC,CACtD,WAAAC,EACA,OAAAC,EACA,SAAAC,EACA,UAAAC,CACF,IAAM,CACJ,IAAMC,EAAIH,EAAS,EAEfD,EAAa,IACfA,EAAa,GAEXA,EAAa,MACfA,EAAa,KAEXC,EAAS,IACXA,EAAS,GAEPA,EAAS,MACXA,EAAS,KAEX,IAAMI,EAAiBR,GAAQ,IAAM,CACnC,IAAMS,EAAc,KAAK,MAAM,EAAIF,EAAI,KAAK,EAAE,EAC9C,OAAQJ,EAAaM,EAAe,EACtC,EAAG,CAACN,EAAYI,CAAC,CAAC,EAEZG,GAASN,EAAS,GAAK,GACvBO,GAAcP,EAAS,GAAK,EAClC,OACEL,GAAA,cAAC,OACC,UAAWE,GAAG,mBAAoBK,GAAaA,CAAS,EACxD,MAAO,CAAE,OAAQ,GAAGK,CAAU,KAAM,MAAO,GAAGA,CAAU,IAAK,GAE7DZ,GAAA,cAAC,OACC,QAAS,GAAGW,CAAK,IAAIA,CAAK,IAAIC,CAAU,IAAIA,CAAU,GACtD,eAAcH,EACd,KAAK,QAELT,GAAA,cAAC,UACC,UAAU,sCACV,GAAI,EACJ,GAAI,EACJ,EAAGK,EACJ,EACDL,GAAA,cAAC,UACC,gBAAiB,GAAGS,CAAc,OAClC,UAAU,2DACV,GAAI,EACJ,GAAI,EACJ,EAAGJ,EACJ,CACH,EACAL,GAAA,cAAC,OACC,UAAWE,GACT,MAAMU,CAAU,UAAUA,CAAU,wEACtC,GAECN,CACH,CACF,CAEJ,EAEOO,GAAQV,GCxEf,IAAOW,GAAQC,GCDf,OAAOC,MAAmB,QAC1B,OAAS,WAAWC,OAAU,aCD9B,OAAOC,OAAmB,QAC1B,OAAS,WAAWC,OAAU,aAe9B,IAAMC,GAAmC,CAAC,CACzC,cAAAC,EAAgB,GAChB,GAAAC,EACA,WAAAC,EACA,WAAAC,EACA,SAAAC,EACA,QAAAC,EACA,MAAAC,CACD,IAAwB,CACvB,IAAMC,EAAcT,GACnB,QACA,CAAE,qEAAsE,CAACE,CAAc,EACvF,CAAE,wDAAyDA,CAAc,EACzE,CAAE,mCAAoCA,GAAiB,CAACI,CAAS,EACjE,CAAE,iDAAkDJ,GAAiBI,CAAS,EAC9E,CAAE,gDAAiDJ,GAAiBK,CAAQ,EAC5E,CAAE,wBAAyB,CAACL,GAAiBK,CAAQ,EACrD,CAAE,qBAAsBF,CAAW,CACpC,EACA,OAAKG,EAEJT,GAAA,cAAC,SAAM,QAASI,EAAI,UAAWM,GAC7BD,EACAJ,GAAcL,GAAA,cAAC,QAAK,UAAU,gBAAe,IAAE,CACjD,EALkB,IAOpB,EAEOW,GAAQT,GC1Cf,IAAOU,EAAQA,GCFf,OAAS,mBAAAC,GAAiB,YAAAC,OAAgB,QAE1C,IAAIC,GAAK,EACT,SAASC,IAAa,CACrB,MAAO,EAAED,EACV,CAEO,IAAME,GAAQ,IAAM,CAC1B,GAAM,CAACF,EAAIG,CAAK,EAAIJ,GAASE,EAAU,EAEvC,OAAAH,GAAgB,IAAM,CACjBE,IAAO,MAAMG,EAAMF,GAAW,CAAC,CACpC,EAAG,CAACD,CAAE,CAAC,EAEAA,GAAM,KAAO,GAAKA,EAAK,MAC/B,EHgBA,IAAMI,GAA+B,CAAC,CACrC,MAAAC,EACA,GAAAC,EACA,WAAAC,EACA,UAAAC,EACA,WAAAC,EACA,QAAAC,EACA,QAAAC,EACA,MAAAC,EACA,SAAAC,EACA,UAAAC,EACA,UAAAC,EACA,GAAGC,CACJ,IAAsB,CACrB,IAAMC,EAAWC,GAAM,EAClBZ,IAAIA,EAAK,MAAMW,CAAQ,IAE5B,IAAME,EAAiBC,GACtB,iGACA,CAAE,6BAA8BV,CAAQ,CACzC,EACMW,EAAgBD,GACrB,0CACA,CAAE,aAAcb,CAAW,EAC3B,CAAE,kDAAmDO,CAAU,EAC/D,CAAE,OAAQA,GAAaH,CAAQ,EAC/BI,CACD,EAEMO,EAAgBC,GAA2C,CAChE,IAAMC,EAAcD,EAAE,OAAO,MACvBE,EAAgBF,EAAE,OAAO,QAC/B,OAAOV,GAAa,YAAcA,EAASW,EAAaC,CAAa,CACtE,EAEA,OACCC,EAAA,cAAC,OAAI,UAAWL,GACfK,EAAA,cAAC,OAAI,UAAU,qBACdA,EAAA,cAAC,SACA,GAAIpB,EACJ,mBAAkB,GAAGA,CAAE,eACvB,KAAMA,EACN,MAAOM,EACP,KAAK,WACL,UAAWO,EACX,SAAUZ,EACV,QAASC,EACT,SAAWe,GAAM,CAChBD,EAAaC,CAAC,CACf,EACC,GAAGP,EACL,CACD,EACAU,EAAA,cAAC,OAAI,UAAU,iBACdA,EAAA,cAAC,SAAM,QAASpB,EAAI,UAAU,6BAC7BoB,EAAA,cAACC,EAAA,CAAW,MAAOtB,EAAO,WAAYI,EAAY,GAAIH,EAAI,CAC3D,EACCK,GACAe,EAAA,cAAC,KAAE,GAAI,GAAGpB,CAAE,eAAgB,UAAU,iBACpCK,CACF,CAEF,CACD,CAEF,EACOiB,GAAQxB,GI/Ff,IAAOyB,GAAQC,GCFf,OAAOC,GAAS,YAAAC,GAAU,aAAAC,OAAiB,QAC3C,OAAS,WAAWC,OAAU,aAC9B,OAAS,YAAYC,OAA0B,oBAwC/C,SAASC,MAAcC,EAAmB,CACzC,OAAOA,EAAQ,OAAO,OAAO,EAAE,KAAK,GAAG,CACxC,CAEA,IAAMC,GAAW,CAAoC,CACpD,MAAAC,EACA,MAAAC,EACA,gBAAAC,EACA,aAAAC,EACA,YAAAC,EACA,SAAAC,EACA,YAAAC,EACA,QAAAC,EACA,WAAAC,EACA,QAAAC,EACA,WAAAC,EACA,GAAAC,EACA,SAAAC,CACD,IAAyB,CACxB,GAAM,CAACC,EAAOC,CAAQ,EAAIC,GAAiB,EAAE,EACvC,CAACC,EAAcC,CAAe,EAAIF,GAAwB,EAE1DG,EAAiBC,GAAyB,CAC3CA,GAASH,GAAgBG,EAAMf,CAAW,IAAMY,EAAaZ,CAAW,EAC3Ea,EAAgB,MAAS,EAEzBA,EAAgBE,CAAK,CAEvB,EAEAC,GAAU,IAAM,CACf,GAAIjB,EAAc,CACjB,IAAMkB,EAAKpB,EAAM,KAAMqB,GAAMA,EAAEpB,CAAe,IAAMC,CAAY,EAChEc,EAAgBI,CAAE,CACnB,CACD,EAAG,CAAClB,CAAY,CAAC,EAEjBiB,GAAU,IAAM,CACf,OAAOf,GAAa,YAAcA,EAASW,CAAY,CACxD,EAAG,CAACA,CAAY,CAAC,EAEjB,IAAMO,EACLV,IAAU,GACPZ,EACAA,EAAM,OAAQuB,GACP,GAAGA,EAAKtB,CAAe,CAAC,GAAG,YAAY,EAAE,SAASW,EAAM,YAAY,CAAC,CAC3E,EACCY,EAAcC,GAAG,yCAAyC,EAC1DC,EAAeD,GAAG,gFAAgF,EAClGE,EAAeF,GACpB,2JACD,EACA,OACCG,EAAA,cAACC,GAAA,CACA,GAAG,MACH,MAAOd,EACP,SAAWe,GAAqBb,EAAca,CAAC,EAC/C,SAAUvB,EACV,SAAUI,EAAW,OAAY,IAEhCZ,GACA6B,EAAA,cAACC,GAAmB,MAAnB,CAAyB,UAAWL,GACpCI,EAAA,cAACG,EAAA,CACA,cAAa,GACb,SAAQ,GACR,MAAOhC,EACP,WAAYU,EACZ,GAAIC,EACJ,QAASF,EACT,WAAYD,EACb,CACD,EAEDqB,EAAA,cAAC,OAAI,UAAU,YACdA,EAAA,cAAC,OAAI,UAAU,YACdA,EAAA,cAACC,GAAmB,MAAnB,CACA,UAAW,kIACVrB,EAAU,iBAAmB,EAC9B,GACA,SAAWwB,GAAUnB,EAASmB,EAAM,OAAO,KAAK,EAChD,aAAeT,GAAkC,GAAGA,EAAOA,EAAKtB,CAAe,EAAI,EAAE,GACrF,YAAaI,EACd,EACCU,GAAgBJ,GAChBiB,EAAA,cAAC,UACA,UAAU,uEACV,QAAS,IAAMZ,EAAgB,MAAS,GAExCY,EAAA,cAACK,EAAA,CAAY,KAAK,QAAQ,UAAU,WAAW,cAAY,OAAO,CACnE,CAEF,EACAL,EAAA,cAACC,GAAmB,OAAnB,CAA0B,UAAWH,GACrCE,EAAA,cAACK,EAAA,CAAY,KAAK,eAAe,UAAU,wBAAwB,cAAY,OAAO,CACvF,EAECX,EAAc,OAAS,GACvBM,EAAA,cAACC,GAAmB,QAAnB,CAA2B,UAAWF,GACrCL,EAAc,IAAI,CAACC,EAAMW,IACzBN,EAAA,cAACC,GAAmB,OAAnB,CACA,IAAK,GAAGN,EAAKpB,CAAW,CAAC,IAAI+B,CAAK,GAClC,MAAOX,EACP,UAAW,CAAC,CAAE,OAAAY,CAAO,IACpBvC,GACC,qDACAuC,EAAS,2BAA6B,eACvC,GAGA,CAAC,CAAE,OAAAA,EAAQ,SAAAC,CAAS,IACpBR,EAAA,cAAAA,EAAA,cACCA,EAAA,cAAC,QAAK,UAAWhC,GAAW,iBAAkBwC,EAAW,gBAAkB,EAAE,GAC3E,GAAGb,EAAKtB,CAAe,CAAC,EAC1B,EAECmC,GACAR,EAAA,cAAC,QACA,UAAWhC,GACV,oDACAuC,EAAS,aAAe,iBACzB,GAEAP,EAAA,cAACK,EAAA,CAAY,KAAK,YAAY,UAAU,UAAU,cAAY,OAAO,CACtE,CAEF,CAEF,CACA,CACF,CAEF,EACAL,EAAA,cAAC,OAAI,UAAU,QACbtB,GACAsB,EAAA,cAAC,QAAK,UAAW,sBAAsBpB,EAAU,eAAiB,eAAe,IAC/EF,CACF,CAEF,CACD,CAEF,EACO+B,GAAQvC,GCtLf,IAAOwC,GAAQC,GCFf,OAAOC,IAAS,cAAAC,OAAkB,QAClC,OAAS,WAAWC,OAAU,aA4C9B,IAAMC,GAAa,CAClB,CACC,KAAAC,EACA,GAAAC,EACA,KAAAC,EACA,MAAAC,EACA,UAAAC,EACA,QAAAC,EACA,WAAAC,EACA,WAAAC,EACA,aAAAC,EACA,SAAAC,EACA,gBAAAC,EAAkB,GAClB,UAAAC,EACA,YAAAC,EACA,GAAGC,CACJ,EACAC,IAGClB,GAAA,cAAC,SAEC,IAAAkB,EACA,KAAAd,EACA,GAAAC,EACA,KAAAC,EACA,MAAAC,EACA,SAAWY,GAAM,CACZP,GAAcA,EAAaO,EAAE,OAAO,KAAK,CAC9C,EACA,UAAWX,EACX,SAAUE,EACV,SAAUC,EACV,YAAaK,GAAe,OAC5B,SAAAH,EACA,eAAgBJ,EAChB,gBAAiBE,EACjB,UAAWT,GACV,kKACAO,EAAU,oDAAsD,GAChEC,EAAa,uDAAyD,GACtEK,CACD,EACA,GAAGE,EAEL,EAIIG,GAAcnB,GAA+CE,EAAU,EACtEkB,GAAQD,GC7Ff,IAAOE,EAAQA,GCFf,OAAOC,OAAW,QAElB,OAAS,WAAWC,OAAU,aAe9B,IAAMC,GAAuD,CAAC,CAC7D,KAAAC,EACA,SAAAC,EACA,MAAAC,EAAQ,QACR,QAAAC,EAAU,GACV,eAAAC,EACA,YAAAC,CACD,IAAM,CACL,IAAMC,EAAc,IAAM,CACzBF,GAAkBA,EAAe,CAClC,EACMG,EAAcT,GACnB,iLACA,CACC,iCAAkCI,IAAU,OAC7C,EACA,CACC,iCAAkCA,IAAU,MAC7C,EACA,CACC,iBAAkB,CAACE,CACpB,EACA,CACC,oBAAqBA,GAAkB,CAACD,CACzC,EACA,CACC,kBAAmBA,GAAWD,IAAU,OACzC,EACA,CACC,kBAAmBC,GAAWD,IAAU,MACzC,EACA,CACC,aAAc,CAACC,CAChB,EACA,CACC,WAAYA,CACb,CACD,EACA,OACCK,GAAA,cAAC,UAAa,GAAGH,EAAa,UAAWE,EAAa,QAASD,GAC7DN,GAAQQ,GAAA,cAACC,EAAA,CAAkB,GAAGT,EAAM,UAAW,gBAAmB,EAClEC,GAAYO,GAAA,cAAC,YAAMP,CAAS,CAC9B,CAEF,EAEOS,GAAQX,GC7Df,IAAOY,GAAQA,GCAf,OAAOC,OAAW,QAClB,OAAS,WAAWC,OAAU,aAyB9B,IAAMC,GAA+B,CAAC,CACrC,MAAAC,EACA,GAAAC,EACA,KAAAC,EACA,WAAAC,EAAa,GACb,UAAAC,EAAY,GACZ,WAAAC,EAAa,GACb,QAAAC,EAAU,GACV,QAAAC,EACA,SAAAC,EACA,QAAAC,EACA,MAAAC,CACD,IAAM,CACL,IAAMC,EAAWC,GAAM,EAClBX,IAAIA,EAAK,SAASU,CAAQ,IAC1BT,IAAMA,EAAOD,GAElB,IAAMY,EAAgBf,GAAG,gEAAiE,CACzF,6BAA8BQ,CAC/B,CAAC,EACKQ,EAAgBhB,GAAG,4BAA6B,CAAE,aAAcK,CAAW,CAAC,EAC5EY,EAAgBC,GAA2C,CAChE,IAAMC,EAAcD,EAAE,cAAc,MAC9BE,EAAgBF,EAAE,cAAc,QACtC,OAAOR,GAAa,YAAcA,EAASS,EAAaC,CAAa,CACtE,EACMC,EAAeH,GAA0C,CAC9D,IAAMC,EAAcD,EAAE,cAAc,MAC9BE,EAAgBF,EAAE,cAAc,QACtC,OAAOP,GAAY,YAAcA,EAAQQ,EAAaC,CAAa,CACpE,EACA,OACCrB,GAAA,cAAC,OAAI,UAAWiB,GACfjB,GAAA,cAAC,OAAI,UAAU,yBACdA,GAAA,cAAC,SACA,GAAII,EACJ,mBAAkB,GAAGA,CAAE,eACvB,KAAMC,EACN,KAAK,QACL,MAAOQ,EACP,UAAWG,EACX,SAAUV,EACV,eAAgBC,EAChB,SAAWY,GAAM,CAChBD,EAAaC,CAAC,CACf,EACA,QAAUA,GAAM,CACfG,EAAYH,CAAC,CACd,EACD,CACD,EACAnB,GAAA,cAAC,OAAI,UAAU,gBACdA,GAAA,cAACuB,EAAA,CAAW,MAAOpB,EAAO,WAAYK,EAAY,GAAIJ,EAAI,EACzDM,GACAV,GAAA,cAAC,KAAE,GAAI,GAAGI,CAAE,eAAgB,UAAU,iBACpCM,CACF,CAEF,CACD,CAEF,EAEOc,GAAQtB,GCzFf,IAAOuB,GAAQC,GCFf,OAAOC,IAAS,aAAAC,GAAW,YAAAC,OAAgB,QAG3C,OAAS,WAAWC,OAAU,aA4B9B,IAAMC,GAAiC,CAAC,CACvC,MAAAC,EACA,GAAAC,EACA,KAAAC,EACA,QAAAC,EACA,SAAAC,EACA,WAAAC,EACA,QAAAC,EACA,WAAAC,EACA,MAAAC,EACA,UAAAC,CACD,IAAM,CACL,GAAM,CAACC,EAAgBC,CAAiB,EAAIC,GAAiBJ,GAASL,EAAQ,CAAC,EAAE,KAAK,EAChFU,EAAWC,GAAM,EAClBb,IAAIA,EAAK,UAAUY,CAAQ,IAC3BX,IAAMA,EAAOD,GAElBc,GAAU,IAAM,CACYP,GAAU,MACpCG,EAAkBH,CAAK,CAEzB,EAAG,CAACA,CAAK,CAAC,EAEV,IAAMQ,EAAgBC,GAA4C,CACjE,IAAMC,EAAcD,EAAE,OAAO,MAC7B,OAAOb,GAAY,YAAcA,EAASc,CAAW,EACrDP,EAAkBO,CAAW,CAC9B,EACMC,EAAerB,GAAG,CAAE,aAAcO,CAAW,CAAC,EACpD,OACCe,GAAA,cAAC,OAAI,UAAWD,GACdnB,GACAoB,GAAA,cAACC,EAAA,CACA,cAAa,GACb,SAAQ,GACR,MAAOrB,EACP,WAAYO,EACZ,GAAIN,EACJ,QAASK,EACT,WAAYD,EACb,EAEDe,GAAA,cAAC,UACA,GAAInB,EACJ,KAAMC,EACN,UAAWJ,GACV,4EACA,mEACA,CAAE,iBAAkBQ,CAAQ,EAC5B,CAAE,kBAAmB,CAACA,CAAQ,EAC9BG,CACD,EACA,SAAUO,EACV,SAAUX,EACV,MAAOK,GAENP,EAAQ,IAAI,CAAC,CAAE,MAAAK,EAAO,MAAAR,CAAM,IAE3BoB,GAAA,cAAC,UAAO,IAAKZ,EAAO,MAAOA,GACzBR,CACF,CAED,CACF,CACD,CAEF,EAEOsB,GAAQvB,GCjGf,IAAOwB,GAAQC,GCFf,OAAOC,GAAgC,SAAAC,OAAuB,QAC9D,OAAS,WAAWC,OAAU,aCD9B,OAAOC,OAAmB,QAU1B,IAAMC,GAAuC,CAAC,CAAE,QAAAC,EAAU,EAAG,MAAAC,CAAM,IAEjEH,GAAA,cAAC,OAAI,UAAU,qDACdA,GAAA,cAAC,OAAI,UAAU,gBAAgBE,CAAQ,GACrCC,GAAS,GAAK,GACfH,GAAA,cAAAA,GAAA,cACCA,GAAA,cAAC,WAAI,GAAC,EACNA,GAAA,cAAC,OAAI,UAAU,cAAcG,CAAM,CACpC,CAEF,EAGKC,EAAQH,GDsBf,IAAMI,GAAqC,CAAC,CAC3C,GAAAC,EACA,KAAAC,EACA,MAAAC,EACA,QAAAC,EACA,WAAAC,EACA,WAAAC,EACA,aAAAC,EACA,QAAAC,EACA,cAAAC,EACA,UAAAC,EACA,KAAAC,EAAO,GACP,KAAAC,EAAO,GACP,SAAAC,EACA,MAAAC,EACA,YAAAC,EACA,UAAAC,EACA,IAAAC,EACA,GAAGC,CACJ,IAAM,CACL,IAAMC,EAAWC,GAAM,EAEjBC,EAAoBC,GAAG,qBAAsB,CAAE,gBAAiB,CAAClB,CAAQ,EAAG,CAAE,eAAgBA,CAAQ,CAAC,EAI7G,OAFKH,IAAIA,EAAK,MAAMkB,CAAQ,IAEvBhB,EAkCJoB,EAAA,cAAC,WACAA,EAAA,cAACC,EAAA,CACA,cAAa,GACb,SAAQ,GACR,MAAOrB,EAAM,QACb,WAAYE,EACZ,GAAIJ,EACJ,QAASG,EACT,WAAYE,EACb,EAEAiB,EAAA,cAAC,WACAA,EAAA,cAAC,YACA,IAAKN,EACL,UAAWP,EACX,SAAWe,GAA8C,CACxD,IAAMC,EAAcD,EAAE,OAAO,MACzBZ,GACHA,EAASa,CAAW,CAEtB,EACA,KAAMf,EACN,KAAMT,EACN,GAAID,EACJ,KAAMW,EACN,UAAWU,GACV,gFACA,CAAE,mBAAoB,CAAClB,CAAQ,EAC/B,CACC,oDAAqDA,CACtD,EACAY,CACD,EACA,SAAUV,EACV,aAAcC,EACd,MAAOO,EACP,YAAaC,EACZ,GAAGG,EACL,CACD,EACAK,EAAA,cAAC,OAAI,UAAU,2BACdA,EAAA,cAAC,OAAI,UAAU,QAAQf,GAAWe,EAAA,cAAC,QAAK,UAAWF,GAAoBb,CAAQ,CAAQ,EACtFC,GACAc,EAAA,cAAC,OAAI,UAAU,YACdA,EAAA,cAACI,EAAA,CAAa,QAAS,OAAOb,GAAO,MAAM,EAAG,MAAOJ,EAAW,CACjE,CAEF,CACD,EAhFCa,EAAA,cAAC,YACA,IAAKN,EACL,UAAWP,EACX,SAAWe,GAA8C,CACxD,IAAMC,EAAcD,EAAE,OAAO,MACzBZ,GACHA,EAASa,CAAW,CAEtB,EACA,KAAMf,EACN,KAAMT,EACN,GAAID,EACJ,KAAMW,EACN,UAAWU,GACV,qFACA,CAAE,mBAAoB,CAAClB,CAAQ,EAC/B,CACC,oDAAqDA,CACtD,EACAY,CACD,EACA,SAAUV,EACV,aAAcC,EACd,MAAOO,EACP,YAAaC,EACZ,GAAGG,EACL,CAwDH,EAEOU,GAAQ5B,GE3Jf,IAAO6B,GAAQC,GCFf,OAAOC,GAAS,cAAAC,GAAY,aAAAC,GAAW,SAAAC,GAAO,UAAAC,GAAQ,YAAAC,OAAgB,QACtE,OAAS,WAAWC,OAAU,aA0C9B,IAAMC,GAAY,CACjB,CACC,MAAAC,EACA,UAAAC,EACA,QAAAC,EACA,GAAAC,EACA,KAAAC,EACA,WAAAC,EACA,KAAAC,EACA,aAAAC,EACA,WAAAC,EACA,WAAAC,EACA,QAAAC,EACA,cAAAC,EACA,UAAAC,EACA,aAAAC,EACA,YAAAC,EACA,MAAOC,EACP,UAAAC,EACA,GAAGC,CACJ,EACAC,IACI,CACJ,IAAMC,EAAWC,GAAM,EACjB,CAACC,EAASC,CAAU,EAAIC,GAAkB,EAAQtB,CAAU,EAE5D,CAACuB,EAAOC,CAAQ,EAAIF,GAAiBR,GAAiBR,GAAgB,EAAE,EACxEmB,EAAWC,GAAyB,IAAI,EAE9CC,GAAU,IAAM,CAEoBb,GAAkB,MACpDU,EAASV,CAAa,CAExB,EAAG,CAACA,CAAa,CAAC,EAGlBa,GAAU,IAAM,CACf,IAAMC,EAAQH,EAAS,QACnB,CAACG,GAASR,IAAY,QAAab,IACnCa,EACHQ,EAAM,MAAM,EAEZA,EAAM,KAAK,EAEb,EAAG,CAACR,CAAO,CAAC,EAGZO,GAAU,IAAM,CACDF,EAAS,OAExB,EAAG,CAACnB,CAAY,CAAC,EAEjB,IAAMuB,EAAmB,IAAMR,EAAW,EAAI,EAGxCS,EAAkB,IAAMT,EAAW,EAAK,EAE9C,OAAKnB,IAAIA,EAAK,SAASgB,CAAQ,IAC1Bf,IAAMA,EAAOD,GAGjB6B,EAAA,cAAC,OAAI,UAAU,YACdA,EAAA,cAACC,EAAA,CACA,cAAe,GACf,MAAOjC,EACP,WAAYK,EACZ,GAAIF,EACJ,QAASD,EACT,SAAU,GACV,WAAYM,EACb,EACAwB,EAAA,cAACE,EAAA,CACA,QAASJ,EACT,OAAQC,EACR,aAAeI,GAAc,CAC5BV,EAASU,CAAC,EACVtB,EAAasB,CAAC,CACf,EACA,IAAKjB,EACL,KAAMZ,EACN,KAAMF,EACN,GAAID,EACJ,UAAWiC,GACV,gEACA,CAAE,kBAAmB,CAACf,GAAW,CAACnB,CAAQ,EAC1C,CACC,2EAA4EmB,GAAW,CAACnB,CACzF,EACA,CACC,iDAAkDA,CACnD,EACAc,CACD,EACA,WAAYR,EACZ,WAAYC,EACZ,MAAOe,EACP,aAAcjB,EACd,UAAWK,EACX,YAAaE,EACZ,GAAGG,EACL,EACAe,EAAA,cAAC,OAAI,UAAU,2BACdA,EAAA,cAAC,OAAI,UAAU,QACbtB,GACAsB,EAAA,cAAC,QAAK,UAAWI,GAAG,qBAAsBlC,EAAU,eAAiB,eAAe,GAClFQ,CACF,CAEF,EACCC,GACAqB,EAAA,cAAC,OAAI,UAAU,YACdA,EAAA,cAACK,EAAA,CAAa,QAAS,OAAOb,GAAO,MAAM,EAAG,MAAOZ,EAAW,CACjE,CAEF,CACD,CAEF,EAEM0B,GAAaC,GAA8CxC,EAAS,EACnEyC,GAAQF,GChKf,IAAOG,GAAQA,GCJf,OAAOC,IAAS,aAAAC,GAAW,YAAAC,OAAgB,QAC3C,OAAS,WAAWC,OAAU,aAC9B,OAAS,UAAAC,OAAc,oBAsBvB,IAAMC,GAA6C,CAAC,CACnD,UAAAC,EACA,SAAAC,EACA,MAAAC,EACA,kBAAAC,EACA,KAAAC,EACA,GAAAC,EACA,QAAAC,EAAU,OACV,SAAAC,EACA,SAAAC,EACA,eAAAC,CACD,IAAM,CACL,GAAM,CAACC,EAASC,CAAU,EAAIC,GAAkBZ,CAAS,EACzD,OAAAa,GAAU,IAAMF,EAAWX,CAAS,EAAG,CAACA,CAAS,CAAC,EAGjDc,GAAA,cAACC,GAAO,MAAP,CAAa,GAAI,MAAO,UAAWC,GAAG,0BAA2BP,CAAc,GAC9EP,IAAUA,EAAM,YAAc,QAAU,CAACA,GAAO,YAChDY,GAAA,cAACC,GAAO,MAAP,CAAa,UAAWb,EAAM,WAAYA,EAAM,IAAK,EAEvDY,GAAA,cAACC,GAAA,CACA,KAAMX,EACN,GAAIC,EACJ,QAASK,EACT,SAAWO,GAAe,CACzBhB,EAASgB,CAAC,EACVN,EAAWM,CAAC,CACb,EACA,UAAWD,GACV,CAAE,yBAA0BV,IAAY,QAAS,YAAaA,IAAY,MAAO,EACjFI,GAAWF,EAAW,gBAAkBE,EAAU,gBAAkB,cACpE,+TACD,EACA,SAAUF,GAETL,GAAqBW,GAAA,cAAC,QAAK,UAAU,WAAWX,CAAkB,EACnEW,GAAA,cAAC,QACA,UAAWE,GACVN,EAAU,qBAAuB,oBACjC,CACC,uCAAwCJ,IAAY,QACpD,sBAAuBI,GAAWJ,IAAY,OAC/C,EACA,4GACD,GAECC,GAAYO,GAAA,cAACI,EAAA,CAAa,GAAGX,EAAU,UAAW,wBAAyB,CAC7E,CACD,EACCL,GAASA,EAAM,YAAc,SAC7BY,GAAA,cAACC,GAAO,MAAP,CAAa,UAAWb,EAAM,WAAYA,EAAM,IAAK,CAExD,CAEF,EAEOiB,GAAQpB,GC9Ef,IAAOqB,GAAQC,GCFf,OAAOC,MAAW,QAClB,OAAS,WAAWC,OAAU,aAiB9B,IAAMC,GAA0DC,GAAoC,CACnG,GAAM,CAAE,GAAAC,EAAI,gBAAAC,EAAiB,QAAAC,EAAS,SAAAC,EAAU,QAAAC,EAAS,MAAAC,EAAO,MAAAC,EAAO,aAAAC,EAAc,GAAGC,CAAM,EAAIT,EAE5F,CAACU,EAAUC,CAAW,EAAIC,EAAM,SAAkB,CAAC,CAACL,CAAK,EAE/D,OACCK,EAAA,cAAAA,EAAA,cACCA,EAAA,cAAC,OAAI,UAAWC,GAAG,iBAAkBX,GAAoC,EAAE,GAC1EU,EAAA,cAACE,EAAA,CACA,GAAIb,EACJ,QAASI,EACT,MAAOE,EACP,aAAeQ,GAAM,CACpBJ,EAAY,CAAC,CAACI,CAAC,EACXP,GAAcA,EAAaO,CAAC,CACjC,EACC,GAAGN,EACL,EACAG,EAAA,cAAC,SACA,UAAWC,GACV,gGACAH,EAAW,mDAAqD,YAChE,+IACA,+HAEAL,GAAW,eACZ,EACA,QAASJ,GAERK,EAAM,QACNF,GAAYQ,EAAA,cAAC,QAAK,UAAU,qBAAoB,GAAC,CACnD,EAEAA,EAAA,cAAC,OAAI,UAAU,2BACdA,EAAA,cAAC,OAAI,UAAU,uBACbT,GACAS,EAAA,cAAC,QAAK,UAAWC,GAAG,qBAAsBR,EAAU,eAAiB,eAAe,GAClFF,CACF,CAEF,CACD,CACD,CACD,CAEF,EAEOa,GAAQjB,GC/Df,IAAOkB,GAAQA,GCFf,OAAOC,MAAW,QAClB,OAAS,WAAWC,OAAU,aAa9B,IAAMC,GAAgEC,GAAuC,CAC5G,GAAM,CAAE,GAAAC,EAAI,gBAAAC,EAAiB,QAAAC,EAAS,SAAAC,EAAU,QAAAC,EAAS,MAAAC,EAAO,MAAAC,EAAO,aAAAC,EAAc,SAAAC,EAAU,GAAGC,CAAM,EAAIV,EAEtG,CAACW,EAAUC,CAAW,EAAIC,EAAM,SAAkB,CAAC,CAACN,CAAK,EAE/D,OACCM,EAAA,cAAC,OAAI,UAAWC,GAAG,iBAAkBZ,GAAoC,EAAE,GAC1EW,EAAA,cAACE,GAAA,CACA,GAAId,EACJ,QAASI,EACT,MAAOE,EACN,GAAGG,EACJ,SAAWM,GAAM,CAChBJ,EAAY,CAAC,CAACI,CAAC,EACXR,GAAcA,EAAaQ,CAAC,CACjC,EACA,MAAO,OACR,EACAH,EAAA,cAAC,SACA,UAAWC,GACV,gGACAH,EAAW,mDAAqD,YAChE,+IACA,+HAEAN,GAAW,eACZ,EACA,QAASC,GAAO,SAAWL,GAE1BK,GAAO,QACPF,GAAYS,EAAA,cAAC,QAAK,UAAU,qBAAoB,GAAC,CACnD,EAEAA,EAAA,cAAC,OAAI,UAAU,2BACdA,EAAA,cAAC,OAAI,UAAU,uBACbV,GACAU,EAAA,cAAC,QAAK,UAAWC,GAAG,qBAAsBT,EAAU,eAAiB,eAAe,GAClFF,CACF,CAEF,CACD,CACD,CAEF,EAEOc,GAAQlB,GC1Df,IAAOmB,GAAQA,GCFf,OAAOC,OAAmB,QAC1B,OAAS,WAAWC,OAAU,aCD9B,OAAOC,GAAyB,aAAAC,GAAW,WAAAC,GAAS,UAAAC,GAAQ,YAAAC,OAAgB,QAC5E,OAAS,WAAWC,MAAU,aAC9B,OACC,eAAAC,GACA,cAAAC,GACA,UAAAC,GACA,cAAAC,GACA,WAAAC,GACA,YAAAC,GACA,mBAAAC,GACA,wBAAAC,GACA,iBAAAC,GACA,SAAAC,GACA,kBAAAC,GACA,gBAAAC,GACA,uBAAAC,GAEA,qBAAAC,OACM,qBAuCA,IAAMC,EAAoB,CAChC,eAAgB,8BAChB,eACC,mHACD,cACC,kJACD,oBAAqB,0FACrB,gBACC,2GACD,cAAe,eACf,qBAAsB,2BACvB,EAGMC,GAAqC,CAAC,CAC3C,MAAAC,EACA,GAAAC,EACA,MAAAC,EACA,eAAAC,EACA,eAAAC,EACA,cAAAC,EACA,oBAAAC,EACA,gBAAAC,EACA,cAAAC,EACA,qBAAAC,EACA,sBAAAC,EACA,UAAAC,EAAY,eACZ,cAAAC,EACA,SAAAC,EACA,QAAAC,EACA,OAAAC,EACA,GAAGC,CACJ,IAA0C,CACzC,GAAM,CAACC,EAAQC,CAAS,EAAIC,GAAS,EAAK,EACpC,CAACC,EAAYC,CAAa,EAAIF,GAA2B,IAAI,EAC7D,CAACG,EAAaC,CAAc,EAAIJ,GAAwB,IAAI,EAE5DK,EAAUC,GAAqC,CAAC,CAAC,EAGjD,CAAE,KAAAC,EAAM,eAAAC,EAAgB,QAAAC,CAAQ,EAAIC,GAAY,CACrD,KAAMZ,EACN,aAAea,GAAkB,CAChCN,EAAQ,QAAU,CAAC,EACnBD,EAAe,IAAI,EACnBL,EAAUY,CAAI,CACf,EACA,UAAAnB,EACA,WAAY,CACXoB,GAAOnB,GAAiB,EAAE,EAC1BoB,GAAc,CACb,kBAAmB,CAACrB,EAAW,eAAgB,aAAc,QAAQ,CACtE,CAAC,EACDsB,GAAM,CAAE,aAAc,UAAW,CAAC,CACnC,EACA,qBAAsBC,EACvB,CAAC,EACKC,EAAQC,GAASR,CAAO,EACxBS,GAAUC,GAAWV,CAAO,EAC5BW,EAAOC,GAAQZ,CAAO,EACtBa,GAAiBC,GAAkBd,EAAS,CACjD,QAAAJ,EACA,YAAAF,EACA,WAAaqB,GAAyB,CACjCA,IAAU,MAAQnB,EAAQ,QAAQmB,CAAK,IAC1CpB,EAAeoB,CAAK,EACpBnB,EAAQ,QAAQmB,CAAK,GAAG,MAAM,EAEhC,CACD,CAAC,EAEK,CAAE,kBAAAC,GAAmB,iBAAAC,GAAkB,aAAAC,EAAa,EAAIC,GAAgB,CAC7EZ,EACAE,GACAE,EACAE,EACD,CAAC,EAEDO,GAAU,IAAM,CACX/B,EACHH,GAAWA,EAAQ,EAEnBC,GAAUA,EAAO,CAEnB,EAAG,CAACE,EAAQF,EAAQD,CAAO,CAAC,EAE5B,IAAMmC,GAAiBC,GACtB,IACClD,EAAM,IAAI,CAACmD,EAAWC,KACdD,EAAU,IAAI,CAACE,GAAMC,KAAc,CACzC,GAAM,CAAE,IAAAC,GAAK,MAAArD,GAAO,KAAAsD,EAAM,QAAAC,GAAS,aAAAC,GAAc,aAAAC,EAAc,QAAAC,GAAS,GAAGC,EAAK,EAAIR,GAC9ES,GAAS1C,GAAcA,IAAemC,GACtCQ,GAAYC,EACjBlE,EAAkB,cAClBO,EACA,0EACA,CACC,eAAgBsD,CACjB,EACA,CACC,gBAAiB,CAACA,CACnB,EACA,CACC,4BAA6BG,EAC9B,EACAA,GAASE,EAAGlE,EAAkB,oBAAqBQ,CAAmB,EAAI,GAC1E,CACC,8CAA+CwD,IAAUH,CAC1D,CACD,EACA,OACCM,EAAA,cAAC,UAEC,IAAKV,GACL,GAAIA,GAAI,SAAS,EACjB,UAAWS,EAAGD,GAAW,QAAQ,EACjC,GAAGF,GACH,GAAGf,GAAa,EAChB,QAAS,IAAM,CACdc,IAAWA,GAAQ,EACnB,WAAW,IAAM,CAEhB1C,EAAU,EAAK,CAChB,EAAG,GAAG,CACP,EAED,IAAMgD,IAAS,CAEV1C,EAAQ,QAAQ,KAAM6B,IAASA,IAAM,KAAOE,EAAG,GAGnD/B,EAAQ,QAAQ,KAAK0C,EAAI,CAC1B,EACA,IAAKX,IAELU,EAAA,cAAC,OAAI,UAAWD,EAAGlE,EAAkB,qBAAsBW,CAAoB,GAC7EgD,KAAYC,KAAiB,WAAaA,KAAiB,SAC3DO,EAAA,cAAAA,EAAA,cAAGR,EAAQ,EAEXD,IACCE,KAAiB,WAAaA,KAAiB,UAC/C,OAAOF,GAAS,SAChBS,EAAA,cAACE,EAAA,CAEC,KAAMX,EACN,UAAWQ,EACV,CACC,eAAgBL,CACjB,EACA,kBACD,EAEF,EAEAM,EAAA,cAACE,EAAA,CAEC,GAAGX,EACH,UAAWQ,EACVR,EAAK,UACL,CACC,eAAgBG,CACjB,EACA,kBACD,EAEF,GAEFM,EAAA,cAAC,OAAI,UAAU,qBAAqB/D,EAAM,EACzCuD,IAAWC,KAAiB,YAAcO,EAAA,cAAAA,EAAA,cAAGR,EAAQ,EACrDD,GACAE,KAAiB,aAChB,OAAOF,GAAS,SAChBS,EAAA,cAACE,EAAA,CAEC,KAAMX,EACN,UAAWQ,EACV,CACC,eAAgBL,CACjB,EACA,kBACD,EAEF,EAEAM,EAAA,cAACE,EAAA,CAEC,GAAGX,EACH,UAAWQ,EACVR,EAAK,UACL,CACC,eAAgBG,CACjB,EACA,kBACD,EAEF,EAEH,CACD,CAEF,CAAC,CACD,EACF,CAACvC,EAAYd,EAAqBwC,GAAcrC,EAAsBJ,EAAeL,CAAK,CAC3F,EAEM,CAAE,UAAAoE,GAAW,OAAQC,EAAiB,EAAIC,GAAoB1C,EAAS,CAC5E,SAAU,CACT,KAAM,IACN,MAAO,GACR,EACA,QAAS,CACR,QAAS,EACT,MAAO,EACR,EACA,KAAM,CACL,QAAS,EACT,MAAO,GACR,CACD,CAAC,EACD,OACCqC,EAAA,cAAC,OAEC,UAAWD,EAAGlE,EAAkB,eAAgBK,CAAc,EAC9D,KAAM,WACN,YAAa,GAAGF,CAAE,QAClB,gBAAiBgB,EACjB,gBAAiB,UACjB,GAAGD,GAGJiD,EAAA,cAAC,UAEC,IAAKvC,EAAK,aACV,UAAWsC,EAAGlE,EAAkB,gBAAiBS,CAAe,EAChE,QAAS,IAAM,CACdW,EAAU,CAACD,CAAM,CAClB,EACA,KAAM,SACN,SAAUJ,EACV,GAAG+B,GAAkB,GAGrBlC,EACAuD,EAAA,cAAC,QAAK,UAAU,IAAIvD,CAAsB,EAE1CuD,EAAA,cAAAA,EAAA,cACCA,EAAA,cAAC,QAAK,UAAU,QAAQ/D,CAAM,EAC9B+D,EAAA,cAACE,EAAA,CACA,KAAK,kBACL,UAAWH,EAAGlE,EAAkB,cAAeU,CAAa,EAC7D,CACD,CAEF,EAEC4D,IAAapE,EAAM,OAAS,GAAKiB,GACjCgD,EAAA,cAACM,GAAA,CAEC,YAAa/C,GAGdyC,EAAA,cAACO,GAAA,KACAP,EAAA,cAACQ,GAAA,CAAqB,QAAS7C,EAAS,MAAO,IAC9CqC,EAAA,cAAC,OACC,GAAGpB,GAAiB,EACrB,UAAWmB,EAAGlE,EAAkB,eAAgBM,CAAc,EAC9D,IAAKsB,EAAK,YACV,kBAAiBxB,EACjB,MAAO,CACN,SAAU0B,EAAQ,SAClB,IAAK,KAAK,MAAMA,EAAQ,GAAK,CAAC,EAC9B,KAAM,KAAK,MAAMA,EAAQ,GAAK,CAAC,EAC/B,MAAO,cACP,SAAU,iCACV,GAAGD,EACH,GAAG0C,EACJ,GAECpB,EACF,CACD,CACD,CACD,CAEF,CAEF,EAEOyB,GAAQ3E,GCtVf,IAAO4E,GAAQA,GFcf,IAAMC,GAA2C,CAAC,CAAE,OAAAC,EAAQ,SAAAC,EAAU,UAAAC,EAAY,aAAc,cAAAC,CAAc,IAE5GC,GAAA,cAAC,OAAI,UAAU,+IACdA,GAAA,cAACC,EAAA,CAEC,GAAGL,EACH,UAAWM,GACVN,EAAO,UACP,yXACD,EAEF,EACAI,GAAA,cAAC,OACA,UAAWE,GACV,aACAN,EAAO,aAAe,UAAY,iBAAmB,GACrDA,EAAO,aAAe,YAAc,gBAAkB,GACtDA,EAAO,aAAe,cAAgB,cAAgB,EACvD,EACA,EACDI,GAAA,cAACG,GAAA,CAEC,GAAIN,EACJ,sBACCG,GAAA,cAACI,EAAA,CAEC,KAAM,kBACN,UAAWF,GAAG,UAAW,CACxB,aAAcN,EAAO,aAAe,UACpC,kBAAmBA,EAAO,aAAe,YACzC,gBAAiBA,EAAO,aAAe,aACxC,CAAC,EAEH,EAED,gBAAiBM,GAChB,sHACAN,EAAO,aAAe,UACnBM,GACA,sJACA,yHACA,EACA,GACHN,EAAO,aAAe,YACnBM,GACA,2JACA,wHACA,EACA,GACHN,EAAO,aAAe,cACnBM,GACA,kHACA,sHACA,EACA,EACJ,EACA,cAAeH,GAAiB,CAC/B,UAAW,EACX,SAAU,GACV,cAAe,CAChB,EACA,UAAAD,EAEF,EACAE,GAAA,cAAC,OAAI,UAAU,gGAAgG,CAChH,EAGKK,GAAQV,GGnFf,IAAOW,GAAQA,GCFf,OAAOC,MAAW,QAIlB,OAAS,WAAWC,OAAU,aAiB9B,IAAMC,GAAmE,CAAC,CACzE,KAAAC,EACA,UAAAC,EACA,eAAAC,EACA,sBAAAC,EACA,QAAAC,EACA,OAAAC,CACD,IAEEC,EAAA,cAAC,OAAI,UAAU,sGACdA,EAAA,cAACC,GAAA,CAAgB,GAAGP,EAAM,EACzBC,GAAaK,EAAA,cAAC,KAAE,UAAU,oCAAoCL,CAAU,EACxEE,GAGAG,EAAA,cAAC,KAAE,UAAU,gDAAgDJ,CAAe,EAE5EE,EAAQ,OAAS,EACjBE,EAAA,cAAC,OAAI,UAAWR,GAAG,kBAAmBO,EAAS,GAAK,uBAAuB,GACzED,EAAQ,IAAI,CAACI,EAAQC,IACrBH,EAAA,cAACI,EAAA,CAAa,GAAGF,EAAU,IAAKA,EAAO,MAAM,WAAW,IAAK,GAAG,EAAG,CACnE,CACF,EAEAF,EAAA,cAAAA,EAAA,aAAE,CAEJ,EAIKK,GAAQZ,GChDf,IAAOa,GAAQA,GCFf,OAAOC,GAAS,mBAAAC,GAAiB,UAAAC,GAAQ,YAAAC,OAAgB,QACzD,OAAS,WAAWC,OAAU,aAoB9B,IAAMC,GAA2D,CAAC,CACjE,aAAAC,EACA,MAAAC,EACA,KAAAC,EACA,GAAAC,EACA,YAAAC,EACA,UAAAC,EACA,mBAAAC,EACA,SAAAC,EACA,UAAAC,EACA,UAAAC,EACA,WAAAC,EACA,SAAAC,EACA,WAAAC,EACA,WAAAC,EACA,WAAAC,EACA,QAAAC,EACA,YAAAC,EAAc,GACd,aAAAC,EAAe,GACf,YAAAC,EACA,mBAAAC,EACA,gBAAAC,EACA,KAAAC,EACA,GAAGC,CACJ,IAAM,CAEL,IAAMC,EAAeC,GAAyB,IAAI,EAC5CC,EAAgBD,GAAyB,IAAI,EAC7C,CAACE,EAAgBC,CAAiB,EAAIC,GAAiB,CAAC,EACxD,CAACC,EAAiBC,EAAkB,EAAIF,GAAiB,CAAC,EAChE,OAAAG,GAAgB,IAAM,CACrBJ,EAAkBJ,EAAa,SAAS,aAAe,CAAC,EACxDO,GAAmBL,EAAc,SAAS,aAAe,CAAC,CAC3D,EAAG,CAAC,CAAC,EAIJO,EAAA,cAAC,OAAI,UAAWC,GAAG,sBAAuB3B,CAAkB,GAC1D,CAACE,GAAa,CAACE,GAAcC,GAC7BqB,EAAA,cAAC,SAAM,QAAS7B,EAAI,UAAW8B,GAAG,sDAAuDrB,CAAU,GACjGD,CACF,EAEAO,GAAec,EAAA,cAAC,OAAI,UAAU,8BAA8Bd,CAAY,EACzEc,EAAA,cAAC,OAAI,UAAU,uBACZxB,GAAaD,IACdyB,EAAA,cAAC,SACA,IAAKT,EACL,QAASpB,EACT,UAAW8B,GACV,wFACArB,CACD,GAECL,GACAyB,EAAA,cAAC,YACAA,EAAA,cAACE,EAAA,CAEC,GAAG3B,EACH,UAAW0B,GACV,wBACAd,EACAC,EACAb,EAAS,SACV,EACA,QAASU,EAEX,CACD,EAEAT,GAAaA,CACf,EAEDwB,EAAA,cAACG,EAAA,CAEC,GAAGb,EACH,aAAAtB,EACA,MAAAC,EACA,GAAAE,EACA,KAAAD,EACA,KAAAmB,EACA,aAAc,MACd,SAAUR,EACV,YAAaT,GAAe,GAC5B,WAAAU,EACA,QAAAC,EACA,UAAAV,EAEA,MAAO,CACN,aAAc,GAAGwB,EAAkBb,CAAW,KAC9C,YAAa,GAAGU,EAAiBV,CAAW,IAC7C,EAEF,GACEN,GAAcD,IACfuB,EAAA,cAAC,SACA,IAAKP,EACL,QAAStB,EACT,UAAW8B,GACV,iGACArB,CACD,GAECH,GACAuB,EAAA,cAAC,YACAA,EAAA,cAACE,EAAA,CAEC,GAAGzB,EACH,UAAWwB,GAAG,wBAAyBb,EAAiBX,EAAU,SAAS,EAC3E,QAASQ,EAEX,CACD,EAEAP,GAAcA,CAChB,CAEF,CACD,CAEF,EAEO0B,GAAQrC,GC9If,IAAOsC,GAAQA,GCFf,OAAOC,GAAa,aAAAC,GAAW,SAAAC,GAAO,UAAAC,GAAQ,YAAAC,OAAgB,QAC9D,OAAS,WAAWC,OAAU,aCD9B,OAAOC,IAAa,YAAAC,OAAgB,QACpC,OAAS,WAAWC,OAAU,aAiBvB,IAAMC,GAAoC,CAAC,CACjD,aAAAC,EACA,eAAAC,EACA,MAAAC,EAAQ,QACR,UAAAC,EACA,WAAAC,CACD,IAA4C,CAC3C,GAAM,CAACC,EAAgBC,CAAiB,EAAIT,GAAiBG,EAAa,CAAC,EAAE,KAAK,EAE5EO,EAAgBC,GAA4C,CACjE,IAAMC,EAAcD,EAAE,OAAO,MAC7BP,GAAkBA,EAAeQ,CAAW,EAC5CH,EAAkBG,CAAW,CAC9B,EAEA,OAAKT,GAAc,OAElBJ,GAAA,cAAC,UACA,UAAWE,GACV,sHACA,gFACAI,IAAU,QACP,gDACAA,IAAU,OACV,kEACA,GACFD,EAAoC,GAAnB,iBAClBE,CACD,EACA,SAAUI,EACV,MAAOF,EACP,SAAUD,GAETJ,EAAa,IAAKU,GAClBd,GAAA,cAAC,UAAO,IAAKc,EAAO,MAAO,MAAOA,EAAO,OACvCA,EAAO,KACT,CACA,CACF,EAvBiC,IAyBnC,EDLA,IAAMC,GAA6C,CAAC,CACnD,MAAAC,EACA,UAAAC,EACA,QAAAC,EACA,GAAAC,EACA,KAAAC,EACA,WAAAC,EACA,KAAAC,EACA,aAAAC,EACA,WAAAC,EACA,QAAAC,EACA,cAAAC,EACA,UAAAC,EACA,YAAAC,EACA,aAAAC,EACA,eAAAC,EAAiB,QACjB,OAAAC,EACA,SAAAC,EACA,eAAAC,EACA,MAAOC,CACR,IAA6B,CAC5B,GAAM,CAACC,EAASC,CAAU,EAAIC,GAAkB,EAAQpB,CAAU,EAC5D,CAACqB,EAAOC,CAAQ,EAAIF,GAAiBd,GAAgB,EAAE,EACvDiB,EAAWC,GAAyB,IAAI,EAExCC,EAAWC,GAAM,EAClBxB,IAAIA,EAAK,UAAUuB,CAAQ,IAC3BtB,IAAMA,EAAOD,GAElByB,GAAU,IAAM,CACfL,EAASL,CAAa,CACvB,EAAG,CAACA,CAAa,CAAC,EAGlBU,GAAU,IAAM,CACf,IAAMC,EAAQL,EAAS,QACnB,CAACK,GAASV,IAAY,QAAalB,IAAc,QAAaO,IAC9DW,GAAWlB,EACd4B,EAAM,MAAM,EAEZA,EAAM,KAAK,EAEb,EAAG,CAACV,EAASlB,CAAS,CAAC,EAGvB2B,GAAU,IAAM,CACDJ,EAAS,OAExB,EAAG,CAACjB,CAAY,CAAC,EAEjB,IAAMuB,EAAmB,IAAY,CACpCV,EAAW,EAAI,CAEhB,EAEMW,EAAkB,IAAY,CACnCX,EAAW,EAAK,CAEjB,EACMY,EAAcC,GAAG,2EAA4E,CAClG,wBAAyB/B,CAC1B,CAAC,EAEKgC,GAAoBD,GAAG,qBAAsB,CAAE,gBAAiB,CAAC/B,CAAQ,EAAG,CAAE,eAAgBA,CAAQ,CAAC,EAE7G,OACCiC,EAAA,cAAC,WACCnC,GACAmC,EAAA,cAAC,SAAM,QAAShC,EAAI,UAAW6B,GAC7BhC,EACAK,GAAc8B,EAAA,cAAC,QAAK,UAAU,gBAAe,IAAE,CACjD,EAEDA,EAAA,cAAC,OAAI,UAAU,QACbtB,GAAc,QAAUC,IAAmB,QAC3CqB,EAAA,cAACC,GAAA,CACA,aAAcvB,EACd,MAAM,OACN,eAAgBI,EAChB,UAAWgB,GAAG/B,EAAU,iBAAmB,EAAE,EAC7C,WAAYM,EACb,EAED2B,EAAA,cAAC,OAAI,UAAU,wCACbpB,GACAoB,EAAA,cAAC,OAAI,UAAU,8EACdA,EAAA,cAAC,QAAK,UAAU,4BAA4BpB,CAAO,CACpD,EAEDoB,EAAA,cAACE,EAAA,CACA,QAASP,EACT,OAAQC,EACR,aAAeO,GAAMtB,GAAYA,EAASsB,CAAC,EAC3C,IAAKd,EACL,KAAMlB,EACN,KAAMF,EACN,GAAID,EACJ,UAAW8B,GACV,wEACA,2FACAnB,IAAmB,QAAU,YAAc,YAC3CZ,EAAU,iBAAmB,GAC7Ba,EAAS,OAAS,EACnB,EACA,WAAYP,EACZ,aAAcD,EACd,MAAOe,EACP,UAAWX,EACX,YAAaC,EACd,CACD,EACCC,GAAc,QAAUC,IAAmB,SAC3CqB,EAAA,cAACC,GAAA,CACA,aAAcvB,EACd,MAAO,QACP,eAAgBI,EAChB,WAAYT,EACZ,UAAWyB,GAAG/B,EAAU,iBAAmB,EAAE,EAC9C,CAEF,EACAiC,EAAA,cAAC,OAAI,UAAU,2BACdA,EAAA,cAAC,OAAI,UAAU,QAAQ1B,GAAW0B,EAAA,cAAC,QAAK,UAAWD,IAAoBzB,CAAQ,CAAQ,EACtFC,GACAyB,EAAA,cAAC,OAAI,UAAU,YACdA,EAAA,cAACI,EAAA,CAAa,QAAS,OAAOjB,GAAO,MAAM,EAAG,MAAOX,EAAW,CACjE,CAEF,CACD,CAEF,EACO6B,GAAQzC,GEvLf,IAAO0C,GAAQA",
|
|
6
|
-
"names": ["React", "useMemo", "cn", "Avatar", "src", "status", "size", "alt", "initials", "imageStyles", "initialsStyles", "fontStyles", "defaultAvatarStyles", "statusStyles", "imageSize", "Avatar_default", "Avatar_default", "React", "cn", "React", "SolidIcons", "OutlineIcons", "FA", "tablerIconNames", "cn", "React", "TablerIcons", "TablerIcon", "icon", "className", "Icon", "TablerIcon_default", "isHeroIcon", "name", "SolidIcons", "OutlineIcons", "isTablerIcon", "tablerIconNames", "isFAIcon", "FA", "isUnifiedIconName", "DynamicIcon", "icon", "className", "outline", "CustomSVG", "props", "React", "TablerIcon_default", "cn", "Icon", "cn", "IconWithShadow", "props", "DynamicIcon", "IconWithShadow_default", "Badge", "color", "variant", "label", "size", "loading", "statusDot", "removeButton", "actionButton", "badgeStyles", "cn", "statusDotStyles", "removeButtonStyles", "loaderStyles", "React", "DynamicIcon", "Badge_default", "badges_default", "Badge_default", "cn", "React", "forwardRef", "_Button", "actionType", "size", "label", "icon", "iconObj", "CustomSVGIcon", "fullWidth", "iconPosition", "asLink", "isLoading", "className", "props", "ref", "iconStyles", "cn", "loaderColors", "loaderSize", "React", "DynamicIcon", "Button", "forwardRef", "Button_default", "Button_default", "cn", "Capsule", "actionType", "size", "label", "fullWidth", "asLink", "isLoading", "className", "props", "iconStyles", "loaderColors", "loaderSize", "Capsule_default", "Capsule_default", "React", "cn", "Loader", "className", "Loader_default", "React", "useMemo", "cn", "RadialProgress", "inputValue", "radius", "children", "className", "r", "drawPercentage", "roundCircum", "xyPos", "viewPortXY", "RadialProgress_default", "NProgress_default", "RadialProgress_default", "React", "cn", "React", "cn", "InputLabel", "isPlaceholder", "id", "isRequired", "isDisabled", "isActive", "isError", "label", "labelStyles", "InputLabel_default", "InputLabel_default", "useLayoutEffect", "useState", "id", "generateId", "useId", "setId", "Checkbox", "label", "id", "isDisabled", "isChecked", "isRequired", "isError", "message", "value", "onChange", "hasBorder", "className", "props", "uniqueID", "useId", "checkboxStyles", "cn", "wrapperStyles", "handleChange", "e", "targetValue", "targetChecked", "React", "InputLabel_default", "Checkbox_default", "checkbox_default", "Checkbox_default", "React", "useState", "useEffect", "cn", "HeadlessUICombobox", "classNames", "classes", "Combobox", "label", "items", "displayProperty", "displayValue", "keyProperty", "onChange", "placeholder", "message", "isDisabled", "isError", "isRequired", "id", "nullable", "query", "setQuery", "useState", "selectedItem", "setSelectedItem", "onChangeValue", "value", "useEffect", "dv", "i", "filteredItems", "item", "labelStyles", "cn", "buttonStyles", "optionStyles", "React", "HeadlessUICombobox", "e", "InputLabel_default", "event", "DynamicIcon", "index", "active", "selected", "ComboBox_default", "combobox_default", "ComboBox_default", "React", "forwardRef", "cn", "InputField", "type", "id", "name", "value", "isFocused", "isError", "isReadonly", "isDisabled", "handleChange", "required", "clientSideCheck", "className", "placeholder", "rest", "ref", "e", "_InputField", "InputField_default", "InputField_default", "React", "cn", "NestedInputButton", "icon", "ctaLabel", "align", "isClear", "onClickHandler", "buttonProps", "handleClick", "buttonStyle", "React", "DynamicIcon", "NestedInputButton_default", "NestedInputButton_default", "React", "cn", "Radio", "label", "id", "name", "isDisabled", "isChecked", "isRequired", "isError", "message", "onChange", "onClick", "value", "uniqueID", "useId", "checboxStyles", "wrapperStyles", "handleChange", "e", "targetValue", "targetChecked", "handleClick", "InputLabel_default", "Radio_default", "radio_default", "Radio_default", "React", "useEffect", "useState", "cn", "Select", "label", "id", "name", "options", "onChange", "isDisabled", "isError", "isRequired", "value", "className", "selectedOption", "setSelectedOption", "useState", "uniqueID", "useId", "useEffect", "handleChange", "e", "targetValue", "wrapperStyle", "React", "InputLabel_default", "Select_default", "select_default", "Select_default", "React", "useId", "cn", "React", "InputCounter", "current", "limit", "InputCounter_default", "Textarea", "id", "name", "label", "isError", "isRequired", "isDisabled", "defaultValue", "message", "isShowCounter", "maxLength", "rows", "cols", "onChange", "value", "placeholder", "className", "ref", "rest", "uniqueID", "useId", "discriptionStyles", "cn", "React", "InputLabel_default", "e", "targetValue", "InputCounter_default", "TextArea_default", "textArea_default", "TextArea_default", "React", "forwardRef", "useEffect", "useId", "useRef", "useState", "cn", "TextInput", "label", "isFocused", "isError", "id", "name", "isRequired", "type", "defaultValue", "isDisabled", "isReadonly", "message", "isShowCounter", "maxLength", "handleChange", "placeholder", "externalValue", "className", "props", "ref", "uniqueID", "useId", "isFocus", "setIsFocus", "useState", "value", "setValue", "inputRef", "useRef", "useEffect", "input", "handleInputFocus", "handleInputBlur", "React", "InputLabel_default", "InputField_default", "v", "cn", "InputCounter_default", "_TextInput", "forwardRef", "TextInput_default", "TextInput_default", "React", "useEffect", "useState", "cn", "Switch", "ToggleSwitch", "isChecked", "onChange", "label", "screenReaderLabel", "name", "id", "variant", "withIcon", "disabled", "groupClassName", "checked", "setChecked", "useState", "useEffect", "React", "Switch", "cn", "v", "DynamicIcon", "ToggleSwitch_default", "toggleSwitch_default", "ToggleSwitch_default", "React", "cn", "AnimatedLabelInput", "props", "id", "containerStyles", "message", "required", "isError", "label", "value", "handleChange", "input", "hasValue", "setHasValue", "React", "cn", "InputField_default", "v", "AnimatedLabelInput_default", "AnimatedLabelInput_default", "React", "cn", "AnimatedLabelTextArea", "props", "id", "containerStyles", "message", "required", "isError", "label", "value", "handleChange", "onChange", "input", "hasValue", "setHasValue", "React", "cn", "textArea_default", "v", "AnimatedLabelTextArea_default", "AnimatedLabelTextArea_default", "React", "cn", "React", "useEffect", "useMemo", "useRef", "useState", "cn", "useFloating", "autoUpdate", "offset", "useDismiss", "useRole", "useClick", "useInteractions", "FloatingFocusManager", "autoPlacement", "shift", "FloatingPortal", "FloatingList", "useTransitionStyles", "useListNavigation", "defaultClassNames", "Dropdown", "items", "id", "label", "groupClassname", "itemsClassname", "itemClassname", "activeItemClassname", "buttonClassname", "iconClassname", "iconSpacingClassname", "CustomDropdownTrigger", "placement", "offsetOptions", "disabled", "onFocus", "onBlur", "props", "isOpen", "setIsOpen", "useState", "activeItem", "setActiveItem", "activeIndex", "setActiveIndex", "listRef", "useRef", "refs", "floatingStyles", "context", "useFloating", "bool", "offset", "autoPlacement", "shift", "autoUpdate", "click", "useClick", "dismiss", "useDismiss", "role", "useRole", "listNavigation", "useListNavigation", "index", "getReferenceProps", "getFloatingProps", "getItemProps", "useInteractions", "useEffect", "ItemComponents", "useMemo", "itemStack", "stackIndex", "item", "itemIndex", "key", "icon", "iconObj", "iconPosition", "isEmphasized", "onClick", "rest", "active", "itemClass", "cn", "React", "node", "DynamicIcon", "isMounted", "transitionStyles", "useTransitionStyles", "FloatingList", "FloatingPortal", "FloatingFocusManager", "DropdownComponent_default", "DropdownComponent_default", "ButtonDropdown", "button", "dropDown", "placement", "offsetOptions", "React", "Button_default", "cn", "DropdownComponent_default", "DynamicIcon", "ButtonDropdown_default", "ButtonDropdown_default", "React", "cn", "EmptySectionPlaceholder", "icon", "mutedText", "primaryMessage", "CallToActionComponent", "actions", "isWide", "React", "IconWithShadow_default", "action", "index", "Button_default", "EmptySectionPlaceholder_default", "EmptySectionPlaceholder_default", "React", "useLayoutEffect", "useRef", "useState", "cn", "FormInputWithAddons", "handleChange", "value", "name", "id", "placeholder", "className", "containerClassName", "leadIcon", "leadLabel", "trailIcon", "trailLabel", "topLabel", "labelClass", "isDisabled", "isReadonly", "isError", "addonOffset", "iconOutlined", "description", "leadIconClassNames", "customIconClass", "type", "rest", "leadLabelRef", "useRef", "trailLabelRef", "leadLabelWidth", "setLeadLabelWidth", "useState", "trailLabelWidth", "setTrailLabelWidth", "useLayoutEffect", "React", "cn", "DynamicIcon", "InputField_default", "FormInputWithAddons_default", "FormInputWithAddons_default", "React", "useEffect", "useId", "useRef", "useState", "cn", "React", "useState", "cn", "InputSelect", "inputOptions", "onSelectOption", "align", "className", "isDisabled", "selectedOption", "setSelectedOption", "handleChange", "e", "targetValue", "option", "TextInputSelect", "label", "isFocused", "isError", "id", "name", "isRequired", "type", "defaultValue", "isDisabled", "message", "isShowCounter", "maxLength", "placeholder", "inputOptions", "selectLocation", "prefix", "onChange", "onSelectOption", "externalValue", "isFocus", "setIsFocus", "useState", "value", "setValue", "inputRef", "useRef", "uniqueID", "useId", "useEffect", "input", "handleInputFocus", "handleInputBlur", "labelStyles", "cn", "discriptionStyles", "React", "InputSelect", "InputField_default", "v", "InputCounter_default", "TextInputSelect_default", "TextInputSelect_default"]
|
|
4
|
+
"sourcesContent": ["import React, { FC, useMemo } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n// import Image from \"next/image\"\r\nexport interface IAvatarProps {\r\n\t/**\r\n\t * source url for the avatar\r\n\t */\r\n\tsrc?: string\r\n\t/**\r\n\t * Initials we use as fallback if no src is passed\r\n\t */\r\n\tinitials?: string\r\n\t/**\r\n\t * optional status\r\n\t */\r\n\tstatus?: \"offline\" | \"online\" | \"busy\"\r\n\t/**\r\n\t * avatar picture size (also affects status indicator)\r\n\t */\r\n\tsize?: \"xxs\" | \"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\"\r\n\t/**\r\n\t * avatar img alt\r\n\t */\r\n\talt?: string\r\n}\r\n\r\n/**\r\n * Avatar component that shows profile image or name initials of the user\r\n */\r\nconst Avatar: FC<IAvatarProps> = ({ src, status, size = \"md\", alt = \"Avatar image\", initials }: IAvatarProps) => {\r\n\tconst imageStyles = cn(\"rounded-full\", {\r\n\t\t\"h-6 w-6\": size === \"xxs\",\r\n\t\t\"h-8 w-8\": size === \"xs\",\r\n\t\t\"h-10 w-10\": size === \"sm\",\r\n\t\t\"h-12 w-12\": size === \"md\",\r\n\t\t\"h-14 w-14\": size === \"lg\",\r\n\t\t\"h-16 w-16\": size === \"xl\"\r\n\t})\r\n\tconst initialsStyles = cn(\"inline-flex items-center justify-center rounded-full bg-gray-500\", {\r\n\t\t\"h-6 w-6\": size === \"xxs\",\r\n\t\t\"h-8 w-8\": size === \"xs\",\r\n\t\t\"h-10 w-10\": size === \"sm\",\r\n\t\t\"h-12 w-12\": size === \"md\",\r\n\t\t\"h-14 w-14\": size === \"lg\",\r\n\t\t\"h-16 w-16\": size === \"xl\"\r\n\t})\r\n\tconst fontStyles = cn(\"font-medium leading-none text-white uppercase\", {\r\n\t\t\"text-xs\": size === \"xxs\" || size === \"xs\",\r\n\t\t\"text-sm\": size === \"sm\",\r\n\t\t\"text-base\": size === \"md\",\r\n\t\t\"text-lg\": size === \"lg\",\r\n\t\t\"text-xl\": size === \"xl\"\r\n\t})\r\n\tconst defaultAvatarStyles = cn(\"inline-block rounded-full overflow-hidden bg-gray-100\", {\r\n\t\t\"h-6 w-6\": size === \"xxs\",\r\n\t\t\"h-8 w-8\": size === \"xs\",\r\n\t\t\"h-10 w-10\": size === \"sm\",\r\n\t\t\"h-12 w-12\": size === \"md\",\r\n\t\t\"h-14 w-14\": size === \"lg\",\r\n\t\t\"h-16 w-16\": size === \"xl\"\r\n\t})\r\n\r\n\tconst statusStyles = cn(\"absolute top-0 right-0 block rounded-full ring-2 ring-white\", {\r\n\t\t\"h-1.5 w-1.5\": size === \"xxs\",\r\n\t\t\"h-2 w-2\": size === \"xs\",\r\n\t\t\"h-2.5 w-2.5\": size === \"sm\",\r\n\t\t\"h-3 w-3\": size === \"md\",\r\n\t\t\"h-3.5 w-3.5\": size === \"lg\",\r\n\t\t\"h-4 w-4\": size === \"xl\",\r\n\t\t\"bg-gray-300\": status === \"offline\",\r\n\t\t\"bg-red-400\": status === \"busy\",\r\n\t\t\"bg-green-400\": status === \"online\"\r\n\t})\r\n\tconst imageSize: number = useMemo(() => {\r\n\t\tlet imageSize: number = 0\r\n\t\tswitch (size) {\r\n\t\t\tcase \"xxs\":\r\n\t\t\t\timageSize = 24\r\n\t\t\t\tbreak\r\n\t\t\tcase \"xs\":\r\n\t\t\t\timageSize = 32\r\n\t\t\t\tbreak\r\n\t\t\tcase \"sm\":\r\n\t\t\t\timageSize = 40\r\n\t\t\t\tbreak\r\n\t\t\tcase \"md\":\r\n\t\t\t\timageSize = 48\r\n\t\t\t\tbreak\r\n\t\t\tcase \"lg\":\r\n\t\t\t\timageSize = 56\r\n\t\t\t\tbreak\r\n\t\t\tcase \"xl\":\r\n\t\t\t\timageSize = 64\r\n\t\t\t\tbreak\r\n\t\t\tdefault:\r\n\t\t\t\timageSize = 48\r\n\t\t\t\tbreak\r\n\t\t}\r\n\t\treturn imageSize\r\n\t}, [size])\r\n\r\n\treturn (\r\n\t\t<span className=\"inline-block relative\">\r\n\t\t\t{src ? (\r\n\t\t\t\t// eslint-disable-next-line @next/next/no-img-element\r\n\t\t\t\t<img className={imageStyles} width={imageSize} height={imageSize} src={src} alt={alt} loading=\"eager\" />\r\n\t\t\t) : initials ? (\r\n\t\t\t\t<span className={initialsStyles}>\r\n\t\t\t\t\t<span className={fontStyles}>{initials}</span>\r\n\t\t\t\t</span>\r\n\t\t\t) : (\r\n\t\t\t\t<span className={defaultAvatarStyles}>\r\n\t\t\t\t\t<svg className=\"h-full w-full text-gray-300\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\r\n\t\t\t\t\t\t<path d=\"M24 20.993V24H0v-2.996A14.977 14.977 0 0112.004 15c4.904 0 9.26 2.354 11.996 5.993zM16.002 8.999a4 4 0 11-8 0 4 4 0 018 0z\" />\r\n\t\t\t\t\t</svg>\r\n\t\t\t\t</span>\r\n\t\t\t)}\r\n\t\t\t{status && <span className={statusStyles}></span>}\r\n\t\t</span>\r\n\t)\r\n}\r\n\r\nexport default Avatar\r\n", "import Avatar, { IAvatarProps } from \"./Avatar\"\r\nexport default Avatar\r\nexport type { IAvatarProps }\r\n", "import React from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport { ClassNameWithAutocomplete } from \"@/utils/types\"\r\nimport { DynamicIcon } from \"../icons\"\r\nexport interface IBadgeProps {\r\n\t/** The content scheme of the badge */\r\n\tcolor: \"primary\" | \"secondary\" | \"danger\" | \"warning\" | \"success\" | \"info\" | \"basic\" | \"pink\"\r\n\t/** Render with slightly rounded corners or as a pill shape */\r\n\tvariant: \"rounded\" | \"pill\"\r\n\t/** The text content of the badge */\r\n\tlabel: string\r\n\t/** The size of the badge */\r\n\tsize?: \"sm\" | \"lg\"\r\n\t/** Render a loader inside the badge */\r\n\tloading?: boolean\r\n\t/** Render with a small circle in a darker shade of the color chosen*/\r\n\tstatusDot?: boolean\r\n\t/** Render with a button to remove the badge */\r\n\tremoveButton?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>\r\n\t/** Render the badge as a clickable button */\r\n\tactionButton?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>\r\n}\r\nconst Badge: React.FC<IBadgeProps> = ({\r\n\tcolor,\r\n\tvariant,\r\n\tlabel,\r\n\tsize = \"sm\",\r\n\tloading,\r\n\tstatusDot,\r\n\tremoveButton,\r\n\tactionButton\r\n}) => {\r\n\tconst badgeStyles = cn(\r\n\t\t\"text-sm flex items-center font-medium py-[2px] focus:ring-1 focus:ring-purple-600 focus:ring-offset-2 focus:ring-offset-white outline-0\",\r\n\t\t{\r\n\t\t\t\"rounded-[3px]\": variant === \"rounded\",\r\n\t\t\t\"rounded-full px-[6px]\": variant === \"pill\",\r\n\t\t\t\"rounded-full\": variant === \"pill\" && size === \"lg\",\r\n\t\t\t\"px-[6px] text-xs\": size === \"sm\",\r\n\t\t\t\"px-[10px]\": size === \"lg\",\r\n\t\t\t\"pl-[10px]\": !statusDot && size === \"lg\",\r\n\t\t\t\"pl-2\": !statusDot && size === \"sm\",\r\n\t\t\t\"pr-3\": !removeButton && size === \"lg\",\r\n\t\t\t\"pr-[10px]\": !removeButton && size === \"sm\",\r\n\t\t\t\"gap-x-[6px]\": statusDot || removeButton || loading,\r\n\t\t\t\"bg-purple-100 text-purple-800 \": color === \"primary\",\r\n\t\t\t\"bg-violet-100 text-violet-800\": color === \"secondary\",\r\n\t\t\t\"bg-pink-100 text-pink-800\": color === \"pink\",\r\n\t\t\t\"bg-red-100 text-red-800\": color === \"danger\",\r\n\t\t\t\"bg-blue-100 text-blue-800\": color === \"info\",\r\n\t\t\t\"bg-green-100 text-green-800\": color === \"success\",\r\n\t\t\t\"bg-yellow-100 text-yellow-800\": color === \"warning\",\r\n\t\t\t\"bg-gray-100 text-gray-800\": color === \"basic\"\r\n\t\t}\r\n\t)\r\n\tconst statusDotStyles = cn(\"rounded-full h-[6px] p-[1px] w-[6px]\", {\r\n\t\t\"bg-purple-400 text-purple-400\": color === \"primary\",\r\n\t\t\"bg-violet-400 text-violet-400\": color === \"secondary\",\r\n\t\t\"bg-pink-400 text-pink-400\": color === \"pink\",\r\n\t\t\"bg-red-400 text-red-400\": color === \"danger\",\r\n\t\t\"bg-blue-400 text-blue-400\": color === \"info\",\r\n\t\t\"bg-green-400 text-green-400\": color === \"success\",\r\n\t\t\"bg-yellow-400 text-yellow-400\": color === \"warning\",\r\n\t\t\"bg-gray-400 text-gray-400\": color === \"basic\"\r\n\t})\r\n\tconst removeButtonStyles: ClassNameWithAutocomplete = cn(\r\n\t\t\"h-4 w-4 group-focus-within:ring-1 group-focus-within:ring-purple-600 rounded-full group-focus-within:ring-offset-[1px] group-focus-within:ring-offset-white outline-0\",\r\n\t\t{\r\n\t\t\t\"text-purple-400\": color === \"primary\",\r\n\t\t\t\"text-violet-400\": color === \"secondary\",\r\n\t\t\t\"text-pink-400\": color === \"pink\",\r\n\t\t\t\"text-red-400\": color === \"danger\",\r\n\t\t\t\"text-blue-400\": color === \"info\",\r\n\t\t\t\"text-green-400\": color === \"success\",\r\n\t\t\t\"text-yellow-400\": color === \"warning\",\r\n\t\t\t\"text-gray-400\": color === \"basic\"\r\n\t\t}\r\n\t)\r\n\r\n\tconst loaderStyles = cn(\"h-4 w-4 rounded-full border-2 animate-spin\", {\r\n\t\t\"border-purple-400 !border-r-purple-200\": color === \"primary\",\r\n\t\t\"border-violet-400 !border-r-violet-200\": color === \"secondary\",\r\n\t\t\"border-pink-400 !border-r-pink-200\": color === \"pink\",\r\n\t\t\"border-red-400 !border-r-red-200\": color === \"danger\",\r\n\t\t\"border-blue-400 !border-r-blue-200\": color === \"info\",\r\n\t\t\"border-green-400 !border-r-green-200\": color === \"success\",\r\n\t\t\"border-yellow-400 !border-r-yellow-200\": color === \"warning\",\r\n\t\t\"border-gray-400 !border-r-gray-200\": color === \"basic\"\r\n\t})\r\n\r\n\treturn actionButton ? (\r\n\t\t<button {...{ ...actionButton, className: badgeStyles }}>\r\n\t\t\t{statusDot && <div className={statusDotStyles} role=\"status\" />}\r\n\t\t\t{label}\r\n\t\t\t{removeButton && (\r\n\t\t\t\t<button\r\n\t\t\t\t\t{...{\r\n\t\t\t\t\t\tremoveButton,\r\n\t\t\t\t\t\t\"aria-label\": `Remove ${label}`,\r\n\t\t\t\t\t\tclassName: `${removeButton?.className || \"\"} group outline-0 `\r\n\t\t\t\t\t}}\r\n\t\t\t\t>\r\n\t\t\t\t\t<DynamicIcon {...{ icon: \"IconX\", className: removeButtonStyles }} />\r\n\t\t\t\t</button>\r\n\t\t\t)}\r\n\t\t</button>\r\n\t) : (\r\n\t\t<div className={badgeStyles}>\r\n\t\t\t{loading && <div className={loaderStyles} role=\"status\" />}\r\n\t\t\t{!loading && statusDot && <div className={statusDotStyles} role=\"status\" />}\r\n\t\t\t{label}\r\n\t\t\t{!loading && removeButton && (\r\n\t\t\t\t<button\r\n\t\t\t\t\t{...{\r\n\t\t\t\t\t\t...removeButton,\r\n\t\t\t\t\t\t\"aria-label\": `Remove ${label}`,\r\n\t\t\t\t\t\tclassName: `${removeButton?.className || \"\"} group outline-0 `\r\n\t\t\t\t\t}}\r\n\t\t\t\t>\r\n\t\t\t\t\t<DynamicIcon {...{ icon: \"IconX\", className: removeButtonStyles }} />\r\n\t\t\t\t</button>\r\n\t\t\t)}\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default Badge\r\n", "import React from \"react\"\r\n// TODO: Fix heroicons support\r\nimport * as SolidIcons from \"@heroicons/react/solid\"\r\nimport * as OutlineIcons from \"@heroicons/react/outline\"\r\nimport * as FA from \"react-icons/fa\"\r\nimport { tablerIconNames, TablerIconName } from \"./tablerIconNames\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nimport { ClassNameWithAutocomplete } from \"@/utils/types\"\r\nimport TablerIcon from \"./TablerIcon\"\r\n\r\nexport type IconName = keyof typeof SolidIcons | keyof typeof OutlineIcons\r\nexport type FAIconName = keyof typeof FA\r\n\r\nexport type UnifiedIconName = TablerIconName | IconName | FAIconName\r\n\r\nexport function isHeroIcon(name: UnifiedIconName): name is keyof typeof SolidIcons | keyof typeof OutlineIcons {\r\n\treturn name in SolidIcons || name in OutlineIcons\r\n}\r\n\r\nexport function isTablerIcon(name: UnifiedIconName): name is TablerIconName {\r\n\treturn tablerIconNames.includes(name as TablerIconName)\r\n}\r\n\r\nexport function isFAIcon(name: UnifiedIconName): name is keyof typeof FA {\r\n\treturn name in FA\r\n}\r\n\r\nexport function isUnifiedIconName(name: UnifiedIconName): name is UnifiedIconName {\r\n\treturn isTablerIcon(name) // || isHeroIcon(name) || isFAIcon(name)\r\n}\r\n\r\nexport interface IDynamicIconProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {\r\n\ticon: UnifiedIconName\r\n\tclassName?: ClassNameWithAutocomplete\r\n\toutline?: boolean\r\n\tCustomSVG?: React.ReactNode\r\n}\r\n\r\nexport const DynamicIcon = ({\r\n\ticon,\r\n\tclassName = \"w-5 h-5 text-gray-400\",\r\n\toutline,\r\n\tCustomSVG,\r\n\t...props\r\n}: IDynamicIconProps): JSX.Element => {\r\n\tif (CustomSVG) {\r\n\t\treturn <i {...{ ...props, className: \"flex items-center justify-center\" }}>{CustomSVG}</i>\r\n\t}\r\n\r\n\tif (isTablerIcon(icon)) {\r\n\t\treturn (\r\n\t\t\t<TablerIcon\r\n\t\t\t\t{...{\r\n\t\t\t\t\ticon,\r\n\t\t\t\t\tclassName: cn(className, {\r\n\t\t\t\t\t\t\"text-gray-600 h-5 w-5\": !className\r\n\t\t\t\t\t}),\r\n\t\t\t\t\toutline\r\n\t\t\t\t}}\r\n\t\t\t/>\r\n\t\t)\r\n\t}\r\n\r\n\tif (isFAIcon(icon)) {\r\n\t\tconst Icon = FA[icon]\r\n\t\treturn (\r\n\t\t\t<i {...{ ...props, className: \"flex items-center justify-center\" }}>\r\n\t\t\t\t<Icon\r\n\t\t\t\t\tclassName={cn(className, {\r\n\t\t\t\t\t\t\"h-5 w-5 text-gray-600\": !className\r\n\t\t\t\t\t})}\r\n\t\t\t\t/>\r\n\t\t\t</i>\r\n\t\t)\r\n\t}\r\n\tif (isHeroIcon(icon)) {\r\n\t\tconst Icon = outline ? OutlineIcons[icon] : SolidIcons[icon]\r\n\t\treturn (\r\n\t\t\t<i {...{ ...props, className: \"flex items-center justify-center\" }}>\r\n\t\t\t\t<Icon\r\n\t\t\t\t\tclassName={cn(className, {\r\n\t\t\t\t\t\t\"h-5 w-5 text-gray-600\": !className\r\n\t\t\t\t\t})}\r\n\t\t\t\t/>\r\n\t\t\t</i>\r\n\t\t)\r\n\t}\r\n\treturn <></>\r\n}\r\n", "export const tablerIconNames = [\r\n\t\"Icon123\",\r\n\t\"Icon24Hours\",\r\n\t\"Icon2fa\",\r\n\t\"Icon360View\",\r\n\t\"Icon360\",\r\n\t\"Icon3dCubeSphereOff\",\r\n\t\"Icon3dCubeSphere\",\r\n\t\"Icon3dRotate\",\r\n\t\"IconAB2\",\r\n\t\"IconABOff\",\r\n\t\"IconAB\",\r\n\t\"IconAbacusOff\",\r\n\t\"IconAbacus\",\r\n\t\"IconAbc\",\r\n\t\"IconAccessPointOff\",\r\n\t\"IconAccessPoint\",\r\n\t\"IconAccessibleOffFilled\",\r\n\t\"IconAccessibleOff\",\r\n\t\"IconAccessible\",\r\n\t\"IconActivityHeartbeat\",\r\n\t\"IconActivity\",\r\n\t\"IconAd2\",\r\n\t\"IconAdCircleFilled\",\r\n\t\"IconAdCircleOff\",\r\n\t\"IconAdCircle\",\r\n\t\"IconAdFilled\",\r\n\t\"IconAdOff\",\r\n\t\"IconAd\",\r\n\t\"IconAddressBookOff\",\r\n\t\"IconAddressBook\",\r\n\t\"IconAdjustmentsAlt\",\r\n\t\"IconAdjustmentsBolt\",\r\n\t\"IconAdjustmentsCancel\",\r\n\t\"IconAdjustmentsCheck\",\r\n\t\"IconAdjustmentsCode\",\r\n\t\"IconAdjustmentsCog\",\r\n\t\"IconAdjustmentsDollar\",\r\n\t\"IconAdjustmentsDown\",\r\n\t\"IconAdjustmentsExclamation\",\r\n\t\"IconAdjustmentsFilled\",\r\n\t\"IconAdjustmentsHeart\",\r\n\t\"IconAdjustmentsHorizontal\",\r\n\t\"IconAdjustmentsMinus\",\r\n\t\"IconAdjustmentsOff\",\r\n\t\"IconAdjustmentsPause\",\r\n\t\"IconAdjustmentsPin\",\r\n\t\"IconAdjustmentsPlus\",\r\n\t\"IconAdjustmentsQuestion\",\r\n\t\"IconAdjustmentsSearch\",\r\n\t\"IconAdjustmentsShare\",\r\n\t\"IconAdjustmentsStar\",\r\n\t\"IconAdjustmentsUp\",\r\n\t\"IconAdjustmentsX\",\r\n\t\"IconAdjustments\",\r\n\t\"IconAerialLift\",\r\n\t\"IconAffiliateFilled\",\r\n\t\"IconAffiliate\",\r\n\t\"IconAirBalloon\",\r\n\t\"IconAirConditioningDisabled\",\r\n\t\"IconAirConditioning\",\r\n\t\"IconAirTrafficControl\",\r\n\t\"IconAlarmFilled\",\r\n\t\"IconAlarmMinusFilled\",\r\n\t\"IconAlarmMinus\",\r\n\t\"IconAlarmOff\",\r\n\t\"IconAlarmPlusFilled\",\r\n\t\"IconAlarmPlus\",\r\n\t\"IconAlarmSnoozeFilled\",\r\n\t\"IconAlarmSnooze\",\r\n\t\"IconAlarm\",\r\n\t\"IconAlbumOff\",\r\n\t\"IconAlbum\",\r\n\t\"IconAlertCircleFilled\",\r\n\t\"IconAlertCircle\",\r\n\t\"IconAlertHexagonFilled\",\r\n\t\"IconAlertHexagon\",\r\n\t\"IconAlertOctagonFilled\",\r\n\t\"IconAlertOctagon\",\r\n\t\"IconAlertSmall\",\r\n\t\"IconAlertSquareFilled\",\r\n\t\"IconAlertSquareRoundedFilled\",\r\n\t\"IconAlertSquareRounded\",\r\n\t\"IconAlertSquare\",\r\n\t\"IconAlertTriangleFilled\",\r\n\t\"IconAlertTriangle\",\r\n\t\"IconAlienFilled\",\r\n\t\"IconAlien\",\r\n\t\"IconAlignBoxBottomCenterFilled\",\r\n\t\"IconAlignBoxBottomCenter\",\r\n\t\"IconAlignBoxBottomLeftFilled\",\r\n\t\"IconAlignBoxBottomLeft\",\r\n\t\"IconAlignBoxBottomRightFilled\",\r\n\t\"IconAlignBoxBottomRight\",\r\n\t\"IconAlignBoxCenterBottom\",\r\n\t\"IconAlignBoxCenterMiddleFilled\",\r\n\t\"IconAlignBoxCenterMiddle\",\r\n\t\"IconAlignBoxCenterStretch\",\r\n\t\"IconAlignBoxCenterTop\",\r\n\t\"IconAlignBoxLeftBottomFilled\",\r\n\t\"IconAlignBoxLeftBottom\",\r\n\t\"IconAlignBoxLeftMiddleFilled\",\r\n\t\"IconAlignBoxLeftMiddle\",\r\n\t\"IconAlignBoxLeftStretch\",\r\n\t\"IconAlignBoxLeftTopFilled\",\r\n\t\"IconAlignBoxLeftTop\",\r\n\t\"IconAlignBoxRightBottomFilled\",\r\n\t\"IconAlignBoxRightBottom\",\r\n\t\"IconAlignBoxRightMiddleFilled\",\r\n\t\"IconAlignBoxRightMiddle\",\r\n\t\"IconAlignBoxRightStretch\",\r\n\t\"IconAlignBoxRightTopFilled\",\r\n\t\"IconAlignBoxRightTop\",\r\n\t\"IconAlignBoxTopCenterFilled\",\r\n\t\"IconAlignBoxTopCenter\",\r\n\t\"IconAlignBoxTopLeftFilled\",\r\n\t\"IconAlignBoxTopLeft\",\r\n\t\"IconAlignBoxTopRightFilled\",\r\n\t\"IconAlignBoxTopRight\",\r\n\t\"IconAlignCenter\",\r\n\t\"IconAlignJustified\",\r\n\t\"IconAlignLeft\",\r\n\t\"IconAlignRight\",\r\n\t\"IconAlpha\",\r\n\t\"IconAlphabetCyrillic\",\r\n\t\"IconAlphabetGreek\",\r\n\t\"IconAlphabetLatin\",\r\n\t\"IconAmbulance\",\r\n\t\"IconAmpersand\",\r\n\t\"IconAnalyzeFilled\",\r\n\t\"IconAnalyzeOff\",\r\n\t\"IconAnalyze\",\r\n\t\"IconAnchorOff\",\r\n\t\"IconAnchor\",\r\n\t\"IconAngle\",\r\n\t\"IconAnkh\",\r\n\t\"IconAntennaBars1\",\r\n\t\"IconAntennaBars2\",\r\n\t\"IconAntennaBars3\",\r\n\t\"IconAntennaBars4\",\r\n\t\"IconAntennaBars5\",\r\n\t\"IconAntennaBarsOff\",\r\n\t\"IconAntennaOff\",\r\n\t\"IconAntenna\",\r\n\t\"IconApertureOff\",\r\n\t\"IconAperture\",\r\n\t\"IconApiAppOff\",\r\n\t\"IconApiApp\",\r\n\t\"IconApiOff\",\r\n\t\"IconApi\",\r\n\t\"IconAppWindowFilled\",\r\n\t\"IconAppWindow\",\r\n\t\"IconApple\",\r\n\t\"IconAppsFilled\",\r\n\t\"IconAppsOff\",\r\n\t\"IconApps\",\r\n\t\"IconArchiveFilled\",\r\n\t\"IconArchiveOff\",\r\n\t\"IconArchive\",\r\n\t\"IconArmchair2Off\",\r\n\t\"IconArmchair2\",\r\n\t\"IconArmchairOff\",\r\n\t\"IconArmchair\",\r\n\t\"IconArrowAutofitContentFilled\",\r\n\t\"IconArrowAutofitContent\",\r\n\t\"IconArrowAutofitDown\",\r\n\t\"IconArrowAutofitHeight\",\r\n\t\"IconArrowAutofitLeft\",\r\n\t\"IconArrowAutofitRight\",\r\n\t\"IconArrowAutofitUp\",\r\n\t\"IconArrowAutofitWidth\",\r\n\t\"IconArrowBackUpDouble\",\r\n\t\"IconArrowBackUp\",\r\n\t\"IconArrowBack\",\r\n\t\"IconArrowBadgeDownFilled\",\r\n\t\"IconArrowBadgeDown\",\r\n\t\"IconArrowBadgeLeftFilled\",\r\n\t\"IconArrowBadgeLeft\",\r\n\t\"IconArrowBadgeRightFilled\",\r\n\t\"IconArrowBadgeRight\",\r\n\t\"IconArrowBadgeUpFilled\",\r\n\t\"IconArrowBadgeUp\",\r\n\t\"IconArrowBarBoth\",\r\n\t\"IconArrowBarDown\",\r\n\t\"IconArrowBarLeft\",\r\n\t\"IconArrowBarRight\",\r\n\t\"IconArrowBarToDown\",\r\n\t\"IconArrowBarToLeft\",\r\n\t\"IconArrowBarToRight\",\r\n\t\"IconArrowBarToUp\",\r\n\t\"IconArrowBarUp\",\r\n\t\"IconArrowBearLeft2\",\r\n\t\"IconArrowBearLeft\",\r\n\t\"IconArrowBearRight2\",\r\n\t\"IconArrowBearRight\",\r\n\t\"IconArrowBigDownFilled\",\r\n\t\"IconArrowBigDownLineFilled\",\r\n\t\"IconArrowBigDownLine\",\r\n\t\"IconArrowBigDownLinesFilled\",\r\n\t\"IconArrowBigDownLines\",\r\n\t\"IconArrowBigDown\",\r\n\t\"IconArrowBigLeftFilled\",\r\n\t\"IconArrowBigLeftLineFilled\",\r\n\t\"IconArrowBigLeftLine\",\r\n\t\"IconArrowBigLeftLinesFilled\",\r\n\t\"IconArrowBigLeftLines\",\r\n\t\"IconArrowBigLeft\",\r\n\t\"IconArrowBigRightFilled\",\r\n\t\"IconArrowBigRightLineFilled\",\r\n\t\"IconArrowBigRightLine\",\r\n\t\"IconArrowBigRightLinesFilled\",\r\n\t\"IconArrowBigRightLines\",\r\n\t\"IconArrowBigRight\",\r\n\t\"IconArrowBigUpFilled\",\r\n\t\"IconArrowBigUpLineFilled\",\r\n\t\"IconArrowBigUpLine\",\r\n\t\"IconArrowBigUpLinesFilled\",\r\n\t\"IconArrowBigUpLines\",\r\n\t\"IconArrowBigUp\",\r\n\t\"IconArrowBounce\",\r\n\t\"IconArrowCapsule\",\r\n\t\"IconArrowCurveLeft\",\r\n\t\"IconArrowCurveRight\",\r\n\t\"IconArrowDownBar\",\r\n\t\"IconArrowDownCircle\",\r\n\t\"IconArrowDownLeftCircle\",\r\n\t\"IconArrowDownLeft\",\r\n\t\"IconArrowDownRhombus\",\r\n\t\"IconArrowDownRightCircle\",\r\n\t\"IconArrowDownRight\",\r\n\t\"IconArrowDownSquare\",\r\n\t\"IconArrowDownTail\",\r\n\t\"IconArrowDown\",\r\n\t\"IconArrowElbowLeft\",\r\n\t\"IconArrowElbowRight\",\r\n\t\"IconArrowFork\",\r\n\t\"IconArrowForwardUpDouble\",\r\n\t\"IconArrowForwardUp\",\r\n\t\"IconArrowForward\",\r\n\t\"IconArrowGuide\",\r\n\t\"IconArrowIteration\",\r\n\t\"IconArrowLeftBar\",\r\n\t\"IconArrowLeftCircle\",\r\n\t\"IconArrowLeftRhombus\",\r\n\t\"IconArrowLeftRight\",\r\n\t\"IconArrowLeftSquare\",\r\n\t\"IconArrowLeftTail\",\r\n\t\"IconArrowLeft\",\r\n\t\"IconArrowLoopLeft2\",\r\n\t\"IconArrowLoopLeft\",\r\n\t\"IconArrowLoopRight2\",\r\n\t\"IconArrowLoopRight\",\r\n\t\"IconArrowMergeBoth\",\r\n\t\"IconArrowMergeLeft\",\r\n\t\"IconArrowMergeRight\",\r\n\t\"IconArrowMerge\",\r\n\t\"IconArrowMoveDown\",\r\n\t\"IconArrowMoveLeft\",\r\n\t\"IconArrowMoveRight\",\r\n\t\"IconArrowMoveUp\",\r\n\t\"IconArrowNarrowDown\",\r\n\t\"IconArrowNarrowLeft\",\r\n\t\"IconArrowNarrowRight\",\r\n\t\"IconArrowNarrowUp\",\r\n\t\"IconArrowRampLeft2\",\r\n\t\"IconArrowRampLeft3\",\r\n\t\"IconArrowRampLeft\",\r\n\t\"IconArrowRampRight2\",\r\n\t\"IconArrowRampRight3\",\r\n\t\"IconArrowRampRight\",\r\n\t\"IconArrowRightBar\",\r\n\t\"IconArrowRightCircle\",\r\n\t\"IconArrowRightRhombus\",\r\n\t\"IconArrowRightSquare\",\r\n\t\"IconArrowRightTail\",\r\n\t\"IconArrowRight\",\r\n\t\"IconArrowRotaryFirstLeft\",\r\n\t\"IconArrowRotaryFirstRight\",\r\n\t\"IconArrowRotaryLastLeft\",\r\n\t\"IconArrowRotaryLastRight\",\r\n\t\"IconArrowRotaryLeft\",\r\n\t\"IconArrowRotaryRight\",\r\n\t\"IconArrowRotaryStraight\",\r\n\t\"IconArrowRoundaboutLeft\",\r\n\t\"IconArrowRoundaboutRight\",\r\n\t\"IconArrowSharpTurnLeft\",\r\n\t\"IconArrowSharpTurnRight\",\r\n\t\"IconArrowUpBar\",\r\n\t\"IconArrowUpCircle\",\r\n\t\"IconArrowUpLeftCircle\",\r\n\t\"IconArrowUpLeft\",\r\n\t\"IconArrowUpRhombus\",\r\n\t\"IconArrowUpRightCircle\",\r\n\t\"IconArrowUpRight\",\r\n\t\"IconArrowUpSquare\",\r\n\t\"IconArrowUpTail\",\r\n\t\"IconArrowUp\",\r\n\t\"IconArrowWaveLeftDown\",\r\n\t\"IconArrowWaveLeftUp\",\r\n\t\"IconArrowWaveRightDown\",\r\n\t\"IconArrowWaveRightUp\",\r\n\t\"IconArrowZigZag\",\r\n\t\"IconArrowsCross\",\r\n\t\"IconArrowsDiagonal2\",\r\n\t\"IconArrowsDiagonalMinimize2\",\r\n\t\"IconArrowsDiagonalMinimize\",\r\n\t\"IconArrowsDiagonal\",\r\n\t\"IconArrowsDiff\",\r\n\t\"IconArrowsDoubleNeSw\",\r\n\t\"IconArrowsDoubleNwSe\",\r\n\t\"IconArrowsDoubleSeNw\",\r\n\t\"IconArrowsDoubleSwNe\",\r\n\t\"IconArrowsDownUp\",\r\n\t\"IconArrowsDown\",\r\n\t\"IconArrowsExchange2\",\r\n\t\"IconArrowsExchange\",\r\n\t\"IconArrowsHorizontal\",\r\n\t\"IconArrowsJoin2\",\r\n\t\"IconArrowsJoin\",\r\n\t\"IconArrowsLeftDown\",\r\n\t\"IconArrowsLeftRight\",\r\n\t\"IconArrowsLeft\",\r\n\t\"IconArrowsMaximize\",\r\n\t\"IconArrowsMinimize\",\r\n\t\"IconArrowsMoveHorizontal\",\r\n\t\"IconArrowsMoveVertical\",\r\n\t\"IconArrowsMove\",\r\n\t\"IconArrowsRandom\",\r\n\t\"IconArrowsRightDown\",\r\n\t\"IconArrowsRightLeft\",\r\n\t\"IconArrowsRight\",\r\n\t\"IconArrowsShuffle2\",\r\n\t\"IconArrowsShuffle\",\r\n\t\"IconArrowsSort\",\r\n\t\"IconArrowsSplit2\",\r\n\t\"IconArrowsSplit\",\r\n\t\"IconArrowsTransferDown\",\r\n\t\"IconArrowsTransferUp\",\r\n\t\"IconArrowsUpDown\",\r\n\t\"IconArrowsUpLeft\",\r\n\t\"IconArrowsUpRight\",\r\n\t\"IconArrowsUp\",\r\n\t\"IconArrowsVertical\",\r\n\t\"IconArtboardFilled\",\r\n\t\"IconArtboardOff\",\r\n\t\"IconArtboard\",\r\n\t\"IconArticleFilledFilled\",\r\n\t\"IconArticleOff\",\r\n\t\"IconArticle\",\r\n\t\"IconAspectRatioFilled\",\r\n\t\"IconAspectRatioOff\",\r\n\t\"IconAspectRatio\",\r\n\t\"IconAssemblyOff\",\r\n\t\"IconAssembly\",\r\n\t\"IconAsset\",\r\n\t\"IconAsteriskSimple\",\r\n\t\"IconAsterisk\",\r\n\t\"IconAtOff\",\r\n\t\"IconAt\",\r\n\t\"IconAtom2Filled\",\r\n\t\"IconAtom2\",\r\n\t\"IconAtomOff\",\r\n\t\"IconAtom\",\r\n\t\"IconAugmentedReality2\",\r\n\t\"IconAugmentedRealityOff\",\r\n\t\"IconAugmentedReality\",\r\n\t\"IconAwardFilled\",\r\n\t\"IconAwardOff\",\r\n\t\"IconAward\",\r\n\t\"IconAxe\",\r\n\t\"IconAxisX\",\r\n\t\"IconAxisY\",\r\n\t\"IconBabyBottle\",\r\n\t\"IconBabyCarriage\",\r\n\t\"IconBackhoe\",\r\n\t\"IconBackpackOff\",\r\n\t\"IconBackpack\",\r\n\t\"IconBackslash\",\r\n\t\"IconBackspaceFilled\",\r\n\t\"IconBackspace\",\r\n\t\"IconBadge3d\",\r\n\t\"IconBadge4k\",\r\n\t\"IconBadge8k\",\r\n\t\"IconBadgeAd\",\r\n\t\"IconBadgeAr\",\r\n\t\"IconBadgeCc\",\r\n\t\"IconBadgeFilled\",\r\n\t\"IconBadgeHd\",\r\n\t\"IconBadgeOff\",\r\n\t\"IconBadgeSd\",\r\n\t\"IconBadgeTm\",\r\n\t\"IconBadgeVo\",\r\n\t\"IconBadgeVr\",\r\n\t\"IconBadgeWc\",\r\n\t\"IconBadge\",\r\n\t\"IconBadgesFilled\",\r\n\t\"IconBadgesOff\",\r\n\t\"IconBadges\",\r\n\t\"IconBaguette\",\r\n\t\"IconBallAmericanFootballOff\",\r\n\t\"IconBallAmericanFootball\",\r\n\t\"IconBallBaseball\",\r\n\t\"IconBallBasketball\",\r\n\t\"IconBallBowling\",\r\n\t\"IconBallFootballOff\",\r\n\t\"IconBallFootball\",\r\n\t\"IconBallTennis\",\r\n\t\"IconBallVolleyball\",\r\n\t\"IconBalloonFilled\",\r\n\t\"IconBalloonOff\",\r\n\t\"IconBalloon\",\r\n\t\"IconBallpenFilled\",\r\n\t\"IconBallpenOff\",\r\n\t\"IconBallpen\",\r\n\t\"IconBan\",\r\n\t\"IconBandageFilled\",\r\n\t\"IconBandageOff\",\r\n\t\"IconBandage\",\r\n\t\"IconBarbellOff\",\r\n\t\"IconBarbell\",\r\n\t\"IconBarcodeOff\",\r\n\t\"IconBarcode\",\r\n\t\"IconBarrelOff\",\r\n\t\"IconBarrel\",\r\n\t\"IconBarrierBlockOff\",\r\n\t\"IconBarrierBlock\",\r\n\t\"IconBaselineDensityLarge\",\r\n\t\"IconBaselineDensityMedium\",\r\n\t\"IconBaselineDensitySmall\",\r\n\t\"IconBaseline\",\r\n\t\"IconBasketFilled\",\r\n\t\"IconBasketOff\",\r\n\t\"IconBasket\",\r\n\t\"IconBat\",\r\n\t\"IconBathFilled\",\r\n\t\"IconBathOff\",\r\n\t\"IconBath\",\r\n\t\"IconBattery1Filled\",\r\n\t\"IconBattery1\",\r\n\t\"IconBattery2Filled\",\r\n\t\"IconBattery2\",\r\n\t\"IconBattery3Filled\",\r\n\t\"IconBattery3\",\r\n\t\"IconBattery4Filled\",\r\n\t\"IconBattery4\",\r\n\t\"IconBatteryAutomotive\",\r\n\t\"IconBatteryCharging2\",\r\n\t\"IconBatteryCharging\",\r\n\t\"IconBatteryEco\",\r\n\t\"IconBatteryFilled\",\r\n\t\"IconBatteryOff\",\r\n\t\"IconBattery\",\r\n\t\"IconBeachOff\",\r\n\t\"IconBeach\",\r\n\t\"IconBedFilled\",\r\n\t\"IconBedOff\",\r\n\t\"IconBed\",\r\n\t\"IconBeerFilled\",\r\n\t\"IconBeerOff\",\r\n\t\"IconBeer\",\r\n\t\"IconBellBolt\",\r\n\t\"IconBellCancel\",\r\n\t\"IconBellCheck\",\r\n\t\"IconBellCode\",\r\n\t\"IconBellCog\",\r\n\t\"IconBellDollar\",\r\n\t\"IconBellDown\",\r\n\t\"IconBellExclamation\",\r\n\t\"IconBellFilled\",\r\n\t\"IconBellHeart\",\r\n\t\"IconBellMinusFilled\",\r\n\t\"IconBellMinus\",\r\n\t\"IconBellOff\",\r\n\t\"IconBellPause\",\r\n\t\"IconBellPin\",\r\n\t\"IconBellPlusFilled\",\r\n\t\"IconBellPlus\",\r\n\t\"IconBellQuestion\",\r\n\t\"IconBellRinging2Filled\",\r\n\t\"IconBellRinging2\",\r\n\t\"IconBellRingingFilled\",\r\n\t\"IconBellRinging\",\r\n\t\"IconBellSchool\",\r\n\t\"IconBellSearch\",\r\n\t\"IconBellShare\",\r\n\t\"IconBellStar\",\r\n\t\"IconBellUp\",\r\n\t\"IconBellXFilled\",\r\n\t\"IconBellX\",\r\n\t\"IconBellZFilled\",\r\n\t\"IconBellZ\",\r\n\t\"IconBell\",\r\n\t\"IconBeta\",\r\n\t\"IconBible\",\r\n\t\"IconBikeOff\",\r\n\t\"IconBike\",\r\n\t\"IconBinaryOff\",\r\n\t\"IconBinaryTree2\",\r\n\t\"IconBinaryTree\",\r\n\t\"IconBinary\",\r\n\t\"IconBiohazardOff\",\r\n\t\"IconBiohazard\",\r\n\t\"IconBladeFilled\",\r\n\t\"IconBlade\",\r\n\t\"IconBleachChlorine\",\r\n\t\"IconBleachNoChlorine\",\r\n\t\"IconBleachOff\",\r\n\t\"IconBleach\",\r\n\t\"IconBlockquote\",\r\n\t\"IconBluetoothConnected\",\r\n\t\"IconBluetoothOff\",\r\n\t\"IconBluetoothX\",\r\n\t\"IconBluetooth\",\r\n\t\"IconBlurOff\",\r\n\t\"IconBlur\",\r\n\t\"IconBmp\",\r\n\t\"IconBoldOff\",\r\n\t\"IconBold\",\r\n\t\"IconBoltOff\",\r\n\t\"IconBolt\",\r\n\t\"IconBombFilled\",\r\n\t\"IconBomb\",\r\n\t\"IconBoneOff\",\r\n\t\"IconBone\",\r\n\t\"IconBongOff\",\r\n\t\"IconBong\",\r\n\t\"IconBook2\",\r\n\t\"IconBookDownload\",\r\n\t\"IconBookFilled\",\r\n\t\"IconBookOff\",\r\n\t\"IconBookUpload\",\r\n\t\"IconBook\",\r\n\t\"IconBookmarkEdit\",\r\n\t\"IconBookmarkFilled\",\r\n\t\"IconBookmarkMinus\",\r\n\t\"IconBookmarkOff\",\r\n\t\"IconBookmarkPlus\",\r\n\t\"IconBookmarkQuestion\",\r\n\t\"IconBookmark\",\r\n\t\"IconBookmarksFilled\",\r\n\t\"IconBookmarksOff\",\r\n\t\"IconBookmarks\",\r\n\t\"IconBooksOff\",\r\n\t\"IconBooks\",\r\n\t\"IconBorderAll\",\r\n\t\"IconBorderBottom\",\r\n\t\"IconBorderCorners\",\r\n\t\"IconBorderHorizontal\",\r\n\t\"IconBorderInner\",\r\n\t\"IconBorderLeft\",\r\n\t\"IconBorderNone\",\r\n\t\"IconBorderOuter\",\r\n\t\"IconBorderRadius\",\r\n\t\"IconBorderRight\",\r\n\t\"IconBorderSides\",\r\n\t\"IconBorderStyle2\",\r\n\t\"IconBorderStyle\",\r\n\t\"IconBorderTop\",\r\n\t\"IconBorderVertical\",\r\n\t\"IconBottleFilled\",\r\n\t\"IconBottleOff\",\r\n\t\"IconBottle\",\r\n\t\"IconBounceLeftFilled\",\r\n\t\"IconBounceLeft\",\r\n\t\"IconBounceRightFilled\",\r\n\t\"IconBounceRight\",\r\n\t\"IconBow\",\r\n\t\"IconBowlFilled\",\r\n\t\"IconBowl\",\r\n\t\"IconBoxAlignBottomFilled\",\r\n\t\"IconBoxAlignBottomLeftFilled\",\r\n\t\"IconBoxAlignBottomLeft\",\r\n\t\"IconBoxAlignBottomRightFilled\",\r\n\t\"IconBoxAlignBottomRight\",\r\n\t\"IconBoxAlignBottom\",\r\n\t\"IconBoxAlignLeftFilled\",\r\n\t\"IconBoxAlignLeft\",\r\n\t\"IconBoxAlignRightFilled\",\r\n\t\"IconBoxAlignRight\",\r\n\t\"IconBoxAlignTopFilled\",\r\n\t\"IconBoxAlignTopLeftFilled\",\r\n\t\"IconBoxAlignTopLeft\",\r\n\t\"IconBoxAlignTopRightFilled\",\r\n\t\"IconBoxAlignTopRight\",\r\n\t\"IconBoxAlignTop\",\r\n\t\"IconBoxMargin\",\r\n\t\"IconBoxModel2Off\",\r\n\t\"IconBoxModel2\",\r\n\t\"IconBoxModelOff\",\r\n\t\"IconBoxModel\",\r\n\t\"IconBoxMultiple0\",\r\n\t\"IconBoxMultiple1\",\r\n\t\"IconBoxMultiple2\",\r\n\t\"IconBoxMultiple3\",\r\n\t\"IconBoxMultiple4\",\r\n\t\"IconBoxMultiple5\",\r\n\t\"IconBoxMultiple6\",\r\n\t\"IconBoxMultiple7\",\r\n\t\"IconBoxMultiple8\",\r\n\t\"IconBoxMultiple9\",\r\n\t\"IconBoxMultiple\",\r\n\t\"IconBoxOff\",\r\n\t\"IconBoxPadding\",\r\n\t\"IconBoxSeam\",\r\n\t\"IconBox\",\r\n\t\"IconBracesOff\",\r\n\t\"IconBraces\",\r\n\t\"IconBracketsContainEnd\",\r\n\t\"IconBracketsContainStart\",\r\n\t\"IconBracketsContain\",\r\n\t\"IconBracketsOff\",\r\n\t\"IconBrackets\",\r\n\t\"IconBraille\",\r\n\t\"IconBrain\",\r\n\t\"IconBrand4chan\",\r\n\t\"IconBrandAbstract\",\r\n\t\"IconBrandAdobe\",\r\n\t\"IconBrandAdonisJs\",\r\n\t\"IconBrandAirbnb\",\r\n\t\"IconBrandAirtable\",\r\n\t\"IconBrandAlgolia\",\r\n\t\"IconBrandAlipay\",\r\n\t\"IconBrandAlpineJs\",\r\n\t\"IconBrandAmazon\",\r\n\t\"IconBrandAmd\",\r\n\t\"IconBrandAmigo\",\r\n\t\"IconBrandAmongUs\",\r\n\t\"IconBrandAndroid\",\r\n\t\"IconBrandAngular\",\r\n\t\"IconBrandAnsible\",\r\n\t\"IconBrandAo3\",\r\n\t\"IconBrandAppgallery\",\r\n\t\"IconBrandAppleArcade\",\r\n\t\"IconBrandApplePodcast\",\r\n\t\"IconBrandApple\",\r\n\t\"IconBrandAppstore\",\r\n\t\"IconBrandAsana\",\r\n\t\"IconBrandAws\",\r\n\t\"IconBrandAzure\",\r\n\t\"IconBrandBackbone\",\r\n\t\"IconBrandBadoo\",\r\n\t\"IconBrandBaidu\",\r\n\t\"IconBrandBandcamp\",\r\n\t\"IconBrandBandlab\",\r\n\t\"IconBrandBeats\",\r\n\t\"IconBrandBehance\",\r\n\t\"IconBrandBilibili\",\r\n\t\"IconBrandBinance\",\r\n\t\"IconBrandBing\",\r\n\t\"IconBrandBitbucket\",\r\n\t\"IconBrandBlackberry\",\r\n\t\"IconBrandBlender\",\r\n\t\"IconBrandBlogger\",\r\n\t\"IconBrandBooking\",\r\n\t\"IconBrandBootstrap\",\r\n\t\"IconBrandBulma\",\r\n\t\"IconBrandBumble\",\r\n\t\"IconBrandBunpo\",\r\n\t\"IconBrandCSharp\",\r\n\t\"IconBrandCake\",\r\n\t\"IconBrandCakephp\",\r\n\t\"IconBrandCampaignmonitor\",\r\n\t\"IconBrandCarbon\",\r\n\t\"IconBrandCashapp\",\r\n\t\"IconBrandChrome\",\r\n\t\"IconBrandCinema4d\",\r\n\t\"IconBrandCitymapper\",\r\n\t\"IconBrandCloudflare\",\r\n\t\"IconBrandCodecov\",\r\n\t\"IconBrandCodepen\",\r\n\t\"IconBrandCodesandbox\",\r\n\t\"IconBrandCohost\",\r\n\t\"IconBrandCoinbase\",\r\n\t\"IconBrandComedyCentral\",\r\n\t\"IconBrandCoreos\",\r\n\t\"IconBrandCouchdb\",\r\n\t\"IconBrandCouchsurfing\",\r\n\t\"IconBrandCpp\",\r\n\t\"IconBrandCraft\",\r\n\t\"IconBrandCrunchbase\",\r\n\t\"IconBrandCss3\",\r\n\t\"IconBrandCtemplar\",\r\n\t\"IconBrandCucumber\",\r\n\t\"IconBrandCupra\",\r\n\t\"IconBrandCypress\",\r\n\t\"IconBrandD3\",\r\n\t\"IconBrandDaysCounter\",\r\n\t\"IconBrandDcos\",\r\n\t\"IconBrandDebian\",\r\n\t\"IconBrandDeezer\",\r\n\t\"IconBrandDeliveroo\",\r\n\t\"IconBrandDeno\",\r\n\t\"IconBrandDenodo\",\r\n\t\"IconBrandDeviantart\",\r\n\t\"IconBrandDigg\",\r\n\t\"IconBrandDingtalk\",\r\n\t\"IconBrandDiscordFilled\",\r\n\t\"IconBrandDiscord\",\r\n\t\"IconBrandDisney\",\r\n\t\"IconBrandDisqus\",\r\n\t\"IconBrandDjango\",\r\n\t\"IconBrandDocker\",\r\n\t\"IconBrandDoctrine\",\r\n\t\"IconBrandDolbyDigital\",\r\n\t\"IconBrandDouban\",\r\n\t\"IconBrandDribbbleFilled\",\r\n\t\"IconBrandDribbble\",\r\n\t\"IconBrandDrops\",\r\n\t\"IconBrandDrupal\",\r\n\t\"IconBrandEdge\",\r\n\t\"IconBrandElastic\",\r\n\t\"IconBrandElectronicArts\",\r\n\t\"IconBrandEmber\",\r\n\t\"IconBrandEnvato\",\r\n\t\"IconBrandEtsy\",\r\n\t\"IconBrandEvernote\",\r\n\t\"IconBrandFacebookFilled\",\r\n\t\"IconBrandFacebook\",\r\n\t\"IconBrandFeedly\",\r\n\t\"IconBrandFigma\",\r\n\t\"IconBrandFilezilla\",\r\n\t\"IconBrandFinder\",\r\n\t\"IconBrandFirebase\",\r\n\t\"IconBrandFirefox\",\r\n\t\"IconBrandFiverr\",\r\n\t\"IconBrandFlickr\",\r\n\t\"IconBrandFlightradar24\",\r\n\t\"IconBrandFlipboard\",\r\n\t\"IconBrandFlutter\",\r\n\t\"IconBrandFortnite\",\r\n\t\"IconBrandFoursquare\",\r\n\t\"IconBrandFramerMotion\",\r\n\t\"IconBrandFramer\",\r\n\t\"IconBrandFunimation\",\r\n\t\"IconBrandGatsby\",\r\n\t\"IconBrandGit\",\r\n\t\"IconBrandGithubCopilot\",\r\n\t\"IconBrandGithubFilled\",\r\n\t\"IconBrandGithub\",\r\n\t\"IconBrandGitlab\",\r\n\t\"IconBrandGmail\",\r\n\t\"IconBrandGolang\",\r\n\t\"IconBrandGoogleAnalytics\",\r\n\t\"IconBrandGoogleBigQuery\",\r\n\t\"IconBrandGoogleDrive\",\r\n\t\"IconBrandGoogleFit\",\r\n\t\"IconBrandGoogleHome\",\r\n\t\"IconBrandGoogleMaps\",\r\n\t\"IconBrandGoogleOne\",\r\n\t\"IconBrandGooglePhotos\",\r\n\t\"IconBrandGooglePlay\",\r\n\t\"IconBrandGooglePodcasts\",\r\n\t\"IconBrandGoogle\",\r\n\t\"IconBrandGrammarly\",\r\n\t\"IconBrandGraphql\",\r\n\t\"IconBrandGravatar\",\r\n\t\"IconBrandGrindr\",\r\n\t\"IconBrandGuardian\",\r\n\t\"IconBrandGumroad\",\r\n\t\"IconBrandHbo\",\r\n\t\"IconBrandHeadlessui\",\r\n\t\"IconBrandHexo\",\r\n\t\"IconBrandHipchat\",\r\n\t\"IconBrandHtml5\",\r\n\t\"IconBrandInertia\",\r\n\t\"IconBrandInstagram\",\r\n\t\"IconBrandIntercom\",\r\n\t\"IconBrandItch\",\r\n\t\"IconBrandJavascript\",\r\n\t\"IconBrandJuejin\",\r\n\t\"IconBrandKbin\",\r\n\t\"IconBrandKick\",\r\n\t\"IconBrandKickstarter\",\r\n\t\"IconBrandKotlin\",\r\n\t\"IconBrandLaravel\",\r\n\t\"IconBrandLastfm\",\r\n\t\"IconBrandLeetcode\",\r\n\t\"IconBrandLetterboxd\",\r\n\t\"IconBrandLine\",\r\n\t\"IconBrandLinkedin\",\r\n\t\"IconBrandLinktree\",\r\n\t\"IconBrandLinqpad\",\r\n\t\"IconBrandLoom\",\r\n\t\"IconBrandMailgun\",\r\n\t\"IconBrandMantine\",\r\n\t\"IconBrandMastercard\",\r\n\t\"IconBrandMastodon\",\r\n\t\"IconBrandMatrix\",\r\n\t\"IconBrandMcdonalds\",\r\n\t\"IconBrandMedium\",\r\n\t\"IconBrandMercedes\",\r\n\t\"IconBrandMessenger\",\r\n\t\"IconBrandMeta\",\r\n\t\"IconBrandMicrosoftTeams\",\r\n\t\"IconBrandMinecraft\",\r\n\t\"IconBrandMiniprogram\",\r\n\t\"IconBrandMixpanel\",\r\n\t\"IconBrandMonday\",\r\n\t\"IconBrandMongodb\",\r\n\t\"IconBrandMyOppo\",\r\n\t\"IconBrandMysql\",\r\n\t\"IconBrandNationalGeographic\",\r\n\t\"IconBrandNem\",\r\n\t\"IconBrandNetbeans\",\r\n\t\"IconBrandNeteaseMusic\",\r\n\t\"IconBrandNetflix\",\r\n\t\"IconBrandNexo\",\r\n\t\"IconBrandNextcloud\",\r\n\t\"IconBrandNextjs\",\r\n\t\"IconBrandNodejs\",\r\n\t\"IconBrandNordVpn\",\r\n\t\"IconBrandNotion\",\r\n\t\"IconBrandNpm\",\r\n\t\"IconBrandNuxt\",\r\n\t\"IconBrandNytimes\",\r\n\t\"IconBrandOauth\",\r\n\t\"IconBrandOffice\",\r\n\t\"IconBrandOkRu\",\r\n\t\"IconBrandOnedrive\",\r\n\t\"IconBrandOnlyfans\",\r\n\t\"IconBrandOpenSource\",\r\n\t\"IconBrandOpenai\",\r\n\t\"IconBrandOpenvpn\",\r\n\t\"IconBrandOpera\",\r\n\t\"IconBrandPagekit\",\r\n\t\"IconBrandPatreon\",\r\n\t\"IconBrandPaypalFilled\",\r\n\t\"IconBrandPaypal\",\r\n\t\"IconBrandPaypay\",\r\n\t\"IconBrandPeanut\",\r\n\t\"IconBrandPepsi\",\r\n\t\"IconBrandPhp\",\r\n\t\"IconBrandPicsart\",\r\n\t\"IconBrandPinterest\",\r\n\t\"IconBrandPlanetscale\",\r\n\t\"IconBrandPocket\",\r\n\t\"IconBrandPolymer\",\r\n\t\"IconBrandPowershell\",\r\n\t\"IconBrandPrisma\",\r\n\t\"IconBrandProducthunt\",\r\n\t\"IconBrandPushbullet\",\r\n\t\"IconBrandPushover\",\r\n\t\"IconBrandPython\",\r\n\t\"IconBrandQq\",\r\n\t\"IconBrandRadixUi\",\r\n\t\"IconBrandReactNative\",\r\n\t\"IconBrandReact\",\r\n\t\"IconBrandReason\",\r\n\t\"IconBrandReddit\",\r\n\t\"IconBrandRedhat\",\r\n\t\"IconBrandRedux\",\r\n\t\"IconBrandRevolut\",\r\n\t\"IconBrandRumble\",\r\n\t\"IconBrandRust\",\r\n\t\"IconBrandSafari\",\r\n\t\"IconBrandSamsungpass\",\r\n\t\"IconBrandSass\",\r\n\t\"IconBrandSentry\",\r\n\t\"IconBrandSharik\",\r\n\t\"IconBrandShazam\",\r\n\t\"IconBrandShopee\",\r\n\t\"IconBrandSketch\",\r\n\t\"IconBrandSkype\",\r\n\t\"IconBrandSlack\",\r\n\t\"IconBrandSnapchat\",\r\n\t\"IconBrandSnapseed\",\r\n\t\"IconBrandSnowflake\",\r\n\t\"IconBrandSocketIo\",\r\n\t\"IconBrandSolidjs\",\r\n\t\"IconBrandSoundcloud\",\r\n\t\"IconBrandSpacehey\",\r\n\t\"IconBrandSpeedtest\",\r\n\t\"IconBrandSpotify\",\r\n\t\"IconBrandStackoverflow\",\r\n\t\"IconBrandStackshare\",\r\n\t\"IconBrandSteam\",\r\n\t\"IconBrandStorj\",\r\n\t\"IconBrandStorybook\",\r\n\t\"IconBrandStorytel\",\r\n\t\"IconBrandStrava\",\r\n\t\"IconBrandStripe\",\r\n\t\"IconBrandSublimeText\",\r\n\t\"IconBrandSugarizer\",\r\n\t\"IconBrandSupabase\",\r\n\t\"IconBrandSuperhuman\",\r\n\t\"IconBrandSupernova\",\r\n\t\"IconBrandSurfshark\",\r\n\t\"IconBrandSvelte\",\r\n\t\"IconBrandSwift\",\r\n\t\"IconBrandSymfony\",\r\n\t\"IconBrandTabler\",\r\n\t\"IconBrandTailwind\",\r\n\t\"IconBrandTaobao\",\r\n\t\"IconBrandTed\",\r\n\t\"IconBrandTelegram\",\r\n\t\"IconBrandTerraform\",\r\n\t\"IconBrandTether\",\r\n\t\"IconBrandThreads\",\r\n\t\"IconBrandThreejs\",\r\n\t\"IconBrandTidal\",\r\n\t\"IconBrandTiktoFilled\",\r\n\t\"IconBrandTiktok\",\r\n\t\"IconBrandTinder\",\r\n\t\"IconBrandTopbuzz\",\r\n\t\"IconBrandTorchain\",\r\n\t\"IconBrandToyota\",\r\n\t\"IconBrandTrello\",\r\n\t\"IconBrandTripadvisor\",\r\n\t\"IconBrandTumblr\",\r\n\t\"IconBrandTwilio\",\r\n\t\"IconBrandTwitch\",\r\n\t\"IconBrandTwitterFilled\",\r\n\t\"IconBrandTwitter\",\r\n\t\"IconBrandTypescript\",\r\n\t\"IconBrandUber\",\r\n\t\"IconBrandUbuntu\",\r\n\t\"IconBrandUnity\",\r\n\t\"IconBrandUnsplash\",\r\n\t\"IconBrandUpwork\",\r\n\t\"IconBrandValorant\",\r\n\t\"IconBrandVercel\",\r\n\t\"IconBrandVimeo\",\r\n\t\"IconBrandVinted\",\r\n\t\"IconBrandVisa\",\r\n\t\"IconBrandVisualStudio\",\r\n\t\"IconBrandVite\",\r\n\t\"IconBrandVivaldi\",\r\n\t\"IconBrandVk\",\r\n\t\"IconBrandVlc\",\r\n\t\"IconBrandVolkswagen\",\r\n\t\"IconBrandVsco\",\r\n\t\"IconBrandVscode\",\r\n\t\"IconBrandVue\",\r\n\t\"IconBrandWalmart\",\r\n\t\"IconBrandWaze\",\r\n\t\"IconBrandWebflow\",\r\n\t\"IconBrandWechat\",\r\n\t\"IconBrandWeibo\",\r\n\t\"IconBrandWhatsapp\",\r\n\t\"IconBrandWikipedia\",\r\n\t\"IconBrandWindows\",\r\n\t\"IconBrandWindy\",\r\n\t\"IconBrandWish\",\r\n\t\"IconBrandWix\",\r\n\t\"IconBrandWordpress\",\r\n\t\"IconBrandXamarin\",\r\n\t\"IconBrandXbox\",\r\n\t\"IconBrandXing\",\r\n\t\"IconBrandYahoo\",\r\n\t\"IconBrandYandex\",\r\n\t\"IconBrandYatse\",\r\n\t\"IconBrandYcombinator\",\r\n\t\"IconBrandYoutubeKids\",\r\n\t\"IconBrandYoutube\",\r\n\t\"IconBrandZalando\",\r\n\t\"IconBrandZapier\",\r\n\t\"IconBrandZeit\",\r\n\t\"IconBrandZhihu\",\r\n\t\"IconBrandZoom\",\r\n\t\"IconBrandZulip\",\r\n\t\"IconBrandZwift\",\r\n\t\"IconBreadOff\",\r\n\t\"IconBread\",\r\n\t\"IconBriefcase2\",\r\n\t\"IconBriefcaseOff\",\r\n\t\"IconBriefcase\",\r\n\t\"IconBrightness2\",\r\n\t\"IconBrightnessDownFilled\",\r\n\t\"IconBrightnessDown\",\r\n\t\"IconBrightnessHalf\",\r\n\t\"IconBrightnessOff\",\r\n\t\"IconBrightnessUpFilled\",\r\n\t\"IconBrightnessUp\",\r\n\t\"IconBrightness\",\r\n\t\"IconBroadcastOff\",\r\n\t\"IconBroadcast\",\r\n\t\"IconBrowserCheck\",\r\n\t\"IconBrowserOff\",\r\n\t\"IconBrowserPlus\",\r\n\t\"IconBrowserX\",\r\n\t\"IconBrowser\",\r\n\t\"IconBrushOff\",\r\n\t\"IconBrush\",\r\n\t\"IconBucketDroplet\",\r\n\t\"IconBucketOff\",\r\n\t\"IconBucket\",\r\n\t\"IconBugOff\",\r\n\t\"IconBug\",\r\n\t\"IconBuildingArch\",\r\n\t\"IconBuildingBank\",\r\n\t\"IconBuildingBridge2\",\r\n\t\"IconBuildingBridge\",\r\n\t\"IconBuildingBroadcastTower\",\r\n\t\"IconBuildingCarousel\",\r\n\t\"IconBuildingCastle\",\r\n\t\"IconBuildingChurch\",\r\n\t\"IconBuildingCircus\",\r\n\t\"IconBuildingCommunity\",\r\n\t\"IconBuildingCottage\",\r\n\t\"IconBuildingEstate\",\r\n\t\"IconBuildingFactory2\",\r\n\t\"IconBuildingFactory\",\r\n\t\"IconBuildingFortress\",\r\n\t\"IconBuildingHospital\",\r\n\t\"IconBuildingLighthouse\",\r\n\t\"IconBuildingMonument\",\r\n\t\"IconBuildingMosque\",\r\n\t\"IconBuildingPavilion\",\r\n\t\"IconBuildingSkyscraper\",\r\n\t\"IconBuildingStadium\",\r\n\t\"IconBuildingStore\",\r\n\t\"IconBuildingTunnel\",\r\n\t\"IconBuildingWarehouse\",\r\n\t\"IconBuildingWindTurbine\",\r\n\t\"IconBuilding\",\r\n\t\"IconBulbFilled\",\r\n\t\"IconBulbOff\",\r\n\t\"IconBulb\",\r\n\t\"IconBulldozer\",\r\n\t\"IconBusOff\",\r\n\t\"IconBusStop\",\r\n\t\"IconBus\",\r\n\t\"IconBusinessplan\",\r\n\t\"IconButterfly\",\r\n\t\"IconCactusFilled\",\r\n\t\"IconCactusOff\",\r\n\t\"IconCactus\",\r\n\t\"IconCakeOff\",\r\n\t\"IconCake\",\r\n\t\"IconCalculatorFilled\",\r\n\t\"IconCalculatorOff\",\r\n\t\"IconCalculator\",\r\n\t\"IconCalendarBolt\",\r\n\t\"IconCalendarCancel\",\r\n\t\"IconCalendarCheck\",\r\n\t\"IconCalendarCode\",\r\n\t\"IconCalendarCog\",\r\n\t\"IconCalendarDollar\",\r\n\t\"IconCalendarDown\",\r\n\t\"IconCalendarDue\",\r\n\t\"IconCalendarEvent\",\r\n\t\"IconCalendarExclamation\",\r\n\t\"IconCalendarFilled\",\r\n\t\"IconCalendarHeart\",\r\n\t\"IconCalendarMinus\",\r\n\t\"IconCalendarOff\",\r\n\t\"IconCalendarPause\",\r\n\t\"IconCalendarPin\",\r\n\t\"IconCalendarPlus\",\r\n\t\"IconCalendarQuestion\",\r\n\t\"IconCalendarRepeat\",\r\n\t\"IconCalendarSearch\",\r\n\t\"IconCalendarShare\",\r\n\t\"IconCalendarStar\",\r\n\t\"IconCalendarStats\",\r\n\t\"IconCalendarTime\",\r\n\t\"IconCalendarUp\",\r\n\t\"IconCalendarX\",\r\n\t\"IconCalendar\",\r\n\t\"IconCameraBolt\",\r\n\t\"IconCameraCancel\",\r\n\t\"IconCameraCheck\",\r\n\t\"IconCameraCode\",\r\n\t\"IconCameraCog\",\r\n\t\"IconCameraDollar\",\r\n\t\"IconCameraDown\",\r\n\t\"IconCameraExclamation\",\r\n\t\"IconCameraFilled\",\r\n\t\"IconCameraHeart\",\r\n\t\"IconCameraMinus\",\r\n\t\"IconCameraOff\",\r\n\t\"IconCameraPause\",\r\n\t\"IconCameraPin\",\r\n\t\"IconCameraPlus\",\r\n\t\"IconCameraQuestion\",\r\n\t\"IconCameraRotate\",\r\n\t\"IconCameraSearch\",\r\n\t\"IconCameraSelfie\",\r\n\t\"IconCameraShare\",\r\n\t\"IconCameraStar\",\r\n\t\"IconCameraUp\",\r\n\t\"IconCameraX\",\r\n\t\"IconCamera\",\r\n\t\"IconCamper\",\r\n\t\"IconCampfireFilled\",\r\n\t\"IconCampfire\",\r\n\t\"IconCandle\",\r\n\t\"IconCandyOff\",\r\n\t\"IconCandy\",\r\n\t\"IconCane\",\r\n\t\"IconCannabis\",\r\n\t\"IconCapsuleHorizontal\",\r\n\t\"IconCapsule\",\r\n\t\"IconCaptureFilled\",\r\n\t\"IconCaptureOff\",\r\n\t\"IconCapture\",\r\n\t\"IconCarCrane\",\r\n\t\"IconCarCrash\",\r\n\t\"IconCarOff\",\r\n\t\"IconCarTurbine\",\r\n\t\"IconCar\",\r\n\t\"IconCaravan\",\r\n\t\"IconCardboardsOff\",\r\n\t\"IconCardboards\",\r\n\t\"IconCards\",\r\n\t\"IconCaretDownFilled\",\r\n\t\"IconCaretDown\",\r\n\t\"IconCaretLeftFilled\",\r\n\t\"IconCaretLeft\",\r\n\t\"IconCaretRightFilled\",\r\n\t\"IconCaretRight\",\r\n\t\"IconCaretUpFilled\",\r\n\t\"IconCaretUp\",\r\n\t\"IconCarouselHorizontalFilled\",\r\n\t\"IconCarouselHorizontal\",\r\n\t\"IconCarouselVerticalFilled\",\r\n\t\"IconCarouselVertical\",\r\n\t\"IconCarrotOff\",\r\n\t\"IconCarrot\",\r\n\t\"IconCashBanknoteOff\",\r\n\t\"IconCashBanknote\",\r\n\t\"IconCashOff\",\r\n\t\"IconCash\",\r\n\t\"IconCastOff\",\r\n\t\"IconCast\",\r\n\t\"IconCat\",\r\n\t\"IconCategory2\",\r\n\t\"IconCategoryFilled\",\r\n\t\"IconCategory\",\r\n\t\"IconCeOff\",\r\n\t\"IconCe\",\r\n\t\"IconCellSignal1\",\r\n\t\"IconCellSignal2\",\r\n\t\"IconCellSignal3\",\r\n\t\"IconCellSignal4\",\r\n\t\"IconCellSignal5\",\r\n\t\"IconCellSignalOff\",\r\n\t\"IconCell\",\r\n\t\"IconCertificate2Off\",\r\n\t\"IconCertificate2\",\r\n\t\"IconCertificateOff\",\r\n\t\"IconCertificate\",\r\n\t\"IconChairDirector\",\r\n\t\"IconChalkboardOff\",\r\n\t\"IconChalkboard\",\r\n\t\"IconChargingPile\",\r\n\t\"IconChartArcs3\",\r\n\t\"IconChartArcs\",\r\n\t\"IconChartAreaFilled\",\r\n\t\"IconChartAreaLineFilled\",\r\n\t\"IconChartAreaLine\",\r\n\t\"IconChartArea\",\r\n\t\"IconChartArrowsVertical\",\r\n\t\"IconChartArrows\",\r\n\t\"IconChartBarOff\",\r\n\t\"IconChartBar\",\r\n\t\"IconChartBubbleFilled\",\r\n\t\"IconChartBubble\",\r\n\t\"IconChartCandleFilled\",\r\n\t\"IconChartCandle\",\r\n\t\"IconChartCircles\",\r\n\t\"IconChartDonut2\",\r\n\t\"IconChartDonut3\",\r\n\t\"IconChartDonut4\",\r\n\t\"IconChartDonutFilled\",\r\n\t\"IconChartDonut\",\r\n\t\"IconChartDots2\",\r\n\t\"IconChartDots3\",\r\n\t\"IconChartDots\",\r\n\t\"IconChartGridDots\",\r\n\t\"IconChartHistogram\",\r\n\t\"IconChartInfographic\",\r\n\t\"IconChartLine\",\r\n\t\"IconChartPie2\",\r\n\t\"IconChartPie3\",\r\n\t\"IconChartPie4\",\r\n\t\"IconChartPieFilled\",\r\n\t\"IconChartPieOff\",\r\n\t\"IconChartPie\",\r\n\t\"IconChartPpf\",\r\n\t\"IconChartRadar\",\r\n\t\"IconChartSankey\",\r\n\t\"IconChartTreemap\",\r\n\t\"IconCheck\",\r\n\t\"IconCheckbox\",\r\n\t\"IconChecklist\",\r\n\t\"IconChecks\",\r\n\t\"IconCheckupList\",\r\n\t\"IconCheese\",\r\n\t\"IconChefHatOff\",\r\n\t\"IconChefHat\",\r\n\t\"IconCherryFilled\",\r\n\t\"IconCherry\",\r\n\t\"IconChessBishopFilled\",\r\n\t\"IconChessBishop\",\r\n\t\"IconChessFilled\",\r\n\t\"IconChessKingFilled\",\r\n\t\"IconChessKing\",\r\n\t\"IconChessKnightFilled\",\r\n\t\"IconChessKnight\",\r\n\t\"IconChessQueenFilled\",\r\n\t\"IconChessQueen\",\r\n\t\"IconChessRookFilled\",\r\n\t\"IconChessRook\",\r\n\t\"IconChess\",\r\n\t\"IconChevronCompactDown\",\r\n\t\"IconChevronCompactLeft\",\r\n\t\"IconChevronCompactRight\",\r\n\t\"IconChevronCompactUp\",\r\n\t\"IconChevronDownLeft\",\r\n\t\"IconChevronDownRight\",\r\n\t\"IconChevronDown\",\r\n\t\"IconChevronLeftPipe\",\r\n\t\"IconChevronLeft\",\r\n\t\"IconChevronRightPipe\",\r\n\t\"IconChevronRight\",\r\n\t\"IconChevronUpLeft\",\r\n\t\"IconChevronUpRight\",\r\n\t\"IconChevronUp\",\r\n\t\"IconChevronsDownLeft\",\r\n\t\"IconChevronsDownRight\",\r\n\t\"IconChevronsDown\",\r\n\t\"IconChevronsLeft\",\r\n\t\"IconChevronsRight\",\r\n\t\"IconChevronsUpLeft\",\r\n\t\"IconChevronsUpRight\",\r\n\t\"IconChevronsUp\",\r\n\t\"IconChisel\",\r\n\t\"IconChristmasTreeOff\",\r\n\t\"IconChristmasTree\",\r\n\t\"IconCircle0Filled\",\r\n\t\"IconCircle1Filled\",\r\n\t\"IconCircle2Filled\",\r\n\t\"IconCircle3Filled\",\r\n\t\"IconCircle4Filled\",\r\n\t\"IconCircle5Filled\",\r\n\t\"IconCircle6Filled\",\r\n\t\"IconCircle7Filled\",\r\n\t\"IconCircle8Filled\",\r\n\t\"IconCircle9Filled\",\r\n\t\"IconCircleArrowDownFilled\",\r\n\t\"IconCircleArrowDownLeftFilled\",\r\n\t\"IconCircleArrowDownLeft\",\r\n\t\"IconCircleArrowDownRightFilled\",\r\n\t\"IconCircleArrowDownRight\",\r\n\t\"IconCircleArrowDown\",\r\n\t\"IconCircleArrowLeftFilled\",\r\n\t\"IconCircleArrowLeft\",\r\n\t\"IconCircleArrowRightFilled\",\r\n\t\"IconCircleArrowRight\",\r\n\t\"IconCircleArrowUpFilled\",\r\n\t\"IconCircleArrowUpLeftFilled\",\r\n\t\"IconCircleArrowUpLeft\",\r\n\t\"IconCircleArrowUpRightFilled\",\r\n\t\"IconCircleArrowUpRight\",\r\n\t\"IconCircleArrowUp\",\r\n\t\"IconCircleCaretDown\",\r\n\t\"IconCircleCaretLeft\",\r\n\t\"IconCircleCaretRight\",\r\n\t\"IconCircleCaretUp\",\r\n\t\"IconCircleCheckFilled\",\r\n\t\"IconCircleCheck\",\r\n\t\"IconCircleChevronDown\",\r\n\t\"IconCircleChevronLeft\",\r\n\t\"IconCircleChevronRight\",\r\n\t\"IconCircleChevronUp\",\r\n\t\"IconCircleChevronsDown\",\r\n\t\"IconCircleChevronsLeft\",\r\n\t\"IconCircleChevronsRight\",\r\n\t\"IconCircleChevronsUp\",\r\n\t\"IconCircleDashed\",\r\n\t\"IconCircleDotFilled\",\r\n\t\"IconCircleDot\",\r\n\t\"IconCircleDotted\",\r\n\t\"IconCircleFilled\",\r\n\t\"IconCircleHalf2\",\r\n\t\"IconCircleHalfVertical\",\r\n\t\"IconCircleHalf\",\r\n\t\"IconCircleKeyFilled\",\r\n\t\"IconCircleKey\",\r\n\t\"IconCircleLetterA\",\r\n\t\"IconCircleLetterB\",\r\n\t\"IconCircleLetterC\",\r\n\t\"IconCircleLetterD\",\r\n\t\"IconCircleLetterE\",\r\n\t\"IconCircleLetterF\",\r\n\t\"IconCircleLetterG\",\r\n\t\"IconCircleLetterH\",\r\n\t\"IconCircleLetterI\",\r\n\t\"IconCircleLetterJ\",\r\n\t\"IconCircleLetterK\",\r\n\t\"IconCircleLetterL\",\r\n\t\"IconCircleLetterM\",\r\n\t\"IconCircleLetterN\",\r\n\t\"IconCircleLetterO\",\r\n\t\"IconCircleLetterP\",\r\n\t\"IconCircleLetterQ\",\r\n\t\"IconCircleLetterR\",\r\n\t\"IconCircleLetterS\",\r\n\t\"IconCircleLetterT\",\r\n\t\"IconCircleLetterU\",\r\n\t\"IconCircleLetterV\",\r\n\t\"IconCircleLetterW\",\r\n\t\"IconCircleLetterX\",\r\n\t\"IconCircleLetterY\",\r\n\t\"IconCircleLetterZ\",\r\n\t\"IconCircleMinus\",\r\n\t\"IconCircleNumber0\",\r\n\t\"IconCircleNumber1\",\r\n\t\"IconCircleNumber2\",\r\n\t\"IconCircleNumber3\",\r\n\t\"IconCircleNumber4\",\r\n\t\"IconCircleNumber5\",\r\n\t\"IconCircleNumber6\",\r\n\t\"IconCircleNumber7\",\r\n\t\"IconCircleNumber8\",\r\n\t\"IconCircleNumber9\",\r\n\t\"IconCircleOff\",\r\n\t\"IconCirclePlus\",\r\n\t\"IconCircleRectangleOff\",\r\n\t\"IconCircleRectangle\",\r\n\t\"IconCircleSquare\",\r\n\t\"IconCircleTriangle\",\r\n\t\"IconCircleXFilled\",\r\n\t\"IconCircleX\",\r\n\t\"IconCircle\",\r\n\t\"IconCirclesFilled\",\r\n\t\"IconCirclesRelation\",\r\n\t\"IconCircles\",\r\n\t\"IconCircuitAmmeter\",\r\n\t\"IconCircuitBattery\",\r\n\t\"IconCircuitBulb\",\r\n\t\"IconCircuitCapacitorPolarized\",\r\n\t\"IconCircuitCapacitor\",\r\n\t\"IconCircuitCellPlus\",\r\n\t\"IconCircuitCell\",\r\n\t\"IconCircuitChangeover\",\r\n\t\"IconCircuitDiodeZener\",\r\n\t\"IconCircuitDiode\",\r\n\t\"IconCircuitGroundDigital\",\r\n\t\"IconCircuitGround\",\r\n\t\"IconCircuitInductor\",\r\n\t\"IconCircuitMotor\",\r\n\t\"IconCircuitPushbutton\",\r\n\t\"IconCircuitResistor\",\r\n\t\"IconCircuitSwitchClosed\",\r\n\t\"IconCircuitSwitchOpen\",\r\n\t\"IconCircuitVoltmeter\",\r\n\t\"IconClearAll\",\r\n\t\"IconClearFormatting\",\r\n\t\"IconClick\",\r\n\t\"IconClipboardCheck\",\r\n\t\"IconClipboardCopy\",\r\n\t\"IconClipboardData\",\r\n\t\"IconClipboardHeart\",\r\n\t\"IconClipboardList\",\r\n\t\"IconClipboardOff\",\r\n\t\"IconClipboardPlus\",\r\n\t\"IconClipboardText\",\r\n\t\"IconClipboardTypography\",\r\n\t\"IconClipboardX\",\r\n\t\"IconClipboard\",\r\n\t\"IconClock2\",\r\n\t\"IconClockBolt\",\r\n\t\"IconClockCancel\",\r\n\t\"IconClockCheck\",\r\n\t\"IconClockCode\",\r\n\t\"IconClockCog\",\r\n\t\"IconClockDollar\",\r\n\t\"IconClockDown\",\r\n\t\"IconClockEdit\",\r\n\t\"IconClockExclamation\",\r\n\t\"IconClockFilled\",\r\n\t\"IconClockHeart\",\r\n\t\"IconClockHour1\",\r\n\t\"IconClockHour10\",\r\n\t\"IconClockHour11\",\r\n\t\"IconClockHour12\",\r\n\t\"IconClockHour2\",\r\n\t\"IconClockHour3\",\r\n\t\"IconClockHour4\",\r\n\t\"IconClockHour5\",\r\n\t\"IconClockHour6\",\r\n\t\"IconClockHour7\",\r\n\t\"IconClockHour8\",\r\n\t\"IconClockHour9\",\r\n\t\"IconClockMinus\",\r\n\t\"IconClockOff\",\r\n\t\"IconClockPause\",\r\n\t\"IconClockPin\",\r\n\t\"IconClockPlay\",\r\n\t\"IconClockPlus\",\r\n\t\"IconClockQuestion\",\r\n\t\"IconClockRecord\",\r\n\t\"IconClockSearch\",\r\n\t\"IconClockShare\",\r\n\t\"IconClockShield\",\r\n\t\"IconClockStar\",\r\n\t\"IconClockStop\",\r\n\t\"IconClockUp\",\r\n\t\"IconClockX\",\r\n\t\"IconClock\",\r\n\t\"IconClothesRackOff\",\r\n\t\"IconClothesRack\",\r\n\t\"IconCloudBolt\",\r\n\t\"IconCloudCancel\",\r\n\t\"IconCloudCheck\",\r\n\t\"IconCloudCode\",\r\n\t\"IconCloudCog\",\r\n\t\"IconCloudComputing\",\r\n\t\"IconCloudDataConnection\",\r\n\t\"IconCloudDollar\",\r\n\t\"IconCloudDown\",\r\n\t\"IconCloudDownload\",\r\n\t\"IconCloudExclamation\",\r\n\t\"IconCloudFilled\",\r\n\t\"IconCloudFog\",\r\n\t\"IconCloudHeart\",\r\n\t\"IconCloudLockOpen\",\r\n\t\"IconCloudLock\",\r\n\t\"IconCloudMinus\",\r\n\t\"IconCloudOff\",\r\n\t\"IconCloudPause\",\r\n\t\"IconCloudPin\",\r\n\t\"IconCloudPlus\",\r\n\t\"IconCloudQuestion\",\r\n\t\"IconCloudRain\",\r\n\t\"IconCloudSearch\",\r\n\t\"IconCloudShare\",\r\n\t\"IconCloudSnow\",\r\n\t\"IconCloudStar\",\r\n\t\"IconCloudStorm\",\r\n\t\"IconCloudUp\",\r\n\t\"IconCloudUpload\",\r\n\t\"IconCloudX\",\r\n\t\"IconCloud\",\r\n\t\"IconClover2\",\r\n\t\"IconClover\",\r\n\t\"IconClubsFilled\",\r\n\t\"IconClubs\",\r\n\t\"IconCodeAsterix\",\r\n\t\"IconCodeCircle2\",\r\n\t\"IconCodeCircle\",\r\n\t\"IconCodeDots\",\r\n\t\"IconCodeMinus\",\r\n\t\"IconCodeOff\",\r\n\t\"IconCodePlus\",\r\n\t\"IconCode\",\r\n\t\"IconCoffeeOff\",\r\n\t\"IconCoffee\",\r\n\t\"IconCoffin\",\r\n\t\"IconCoinBitcoin\",\r\n\t\"IconCoinEuro\",\r\n\t\"IconCoinMonero\",\r\n\t\"IconCoinOff\",\r\n\t\"IconCoinPound\",\r\n\t\"IconCoinRupee\",\r\n\t\"IconCoinYen\",\r\n\t\"IconCoinYuan\",\r\n\t\"IconCoin\",\r\n\t\"IconCoins\",\r\n\t\"IconColorFilter\",\r\n\t\"IconColorPickerOff\",\r\n\t\"IconColorPicker\",\r\n\t\"IconColorSwatchOff\",\r\n\t\"IconColorSwatch\",\r\n\t\"IconColumnInsertLeft\",\r\n\t\"IconColumnInsertRight\",\r\n\t\"IconColumnRemove\",\r\n\t\"IconColumns1\",\r\n\t\"IconColumns2\",\r\n\t\"IconColumns3\",\r\n\t\"IconColumnsOff\",\r\n\t\"IconColumns\",\r\n\t\"IconComet\",\r\n\t\"IconCommandOff\",\r\n\t\"IconCommand\",\r\n\t\"IconCompassOff\",\r\n\t\"IconCompass\",\r\n\t\"IconComponentsOff\",\r\n\t\"IconComponents\",\r\n\t\"IconCone2\",\r\n\t\"IconConeOff\",\r\n\t\"IconConePlus\",\r\n\t\"IconCone\",\r\n\t\"IconConfettiOff\",\r\n\t\"IconConfetti\",\r\n\t\"IconConfucius\",\r\n\t\"IconContainerOff\",\r\n\t\"IconContainer\",\r\n\t\"IconContrast2Off\",\r\n\t\"IconContrast2\",\r\n\t\"IconContrastOff\",\r\n\t\"IconContrast\",\r\n\t\"IconCooker\",\r\n\t\"IconCookieMan\",\r\n\t\"IconCookieOff\",\r\n\t\"IconCookie\",\r\n\t\"IconCopyOff\",\r\n\t\"IconCopy\",\r\n\t\"IconCopyleftFilled\",\r\n\t\"IconCopyleftOff\",\r\n\t\"IconCopyleft\",\r\n\t\"IconCopyrightFilled\",\r\n\t\"IconCopyrightOff\",\r\n\t\"IconCopyright\",\r\n\t\"IconCornerDownLeftDouble\",\r\n\t\"IconCornerDownLeft\",\r\n\t\"IconCornerDownRightDouble\",\r\n\t\"IconCornerDownRight\",\r\n\t\"IconCornerLeftDownDouble\",\r\n\t\"IconCornerLeftDown\",\r\n\t\"IconCornerLeftUpDouble\",\r\n\t\"IconCornerLeftUp\",\r\n\t\"IconCornerRightDownDouble\",\r\n\t\"IconCornerRightDown\",\r\n\t\"IconCornerRightUpDouble\",\r\n\t\"IconCornerRightUp\",\r\n\t\"IconCornerUpLeftDouble\",\r\n\t\"IconCornerUpLeft\",\r\n\t\"IconCornerUpRightDouble\",\r\n\t\"IconCornerUpRight\",\r\n\t\"IconCpu2\",\r\n\t\"IconCpuOff\",\r\n\t\"IconCpu\",\r\n\t\"IconCraneOff\",\r\n\t\"IconCrane\",\r\n\t\"IconCreativeCommonsBy\",\r\n\t\"IconCreativeCommonsNc\",\r\n\t\"IconCreativeCommonsNd\",\r\n\t\"IconCreativeCommonsOff\",\r\n\t\"IconCreativeCommonsSa\",\r\n\t\"IconCreativeCommonsZero\",\r\n\t\"IconCreativeCommons\",\r\n\t\"IconCreditCardOff\",\r\n\t\"IconCreditCard\",\r\n\t\"IconCricket\",\r\n\t\"IconCrop\",\r\n\t\"IconCrossFilled\",\r\n\t\"IconCrossOff\",\r\n\t\"IconCross\",\r\n\t\"IconCrosshair\",\r\n\t\"IconCrownOff\",\r\n\t\"IconCrown\",\r\n\t\"IconCrutchesOff\",\r\n\t\"IconCrutches\",\r\n\t\"IconCrystalBall\",\r\n\t\"IconCsv\",\r\n\t\"IconCubeOff\",\r\n\t\"IconCubePlus\",\r\n\t\"IconCubeSend\",\r\n\t\"IconCubeUnfolded\",\r\n\t\"IconCube\",\r\n\t\"IconCupOff\",\r\n\t\"IconCup\",\r\n\t\"IconCurling\",\r\n\t\"IconCurlyLoop\",\r\n\t\"IconCurrencyAfghani\",\r\n\t\"IconCurrencyBahraini\",\r\n\t\"IconCurrencyBaht\",\r\n\t\"IconCurrencyBitcoin\",\r\n\t\"IconCurrencyCent\",\r\n\t\"IconCurrencyDinar\",\r\n\t\"IconCurrencyDirham\",\r\n\t\"IconCurrencyDogecoin\",\r\n\t\"IconCurrencyDollarAustralian\",\r\n\t\"IconCurrencyDollarBrunei\",\r\n\t\"IconCurrencyDollarCanadian\",\r\n\t\"IconCurrencyDollarGuyanese\",\r\n\t\"IconCurrencyDollarOff\",\r\n\t\"IconCurrencyDollarSingapore\",\r\n\t\"IconCurrencyDollarZimbabwean\",\r\n\t\"IconCurrencyDollar\",\r\n\t\"IconCurrencyDong\",\r\n\t\"IconCurrencyDram\",\r\n\t\"IconCurrencyEthereum\",\r\n\t\"IconCurrencyEuroOff\",\r\n\t\"IconCurrencyEuro\",\r\n\t\"IconCurrencyFlorin\",\r\n\t\"IconCurrencyForint\",\r\n\t\"IconCurrencyFrank\",\r\n\t\"IconCurrencyGuarani\",\r\n\t\"IconCurrencyHryvnia\",\r\n\t\"IconCurrencyIranianRial\",\r\n\t\"IconCurrencyKip\",\r\n\t\"IconCurrencyKroneCzech\",\r\n\t\"IconCurrencyKroneDanish\",\r\n\t\"IconCurrencyKroneSwedish\",\r\n\t\"IconCurrencyLari\",\r\n\t\"IconCurrencyLeu\",\r\n\t\"IconCurrencyLira\",\r\n\t\"IconCurrencyLitecoin\",\r\n\t\"IconCurrencyLyd\",\r\n\t\"IconCurrencyManat\",\r\n\t\"IconCurrencyMonero\",\r\n\t\"IconCurrencyNaira\",\r\n\t\"IconCurrencyNano\",\r\n\t\"IconCurrencyOff\",\r\n\t\"IconCurrencyPaanga\",\r\n\t\"IconCurrencyPeso\",\r\n\t\"IconCurrencyPoundOff\",\r\n\t\"IconCurrencyPound\",\r\n\t\"IconCurrencyQuetzal\",\r\n\t\"IconCurrencyReal\",\r\n\t\"IconCurrencyRenminbi\",\r\n\t\"IconCurrencyRipple\",\r\n\t\"IconCurrencyRiyal\",\r\n\t\"IconCurrencyRubel\",\r\n\t\"IconCurrencyRufiyaa\",\r\n\t\"IconCurrencyRupeeNepalese\",\r\n\t\"IconCurrencyRupee\",\r\n\t\"IconCurrencyShekel\",\r\n\t\"IconCurrencySolana\",\r\n\t\"IconCurrencySom\",\r\n\t\"IconCurrencyTaka\",\r\n\t\"IconCurrencyTenge\",\r\n\t\"IconCurrencyTugrik\",\r\n\t\"IconCurrencyWon\",\r\n\t\"IconCurrencyYenOff\",\r\n\t\"IconCurrencyYen\",\r\n\t\"IconCurrencyYuan\",\r\n\t\"IconCurrencyZloty\",\r\n\t\"IconCurrency\",\r\n\t\"IconCurrentLocationOff\",\r\n\t\"IconCurrentLocation\",\r\n\t\"IconCursorOff\",\r\n\t\"IconCursorText\",\r\n\t\"IconCut\",\r\n\t\"IconCylinderOff\",\r\n\t\"IconCylinderPlus\",\r\n\t\"IconCylinder\",\r\n\t\"IconDashboardOff\",\r\n\t\"IconDashboard\",\r\n\t\"IconDatabaseCog\",\r\n\t\"IconDatabaseDollar\",\r\n\t\"IconDatabaseEdit\",\r\n\t\"IconDatabaseExclamation\",\r\n\t\"IconDatabaseExport\",\r\n\t\"IconDatabaseHeart\",\r\n\t\"IconDatabaseImport\",\r\n\t\"IconDatabaseLeak\",\r\n\t\"IconDatabaseMinus\",\r\n\t\"IconDatabaseOff\",\r\n\t\"IconDatabasePlus\",\r\n\t\"IconDatabaseSearch\",\r\n\t\"IconDatabaseShare\",\r\n\t\"IconDatabaseStar\",\r\n\t\"IconDatabaseX\",\r\n\t\"IconDatabase\",\r\n\t\"IconDecimal\",\r\n\t\"IconDeer\",\r\n\t\"IconDelta\",\r\n\t\"IconDentalBroken\",\r\n\t\"IconDentalOff\",\r\n\t\"IconDental\",\r\n\t\"IconDeselect\",\r\n\t\"IconDetailsOff\",\r\n\t\"IconDetails\",\r\n\t\"IconDeviceAirpodsCase\",\r\n\t\"IconDeviceAirpods\",\r\n\t\"IconDeviceAirtag\",\r\n\t\"IconDeviceAnalytics\",\r\n\t\"IconDeviceAudioTape\",\r\n\t\"IconDeviceCameraPhone\",\r\n\t\"IconDeviceCctvOff\",\r\n\t\"IconDeviceCctv\",\r\n\t\"IconDeviceComputerCameraOff\",\r\n\t\"IconDeviceComputerCamera\",\r\n\t\"IconDeviceDesktopAnalytics\",\r\n\t\"IconDeviceDesktopBolt\",\r\n\t\"IconDeviceDesktopCancel\",\r\n\t\"IconDeviceDesktopCheck\",\r\n\t\"IconDeviceDesktopCode\",\r\n\t\"IconDeviceDesktopCog\",\r\n\t\"IconDeviceDesktopDollar\",\r\n\t\"IconDeviceDesktopDown\",\r\n\t\"IconDeviceDesktopExclamation\",\r\n\t\"IconDeviceDesktopHeart\",\r\n\t\"IconDeviceDesktopMinus\",\r\n\t\"IconDeviceDesktopOff\",\r\n\t\"IconDeviceDesktopPause\",\r\n\t\"IconDeviceDesktopPin\",\r\n\t\"IconDeviceDesktopPlus\",\r\n\t\"IconDeviceDesktopQuestion\",\r\n\t\"IconDeviceDesktopSearch\",\r\n\t\"IconDeviceDesktopShare\",\r\n\t\"IconDeviceDesktopStar\",\r\n\t\"IconDeviceDesktopUp\",\r\n\t\"IconDeviceDesktopX\",\r\n\t\"IconDeviceDesktop\",\r\n\t\"IconDeviceFloppy\",\r\n\t\"IconDeviceGamepad2\",\r\n\t\"IconDeviceGamepad\",\r\n\t\"IconDeviceHeartMonitorFilled\",\r\n\t\"IconDeviceHeartMonitor\",\r\n\t\"IconDeviceImacBolt\",\r\n\t\"IconDeviceImacCancel\",\r\n\t\"IconDeviceImacCheck\",\r\n\t\"IconDeviceImacCode\",\r\n\t\"IconDeviceImacCog\",\r\n\t\"IconDeviceImacDollar\",\r\n\t\"IconDeviceImacDown\",\r\n\t\"IconDeviceImacExclamation\",\r\n\t\"IconDeviceImacHeart\",\r\n\t\"IconDeviceImacMinus\",\r\n\t\"IconDeviceImacOff\",\r\n\t\"IconDeviceImacPause\",\r\n\t\"IconDeviceImacPin\",\r\n\t\"IconDeviceImacPlus\",\r\n\t\"IconDeviceImacQuestion\",\r\n\t\"IconDeviceImacSearch\",\r\n\t\"IconDeviceImacShare\",\r\n\t\"IconDeviceImacStar\",\r\n\t\"IconDeviceImacUp\",\r\n\t\"IconDeviceImacX\",\r\n\t\"IconDeviceImac\",\r\n\t\"IconDeviceIpadBolt\",\r\n\t\"IconDeviceIpadCancel\",\r\n\t\"IconDeviceIpadCheck\",\r\n\t\"IconDeviceIpadCode\",\r\n\t\"IconDeviceIpadCog\",\r\n\t\"IconDeviceIpadDollar\",\r\n\t\"IconDeviceIpadDown\",\r\n\t\"IconDeviceIpadExclamation\",\r\n\t\"IconDeviceIpadHeart\",\r\n\t\"IconDeviceIpadHorizontalBolt\",\r\n\t\"IconDeviceIpadHorizontalCancel\",\r\n\t\"IconDeviceIpadHorizontalCheck\",\r\n\t\"IconDeviceIpadHorizontalCode\",\r\n\t\"IconDeviceIpadHorizontalCog\",\r\n\t\"IconDeviceIpadHorizontalDollar\",\r\n\t\"IconDeviceIpadHorizontalDown\",\r\n\t\"IconDeviceIpadHorizontalExclamation\",\r\n\t\"IconDeviceIpadHorizontalHeart\",\r\n\t\"IconDeviceIpadHorizontalMinus\",\r\n\t\"IconDeviceIpadHorizontalOff\",\r\n\t\"IconDeviceIpadHorizontalPause\",\r\n\t\"IconDeviceIpadHorizontalPin\",\r\n\t\"IconDeviceIpadHorizontalPlus\",\r\n\t\"IconDeviceIpadHorizontalQuestion\",\r\n\t\"IconDeviceIpadHorizontalSearch\",\r\n\t\"IconDeviceIpadHorizontalShare\",\r\n\t\"IconDeviceIpadHorizontalStar\",\r\n\t\"IconDeviceIpadHorizontalUp\",\r\n\t\"IconDeviceIpadHorizontalX\",\r\n\t\"IconDeviceIpadHorizontal\",\r\n\t\"IconDeviceIpadMinus\",\r\n\t\"IconDeviceIpadOff\",\r\n\t\"IconDeviceIpadPause\",\r\n\t\"IconDeviceIpadPin\",\r\n\t\"IconDeviceIpadPlus\",\r\n\t\"IconDeviceIpadQuestion\",\r\n\t\"IconDeviceIpadSearch\",\r\n\t\"IconDeviceIpadShare\",\r\n\t\"IconDeviceIpadStar\",\r\n\t\"IconDeviceIpadUp\",\r\n\t\"IconDeviceIpadX\",\r\n\t\"IconDeviceIpad\",\r\n\t\"IconDeviceLandlinePhone\",\r\n\t\"IconDeviceLaptopOff\",\r\n\t\"IconDeviceLaptop\",\r\n\t\"IconDeviceMobileBolt\",\r\n\t\"IconDeviceMobileCancel\",\r\n\t\"IconDeviceMobileCharging\",\r\n\t\"IconDeviceMobileCheck\",\r\n\t\"IconDeviceMobileCode\",\r\n\t\"IconDeviceMobileCog\",\r\n\t\"IconDeviceMobileDollar\",\r\n\t\"IconDeviceMobileDown\",\r\n\t\"IconDeviceMobileExclamation\",\r\n\t\"IconDeviceMobileFilled\",\r\n\t\"IconDeviceMobileHeart\",\r\n\t\"IconDeviceMobileMessage\",\r\n\t\"IconDeviceMobileMinus\",\r\n\t\"IconDeviceMobileOff\",\r\n\t\"IconDeviceMobilePause\",\r\n\t\"IconDeviceMobilePin\",\r\n\t\"IconDeviceMobilePlus\",\r\n\t\"IconDeviceMobileQuestion\",\r\n\t\"IconDeviceMobileRotated\",\r\n\t\"IconDeviceMobileSearch\",\r\n\t\"IconDeviceMobileShare\",\r\n\t\"IconDeviceMobileStar\",\r\n\t\"IconDeviceMobileUp\",\r\n\t\"IconDeviceMobileVibration\",\r\n\t\"IconDeviceMobileX\",\r\n\t\"IconDeviceMobile\",\r\n\t\"IconDeviceNintendoOff\",\r\n\t\"IconDeviceNintendo\",\r\n\t\"IconDeviceRemote\",\r\n\t\"IconDeviceSdCard\",\r\n\t\"IconDeviceSim1\",\r\n\t\"IconDeviceSim2\",\r\n\t\"IconDeviceSim3\",\r\n\t\"IconDeviceSim\",\r\n\t\"IconDeviceSpeakerOff\",\r\n\t\"IconDeviceSpeaker\",\r\n\t\"IconDeviceTabletBolt\",\r\n\t\"IconDeviceTabletCancel\",\r\n\t\"IconDeviceTabletCheck\",\r\n\t\"IconDeviceTabletCode\",\r\n\t\"IconDeviceTabletCog\",\r\n\t\"IconDeviceTabletDollar\",\r\n\t\"IconDeviceTabletDown\",\r\n\t\"IconDeviceTabletExclamation\",\r\n\t\"IconDeviceTabletFilled\",\r\n\t\"IconDeviceTabletHeart\",\r\n\t\"IconDeviceTabletMinus\",\r\n\t\"IconDeviceTabletOff\",\r\n\t\"IconDeviceTabletPause\",\r\n\t\"IconDeviceTabletPin\",\r\n\t\"IconDeviceTabletPlus\",\r\n\t\"IconDeviceTabletQuestion\",\r\n\t\"IconDeviceTabletSearch\",\r\n\t\"IconDeviceTabletShare\",\r\n\t\"IconDeviceTabletStar\",\r\n\t\"IconDeviceTabletUp\",\r\n\t\"IconDeviceTabletX\",\r\n\t\"IconDeviceTablet\",\r\n\t\"IconDeviceTvOff\",\r\n\t\"IconDeviceTvOld\",\r\n\t\"IconDeviceTv\",\r\n\t\"IconDeviceVisionPro\",\r\n\t\"IconDeviceWatchBolt\",\r\n\t\"IconDeviceWatchCancel\",\r\n\t\"IconDeviceWatchCheck\",\r\n\t\"IconDeviceWatchCode\",\r\n\t\"IconDeviceWatchCog\",\r\n\t\"IconDeviceWatchDollar\",\r\n\t\"IconDeviceWatchDown\",\r\n\t\"IconDeviceWatchExclamation\",\r\n\t\"IconDeviceWatchHeart\",\r\n\t\"IconDeviceWatchMinus\",\r\n\t\"IconDeviceWatchOff\",\r\n\t\"IconDeviceWatchPause\",\r\n\t\"IconDeviceWatchPin\",\r\n\t\"IconDeviceWatchPlus\",\r\n\t\"IconDeviceWatchQuestion\",\r\n\t\"IconDeviceWatchSearch\",\r\n\t\"IconDeviceWatchShare\",\r\n\t\"IconDeviceWatchStar\",\r\n\t\"IconDeviceWatchStats2\",\r\n\t\"IconDeviceWatchStats\",\r\n\t\"IconDeviceWatchUp\",\r\n\t\"IconDeviceWatchX\",\r\n\t\"IconDeviceWatch\",\r\n\t\"IconDevices2\",\r\n\t\"IconDevicesBolt\",\r\n\t\"IconDevicesCancel\",\r\n\t\"IconDevicesCheck\",\r\n\t\"IconDevicesCode\",\r\n\t\"IconDevicesCog\",\r\n\t\"IconDevicesDollar\",\r\n\t\"IconDevicesDown\",\r\n\t\"IconDevicesExclamation\",\r\n\t\"IconDevicesHeart\",\r\n\t\"IconDevicesMinus\",\r\n\t\"IconDevicesOff\",\r\n\t\"IconDevicesPause\",\r\n\t\"IconDevicesPcOff\",\r\n\t\"IconDevicesPc\",\r\n\t\"IconDevicesPin\",\r\n\t\"IconDevicesPlus\",\r\n\t\"IconDevicesQuestion\",\r\n\t\"IconDevicesSearch\",\r\n\t\"IconDevicesShare\",\r\n\t\"IconDevicesStar\",\r\n\t\"IconDevicesUp\",\r\n\t\"IconDevicesX\",\r\n\t\"IconDevices\",\r\n\t\"IconDiaboloOff\",\r\n\t\"IconDiaboloPlus\",\r\n\t\"IconDiabolo\",\r\n\t\"IconDialpadFilled\",\r\n\t\"IconDialpadOff\",\r\n\t\"IconDialpad\",\r\n\t\"IconDiamondFilled\",\r\n\t\"IconDiamondOff\",\r\n\t\"IconDiamond\",\r\n\t\"IconDiamondsFilled\",\r\n\t\"IconDiamonds\",\r\n\t\"IconDice1Filled\",\r\n\t\"IconDice1\",\r\n\t\"IconDice2Filled\",\r\n\t\"IconDice2\",\r\n\t\"IconDice3Filled\",\r\n\t\"IconDice3\",\r\n\t\"IconDice4Filled\",\r\n\t\"IconDice4\",\r\n\t\"IconDice5Filled\",\r\n\t\"IconDice5\",\r\n\t\"IconDice6Filled\",\r\n\t\"IconDice6\",\r\n\t\"IconDiceFilled\",\r\n\t\"IconDice\",\r\n\t\"IconDimensions\",\r\n\t\"IconDirectionHorizontal\",\r\n\t\"IconDirectionSignFilled\",\r\n\t\"IconDirectionSignOff\",\r\n\t\"IconDirectionSign\",\r\n\t\"IconDirection\",\r\n\t\"IconDirectionsOff\",\r\n\t\"IconDirections\",\r\n\t\"IconDisabled2\",\r\n\t\"IconDisabledOff\",\r\n\t\"IconDisabled\",\r\n\t\"IconDiscGolf\",\r\n\t\"IconDiscOff\",\r\n\t\"IconDisc\",\r\n\t\"IconDiscount2Off\",\r\n\t\"IconDiscount2\",\r\n\t\"IconDiscountCheckFilled\",\r\n\t\"IconDiscountCheck\",\r\n\t\"IconDiscountOff\",\r\n\t\"IconDiscount\",\r\n\t\"IconDivide\",\r\n\t\"IconDna2Off\",\r\n\t\"IconDna2\",\r\n\t\"IconDnaOff\",\r\n\t\"IconDna\",\r\n\t\"IconDogBowl\",\r\n\t\"IconDog\",\r\n\t\"IconDoorEnter\",\r\n\t\"IconDoorExit\",\r\n\t\"IconDoorOff\",\r\n\t\"IconDoor\",\r\n\t\"IconDotsCircleHorizontal\",\r\n\t\"IconDotsDiagonal2\",\r\n\t\"IconDotsDiagonal\",\r\n\t\"IconDotsVertical\",\r\n\t\"IconDots\",\r\n\t\"IconDownloadOff\",\r\n\t\"IconDownload\",\r\n\t\"IconDragDrop2\",\r\n\t\"IconDragDrop\",\r\n\t\"IconDroneOff\",\r\n\t\"IconDrone\",\r\n\t\"IconDropCircle\",\r\n\t\"IconDropletBolt\",\r\n\t\"IconDropletCancel\",\r\n\t\"IconDropletCheck\",\r\n\t\"IconDropletCode\",\r\n\t\"IconDropletCog\",\r\n\t\"IconDropletDollar\",\r\n\t\"IconDropletDown\",\r\n\t\"IconDropletExclamation\",\r\n\t\"IconDropletFilled\",\r\n\t\"IconDropletHalf2\",\r\n\t\"IconDropletHalfFilled\",\r\n\t\"IconDropletHalf\",\r\n\t\"IconDropletHeart\",\r\n\t\"IconDropletMinus\",\r\n\t\"IconDropletOff\",\r\n\t\"IconDropletPause\",\r\n\t\"IconDropletPin\",\r\n\t\"IconDropletPlus\",\r\n\t\"IconDropletQuestion\",\r\n\t\"IconDropletSearch\",\r\n\t\"IconDropletShare\",\r\n\t\"IconDropletStar\",\r\n\t\"IconDropletUp\",\r\n\t\"IconDropletX\",\r\n\t\"IconDroplet\",\r\n\t\"IconDualScreen\",\r\n\t\"IconEPassport\",\r\n\t\"IconEarOff\",\r\n\t\"IconEar\",\r\n\t\"IconEaseInControlPoint\",\r\n\t\"IconEaseInOutControlPoints\",\r\n\t\"IconEaseInOut\",\r\n\t\"IconEaseIn\",\r\n\t\"IconEaseOutControlPoint\",\r\n\t\"IconEaseOut\",\r\n\t\"IconEditCircleOff\",\r\n\t\"IconEditCircle\",\r\n\t\"IconEditOff\",\r\n\t\"IconEdit\",\r\n\t\"IconEggCracked\",\r\n\t\"IconEggFilled\",\r\n\t\"IconEggFried\",\r\n\t\"IconEggOff\",\r\n\t\"IconEgg\",\r\n\t\"IconEggs\",\r\n\t\"IconElevatorOff\",\r\n\t\"IconElevator\",\r\n\t\"IconEmergencyBed\",\r\n\t\"IconEmpathizeOff\",\r\n\t\"IconEmpathize\",\r\n\t\"IconEmphasis\",\r\n\t\"IconEngineOff\",\r\n\t\"IconEngine\",\r\n\t\"IconEqualDouble\",\r\n\t\"IconEqualNot\",\r\n\t\"IconEqual\",\r\n\t\"IconEraserOff\",\r\n\t\"IconEraser\",\r\n\t\"IconError404Off\",\r\n\t\"IconError404\",\r\n\t\"IconEscalatorDown\",\r\n\t\"IconEscalatorUp\",\r\n\t\"IconEscalator\",\r\n\t\"IconExchangeOff\",\r\n\t\"IconExchange\",\r\n\t\"IconExclamationCircle\",\r\n\t\"IconExclamationMarkOff\",\r\n\t\"IconExclamationMark\",\r\n\t\"IconExplicitOff\",\r\n\t\"IconExplicit\",\r\n\t\"IconExposure0\",\r\n\t\"IconExposureMinus1\",\r\n\t\"IconExposureMinus2\",\r\n\t\"IconExposureOff\",\r\n\t\"IconExposurePlus1\",\r\n\t\"IconExposurePlus2\",\r\n\t\"IconExposure\",\r\n\t\"IconExternalLinkOff\",\r\n\t\"IconExternalLink\",\r\n\t\"IconEyeCheck\",\r\n\t\"IconEyeClosed\",\r\n\t\"IconEyeCog\",\r\n\t\"IconEyeEdit\",\r\n\t\"IconEyeExclamation\",\r\n\t\"IconEyeFilled\",\r\n\t\"IconEyeHeart\",\r\n\t\"IconEyeOff\",\r\n\t\"IconEyeTable\",\r\n\t\"IconEyeX\",\r\n\t\"IconEye\",\r\n\t\"IconEyeglass2\",\r\n\t\"IconEyeglassOff\",\r\n\t\"IconEyeglass\",\r\n\t\"IconFaceIdError\",\r\n\t\"IconFaceId\",\r\n\t\"IconFaceMaskOff\",\r\n\t\"IconFaceMask\",\r\n\t\"IconFall\",\r\n\t\"IconFeatherOff\",\r\n\t\"IconFeather\",\r\n\t\"IconFenceOff\",\r\n\t\"IconFence\",\r\n\t\"IconFidgetSpinner\",\r\n\t\"IconFile3d\",\r\n\t\"IconFileAlert\",\r\n\t\"IconFileAnalytics\",\r\n\t\"IconFileArrowLeft\",\r\n\t\"IconFileArrowRight\",\r\n\t\"IconFileBarcode\",\r\n\t\"IconFileBroken\",\r\n\t\"IconFileCertificate\",\r\n\t\"IconFileChart\",\r\n\t\"IconFileCheck\",\r\n\t\"IconFileCode2\",\r\n\t\"IconFileCode\",\r\n\t\"IconFileCv\",\r\n\t\"IconFileDatabase\",\r\n\t\"IconFileDelta\",\r\n\t\"IconFileDescription\",\r\n\t\"IconFileDiff\",\r\n\t\"IconFileDigit\",\r\n\t\"IconFileDislike\",\r\n\t\"IconFileDollar\",\r\n\t\"IconFileDots\",\r\n\t\"IconFileDownload\",\r\n\t\"IconFileEuro\",\r\n\t\"IconFileExport\",\r\n\t\"IconFileFilled\",\r\n\t\"IconFileFunction\",\r\n\t\"IconFileHorizontal\",\r\n\t\"IconFileImport\",\r\n\t\"IconFileInfinity\",\r\n\t\"IconFileInfo\",\r\n\t\"IconFileInvoice\",\r\n\t\"IconFileLambda\",\r\n\t\"IconFileLike\",\r\n\t\"IconFileMinus\",\r\n\t\"IconFileMusic\",\r\n\t\"IconFileOff\",\r\n\t\"IconFileOrientation\",\r\n\t\"IconFilePencil\",\r\n\t\"IconFilePercent\",\r\n\t\"IconFilePhone\",\r\n\t\"IconFilePlus\",\r\n\t\"IconFilePower\",\r\n\t\"IconFileReport\",\r\n\t\"IconFileRss\",\r\n\t\"IconFileScissors\",\r\n\t\"IconFileSearch\",\r\n\t\"IconFileSettings\",\r\n\t\"IconFileShredder\",\r\n\t\"IconFileSignal\",\r\n\t\"IconFileSpreadsheet\",\r\n\t\"IconFileStack\",\r\n\t\"IconFileStar\",\r\n\t\"IconFileSymlink\",\r\n\t\"IconFileTextAi\",\r\n\t\"IconFileText\",\r\n\t\"IconFileTime\",\r\n\t\"IconFileTypeBmp\",\r\n\t\"IconFileTypeCss\",\r\n\t\"IconFileTypeCsv\",\r\n\t\"IconFileTypeDoc\",\r\n\t\"IconFileTypeDocx\",\r\n\t\"IconFileTypeHtml\",\r\n\t\"IconFileTypeJpg\",\r\n\t\"IconFileTypeJs\",\r\n\t\"IconFileTypeJsx\",\r\n\t\"IconFileTypePdf\",\r\n\t\"IconFileTypePhp\",\r\n\t\"IconFileTypePng\",\r\n\t\"IconFileTypePpt\",\r\n\t\"IconFileTypeRs\",\r\n\t\"IconFileTypeSql\",\r\n\t\"IconFileTypeSvg\",\r\n\t\"IconFileTypeTs\",\r\n\t\"IconFileTypeTsx\",\r\n\t\"IconFileTypeTxt\",\r\n\t\"IconFileTypeVue\",\r\n\t\"IconFileTypeXls\",\r\n\t\"IconFileTypeXml\",\r\n\t\"IconFileTypeZip\",\r\n\t\"IconFileTypography\",\r\n\t\"IconFileUnknown\",\r\n\t\"IconFileUpload\",\r\n\t\"IconFileVector\",\r\n\t\"IconFileXFilled\",\r\n\t\"IconFileX\",\r\n\t\"IconFileZip\",\r\n\t\"IconFile\",\r\n\t\"IconFilesOff\",\r\n\t\"IconFiles\",\r\n\t\"IconFilterCog\",\r\n\t\"IconFilterDollar\",\r\n\t\"IconFilterEdit\",\r\n\t\"IconFilterMinus\",\r\n\t\"IconFilterOff\",\r\n\t\"IconFilterPlus\",\r\n\t\"IconFilterStar\",\r\n\t\"IconFilterX\",\r\n\t\"IconFilter\",\r\n\t\"IconFilters\",\r\n\t\"IconFingerprintOff\",\r\n\t\"IconFingerprint\",\r\n\t\"IconFireExtinguisher\",\r\n\t\"IconFireHydrantOff\",\r\n\t\"IconFireHydrant\",\r\n\t\"IconFiretruck\",\r\n\t\"IconFirstAidKitOff\",\r\n\t\"IconFirstAidKit\",\r\n\t\"IconFishBone\",\r\n\t\"IconFishChristianity\",\r\n\t\"IconFishHookOff\",\r\n\t\"IconFishHook\",\r\n\t\"IconFishOff\",\r\n\t\"IconFish\",\r\n\t\"IconFlag2Filled\",\r\n\t\"IconFlag2Off\",\r\n\t\"IconFlag2\",\r\n\t\"IconFlag3Filled\",\r\n\t\"IconFlag3\",\r\n\t\"IconFlagFilled\",\r\n\t\"IconFlagOff\",\r\n\t\"IconFlag\",\r\n\t\"IconFlameOff\",\r\n\t\"IconFlame\",\r\n\t\"IconFlare\",\r\n\t\"IconFlask2Off\",\r\n\t\"IconFlask2\",\r\n\t\"IconFlaskOff\",\r\n\t\"IconFlask\",\r\n\t\"IconFlipFlops\",\r\n\t\"IconFlipHorizontal\",\r\n\t\"IconFlipVertical\",\r\n\t\"IconFloatCenter\",\r\n\t\"IconFloatLeft\",\r\n\t\"IconFloatNone\",\r\n\t\"IconFloatRight\",\r\n\t\"IconFlowerOff\",\r\n\t\"IconFlower\",\r\n\t\"IconFocus2\",\r\n\t\"IconFocusAuto\",\r\n\t\"IconFocusCentered\",\r\n\t\"IconFocus\",\r\n\t\"IconFoldDown\",\r\n\t\"IconFoldUp\",\r\n\t\"IconFold\",\r\n\t\"IconFolderBolt\",\r\n\t\"IconFolderCancel\",\r\n\t\"IconFolderCheck\",\r\n\t\"IconFolderCode\",\r\n\t\"IconFolderCog\",\r\n\t\"IconFolderDollar\",\r\n\t\"IconFolderDown\",\r\n\t\"IconFolderExclamation\",\r\n\t\"IconFolderFilled\",\r\n\t\"IconFolderHeart\",\r\n\t\"IconFolderMinus\",\r\n\t\"IconFolderOff\",\r\n\t\"IconFolderOpen\",\r\n\t\"IconFolderPause\",\r\n\t\"IconFolderPin\",\r\n\t\"IconFolderPlus\",\r\n\t\"IconFolderQuestion\",\r\n\t\"IconFolderSearch\",\r\n\t\"IconFolderShare\",\r\n\t\"IconFolderStar\",\r\n\t\"IconFolderSymlink\",\r\n\t\"IconFolderUp\",\r\n\t\"IconFolderX\",\r\n\t\"IconFolder\",\r\n\t\"IconFoldersOff\",\r\n\t\"IconFolders\",\r\n\t\"IconForbid2\",\r\n\t\"IconForbid\",\r\n\t\"IconForklift\",\r\n\t\"IconForms\",\r\n\t\"IconFountainOff\",\r\n\t\"IconFountain\",\r\n\t\"IconFrameOff\",\r\n\t\"IconFrame\",\r\n\t\"IconFreeRights\",\r\n\t\"IconFreezeColumn\",\r\n\t\"IconFreezeRowColumn\",\r\n\t\"IconFreezeRow\",\r\n\t\"IconFridgeOff\",\r\n\t\"IconFridge\",\r\n\t\"IconFriendsOff\",\r\n\t\"IconFriends\",\r\n\t\"IconFrustumOff\",\r\n\t\"IconFrustumPlus\",\r\n\t\"IconFrustum\",\r\n\t\"IconFunctionOff\",\r\n\t\"IconFunction\",\r\n\t\"IconGardenCartOff\",\r\n\t\"IconGardenCart\",\r\n\t\"IconGasStationOff\",\r\n\t\"IconGasStation\",\r\n\t\"IconGaugeOff\",\r\n\t\"IconGauge\",\r\n\t\"IconGavel\",\r\n\t\"IconGenderAgender\",\r\n\t\"IconGenderAndrogyne\",\r\n\t\"IconGenderBigender\",\r\n\t\"IconGenderDemiboy\",\r\n\t\"IconGenderDemigirl\",\r\n\t\"IconGenderEpicene\",\r\n\t\"IconGenderFemale\",\r\n\t\"IconGenderFemme\",\r\n\t\"IconGenderGenderfluid\",\r\n\t\"IconGenderGenderless\",\r\n\t\"IconGenderGenderqueer\",\r\n\t\"IconGenderHermaphrodite\",\r\n\t\"IconGenderIntergender\",\r\n\t\"IconGenderMale\",\r\n\t\"IconGenderNeutrois\",\r\n\t\"IconGenderThird\",\r\n\t\"IconGenderTransgender\",\r\n\t\"IconGenderTrasvesti\",\r\n\t\"IconGeometry\",\r\n\t\"IconGhost2Filled\",\r\n\t\"IconGhost2\",\r\n\t\"IconGhostFilled\",\r\n\t\"IconGhostOff\",\r\n\t\"IconGhost\",\r\n\t\"IconGif\",\r\n\t\"IconGiftCard\",\r\n\t\"IconGiftOff\",\r\n\t\"IconGift\",\r\n\t\"IconGitBranchDeleted\",\r\n\t\"IconGitBranch\",\r\n\t\"IconGitCherryPick\",\r\n\t\"IconGitCommit\",\r\n\t\"IconGitCompare\",\r\n\t\"IconGitFork\",\r\n\t\"IconGitMerge\",\r\n\t\"IconGitPullRequestClosed\",\r\n\t\"IconGitPullRequestDraft\",\r\n\t\"IconGitPullRequest\",\r\n\t\"IconGizmo\",\r\n\t\"IconGlassFull\",\r\n\t\"IconGlassOff\",\r\n\t\"IconGlass\",\r\n\t\"IconGlobeOff\",\r\n\t\"IconGlobe\",\r\n\t\"IconGoGame\",\r\n\t\"IconGolfOff\",\r\n\t\"IconGolf\",\r\n\t\"IconGps\",\r\n\t\"IconGradienter\",\r\n\t\"IconGrain\",\r\n\t\"IconGraphOff\",\r\n\t\"IconGraph\",\r\n\t\"IconGrave2\",\r\n\t\"IconGrave\",\r\n\t\"IconGridDots\",\r\n\t\"IconGridPattern\",\r\n\t\"IconGrillFork\",\r\n\t\"IconGrillOff\",\r\n\t\"IconGrillSpatula\",\r\n\t\"IconGrill\",\r\n\t\"IconGripHorizontal\",\r\n\t\"IconGripVertical\",\r\n\t\"IconGrowth\",\r\n\t\"IconGuitarPickFilled\",\r\n\t\"IconGuitarPick\",\r\n\t\"IconH1\",\r\n\t\"IconH2\",\r\n\t\"IconH3\",\r\n\t\"IconH4\",\r\n\t\"IconH5\",\r\n\t\"IconH6\",\r\n\t\"IconHammerOff\",\r\n\t\"IconHammer\",\r\n\t\"IconHandClick\",\r\n\t\"IconHandFingerOff\",\r\n\t\"IconHandFinger\",\r\n\t\"IconHandGrab\",\r\n\t\"IconHandLittleFinger\",\r\n\t\"IconHandMiddleFinger\",\r\n\t\"IconHandMove\",\r\n\t\"IconHandOff\",\r\n\t\"IconHandRingFinger\",\r\n\t\"IconHandRock\",\r\n\t\"IconHandSanitizer\",\r\n\t\"IconHandStop\",\r\n\t\"IconHandThreeFingers\",\r\n\t\"IconHandTwoFingers\",\r\n\t\"IconHanger2\",\r\n\t\"IconHangerOff\",\r\n\t\"IconHanger\",\r\n\t\"IconHash\",\r\n\t\"IconHazeMoon\",\r\n\t\"IconHaze\",\r\n\t\"IconHdr\",\r\n\t\"IconHeadingOff\",\r\n\t\"IconHeading\",\r\n\t\"IconHeadphonesFilled\",\r\n\t\"IconHeadphonesOff\",\r\n\t\"IconHeadphones\",\r\n\t\"IconHeadsetOff\",\r\n\t\"IconHeadset\",\r\n\t\"IconHealthRecognition\",\r\n\t\"IconHeartBroken\",\r\n\t\"IconHeartFilled\",\r\n\t\"IconHeartHandshake\",\r\n\t\"IconHeartMinus\",\r\n\t\"IconHeartOff\",\r\n\t\"IconHeartPlus\",\r\n\t\"IconHeartRateMonitor\",\r\n\t\"IconHeart\",\r\n\t\"IconHeartbeat\",\r\n\t\"IconHeartsOff\",\r\n\t\"IconHearts\",\r\n\t\"IconHelicopterLanding\",\r\n\t\"IconHelicopter\",\r\n\t\"IconHelmetOff\",\r\n\t\"IconHelmet\",\r\n\t\"IconHelpCircleFilled\",\r\n\t\"IconHelpCircle\",\r\n\t\"IconHelpHexagonFilled\",\r\n\t\"IconHelpHexagon\",\r\n\t\"IconHelpOctagonFilled\",\r\n\t\"IconHelpOctagon\",\r\n\t\"IconHelpOff\",\r\n\t\"IconHelpSmall\",\r\n\t\"IconHelpSquareFilled\",\r\n\t\"IconHelpSquareRoundedFilled\",\r\n\t\"IconHelpSquareRounded\",\r\n\t\"IconHelpSquare\",\r\n\t\"IconHelpTriangleFilled\",\r\n\t\"IconHelpTriangle\",\r\n\t\"IconHelp\",\r\n\t\"IconHemisphereOff\",\r\n\t\"IconHemispherePlus\",\r\n\t\"IconHemisphere\",\r\n\t\"IconHexagon0Filled\",\r\n\t\"IconHexagon1Filled\",\r\n\t\"IconHexagon2Filled\",\r\n\t\"IconHexagon3Filled\",\r\n\t\"IconHexagon3d\",\r\n\t\"IconHexagon4Filled\",\r\n\t\"IconHexagon5Filled\",\r\n\t\"IconHexagon6Filled\",\r\n\t\"IconHexagon7Filled\",\r\n\t\"IconHexagon8Filled\",\r\n\t\"IconHexagon9Filled\",\r\n\t\"IconHexagonFilled\",\r\n\t\"IconHexagonLetterA\",\r\n\t\"IconHexagonLetterB\",\r\n\t\"IconHexagonLetterC\",\r\n\t\"IconHexagonLetterD\",\r\n\t\"IconHexagonLetterE\",\r\n\t\"IconHexagonLetterF\",\r\n\t\"IconHexagonLetterG\",\r\n\t\"IconHexagonLetterH\",\r\n\t\"IconHexagonLetterI\",\r\n\t\"IconHexagonLetterJ\",\r\n\t\"IconHexagonLetterK\",\r\n\t\"IconHexagonLetterL\",\r\n\t\"IconHexagonLetterM\",\r\n\t\"IconHexagonLetterN\",\r\n\t\"IconHexagonLetterO\",\r\n\t\"IconHexagonLetterP\",\r\n\t\"IconHexagonLetterQ\",\r\n\t\"IconHexagonLetterR\",\r\n\t\"IconHexagonLetterS\",\r\n\t\"IconHexagonLetterT\",\r\n\t\"IconHexagonLetterU\",\r\n\t\"IconHexagonLetterV\",\r\n\t\"IconHexagonLetterW\",\r\n\t\"IconHexagonLetterX\",\r\n\t\"IconHexagonLetterY\",\r\n\t\"IconHexagonLetterZ\",\r\n\t\"IconHexagonNumber0\",\r\n\t\"IconHexagonNumber1\",\r\n\t\"IconHexagonNumber2\",\r\n\t\"IconHexagonNumber3\",\r\n\t\"IconHexagonNumber4\",\r\n\t\"IconHexagonNumber5\",\r\n\t\"IconHexagonNumber6\",\r\n\t\"IconHexagonNumber7\",\r\n\t\"IconHexagonNumber8\",\r\n\t\"IconHexagonNumber9\",\r\n\t\"IconHexagonOff\",\r\n\t\"IconHexagon\",\r\n\t\"IconHexagonalPrismOff\",\r\n\t\"IconHexagonalPrismPlus\",\r\n\t\"IconHexagonalPrism\",\r\n\t\"IconHexagonalPyramidOff\",\r\n\t\"IconHexagonalPyramidPlus\",\r\n\t\"IconHexagonalPyramid\",\r\n\t\"IconHexagonsOff\",\r\n\t\"IconHexagons\",\r\n\t\"IconHierarchy2\",\r\n\t\"IconHierarchy3\",\r\n\t\"IconHierarchyOff\",\r\n\t\"IconHierarchy\",\r\n\t\"IconHighlightOff\",\r\n\t\"IconHighlight\",\r\n\t\"IconHistoryOff\",\r\n\t\"IconHistoryToggle\",\r\n\t\"IconHistory\",\r\n\t\"IconHome2\",\r\n\t\"IconHomeBolt\",\r\n\t\"IconHomeCancel\",\r\n\t\"IconHomeCheck\",\r\n\t\"IconHomeCog\",\r\n\t\"IconHomeDollar\",\r\n\t\"IconHomeDot\",\r\n\t\"IconHomeDown\",\r\n\t\"IconHomeEco\",\r\n\t\"IconHomeEdit\",\r\n\t\"IconHomeExclamation\",\r\n\t\"IconHomeHand\",\r\n\t\"IconHomeHeart\",\r\n\t\"IconHomeInfinity\",\r\n\t\"IconHomeLink\",\r\n\t\"IconHomeMinus\",\r\n\t\"IconHomeMove\",\r\n\t\"IconHomeOff\",\r\n\t\"IconHomePlus\",\r\n\t\"IconHomeQuestion\",\r\n\t\"IconHomeRibbon\",\r\n\t\"IconHomeSearch\",\r\n\t\"IconHomeShare\",\r\n\t\"IconHomeShield\",\r\n\t\"IconHomeSignal\",\r\n\t\"IconHomeStar\",\r\n\t\"IconHomeStats\",\r\n\t\"IconHomeUp\",\r\n\t\"IconHomeX\",\r\n\t\"IconHome\",\r\n\t\"IconHorseToy\",\r\n\t\"IconHotelService\",\r\n\t\"IconHourglassEmpty\",\r\n\t\"IconHourglassFilled\",\r\n\t\"IconHourglassHigh\",\r\n\t\"IconHourglassLow\",\r\n\t\"IconHourglassOff\",\r\n\t\"IconHourglass\",\r\n\t\"IconHtml\",\r\n\t\"IconHttpConnect\",\r\n\t\"IconHttpDelete\",\r\n\t\"IconHttpGet\",\r\n\t\"IconHttpHead\",\r\n\t\"IconHttpOptions\",\r\n\t\"IconHttpPatch\",\r\n\t\"IconHttpPost\",\r\n\t\"IconHttpPut\",\r\n\t\"IconHttpQue\",\r\n\t\"IconHttpTrace\",\r\n\t\"IconIceCream2\",\r\n\t\"IconIceCreamOff\",\r\n\t\"IconIceCream\",\r\n\t\"IconIceSkating\",\r\n\t\"IconIconsOff\",\r\n\t\"IconIcons\",\r\n\t\"IconIdBadge2\",\r\n\t\"IconIdBadgeOff\",\r\n\t\"IconIdBadge\",\r\n\t\"IconIdOff\",\r\n\t\"IconId\",\r\n\t\"IconInboxOff\",\r\n\t\"IconInbox\",\r\n\t\"IconIndentDecrease\",\r\n\t\"IconIndentIncrease\",\r\n\t\"IconInfinityOff\",\r\n\t\"IconInfinity\",\r\n\t\"IconInfoCircleFilled\",\r\n\t\"IconInfoCircle\",\r\n\t\"IconInfoHexagonFilled\",\r\n\t\"IconInfoHexagon\",\r\n\t\"IconInfoOctagonFilled\",\r\n\t\"IconInfoOctagon\",\r\n\t\"IconInfoSmall\",\r\n\t\"IconInfoSquareFilled\",\r\n\t\"IconInfoSquareRoundedFilled\",\r\n\t\"IconInfoSquareRounded\",\r\n\t\"IconInfoSquare\",\r\n\t\"IconInfoTriangleFilled\",\r\n\t\"IconInfoTriangle\",\r\n\t\"IconInnerShadowBottomFilled\",\r\n\t\"IconInnerShadowBottomLeftFilled\",\r\n\t\"IconInnerShadowBottomLeft\",\r\n\t\"IconInnerShadowBottomRightFilled\",\r\n\t\"IconInnerShadowBottomRight\",\r\n\t\"IconInnerShadowBottom\",\r\n\t\"IconInnerShadowLeftFilled\",\r\n\t\"IconInnerShadowLeft\",\r\n\t\"IconInnerShadowRightFilled\",\r\n\t\"IconInnerShadowRight\",\r\n\t\"IconInnerShadowTopFilled\",\r\n\t\"IconInnerShadowTopLeftFilled\",\r\n\t\"IconInnerShadowTopLeft\",\r\n\t\"IconInnerShadowTopRightFilled\",\r\n\t\"IconInnerShadowTopRight\",\r\n\t\"IconInnerShadowTop\",\r\n\t\"IconInputSearch\",\r\n\t\"IconIroning1\",\r\n\t\"IconIroning2\",\r\n\t\"IconIroning3\",\r\n\t\"IconIroningOff\",\r\n\t\"IconIroningSteamOff\",\r\n\t\"IconIroningSteam\",\r\n\t\"IconIroning\",\r\n\t\"IconIrregularPolyhedronOff\",\r\n\t\"IconIrregularPolyhedronPlus\",\r\n\t\"IconIrregularPolyhedron\",\r\n\t\"IconItalic\",\r\n\t\"IconJacket\",\r\n\t\"IconJetpack\",\r\n\t\"IconJewishStarFilled\",\r\n\t\"IconJewishStar\",\r\n\t\"IconJpg\",\r\n\t\"IconJson\",\r\n\t\"IconJumpRope\",\r\n\t\"IconKarate\",\r\n\t\"IconKayak\",\r\n\t\"IconKering\",\r\n\t\"IconKeyOff\",\r\n\t\"IconKey\",\r\n\t\"IconKeyboardHide\",\r\n\t\"IconKeyboardOff\",\r\n\t\"IconKeyboardShow\",\r\n\t\"IconKeyboard\",\r\n\t\"IconKeyframeAlignCenter\",\r\n\t\"IconKeyframeAlignHorizontal\",\r\n\t\"IconKeyframeAlignVertical\",\r\n\t\"IconKeyframe\",\r\n\t\"IconKeyframes\",\r\n\t\"IconLadderOff\",\r\n\t\"IconLadder\",\r\n\t\"IconLambda\",\r\n\t\"IconLamp2\",\r\n\t\"IconLampOff\",\r\n\t\"IconLamp\",\r\n\t\"IconLane\",\r\n\t\"IconLanguageHiragana\",\r\n\t\"IconLanguageKatakana\",\r\n\t\"IconLanguageOff\",\r\n\t\"IconLanguage\",\r\n\t\"IconLassoOff\",\r\n\t\"IconLassoPolygon\",\r\n\t\"IconLasso\",\r\n\t\"IconLayersDifference\",\r\n\t\"IconLayersIntersect2\",\r\n\t\"IconLayersIntersect\",\r\n\t\"IconLayersLinked\",\r\n\t\"IconLayersOff\",\r\n\t\"IconLayersSubtract\",\r\n\t\"IconLayersUnion\",\r\n\t\"IconLayout2\",\r\n\t\"IconLayoutAlignBottom\",\r\n\t\"IconLayoutAlignCenter\",\r\n\t\"IconLayoutAlignLeft\",\r\n\t\"IconLayoutAlignMiddle\",\r\n\t\"IconLayoutAlignRight\",\r\n\t\"IconLayoutAlignTop\",\r\n\t\"IconLayoutBoardSplit\",\r\n\t\"IconLayoutBoard\",\r\n\t\"IconLayoutBottombarCollapse\",\r\n\t\"IconLayoutBottombarExpand\",\r\n\t\"IconLayoutBottombar\",\r\n\t\"IconLayoutCards\",\r\n\t\"IconLayoutCollage\",\r\n\t\"IconLayoutColumns\",\r\n\t\"IconLayoutDashboard\",\r\n\t\"IconLayoutDistributeHorizontal\",\r\n\t\"IconLayoutDistributeVertical\",\r\n\t\"IconLayoutGridAdd\",\r\n\t\"IconLayoutGridRemove\",\r\n\t\"IconLayoutGrid\",\r\n\t\"IconLayoutKanban\",\r\n\t\"IconLayoutList\",\r\n\t\"IconLayoutNavbarCollapse\",\r\n\t\"IconLayoutNavbarExpand\",\r\n\t\"IconLayoutNavbar\",\r\n\t\"IconLayoutOff\",\r\n\t\"IconLayoutRows\",\r\n\t\"IconLayoutSidebarLeftCollapse\",\r\n\t\"IconLayoutSidebarLeftExpand\",\r\n\t\"IconLayoutSidebarRightCollapse\",\r\n\t\"IconLayoutSidebarRightExpand\",\r\n\t\"IconLayoutSidebarRight\",\r\n\t\"IconLayoutSidebar\",\r\n\t\"IconLayout\",\r\n\t\"IconLeafOff\",\r\n\t\"IconLeaf\",\r\n\t\"IconLegoOff\",\r\n\t\"IconLego\",\r\n\t\"IconLemon2\",\r\n\t\"IconLemon\",\r\n\t\"IconLetterA\",\r\n\t\"IconLetterB\",\r\n\t\"IconLetterC\",\r\n\t\"IconLetterCaseLower\",\r\n\t\"IconLetterCaseToggle\",\r\n\t\"IconLetterCaseUpper\",\r\n\t\"IconLetterCase\",\r\n\t\"IconLetterD\",\r\n\t\"IconLetterE\",\r\n\t\"IconLetterF\",\r\n\t\"IconLetterG\",\r\n\t\"IconLetterH\",\r\n\t\"IconLetterI\",\r\n\t\"IconLetterJ\",\r\n\t\"IconLetterK\",\r\n\t\"IconLetterL\",\r\n\t\"IconLetterM\",\r\n\t\"IconLetterN\",\r\n\t\"IconLetterO\",\r\n\t\"IconLetterP\",\r\n\t\"IconLetterQ\",\r\n\t\"IconLetterR\",\r\n\t\"IconLetterS\",\r\n\t\"IconLetterSpacing\",\r\n\t\"IconLetterT\",\r\n\t\"IconLetterU\",\r\n\t\"IconLetterV\",\r\n\t\"IconLetterW\",\r\n\t\"IconLetterX\",\r\n\t\"IconLetterY\",\r\n\t\"IconLetterZ\",\r\n\t\"IconLicenseOff\",\r\n\t\"IconLicense\",\r\n\t\"IconLifebuoyOff\",\r\n\t\"IconLifebuoy\",\r\n\t\"IconLighter\",\r\n\t\"IconLineDashed\",\r\n\t\"IconLineDotted\",\r\n\t\"IconLineHeight\",\r\n\t\"IconLine\",\r\n\t\"IconLinkOff\",\r\n\t\"IconLink\",\r\n\t\"IconListCheck\",\r\n\t\"IconListDetails\",\r\n\t\"IconListNumbers\",\r\n\t\"IconListSearch\",\r\n\t\"IconListTree\",\r\n\t\"IconList\",\r\n\t\"IconLivePhotoOff\",\r\n\t\"IconLivePhoto\",\r\n\t\"IconLiveView\",\r\n\t\"IconLoadBalancer\",\r\n\t\"IconLoader2\",\r\n\t\"IconLoader3\",\r\n\t\"IconLoaderQuarter\",\r\n\t\"IconLoader\",\r\n\t\"IconLocationBroken\",\r\n\t\"IconLocationFilled\",\r\n\t\"IconLocationOff\",\r\n\t\"IconLocation\",\r\n\t\"IconLockAccessOff\",\r\n\t\"IconLockAccess\",\r\n\t\"IconLockBolt\",\r\n\t\"IconLockCancel\",\r\n\t\"IconLockCheck\",\r\n\t\"IconLockCode\",\r\n\t\"IconLockCog\",\r\n\t\"IconLockDollar\",\r\n\t\"IconLockDown\",\r\n\t\"IconLockExclamation\",\r\n\t\"IconLockHeart\",\r\n\t\"IconLockMinus\",\r\n\t\"IconLockOff\",\r\n\t\"IconLockOpenOff\",\r\n\t\"IconLockOpen\",\r\n\t\"IconLockPause\",\r\n\t\"IconLockPin\",\r\n\t\"IconLockPlus\",\r\n\t\"IconLockQuestion\",\r\n\t\"IconLockSearch\",\r\n\t\"IconLockShare\",\r\n\t\"IconLockSquareRoundedFilled\",\r\n\t\"IconLockSquareRounded\",\r\n\t\"IconLockSquare\",\r\n\t\"IconLockStar\",\r\n\t\"IconLockUp\",\r\n\t\"IconLockX\",\r\n\t\"IconLock\",\r\n\t\"IconLogicAnd\",\r\n\t\"IconLogicBuffer\",\r\n\t\"IconLogicNand\",\r\n\t\"IconLogicNor\",\r\n\t\"IconLogicNot\",\r\n\t\"IconLogicOr\",\r\n\t\"IconLogicXnor\",\r\n\t\"IconLogicXor\",\r\n\t\"IconLogin\",\r\n\t\"IconLogout2\",\r\n\t\"IconLogout\",\r\n\t\"IconLollipopOff\",\r\n\t\"IconLollipop\",\r\n\t\"IconLuggageOff\",\r\n\t\"IconLuggage\",\r\n\t\"IconLungsOff\",\r\n\t\"IconLungs\",\r\n\t\"IconMacroOff\",\r\n\t\"IconMacro\",\r\n\t\"IconMagnetOff\",\r\n\t\"IconMagnet\",\r\n\t\"IconMailAi\",\r\n\t\"IconMailBolt\",\r\n\t\"IconMailCancel\",\r\n\t\"IconMailCheck\",\r\n\t\"IconMailCode\",\r\n\t\"IconMailCog\",\r\n\t\"IconMailDollar\",\r\n\t\"IconMailDown\",\r\n\t\"IconMailExclamation\",\r\n\t\"IconMailFast\",\r\n\t\"IconMailFilled\",\r\n\t\"IconMailForward\",\r\n\t\"IconMailHeart\",\r\n\t\"IconMailMinus\",\r\n\t\"IconMailOff\",\r\n\t\"IconMailOpenedFilled\",\r\n\t\"IconMailOpened\",\r\n\t\"IconMailPause\",\r\n\t\"IconMailPin\",\r\n\t\"IconMailPlus\",\r\n\t\"IconMailQuestion\",\r\n\t\"IconMailSearch\",\r\n\t\"IconMailShare\",\r\n\t\"IconMailStar\",\r\n\t\"IconMailUp\",\r\n\t\"IconMailX\",\r\n\t\"IconMail\",\r\n\t\"IconMailboxOff\",\r\n\t\"IconMailbox\",\r\n\t\"IconMan\",\r\n\t\"IconManualGearbox\",\r\n\t\"IconMap2\",\r\n\t\"IconMapOff\",\r\n\t\"IconMapPinBolt\",\r\n\t\"IconMapPinCancel\",\r\n\t\"IconMapPinCheck\",\r\n\t\"IconMapPinCode\",\r\n\t\"IconMapPinCog\",\r\n\t\"IconMapPinDollar\",\r\n\t\"IconMapPinDown\",\r\n\t\"IconMapPinExclamation\",\r\n\t\"IconMapPinFilled\",\r\n\t\"IconMapPinHeart\",\r\n\t\"IconMapPinMinus\",\r\n\t\"IconMapPinOff\",\r\n\t\"IconMapPinPause\",\r\n\t\"IconMapPinPin\",\r\n\t\"IconMapPinPlus\",\r\n\t\"IconMapPinQuestion\",\r\n\t\"IconMapPinSearch\",\r\n\t\"IconMapPinShare\",\r\n\t\"IconMapPinStar\",\r\n\t\"IconMapPinUp\",\r\n\t\"IconMapPinX\",\r\n\t\"IconMapPin\",\r\n\t\"IconMapPins\",\r\n\t\"IconMapSearch\",\r\n\t\"IconMap\",\r\n\t\"IconMarkdownOff\",\r\n\t\"IconMarkdown\",\r\n\t\"IconMarquee2\",\r\n\t\"IconMarqueeOff\",\r\n\t\"IconMarquee\",\r\n\t\"IconMars\",\r\n\t\"IconMaskOff\",\r\n\t\"IconMask\",\r\n\t\"IconMasksTheaterOff\",\r\n\t\"IconMasksTheater\",\r\n\t\"IconMassage\",\r\n\t\"IconMatchstick\",\r\n\t\"IconMath1Divide2\",\r\n\t\"IconMath1Divide3\",\r\n\t\"IconMathAvg\",\r\n\t\"IconMathEqualGreater\",\r\n\t\"IconMathEqualLower\",\r\n\t\"IconMathFunctionOff\",\r\n\t\"IconMathFunctionY\",\r\n\t\"IconMathFunction\",\r\n\t\"IconMathGreater\",\r\n\t\"IconMathIntegralX\",\r\n\t\"IconMathIntegral\",\r\n\t\"IconMathIntegrals\",\r\n\t\"IconMathLower\",\r\n\t\"IconMathMax\",\r\n\t\"IconMathMin\",\r\n\t\"IconMathNot\",\r\n\t\"IconMathOff\",\r\n\t\"IconMathPiDivide2\",\r\n\t\"IconMathPi\",\r\n\t\"IconMathSymbols\",\r\n\t\"IconMathXDivide2\",\r\n\t\"IconMathXDivideY2\",\r\n\t\"IconMathXDivideY\",\r\n\t\"IconMathXMinusX\",\r\n\t\"IconMathXMinusY\",\r\n\t\"IconMathXPlusX\",\r\n\t\"IconMathXPlusY\",\r\n\t\"IconMathXy\",\r\n\t\"IconMathYMinusY\",\r\n\t\"IconMathYPlusY\",\r\n\t\"IconMath\",\r\n\t\"IconMaximizeOff\",\r\n\t\"IconMaximize\",\r\n\t\"IconMeatOff\",\r\n\t\"IconMeat\",\r\n\t\"IconMedal2\",\r\n\t\"IconMedal\",\r\n\t\"IconMedicalCrossCircle\",\r\n\t\"IconMedicalCrossFilled\",\r\n\t\"IconMedicalCrossOff\",\r\n\t\"IconMedicalCross\",\r\n\t\"IconMedicineSyrup\",\r\n\t\"IconMeeple\",\r\n\t\"IconMenorah\",\r\n\t\"IconMenu2\",\r\n\t\"IconMenuDeep\",\r\n\t\"IconMenuOrder\",\r\n\t\"IconMenu\",\r\n\t\"IconMessage2Bolt\",\r\n\t\"IconMessage2Cancel\",\r\n\t\"IconMessage2Check\",\r\n\t\"IconMessage2Code\",\r\n\t\"IconMessage2Cog\",\r\n\t\"IconMessage2Dollar\",\r\n\t\"IconMessage2Down\",\r\n\t\"IconMessage2Exclamation\",\r\n\t\"IconMessage2Heart\",\r\n\t\"IconMessage2Minus\",\r\n\t\"IconMessage2Off\",\r\n\t\"IconMessage2Pause\",\r\n\t\"IconMessage2Pin\",\r\n\t\"IconMessage2Plus\",\r\n\t\"IconMessage2Question\",\r\n\t\"IconMessage2Search\",\r\n\t\"IconMessage2Share\",\r\n\t\"IconMessage2Star\",\r\n\t\"IconMessage2Up\",\r\n\t\"IconMessage2X\",\r\n\t\"IconMessage2\",\r\n\t\"IconMessageBolt\",\r\n\t\"IconMessageCancel\",\r\n\t\"IconMessageChatbot\",\r\n\t\"IconMessageCheck\",\r\n\t\"IconMessageCircle2Filled\",\r\n\t\"IconMessageCircle2\",\r\n\t\"IconMessageCircleBolt\",\r\n\t\"IconMessageCircleCancel\",\r\n\t\"IconMessageCircleCheck\",\r\n\t\"IconMessageCircleCode\",\r\n\t\"IconMessageCircleCog\",\r\n\t\"IconMessageCircleDollar\",\r\n\t\"IconMessageCircleDown\",\r\n\t\"IconMessageCircleExclamation\",\r\n\t\"IconMessageCircleHeart\",\r\n\t\"IconMessageCircleMinus\",\r\n\t\"IconMessageCircleOff\",\r\n\t\"IconMessageCirclePause\",\r\n\t\"IconMessageCirclePin\",\r\n\t\"IconMessageCirclePlus\",\r\n\t\"IconMessageCircleQuestion\",\r\n\t\"IconMessageCircleSearch\",\r\n\t\"IconMessageCircleShare\",\r\n\t\"IconMessageCircleStar\",\r\n\t\"IconMessageCircleUp\",\r\n\t\"IconMessageCircleX\",\r\n\t\"IconMessageCircle\",\r\n\t\"IconMessageCode\",\r\n\t\"IconMessageCog\",\r\n\t\"IconMessageDollar\",\r\n\t\"IconMessageDots\",\r\n\t\"IconMessageDown\",\r\n\t\"IconMessageExclamation\",\r\n\t\"IconMessageForward\",\r\n\t\"IconMessageHeart\",\r\n\t\"IconMessageLanguage\",\r\n\t\"IconMessageMinus\",\r\n\t\"IconMessageOff\",\r\n\t\"IconMessagePause\",\r\n\t\"IconMessagePin\",\r\n\t\"IconMessagePlus\",\r\n\t\"IconMessageQuestion\",\r\n\t\"IconMessageReport\",\r\n\t\"IconMessageSearch\",\r\n\t\"IconMessageShare\",\r\n\t\"IconMessageStar\",\r\n\t\"IconMessageUp\",\r\n\t\"IconMessageX\",\r\n\t\"IconMessage\",\r\n\t\"IconMessagesOff\",\r\n\t\"IconMessages\",\r\n\t\"IconMeteorOff\",\r\n\t\"IconMeteor\",\r\n\t\"IconMichelinBibGourmand\",\r\n\t\"IconMichelinStarGreen\",\r\n\t\"IconMichelinStar\",\r\n\t\"IconMickeyFilled\",\r\n\t\"IconMickey\",\r\n\t\"IconMicrophone2Off\",\r\n\t\"IconMicrophone2\",\r\n\t\"IconMicrophoneOff\",\r\n\t\"IconMicrophone\",\r\n\t\"IconMicroscopeOff\",\r\n\t\"IconMicroscope\",\r\n\t\"IconMicrowaveOff\",\r\n\t\"IconMicrowave\",\r\n\t\"IconMilitaryAward\",\r\n\t\"IconMilitaryRank\",\r\n\t\"IconMilkOff\",\r\n\t\"IconMilk\",\r\n\t\"IconMilkshake\",\r\n\t\"IconMinimize\",\r\n\t\"IconMinusVertical\",\r\n\t\"IconMinus\",\r\n\t\"IconMistOff\",\r\n\t\"IconMist\",\r\n\t\"IconMobiledataOff\",\r\n\t\"IconMobiledata\",\r\n\t\"IconMoneybag\",\r\n\t\"IconMoodAngry\",\r\n\t\"IconMoodAnnoyed2\",\r\n\t\"IconMoodAnnoyed\",\r\n\t\"IconMoodBoy\",\r\n\t\"IconMoodCheck\",\r\n\t\"IconMoodCog\",\r\n\t\"IconMoodConfuzedFilled\",\r\n\t\"IconMoodConfuzed\",\r\n\t\"IconMoodCrazyHappy\",\r\n\t\"IconMoodCry\",\r\n\t\"IconMoodDollar\",\r\n\t\"IconMoodEdit\",\r\n\t\"IconMoodEmptyFilled\",\r\n\t\"IconMoodEmpty\",\r\n\t\"IconMoodHappyFilled\",\r\n\t\"IconMoodHappy\",\r\n\t\"IconMoodHeart\",\r\n\t\"IconMoodKidFilled\",\r\n\t\"IconMoodKid\",\r\n\t\"IconMoodLookLeft\",\r\n\t\"IconMoodLookRight\",\r\n\t\"IconMoodMinus\",\r\n\t\"IconMoodNerd\",\r\n\t\"IconMoodNervous\",\r\n\t\"IconMoodNeutralFilled\",\r\n\t\"IconMoodNeutral\",\r\n\t\"IconMoodOff\",\r\n\t\"IconMoodPin\",\r\n\t\"IconMoodPlus\",\r\n\t\"IconMoodSad2\",\r\n\t\"IconMoodSadDizzy\",\r\n\t\"IconMoodSadFilled\",\r\n\t\"IconMoodSadSquint\",\r\n\t\"IconMoodSad\",\r\n\t\"IconMoodSearch\",\r\n\t\"IconMoodShare\",\r\n\t\"IconMoodSick\",\r\n\t\"IconMoodSilence\",\r\n\t\"IconMoodSing\",\r\n\t\"IconMoodSmileBeam\",\r\n\t\"IconMoodSmileDizzy\",\r\n\t\"IconMoodSmileFilled\",\r\n\t\"IconMoodSmile\",\r\n\t\"IconMoodSuprised\",\r\n\t\"IconMoodTongueWink2\",\r\n\t\"IconMoodTongueWink\",\r\n\t\"IconMoodTongue\",\r\n\t\"IconMoodUnamused\",\r\n\t\"IconMoodUp\",\r\n\t\"IconMoodWink2\",\r\n\t\"IconMoodWink\",\r\n\t\"IconMoodWrrr\",\r\n\t\"IconMoodX\",\r\n\t\"IconMoodXd\",\r\n\t\"IconMoon2\",\r\n\t\"IconMoonFilled\",\r\n\t\"IconMoonOff\",\r\n\t\"IconMoonStars\",\r\n\t\"IconMoon\",\r\n\t\"IconMoped\",\r\n\t\"IconMotorbike\",\r\n\t\"IconMountainOff\",\r\n\t\"IconMountain\",\r\n\t\"IconMouse2\",\r\n\t\"IconMouseFilled\",\r\n\t\"IconMouseOff\",\r\n\t\"IconMouse\",\r\n\t\"IconMoustache\",\r\n\t\"IconMovieOff\",\r\n\t\"IconMovie\",\r\n\t\"IconMugOff\",\r\n\t\"IconMug\",\r\n\t\"IconMultiplier05x\",\r\n\t\"IconMultiplier15x\",\r\n\t\"IconMultiplier1x\",\r\n\t\"IconMultiplier2x\",\r\n\t\"IconMushroomFilled\",\r\n\t\"IconMushroomOff\",\r\n\t\"IconMushroom\",\r\n\t\"IconMusicOff\",\r\n\t\"IconMusic\",\r\n\t\"IconNavigationFilled\",\r\n\t\"IconNavigationNorth\",\r\n\t\"IconNavigationOff\",\r\n\t\"IconNavigation\",\r\n\t\"IconNeedleThread\",\r\n\t\"IconNeedle\",\r\n\t\"IconNetworkOff\",\r\n\t\"IconNetwork\",\r\n\t\"IconNewSection\",\r\n\t\"IconNewsOff\",\r\n\t\"IconNews\",\r\n\t\"IconNfcOff\",\r\n\t\"IconNfc\",\r\n\t\"IconNoCopyright\",\r\n\t\"IconNoCreativeCommons\",\r\n\t\"IconNoDerivatives\",\r\n\t\"IconNorthStar\",\r\n\t\"IconNoteOff\",\r\n\t\"IconNote\",\r\n\t\"IconNotebookOff\",\r\n\t\"IconNotebook\",\r\n\t\"IconNotesOff\",\r\n\t\"IconNotes\",\r\n\t\"IconNotificationOff\",\r\n\t\"IconNotification\",\r\n\t\"IconNumber0\",\r\n\t\"IconNumber1\",\r\n\t\"IconNumber2\",\r\n\t\"IconNumber3\",\r\n\t\"IconNumber4\",\r\n\t\"IconNumber5\",\r\n\t\"IconNumber6\",\r\n\t\"IconNumber7\",\r\n\t\"IconNumber8\",\r\n\t\"IconNumber9\",\r\n\t\"IconNumber\",\r\n\t\"IconNumbers\",\r\n\t\"IconNurse\",\r\n\t\"IconOctagonFilled\",\r\n\t\"IconOctagonOff\",\r\n\t\"IconOctagon\",\r\n\t\"IconOctahedronOff\",\r\n\t\"IconOctahedronPlus\",\r\n\t\"IconOctahedron\",\r\n\t\"IconOld\",\r\n\t\"IconOlympicsOff\",\r\n\t\"IconOlympics\",\r\n\t\"IconOm\",\r\n\t\"IconOmega\",\r\n\t\"IconOutbound\",\r\n\t\"IconOutlet\",\r\n\t\"IconOvalFilled\",\r\n\t\"IconOvalVerticalFilled\",\r\n\t\"IconOvalVertical\",\r\n\t\"IconOval\",\r\n\t\"IconOverline\",\r\n\t\"IconPackageExport\",\r\n\t\"IconPackageImport\",\r\n\t\"IconPackageOff\",\r\n\t\"IconPackage\",\r\n\t\"IconPackages\",\r\n\t\"IconPacman\",\r\n\t\"IconPageBreak\",\r\n\t\"IconPaintFilled\",\r\n\t\"IconPaintOff\",\r\n\t\"IconPaint\",\r\n\t\"IconPaletteOff\",\r\n\t\"IconPalette\",\r\n\t\"IconPanoramaHorizontalOff\",\r\n\t\"IconPanoramaHorizontal\",\r\n\t\"IconPanoramaVerticalOff\",\r\n\t\"IconPanoramaVertical\",\r\n\t\"IconPaperBagOff\",\r\n\t\"IconPaperBag\",\r\n\t\"IconPaperclip\",\r\n\t\"IconParachuteOff\",\r\n\t\"IconParachute\",\r\n\t\"IconParenthesesOff\",\r\n\t\"IconParentheses\",\r\n\t\"IconParkingOff\",\r\n\t\"IconParking\",\r\n\t\"IconPassword\",\r\n\t\"IconPawFilled\",\r\n\t\"IconPawOff\",\r\n\t\"IconPaw\",\r\n\t\"IconPdf\",\r\n\t\"IconPeace\",\r\n\t\"IconPencilMinus\",\r\n\t\"IconPencilOff\",\r\n\t\"IconPencilPlus\",\r\n\t\"IconPencil\",\r\n\t\"IconPennant2Filled\",\r\n\t\"IconPennant2\",\r\n\t\"IconPennantFilled\",\r\n\t\"IconPennantOff\",\r\n\t\"IconPennant\",\r\n\t\"IconPentagonFilled\",\r\n\t\"IconPentagonOff\",\r\n\t\"IconPentagon\",\r\n\t\"IconPentagram\",\r\n\t\"IconPepperOff\",\r\n\t\"IconPepper\",\r\n\t\"IconPercentage\",\r\n\t\"IconPerfume\",\r\n\t\"IconPerspectiveOff\",\r\n\t\"IconPerspective\",\r\n\t\"IconPhoneCall\",\r\n\t\"IconPhoneCalling\",\r\n\t\"IconPhoneCheck\",\r\n\t\"IconPhoneFilled\",\r\n\t\"IconPhoneIncoming\",\r\n\t\"IconPhoneOff\",\r\n\t\"IconPhoneOutgoing\",\r\n\t\"IconPhonePause\",\r\n\t\"IconPhonePlus\",\r\n\t\"IconPhoneX\",\r\n\t\"IconPhone\",\r\n\t\"IconPhotoAi\",\r\n\t\"IconPhotoBolt\",\r\n\t\"IconPhotoCancel\",\r\n\t\"IconPhotoCheck\",\r\n\t\"IconPhotoCode\",\r\n\t\"IconPhotoCog\",\r\n\t\"IconPhotoDollar\",\r\n\t\"IconPhotoDown\",\r\n\t\"IconPhotoEdit\",\r\n\t\"IconPhotoExclamation\",\r\n\t\"IconPhotoFilled\",\r\n\t\"IconPhotoHeart\",\r\n\t\"IconPhotoMinus\",\r\n\t\"IconPhotoOff\",\r\n\t\"IconPhotoPause\",\r\n\t\"IconPhotoPin\",\r\n\t\"IconPhotoPlus\",\r\n\t\"IconPhotoQuestion\",\r\n\t\"IconPhotoSearch\",\r\n\t\"IconPhotoSensor2\",\r\n\t\"IconPhotoSensor3\",\r\n\t\"IconPhotoSensor\",\r\n\t\"IconPhotoShare\",\r\n\t\"IconPhotoShield\",\r\n\t\"IconPhotoStar\",\r\n\t\"IconPhotoUp\",\r\n\t\"IconPhotoX\",\r\n\t\"IconPhoto\",\r\n\t\"IconPhysotherapist\",\r\n\t\"IconPiano\",\r\n\t\"IconPick\",\r\n\t\"IconPictureInPictureOff\",\r\n\t\"IconPictureInPictureOn\",\r\n\t\"IconPictureInPictureTop\",\r\n\t\"IconPictureInPicture\",\r\n\t\"IconPigMoney\",\r\n\t\"IconPigOff\",\r\n\t\"IconPig\",\r\n\t\"IconPilcrow\",\r\n\t\"IconPillOff\",\r\n\t\"IconPill\",\r\n\t\"IconPills\",\r\n\t\"IconPinFilled\",\r\n\t\"IconPin\",\r\n\t\"IconPingPong\",\r\n\t\"IconPinnedFilled\",\r\n\t\"IconPinnedOff\",\r\n\t\"IconPinned\",\r\n\t\"IconPizzaOff\",\r\n\t\"IconPizza\",\r\n\t\"IconPlaceholder\",\r\n\t\"IconPlaneArrival\",\r\n\t\"IconPlaneDeparture\",\r\n\t\"IconPlaneInflight\",\r\n\t\"IconPlaneOff\",\r\n\t\"IconPlaneTilt\",\r\n\t\"IconPlane\",\r\n\t\"IconPlanetOff\",\r\n\t\"IconPlanet\",\r\n\t\"IconPlant2Off\",\r\n\t\"IconPlant2\",\r\n\t\"IconPlantOff\",\r\n\t\"IconPlant\",\r\n\t\"IconPlayBasketball\",\r\n\t\"IconPlayCardOff\",\r\n\t\"IconPlayCard\",\r\n\t\"IconPlayFootball\",\r\n\t\"IconPlayHandball\",\r\n\t\"IconPlayVolleyball\",\r\n\t\"IconPlayerEjectFilled\",\r\n\t\"IconPlayerEject\",\r\n\t\"IconPlayerPauseFilled\",\r\n\t\"IconPlayerPause\",\r\n\t\"IconPlayerPlayFilled\",\r\n\t\"IconPlayerPlay\",\r\n\t\"IconPlayerRecordFilled\",\r\n\t\"IconPlayerRecord\",\r\n\t\"IconPlayerSkipBackFilled\",\r\n\t\"IconPlayerSkipBack\",\r\n\t\"IconPlayerSkipForwardFilled\",\r\n\t\"IconPlayerSkipForward\",\r\n\t\"IconPlayerStopFilled\",\r\n\t\"IconPlayerStop\",\r\n\t\"IconPlayerTrackNextFilled\",\r\n\t\"IconPlayerTrackNext\",\r\n\t\"IconPlayerTrackPrevFilled\",\r\n\t\"IconPlayerTrackPrev\",\r\n\t\"IconPlaylistAdd\",\r\n\t\"IconPlaylistOff\",\r\n\t\"IconPlaylistX\",\r\n\t\"IconPlaylist\",\r\n\t\"IconPlaystationCircle\",\r\n\t\"IconPlaystationSquare\",\r\n\t\"IconPlaystationTriangle\",\r\n\t\"IconPlaystationX\",\r\n\t\"IconPlugConnectedX\",\r\n\t\"IconPlugConnected\",\r\n\t\"IconPlugOff\",\r\n\t\"IconPlugX\",\r\n\t\"IconPlug\",\r\n\t\"IconPlusEqual\",\r\n\t\"IconPlusMinus\",\r\n\t\"IconPlus\",\r\n\t\"IconPng\",\r\n\t\"IconPodiumOff\",\r\n\t\"IconPodium\",\r\n\t\"IconPointFilled\",\r\n\t\"IconPointOff\",\r\n\t\"IconPoint\",\r\n\t\"IconPointerBolt\",\r\n\t\"IconPointerCancel\",\r\n\t\"IconPointerCheck\",\r\n\t\"IconPointerCode\",\r\n\t\"IconPointerCog\",\r\n\t\"IconPointerDollar\",\r\n\t\"IconPointerDown\",\r\n\t\"IconPointerExclamation\",\r\n\t\"IconPointerFilled\",\r\n\t\"IconPointerHeart\",\r\n\t\"IconPointerMinus\",\r\n\t\"IconPointerOff\",\r\n\t\"IconPointerPause\",\r\n\t\"IconPointerPin\",\r\n\t\"IconPointerPlus\",\r\n\t\"IconPointerQuestion\",\r\n\t\"IconPointerSearch\",\r\n\t\"IconPointerShare\",\r\n\t\"IconPointerStar\",\r\n\t\"IconPointerUp\",\r\n\t\"IconPointerX\",\r\n\t\"IconPointer\",\r\n\t\"IconPokeballOff\",\r\n\t\"IconPokeball\",\r\n\t\"IconPokerChip\",\r\n\t\"IconPolaroidFilled\",\r\n\t\"IconPolaroid\",\r\n\t\"IconPolygonOff\",\r\n\t\"IconPolygon\",\r\n\t\"IconPoo\",\r\n\t\"IconPoolOff\",\r\n\t\"IconPool\",\r\n\t\"IconPower\",\r\n\t\"IconPray\",\r\n\t\"IconPremiumRights\",\r\n\t\"IconPrescription\",\r\n\t\"IconPresentationAnalytics\",\r\n\t\"IconPresentationOff\",\r\n\t\"IconPresentation\",\r\n\t\"IconPrinterOff\",\r\n\t\"IconPrinter\",\r\n\t\"IconPrismOff\",\r\n\t\"IconPrismPlus\",\r\n\t\"IconPrism\",\r\n\t\"IconPrison\",\r\n\t\"IconProgressAlert\",\r\n\t\"IconProgressBolt\",\r\n\t\"IconProgressCheck\",\r\n\t\"IconProgressDown\",\r\n\t\"IconProgressHelp\",\r\n\t\"IconProgressX\",\r\n\t\"IconProgress\",\r\n\t\"IconPrompt\",\r\n\t\"IconPropellerOff\",\r\n\t\"IconPropeller\",\r\n\t\"IconPumpkinScary\",\r\n\t\"IconPuzzle2\",\r\n\t\"IconPuzzleFilled\",\r\n\t\"IconPuzzleOff\",\r\n\t\"IconPuzzle\",\r\n\t\"IconPyramidOff\",\r\n\t\"IconPyramidPlus\",\r\n\t\"IconPyramid\",\r\n\t\"IconQrcodeOff\",\r\n\t\"IconQrcode\",\r\n\t\"IconQuestionMark\",\r\n\t\"IconQuoteOff\",\r\n\t\"IconQuote\",\r\n\t\"IconQuotes\",\r\n\t\"IconRadar2\",\r\n\t\"IconRadarOff\",\r\n\t\"IconRadar\",\r\n\t\"IconRadioOff\",\r\n\t\"IconRadio\",\r\n\t\"IconRadioactiveFilled\",\r\n\t\"IconRadioactiveOff\",\r\n\t\"IconRadioactive\",\r\n\t\"IconRadiusBottomLeft\",\r\n\t\"IconRadiusBottomRight\",\r\n\t\"IconRadiusTopLeft\",\r\n\t\"IconRadiusTopRight\",\r\n\t\"IconRainbowOff\",\r\n\t\"IconRainbow\",\r\n\t\"IconRating12Plus\",\r\n\t\"IconRating14Plus\",\r\n\t\"IconRating16Plus\",\r\n\t\"IconRating18Plus\",\r\n\t\"IconRating21Plus\",\r\n\t\"IconRazorElectric\",\r\n\t\"IconRazor\",\r\n\t\"IconReceipt2\",\r\n\t\"IconReceiptOff\",\r\n\t\"IconReceiptRefund\",\r\n\t\"IconReceiptTax\",\r\n\t\"IconReceipt\",\r\n\t\"IconRecharging\",\r\n\t\"IconRecordMailOff\",\r\n\t\"IconRecordMail\",\r\n\t\"IconRectangleFilled\",\r\n\t\"IconRectangleRoundedBottom\",\r\n\t\"IconRectangleRoundedTop\",\r\n\t\"IconRectangleVerticalFilled\",\r\n\t\"IconRectangleVertical\",\r\n\t\"IconRectangle\",\r\n\t\"IconRectangularPrismOff\",\r\n\t\"IconRectangularPrismPlus\",\r\n\t\"IconRectangularPrism\",\r\n\t\"IconRecycleOff\",\r\n\t\"IconRecycle\",\r\n\t\"IconRefreshAlert\",\r\n\t\"IconRefreshDot\",\r\n\t\"IconRefreshOff\",\r\n\t\"IconRefresh\",\r\n\t\"IconRegexOff\",\r\n\t\"IconRegex\",\r\n\t\"IconRegistered\",\r\n\t\"IconRelationManyToMany\",\r\n\t\"IconRelationOneToMany\",\r\n\t\"IconRelationOneToOne\",\r\n\t\"IconReload\",\r\n\t\"IconRepeatOff\",\r\n\t\"IconRepeatOnce\",\r\n\t\"IconRepeat\",\r\n\t\"IconReplaceFilled\",\r\n\t\"IconReplaceOff\",\r\n\t\"IconReplace\",\r\n\t\"IconReportAnalytics\",\r\n\t\"IconReportMedical\",\r\n\t\"IconReportMoney\",\r\n\t\"IconReportOff\",\r\n\t\"IconReportSearch\",\r\n\t\"IconReport\",\r\n\t\"IconReservedLine\",\r\n\t\"IconResize\",\r\n\t\"IconRestore\",\r\n\t\"IconRewindBackward10\",\r\n\t\"IconRewindBackward15\",\r\n\t\"IconRewindBackward20\",\r\n\t\"IconRewindBackward30\",\r\n\t\"IconRewindBackward40\",\r\n\t\"IconRewindBackward5\",\r\n\t\"IconRewindBackward50\",\r\n\t\"IconRewindBackward60\",\r\n\t\"IconRewindForward10\",\r\n\t\"IconRewindForward15\",\r\n\t\"IconRewindForward20\",\r\n\t\"IconRewindForward30\",\r\n\t\"IconRewindForward40\",\r\n\t\"IconRewindForward5\",\r\n\t\"IconRewindForward50\",\r\n\t\"IconRewindForward60\",\r\n\t\"IconRibbonHealth\",\r\n\t\"IconRings\",\r\n\t\"IconRippleOff\",\r\n\t\"IconRipple\",\r\n\t\"IconRoadOff\",\r\n\t\"IconRoadSign\",\r\n\t\"IconRoad\",\r\n\t\"IconRobotOff\",\r\n\t\"IconRobot\",\r\n\t\"IconRocketOff\",\r\n\t\"IconRocket\",\r\n\t\"IconRollerSkating\",\r\n\t\"IconRollercoasterOff\",\r\n\t\"IconRollercoaster\",\r\n\t\"IconRosetteFilled\",\r\n\t\"IconRosetteNumber0\",\r\n\t\"IconRosetteNumber1\",\r\n\t\"IconRosetteNumber2\",\r\n\t\"IconRosetteNumber3\",\r\n\t\"IconRosetteNumber4\",\r\n\t\"IconRosetteNumber5\",\r\n\t\"IconRosetteNumber6\",\r\n\t\"IconRosetteNumber7\",\r\n\t\"IconRosetteNumber8\",\r\n\t\"IconRosetteNumber9\",\r\n\t\"IconRosette\",\r\n\t\"IconRotate2\",\r\n\t\"IconRotate360\",\r\n\t\"IconRotateClockwise2\",\r\n\t\"IconRotateClockwise\",\r\n\t\"IconRotateDot\",\r\n\t\"IconRotateRectangle\",\r\n\t\"IconRotate\",\r\n\t\"IconRoute2\",\r\n\t\"IconRouteOff\",\r\n\t\"IconRoute\",\r\n\t\"IconRouterOff\",\r\n\t\"IconRouter\",\r\n\t\"IconRowInsertBottom\",\r\n\t\"IconRowInsertTop\",\r\n\t\"IconRowRemove\",\r\n\t\"IconRss\",\r\n\t\"IconRubberStampOff\",\r\n\t\"IconRubberStamp\",\r\n\t\"IconRuler2Off\",\r\n\t\"IconRuler2\",\r\n\t\"IconRuler3\",\r\n\t\"IconRulerMeasure\",\r\n\t\"IconRulerOff\",\r\n\t\"IconRuler\",\r\n\t\"IconRun\",\r\n\t\"IconSTurnDown\",\r\n\t\"IconSTurnLeft\",\r\n\t\"IconSTurnRight\",\r\n\t\"IconSTurnUp\",\r\n\t\"IconSailboat2\",\r\n\t\"IconSailboatOff\",\r\n\t\"IconSailboat\",\r\n\t\"IconSalad\",\r\n\t\"IconSalt\",\r\n\t\"IconSatelliteOff\",\r\n\t\"IconSatellite\",\r\n\t\"IconSausage\",\r\n\t\"IconScaleOff\",\r\n\t\"IconScaleOutlineOff\",\r\n\t\"IconScaleOutline\",\r\n\t\"IconScale\",\r\n\t\"IconScanEye\",\r\n\t\"IconScan\",\r\n\t\"IconSchemaOff\",\r\n\t\"IconSchema\",\r\n\t\"IconSchoolBell\",\r\n\t\"IconSchoolOff\",\r\n\t\"IconSchool\",\r\n\t\"IconScissorsOff\",\r\n\t\"IconScissors\",\r\n\t\"IconScooterElectric\",\r\n\t\"IconScooter\",\r\n\t\"IconScoreboard\",\r\n\t\"IconScreenShareOff\",\r\n\t\"IconScreenShare\",\r\n\t\"IconScreenshot\",\r\n\t\"IconScribbleOff\",\r\n\t\"IconScribble\",\r\n\t\"IconScriptMinus\",\r\n\t\"IconScriptPlus\",\r\n\t\"IconScriptX\",\r\n\t\"IconScript\",\r\n\t\"IconScubaMaskOff\",\r\n\t\"IconScubaMask\",\r\n\t\"IconSdk\",\r\n\t\"IconSearchOff\",\r\n\t\"IconSearch\",\r\n\t\"IconSectionSign\",\r\n\t\"IconSection\",\r\n\t\"IconSeedingOff\",\r\n\t\"IconSeeding\",\r\n\t\"IconSelectAll\",\r\n\t\"IconSelect\",\r\n\t\"IconSelector\",\r\n\t\"IconSendOff\",\r\n\t\"IconSend\",\r\n\t\"IconSeo\",\r\n\t\"IconSeparatorHorizontal\",\r\n\t\"IconSeparatorVertical\",\r\n\t\"IconSeparator\",\r\n\t\"IconServer2\",\r\n\t\"IconServerBolt\",\r\n\t\"IconServerCog\",\r\n\t\"IconServerOff\",\r\n\t\"IconServer\",\r\n\t\"IconServicemark\",\r\n\t\"IconSettings2\",\r\n\t\"IconSettingsAutomation\",\r\n\t\"IconSettingsBolt\",\r\n\t\"IconSettingsCancel\",\r\n\t\"IconSettingsCheck\",\r\n\t\"IconSettingsCode\",\r\n\t\"IconSettingsCog\",\r\n\t\"IconSettingsDollar\",\r\n\t\"IconSettingsDown\",\r\n\t\"IconSettingsExclamation\",\r\n\t\"IconSettingsFilled\",\r\n\t\"IconSettingsHeart\",\r\n\t\"IconSettingsMinus\",\r\n\t\"IconSettingsOff\",\r\n\t\"IconSettingsPause\",\r\n\t\"IconSettingsPin\",\r\n\t\"IconSettingsPlus\",\r\n\t\"IconSettingsQuestion\",\r\n\t\"IconSettingsSearch\",\r\n\t\"IconSettingsShare\",\r\n\t\"IconSettingsStar\",\r\n\t\"IconSettingsUp\",\r\n\t\"IconSettingsX\",\r\n\t\"IconSettings\",\r\n\t\"IconShadowOff\",\r\n\t\"IconShadow\",\r\n\t\"IconShape2\",\r\n\t\"IconShape3\",\r\n\t\"IconShapeOff\",\r\n\t\"IconShape\",\r\n\t\"IconShare2\",\r\n\t\"IconShare3\",\r\n\t\"IconShareOff\",\r\n\t\"IconShare\",\r\n\t\"IconShiJumping\",\r\n\t\"IconShieldBolt\",\r\n\t\"IconShieldCancel\",\r\n\t\"IconShieldCheckFilled\",\r\n\t\"IconShieldCheck\",\r\n\t\"IconShieldCheckeredFilled\",\r\n\t\"IconShieldCheckered\",\r\n\t\"IconShieldChevron\",\r\n\t\"IconShieldCode\",\r\n\t\"IconShieldCog\",\r\n\t\"IconShieldDollar\",\r\n\t\"IconShieldDown\",\r\n\t\"IconShieldExclamation\",\r\n\t\"IconShieldFilled\",\r\n\t\"IconShieldHalfFilled\",\r\n\t\"IconShieldHalf\",\r\n\t\"IconShieldHeart\",\r\n\t\"IconShieldLockFilled\",\r\n\t\"IconShieldLock\",\r\n\t\"IconShieldMinus\",\r\n\t\"IconShieldOff\",\r\n\t\"IconShieldPause\",\r\n\t\"IconShieldPin\",\r\n\t\"IconShieldPlus\",\r\n\t\"IconShieldQuestion\",\r\n\t\"IconShieldSearch\",\r\n\t\"IconShieldShare\",\r\n\t\"IconShieldStar\",\r\n\t\"IconShieldUp\",\r\n\t\"IconShieldX\",\r\n\t\"IconShield\",\r\n\t\"IconShipOff\",\r\n\t\"IconShip\",\r\n\t\"IconShirtFilled\",\r\n\t\"IconShirtOff\",\r\n\t\"IconShirtSport\",\r\n\t\"IconShirt\",\r\n\t\"IconShoeOff\",\r\n\t\"IconShoe\",\r\n\t\"IconShoppingBag\",\r\n\t\"IconShoppingCartDiscount\",\r\n\t\"IconShoppingCartOff\",\r\n\t\"IconShoppingCartPlus\",\r\n\t\"IconShoppingCartX\",\r\n\t\"IconShoppingCart\",\r\n\t\"IconShovel\",\r\n\t\"IconShredder\",\r\n\t\"IconSignLeftFilled\",\r\n\t\"IconSignLeft\",\r\n\t\"IconSignRightFilled\",\r\n\t\"IconSignRight\",\r\n\t\"IconSignal2g\",\r\n\t\"IconSignal3g\",\r\n\t\"IconSignal4gPlus\",\r\n\t\"IconSignal4g\",\r\n\t\"IconSignal5g\",\r\n\t\"IconSignal6g\",\r\n\t\"IconSignalE\",\r\n\t\"IconSignalG\",\r\n\t\"IconSignalHPlus\",\r\n\t\"IconSignalH\",\r\n\t\"IconSignalLte\",\r\n\t\"IconSignatureOff\",\r\n\t\"IconSignature\",\r\n\t\"IconSitemapOff\",\r\n\t\"IconSitemap\",\r\n\t\"IconSkateboardOff\",\r\n\t\"IconSkateboard\",\r\n\t\"IconSkateboarding\",\r\n\t\"IconSkull\",\r\n\t\"IconSlash\",\r\n\t\"IconSlashes\",\r\n\t\"IconSleigh\",\r\n\t\"IconSlice\",\r\n\t\"IconSlideshow\",\r\n\t\"IconSmartHomeOff\",\r\n\t\"IconSmartHome\",\r\n\t\"IconSmokingNo\",\r\n\t\"IconSmoking\",\r\n\t\"IconSnowflakeOff\",\r\n\t\"IconSnowflake\",\r\n\t\"IconSnowman\",\r\n\t\"IconSoccerField\",\r\n\t\"IconSocialOff\",\r\n\t\"IconSocial\",\r\n\t\"IconSock\",\r\n\t\"IconSofaOff\",\r\n\t\"IconSofa\",\r\n\t\"IconSolarPanel2\",\r\n\t\"IconSolarPanel\",\r\n\t\"IconSort09\",\r\n\t\"IconSort90\",\r\n\t\"IconSortAZ\",\r\n\t\"IconSortAscending2\",\r\n\t\"IconSortAscendingLetters\",\r\n\t\"IconSortAscendingNumbers\",\r\n\t\"IconSortAscending\",\r\n\t\"IconSortDescending2\",\r\n\t\"IconSortDescendingLetters\",\r\n\t\"IconSortDescendingNumbers\",\r\n\t\"IconSortDescending\",\r\n\t\"IconSortZA\",\r\n\t\"IconSos\",\r\n\t\"IconSoupOff\",\r\n\t\"IconSoup\",\r\n\t\"IconSourceCode\",\r\n\t\"IconSpaceOff\",\r\n\t\"IconSpace\",\r\n\t\"IconSpacingHorizontal\",\r\n\t\"IconSpacingVertical\",\r\n\t\"IconSpadeFilled\",\r\n\t\"IconSpade\",\r\n\t\"IconSparkles\",\r\n\t\"IconSpeakerphone\",\r\n\t\"IconSpeedboat\",\r\n\t\"IconSphereOff\",\r\n\t\"IconSpherePlus\",\r\n\t\"IconSphere\",\r\n\t\"IconSpider\",\r\n\t\"IconSpiralOff\",\r\n\t\"IconSpiral\",\r\n\t\"IconSportBillard\",\r\n\t\"IconSpray\",\r\n\t\"IconSpyOff\",\r\n\t\"IconSpy\",\r\n\t\"IconSql\",\r\n\t\"IconSquare0Filled\",\r\n\t\"IconSquare1Filled\",\r\n\t\"IconSquare2Filled\",\r\n\t\"IconSquare3Filled\",\r\n\t\"IconSquare4Filled\",\r\n\t\"IconSquare5Filled\",\r\n\t\"IconSquare6Filled\",\r\n\t\"IconSquare7Filled\",\r\n\t\"IconSquare8Filled\",\r\n\t\"IconSquare9Filled\",\r\n\t\"IconSquareArrowDown\",\r\n\t\"IconSquareArrowLeft\",\r\n\t\"IconSquareArrowRight\",\r\n\t\"IconSquareArrowUp\",\r\n\t\"IconSquareAsterisk\",\r\n\t\"IconSquareCheckFilled\",\r\n\t\"IconSquareCheck\",\r\n\t\"IconSquareChevronDown\",\r\n\t\"IconSquareChevronLeft\",\r\n\t\"IconSquareChevronRight\",\r\n\t\"IconSquareChevronUp\",\r\n\t\"IconSquareChevronsDown\",\r\n\t\"IconSquareChevronsLeft\",\r\n\t\"IconSquareChevronsRight\",\r\n\t\"IconSquareChevronsUp\",\r\n\t\"IconSquareDot\",\r\n\t\"IconSquareF0Filled\",\r\n\t\"IconSquareF0\",\r\n\t\"IconSquareF1Filled\",\r\n\t\"IconSquareF1\",\r\n\t\"IconSquareF2Filled\",\r\n\t\"IconSquareF2\",\r\n\t\"IconSquareF3Filled\",\r\n\t\"IconSquareF3\",\r\n\t\"IconSquareF4Filled\",\r\n\t\"IconSquareF4\",\r\n\t\"IconSquareF5Filled\",\r\n\t\"IconSquareF5\",\r\n\t\"IconSquareF6Filled\",\r\n\t\"IconSquareF6\",\r\n\t\"IconSquareF7Filled\",\r\n\t\"IconSquareF7\",\r\n\t\"IconSquareF8Filled\",\r\n\t\"IconSquareF8\",\r\n\t\"IconSquareF9Filled\",\r\n\t\"IconSquareF9\",\r\n\t\"IconSquareForbid2\",\r\n\t\"IconSquareForbid\",\r\n\t\"IconSquareHalf\",\r\n\t\"IconSquareKey\",\r\n\t\"IconSquareLetterA\",\r\n\t\"IconSquareLetterB\",\r\n\t\"IconSquareLetterC\",\r\n\t\"IconSquareLetterD\",\r\n\t\"IconSquareLetterE\",\r\n\t\"IconSquareLetterF\",\r\n\t\"IconSquareLetterG\",\r\n\t\"IconSquareLetterH\",\r\n\t\"IconSquareLetterI\",\r\n\t\"IconSquareLetterJ\",\r\n\t\"IconSquareLetterK\",\r\n\t\"IconSquareLetterL\",\r\n\t\"IconSquareLetterM\",\r\n\t\"IconSquareLetterN\",\r\n\t\"IconSquareLetterO\",\r\n\t\"IconSquareLetterP\",\r\n\t\"IconSquareLetterQ\",\r\n\t\"IconSquareLetterR\",\r\n\t\"IconSquareLetterS\",\r\n\t\"IconSquareLetterT\",\r\n\t\"IconSquareLetterU\",\r\n\t\"IconSquareLetterV\",\r\n\t\"IconSquareLetterW\",\r\n\t\"IconSquareLetterX\",\r\n\t\"IconSquareLetterY\",\r\n\t\"IconSquareLetterZ\",\r\n\t\"IconSquareMinus\",\r\n\t\"IconSquareNumber0\",\r\n\t\"IconSquareNumber1\",\r\n\t\"IconSquareNumber2\",\r\n\t\"IconSquareNumber3\",\r\n\t\"IconSquareNumber4\",\r\n\t\"IconSquareNumber5\",\r\n\t\"IconSquareNumber6\",\r\n\t\"IconSquareNumber7\",\r\n\t\"IconSquareNumber8\",\r\n\t\"IconSquareNumber9\",\r\n\t\"IconSquareOff\",\r\n\t\"IconSquarePlus\",\r\n\t\"IconSquareRoot2\",\r\n\t\"IconSquareRoot\",\r\n\t\"IconSquareRotatedFilled\",\r\n\t\"IconSquareRotatedForbid2\",\r\n\t\"IconSquareRotatedForbid\",\r\n\t\"IconSquareRotatedOff\",\r\n\t\"IconSquareRotated\",\r\n\t\"IconSquareRoundedArrowDownFilled\",\r\n\t\"IconSquareRoundedArrowDown\",\r\n\t\"IconSquareRoundedArrowLeftFilled\",\r\n\t\"IconSquareRoundedArrowLeft\",\r\n\t\"IconSquareRoundedArrowRightFilled\",\r\n\t\"IconSquareRoundedArrowRight\",\r\n\t\"IconSquareRoundedArrowUpFilled\",\r\n\t\"IconSquareRoundedArrowUp\",\r\n\t\"IconSquareRoundedCheckFilled\",\r\n\t\"IconSquareRoundedCheck\",\r\n\t\"IconSquareRoundedChevronDownFilled\",\r\n\t\"IconSquareRoundedChevronDown\",\r\n\t\"IconSquareRoundedChevronLeftFilled\",\r\n\t\"IconSquareRoundedChevronLeft\",\r\n\t\"IconSquareRoundedChevronRightFilled\",\r\n\t\"IconSquareRoundedChevronRight\",\r\n\t\"IconSquareRoundedChevronUpFilled\",\r\n\t\"IconSquareRoundedChevronUp\",\r\n\t\"IconSquareRoundedChevronsDownFilled\",\r\n\t\"IconSquareRoundedChevronsDown\",\r\n\t\"IconSquareRoundedChevronsLeftFilled\",\r\n\t\"IconSquareRoundedChevronsLeft\",\r\n\t\"IconSquareRoundedChevronsRightFilled\",\r\n\t\"IconSquareRoundedChevronsRight\",\r\n\t\"IconSquareRoundedChevronsUpFilled\",\r\n\t\"IconSquareRoundedChevronsUp\",\r\n\t\"IconSquareRoundedFilled\",\r\n\t\"IconSquareRoundedLetterA\",\r\n\t\"IconSquareRoundedLetterB\",\r\n\t\"IconSquareRoundedLetterC\",\r\n\t\"IconSquareRoundedLetterD\",\r\n\t\"IconSquareRoundedLetterE\",\r\n\t\"IconSquareRoundedLetterF\",\r\n\t\"IconSquareRoundedLetterG\",\r\n\t\"IconSquareRoundedLetterH\",\r\n\t\"IconSquareRoundedLetterI\",\r\n\t\"IconSquareRoundedLetterJ\",\r\n\t\"IconSquareRoundedLetterK\",\r\n\t\"IconSquareRoundedLetterL\",\r\n\t\"IconSquareRoundedLetterM\",\r\n\t\"IconSquareRoundedLetterN\",\r\n\t\"IconSquareRoundedLetterO\",\r\n\t\"IconSquareRoundedLetterP\",\r\n\t\"IconSquareRoundedLetterQ\",\r\n\t\"IconSquareRoundedLetterR\",\r\n\t\"IconSquareRoundedLetterS\",\r\n\t\"IconSquareRoundedLetterT\",\r\n\t\"IconSquareRoundedLetterU\",\r\n\t\"IconSquareRoundedLetterV\",\r\n\t\"IconSquareRoundedLetterW\",\r\n\t\"IconSquareRoundedLetterX\",\r\n\t\"IconSquareRoundedLetterY\",\r\n\t\"IconSquareRoundedLetterZ\",\r\n\t\"IconSquareRoundedMinus\",\r\n\t\"IconSquareRoundedNumber0Filled\",\r\n\t\"IconSquareRoundedNumber0\",\r\n\t\"IconSquareRoundedNumber1Filled\",\r\n\t\"IconSquareRoundedNumber1\",\r\n\t\"IconSquareRoundedNumber2Filled\",\r\n\t\"IconSquareRoundedNumber2\",\r\n\t\"IconSquareRoundedNumber3Filled\",\r\n\t\"IconSquareRoundedNumber3\",\r\n\t\"IconSquareRoundedNumber4Filled\",\r\n\t\"IconSquareRoundedNumber4\",\r\n\t\"IconSquareRoundedNumber5Filled\",\r\n\t\"IconSquareRoundedNumber5\",\r\n\t\"IconSquareRoundedNumber6Filled\",\r\n\t\"IconSquareRoundedNumber6\",\r\n\t\"IconSquareRoundedNumber7Filled\",\r\n\t\"IconSquareRoundedNumber7\",\r\n\t\"IconSquareRoundedNumber8Filled\",\r\n\t\"IconSquareRoundedNumber8\",\r\n\t\"IconSquareRoundedNumber9Filled\",\r\n\t\"IconSquareRoundedNumber9\",\r\n\t\"IconSquareRoundedPlusFilled\",\r\n\t\"IconSquareRoundedPlus\",\r\n\t\"IconSquareRoundedXFilled\",\r\n\t\"IconSquareRoundedX\",\r\n\t\"IconSquareRounded\",\r\n\t\"IconSquareToggleHorizontal\",\r\n\t\"IconSquareToggle\",\r\n\t\"IconSquareX\",\r\n\t\"IconSquare\",\r\n\t\"IconSquaresDiagonal\",\r\n\t\"IconSquaresFilled\",\r\n\t\"IconStack2\",\r\n\t\"IconStack3\",\r\n\t\"IconStackPop\",\r\n\t\"IconStackPush\",\r\n\t\"IconStack\",\r\n\t\"IconStairsDown\",\r\n\t\"IconStairsUp\",\r\n\t\"IconStairs\",\r\n\t\"IconStarFilled\",\r\n\t\"IconStarHalfFilled\",\r\n\t\"IconStarHalf\",\r\n\t\"IconStarOff\",\r\n\t\"IconStar\",\r\n\t\"IconStarsFilled\",\r\n\t\"IconStarsOff\",\r\n\t\"IconStars\",\r\n\t\"IconStatusChange\",\r\n\t\"IconSteam\",\r\n\t\"IconSteeringWheelOff\",\r\n\t\"IconSteeringWheel\",\r\n\t\"IconStepInto\",\r\n\t\"IconStepOut\",\r\n\t\"IconStereoGlasses\",\r\n\t\"IconStethoscopeOff\",\r\n\t\"IconStethoscope\",\r\n\t\"IconSticker\",\r\n\t\"IconStormOff\",\r\n\t\"IconStorm\",\r\n\t\"IconStretching2\",\r\n\t\"IconStretching\",\r\n\t\"IconStrikethrough\",\r\n\t\"IconSubmarine\",\r\n\t\"IconSubscript\",\r\n\t\"IconSubtask\",\r\n\t\"IconSumOff\",\r\n\t\"IconSum\",\r\n\t\"IconSunFilled\",\r\n\t\"IconSunHigh\",\r\n\t\"IconSunLow\",\r\n\t\"IconSunMoon\",\r\n\t\"IconSunOff\",\r\n\t\"IconSunWind\",\r\n\t\"IconSun\",\r\n\t\"IconSunglasses\",\r\n\t\"IconSunrise\",\r\n\t\"IconSunset2\",\r\n\t\"IconSunset\",\r\n\t\"IconSuperscript\",\r\n\t\"IconSvg\",\r\n\t\"IconSwimming\",\r\n\t\"IconSwipe\",\r\n\t\"IconSwitch2\",\r\n\t\"IconSwitch3\",\r\n\t\"IconSwitchHorizontal\",\r\n\t\"IconSwitchVertical\",\r\n\t\"IconSwitch\",\r\n\t\"IconSwordOff\",\r\n\t\"IconSword\",\r\n\t\"IconSwords\",\r\n\t\"IconTableAlias\",\r\n\t\"IconTableColumn\",\r\n\t\"IconTableDown\",\r\n\t\"IconTableExport\",\r\n\t\"IconTableFilled\",\r\n\t\"IconTableHeart\",\r\n\t\"IconTableImport\",\r\n\t\"IconTableMinus\",\r\n\t\"IconTableOff\",\r\n\t\"IconTableOptions\",\r\n\t\"IconTablePlus\",\r\n\t\"IconTableRow\",\r\n\t\"IconTableShare\",\r\n\t\"IconTableShortcut\",\r\n\t\"IconTable\",\r\n\t\"IconTagOff\",\r\n\t\"IconTag\",\r\n\t\"IconTagsOff\",\r\n\t\"IconTags\",\r\n\t\"IconTallymark1\",\r\n\t\"IconTallymark2\",\r\n\t\"IconTallymark3\",\r\n\t\"IconTallymark4\",\r\n\t\"IconTallymarks\",\r\n\t\"IconTank\",\r\n\t\"IconTargetArrow\",\r\n\t\"IconTargetOff\",\r\n\t\"IconTarget\",\r\n\t\"IconTeapot\",\r\n\t\"IconTelescopeOff\",\r\n\t\"IconTelescope\",\r\n\t\"IconTemperatureCelsius\",\r\n\t\"IconTemperatureFahrenheit\",\r\n\t\"IconTemperatureMinus\",\r\n\t\"IconTemperatureOff\",\r\n\t\"IconTemperaturePlus\",\r\n\t\"IconTemperature\",\r\n\t\"IconTemplateOff\",\r\n\t\"IconTemplate\",\r\n\t\"IconTentOff\",\r\n\t\"IconTent\",\r\n\t\"IconTerminal2\",\r\n\t\"IconTerminal\",\r\n\t\"IconTestPipe2\",\r\n\t\"IconTestPipeOff\",\r\n\t\"IconTestPipe\",\r\n\t\"IconTex\",\r\n\t\"IconTextCaption\",\r\n\t\"IconTextColor\",\r\n\t\"IconTextDecrease\",\r\n\t\"IconTextDirectionLtr\",\r\n\t\"IconTextDirectionRtl\",\r\n\t\"IconTextIncrease\",\r\n\t\"IconTextOrientation\",\r\n\t\"IconTextPlus\",\r\n\t\"IconTextRecognition\",\r\n\t\"IconTextResize\",\r\n\t\"IconTextSize\",\r\n\t\"IconTextSpellcheck\",\r\n\t\"IconTextWrapDisabled\",\r\n\t\"IconTextWrap\",\r\n\t\"IconTexture\",\r\n\t\"IconTheater\",\r\n\t\"IconThermometer\",\r\n\t\"IconThumbDownFilled\",\r\n\t\"IconThumbDownOff\",\r\n\t\"IconThumbDown\",\r\n\t\"IconThumbUpFilled\",\r\n\t\"IconThumbUpOff\",\r\n\t\"IconThumbUp\",\r\n\t\"IconTicTac\",\r\n\t\"IconTicketOff\",\r\n\t\"IconTicket\",\r\n\t\"IconTie\",\r\n\t\"IconTilde\",\r\n\t\"IconTiltShiftOff\",\r\n\t\"IconTiltShift\",\r\n\t\"IconTimeDuration0\",\r\n\t\"IconTimeDuration10\",\r\n\t\"IconTimeDuration15\",\r\n\t\"IconTimeDuration30\",\r\n\t\"IconTimeDuration45\",\r\n\t\"IconTimeDuration5\",\r\n\t\"IconTimeDuration60\",\r\n\t\"IconTimeDuration90\",\r\n\t\"IconTimeDurationOff\",\r\n\t\"IconTimelineEventExclamation\",\r\n\t\"IconTimelineEventMinus\",\r\n\t\"IconTimelineEventPlus\",\r\n\t\"IconTimelineEventText\",\r\n\t\"IconTimelineEventX\",\r\n\t\"IconTimelineEvent\",\r\n\t\"IconTimeline\",\r\n\t\"IconTir\",\r\n\t\"IconToggleLeft\",\r\n\t\"IconToggleRight\",\r\n\t\"IconToiletPaperOff\",\r\n\t\"IconToiletPaper\",\r\n\t\"IconToml\",\r\n\t\"IconTool\",\r\n\t\"IconToolsKitchen2Off\",\r\n\t\"IconToolsKitchen2\",\r\n\t\"IconToolsKitchenOff\",\r\n\t\"IconToolsKitchen\",\r\n\t\"IconToolsOff\",\r\n\t\"IconTools\",\r\n\t\"IconTooltip\",\r\n\t\"IconTopologyBus\",\r\n\t\"IconTopologyComplex\",\r\n\t\"IconTopologyFullHierarchy\",\r\n\t\"IconTopologyFull\",\r\n\t\"IconTopologyRing2\",\r\n\t\"IconTopologyRing3\",\r\n\t\"IconTopologyRing\",\r\n\t\"IconTopologyStar2\",\r\n\t\"IconTopologyStar3\",\r\n\t\"IconTopologyStarRing2\",\r\n\t\"IconTopologyStarRing3\",\r\n\t\"IconTopologyStarRing\",\r\n\t\"IconTopologyStar\",\r\n\t\"IconTorii\",\r\n\t\"IconTornado\",\r\n\t\"IconTournament\",\r\n\t\"IconTowerOff\",\r\n\t\"IconTower\",\r\n\t\"IconTrack\",\r\n\t\"IconTractor\",\r\n\t\"IconTrademark\",\r\n\t\"IconTrafficConeOff\",\r\n\t\"IconTrafficCone\",\r\n\t\"IconTrafficLightsOff\",\r\n\t\"IconTrafficLights\",\r\n\t\"IconTrain\",\r\n\t\"IconTransferIn\",\r\n\t\"IconTransferOut\",\r\n\t\"IconTransformFilled\",\r\n\t\"IconTransform\",\r\n\t\"IconTransitionBottom\",\r\n\t\"IconTransitionLeft\",\r\n\t\"IconTransitionRight\",\r\n\t\"IconTransitionTop\",\r\n\t\"IconTrashFilled\",\r\n\t\"IconTrashOff\",\r\n\t\"IconTrashXFilled\",\r\n\t\"IconTrashX\",\r\n\t\"IconTrash\",\r\n\t\"IconTreadmill\",\r\n\t\"IconTree\",\r\n\t\"IconTrees\",\r\n\t\"IconTrekking\",\r\n\t\"IconTrendingDown2\",\r\n\t\"IconTrendingDown3\",\r\n\t\"IconTrendingDown\",\r\n\t\"IconTrendingUp2\",\r\n\t\"IconTrendingUp3\",\r\n\t\"IconTrendingUp\",\r\n\t\"IconTriangleFilled\",\r\n\t\"IconTriangleInvertedFilled\",\r\n\t\"IconTriangleInverted\",\r\n\t\"IconTriangleOff\",\r\n\t\"IconTriangleSquareCircle\",\r\n\t\"IconTriangle\",\r\n\t\"IconTriangles\",\r\n\t\"IconTrident\",\r\n\t\"IconTrolley\",\r\n\t\"IconTrophyFilled\",\r\n\t\"IconTrophyOff\",\r\n\t\"IconTrophy\",\r\n\t\"IconTrowel\",\r\n\t\"IconTruckDelivery\",\r\n\t\"IconTruckLoading\",\r\n\t\"IconTruckOff\",\r\n\t\"IconTruckReturn\",\r\n\t\"IconTruck\",\r\n\t\"IconTxt\",\r\n\t\"IconTypographyOff\",\r\n\t\"IconTypography\",\r\n\t\"IconUfoOff\",\r\n\t\"IconUfo\",\r\n\t\"IconUmbrellaFilled\",\r\n\t\"IconUmbrellaOff\",\r\n\t\"IconUmbrella\",\r\n\t\"IconUnderline\",\r\n\t\"IconUnlink\",\r\n\t\"IconUpload\",\r\n\t\"IconUrgent\",\r\n\t\"IconUsb\",\r\n\t\"IconUserBolt\",\r\n\t\"IconUserCancel\",\r\n\t\"IconUserCheck\",\r\n\t\"IconUserCircle\",\r\n\t\"IconUserCode\",\r\n\t\"IconUserCog\",\r\n\t\"IconUserDollar\",\r\n\t\"IconUserDown\",\r\n\t\"IconUserEdit\",\r\n\t\"IconUserExclamation\",\r\n\t\"IconUserHeart\",\r\n\t\"IconUserMinus\",\r\n\t\"IconUserOff\",\r\n\t\"IconUserPause\",\r\n\t\"IconUserPin\",\r\n\t\"IconUserPlus\",\r\n\t\"IconUserQuestion\",\r\n\t\"IconUserSearch\",\r\n\t\"IconUserShare\",\r\n\t\"IconUserShield\",\r\n\t\"IconUserStar\",\r\n\t\"IconUserUp\",\r\n\t\"IconUserX\",\r\n\t\"IconUser\",\r\n\t\"IconUsersGroup\",\r\n\t\"IconUsersMinus\",\r\n\t\"IconUsersPlus\",\r\n\t\"IconUsers\",\r\n\t\"IconUvIndex\",\r\n\t\"IconUxCircle\",\r\n\t\"IconVaccineBottleOff\",\r\n\t\"IconVaccineBottle\",\r\n\t\"IconVaccineOff\",\r\n\t\"IconVaccine\",\r\n\t\"IconVacuumCleaner\",\r\n\t\"IconVariableMinus\",\r\n\t\"IconVariableOff\",\r\n\t\"IconVariablePlus\",\r\n\t\"IconVariable\",\r\n\t\"IconVectorBezier2\",\r\n\t\"IconVectorBezierArc\",\r\n\t\"IconVectorBezierCircle\",\r\n\t\"IconVectorBezier\",\r\n\t\"IconVectorOff\",\r\n\t\"IconVectorSpline\",\r\n\t\"IconVectorTriangleOff\",\r\n\t\"IconVectorTriangle\",\r\n\t\"IconVector\",\r\n\t\"IconVenus\",\r\n\t\"IconVersionsFilled\",\r\n\t\"IconVersionsOff\",\r\n\t\"IconVersions\",\r\n\t\"IconVideoMinus\",\r\n\t\"IconVideoOff\",\r\n\t\"IconVideoPlus\",\r\n\t\"IconVideo\",\r\n\t\"IconView360Off\",\r\n\t\"IconView360\",\r\n\t\"IconViewfinderOff\",\r\n\t\"IconViewfinder\",\r\n\t\"IconViewportNarrow\",\r\n\t\"IconViewportWide\",\r\n\t\"IconVinyl\",\r\n\t\"IconVipOff\",\r\n\t\"IconVip\",\r\n\t\"IconVirusOff\",\r\n\t\"IconVirusSearch\",\r\n\t\"IconVirus\",\r\n\t\"IconVocabularyOff\",\r\n\t\"IconVocabulary\",\r\n\t\"IconVolcano\",\r\n\t\"IconVolume2\",\r\n\t\"IconVolume3\",\r\n\t\"IconVolumeOff\",\r\n\t\"IconVolume\",\r\n\t\"IconWalk\",\r\n\t\"IconWallOff\",\r\n\t\"IconWall\",\r\n\t\"IconWalletOff\",\r\n\t\"IconWallet\",\r\n\t\"IconWallpaperOff\",\r\n\t\"IconWallpaper\",\r\n\t\"IconWandOff\",\r\n\t\"IconWand\",\r\n\t\"IconWashDry1\",\r\n\t\"IconWashDry2\",\r\n\t\"IconWashDry3\",\r\n\t\"IconWashDryA\",\r\n\t\"IconWashDryDip\",\r\n\t\"IconWashDryF\",\r\n\t\"IconWashDryFlat\",\r\n\t\"IconWashDryHang\",\r\n\t\"IconWashDryOff\",\r\n\t\"IconWashDryP\",\r\n\t\"IconWashDryShade\",\r\n\t\"IconWashDryW\",\r\n\t\"IconWashDry\",\r\n\t\"IconWashDrycleanOff\",\r\n\t\"IconWashDryclean\",\r\n\t\"IconWashEco\",\r\n\t\"IconWashGentle\",\r\n\t\"IconWashHand\",\r\n\t\"IconWashMachine\",\r\n\t\"IconWashOff\",\r\n\t\"IconWashPress\",\r\n\t\"IconWashTemperature1\",\r\n\t\"IconWashTemperature2\",\r\n\t\"IconWashTemperature3\",\r\n\t\"IconWashTemperature4\",\r\n\t\"IconWashTemperature5\",\r\n\t\"IconWashTemperature6\",\r\n\t\"IconWashTumbleDry\",\r\n\t\"IconWashTumbleOff\",\r\n\t\"IconWash\",\r\n\t\"IconWaterpolo\",\r\n\t\"IconWaveSawTool\",\r\n\t\"IconWaveSine\",\r\n\t\"IconWaveSquare\",\r\n\t\"IconWebhookOff\",\r\n\t\"IconWebhook\",\r\n\t\"IconWeight\",\r\n\t\"IconWheelchairOff\",\r\n\t\"IconWheelchair\",\r\n\t\"IconWhirl\",\r\n\t\"IconWifi0\",\r\n\t\"IconWifi1\",\r\n\t\"IconWifi2\",\r\n\t\"IconWifiOff\",\r\n\t\"IconWifi\",\r\n\t\"IconWindOff\",\r\n\t\"IconWind\",\r\n\t\"IconWindmillFilled\",\r\n\t\"IconWindmillOff\",\r\n\t\"IconWindmill\",\r\n\t\"IconWindowMaximize\",\r\n\t\"IconWindowMinimize\",\r\n\t\"IconWindowOff\",\r\n\t\"IconWindow\",\r\n\t\"IconWindsock\",\r\n\t\"IconWiperWash\",\r\n\t\"IconWiper\",\r\n\t\"IconWoman\",\r\n\t\"IconWood\",\r\n\t\"IconWorldBolt\",\r\n\t\"IconWorldCancel\",\r\n\t\"IconWorldCheck\",\r\n\t\"IconWorldCode\",\r\n\t\"IconWorldCog\",\r\n\t\"IconWorldDollar\",\r\n\t\"IconWorldDown\",\r\n\t\"IconWorldDownload\",\r\n\t\"IconWorldExclamation\",\r\n\t\"IconWorldHeart\",\r\n\t\"IconWorldLatitude\",\r\n\t\"IconWorldLongitude\",\r\n\t\"IconWorldMinus\",\r\n\t\"IconWorldOff\",\r\n\t\"IconWorldPause\",\r\n\t\"IconWorldPin\",\r\n\t\"IconWorldPlus\",\r\n\t\"IconWorldQuestion\",\r\n\t\"IconWorldSearch\",\r\n\t\"IconWorldShare\",\r\n\t\"IconWorldStar\",\r\n\t\"IconWorldUp\",\r\n\t\"IconWorldUpload\",\r\n\t\"IconWorldWww\",\r\n\t\"IconWorldX\",\r\n\t\"IconWorld\",\r\n\t\"IconWreckingBall\",\r\n\t\"IconWritingOff\",\r\n\t\"IconWritingSignOff\",\r\n\t\"IconWritingSign\",\r\n\t\"IconWriting\",\r\n\t\"IconX\",\r\n\t\"IconXboxA\",\r\n\t\"IconXboxB\",\r\n\t\"IconXboxX\",\r\n\t\"IconXboxY\",\r\n\t\"IconXd\",\r\n\t\"IconYinYangFilled\",\r\n\t\"IconYinYang\",\r\n\t\"IconYoga\",\r\n\t\"IconZeppelinOff\",\r\n\t\"IconZeppelin\",\r\n\t\"IconZip\",\r\n\t\"IconZodiacAquarius\",\r\n\t\"IconZodiacAries\",\r\n\t\"IconZodiacCancer\",\r\n\t\"IconZodiacCapricorn\",\r\n\t\"IconZodiacGemini\",\r\n\t\"IconZodiacLeo\",\r\n\t\"IconZodiacLibra\",\r\n\t\"IconZodiacPisces\",\r\n\t\"IconZodiacSagittarius\",\r\n\t\"IconZodiacScorpio\",\r\n\t\"IconZodiacTaurus\",\r\n\t\"IconZodiacVirgo\",\r\n\t\"IconZoomCancel\",\r\n\t\"IconZoomCheckFilled\",\r\n\t\"IconZoomCheck\",\r\n\t\"IconZoomCode\",\r\n\t\"IconZoomExclamation\",\r\n\t\"IconZoomFilled\",\r\n\t\"IconZoomInAreaFilled\",\r\n\t\"IconZoomInArea\",\r\n\t\"IconZoomInFilled\",\r\n\t\"IconZoomIn\",\r\n\t\"IconZoomMoney\",\r\n\t\"IconZoomOutArea\",\r\n\t\"IconZoomOutFilled\",\r\n\t\"IconZoomOut\",\r\n\t\"IconZoomPan\",\r\n\t\"IconZoomQuestion\",\r\n\t\"IconZoomReplace\",\r\n\t\"IconZoomReset\",\r\n\t\"IconZzzOff\",\r\n\t\"IconZzz\"\r\n] as const\r\n\r\nexport type TablerIconName = (typeof tablerIconNames)[number]\r\n", "import React from \"react\"\r\nimport { TablerIconName } from \"./tablerIconNames\"\r\nimport * as TablerIcons from \"@tabler/icons-react\"\r\nimport { ClassNameWithAutocomplete } from \"@/utils/types\"\r\n\r\nexport interface ITablerIconProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {\r\n\ticon: TablerIconName\r\n\tclassName?: ClassNameWithAutocomplete\r\n}\r\n\r\nconst TablerIcon: React.FC<ITablerIconProps> = ({\r\n\ticon,\r\n\tclassName = \"w-6 h-6 text-gray-600\"\r\n}: ITablerIconProps): JSX.Element => {\r\n\tconst Icon = TablerIcons[icon]\r\n\treturn (\r\n\t\t<i>\r\n\t\t\t<Icon className={className} />\r\n\t\t</i>\r\n\t)\r\n}\r\nexport default TablerIcon\r\n", "import { DynamicIcon } from \"./DynamicIcon\"\r\nimport { default as cn } from \"classnames\"\r\nimport { IDynamicIconProps } from \"./DynamicIcon\"\r\n\r\nexport interface IIconWithShadowProps extends IDynamicIconProps {}\r\n\r\nconst IconWithShadow: React.FC<IIconWithShadowProps> = (props) => {\r\n\treturn (\r\n\t\t<div className=\"flex flex-col items-center justify-center \">\r\n\t\t\t<DynamicIcon {...{ ...props, className: cn(\"h-12 w-12 text-gray-400\") }} outline />\r\n\t\t\t<div className={cn(\"mt-2 h-2 w-24 bg-gray-100\")} style={{ borderRadius: \"40%\" }} />\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default IconWithShadow\r\n", "import Badge, { IBadgeProps } from \"./Badge\"\r\nexport default Badge\r\nexport type { IBadgeProps }\r\n", "import Loader from \"stories/atoms/loaders/Loader\"\r\nimport { default as cn } from \"classnames\"\r\nimport React, { HTMLAttributeAnchorTarget, forwardRef } from \"react\"\r\nimport { DynamicIcon, UnifiedIconName, IDynamicIconProps } from \"../../icons\"\r\n\r\n// import Loader from \"../loaders/loader/Loader\"\r\n\r\nexport type BTNActionType = \"primary\" | \"secondary\" | \"alternative\" | \"danger\"\r\n\r\nexport interface IButtonProps\r\n\textends Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, \"ref\"> {\r\n\t/** Is the button a Primary CTA, alternative or danger button? */\r\n\tactionType?: BTNActionType\r\n\t/** How lg should the button be? - Defaults to 'base'. */\r\n\tsize?: \"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\"\r\n\t/** The Button's text content. */\r\n\tlabel: string\r\n\t/** The Icon to be displayed inside the button. */\r\n\ticon?: IDynamicIconProps | UnifiedIconName\r\n\t/** Does the button width grow to fill it's container? */\r\n\tfullWidth?: boolean\r\n\t/** Optionally render as anchor tag */\r\n\tasLink?: {\r\n\t\thref: string\r\n\t\ttarget: HTMLAttributeAnchorTarget\r\n\t\ttitle?: string\r\n\t}\r\n\t/** The placement of the icon relative to the text content. */\r\n\ticonPosition?: \"trailing\" | \"leading\"\r\n\t/** Use an custom svg element */\r\n\tCustomSVGIcon?: JSX.Element\r\n\t/** Is the associated content loading? */\r\n\tisLoading?: boolean\r\n\tclassName?: string\r\n\ticonObj?: React.ReactNode\r\n}\r\n/**\r\n * Primary UI component for user interaction\r\n */\r\nconst _Button = (\r\n\t{\r\n\t\tactionType = \"primary\",\r\n\t\tsize = \"sm\",\r\n\t\tlabel,\r\n\t\ticon,\r\n\t\ticonObj,\r\n\t\tCustomSVGIcon,\r\n\t\tfullWidth = false,\r\n\t\ticonPosition = \"leading\",\r\n\t\tasLink,\r\n\t\tisLoading = false,\r\n\t\tclassName,\r\n\t\t...props\r\n\t}: IButtonProps,\r\n\tref: React.LegacyRef<HTMLButtonElement>\r\n) => {\r\n\tconst iconStyles = cn(\r\n\t\t{ \"text-white h-5 w-5\": actionType === \"primary\" || actionType === \"danger\" },\r\n\t\t{ \"text-purple-700 h-5 w-5 \": actionType === \"secondary\" },\r\n\t\t{ \"text-gray-700 h-5 w-5\": actionType === \"alternative\" }\r\n\t)\r\n\tconst loaderColors = cn(\r\n\t\t{ \"border-r-white\": actionType === \"primary\" },\r\n\t\t{ \"border-purple-200 border-r-purple-700\": actionType === \"secondary\" },\r\n\t\t{ \"border-gray-200 border-r-gray-700\": actionType === \"alternative\" },\r\n\t\t{ \"border-red-800 border-r-white\": actionType === \"danger\" }\r\n\t)\r\n\tconst loaderSize = cn({ \"h-4 w-4\": size === \"sm\" }, { \"h-5 w-5\": size === \"md\" }, { \"h-6 w-6 \": size === \"lg\" })\r\n\r\n\treturn asLink ? (\r\n\t\t//@ts-ignore\r\n\t\t<a\r\n\t\t\t{...{\r\n\t\t\t\thref: asLink.href,\r\n\t\t\t\ttarget: asLink.target,\r\n\t\t\t\ttitle: asLink.title,\r\n\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\"inline-flex items-center justify-center gap-x-2 font-medium rounded-[3px] !ring-offset-white outline-none focus-visible:ring-2 focus-visible:ring-purple-600 focus-visible:ring-offset-2 focus-within:ring-2 focus-within:ring-purple-600 focus-within:ring-offset-2 focus:ring-2 focus:ring-purple-600 focus:ring-offset-2 active:ring-2 active:ring-purple-600 active:ring-offset-2 transition-all\",\r\n\t\t\t\t\t{ \"w-full\": fullWidth },\r\n\t\t\t\t\t{ \"px-[11px] py-[7px] text-xs\": size === \"xs\" },\r\n\t\t\t\t\t{ \"px-[13px] py-[9px] text-sm\": size === \"sm\" },\r\n\t\t\t\t\t{ \"px-[17px] py-[9px] text-sm\": size === \"md\" },\r\n\t\t\t\t\t{ \"px-[17px] py-[9px] text-base\": size === \"lg\" },\r\n\t\t\t\t\t{ \"px-[25px] py-[13px] text-base\": size === \"xl\" },\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"bg-purple-600 text-white hover:border-purple-700 hover:bg-purple-700 disabled:bg-purple-400 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\t\tactionType === \"primary\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\" bg-purple-50 text-purple-700 hover:bg-purple-200 focus-within:bg-purple-100 focus-visible:bg-purple-100 focus:bg-purple-100 active:bg-purple-100 disabled:bg-purple-50 disabled:text-purple-300 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\t\tactionType === \"secondary\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"border-gray-300 bg-white border text-gray-700 hover:bg-gray-50 focus-visible:!border-gray-300 focus-within:!border-gray-300 focus:!border-gray-300 active:!border-gray-300 disabled:bg-gray-50 disabled:text-gray-300 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\t\tactionType === \"alternative\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\" bg-red-600 text-white hover:bg-red-700 <focus-visible:!></focus-visible:!>ring-red-500 focus:!ring-red-500 active:!ring-red-500 focus-within:!ring-red-500 disabled:bg-red-400 disabled:text-gray-50 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\t\tactionType === \"danger\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\tclassName ? className : \"\"\r\n\t\t\t\t),\r\n\t\t\t\tonClick: props.onClick\r\n\t\t\t}}\r\n\t\t>\r\n\t\t\t{\" \"}\r\n\t\t\t{CustomSVGIcon &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<i>{CustomSVGIcon}</i>\r\n\t\t\t\t))}\r\n\t\t\t{iconObj &&\r\n\t\t\t\ticonPosition === \"leading\" &&\r\n\t\t\t\t(!isLoading ? (\r\n\t\t\t\t\t<>{iconObj}</>\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t))}\r\n\t\t\t{icon &&\r\n\t\t\t\ticonPosition === \"leading\" &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : typeof icon === \"string\" ? (\r\n\t\t\t\t\t<DynamicIcon {...{ icon: icon, className: iconStyles }} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<DynamicIcon {...{ ...icon, className: iconStyles }} />\r\n\t\t\t\t))}\r\n\t\t\t{!icon && !CustomSVGIcon && isLoading && (\r\n\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t)}\r\n\t\t\t{label}\r\n\t\t\t{icon &&\r\n\t\t\t\ticonPosition === \"trailing\" &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : typeof icon === \"string\" ? (\r\n\t\t\t\t\t<DynamicIcon {...{ icon: icon, className: iconStyles }} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<DynamicIcon {...{ ...icon, className: iconStyles }} />\r\n\t\t\t\t))}\r\n\t\t\t{iconObj &&\r\n\t\t\t\ticonPosition === \"trailing\" &&\r\n\t\t\t\t(!isLoading ? (\r\n\t\t\t\t\t<>{iconObj}</>\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t))}\r\n\t\t</a>\r\n\t) : (\r\n\t\t<button\r\n\t\t\ttype=\"button\"\r\n\t\t\tclassName={cn(\r\n\t\t\t\t\"inline-flex items-center justify-center gap-x-2 font-medium rounded-[3px] !ring-offset-white outline-none focus-visible:ring-2 focus-visible:ring-purple-600 focus-visible:ring-offset-2 focus-within:ring-2 focus-within:ring-purple-600 focus-within:ring-offset-2 focus:ring-2 focus:ring-purple-600 focus:ring-offset-2 active:ring-2 active:ring-purple-600 active:ring-offset-2 transition-all\",\r\n\t\t\t\t{ \"w-full\": fullWidth },\r\n\t\t\t\t{ \"px-[11px] py-[7px] text-xs\": size === \"xs\" },\r\n\t\t\t\t{ \"px-[13px] py-[9px] text-sm\": size === \"sm\" },\r\n\t\t\t\t{ \"px-[17px] py-[9px] text-sm\": size === \"md\" },\r\n\t\t\t\t{ \"px-[17px] py-[9px] text-base\": size === \"lg\" },\r\n\t\t\t\t{ \"px-[25px] py-[13px] text-base\": size === \"xl\" },\r\n\t\t\t\t{\r\n\t\t\t\t\t\"bg-purple-600 text-white hover:border-purple-700 hover:bg-purple-700 disabled:bg-purple-400 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\tactionType === \"primary\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\" bg-purple-50 text-purple-700 hover:bg-purple-200 focus-within:bg-purple-100 focus-visible:bg-purple-100 focus:bg-purple-100 active:bg-purple-100 disabled:bg-purple-50 disabled:text-purple-300 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\tactionType === \"secondary\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"border-gray-300 bg-white border text-gray-700 hover:bg-gray-50 focus-visible:!border-gray-300 focus-within:!border-gray-300 focus:!border-gray-300 active:!border-gray-300 disabled:bg-gray-50 disabled:text-gray-300 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\tactionType === \"alternative\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\" bg-red-600 text-white hover:bg-red-700 <focus-visible:!></focus-visible:!>ring-red-500 focus:!ring-red-500 active:!ring-red-500 focus-within:!ring-red-500 disabled:bg-red-400 disabled:text-gray-50 disabled:focus-visible:ring-0\":\r\n\t\t\t\t\t\tactionType === \"danger\"\r\n\t\t\t\t},\r\n\t\t\t\tclassName ? className : \"\"\r\n\t\t\t)}\r\n\t\t\tref={ref}\r\n\t\t\t{...props}\r\n\t\t>\r\n\t\t\t{CustomSVGIcon &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<i>{CustomSVGIcon}</i>\r\n\t\t\t\t))}\r\n\t\t\t{iconObj &&\r\n\t\t\t\ticonPosition === \"leading\" &&\r\n\t\t\t\t(!isLoading ? (\r\n\t\t\t\t\t<>{iconObj}</>\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t))}\r\n\r\n\t\t\t{icon &&\r\n\t\t\t\ticonPosition === \"leading\" &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : typeof icon === \"string\" ? (\r\n\t\t\t\t\t<DynamicIcon {...{ icon: icon, className: iconStyles }} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<DynamicIcon {...{ ...icon, className: iconStyles }} />\r\n\t\t\t\t))}\r\n\r\n\t\t\t{!icon && !CustomSVGIcon && isLoading && (\r\n\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t)}\r\n\t\t\t{label}\r\n\t\t\t{icon &&\r\n\t\t\t\ticonPosition === \"trailing\" &&\r\n\t\t\t\t(isLoading ? (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t) : typeof icon === \"string\" ? (\r\n\t\t\t\t\t<DynamicIcon {...{ icon: icon, className: iconStyles }} />\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<DynamicIcon {...{ ...icon, className: iconStyles }} />\r\n\t\t\t\t))}\r\n\t\t\t{iconObj &&\r\n\t\t\t\ticonPosition === \"trailing\" &&\r\n\t\t\t\t(!isLoading ? (\r\n\t\t\t\t\t<>{iconObj}</>\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<div className={cn(\"h-4 rounded-full w-4 border-2 m-0 animate-spin\", loaderColors, loaderSize)} />\r\n\t\t\t\t))}\r\n\t\t</button>\r\n\t)\r\n}\r\n\r\nconst Button = forwardRef<HTMLButtonElement, IButtonProps>(_Button)\r\n\r\nexport default Button\r\n", "import Button, { IButtonProps, BTNActionType } from \"./Button\"\r\nexport type { IButtonProps, BTNActionType }\r\nexport default Button\r\n", "import { default as cn } from \"classnames\"\r\nimport { HTMLAttributeAnchorTarget } from \"react\"\r\nimport { BTNActionType, IButtonProps } from \"../Button/Button\"\r\nimport { UnifiedIconName } from \"../../icons/DynamicIcon\"\r\n\r\n/**\r\n * Capsule Style Button\r\n */\r\nexport interface ICapsuleProps\r\n\textends React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {\r\n\t/** Is the button a Primary CTA, alternative or danger button? */\r\n\tactionType: BTNActionType\r\n\t/** How lg should the button be? - Defaults to 'base'. */\r\n\tsize?: \"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\"\r\n\t/** The Button's text content. */\r\n\tlabel: string\r\n\t/** Does the button width grow to fill it's container? */\r\n\tfullWidth?: boolean\r\n\t/** Optionally render as anchor tag */\r\n\tasLink?: {\r\n\t\thref: string\r\n\t\ttarget: HTMLAttributeAnchorTarget\r\n\t\ttitle?: string\r\n\t}\r\n\t/** Is the associated content loading? */\r\n\tisLoading?: boolean\r\n\t/**Optional Classname String*/\r\n\tclassName?: string\r\n}\r\nconst Capsule = ({\r\n\tactionType = \"primary\",\r\n\tsize = \"sm\",\r\n\tlabel,\r\n\tfullWidth = false,\r\n\tasLink,\r\n\tisLoading = false,\r\n\tclassName,\r\n\t...props\r\n}: ICapsuleProps) => {\r\n\tconst iconStyles = cn(\r\n\t\t{ \"text-white\": actionType === \"primary\" || actionType === \"danger\" },\r\n\t\t{ \"text-purple-700\": actionType === \"secondary\" },\r\n\t\t{ \"text-gray-700\": actionType === \"alternative\" }\r\n\t)\r\n\tconst loaderColors = cn(\r\n\t\t{ \"border-r-white\": actionType === \"primary\" },\r\n\t\t{ \"border-purple-200 border-r-purple-700\": actionType === \"secondary\" },\r\n\t\t{ \"border-gray-200 border-r-gray-700\": actionType === \"alternative\" },\r\n\t\t{ \"border-red-800 border-r-white\": actionType === \"danger\" }\r\n\t)\r\n\tconst loaderSize = cn({ \"h-4 w-4\": size === \"sm\" }, { \"h-5 w-5\": size === \"md\" }, { \"h-6 w-6 \": size === \"lg\" })\r\n\r\n\treturn (\r\n\t\t<button\r\n\t\t\ttype=\"button\"\r\n\t\t\tclassName={cn(\r\n\t\t\t\t\"inline-flex items-center justify-center gap-x-2 text-sm font-medium p-2 !ring-offset-white outline-none focus-visible:ring-2 focus-visible:ring-purple-600 focus-visible:ring-offset-2 focus-within:ring-2 focus-within:ring-purple-600 focus-within:ring-offset-2 focus:ring-2 focus:ring-purple-600 focus:ring-offset-2 active:ring-2 active:ring-purple-600 active:ring-offset-2 transition-all\",\r\n\t\t\t\t{ \"w-full\": fullWidth },\r\n\t\t\t\t{ \"px-[11px] py-[7px] text-xs rounded-[15px]\": size === \"xs\" },\r\n\t\t\t\t{ \"px-[15px] py-[9px] text-sm rounded-[17px]\": size === \"sm\" },\r\n\t\t\t\t{ \"px-[17px] py-[9px] text-sm rounded-[19px]\": size === \"md\" },\r\n\t\t\t\t{ \"px-[17px] py-[9px] text-base rounded-[21px]\": size === \"lg\" },\r\n\t\t\t\t{ \"px-[25px] py-[13px] text-base rounded-[25px]\": size === \"xl\" },\r\n\t\t\t\t{\r\n\t\t\t\t\t\"bg-purple-600 text-white hover:border-purple-700 hover:bg-purple-700 \": actionType === \"primary\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\" bg-purple-50 text-purple-700 hover:bg-purple-200 focus-within:bg-purple-100 focus-visible:bg-purple-100 focus:bg-purple-100 active:bg-purple-100\":\r\n\t\t\t\t\t\tactionType === \"secondary\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"border-gray-300 bg-white border text-gray-700 hover:bg-gray-50 focus-visible:!border-gray-300 focus-within:!border-gray-300 focus:!border-gray-300 active:!border-gray-300\":\r\n\t\t\t\t\t\tactionType === \"alternative\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\" bg-red-600 text-white hover:bg-red-700 <focus-visible:!></focus-visible:!>ring-red-500 focus:!ring-red-500 active:!ring-red-500 focus-within:!ring-red-500 \":\r\n\t\t\t\t\t\tactionType === \"danger\"\r\n\t\t\t\t},\r\n\t\t\t\tclassName ? className : \"\"\r\n\t\t\t)}\r\n\t\t\t{...props}\r\n\t\t>\r\n\t\t\t{label}\r\n\t\t</button>\r\n\t)\r\n}\r\n\r\nexport default Capsule\r\n", "import Capsule, { ICapsuleProps } from \"./Capsule\"\r\nexport default Capsule\r\nexport type { ICapsuleProps }\r\n", "import React from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport interface ILoaderProps {\r\n\tclassName?: string\r\n}\r\nconst Loader: React.FC<ILoaderProps> = ({ className }) => {\r\n\treturn (\r\n\t\t<>\r\n\t\t\t<i\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"rounded-full w-16 h-16 inline-block border-8 animate-spin m-auto\",\r\n\t\t\t\t\tclassName ? className : \"border-purple-700 border-r-gray-200\"\r\n\t\t\t\t)}\r\n\t\t\t\trole=\"status\"\r\n\t\t\t/>\r\n\t\t</>\r\n\t)\r\n}\r\n\r\nexport default Loader\r\n", "import React, { useMemo } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nexport interface IRadialProgressProps extends React.PropsWithChildren {\r\n\t/** Percentage value to display */\r\n\tinputValue: number\r\n\t/** Radius for the circle - Max value of 100 */\r\n\tradius: number\r\n\t/** Additional classnames */\r\n\tclassName?: string\r\n}\r\n\r\nconst RadialProgress: React.FC<IRadialProgressProps> = ({\r\n inputValue,\r\n radius,\r\n children,\r\n className,\r\n}) => {\r\n const r = radius / 2\r\n\r\n if (inputValue < 0) {\r\n inputValue = 0\r\n }\r\n if (inputValue > 100) {\r\n inputValue = 100\r\n }\r\n if (radius < 0) {\r\n radius = 0\r\n }\r\n if (radius > 100) {\r\n radius = 100\r\n }\r\n const drawPercentage = useMemo(() => {\r\n const roundCircum = Math.round(2 * r * Math.PI)\r\n return (inputValue * roundCircum) / 50\r\n }, [inputValue, r])\r\n\r\n const xyPos = (radius + 2) * -1\r\n const viewPortXY = (radius + 2) * 2\r\n return (\r\n <div\r\n className={cn(`overflow-visible`, className && className)}\r\n style={{ height: `${viewPortXY}px`, width: `${viewPortXY}px` }}\r\n >\r\n <svg\r\n viewBox={`${xyPos} ${xyPos} ${viewPortXY} ${viewPortXY}`}\r\n data-percent={drawPercentage}\r\n fill=\"none\"\r\n >\r\n <circle\r\n className=\"-rotate-90 stroke-gray-200 stroke-1\"\r\n cx={0}\r\n cy={0}\r\n r={radius}\r\n ></circle>\r\n <circle\r\n strokeDasharray={`${drawPercentage} 999`}\r\n className=\"m-1 -rotate-90 stroke-purple-600 stroke-1 transition-all\"\r\n cx={0}\r\n cy={0}\r\n r={radius}\r\n ></circle>\r\n </svg>\r\n <div\r\n className={cn(\r\n `h-[${viewPortXY}px] w-[${viewPortXY}px] absolute inset-0 flex items-center justify-center overflow-hidden `\r\n )}\r\n >\r\n {children}\r\n </div>\r\n </div>\r\n )\r\n}\r\n\r\nexport default RadialProgress\r\n", "import RadialProgress, { IRadialProgressProps } from \"./RadialProgress\"\r\nexport default RadialProgress\r\nexport type { IRadialProgressProps }\r\n", "import React, { FC } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport InputLabel from \"@/stories/molecules/inputs/InputLabel\"\r\nimport { useId } from \"@/utils/useId\"\r\n\r\nexport interface ICheckboxProps {\r\n\t/** Checkbox label */\r\n\tlabel: string\r\n\t/** Checkbox ID */\r\n\tid?: string\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** value */\r\n\tvalue?: string\r\n\t/** Check state */\r\n\tisChecked?: boolean\r\n\t/** If field is required */\r\n\tisRequired?: boolean\r\n\t/** Error state */\r\n\tisError?: boolean\r\n\t/** Message or description */\r\n\tmessage?: string\r\n\t/** Callback on input change */\r\n\tonChange?(value: string, isChecked: boolean): void\r\n\t/** Has a border around the checkbox and label */\r\n\thasBorder?: boolean\r\n\t/** any arbitrary classNames to add to the wrapper */\r\n\tclassName?: string\r\n}\r\n\r\n/** Comment */\r\nconst Checkbox: FC<ICheckboxProps> = ({\r\n\tlabel,\r\n\tid,\r\n\tisDisabled,\r\n\tisChecked,\r\n\tisRequired,\r\n\tisError,\r\n\tmessage,\r\n\tvalue,\r\n\tonChange,\r\n\thasBorder,\r\n\tclassName,\r\n\t...props\r\n}: ICheckboxProps) => {\r\n\tconst uniqueID = useId()\r\n\tif (!id) id = `cb-${uniqueID}`\r\n\r\n\tconst checkboxStyles = cn(\r\n\t\t\"rounded-sm border-gray-300 text-sm font-normal leading-5 text-purple-600 focus:ring-purple-600\",\r\n\t\t{ \"border-red-500 shadow-none\": isError }\r\n\t)\r\n\tconst wrapperStyles = cn(\r\n\t\t\"relative flex items-center min-h-[38px]\",\r\n\t\t{ \"opacity-50\": isDisabled },\r\n\t\t{ \"rounded-sm border border-1 px-3 border-gray-200\": hasBorder },\r\n\t\t{ \"py-3\": hasBorder && message },\r\n\t\tclassName\r\n\t)\r\n\r\n\tconst handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {\r\n\t\tconst targetValue = e.target.value\r\n\t\tconst targetChecked = e.target.checked\r\n\t\ttypeof onChange === \"function\" && onChange(targetValue, targetChecked)\r\n\t}\r\n\r\n\treturn (\r\n\t\t<div className={wrapperStyles}>\r\n\t\t\t<div className=\"flex items-center\">\r\n\t\t\t\t<input\r\n\t\t\t\t\tid={id}\r\n\t\t\t\t\taria-describedby={`${id}-description`}\r\n\t\t\t\t\tname={id}\r\n\t\t\t\t\tvalue={value}\r\n\t\t\t\t\ttype=\"checkbox\"\r\n\t\t\t\t\tclassName={checkboxStyles}\r\n\t\t\t\t\tdisabled={isDisabled}\r\n\t\t\t\t\tchecked={isChecked}\r\n\t\t\t\t\tonChange={(e) => {\r\n\t\t\t\t\t\thandleChange(e)\r\n\t\t\t\t\t}}\r\n\t\t\t\t\t{...props}\r\n\t\t\t\t/>\r\n\t\t\t</div>\r\n\t\t\t<div className=\"ml-3 text-sm \">\r\n\t\t\t\t<label htmlFor={id} className=\"font-medium text-gray-700\">\r\n\t\t\t\t\t<InputLabel label={label} isRequired={isRequired} id={id} />\r\n\t\t\t\t</label>\r\n\t\t\t\t{message && (\r\n\t\t\t\t\t<p id={`${id}-description`} className=\"text-gray-500\">\r\n\t\t\t\t\t\t{message}\r\n\t\t\t\t\t</p>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\nexport default Checkbox\r\n", "import React, { FC } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport interface IInputLabelProps {\r\n\t/** Prop comment */\r\n\tisPlaceholder?: boolean\r\n\tid: string\r\n\tisRequired?: boolean\r\n\tisDisabled?: boolean\r\n\tisError?: boolean\r\n\tisActive?: boolean\r\n\tisFocused?: boolean\r\n\tlabel?: string\r\n}\r\n\r\n/** Comment */\r\nconst InputLabel: FC<IInputLabelProps> = ({\r\n\tisPlaceholder = false,\r\n\tid,\r\n\tisRequired,\r\n\tisDisabled,\r\n\tisActive,\r\n\tisError,\r\n\tlabel\r\n}: IInputLabelProps) => {\r\n\tconst labelStyles = cn(\r\n\t\t\"z-[2]\",\r\n\t\t{ \"inline-block font-medium transition-all text-sm text-gray-700 mb-1\": !isPlaceholder },\r\n\t\t{ \"inline-block font-medium ml-2 relative transition-all\": isPlaceholder },\r\n\t\t{ \"text-sm text-gray-400 px-2 top-8\": isPlaceholder && !isActive },\r\n\t\t{ \"text-xs text-gray-700 px-1 top-[10px] bg-white\": isPlaceholder && isActive },\r\n\t\t{ \"text-xs text-red-500 px-1 top-[10px] bg-white\": isPlaceholder && isError },\r\n\t\t{ \"text-red-500 bg-white\": !isPlaceholder && isError },\r\n\t\t{ \"text-gray-700/[.5]\": isDisabled }\r\n\t)\r\n\tif (!label) return null\r\n\treturn (\r\n\t\t<label htmlFor={id} className={labelStyles}>\r\n\t\t\t{label}\r\n\t\t\t{isRequired && <span className=\"text-red-500\"> *</span>}\r\n\t\t</label>\r\n\t)\r\n}\r\n\r\nexport default InputLabel\r\n", "import InputLabel, { IInputLabelProps } from \"./InputLabel\"\r\nexport type { IInputLabelProps }\r\nexport default InputLabel\r\n", "import { useLayoutEffect, useState } from \"react\"\r\n\r\nlet id = 0\r\nfunction generateId() {\r\n\treturn ++id\r\n}\r\n\r\nexport const useId = () => {\r\n\tconst [id, setId] = useState(generateId)\r\n\r\n\tuseLayoutEffect(() => {\r\n\t\tif (id === null) setId(generateId())\r\n\t}, [id])\r\n\r\n\treturn id != null ? \"\" + id : undefined\r\n}\r\n", "import Checkbox, { ICheckboxProps } from \"./Checkbox\"\r\nexport type { ICheckboxProps }\r\nexport default Checkbox\r\n", "import React, { useState, useEffect } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport { Combobox as HeadlessUICombobox } from \"@headlessui/react\"\r\nimport InputLabel from \"@/stories/molecules/inputs/InputLabel\"\r\nimport { DynamicIcon } from \"@/stories/atoms/icons\"\r\n\r\nexport interface IComboboxProps<T extends Record<string, unknown>> {\r\n\t/** Label */\r\n\tlabel?: string\r\n\t/** ID */\r\n\tid: string\r\n\t/** Array of items to display */\r\n\titems: T[]\r\n\t/** the item property to use as the key */\r\n\tkeyProperty: string\r\n\r\n\t/** the item property to use as the display */\r\n\tdisplayProperty: string\r\n\t/** Placeholder */\r\n\tplaceholder?: string\r\n\t/** Callback to trigger on change */\r\n\tonChange?(value: T | undefined): void\r\n\t/** Select disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Select error state */\r\n\tisError?: boolean\r\n\t/** Select required state */\r\n\tisRequired?: boolean\r\n\t/** Message shown under field */\r\n\tmessage?: string\r\n\r\n\tdisplayValue?: string\r\n\r\n\t/**\r\n\t * Whether this item is nullable or not.\r\n\t *\r\n\t * @type {boolean}\r\n\t * @memberof ComboboxProps\r\n\t */\r\n\tnullable?: boolean\r\n}\r\n\r\nfunction classNames(...classes: string[]) {\r\n\treturn classes.filter(Boolean).join(\" \")\r\n}\r\n\r\nconst Combobox = <T extends Record<string, unknown>>({\r\n\tlabel,\r\n\titems,\r\n\tdisplayProperty,\r\n\tdisplayValue,\r\n\tkeyProperty,\r\n\tonChange,\r\n\tplaceholder,\r\n\tmessage,\r\n\tisDisabled,\r\n\tisError,\r\n\tisRequired,\r\n\tid,\r\n\tnullable\r\n}: IComboboxProps<T>) => {\r\n\tconst [query, setQuery] = useState<string>(\"\")\r\n\tconst [selectedItem, setSelectedItem] = useState<T | undefined>()\r\n\r\n\tconst onChangeValue = (value: T | undefined) => {\r\n\t\tif (value && selectedItem && value[keyProperty] === selectedItem[keyProperty]) {\r\n\t\t\tsetSelectedItem(undefined)\r\n\t\t} else {\r\n\t\t\tsetSelectedItem(value)\r\n\t\t}\r\n\t}\r\n\r\n\tuseEffect(() => {\r\n\t\tif (displayValue) {\r\n\t\t\tconst dv = items.find((i) => i[displayProperty] === displayValue)\r\n\t\t\tsetSelectedItem(dv)\r\n\t\t}\r\n\t}, [displayValue])\r\n\r\n\tuseEffect(() => {\r\n\t\ttypeof onChange === \"function\" && onChange(selectedItem)\r\n\t}, [selectedItem])\r\n\r\n\tconst filteredItems =\r\n\t\tquery === \"\"\r\n\t\t\t? items\r\n\t\t\t: items.filter((item) => {\r\n\t\t\t\t\treturn `${item[displayProperty]}`.toLowerCase().includes(query.toLowerCase())\r\n\t\t\t })\r\n\tconst labelStyles = cn(\"block text-sm font-medium text-gray-700\")\r\n\tconst buttonStyles = cn(\"absolute inset-y-0 right-0 flex items-center rounded-r px-2 focus:outline-none\")\r\n\tconst optionStyles = cn(\r\n\t\t\"absolute z-30 mt-1 max-h-60 w-full overflow-auto rounded bg-white py-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm\"\r\n\t)\r\n\treturn (\r\n\t\t<HeadlessUICombobox\r\n\t\t\tas=\"div\"\r\n\t\t\tvalue={selectedItem}\r\n\t\t\tonChange={(e: T | undefined) => onChangeValue(e)}\r\n\t\t\tdisabled={isDisabled}\r\n\t\t\tnullable={nullable ? undefined : false}\r\n\t\t>\r\n\t\t\t{label && (\r\n\t\t\t\t<HeadlessUICombobox.Label className={labelStyles}>\r\n\t\t\t\t\t<InputLabel\r\n\t\t\t\t\t\tisPlaceholder\r\n\t\t\t\t\t\tisActive\r\n\t\t\t\t\t\tlabel={label}\r\n\t\t\t\t\t\tisRequired={isRequired}\r\n\t\t\t\t\t\tid={id}\r\n\t\t\t\t\t\tisError={isError}\r\n\t\t\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\t\t/>\r\n\t\t\t\t</HeadlessUICombobox.Label>\r\n\t\t\t)}\r\n\t\t\t<div className=\"relative\">\r\n\t\t\t\t<div className=\"relative\">\r\n\t\t\t\t\t<HeadlessUICombobox.Input\r\n\t\t\t\t\t\tclassName={`w-full rounded border border-gray-300 focus:border-purple-500 focus:outline-none focus:ring-1 focus:ring-purple-500 sm:text-sm ${\r\n\t\t\t\t\t\t\tisError ? \"border-red-500\" : \"\"\r\n\t\t\t\t\t\t}`}\r\n\t\t\t\t\t\tonChange={(event) => setQuery(event.target.value)}\r\n\t\t\t\t\t\tdisplayValue={(item: Record<string, unknown>) => `${item ? item[displayProperty] : \"\"}`}\r\n\t\t\t\t\t\tplaceholder={placeholder}\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t{selectedItem && nullable && (\r\n\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\tclassName=\"absolute right-8 top-[1px] h-9 w-5 text-gray-400 hover:text-gray-500\"\r\n\t\t\t\t\t\t\tonClick={() => setSelectedItem(undefined)}\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<DynamicIcon icon=\"IconX\" className=\"h-4 w-4 \" aria-hidden=\"true\" />\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t)}\r\n\t\t\t\t</div>\r\n\t\t\t\t<HeadlessUICombobox.Button className={buttonStyles}>\r\n\t\t\t\t\t<DynamicIcon icon=\"IconSelector\" className=\"h-5 w-5 text-gray-400\" aria-hidden=\"true\" />\r\n\t\t\t\t</HeadlessUICombobox.Button>\r\n\r\n\t\t\t\t{filteredItems.length > 0 && (\r\n\t\t\t\t\t<HeadlessUICombobox.Options className={optionStyles}>\r\n\t\t\t\t\t\t{filteredItems.map((item, index) => (\r\n\t\t\t\t\t\t\t<HeadlessUICombobox.Option\r\n\t\t\t\t\t\t\t\tkey={`${item[keyProperty]}-${index}`}\r\n\t\t\t\t\t\t\t\tvalue={item}\r\n\t\t\t\t\t\t\t\tclassName={({ active }) =>\r\n\t\t\t\t\t\t\t\t\tclassNames(\r\n\t\t\t\t\t\t\t\t\t\t\"relative cursor-default select-none py-2 pl-3 pr-9\",\r\n\t\t\t\t\t\t\t\t\t\tactive ? \"bg-purple-600 text-white\" : \"text-gray-900\"\r\n\t\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t{({ active, selected }) => (\r\n\t\t\t\t\t\t\t\t\t<>\r\n\t\t\t\t\t\t\t\t\t\t<span className={classNames(\"block truncate\", selected ? \"font-semibold\" : \"\")}>\r\n\t\t\t\t\t\t\t\t\t\t\t{`${item[displayProperty]}`}\r\n\t\t\t\t\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t\t\t\t\t\t\t{selected && (\r\n\t\t\t\t\t\t\t\t\t\t\t<span\r\n\t\t\t\t\t\t\t\t\t\t\t\tclassName={classNames(\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"absolute inset-y-0 right-0 flex items-center pr-4\",\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tactive ? \"text-white\" : \"text-purple-600\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<DynamicIcon icon=\"IconCheck\" className=\"h-5 w-5\" aria-hidden=\"true\" />\r\n\t\t\t\t\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t\t\t\t</>\r\n\t\t\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t\t</HeadlessUICombobox.Option>\r\n\t\t\t\t\t\t))}\r\n\t\t\t\t\t</HeadlessUICombobox.Options>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t\t<div className=\"grow\">\r\n\t\t\t\t{message && (\r\n\t\t\t\t\t<span className={`mt-1 block text-sm ${isError ? `text-red-500` : `text-gray-500`}`}>\r\n\t\t\t\t\t\t{message}\r\n\t\t\t\t\t</span>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</HeadlessUICombobox>\r\n\t)\r\n}\r\nexport default Combobox\r\n", "import Combobox, { IComboboxProps } from \"./ComboBox\"\r\nexport type { IComboboxProps }\r\nexport default Combobox\r\n", "import React, { forwardRef } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport type AcceptedInputTypes =\r\n\t| \"date\"\r\n\t| \"datetime-local\"\r\n\t| \"email\"\r\n\t| \"month\"\r\n\t| \"number\"\r\n\t| \"password\"\r\n\t| \"search\"\r\n\t| \"submit\"\r\n\t| \"tel\"\r\n\t| \"text\"\r\n\t| \"url\"\r\n\t| \"currency\"\r\n\r\nexport interface IInputFieldProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, \"onChange\"> {\r\n\t/** Callback on change */\r\n\thandleChange: (value: string) => void\r\n\t/** Input ID*/\r\n\tid?: string\r\n\t/** Input Name */\r\n\tname?: string\r\n\t/** Force the focus state on the input */\r\n\tisFocused?: boolean\r\n\t/** Error condition */\r\n\tisError?: boolean\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Readonly state */\r\n\tisReadonly?: boolean\r\n\t/** Input value */\r\n\tvalue: string\r\n\t/** Type of Text Input to Render eg. \"text\", \"email\" */\r\n\ttype: AcceptedInputTypes\r\n\t/** If field is required */\r\n\trequired?: boolean\r\n\t/** use input psuedo classes for :valid and :invalid styles. on by default */\r\n\tclientSideCheck?: boolean\r\n\t/** Placeholder text */\r\n\tplaceholder?: string\r\n\t/**ref for input */\r\n}\r\n\r\nconst InputField = (\r\n\t{\r\n\t\ttype,\r\n\t\tid,\r\n\t\tname,\r\n\t\tvalue,\r\n\t\tisFocused,\r\n\t\tisError,\r\n\t\tisReadonly,\r\n\t\tisDisabled,\r\n\t\thandleChange,\r\n\t\trequired,\r\n\t\tclientSideCheck = true,\r\n\t\tclassName,\r\n\t\tplaceholder,\r\n\t\t...rest\r\n\t}: IInputFieldProps,\r\n\tref: React.Ref<HTMLInputElement>\r\n) => {\r\n\treturn (\r\n\t\t<input\r\n\t\t\t{...{\r\n\t\t\t\tref,\r\n\t\t\t\ttype,\r\n\t\t\t\tid,\r\n\t\t\t\tname,\r\n\t\t\t\tvalue,\r\n\t\t\t\tonChange: (e) => {\r\n\t\t\t\t\tif (handleChange) handleChange(e.target.value)\r\n\t\t\t\t},\r\n\t\t\t\tautoFocus: isFocused,\r\n\t\t\t\treadOnly: isReadonly,\r\n\t\t\t\tdisabled: isDisabled,\r\n\t\t\t\tplaceholder: placeholder || undefined,\r\n\t\t\t\trequired,\r\n\t\t\t\t\"aria-invalid\": isError,\r\n\t\t\t\t\"aria-disabled\": isDisabled,\r\n\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\"peer w-full rounded border border-gray-200 px-3 text-sm font-normal leading-5 outline-offset-0 ring-offset-0 focus:border-purple-600 focus:ring-purple-600 \",\r\n\t\t\t\t\tisError ? \"!border-red-600 !text-red-600 focus:!ring-red-600\" : \"\",\r\n\t\t\t\t\tisReadonly ? \"!border-gray-400 !text-gray-500 focus:!ring-gray-400\" : \"\",\r\n\t\t\t\t\tclassName\r\n\t\t\t\t),\r\n\t\t\t\t...rest\r\n\t\t\t}}\r\n\t\t/>\r\n\t)\r\n}\r\n\r\nconst _InputField = forwardRef<HTMLInputElement, IInputFieldProps>(InputField)\r\nexport default _InputField\r\n", "import InputField, { AcceptedInputTypes, IInputFieldProps } from \"./InputField\"\r\nexport type { AcceptedInputTypes, IInputFieldProps }\r\nexport default InputField\r\n", "import React from \"react\"\r\nimport { DynamicIcon, IDynamicIconProps } from \"@/stories/atoms/icons\"\r\nimport { default as cn } from \"classnames\"\r\nexport interface INestedInputButtonProps {\r\n\t/** Icon to be included*/\r\n\ticon?: IDynamicIconProps\r\n\t/** CTA label */\r\n\tctaLabel?: string\r\n\t/** Alignment */\r\n\talign: \"left\" | \"right\"\r\n\t/** Show the CTA without Background color and a border seperator */\r\n\tisClear?: boolean\r\n\t/** Onclick callback */\r\n\tonClickHandler?(): void\r\n\tbuttonProps?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>\r\n}\r\n\r\nconst NestedInputButton: React.FC<INestedInputButtonProps> = ({\r\n\ticon,\r\n\tctaLabel,\r\n\talign = \"right\",\r\n\tisClear = false,\r\n\tonClickHandler,\r\n\tbuttonProps\r\n}) => {\r\n\tconst handleClick = () => {\r\n\t\tonClickHandler && onClickHandler()\r\n\t}\r\n\tconst buttonStyle = cn(\r\n\t\t\"relative inline-flex items-center space-x-2 px-4 py-2 border border-gray-300 text-sm font-medium focus:outline-none focus:ring-1 focus:ring-purple-500 focus:border-purple-500\",\r\n\t\t{\r\n\t\t\t\"rounded-r text-gray-500 -ml-px\": align === \"right\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"rounded-l text-gray-500 -mr-px\": align === \"left\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"cursor-default\": !onClickHandler\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"hover:bg-gray-100\": onClickHandler && !isClear\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"!border-l-white\": isClear && align === \"right\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"!border-r-white\": isClear && align === \"left\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"bg-gray-50\": !isClear\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"bg-white\": isClear\r\n\t\t}\r\n\t)\r\n\treturn (\r\n\t\t<button {...{ ...buttonProps, className: buttonStyle, onClick: handleClick }}>\r\n\t\t\t{icon && <DynamicIcon {...{ ...icon, className: \"text-gray-400\" }} />}\r\n\t\t\t{ctaLabel && <span>{ctaLabel}</span>}\r\n\t\t</button>\r\n\t)\r\n}\r\n\r\nexport default NestedInputButton\r\n", "import NestedInputButton, { INestedInputButtonProps } from \"./NestedInputButton\"\r\nexport type { INestedInputButtonProps }\r\nexport default NestedInputButton\r\n", "import InputLabel from \"@/stories/molecules/inputs/InputLabel\"\r\nimport { useId } from \"@/utils/useId\"\r\nimport React from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nexport interface IRadioProps {\r\n\t/** group name */\r\n\tname?: string\r\n\t/** Radio label */\r\n\tlabel: string\r\n\t/** Radio ID */\r\n\tid?: string\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Check state */\r\n\tisChecked?: boolean\r\n\t/** If field is required */\r\n\tisRequired?: boolean\r\n\t/** Error state */\r\n\tisError?: boolean\r\n\t/** Message or description */\r\n\tmessage?: string\r\n\t/** value */\r\n\tvalue?: string\r\n\t/** Callback on input change */\r\n\tonChange?(value: string, isChecked: boolean): void\r\n\t/** Callback on click */\r\n\tonClick?(value: string, isChecked: boolean): void\r\n}\r\nconst Radio: React.FC<IRadioProps> = ({\r\n\tlabel,\r\n\tid,\r\n\tname,\r\n\tisDisabled = false,\r\n\tisChecked = false,\r\n\tisRequired = false,\r\n\tisError = false,\r\n\tmessage,\r\n\tonChange,\r\n\tonClick,\r\n\tvalue\r\n}) => {\r\n\tconst uniqueID = useId()\r\n\tif (!id) id = `input-${uniqueID}`\r\n\tif (!name) name = id\r\n\r\n\tconst checboxStyles = cn(\"focus:ring-purple-500 h-4 w-4 text-purple-600 border-gray-300\", {\r\n\t\t\"border-red-500 shadow-none\": isError\r\n\t})\r\n\tconst wrapperStyles = cn(\"relative flex items-start\", { \"opacity-50\": isDisabled })\r\n\tconst handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {\r\n\t\tconst targetValue = e.currentTarget.value\r\n\t\tconst targetChecked = e.currentTarget.checked\r\n\t\ttypeof onChange === \"function\" && onChange(targetValue, targetChecked)\r\n\t}\r\n\tconst handleClick = (e: React.MouseEvent<HTMLInputElement>) => {\r\n\t\tconst targetValue = e.currentTarget.value\r\n\t\tconst targetChecked = e.currentTarget.checked\r\n\t\ttypeof onClick === \"function\" && onClick(targetValue, targetChecked)\r\n\t}\r\n\treturn (\r\n\t\t<div className={wrapperStyles}>\r\n\t\t\t<div className=\"flex items-center h-5\">\r\n\t\t\t\t<input\r\n\t\t\t\t\tid={id}\r\n\t\t\t\t\taria-describedby={`${id}-description`}\r\n\t\t\t\t\tname={name}\r\n\t\t\t\t\ttype=\"radio\"\r\n\t\t\t\t\tvalue={value}\r\n\t\t\t\t\tclassName={checboxStyles}\r\n\t\t\t\t\tdisabled={isDisabled}\r\n\t\t\t\t\tdefaultChecked={isChecked}\r\n\t\t\t\t\tonChange={(e) => {\r\n\t\t\t\t\t\thandleChange(e)\r\n\t\t\t\t\t}}\r\n\t\t\t\t\tonClick={(e) => {\r\n\t\t\t\t\t\thandleClick(e)\r\n\t\t\t\t\t}}\r\n\t\t\t\t/>\r\n\t\t\t</div>\r\n\t\t\t<div className=\"ml-3 text-sm\">\r\n\t\t\t\t<InputLabel label={label} isRequired={isRequired} id={id} />\r\n\t\t\t\t{message && (\r\n\t\t\t\t\t<p id={`${id}-description`} className=\"text-gray-500\">\r\n\t\t\t\t\t\t{message}\r\n\t\t\t\t\t</p>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default Radio\r\n", "import Radio, { IRadioProps } from \"./Radio\"\r\nexport type { IRadioProps }\r\nexport default Radio\r\n", "import React, { useEffect, useState } from \"react\"\r\nimport InputLabel from \"@/stories/molecules/inputs/InputLabel\"\r\nimport { useId } from \"@/utils/useId\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport interface ISimpleSelectOptions {\r\n\tlabel: string\r\n\tvalue: string\r\n}\r\nexport interface ISelectProps {\r\n\t/** Label */\r\n\tlabel?: string\r\n\t/** Select ID prop */\r\n\tid?: string\r\n\t/** Select name prop */\r\n\tname?: string\r\n\t/** List of options to display in the select menu */\r\n\toptions: ISimpleSelectOptions[]\r\n\t/** Select name prop */\r\n\tonChange?(value: string): void\r\n\t/** Select disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Select error state */\r\n\tisError?: boolean\r\n\t/** Select required state */\r\n\tisRequired?: boolean\r\n\r\n\tvalue?: string\r\n\r\n\tclassName?: string\r\n\r\n\tonFocus?: () => void\r\n\r\n\tonBlur?: () => void\r\n}\r\nconst Select: React.FC<ISelectProps> = ({\r\n\tlabel,\r\n\tid,\r\n\tname,\r\n\toptions,\r\n\tonChange,\r\n\tisDisabled,\r\n\tisError,\r\n\tisRequired,\r\n\tvalue,\r\n\tclassName,\r\n\tonFocus,\r\n\tonBlur\r\n}) => {\r\n\tconst [selectedOption, setSelectedOption] = useState<string>(value || options[0].value)\r\n\tconst uniqueID = useId()\r\n\tif (!id) id = `select-${uniqueID}`\r\n\tif (!name) name = id\r\n\r\n\tuseEffect(() => {\r\n\t\tif (value !== undefined && value !== null) {\r\n\t\t\tsetSelectedOption(value)\r\n\t\t}\r\n\t}, [value])\r\n\r\n\tconst handleChange = (e: React.ChangeEvent<HTMLSelectElement>) => {\r\n\t\tconst targetValue = e.target.value\r\n\t\ttypeof onChange == \"function\" && onChange(targetValue)\r\n\t\tsetSelectedOption(targetValue)\r\n\t}\r\n\tconst wrapperStyle = cn({ \"opacity-50\": isDisabled })\r\n\treturn (\r\n\t\t<div className={wrapperStyle}>\r\n\t\t\t{label && (\r\n\t\t\t\t<InputLabel\r\n\t\t\t\t\tisPlaceholder\r\n\t\t\t\t\tisActive\r\n\t\t\t\t\tlabel={label}\r\n\t\t\t\t\tisRequired={isRequired}\r\n\t\t\t\t\tid={id}\r\n\t\t\t\t\tisError={isError}\r\n\t\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\t/>\r\n\t\t\t)}\r\n\t\t\t<select\r\n\t\t\t\tid={id}\r\n\t\t\t\tname={name}\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"block w-full border-gray-300 py-2 pl-3 pr-10 text-base focus:outline-none\",\r\n\t\t\t\t\t\"rounded focus:border-purple-500 focus:ring-purple-500 sm:text-sm\",\r\n\t\t\t\t\t{ \"border-red-500\": isError },\r\n\t\t\t\t\t{ \"border-gray-300\": !isError },\r\n\t\t\t\t\tclassName\r\n\t\t\t\t)}\r\n\t\t\t\tonChange={handleChange}\r\n\t\t\t\tdisabled={isDisabled}\r\n\t\t\t\tvalue={selectedOption}\r\n\t\t\t\tonFocus={onFocus}\r\n\t\t\t\tonBlur={onBlur}\r\n\t\t\t>\r\n\t\t\t\t{options.map(({ value, label }) => {\r\n\t\t\t\t\treturn (\r\n\t\t\t\t\t\t<option key={value} value={value}>\r\n\t\t\t\t\t\t\t{label}\r\n\t\t\t\t\t\t</option>\r\n\t\t\t\t\t)\r\n\t\t\t\t})}\r\n\t\t\t</select>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default Select\r\n", "import Select, { ISelectProps, ISimpleSelectOptions } from \"./Select\"\r\nexport type { ISelectProps, ISimpleSelectOptions }\r\nexport default Select\r\n", "import React, { forwardRef, useEffect, useId, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport InputLabel from \"../InputLabel\"\r\nimport InputCounter from \"../InputCounter\"\r\n\r\ninterface ILabelProps extends React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> {\r\n\tdisplay: string\r\n\thtmlFor?: string\r\n}\r\n\r\nexport interface ITextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, \"onChange\"> {\r\n\t/** Input ID */\r\n\tid?: string\r\n\t/** Input Name */\r\n\tname?: string\r\n\t/** Label for the input */\r\n\tlabel?: ILabelProps\r\n\t/** Error state */\r\n\tisError?: boolean\r\n\t/** If field is required */\r\n\tisRequired?: boolean\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Set default value */\r\n\tdefaultValue?: string\r\n\r\n\tvalue?: string\r\n\r\n\t/** Message shown under the text field */\r\n\tmessage?: string\r\n\t/** Input character counter */\r\n\tisShowCounter?: boolean\r\n\t/** Max length of input character */\r\n\tmaxLength?: number\r\n\t/** Callback on change */\r\n\tonChange?(value: string): void\r\n\t/** Number of rows */\r\n\trows?: number\r\n\t/** Number of cols */\r\n\tcols?: number\r\n\tplaceholder?: string\r\n\tclassName?: string\r\n\tref?: React.LegacyRef<HTMLTextAreaElement>\r\n}\r\n\r\nconst Textarea: React.FC<ITextareaProps> = ({\r\n\tid,\r\n\tname,\r\n\tlabel,\r\n\tisError,\r\n\tisRequired,\r\n\tisDisabled,\r\n\tdefaultValue,\r\n\tmessage,\r\n\tisShowCounter,\r\n\tmaxLength,\r\n\trows = 12,\r\n\tcols = 48,\r\n\tonChange,\r\n\tvalue,\r\n\tplaceholder,\r\n\tclassName,\r\n\tref,\r\n\t...rest\r\n}) => {\r\n\tconst uniqueID = useId()\r\n\r\n\tconst discriptionStyles = cn(\"text-sm mt-1 block\", { \"text-gray-500\": !isError }, { \"text-red-500\": isError })\r\n\r\n\tif (!id) id = `ta-${uniqueID}`\r\n\r\n\tif (!label) {\r\n\t\treturn (\r\n\t\t\t<textarea\r\n\t\t\t\tref={ref}\r\n\t\t\t\tmaxLength={maxLength}\r\n\t\t\t\tonChange={(e: React.ChangeEvent<HTMLTextAreaElement>) => {\r\n\t\t\t\t\tconst targetValue = e.target.value\r\n\t\t\t\t\tif (onChange) {\r\n\t\t\t\t\t\tonChange(targetValue)\r\n\t\t\t\t\t}\r\n\t\t\t\t}}\r\n\t\t\t\trows={rows}\r\n\t\t\t\tname={name}\r\n\t\t\t\tid={id}\r\n\t\t\t\tcols={cols}\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"peer block w-full rounded focus:border-purple-500 focus:ring-purple-500 sm:text-sm\",\r\n\t\t\t\t\t{ \"border-gray-300 \": !isError },\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"border-red-500 outline-red-500 focus:ring-red-500\": isError\r\n\t\t\t\t\t},\r\n\t\t\t\t\tclassName\r\n\t\t\t\t)}\r\n\t\t\t\tdisabled={isDisabled}\r\n\t\t\t\tdefaultValue={defaultValue}\r\n\t\t\t\tvalue={value}\r\n\t\t\t\tplaceholder={placeholder}\r\n\t\t\t\t{...rest}\r\n\t\t\t/>\r\n\t\t)\r\n\t}\r\n\r\n\t//with label\r\n\treturn (\r\n\t\t<div>\r\n\t\t\t<InputLabel\r\n\t\t\t\tisPlaceholder\r\n\t\t\t\tisActive\r\n\t\t\t\tlabel={label.display}\r\n\t\t\t\tisRequired={isRequired}\r\n\t\t\t\tid={id}\r\n\t\t\t\tisError={isError}\r\n\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t/>\r\n\r\n\t\t\t<div>\r\n\t\t\t\t<textarea\r\n\t\t\t\t\tref={ref}\r\n\t\t\t\t\tmaxLength={maxLength}\r\n\t\t\t\t\tonChange={(e: React.ChangeEvent<HTMLTextAreaElement>) => {\r\n\t\t\t\t\t\tconst targetValue = e.target.value\r\n\t\t\t\t\t\tif (onChange) {\r\n\t\t\t\t\t\t\tonChange(targetValue)\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}}\r\n\t\t\t\t\trows={rows}\r\n\t\t\t\t\tname={name}\r\n\t\t\t\t\tid={id}\r\n\t\t\t\t\tcols={cols}\r\n\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\t\"block w-full rounded focus:border-purple-500 focus:ring-purple-500 sm:text-sm\",\r\n\t\t\t\t\t\t{ \"border-gray-300 \": !isError },\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"border-red-500 outline-red-500 focus:ring-red-500\": isError\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\tclassName\r\n\t\t\t\t\t)}\r\n\t\t\t\t\tdisabled={isDisabled}\r\n\t\t\t\t\tdefaultValue={defaultValue}\r\n\t\t\t\t\tvalue={value}\r\n\t\t\t\t\tplaceholder={placeholder}\r\n\t\t\t\t\t{...rest}\r\n\t\t\t\t/>\r\n\t\t\t</div>\r\n\t\t\t<div className=\"flex flex-row space-x-3\">\r\n\t\t\t\t<div className=\"grow\">{message && <span className={discriptionStyles}>{message}</span>}</div>\r\n\t\t\t\t{isShowCounter && (\r\n\t\t\t\t\t<div className=\"shrink-0\">\r\n\t\t\t\t\t\t<InputCounter current={Number(value?.length)} limit={maxLength} />\r\n\t\t\t\t\t</div>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default Textarea\r\n", "import React, { FC } from \"react\"\r\n\r\nexport interface IInputCounterProps {\r\n\t/** Counter limit */\r\n\tlimit: number | undefined\r\n\t/** Counter current number */\r\n\tcurrent: number\r\n}\r\n\r\n/** Primary UI component for user interaction */\r\nconst InputCounter: FC<IInputCounterProps> = ({ current = 0, limit }) => {\r\n\treturn (\r\n\t\t<div className=\"mt-1 text-center text-sm text-gray-500 flex gap-1\">\r\n\t\t\t<div className=\"currentCount\">{current}</div>\r\n\t\t\t{(limit || 0) > 0 && (\r\n\t\t\t\t<>\r\n\t\t\t\t\t<div>/</div>\r\n\t\t\t\t\t<div className=\"limitCount\">{limit}</div>\r\n\t\t\t\t</>\r\n\t\t\t)}\r\n\t\t</div>\r\n\t)\r\n}\r\nexport default InputCounter\r\n", "import TextArea, { ITextareaProps } from \"./TextArea\"\r\nexport type { ITextareaProps }\r\nexport default TextArea\r\n", "import React, { forwardRef, useEffect, useId, useRef, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport InputLabel from \"../InputLabel\"\r\nimport InputField, { AcceptedInputTypes } from \"../InputField\"\r\nimport InputCounter from \"../InputCounter\"\r\n\r\nexport interface ITextInputProps {\r\n\t/** Input type*/\r\n\ttype: AcceptedInputTypes\r\n\t/** Input ID */\r\n\tid?: string\r\n\t/** Input Name */\r\n\tname?: string\r\n\t/** Label for the input */\r\n\tlabel?: string\r\n\t/** Force the focus state on the input */\r\n\tisFocused?: boolean\r\n\t/** Error state */\r\n\tisError?: boolean\r\n\t/** If field is required */\r\n\tisRequired?: boolean\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Readonly state */\r\n\tisReadonly?: boolean\r\n\t/** Set default value */\r\n\tdefaultValue?: string\r\n\t/** Message shown under the text field */\r\n\tmessage?: string\r\n\t/** Input character counter */\r\n\tisShowCounter?: boolean\r\n\t/** Max length of input character */\r\n\tmaxLength?: number\r\n\t/** Callback on change */\r\n\thandleChange(value: string): void\r\n\t/** input value */\r\n\tvalue: string\r\n\t/**Placeholder input text*/\r\n\tplaceholder?: string\r\n\r\n\tclassName?: string\r\n}\r\n\r\nconst TextInput = (\r\n\t{\r\n\t\tlabel,\r\n\t\tisFocused,\r\n\t\tisError,\r\n\t\tid,\r\n\t\tname,\r\n\t\tisRequired,\r\n\t\ttype,\r\n\t\tdefaultValue,\r\n\t\tisDisabled,\r\n\t\tisReadonly,\r\n\t\tmessage,\r\n\t\tisShowCounter,\r\n\t\tmaxLength,\r\n\t\thandleChange,\r\n\t\tplaceholder,\r\n\t\tvalue: externalValue,\r\n\t\tclassName,\r\n\t\t...props\r\n\t}: ITextInputProps,\r\n\tref: React.Ref<HTMLInputElement>\r\n) => {\r\n\tconst uniqueID = useId()\r\n\tconst [isFocus, setIsFocus] = useState<boolean>(Boolean(isFocused))\r\n\r\n\tconst [value, setValue] = useState<string>(externalValue || defaultValue || \"\")\r\n\tconst inputRef = useRef<HTMLInputElement>(null)\r\n\r\n\tuseEffect(() => {\r\n\t\t//if the external value is updated by the parent component, reset the value in here...\r\n\t\tif (externalValue !== undefined && externalValue !== null) {\r\n\t\t\tsetValue(externalValue)\r\n\t\t}\r\n\t}, [externalValue])\r\n\r\n\t// set force focus\r\n\tuseEffect(() => {\r\n\t\tconst input = inputRef.current\r\n\t\tif (!input || isFocus === undefined || isDisabled) return\r\n\t\tif (isFocus) {\r\n\t\t\tinput.focus()\r\n\t\t} else {\r\n\t\t\tinput.blur()\r\n\t\t}\r\n\t}, [isFocus])\r\n\r\n\t// set label as active if default value is set\r\n\tuseEffect(() => {\r\n\t\tconst input = inputRef.current\r\n\t\tif (!input || defaultValue === undefined || defaultValue === \"\") return\r\n\t}, [defaultValue])\r\n\r\n\tconst handleInputFocus = () => setIsFocus(true)\r\n\t// add other focus effects here\r\n\r\n\tconst handleInputBlur = () => setIsFocus(false)\r\n\r\n\tif (!id) id = `input-${uniqueID}`\r\n\tif (!name) name = id\r\n\r\n\treturn (\r\n\t\t<div className=\"relative\">\r\n\t\t\t<InputLabel\r\n\t\t\t\tisPlaceholder={true}\r\n\t\t\t\tlabel={label}\r\n\t\t\t\tisRequired={isRequired}\r\n\t\t\t\tid={id}\r\n\t\t\t\tisError={isError}\r\n\t\t\t\tisActive={true}\r\n\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t/>\r\n\t\t\t<InputField\r\n\t\t\t\tonFocus={handleInputFocus}\r\n\t\t\t\tonBlur={handleInputBlur}\r\n\t\t\t\thandleChange={(v: string) => {\r\n\t\t\t\t\tsetValue(v)\r\n\t\t\t\t\thandleChange(v)\r\n\t\t\t\t}}\r\n\t\t\t\tref={ref}\r\n\t\t\t\ttype={type}\r\n\t\t\t\tname={name}\r\n\t\t\t\tid={id}\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"w-full rounded border py-2 px-3 text-sm font-normal leading-5\",\r\n\t\t\t\t\t{ \"border-gray-300\": !isFocus && !isError },\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"!border-purple-500 shadow-none outline-purple-500 focus:!ring-purple-500\": isFocus && !isError\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t\"!border-red-500 shadow-none focus:ring-red-500\": isError\r\n\t\t\t\t\t},\r\n\t\t\t\t\tclassName\r\n\t\t\t\t)}\r\n\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\tisReadonly={isReadonly}\r\n\t\t\t\tvalue={value}\r\n\t\t\t\tdefaultValue={defaultValue}\r\n\t\t\t\tmaxLength={maxLength}\r\n\t\t\t\tplaceholder={placeholder}\r\n\t\t\t\t{...props}\r\n\t\t\t/>\r\n\t\t\t<div className=\"flex flex-row space-x-3\">\r\n\t\t\t\t<div className=\"grow\">\r\n\t\t\t\t\t{message && (\r\n\t\t\t\t\t\t<span className={cn(\"mt-1 block text-sm\", isError ? \"text-red-500\" : \"text-gray-500\")}>\r\n\t\t\t\t\t\t\t{message}\r\n\t\t\t\t\t\t</span>\r\n\t\t\t\t\t)}\r\n\t\t\t\t</div>\r\n\t\t\t\t{isShowCounter && (\r\n\t\t\t\t\t<div className=\"shrink-0\">\r\n\t\t\t\t\t\t<InputCounter current={Number(value?.length)} limit={maxLength} />\r\n\t\t\t\t\t</div>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nconst _TextInput = forwardRef<HTMLInputElement, ITextInputProps>(TextInput)\r\nexport default _TextInput\r\n", "import TextInput from \"./TextInput\"\r\nimport { ITextInputProps } from \"./TextInput\"\r\n\r\nexport type { ITextInputProps }\r\nexport default TextInput\r\n", "import React, { useEffect, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport { Switch } from \"@headlessui/react\"\r\nimport { DynamicIcon, IDynamicIconProps } from \"@/stories/atoms\"\r\n\r\ninterface ToggleSwitchLabel {\r\n\ttext: string | JSX.Element\r\n\tclassName?: string\r\n\txPosition?: \"left\" | \"right\"\r\n}\r\n\r\nexport interface IToggleSwitchProps {\r\n\tisChecked: boolean\r\n\tonChange: (isChecked: boolean) => void\r\n\tlabel?: ToggleSwitchLabel\r\n\tscreenReaderLabel?: string\r\n\tname: string\r\n\tid: string\r\n\tvariant?: \"base\" | \"short\"\r\n\twithIcon?: IDynamicIconProps\r\n\tdisabled?: boolean,\r\n\tgroupClassName?: string\r\n}\r\n\r\nconst ToggleSwitch: React.FC<IToggleSwitchProps> = ({\r\n\tisChecked,\r\n\tonChange,\r\n\tlabel,\r\n\tscreenReaderLabel,\r\n\tname,\r\n\tid,\r\n\tvariant = \"base\",\r\n\twithIcon,\r\n\tdisabled,\r\n\tgroupClassName,\r\n}) => {\r\n\tconst [checked, setChecked] = useState<boolean>(isChecked)\r\n\tuseEffect(() => setChecked(isChecked), [isChecked])\r\n\r\n\treturn (\r\n\t\t<Switch.Group as={\"div\"} className={cn(\"flex items-center gap-2\", groupClassName)}>\r\n\t\t\t{label && (label.xPosition === \"left\" || !label?.xPosition) && (\r\n\t\t\t\t<Switch.Label className={label.className}>{label.text}</Switch.Label>\r\n\t\t\t)}\r\n\t\t\t<Switch\r\n\t\t\t\tname={name}\r\n\t\t\t\tid={id}\r\n\t\t\t\tchecked={checked}\r\n\t\t\t\tonChange={(v: boolean) => {\r\n\t\t\t\t\tonChange(v)\r\n\t\t\t\t\tsetChecked(v)\r\n\t\t\t\t}}\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t{ \"w-9 h-4 transition-all\": variant === \"short\", \" h-6 w-11\": variant === \"base\" },\r\n\t\t\t\t\tchecked && disabled ? \"bg-purple-200\" : checked ? \"bg-purple-600\" : \"bg-gray-200\",\r\n\t\t\t\t\t\"relative inline-flex items-center rounded-full focus-visible:ring-2 focus-visible:ring-purple-600 focus-visible:ring-offset-2 focus-within:ring-2 focus-within:ring-purple-600 focus-within:ring-offset-2 focus:ring-2 focus:ring-purple-600 focus:ring-offset-2 active:ring-2 active:ring-purple-600 active:ring-offset-2\"\r\n\t\t\t\t)}\r\n\t\t\t\tdisabled={disabled}\r\n\t\t\t>\r\n\t\t\t\t{screenReaderLabel && <span className=\"sr-only\">{screenReaderLabel}</span>}\r\n\t\t\t\t<span\r\n\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\tchecked ? \"translate-x-[22px]\" : \"translate-x-[2px]\",\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"border border-gray-200 translate-x-0\": variant === \"short\",\r\n\t\t\t\t\t\t\t\"!translate-x-[22px]\": checked && variant === \"short\"\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\" h-5 w-5 transform rounded-full bg-white transition shadow-sm drop-shadow flex items-center justify-center\"\r\n\t\t\t\t\t)}\r\n\t\t\t\t>\r\n\t\t\t\t\t{withIcon && <DynamicIcon {...withIcon} className={\"text-gray-400 m-[2px]\"} />}\r\n\t\t\t\t</span>\r\n\t\t\t</Switch>\r\n\t\t\t{label && label.xPosition === \"right\" && (\r\n\t\t\t\t<Switch.Label className={label.className}>{label.text}</Switch.Label>\r\n\t\t\t)}\r\n\t\t</Switch.Group>\r\n\t)\r\n}\r\n\r\nexport default ToggleSwitch\r\n", "import ToggleSwitch, { IToggleSwitchProps } from \"./ToggleSwitch\"\r\nexport type { IToggleSwitchProps }\r\nexport default ToggleSwitch\r\n", "import React from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport InputField, { IInputFieldProps } from \"@/stories/molecules/inputs/InputField\"\r\n\r\ninterface ILabelProps extends React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> {\r\n\tdisplay: string\r\n}\r\n\r\nexport interface IAnimatedLabelInputProps extends Omit<IInputFieldProps, \"handleChange\"> {\r\n\tid: string\r\n\tcontainerStyles?: string\r\n\tmessage?: string\r\n\trequired?: boolean\r\n\tisError?: boolean\r\n\tlabel: ILabelProps\r\n\thandleChange: (value: string) => void\r\n}\r\n\r\nconst AnimatedLabelInput: React.FC<IAnimatedLabelInputProps> = (props: IAnimatedLabelInputProps) => {\r\n\tconst { id, containerStyles, message, required, isError, label, value, handleChange, ...input } = props\r\n\r\n\tconst [hasValue, setHasValue] = React.useState<boolean>(!!value)\r\n\r\n\treturn (\r\n\t\t<>\r\n\t\t\t<div className={cn(\"group relative\", containerStyles ? containerStyles : \"\")}>\r\n\t\t\t\t<InputField\r\n\t\t\t\t\tid={id}\r\n\t\t\t\t\tisError={isError}\r\n\t\t\t\t\tvalue={value}\r\n\t\t\t\t\thandleChange={(v) => {\r\n\t\t\t\t\t\tsetHasValue(!!v)\r\n\t\t\t\t\t\tif (handleChange) handleChange(v)\r\n\t\t\t\t\t}}\r\n\t\t\t\t\t{...input}\r\n\t\t\t\t/>\r\n\t\t\t\t<label\r\n\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\t\"absolute z-10 ml-[3px] inline-block bg-white text-sm transition-all text-gray-500 left-1 px-1\",\r\n\t\t\t\t\t\thasValue ? \"!-top-[8px] !ml-[.172rem] !text-xs text-gray-600\" : \"top-[9px]\",\r\n\t\t\t\t\t\t\"peer-placeholder-shown:!-top-[8px] peer-placeholder-shown:!ml-[.172rem] peer-placeholder-shown:!text-xs peer-placeholder-shown:text-gray-600\",\r\n\t\t\t\t\t\t\"group-focus-within:!-top-[8px] group-focus-within:!ml-[.172rem] group-focus-within:!text-xs group-focus-within:text-gray-600\",\r\n\r\n\t\t\t\t\t\tisError && \"!text-red-600\"\r\n\t\t\t\t\t)}\r\n\t\t\t\t\thtmlFor={id}\r\n\t\t\t\t>\r\n\t\t\t\t\t{label.display}\r\n\t\t\t\t\t{required && <span className=\"text-red-600 ml-1\">*</span>}\r\n\t\t\t\t</label>\r\n\r\n\t\t\t\t<div className=\"flex flex-row space-x-3\">\r\n\t\t\t\t\t<div className=\"grow transition-all\">\r\n\t\t\t\t\t\t{message && (\r\n\t\t\t\t\t\t\t<span className={cn(\"mt-1 block text-sm\", isError ? \"text-red-500\" : \"text-gray-500\")}>\r\n\t\t\t\t\t\t\t\t{message}\r\n\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</>\r\n\t)\r\n}\r\n\r\nexport default AnimatedLabelInput\r\n", "import AnimatedLabelInput, { IAnimatedLabelInputProps } from \"./AnimatedLabelInput\"\r\nexport type { IAnimatedLabelInputProps }\r\nexport default AnimatedLabelInput\r\n", "import React from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nimport TextArea, { ITextareaProps } from \"@/stories/molecules/inputs/textArea\"\r\n\r\nexport interface IAnimatedLabelTextAreaProps extends ITextareaProps {\r\n\tid: string\r\n\tcontainerStyles?: string\r\n\tmessage?: string\r\n\trequired?: boolean\r\n\tisError?: boolean\r\n\thandleChange: (value: string) => void\r\n}\r\n\r\nconst AnimatedLabelTextArea: React.FC<IAnimatedLabelTextAreaProps> = (props: IAnimatedLabelTextAreaProps) => {\r\n\tconst { id, containerStyles, message, required, isError, label, value, handleChange, onChange, ...input } = props\r\n\r\n\tconst [hasValue, setHasValue] = React.useState<boolean>(!!value)\r\n\r\n\treturn (\r\n\t\t<div className={cn(\"group relative\", containerStyles ? containerStyles : \"\")}>\r\n\t\t\t<TextArea\r\n\t\t\t\tid={id}\r\n\t\t\t\tisError={isError}\r\n\t\t\t\tvalue={value}\r\n\t\t\t\t{...input}\r\n\t\t\t\tonChange={(v) => {\r\n\t\t\t\t\tsetHasValue(!!v)\r\n\t\t\t\t\tif (handleChange) handleChange(v)\r\n\t\t\t\t}}\r\n\t\t\t\tlabel={undefined}\r\n\t\t\t/>\r\n\t\t\t<label\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"absolute z-10 ml-[3px] inline-block bg-white text-sm transition-all text-gray-500 left-1 px-1\",\r\n\t\t\t\t\thasValue ? \"!-top-[8px] !ml-[.172rem] !text-xs text-gray-600\" : \"top-[9px]\",\r\n\t\t\t\t\t\"peer-placeholder-shown:!-top-[8px] peer-placeholder-shown:!ml-[.172rem] peer-placeholder-shown:!text-xs peer-placeholder-shown:text-gray-600\",\r\n\t\t\t\t\t\"group-focus-within:!-top-[8px] group-focus-within:!ml-[.172rem] group-focus-within:!text-xs group-focus-within:text-gray-600\",\r\n\r\n\t\t\t\t\tisError && \"!text-red-600\"\r\n\t\t\t\t)}\r\n\t\t\t\thtmlFor={label?.htmlFor || id}\r\n\t\t\t>\r\n\t\t\t\t{label?.display}\r\n\t\t\t\t{required && <span className=\"text-red-600 ml-1\">*</span>}\r\n\t\t\t</label>\r\n\r\n\t\t\t<div className=\"flex flex-row space-x-3\">\r\n\t\t\t\t<div className=\"grow transition-all\">\r\n\t\t\t\t\t{message && (\r\n\t\t\t\t\t\t<span className={cn(\"mt-1 block text-sm\", isError ? \"text-red-500\" : \"text-gray-500\")}>\r\n\t\t\t\t\t\t\t{message}\r\n\t\t\t\t\t\t</span>\r\n\t\t\t\t\t)}\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default AnimatedLabelTextArea\r\n", "import AnimatedLabelTextArea, { IAnimatedLabelTextAreaProps } from \"./AnimatedLabelTextArea\"\r\nexport type { IAnimatedLabelTextAreaProps }\r\nexport default AnimatedLabelTextArea\r\n", "import React, { FC } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport Button, { IButtonProps } from \"@/stories/atoms/buttons/Button\"\r\n\r\nimport { DynamicIcon } from \"@/stories/atoms/icons\"\r\nimport Dropdown, { IDropdownProps, defaultClassNames } from \"../DropdownComponent\"\r\n\r\nexport interface IButtonDropdownProps {\r\n\tbutton: IButtonProps\r\n\tdropDown: IDropdownProps\r\n\tplacement?: IDropdownProps[\"placement\"]\r\n\toffsetOptions?: IDropdownProps[\"offsetOptions\"]\r\n}\r\n\r\n/**\r\n * Primary UI component for user interaction\r\n */\r\nconst ButtonDropdown: FC<IButtonDropdownProps> = ({ button, dropDown, placement = \"bottom-end\", offsetOptions }) => {\r\n\treturn (\r\n\t\t<div className=\"flex items-stretch focus-within:ring-purple-600 focus-within:ring-2 focus-within:ring-offset-white focus-within:ring-offset-2 rounded-[3px]\">\r\n\t\t\t<Button\r\n\t\t\t\t{...{\r\n\t\t\t\t\t...button,\r\n\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\tbutton.className,\r\n\t\t\t\t\t\t\"!rounded-r-none !border-r-0 hover:!border-r-0 !focus:ring-transparent !focus-visible:ring-transparent !focus-within:ring-transparent !focus:ring-0 !focus-within:ring-0 !focus-visible:ring-0 !focus:ring-offset-0 !focus-visible:ring-offset-0 !focus-within:ring-offset-0 !ring-0 outline-none focus:outline-none focus-visible:outline-none focus-within:outline-none !ring-offset-0\"\r\n\t\t\t\t\t)\r\n\t\t\t\t}}\r\n\t\t\t/>\r\n\t\t\t<div\r\n\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\"w-[1px] rt\",\r\n\t\t\t\t\tbutton.actionType === \"primary\" ? \"bg-purple-700 \" : \"\",\r\n\t\t\t\t\tbutton.actionType === \"secondary\" ? \"bg-purple-200\" : \"\",\r\n\t\t\t\t\tbutton.actionType === \"alternative\" ? \"bg-gray-300\" : \"\"\r\n\t\t\t\t)}\r\n\t\t\t></div>\r\n\t\t\t<Dropdown\r\n\t\t\t\t{...{\r\n\t\t\t\t\t...(dropDown as IDropdownProps),\r\n\t\t\t\t\tCustomDropdownTrigger: (\r\n\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\ticon: \"IconChevronDown\",\r\n\t\t\t\t\t\t\t\tclassName: cn(\"h-5 w-5\", {\r\n\t\t\t\t\t\t\t\t\t\"text-white\": button.actionType === \"primary\",\r\n\t\t\t\t\t\t\t\t\t\"text-purple-700\": button.actionType === \"secondary\",\r\n\t\t\t\t\t\t\t\t\t\"text-gray-700\": button.actionType === \"alternative\"\r\n\t\t\t\t\t\t\t\t})\r\n\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t/>\r\n\t\t\t\t\t),\r\n\t\t\t\t\tbuttonClassname: cn(\r\n\t\t\t\t\t\t\"flex items-center justify-center rounded-l-none border !border-l-0 rounded-r px-2 transition-all hover:!border-l-0\",\r\n\t\t\t\t\t\tbutton.actionType === \"primary\"\r\n\t\t\t\t\t\t\t? cn(\r\n\t\t\t\t\t\t\t\t\t\"border-purple-600 bg-purple-600 !text-white hover:border-purple-700 hover:bg-purple-700 active:!border-purple-800 active:bg-purple-800 fill-white\",\r\n\t\t\t\t\t\t\t\t\t\"disabled:bg-purple-400 disabled:text-white disabled:hover:none disabled:active:bg-purple-400 disabled:border-purple-400\"\r\n\t\t\t\t\t\t\t )\r\n\t\t\t\t\t\t\t: \"\",\r\n\t\t\t\t\t\tbutton.actionType === \"secondary\"\r\n\t\t\t\t\t\t\t? cn(\r\n\t\t\t\t\t\t\t\t\t\"border-purple-50 bg-purple-50 text-purple-700 hover:border-purple-100 hover:bg-purple-100 active:border-purple-300 active:bg-purple-300 fill-purple-700\",\r\n\t\t\t\t\t\t\t\t\t\"disabled:bg-purple-50 disabled:text-grey-50 disabled:hover:none disabled:active:bg-purple-50 disabled:border-purple-50\"\r\n\t\t\t\t\t\t\t )\r\n\t\t\t\t\t\t\t: \"\",\r\n\t\t\t\t\t\tbutton.actionType === \"alternative\"\r\n\t\t\t\t\t\t\t? cn(\r\n\t\t\t\t\t\t\t\t\t\"border-gray-300 bg-white text-gray-700 fill-gray-700 hover:border-gray-300 hover:bg-gray-50 active:bg-gray-100\",\r\n\t\t\t\t\t\t\t\t\t\"disabled:bg-gray-100 disabled:text-gray-500 disabled:hover:none disabled:active:bg-gray-100 disabled:border-gray-300\"\r\n\t\t\t\t\t\t\t )\r\n\t\t\t\t\t\t\t: \"\"\r\n\t\t\t\t\t),\r\n\t\t\t\t\toffsetOptions: offsetOptions ?? {\r\n\t\t\t\t\t\tcrossAxis: 0,\r\n\t\t\t\t\t\tmainAxis: -4, //up/down\r\n\t\t\t\t\t\talignmentAxis: 0 //left/right\r\n\t\t\t\t\t},\r\n\t\t\t\t\tplacement\r\n\t\t\t\t}}\r\n\t\t\t/>\r\n\t\t\t<div className=\"hidden !bg-purple-100 !text-purple-600 transition-all hover:bg-purple-200 focus:bg-purple-300\" />\r\n\t\t</div>\r\n\t)\r\n}\r\nexport default ButtonDropdown\r\n", "import React, { HTMLAttributes, useEffect, useMemo, useRef, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport {\r\n\tuseFloating,\r\n\tautoUpdate,\r\n\toffset,\r\n\tuseDismiss,\r\n\tuseRole,\r\n\tuseClick,\r\n\tuseInteractions,\r\n\tFloatingFocusManager,\r\n\tautoPlacement,\r\n\tshift,\r\n\tFloatingPortal,\r\n\tFloatingList,\r\n\tuseTransitionStyles,\r\n\tPlacement,\r\n\tuseListNavigation\r\n} from \"@floating-ui/react\"\r\n\r\nimport { ClassNameWithAutocomplete } from \"utils/types\"\r\nimport { DynamicIcon, IDynamicIconProps, UnifiedIconName } from \"@/stories/atoms/icons\"\r\nimport { list } from \"postcss\"\r\n\r\nexport interface IItemProp {\r\n\t//Don't think this needs to extend HtmlButton... extends HTMLAttributes<HTMLButtonElement> {\r\n\ticon?: IDynamicIconProps\r\n\ticonPosition?: \"trailing\" | \"leading\"\r\n\tlabel: string | JSX.Element\r\n\tonClick?(): void\r\n\tisEmphasized?: boolean\r\n\tkey: React.Key\r\n\ticonObj?: JSX.Element\r\n}\r\n\r\nexport interface IDropdownProps extends HTMLAttributes<HTMLDivElement> {\r\n\titems: IItemProp[][]\r\n\tlabel: string\r\n\tCustomDropdownTrigger?: React.ReactNode\r\n\tid: string\r\n\tgroupClassname?: ClassNameWithAutocomplete\r\n\titemsClassname?: ClassNameWithAutocomplete\r\n\titemClassname?: ClassNameWithAutocomplete\r\n\tactiveItemClassname?: ClassNameWithAutocomplete\r\n\tbuttonClassname?: ClassNameWithAutocomplete\r\n\ticonClassname?: ClassNameWithAutocomplete\r\n\ticonSpacingClassname?: ClassNameWithAutocomplete\r\n\tplacement?: Placement\r\n\toffsetOptions?: Partial<{\r\n\t\tmainAxis: number\r\n\t\tcrossAxis: number\r\n\t\talignmentAxis: number | null\r\n\t}>\r\n\tdisabled?: boolean\r\n\tonFocus?: () => void\r\n\tonBlur?: () => void\r\n}\r\nexport const defaultClassNames = {\r\n\tgroupClassname: \"flex inline-block text-left\",\r\n\titemsClassname:\r\n\t\t\"mt-2 origin-bottom-right rounded bg-white shadow-lg z-[99999] divide-y divide-gray-100 border border-gray-300 \",\r\n\titemClassname:\r\n\t\t\"group flex font-muli cursor-pointer items-center px-4 py-2 text-sm transition-all hover:bg-gray-100 hover:text-gray-900 justify-between gap-4 \",\r\n\tactiveItemClassname: \"block px-4 py-2 text-sm text-gray-700 bg-gray-100 hover:bg-gray-200 hover:text-gray-900\",\r\n\tbuttonClassname:\r\n\t\t\"py-[2px] flex items-center rounded outline-purple-500 transition-all text-gray-400 hover:text-gray-600 \",\r\n\ticonClassname: \"ml-1 h-5 w-6\",\r\n\ticonSpacingClassname: \"flex items-center gap-x-4\"\r\n}\r\n\r\n/** Comment */\r\nconst Dropdown: React.FC<IDropdownProps> = ({\r\n\titems,\r\n\tid,\r\n\tlabel,\r\n\tgroupClassname,\r\n\titemsClassname,\r\n\titemClassname,\r\n\tactiveItemClassname,\r\n\tbuttonClassname,\r\n\ticonClassname,\r\n\ticonSpacingClassname,\r\n\tCustomDropdownTrigger,\r\n\tplacement = \"bottom-start\",\r\n\toffsetOptions,\r\n\tdisabled,\r\n\tonFocus,\r\n\tonBlur,\r\n\t...props\r\n}: IDropdownProps): JSX.Element | null => {\r\n\tconst [isOpen, setIsOpen] = useState(false)\r\n\tconst [activeItem, setActiveItem] = useState<React.Key | null>(null)\r\n\tconst [activeIndex, setActiveIndex] = useState<number | null>(null)\r\n\r\n\tconst listRef = useRef<(HTMLButtonElement | null)[]>([])\r\n\r\n\t// Floating UI logic\r\n\tconst { refs, floatingStyles, context } = useFloating({\r\n\t\topen: isOpen,\r\n\t\tonOpenChange: (bool: boolean) => {\r\n\t\t\tlistRef.current = []\r\n\t\t\tsetActiveIndex(null)\r\n\t\t\tsetIsOpen(bool)\r\n\t\t},\r\n\t\tplacement,\r\n\t\tmiddleware: [\r\n\t\t\toffset(offsetOptions ?? 10),\r\n\t\t\tautoPlacement({\r\n\t\t\t\tallowedPlacements: [placement, \"bottom-start\", \"bottom-end\", \"bottom\"]\r\n\t\t\t}),\r\n\t\t\tshift({ rootBoundary: \"document\" })\r\n\t\t],\r\n\t\twhileElementsMounted: autoUpdate\r\n\t})\r\n\tconst click = useClick(context)\r\n\tconst dismiss = useDismiss(context)\r\n\tconst role = useRole(context)\r\n\tconst listNavigation = useListNavigation(context, {\r\n\t\tlistRef,\r\n\t\tactiveIndex,\r\n\t\tonNavigate: (index: number | null) => {\r\n\t\t\tif (index !== null && listRef.current[index]) {\r\n\t\t\t\tsetActiveIndex(index)\r\n\t\t\t\tlistRef.current[index]?.focus()\r\n\t\t\t}\r\n\t\t}\r\n\t})\r\n\r\n\tconst { getReferenceProps, getFloatingProps, getItemProps } = useInteractions([\r\n\t\tclick,\r\n\t\tdismiss,\r\n\t\trole,\r\n\t\tlistNavigation\r\n\t])\r\n\r\n\tuseEffect(() => {\r\n\t\tif (isOpen) {\r\n\t\t\tonFocus && onFocus()\r\n\t\t} else {\r\n\t\t\tonBlur && onBlur()\r\n\t\t}\r\n\t}, [isOpen, onBlur, onFocus])\r\n\r\n\tconst ItemComponents = useMemo(\r\n\t\t() =>\r\n\t\t\titems.map((itemStack, stackIndex) => {\r\n\t\t\t\treturn itemStack.map((item, itemIndex) => {\r\n\t\t\t\t\tconst { key, label, icon, iconObj, iconPosition, isEmphasized, onClick, ...rest } = item\r\n\t\t\t\t\tconst active = activeItem && activeItem === key\r\n\t\t\t\t\tconst itemClass = cn(\r\n\t\t\t\t\t\tdefaultClassNames.itemClassname,\r\n\t\t\t\t\t\titemClassname,\r\n\t\t\t\t\t\t\"group flex cursor-pointer items-center px-4 py-2 text-sm transition-all\",\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"text-red-500\": isEmphasized\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"text-gray-900\": !isEmphasized\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"bg-gray-100 text-gray-900\": active\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\tactive ? cn(defaultClassNames.activeItemClassname, activeItemClassname) : \"\",\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\"bg-gray-100 text-red-500 hover:text-red-500\": active && isEmphasized\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t)\r\n\t\t\t\t\treturn (\r\n\t\t\t\t\t\t<button\r\n\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\tkey: key,\r\n\t\t\t\t\t\t\t\tid: key.toString(),\r\n\t\t\t\t\t\t\t\tclassName: cn(itemClass, \"w-full\"),\r\n\t\t\t\t\t\t\t\t...rest,\r\n\t\t\t\t\t\t\t\t...getItemProps(),\r\n\t\t\t\t\t\t\t\tonClick: () => {\r\n\t\t\t\t\t\t\t\t\tonClick && onClick()\r\n\t\t\t\t\t\t\t\t\tsetTimeout(() => {\r\n\t\t\t\t\t\t\t\t\t\t//hide the dropdown after click\r\n\t\t\t\t\t\t\t\t\t\tsetIsOpen(false)\r\n\t\t\t\t\t\t\t\t\t}, 150)\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\tref={(node) => {\r\n\t\t\t\t\t\t\t\t//If the list ref already contains a node with the same id do nothing, otherwise add it\r\n\t\t\t\t\t\t\t\tif (listRef.current.some((item) => item?.id === key)) {\r\n\t\t\t\t\t\t\t\t\treturn\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\tlistRef.current.push(node)\r\n\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\tkey={key}\r\n\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t<div className={cn(defaultClassNames.iconSpacingClassname, iconSpacingClassname)}>\r\n\t\t\t\t\t\t\t\t{iconObj && (iconPosition === \"leading\" || iconPosition === undefined) && (\r\n\t\t\t\t\t\t\t\t\t<>{iconObj}</>\r\n\t\t\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t\t\t{icon &&\r\n\t\t\t\t\t\t\t\t\t(iconPosition === \"leading\" || iconPosition === undefined) &&\r\n\t\t\t\t\t\t\t\t\t(typeof icon === \"string\" ? (\r\n\t\t\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t\t\ticon: icon,\r\n\t\t\t\t\t\t\t\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"text-red-500\": isEmphasized\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"opacity-60 group\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t\t\t) : (\r\n\t\t\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t\t\t...icon,\r\n\t\t\t\t\t\t\t\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\t\t\t\t\t\t\t\ticon.className,\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"text-red-500\": isEmphasized\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"opacity-60 group\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t\t\t))}\r\n\t\t\t\t\t\t\t\t<div className=\"whitespace-nowrap\">{label}</div>\r\n\t\t\t\t\t\t\t\t{iconObj && iconPosition === \"trailing\" && <>{iconObj}</>}\r\n\t\t\t\t\t\t\t\t{icon &&\r\n\t\t\t\t\t\t\t\t\ticonPosition === \"trailing\" &&\r\n\t\t\t\t\t\t\t\t\t(typeof icon === \"string\" ? (\r\n\t\t\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t\t\ticon: icon,\r\n\t\t\t\t\t\t\t\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"text-red-500\": isEmphasized\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"opacity-60 group\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t\t\t) : (\r\n\t\t\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t\t\t...icon,\r\n\t\t\t\t\t\t\t\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\t\t\t\t\t\t\t\ticon.className,\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"text-red-500\": isEmphasized\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"opacity-60 group\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t)\r\n\t\t\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t\t\t))}\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t)\r\n\t\t\t\t})\r\n\t\t\t}),\r\n\t\t[activeItem, activeItemClassname, getItemProps, iconSpacingClassname, itemClassname, items]\r\n\t)\r\n\r\n\tconst { isMounted, styles: transitionStyles } = useTransitionStyles(context, {\r\n\t\tduration: {\r\n\t\t\topen: 200,\r\n\t\t\tclose: 200\r\n\t\t},\r\n\t\tinitial: {\r\n\t\t\topacity: 0,\r\n\t\t\tscale: 95\r\n\t\t},\r\n\t\topen: {\r\n\t\t\topacity: 1,\r\n\t\t\tscale: 100\r\n\t\t}\r\n\t})\r\n\treturn (\r\n\t\t<div\r\n\t\t\t{...{\r\n\t\t\t\tclassName: cn(defaultClassNames.groupClassname, groupClassname),\r\n\t\t\t\trole: \"combobox\",\r\n\t\t\t\t\"aria-owns\": `${id}-list`,\r\n\t\t\t\t\"aria-expanded\": isOpen,\r\n\t\t\t\t\"aria-haspopup\": \"listbox\",\r\n\t\t\t\t...props\r\n\t\t\t}}\r\n\t\t>\r\n\t\t\t<button\r\n\t\t\t\t{...{\r\n\t\t\t\t\tref: refs.setReference,\r\n\t\t\t\t\tclassName: cn(defaultClassNames.buttonClassname, buttonClassname),\r\n\t\t\t\t\tonClick: () => {\r\n\t\t\t\t\t\tsetIsOpen(!isOpen)\r\n\t\t\t\t\t},\r\n\t\t\t\t\ttype: \"button\",\r\n\t\t\t\t\tdisabled: disabled,\r\n\t\t\t\t\t...getReferenceProps()\r\n\t\t\t\t}}\r\n\t\t\t>\r\n\t\t\t\t{CustomDropdownTrigger ? (\r\n\t\t\t\t\t<span className=\"\">{CustomDropdownTrigger}</span>\r\n\t\t\t\t) : (\r\n\t\t\t\t\t<>\r\n\t\t\t\t\t\t<span className=\"pl-1\">{label}</span>\r\n\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\ticon=\"IconChevronDown\"\r\n\t\t\t\t\t\t\tclassName={cn(defaultClassNames.iconClassname, iconClassname)}\r\n\t\t\t\t\t\t/>\r\n\t\t\t\t\t</>\r\n\t\t\t\t)}\r\n\t\t\t</button>\r\n\r\n\t\t\t{isMounted && items.length > 0 && isOpen && (\r\n\t\t\t\t<FloatingList\r\n\t\t\t\t\t{...{\r\n\t\t\t\t\t\telementsRef: listRef\r\n\t\t\t\t\t}}\r\n\t\t\t\t>\r\n\t\t\t\t\t<FloatingPortal>\r\n\t\t\t\t\t\t<FloatingFocusManager context={context} modal={true}>\r\n\t\t\t\t\t\t\t<div\r\n\t\t\t\t\t\t\t\t{...getFloatingProps()}\r\n\t\t\t\t\t\t\t\tclassName={cn(defaultClassNames.itemsClassname, itemsClassname)}\r\n\t\t\t\t\t\t\t\tref={refs.setFloating}\r\n\t\t\t\t\t\t\t\taria-labelledby={label}\r\n\t\t\t\t\t\t\t\tstyle={{\r\n\t\t\t\t\t\t\t\t\tposition: context.strategy,\r\n\t\t\t\t\t\t\t\t\ttop: Math.round(context.y ?? 0),\r\n\t\t\t\t\t\t\t\t\tleft: Math.round(context.x ?? 0),\r\n\t\t\t\t\t\t\t\t\twidth: \"max-content\",\r\n\t\t\t\t\t\t\t\t\tmaxWidth: \"min(calc(100vw - 10px), 25rem)\",\r\n\t\t\t\t\t\t\t\t\t...floatingStyles,\r\n\t\t\t\t\t\t\t\t\t...transitionStyles\r\n\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t>\r\n\t\t\t\t\t\t\t\t{ItemComponents}\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</FloatingFocusManager>\r\n\t\t\t\t\t</FloatingPortal>\r\n\t\t\t\t</FloatingList>\r\n\t\t\t)}\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default Dropdown\r\n", "import Dropdown, { IItemProp, IDropdownProps, defaultClassNames } from \"./DropdownComponent\"\r\nexport type { IItemProp, IDropdownProps }\r\nexport { defaultClassNames }\r\nexport default Dropdown\r\n", "import ButtonDropdown, { IButtonDropdownProps } from \"./ButtonDropdown\"\r\nexport type { IButtonDropdownProps }\r\nexport default ButtonDropdown\r\n", "import React from \"react\"\r\nimport Button, { IButtonProps } from \"@/stories/atoms/buttons/Button\"\r\nimport { IDynamicIconProps } from \"@/stories/atoms/icons\"\r\nimport IconWithShadow from \"@/stories/atoms/icons/IconWithShadow\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport interface IEmptySectionPlaceholderProps {\r\n\t/** the primary icon to display at top of component */\r\n\ticon: IDynamicIconProps\r\n\t/** the muted text to display below the icon */\r\n\tmutedText?: string\r\n\t/** the primary message to display below the muted text */\r\n\tprimaryMessage: string\r\n\t/** the call to action component that if provided will be used instead of primaryMessage */\r\n\tCallToActionComponent?: React.ReactNode\r\n\t/** the actions to display below the primary call to action or message */\r\n\tactions: IButtonProps[]\r\n\t/** whether to display the component in a wide or narrow format */\r\n\tisWide?: boolean\r\n}\r\n\r\nconst EmptySectionPlaceholder: React.FC<IEmptySectionPlaceholderProps> = ({\r\n\ticon,\r\n\tmutedText,\r\n\tprimaryMessage,\r\n\tCallToActionComponent,\r\n\tactions,\r\n\tisWide\r\n}) => {\r\n\treturn (\r\n\t\t<div className=\"flex h-full w-full flex-col items-center justify-center border-2 border-dashed border-gray-300 p-5\">\r\n\t\t\t<IconWithShadow {...icon} />\r\n\t\t\t{mutedText && <p className=\"my-2 block text-xs text-gray-500\">{mutedText}</p>}\r\n\t\t\t{CallToActionComponent ? (\r\n\t\t\t\tCallToActionComponent\r\n\t\t\t) : (\r\n\t\t\t\t<p className=\"mb-2 block text-sm font-medium text-gray-600\">{primaryMessage}</p>\r\n\t\t\t)}\r\n\t\t\t{actions.length > 0 ? (\r\n\t\t\t\t<div className={cn(\"mt-2 flex gap-2\", isWide ? \"\" : \"flex-col items-center\")}>\r\n\t\t\t\t\t{actions.map((action, index) => (\r\n\t\t\t\t\t\t<Button {...{ ...action }} key={action.label.replaceAll(\" \", \"-\")} />\r\n\t\t\t\t\t))}\r\n\t\t\t\t</div>\r\n\t\t\t) : (\r\n\t\t\t\t<></>\r\n\t\t\t)}\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default EmptySectionPlaceholder\r\n", "import EmptySectionPlaceholder, { IEmptySectionPlaceholderProps } from \"./EmptySectionPlaceholder\"\r\n\r\nexport type { IEmptySectionPlaceholderProps }\r\nexport default EmptySectionPlaceholder\r\n", "import { DynamicIcon, IDynamicIconProps } from \"@/stories/atoms/icons\"\r\nimport React, { useLayoutEffect, useRef, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\nimport InputField, { IInputFieldProps, AcceptedInputTypes } from \"@/stories/molecules/inputs/InputField\"\r\n\r\nexport interface IFormInputWithAddonsProps extends Omit<IInputFieldProps, \"type\"> {\r\n\tleadIcon?: IDynamicIconProps\r\n\tleadLabel?: string\r\n\ttrailIcon?: IDynamicIconProps\r\n\ttrailLabel?: string\r\n\ticonOutlined?: boolean\r\n\t/** @param addonOffset An extra buffer zone in pixels between the trailing/leading icon or label and search input -- Default is 24 */\r\n\taddonOffset?: number\r\n\ttopLabel?: string\r\n\tlabelClass?: string\r\n\tcontainerClassName?: string\r\n\tdescription?: string\r\n\tleadIconClassNames?: string\r\n\tcustomIconClass?: string\r\n\ttype: AcceptedInputTypes\r\n}\r\n\r\nconst FormInputWithAddons: React.FC<IFormInputWithAddonsProps> = ({\r\n\thandleChange,\r\n\tvalue,\r\n\tname,\r\n\tid,\r\n\tplaceholder,\r\n\tclassName,\r\n\tcontainerClassName,\r\n\tleadIcon,\r\n\tleadLabel,\r\n\ttrailIcon,\r\n\ttrailLabel,\r\n\ttopLabel,\r\n\tlabelClass,\r\n\tisDisabled,\r\n\tisReadonly,\r\n\tisError,\r\n\taddonOffset = 24,\r\n\ticonOutlined = false,\r\n\tdescription,\r\n\tleadIconClassNames,\r\n\tcustomIconClass,\r\n\ttype,\r\n\t...rest\r\n}) => {\r\n\t// #region logic to determine the width of the lead and or trailing labels in order to offset the input padding by the appropriate amount.\r\n\tconst leadLabelRef = useRef<HTMLLabelElement>(null)\r\n\tconst trailLabelRef = useRef<HTMLLabelElement>(null)\r\n\tconst [leadLabelWidth, setLeadLabelWidth] = useState<number>(0)\r\n\tconst [trailLabelWidth, setTrailLabelWidth] = useState<number>(0)\r\n\tuseLayoutEffect(() => {\r\n\t\tsetLeadLabelWidth(leadLabelRef.current?.clientWidth || 0)\r\n\t\tsetTrailLabelWidth(trailLabelRef.current?.clientWidth || 0)\r\n\t}, [])\r\n\t// #endregion\r\n\r\n\treturn (\r\n\t\t<div className={cn(\"group flex flex-col\", containerClassName)}>\r\n\t\t\t{!leadLabel && !trailLabel && topLabel && (\r\n\t\t\t\t<label htmlFor={id} className={cn(\"flex items-center text-sm font-medium text-gray-600\", labelClass)}>\r\n\t\t\t\t\t{topLabel}\r\n\t\t\t\t</label>\r\n\t\t\t)}\r\n\t\t\t{description && <div className=\"mb-2 text-sm text-gray-500\">{description}</div>}\r\n\t\t\t<div className=\"relative flex-grow\">\r\n\t\t\t\t{(leadLabel || leadIcon) && (\r\n\t\t\t\t\t<label\r\n\t\t\t\t\t\tref={leadLabelRef}\r\n\t\t\t\t\t\thtmlFor={id}\r\n\t\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\t\t\"absolute top-0 bottom-0 left-3 flex items-center justify-center text-sm text-gray-500\",\r\n\t\t\t\t\t\t\tlabelClass\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{leadIcon && (\r\n\t\t\t\t\t\t\t<span>\r\n\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t...leadIcon,\r\n\t\t\t\t\t\t\t\t\t\tclassName: cn(\r\n\t\t\t\t\t\t\t\t\t\t\t\"h-5 w-5 text-gray-400\",\r\n\t\t\t\t\t\t\t\t\t\t\tleadIconClassNames,\r\n\t\t\t\t\t\t\t\t\t\t\tcustomIconClass,\r\n\t\t\t\t\t\t\t\t\t\t\tleadIcon.className\r\n\t\t\t\t\t\t\t\t\t\t),\r\n\t\t\t\t\t\t\t\t\t\toutline: iconOutlined\r\n\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t{leadLabel && leadLabel}\r\n\t\t\t\t\t</label>\r\n\t\t\t\t)}\r\n\t\t\t\t<InputField\r\n\t\t\t\t\t{...{\r\n\t\t\t\t\t\t...rest,\r\n\t\t\t\t\t\thandleChange,\r\n\t\t\t\t\t\tvalue,\r\n\t\t\t\t\t\tid,\r\n\t\t\t\t\t\tname,\r\n\t\t\t\t\t\ttype,\r\n\t\t\t\t\t\tautoComplete: \"off\",\r\n\t\t\t\t\t\tdisabled: isDisabled,\r\n\t\t\t\t\t\tplaceholder: placeholder || \"\",\r\n\t\t\t\t\t\tisReadonly,\r\n\t\t\t\t\t\tisError,\r\n\t\t\t\t\t\tclassName,\r\n\t\t\t\t\t\t// add padding to accomodate inner labels and icons\r\n\t\t\t\t\t\tstyle: {\r\n\t\t\t\t\t\t\tpaddingRight: `${trailLabelWidth + addonOffset}px`,\r\n\t\t\t\t\t\t\tpaddingLeft: `${leadLabelWidth + addonOffset}px`\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}}\r\n\t\t\t\t/>\r\n\t\t\t\t{(trailLabel || trailIcon) && (\r\n\t\t\t\t\t<label\r\n\t\t\t\t\t\tref={trailLabelRef}\r\n\t\t\t\t\t\thtmlFor={id}\r\n\t\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\t\t\"right absolute top-0 bottom-0 right-3 flex items-center justify-center text-sm !text-gray-500 \",\r\n\t\t\t\t\t\t\tlabelClass\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t>\r\n\t\t\t\t\t\t{trailIcon && (\r\n\t\t\t\t\t\t\t<span>\r\n\t\t\t\t\t\t\t\t<DynamicIcon\r\n\t\t\t\t\t\t\t\t\t{...{\r\n\t\t\t\t\t\t\t\t\t\t...trailIcon,\r\n\t\t\t\t\t\t\t\t\t\tclassName: cn(\"h-5 w-5 text-gray-400\", customIconClass, trailIcon.className),\r\n\t\t\t\t\t\t\t\t\t\toutline: iconOutlined\r\n\t\t\t\t\t\t\t\t\t}}\r\n\t\t\t\t\t\t\t\t/>\r\n\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t\t{trailLabel && trailLabel}\r\n\t\t\t\t\t</label>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\n\r\nexport default FormInputWithAddons\r\n", "import FormInputWithAddons, { IFormInputWithAddonsProps } from \"./FormInputWithAddons\"\r\nexport type { IFormInputWithAddonsProps }\r\nexport default FormInputWithAddons\r\n", "import React, { FC, useEffect, useId, useRef, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nimport { InputSelect } from \"./InputSelect\"\r\nimport { AcceptedInputTypes, InputField } from \"@/stories/molecules\"\r\nimport InputCounter from \"@/stories/molecules/inputs/InputCounter\"\r\n\r\nexport type SelectOptions = {\r\n\tlabel: string\r\n\tvalue: string\r\n}\r\n\r\nexport interface ITextInputSelectProps {\r\n\t/** Input type*/\r\n\ttype: AcceptedInputTypes\r\n\t/** Input ID */\r\n\tid?: string\r\n\t/** Input Name */\r\n\tname?: string\r\n\t/** Label for the input */\r\n\tlabel?: string\r\n\t/** placeholder for the input */\r\n\tplaceholder?: string\r\n\t/** Force the focus state on the input */\r\n\tisFocused?: boolean\r\n\t/** Error state */\r\n\tisError?: boolean\r\n\t/** If field is required */\r\n\tisRequired?: boolean\r\n\t/** Disabled state */\r\n\tisDisabled?: boolean\r\n\t/** Set default value */\r\n\tdefaultValue?: string\r\n\t/** Set value */\r\n\tvalue: string\r\n\t/** Message shown under the text field */\r\n\tmessage?: string\r\n\t/** Input character counter */\r\n\tisShowCounter?: boolean\r\n\t/** Max length of input character */\r\n\tmaxLength?: number\r\n\t/** Select input location */\r\n\tselectLocation?: \"left\" | \"right\"\r\n\t/** Prefix */\r\n\tprefix?: string\r\n\t/** List of options to show on the select field */\r\n\tinputOptions?: SelectOptions[]\r\n\t/** Callback on base input */\r\n\tonChange?(value: string): void\r\n\t/** Callback on input select field */\r\n\tonSelectOption?(value: string): void\r\n}\r\n\r\nconst TextInputSelect: FC<ITextInputSelectProps> = ({\r\n\tlabel,\r\n\tisFocused,\r\n\tisError,\r\n\tid,\r\n\tname,\r\n\tisRequired,\r\n\ttype,\r\n\tdefaultValue,\r\n\tisDisabled,\r\n\tmessage,\r\n\tisShowCounter,\r\n\tmaxLength,\r\n\tplaceholder,\r\n\tinputOptions,\r\n\tselectLocation = \"right\",\r\n\tprefix,\r\n\tonChange,\r\n\tonSelectOption,\r\n\tvalue: externalValue\r\n}: ITextInputSelectProps) => {\r\n\tconst [isFocus, setIsFocus] = useState<boolean>(Boolean(isFocused))\r\n\tconst [value, setValue] = useState<string>(defaultValue || \"\")\r\n\tconst inputRef = useRef<HTMLInputElement>(null)\r\n\r\n\tconst uniqueID = useId()\r\n\tif (!id) id = `select-${uniqueID}`\r\n\tif (!name) name = id\r\n\r\n\tuseEffect(() => {\r\n\t\tsetValue(externalValue)\r\n\t}, [externalValue])\r\n\r\n\t// set force focus\r\n\tuseEffect(() => {\r\n\t\tconst input = inputRef.current\r\n\t\tif (!input || isFocus === undefined || isFocused === undefined || isDisabled) return\r\n\t\tif (isFocus || isFocused) {\r\n\t\t\tinput.focus()\r\n\t\t} else {\r\n\t\t\tinput.blur()\r\n\t\t}\r\n\t}, [isFocus, isFocused])\r\n\r\n\t// set label as active if default value is set\r\n\tuseEffect(() => {\r\n\t\tconst input = inputRef.current\r\n\t\tif (!input || defaultValue === undefined || defaultValue === \"\") return\r\n\t}, [defaultValue])\r\n\r\n\tconst handleInputFocus = (): void => {\r\n\t\tsetIsFocus(true)\r\n\t\t// add other focus effects here\r\n\t}\r\n\r\n\tconst handleInputBlur = (): void => {\r\n\t\tsetIsFocus(false)\r\n\t\t// add other focus effects here\r\n\t}\r\n\tconst labelStyles = cn(\"block inline-block font-medium transition-all text-sm text-gray-700 mb-1\", {\r\n\t\t\"text-red-500 bg-white\": isError\r\n\t})\r\n\r\n\tconst discriptionStyles = cn(\"text-sm mt-1 block\", { \"text-gray-500\": !isError }, { \"text-red-500\": isError })\r\n\r\n\treturn (\r\n\t\t<div>\r\n\t\t\t{label && (\r\n\t\t\t\t<label htmlFor={id} className={labelStyles}>\r\n\t\t\t\t\t{label}\r\n\t\t\t\t\t{isRequired && <span className=\"text-red-500\"> *</span>}\r\n\t\t\t\t</label>\r\n\t\t\t)}\r\n\t\t\t<div className=\"flex\">\r\n\t\t\t\t{inputOptions?.length && selectLocation === \"left\" && (\r\n\t\t\t\t\t<InputSelect\r\n\t\t\t\t\t\tinputOptions={inputOptions}\r\n\t\t\t\t\t\talign=\"left\"\r\n\t\t\t\t\t\tonSelectOption={onSelectOption}\r\n\t\t\t\t\t\tclassName={cn(isError ? \"border-red-500\" : \"\")}\r\n\t\t\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\t\t/>\r\n\t\t\t\t)}\r\n\t\t\t\t<div className=\"relative flex-grow focus-within:z-20\">\r\n\t\t\t\t\t{prefix && (\r\n\t\t\t\t\t\t<div className=\"pointer-events-none pr-10 absolute inset-y-0 left-0 flex items-center pl-3\">\r\n\t\t\t\t\t\t\t<span className=\"text-gray-500 sm:text-sm\">{prefix}</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t)}\r\n\t\t\t\t\t<InputField\r\n\t\t\t\t\t\tonFocus={handleInputFocus}\r\n\t\t\t\t\t\tonBlur={handleInputBlur}\r\n\t\t\t\t\t\thandleChange={(v) => onChange && onChange(v)}\r\n\t\t\t\t\t\tref={inputRef}\r\n\t\t\t\t\t\ttype={type}\r\n\t\t\t\t\t\tname={name}\r\n\t\t\t\t\t\tid={id}\r\n\t\t\t\t\t\tclassName={cn(\r\n\t\t\t\t\t\t\t\"w-full border border-gray-300 py-2 px-3 text-sm font-normal leading-5\",\r\n\t\t\t\t\t\t\t\"focus:border-purple-500 focus:outline-none focus:ring-1 focus:ring-purple-500 sm:text-sm\",\r\n\t\t\t\t\t\t\tselectLocation === \"right\" ? `rounded-l` : `rounded-r`,\r\n\t\t\t\t\t\t\tisError ? \"border-red-500\" : \"\",\r\n\t\t\t\t\t\t\tprefix ? `pl-7` : \"\"\r\n\t\t\t\t\t\t)}\r\n\t\t\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\t\t\tdefaultValue={defaultValue}\r\n\t\t\t\t\t\tvalue={value}\r\n\t\t\t\t\t\tmaxLength={maxLength}\r\n\t\t\t\t\t\tplaceholder={placeholder}\r\n\t\t\t\t\t/>\r\n\t\t\t\t</div>\r\n\t\t\t\t{inputOptions?.length && selectLocation === \"right\" && (\r\n\t\t\t\t\t<InputSelect\r\n\t\t\t\t\t\tinputOptions={inputOptions}\r\n\t\t\t\t\t\talign={\"right\"}\r\n\t\t\t\t\t\tonSelectOption={onSelectOption}\r\n\t\t\t\t\t\tisDisabled={isDisabled}\r\n\t\t\t\t\t\tclassName={cn(isError ? \"border-red-500\" : \"\")}\r\n\t\t\t\t\t/>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t\t<div className=\"flex flex-row space-x-3\">\r\n\t\t\t\t<div className=\"grow\">{message && <span className={discriptionStyles}>{message}</span>}</div>\r\n\t\t\t\t{isShowCounter && (\r\n\t\t\t\t\t<div className=\"shrink-0\">\r\n\t\t\t\t\t\t<InputCounter current={Number(value?.length)} limit={maxLength} />\r\n\t\t\t\t\t</div>\r\n\t\t\t\t)}\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t)\r\n}\r\nexport default TextInputSelect\r\n", "import React, { FC, useState } from \"react\"\r\nimport { default as cn } from \"classnames\"\r\n\r\nexport type SelectOptions = {\r\n\tlabel: string\r\n\tvalue: string\r\n}\r\nexport interface InputSelectProps {\r\n\talign: \"left\" | \"right\"\r\n\t/** Show the CTA without Background color and a border seperator */\r\n\tinputOptions: SelectOptions[]\r\n\t/** Onclick callback */\r\n\tonSelectOption?(value: string): void\r\n\tclassName?: string\r\n\tisDisabled?: boolean\r\n}\r\n\r\n/** Comment */\r\nexport const InputSelect: FC<InputSelectProps> = ({\r\n\tinputOptions,\r\n\tonSelectOption,\r\n\talign = \"right\",\r\n\tclassName,\r\n\tisDisabled\r\n}: InputSelectProps): JSX.Element | null => {\r\n\tconst [selectedOption, setSelectedOption] = useState<string>(inputOptions[0].value)\r\n\r\n\tconst handleChange = (e: React.ChangeEvent<HTMLSelectElement>) => {\r\n\t\tconst targetValue = e.target.value\r\n\t\tonSelectOption && onSelectOption(targetValue)\r\n\t\tsetSelectedOption(targetValue)\r\n\t}\r\n\r\n\tif (!inputOptions?.length) return null\r\n\treturn (\r\n\t\t<select\r\n\t\t\tclassName={cn(\r\n\t\t\t\t\"relative z-10 inline-flex items-center space-x-2 border border-gray-300 bg-white px-4 py-2 pr-7 text-sm font-medium\",\r\n\t\t\t\t\"focus:border-purple-500 focus:outline-none focus:ring-1 focus:ring-purple-500\",\r\n\t\t\t\talign === \"right\"\r\n\t\t\t\t\t? \"-ml-px rounded-r border-l-white text-gray-700\"\r\n\t\t\t\t\t: align === \"left\"\r\n\t\t\t\t\t? \"-mr-px rounded-l border-r-white text-gray-500 focus-within:z-10\"\r\n\t\t\t\t\t: \"\",\r\n\t\t\t\t!onSelectOption ? \"cursor-default\" : \"\",\r\n\t\t\t\tclassName\r\n\t\t\t)}\r\n\t\t\tonChange={handleChange}\r\n\t\t\tvalue={selectedOption}\r\n\t\t\tdisabled={isDisabled}\r\n\t\t>\r\n\t\t\t{inputOptions.map((option) => (\r\n\t\t\t\t<option key={option.value} value={option.value}>\r\n\t\t\t\t\t{option.label}\r\n\t\t\t\t</option>\r\n\t\t\t))}\r\n\t\t</select>\r\n\t)\r\n}\r\n", "import TextInputSelect, { ITextInputSelectProps } from \"./TextInputSelect\"\r\nexport type { ITextInputSelectProps }\r\nexport default TextInputSelect\r\n"],
|
|
5
|
+
"mappings": "AAAA,OAAOA,GAAa,WAAAC,OAAe,QACnC,OAAS,WAAWC,OAAU,aA4B9B,IAAMC,GAA2B,CAAC,CAAE,IAAAC,EAAK,OAAAC,EAAQ,KAAAC,EAAO,KAAM,IAAAC,EAAM,eAAgB,SAAAC,CAAS,IAAoB,CAChH,IAAMC,EAAcP,GAAG,eAAgB,CACtC,UAAWI,IAAS,MACpB,UAAWA,IAAS,KACpB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,IACvB,CAAC,EACKI,EAAiBR,GAAG,mEAAoE,CAC7F,UAAWI,IAAS,MACpB,UAAWA,IAAS,KACpB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,IACvB,CAAC,EACKK,EAAaT,GAAG,gDAAiD,CACtE,UAAWI,IAAS,OAASA,IAAS,KACtC,UAAWA,IAAS,KACpB,YAAaA,IAAS,KACtB,UAAWA,IAAS,KACpB,UAAWA,IAAS,IACrB,CAAC,EACKM,EAAsBV,GAAG,wDAAyD,CACvF,UAAWI,IAAS,MACpB,UAAWA,IAAS,KACpB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,KACtB,YAAaA,IAAS,IACvB,CAAC,EAEKO,EAAeX,GAAG,8DAA+D,CACtF,cAAeI,IAAS,MACxB,UAAWA,IAAS,KACpB,cAAeA,IAAS,KACxB,UAAWA,IAAS,KACpB,cAAeA,IAAS,KACxB,UAAWA,IAAS,KACpB,cAAeD,IAAW,UAC1B,aAAcA,IAAW,OACzB,eAAgBA,IAAW,QAC5B,CAAC,EACKS,EAAoBb,GAAQ,IAAM,CACvC,IAAIa,EAAoB,EACxB,OAAQR,EAAM,CACb,IAAK,MACJQ,EAAY,GACZ,MACD,IAAK,KACJA,EAAY,GACZ,MACD,IAAK,KACJA,EAAY,GACZ,MACD,IAAK,KACJA,EAAY,GACZ,MACD,IAAK,KACJA,EAAY,GACZ,MACD,IAAK,KACJA,EAAY,GACZ,MACD,QACCA,EAAY,GACZ,KACF,CACA,OAAOA,CACR,EAAG,CAACR,CAAI,CAAC,EAET,OACCN,EAAA,cAAC,QAAK,UAAU,yBACdI,EAEAJ,EAAA,cAAC,OAAI,UAAWS,EAAa,MAAOK,EAAW,OAAQA,EAAW,IAAKV,EAAK,IAAKG,EAAK,QAAQ,QAAQ,EACnGC,EACHR,EAAA,cAAC,QAAK,UAAWU,GAChBV,EAAA,cAAC,QAAK,UAAWW,GAAaH,CAAS,CACxC,EAEAR,EAAA,cAAC,QAAK,UAAWY,GAChBZ,EAAA,cAAC,OAAI,UAAU,8BAA8B,KAAK,eAAe,QAAQ,aACxEA,EAAA,cAAC,QAAK,EAAE,6HAA6H,CACtI,CACD,EAEAK,GAAUL,EAAA,cAAC,QAAK,UAAWa,EAAc,CAC3C,CAEF,EAEOE,GAAQZ,GCzHf,IAAOa,GAAQA,GCDf,OAAOC,MAAW,QAClB,OAAS,WAAWC,OAAU,aCD9B,OAAOC,MAAW,QAElB,UAAYC,OAAgB,yBAC5B,UAAYC,OAAkB,2BAC9B,UAAYC,OAAQ,iBCJb,IAAMC,GAAkB,CAC9B,UACA,cACA,UACA,cACA,UACA,sBACA,mBACA,eACA,UACA,YACA,SACA,gBACA,aACA,UACA,qBACA,kBACA,0BACA,oBACA,iBACA,wBACA,eACA,UACA,qBACA,kBACA,eACA,eACA,YACA,SACA,qBACA,kBACA,qBACA,sBACA,wBACA,uBACA,sBACA,qBACA,wBACA,sBACA,6BACA,wBACA,uBACA,4BACA,uBACA,qBACA,uBACA,qBACA,sBACA,0BACA,wBACA,uBACA,sBACA,oBACA,mBACA,kBACA,iBACA,sBACA,gBACA,iBACA,8BACA,sBACA,wBACA,kBACA,uBACA,iBACA,eACA,sBACA,gBACA,wBACA,kBACA,YACA,eACA,YACA,wBACA,kBACA,yBACA,mBACA,yBACA,mBACA,iBACA,wBACA,+BACA,yBACA,kBACA,0BACA,oBACA,kBACA,YACA,iCACA,2BACA,+BACA,yBACA,gCACA,0BACA,2BACA,iCACA,2BACA,4BACA,wBACA,+BACA,yBACA,+BACA,yBACA,0BACA,4BACA,sBACA,gCACA,0BACA,gCACA,0BACA,2BACA,6BACA,uBACA,8BACA,wBACA,4BACA,sBACA,6BACA,uBACA,kBACA,qBACA,gBACA,iBACA,YACA,uBACA,oBACA,oBACA,gBACA,gBACA,oBACA,iBACA,cACA,gBACA,aACA,YACA,WACA,mBACA,mBACA,mBACA,mBACA,mBACA,qBACA,iBACA,cACA,kBACA,eACA,gBACA,aACA,aACA,UACA,sBACA,gBACA,YACA,iBACA,cACA,WACA,oBACA,iBACA,cACA,mBACA,gBACA,kBACA,eACA,gCACA,0BACA,uBACA,yBACA,uBACA,wBACA,qBACA,wBACA,wBACA,kBACA,gBACA,2BACA,qBACA,2BACA,qBACA,4BACA,sBACA,yBACA,mBACA,mBACA,mBACA,mBACA,oBACA,qBACA,qBACA,sBACA,mBACA,iBACA,qBACA,oBACA,sBACA,qBACA,yBACA,6BACA,uBACA,8BACA,wBACA,mBACA,yBACA,6BACA,uBACA,8BACA,wBACA,mBACA,0BACA,8BACA,wBACA,+BACA,yBACA,oBACA,uBACA,2BACA,qBACA,4BACA,sBACA,iBACA,kBACA,mBACA,qBACA,sBACA,mBACA,sBACA,0BACA,oBACA,uBACA,2BACA,qBACA,sBACA,oBACA,gBACA,qBACA,sBACA,gBACA,2BACA,qBACA,mBACA,iBACA,qBACA,mBACA,sBACA,uBACA,qBACA,sBACA,oBACA,gBACA,qBACA,oBACA,sBACA,qBACA,qBACA,qBACA,sBACA,iBACA,oBACA,oBACA,qBACA,kBACA,sBACA,sBACA,uBACA,oBACA,qBACA,qBACA,oBACA,sBACA,sBACA,qBACA,oBACA,uBACA,wBACA,uBACA,qBACA,iBACA,2BACA,4BACA,0BACA,2BACA,sBACA,uBACA,0BACA,0BACA,2BACA,yBACA,0BACA,iBACA,oBACA,wBACA,kBACA,qBACA,yBACA,mBACA,oBACA,kBACA,cACA,wBACA,sBACA,yBACA,uBACA,kBACA,kBACA,sBACA,8BACA,6BACA,qBACA,iBACA,uBACA,uBACA,uBACA,uBACA,mBACA,iBACA,sBACA,qBACA,uBACA,kBACA,iBACA,qBACA,sBACA,iBACA,qBACA,qBACA,2BACA,yBACA,iBACA,mBACA,sBACA,sBACA,kBACA,qBACA,oBACA,iBACA,mBACA,kBACA,yBACA,uBACA,mBACA,mBACA,oBACA,eACA,qBACA,qBACA,kBACA,eACA,0BACA,iBACA,cACA,wBACA,qBACA,kBACA,kBACA,eACA,YACA,qBACA,eACA,YACA,SACA,kBACA,YACA,cACA,WACA,wBACA,0BACA,uBACA,kBACA,eACA,YACA,UACA,YACA,YACA,iBACA,mBACA,cACA,kBACA,eACA,gBACA,sBACA,gBACA,cACA,cACA,cACA,cACA,cACA,cACA,kBACA,cACA,eACA,cACA,cACA,cACA,cACA,cACA,YACA,mBACA,gBACA,aACA,eACA,8BACA,2BACA,mBACA,qBACA,kBACA,sBACA,mBACA,iBACA,qBACA,oBACA,iBACA,cACA,oBACA,iBACA,cACA,UACA,oBACA,iBACA,cACA,iBACA,cACA,iBACA,cACA,gBACA,aACA,sBACA,mBACA,2BACA,4BACA,2BACA,eACA,mBACA,gBACA,aACA,UACA,iBACA,cACA,WACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,wBACA,uBACA,sBACA,iBACA,oBACA,iBACA,cACA,eACA,YACA,gBACA,aACA,UACA,iBACA,cACA,WACA,eACA,iBACA,gBACA,eACA,cACA,iBACA,eACA,sBACA,iBACA,gBACA,sBACA,gBACA,cACA,gBACA,cACA,qBACA,eACA,mBACA,yBACA,mBACA,wBACA,kBACA,iBACA,iBACA,gBACA,eACA,aACA,kBACA,YACA,kBACA,YACA,WACA,WACA,YACA,cACA,WACA,gBACA,kBACA,iBACA,aACA,mBACA,gBACA,kBACA,YACA,qBACA,uBACA,gBACA,aACA,iBACA,yBACA,mBACA,iBACA,gBACA,cACA,WACA,UACA,cACA,WACA,cACA,WACA,iBACA,WACA,cACA,WACA,cACA,WACA,YACA,mBACA,iBACA,cACA,iBACA,WACA,mBACA,qBACA,oBACA,kBACA,mBACA,uBACA,eACA,sBACA,mBACA,gBACA,eACA,YACA,gBACA,mBACA,oBACA,uBACA,kBACA,iBACA,iBACA,kBACA,mBACA,kBACA,kBACA,mBACA,kBACA,gBACA,qBACA,mBACA,gBACA,aACA,uBACA,iBACA,wBACA,kBACA,UACA,iBACA,WACA,2BACA,+BACA,yBACA,gCACA,0BACA,qBACA,yBACA,mBACA,0BACA,oBACA,wBACA,4BACA,sBACA,6BACA,uBACA,kBACA,gBACA,mBACA,gBACA,kBACA,eACA,mBACA,mBACA,mBACA,mBACA,mBACA,mBACA,mBACA,mBACA,mBACA,mBACA,kBACA,aACA,iBACA,cACA,UACA,gBACA,aACA,yBACA,2BACA,sBACA,kBACA,eACA,cACA,YACA,iBACA,oBACA,iBACA,oBACA,kBACA,oBACA,mBACA,kBACA,oBACA,kBACA,eACA,iBACA,mBACA,mBACA,mBACA,mBACA,eACA,sBACA,uBACA,wBACA,iBACA,oBACA,iBACA,eACA,iBACA,oBACA,iBACA,iBACA,oBACA,mBACA,iBACA,mBACA,oBACA,mBACA,gBACA,qBACA,sBACA,mBACA,mBACA,mBACA,qBACA,iBACA,kBACA,iBACA,kBACA,gBACA,mBACA,2BACA,kBACA,mBACA,kBACA,oBACA,sBACA,sBACA,mBACA,mBACA,uBACA,kBACA,oBACA,yBACA,kBACA,mBACA,wBACA,eACA,iBACA,sBACA,gBACA,oBACA,oBACA,iBACA,mBACA,cACA,uBACA,gBACA,kBACA,kBACA,qBACA,gBACA,kBACA,sBACA,gBACA,oBACA,yBACA,mBACA,kBACA,kBACA,kBACA,kBACA,oBACA,wBACA,kBACA,0BACA,oBACA,iBACA,kBACA,gBACA,mBACA,0BACA,iBACA,kBACA,gBACA,oBACA,0BACA,oBACA,kBACA,iBACA,qBACA,kBACA,oBACA,mBACA,kBACA,kBACA,yBACA,qBACA,mBACA,oBACA,sBACA,wBACA,kBACA,sBACA,kBACA,eACA,yBACA,wBACA,kBACA,kBACA,iBACA,kBACA,2BACA,0BACA,uBACA,qBACA,sBACA,sBACA,qBACA,wBACA,sBACA,0BACA,kBACA,qBACA,mBACA,oBACA,kBACA,oBACA,mBACA,eACA,sBACA,gBACA,mBACA,iBACA,mBACA,qBACA,oBACA,gBACA,sBACA,kBACA,gBACA,gBACA,uBACA,kBACA,mBACA,kBACA,oBACA,sBACA,gBACA,oBACA,oBACA,mBACA,gBACA,mBACA,mBACA,sBACA,oBACA,kBACA,qBACA,kBACA,oBACA,qBACA,gBACA,0BACA,qBACA,uBACA,oBACA,kBACA,mBACA,kBACA,iBACA,8BACA,eACA,oBACA,wBACA,mBACA,gBACA,qBACA,kBACA,kBACA,mBACA,kBACA,eACA,gBACA,mBACA,iBACA,kBACA,gBACA,oBACA,oBACA,sBACA,kBACA,mBACA,iBACA,mBACA,mBACA,wBACA,kBACA,kBACA,kBACA,iBACA,eACA,mBACA,qBACA,uBACA,kBACA,mBACA,sBACA,kBACA,uBACA,sBACA,oBACA,kBACA,cACA,mBACA,uBACA,iBACA,kBACA,kBACA,kBACA,iBACA,mBACA,kBACA,gBACA,kBACA,uBACA,gBACA,kBACA,kBACA,kBACA,kBACA,kBACA,iBACA,iBACA,oBACA,oBACA,qBACA,oBACA,mBACA,sBACA,oBACA,qBACA,mBACA,yBACA,sBACA,iBACA,iBACA,qBACA,oBACA,kBACA,kBACA,uBACA,qBACA,oBACA,sBACA,qBACA,qBACA,kBACA,iBACA,mBACA,kBACA,oBACA,kBACA,eACA,oBACA,qBACA,kBACA,mBACA,mBACA,iBACA,uBACA,kBACA,kBACA,mBACA,oBACA,kBACA,kBACA,uBACA,kBACA,kBACA,kBACA,yBACA,mBACA,sBACA,gBACA,kBACA,iBACA,oBACA,kBACA,oBACA,kBACA,iBACA,kBACA,gBACA,wBACA,gBACA,mBACA,cACA,eACA,sBACA,gBACA,kBACA,eACA,mBACA,gBACA,mBACA,kBACA,iBACA,oBACA,qBACA,mBACA,iBACA,gBACA,eACA,qBACA,mBACA,gBACA,gBACA,iBACA,kBACA,iBACA,uBACA,uBACA,mBACA,mBACA,kBACA,gBACA,iBACA,gBACA,iBACA,iBACA,eACA,YACA,iBACA,mBACA,gBACA,kBACA,2BACA,qBACA,qBACA,oBACA,yBACA,mBACA,iBACA,mBACA,gBACA,mBACA,iBACA,kBACA,eACA,cACA,eACA,YACA,oBACA,gBACA,aACA,aACA,UACA,mBACA,mBACA,sBACA,qBACA,6BACA,uBACA,qBACA,qBACA,qBACA,wBACA,sBACA,qBACA,uBACA,sBACA,uBACA,uBACA,yBACA,uBACA,qBACA,uBACA,yBACA,sBACA,oBACA,qBACA,wBACA,0BACA,eACA,iBACA,cACA,WACA,gBACA,aACA,cACA,UACA,mBACA,gBACA,mBACA,gBACA,aACA,cACA,WACA,uBACA,oBACA,iBACA,mBACA,qBACA,oBACA,mBACA,kBACA,qBACA,mBACA,kBACA,oBACA,0BACA,qBACA,oBACA,oBACA,kBACA,oBACA,kBACA,mBACA,uBACA,qBACA,qBACA,oBACA,mBACA,oBACA,mBACA,iBACA,gBACA,eACA,iBACA,mBACA,kBACA,iBACA,gBACA,mBACA,iBACA,wBACA,mBACA,kBACA,kBACA,gBACA,kBACA,gBACA,iBACA,qBACA,mBACA,mBACA,mBACA,kBACA,iBACA,eACA,cACA,aACA,aACA,qBACA,eACA,aACA,eACA,YACA,WACA,eACA,wBACA,cACA,oBACA,iBACA,cACA,eACA,eACA,aACA,iBACA,UACA,cACA,oBACA,iBACA,YACA,sBACA,gBACA,sBACA,gBACA,uBACA,iBACA,oBACA,cACA,+BACA,yBACA,6BACA,uBACA,gBACA,aACA,sBACA,mBACA,cACA,WACA,cACA,WACA,UACA,gBACA,qBACA,eACA,YACA,SACA,kBACA,kBACA,kBACA,kBACA,kBACA,oBACA,WACA,sBACA,mBACA,qBACA,kBACA,oBACA,oBACA,iBACA,mBACA,iBACA,gBACA,sBACA,0BACA,oBACA,gBACA,0BACA,kBACA,kBACA,eACA,wBACA,kBACA,wBACA,kBACA,mBACA,kBACA,kBACA,kBACA,uBACA,iBACA,iBACA,iBACA,gBACA,oBACA,qBACA,uBACA,gBACA,gBACA,gBACA,gBACA,qBACA,kBACA,eACA,eACA,iBACA,kBACA,mBACA,YACA,eACA,gBACA,aACA,kBACA,aACA,iBACA,cACA,mBACA,aACA,wBACA,kBACA,kBACA,sBACA,gBACA,wBACA,kBACA,uBACA,iBACA,sBACA,gBACA,YACA,yBACA,yBACA,0BACA,uBACA,sBACA,uBACA,kBACA,sBACA,kBACA,uBACA,mBACA,oBACA,qBACA,gBACA,uBACA,wBACA,mBACA,mBACA,oBACA,qBACA,sBACA,iBACA,aACA,uBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,4BACA,gCACA,0BACA,iCACA,2BACA,sBACA,4BACA,sBACA,6BACA,uBACA,0BACA,8BACA,wBACA,+BACA,yBACA,oBACA,sBACA,sBACA,uBACA,oBACA,wBACA,kBACA,wBACA,wBACA,yBACA,sBACA,yBACA,yBACA,0BACA,uBACA,mBACA,sBACA,gBACA,mBACA,mBACA,kBACA,yBACA,iBACA,sBACA,gBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,kBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,gBACA,iBACA,yBACA,sBACA,mBACA,qBACA,oBACA,cACA,aACA,oBACA,sBACA,cACA,qBACA,qBACA,kBACA,gCACA,uBACA,sBACA,kBACA,wBACA,wBACA,mBACA,2BACA,oBACA,sBACA,mBACA,wBACA,sBACA,0BACA,wBACA,uBACA,eACA,sBACA,YACA,qBACA,oBACA,oBACA,qBACA,oBACA,mBACA,oBACA,oBACA,0BACA,iBACA,gBACA,aACA,gBACA,kBACA,iBACA,gBACA,eACA,kBACA,gBACA,gBACA,uBACA,kBACA,iBACA,iBACA,kBACA,kBACA,kBACA,iBACA,iBACA,iBACA,iBACA,iBACA,iBACA,iBACA,iBACA,iBACA,eACA,iBACA,eACA,gBACA,gBACA,oBACA,kBACA,kBACA,iBACA,kBACA,gBACA,gBACA,cACA,aACA,YACA,qBACA,kBACA,gBACA,kBACA,iBACA,gBACA,eACA,qBACA,0BACA,kBACA,gBACA,oBACA,uBACA,kBACA,eACA,iBACA,oBACA,gBACA,iBACA,eACA,iBACA,eACA,gBACA,oBACA,gBACA,kBACA,iBACA,gBACA,gBACA,iBACA,cACA,kBACA,aACA,YACA,cACA,aACA,kBACA,YACA,kBACA,kBACA,iBACA,eACA,gBACA,cACA,eACA,WACA,gBACA,aACA,aACA,kBACA,eACA,iBACA,cACA,gBACA,gBACA,cACA,eACA,WACA,YACA,kBACA,qBACA,kBACA,qBACA,kBACA,uBACA,wBACA,mBACA,eACA,eACA,eACA,iBACA,cACA,YACA,iBACA,cACA,iBACA,cACA,oBACA,iBACA,YACA,cACA,eACA,WACA,kBACA,eACA,gBACA,mBACA,gBACA,mBACA,gBACA,kBACA,eACA,aACA,gBACA,gBACA,aACA,cACA,WACA,qBACA,kBACA,eACA,sBACA,mBACA,gBACA,2BACA,qBACA,4BACA,sBACA,2BACA,qBACA,yBACA,mBACA,4BACA,sBACA,0BACA,oBACA,yBACA,mBACA,0BACA,oBACA,WACA,aACA,UACA,eACA,YACA,wBACA,wBACA,wBACA,yBACA,wBACA,0BACA,sBACA,oBACA,iBACA,cACA,WACA,kBACA,eACA,YACA,gBACA,eACA,YACA,kBACA,eACA,kBACA,UACA,cACA,eACA,eACA,mBACA,WACA,aACA,UACA,cACA,gBACA,sBACA,uBACA,mBACA,sBACA,mBACA,oBACA,qBACA,uBACA,+BACA,2BACA,6BACA,6BACA,wBACA,8BACA,+BACA,qBACA,mBACA,mBACA,uBACA,sBACA,mBACA,qBACA,qBACA,oBACA,sBACA,sBACA,0BACA,kBACA,yBACA,0BACA,2BACA,mBACA,kBACA,mBACA,uBACA,kBACA,oBACA,qBACA,oBACA,mBACA,kBACA,qBACA,mBACA,uBACA,oBACA,sBACA,mBACA,uBACA,qBACA,oBACA,oBACA,sBACA,4BACA,oBACA,qBACA,qBACA,kBACA,mBACA,oBACA,qBACA,kBACA,qBACA,kBACA,mBACA,oBACA,eACA,yBACA,sBACA,gBACA,iBACA,UACA,kBACA,mBACA,eACA,mBACA,gBACA,kBACA,qBACA,mBACA,0BACA,qBACA,oBACA,qBACA,mBACA,oBACA,kBACA,mBACA,qBACA,oBACA,mBACA,gBACA,eACA,cACA,WACA,YACA,mBACA,gBACA,aACA,eACA,iBACA,cACA,wBACA,oBACA,mBACA,sBACA,sBACA,wBACA,oBACA,iBACA,8BACA,2BACA,6BACA,wBACA,0BACA,yBACA,wBACA,uBACA,0BACA,wBACA,+BACA,yBACA,yBACA,uBACA,yBACA,uBACA,wBACA,4BACA,0BACA,yBACA,wBACA,sBACA,qBACA,oBACA,mBACA,qBACA,oBACA,+BACA,yBACA,qBACA,uBACA,sBACA,qBACA,oBACA,uBACA,qBACA,4BACA,sBACA,sBACA,oBACA,sBACA,oBACA,qBACA,yBACA,uBACA,sBACA,qBACA,mBACA,kBACA,iBACA,qBACA,uBACA,sBACA,qBACA,oBACA,uBACA,qBACA,4BACA,sBACA,+BACA,iCACA,gCACA,+BACA,8BACA,iCACA,+BACA,sCACA,gCACA,gCACA,8BACA,gCACA,8BACA,+BACA,mCACA,iCACA,gCACA,+BACA,6BACA,4BACA,2BACA,sBACA,oBACA,sBACA,oBACA,qBACA,yBACA,uBACA,sBACA,qBACA,mBACA,kBACA,iBACA,0BACA,sBACA,mBACA,uBACA,yBACA,2BACA,wBACA,uBACA,sBACA,yBACA,uBACA,8BACA,yBACA,wBACA,0BACA,wBACA,sBACA,wBACA,sBACA,uBACA,2BACA,0BACA,yBACA,wBACA,uBACA,qBACA,4BACA,oBACA,mBACA,wBACA,qBACA,mBACA,mBACA,iBACA,iBACA,iBACA,gBACA,uBACA,oBACA,uBACA,yBACA,wBACA,uBACA,sBACA,yBACA,uBACA,8BACA,yBACA,wBACA,wBACA,sBACA,wBACA,sBACA,uBACA,2BACA,yBACA,wBACA,uBACA,qBACA,oBACA,mBACA,kBACA,kBACA,eACA,sBACA,sBACA,wBACA,uBACA,sBACA,qBACA,wBACA,sBACA,6BACA,uBACA,uBACA,qBACA,uBACA,qBACA,sBACA,0BACA,wBACA,uBACA,sBACA,wBACA,uBACA,oBACA,mBACA,kBACA,eACA,kBACA,oBACA,mBACA,kBACA,iBACA,oBACA,kBACA,yBACA,mBACA,mBACA,iBACA,mBACA,mBACA,gBACA,iBACA,kBACA,sBACA,oBACA,mBACA,kBACA,gBACA,eACA,cACA,iBACA,kBACA,cACA,oBACA,iBACA,cACA,oBACA,iBACA,cACA,qBACA,eACA,kBACA,YACA,kBACA,YACA,kBACA,YACA,kBACA,YACA,kBACA,YACA,kBACA,YACA,iBACA,WACA,iBACA,0BACA,0BACA,uBACA,oBACA,gBACA,oBACA,iBACA,gBACA,kBACA,eACA,eACA,cACA,WACA,mBACA,gBACA,0BACA,oBACA,kBACA,eACA,aACA,cACA,WACA,aACA,UACA,cACA,UACA,gBACA,eACA,cACA,WACA,2BACA,oBACA,mBACA,mBACA,WACA,kBACA,eACA,gBACA,eACA,eACA,YACA,iBACA,kBACA,oBACA,mBACA,kBACA,iBACA,oBACA,kBACA,yBACA,oBACA,mBACA,wBACA,kBACA,mBACA,mBACA,iBACA,mBACA,iBACA,kBACA,sBACA,oBACA,mBACA,kBACA,gBACA,eACA,cACA,iBACA,gBACA,aACA,UACA,yBACA,6BACA,gBACA,aACA,0BACA,cACA,oBACA,iBACA,cACA,WACA,iBACA,gBACA,eACA,aACA,UACA,WACA,kBACA,eACA,mBACA,mBACA,gBACA,eACA,gBACA,aACA,kBACA,eACA,YACA,gBACA,aACA,kBACA,eACA,oBACA,kBACA,gBACA,kBACA,eACA,wBACA,yBACA,sBACA,kBACA,eACA,gBACA,qBACA,qBACA,kBACA,oBACA,oBACA,eACA,sBACA,mBACA,eACA,gBACA,aACA,cACA,qBACA,gBACA,eACA,aACA,eACA,WACA,UACA,gBACA,kBACA,eACA,kBACA,aACA,kBACA,eACA,WACA,iBACA,cACA,eACA,YACA,oBACA,aACA,gBACA,oBACA,oBACA,qBACA,kBACA,iBACA,sBACA,gBACA,gBACA,gBACA,eACA,aACA,mBACA,gBACA,sBACA,eACA,gBACA,kBACA,iBACA,eACA,mBACA,eACA,iBACA,iBACA,mBACA,qBACA,iBACA,mBACA,eACA,kBACA,iBACA,eACA,gBACA,gBACA,cACA,sBACA,iBACA,kBACA,gBACA,eACA,gBACA,iBACA,cACA,mBACA,iBACA,mBACA,mBACA,iBACA,sBACA,gBACA,eACA,kBACA,iBACA,eACA,eACA,kBACA,kBACA,kBACA,kBACA,mBACA,mBACA,kBACA,iBACA,kBACA,kBACA,kBACA,kBACA,kBACA,iBACA,kBACA,kBACA,iBACA,kBACA,kBACA,kBACA,kBACA,kBACA,kBACA,qBACA,kBACA,iBACA,iBACA,kBACA,YACA,cACA,WACA,eACA,YACA,gBACA,mBACA,iBACA,kBACA,gBACA,iBACA,iBACA,cACA,aACA,cACA,qBACA,kBACA,uBACA,qBACA,kBACA,gBACA,qBACA,kBACA,eACA,uBACA,kBACA,eACA,cACA,WACA,kBACA,eACA,YACA,kBACA,YACA,iBACA,cACA,WACA,eACA,YACA,YACA,gBACA,aACA,eACA,YACA,gBACA,qBACA,mBACA,kBACA,gBACA,gBACA,iBACA,gBACA,aACA,aACA,gBACA,oBACA,YACA,eACA,aACA,WACA,iBACA,mBACA,kBACA,iBACA,gBACA,mBACA,iBACA,wBACA,mBACA,kBACA,kBACA,gBACA,iBACA,kBACA,gBACA,iBACA,qBACA,mBACA,kBACA,iBACA,oBACA,eACA,cACA,aACA,iBACA,cACA,cACA,aACA,eACA,YACA,kBACA,eACA,eACA,YACA,iBACA,mBACA,sBACA,gBACA,gBACA,aACA,iBACA,cACA,iBACA,kBACA,cACA,kBACA,eACA,oBACA,iBACA,oBACA,iBACA,eACA,YACA,YACA,oBACA,sBACA,qBACA,oBACA,qBACA,oBACA,mBACA,kBACA,wBACA,uBACA,wBACA,0BACA,wBACA,iBACA,qBACA,kBACA,wBACA,sBACA,eACA,mBACA,aACA,kBACA,eACA,YACA,UACA,eACA,cACA,WACA,uBACA,gBACA,oBACA,gBACA,iBACA,cACA,eACA,2BACA,0BACA,qBACA,YACA,gBACA,eACA,YACA,eACA,YACA,aACA,cACA,WACA,UACA,iBACA,YACA,eACA,YACA,aACA,YACA,eACA,kBACA,gBACA,eACA,mBACA,YACA,qBACA,mBACA,aACA,uBACA,iBACA,SACA,SACA,SACA,SACA,SACA,SACA,gBACA,aACA,gBACA,oBACA,iBACA,eACA,uBACA,uBACA,eACA,cACA,qBACA,eACA,oBACA,eACA,uBACA,qBACA,cACA,gBACA,aACA,WACA,eACA,WACA,UACA,iBACA,cACA,uBACA,oBACA,iBACA,iBACA,cACA,wBACA,kBACA,kBACA,qBACA,iBACA,eACA,gBACA,uBACA,YACA,gBACA,gBACA,aACA,wBACA,iBACA,gBACA,aACA,uBACA,iBACA,wBACA,kBACA,wBACA,kBACA,cACA,gBACA,uBACA,8BACA,wBACA,iBACA,yBACA,mBACA,WACA,oBACA,qBACA,iBACA,qBACA,qBACA,qBACA,qBACA,gBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,oBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,iBACA,cACA,wBACA,yBACA,qBACA,0BACA,2BACA,uBACA,kBACA,eACA,iBACA,iBACA,mBACA,gBACA,mBACA,gBACA,iBACA,oBACA,cACA,YACA,eACA,iBACA,gBACA,cACA,iBACA,cACA,eACA,cACA,eACA,sBACA,eACA,gBACA,mBACA,eACA,gBACA,eACA,cACA,eACA,mBACA,iBACA,iBACA,gBACA,iBACA,iBACA,eACA,gBACA,aACA,YACA,WACA,eACA,mBACA,qBACA,sBACA,oBACA,mBACA,mBACA,gBACA,WACA,kBACA,iBACA,cACA,eACA,kBACA,gBACA,eACA,cACA,cACA,gBACA,gBACA,kBACA,eACA,iBACA,eACA,YACA,eACA,iBACA,cACA,YACA,SACA,eACA,YACA,qBACA,qBACA,kBACA,eACA,uBACA,iBACA,wBACA,kBACA,wBACA,kBACA,gBACA,uBACA,8BACA,wBACA,iBACA,yBACA,mBACA,8BACA,kCACA,4BACA,mCACA,6BACA,wBACA,4BACA,sBACA,6BACA,uBACA,2BACA,+BACA,yBACA,gCACA,0BACA,qBACA,kBACA,eACA,eACA,eACA,iBACA,sBACA,mBACA,cACA,6BACA,8BACA,0BACA,aACA,aACA,cACA,uBACA,iBACA,UACA,WACA,eACA,aACA,YACA,aACA,aACA,UACA,mBACA,kBACA,mBACA,eACA,0BACA,8BACA,4BACA,eACA,gBACA,gBACA,aACA,aACA,YACA,cACA,WACA,WACA,uBACA,uBACA,kBACA,eACA,eACA,mBACA,YACA,uBACA,uBACA,sBACA,mBACA,gBACA,qBACA,kBACA,cACA,wBACA,wBACA,sBACA,wBACA,uBACA,qBACA,uBACA,kBACA,8BACA,4BACA,sBACA,kBACA,oBACA,oBACA,sBACA,iCACA,+BACA,oBACA,uBACA,iBACA,mBACA,iBACA,2BACA,yBACA,mBACA,gBACA,iBACA,gCACA,8BACA,iCACA,+BACA,yBACA,oBACA,aACA,cACA,WACA,cACA,WACA,aACA,YACA,cACA,cACA,cACA,sBACA,uBACA,sBACA,iBACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,oBACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,iBACA,cACA,kBACA,eACA,cACA,iBACA,iBACA,iBACA,WACA,cACA,WACA,gBACA,kBACA,kBACA,iBACA,eACA,WACA,mBACA,gBACA,eACA,mBACA,cACA,cACA,oBACA,aACA,qBACA,qBACA,kBACA,eACA,oBACA,iBACA,eACA,iBACA,gBACA,eACA,cACA,iBACA,eACA,sBACA,gBACA,gBACA,cACA,kBACA,eACA,gBACA,cACA,eACA,mBACA,iBACA,gBACA,8BACA,wBACA,iBACA,eACA,aACA,YACA,WACA,eACA,kBACA,gBACA,eACA,eACA,cACA,gBACA,eACA,YACA,cACA,aACA,kBACA,eACA,iBACA,cACA,eACA,YACA,eACA,YACA,gBACA,aACA,aACA,eACA,iBACA,gBACA,eACA,cACA,iBACA,eACA,sBACA,eACA,iBACA,kBACA,gBACA,gBACA,cACA,uBACA,iBACA,gBACA,cACA,eACA,mBACA,iBACA,gBACA,eACA,aACA,YACA,WACA,iBACA,cACA,UACA,oBACA,WACA,aACA,iBACA,mBACA,kBACA,iBACA,gBACA,mBACA,iBACA,wBACA,mBACA,kBACA,kBACA,gBACA,kBACA,gBACA,iBACA,qBACA,mBACA,kBACA,iBACA,eACA,cACA,aACA,cACA,gBACA,UACA,kBACA,eACA,eACA,iBACA,cACA,WACA,cACA,WACA,sBACA,mBACA,cACA,iBACA,mBACA,mBACA,cACA,uBACA,qBACA,sBACA,oBACA,mBACA,kBACA,oBACA,mBACA,oBACA,gBACA,cACA,cACA,cACA,cACA,oBACA,aACA,kBACA,mBACA,oBACA,mBACA,kBACA,kBACA,iBACA,iBACA,aACA,kBACA,iBACA,WACA,kBACA,eACA,cACA,WACA,aACA,YACA,yBACA,yBACA,sBACA,mBACA,oBACA,aACA,cACA,YACA,eACA,gBACA,WACA,mBACA,qBACA,oBACA,mBACA,kBACA,qBACA,mBACA,0BACA,oBACA,oBACA,kBACA,oBACA,kBACA,mBACA,uBACA,qBACA,oBACA,mBACA,iBACA,gBACA,eACA,kBACA,oBACA,qBACA,mBACA,2BACA,qBACA,wBACA,0BACA,yBACA,wBACA,uBACA,0BACA,wBACA,+BACA,yBACA,yBACA,uBACA,yBACA,uBACA,wBACA,4BACA,0BACA,yBACA,wBACA,sBACA,qBACA,oBACA,kBACA,iBACA,oBACA,kBACA,kBACA,yBACA,qBACA,mBACA,sBACA,mBACA,iBACA,mBACA,iBACA,kBACA,sBACA,oBACA,oBACA,mBACA,kBACA,gBACA,eACA,cACA,kBACA,eACA,gBACA,aACA,0BACA,wBACA,mBACA,mBACA,aACA,qBACA,kBACA,oBACA,iBACA,oBACA,iBACA,mBACA,gBACA,oBACA,mBACA,cACA,WACA,gBACA,eACA,oBACA,YACA,cACA,WACA,oBACA,iBACA,eACA,gBACA,mBACA,kBACA,cACA,gBACA,cACA,yBACA,mBACA,qBACA,cACA,iBACA,eACA,sBACA,gBACA,sBACA,gBACA,gBACA,oBACA,cACA,mBACA,oBACA,gBACA,eACA,kBACA,wBACA,kBACA,cACA,cACA,eACA,eACA,mBACA,oBACA,oBACA,cACA,iBACA,gBACA,eACA,kBACA,eACA,oBACA,qBACA,sBACA,gBACA,mBACA,sBACA,qBACA,iBACA,mBACA,aACA,gBACA,eACA,eACA,YACA,aACA,YACA,iBACA,cACA,gBACA,WACA,YACA,gBACA,kBACA,eACA,aACA,kBACA,eACA,YACA,gBACA,eACA,YACA,aACA,UACA,oBACA,oBACA,mBACA,mBACA,qBACA,kBACA,eACA,eACA,YACA,uBACA,sBACA,oBACA,iBACA,mBACA,aACA,iBACA,cACA,iBACA,cACA,WACA,aACA,UACA,kBACA,wBACA,oBACA,gBACA,cACA,WACA,kBACA,eACA,eACA,YACA,sBACA,mBACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,cACA,aACA,cACA,YACA,oBACA,iBACA,cACA,oBACA,qBACA,iBACA,UACA,kBACA,eACA,SACA,YACA,eACA,aACA,iBACA,yBACA,mBACA,WACA,eACA,oBACA,oBACA,iBACA,cACA,eACA,aACA,gBACA,kBACA,eACA,YACA,iBACA,cACA,4BACA,yBACA,0BACA,uBACA,kBACA,eACA,gBACA,mBACA,gBACA,qBACA,kBACA,iBACA,cACA,eACA,gBACA,aACA,UACA,UACA,YACA,kBACA,gBACA,iBACA,aACA,qBACA,eACA,oBACA,iBACA,cACA,qBACA,kBACA,eACA,gBACA,gBACA,aACA,iBACA,cACA,qBACA,kBACA,gBACA,mBACA,iBACA,kBACA,oBACA,eACA,oBACA,iBACA,gBACA,aACA,YACA,cACA,gBACA,kBACA,iBACA,gBACA,eACA,kBACA,gBACA,gBACA,uBACA,kBACA,iBACA,iBACA,eACA,iBACA,eACA,gBACA,oBACA,kBACA,mBACA,mBACA,kBACA,iBACA,kBACA,gBACA,cACA,aACA,YACA,qBACA,YACA,WACA,0BACA,yBACA,0BACA,uBACA,eACA,aACA,UACA,cACA,cACA,WACA,YACA,gBACA,UACA,eACA,mBACA,gBACA,aACA,eACA,YACA,kBACA,mBACA,qBACA,oBACA,eACA,gBACA,YACA,gBACA,aACA,gBACA,aACA,eACA,YACA,qBACA,kBACA,eACA,mBACA,mBACA,qBACA,wBACA,kBACA,wBACA,kBACA,uBACA,iBACA,yBACA,mBACA,2BACA,qBACA,8BACA,wBACA,uBACA,iBACA,4BACA,sBACA,4BACA,sBACA,kBACA,kBACA,gBACA,eACA,wBACA,wBACA,0BACA,mBACA,qBACA,oBACA,cACA,YACA,WACA,gBACA,gBACA,WACA,UACA,gBACA,aACA,kBACA,eACA,YACA,kBACA,oBACA,mBACA,kBACA,iBACA,oBACA,kBACA,yBACA,oBACA,mBACA,mBACA,iBACA,mBACA,iBACA,kBACA,sBACA,oBACA,mBACA,kBACA,gBACA,eACA,cACA,kBACA,eACA,gBACA,qBACA,eACA,iBACA,cACA,UACA,cACA,WACA,YACA,WACA,oBACA,mBACA,4BACA,sBACA,mBACA,iBACA,cACA,eACA,gBACA,YACA,aACA,oBACA,mBACA,oBACA,mBACA,mBACA,gBACA,eACA,aACA,mBACA,gBACA,mBACA,cACA,mBACA,gBACA,aACA,iBACA,kBACA,cACA,gBACA,aACA,mBACA,eACA,YACA,aACA,aACA,eACA,YACA,eACA,YACA,wBACA,qBACA,kBACA,uBACA,wBACA,oBACA,qBACA,iBACA,cACA,mBACA,mBACA,mBACA,mBACA,mBACA,oBACA,YACA,eACA,iBACA,oBACA,iBACA,cACA,iBACA,oBACA,iBACA,sBACA,6BACA,0BACA,8BACA,wBACA,gBACA,0BACA,2BACA,uBACA,iBACA,cACA,mBACA,iBACA,iBACA,cACA,eACA,YACA,iBACA,yBACA,wBACA,uBACA,aACA,gBACA,iBACA,aACA,oBACA,iBACA,cACA,sBACA,oBACA,kBACA,gBACA,mBACA,aACA,mBACA,aACA,cACA,uBACA,uBACA,uBACA,uBACA,uBACA,sBACA,uBACA,uBACA,sBACA,sBACA,sBACA,sBACA,sBACA,qBACA,sBACA,sBACA,mBACA,YACA,gBACA,aACA,cACA,eACA,WACA,eACA,YACA,gBACA,aACA,oBACA,uBACA,oBACA,oBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,qBACA,cACA,cACA,gBACA,uBACA,sBACA,gBACA,sBACA,aACA,aACA,eACA,YACA,gBACA,aACA,sBACA,mBACA,gBACA,UACA,qBACA,kBACA,gBACA,aACA,aACA,mBACA,eACA,YACA,UACA,gBACA,gBACA,iBACA,cACA,gBACA,kBACA,eACA,YACA,WACA,mBACA,gBACA,cACA,eACA,sBACA,mBACA,YACA,cACA,WACA,gBACA,aACA,iBACA,gBACA,aACA,kBACA,eACA,sBACA,cACA,iBACA,qBACA,kBACA,iBACA,kBACA,eACA,kBACA,iBACA,cACA,aACA,mBACA,gBACA,UACA,gBACA,aACA,kBACA,cACA,iBACA,cACA,gBACA,aACA,eACA,cACA,WACA,UACA,0BACA,wBACA,gBACA,cACA,iBACA,gBACA,gBACA,aACA,kBACA,gBACA,yBACA,mBACA,qBACA,oBACA,mBACA,kBACA,qBACA,mBACA,0BACA,qBACA,oBACA,oBACA,kBACA,oBACA,kBACA,mBACA,uBACA,qBACA,oBACA,mBACA,iBACA,gBACA,eACA,gBACA,aACA,aACA,aACA,eACA,YACA,aACA,aACA,eACA,YACA,iBACA,iBACA,mBACA,wBACA,kBACA,4BACA,sBACA,oBACA,iBACA,gBACA,mBACA,iBACA,wBACA,mBACA,uBACA,iBACA,kBACA,uBACA,iBACA,kBACA,gBACA,kBACA,gBACA,iBACA,qBACA,mBACA,kBACA,iBACA,eACA,cACA,aACA,cACA,WACA,kBACA,eACA,iBACA,YACA,cACA,WACA,kBACA,2BACA,sBACA,uBACA,oBACA,mBACA,aACA,eACA,qBACA,eACA,sBACA,gBACA,eACA,eACA,mBACA,eACA,eACA,eACA,cACA,cACA,kBACA,cACA,gBACA,mBACA,gBACA,iBACA,cACA,oBACA,iBACA,oBACA,YACA,YACA,cACA,aACA,YACA,gBACA,mBACA,gBACA,gBACA,cACA,mBACA,gBACA,cACA,kBACA,gBACA,aACA,WACA,cACA,WACA,kBACA,iBACA,aACA,aACA,aACA,qBACA,2BACA,2BACA,oBACA,sBACA,4BACA,4BACA,qBACA,aACA,UACA,cACA,WACA,iBACA,eACA,YACA,wBACA,sBACA,kBACA,YACA,eACA,mBACA,gBACA,gBACA,iBACA,aACA,aACA,gBACA,aACA,mBACA,YACA,aACA,UACA,UACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,sBACA,sBACA,uBACA,oBACA,qBACA,wBACA,kBACA,wBACA,wBACA,yBACA,sBACA,yBACA,yBACA,0BACA,uBACA,gBACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,qBACA,eACA,oBACA,mBACA,iBACA,gBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,kBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,oBACA,gBACA,iBACA,kBACA,iBACA,0BACA,2BACA,0BACA,uBACA,oBACA,mCACA,6BACA,mCACA,6BACA,oCACA,8BACA,iCACA,2BACA,+BACA,yBACA,qCACA,+BACA,qCACA,+BACA,sCACA,gCACA,mCACA,6BACA,sCACA,gCACA,sCACA,gCACA,uCACA,iCACA,oCACA,8BACA,0BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,2BACA,yBACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,iCACA,2BACA,8BACA,wBACA,2BACA,qBACA,oBACA,6BACA,mBACA,cACA,aACA,sBACA,oBACA,aACA,aACA,eACA,gBACA,YACA,iBACA,eACA,aACA,iBACA,qBACA,eACA,cACA,WACA,kBACA,eACA,YACA,mBACA,YACA,uBACA,oBACA,eACA,cACA,oBACA,qBACA,kBACA,cACA,eACA,YACA,kBACA,iBACA,oBACA,gBACA,gBACA,cACA,aACA,UACA,gBACA,cACA,aACA,cACA,aACA,cACA,UACA,iBACA,cACA,cACA,aACA,kBACA,UACA,eACA,YACA,cACA,cACA,uBACA,qBACA,aACA,eACA,YACA,aACA,iBACA,kBACA,gBACA,kBACA,kBACA,iBACA,kBACA,iBACA,eACA,mBACA,gBACA,eACA,iBACA,oBACA,YACA,aACA,UACA,cACA,WACA,iBACA,iBACA,iBACA,iBACA,iBACA,WACA,kBACA,gBACA,aACA,aACA,mBACA,gBACA,yBACA,4BACA,uBACA,qBACA,sBACA,kBACA,kBACA,eACA,cACA,WACA,gBACA,eACA,gBACA,kBACA,eACA,UACA,kBACA,gBACA,mBACA,uBACA,uBACA,mBACA,sBACA,eACA,sBACA,iBACA,eACA,qBACA,uBACA,eACA,cACA,cACA,kBACA,sBACA,mBACA,gBACA,oBACA,iBACA,cACA,aACA,gBACA,aACA,UACA,YACA,mBACA,gBACA,oBACA,qBACA,qBACA,qBACA,qBACA,oBACA,qBACA,qBACA,sBACA,+BACA,yBACA,wBACA,wBACA,qBACA,oBACA,eACA,UACA,iBACA,kBACA,qBACA,kBACA,WACA,WACA,uBACA,oBACA,sBACA,mBACA,eACA,YACA,cACA,kBACA,sBACA,4BACA,mBACA,oBACA,oBACA,mBACA,oBACA,oBACA,wBACA,wBACA,uBACA,mBACA,YACA,cACA,iBACA,eACA,YACA,YACA,cACA,gBACA,qBACA,kBACA,uBACA,oBACA,YACA,iBACA,kBACA,sBACA,gBACA,uBACA,qBACA,sBACA,oBACA,kBACA,eACA,mBACA,aACA,YACA,gBACA,WACA,YACA,eACA,oBACA,oBACA,mBACA,kBACA,kBACA,iBACA,qBACA,6BACA,uBACA,kBACA,2BACA,eACA,gBACA,cACA,cACA,mBACA,gBACA,aACA,aACA,oBACA,mBACA,eACA,kBACA,YACA,UACA,oBACA,iBACA,aACA,UACA,qBACA,kBACA,eACA,gBACA,aACA,aACA,aACA,UACA,eACA,iBACA,gBACA,iBACA,eACA,cACA,iBACA,eACA,eACA,sBACA,gBACA,gBACA,cACA,gBACA,cACA,eACA,mBACA,iBACA,gBACA,iBACA,eACA,aACA,YACA,WACA,iBACA,iBACA,gBACA,YACA,cACA,eACA,uBACA,oBACA,iBACA,cACA,oBACA,oBACA,kBACA,mBACA,eACA,oBACA,sBACA,yBACA,mBACA,gBACA,mBACA,wBACA,qBACA,aACA,YACA,qBACA,kBACA,eACA,iBACA,eACA,gBACA,YACA,iBACA,cACA,oBACA,iBACA,qBACA,mBACA,YACA,aACA,UACA,eACA,kBACA,YACA,oBACA,iBACA,cACA,cACA,cACA,gBACA,aACA,WACA,cACA,WACA,gBACA,aACA,mBACA,gBACA,cACA,WACA,eACA,eACA,eACA,eACA,iBACA,eACA,kBACA,kBACA,iBACA,eACA,mBACA,eACA,cACA,sBACA,mBACA,cACA,iBACA,eACA,kBACA,cACA,gBACA,uBACA,uBACA,uBACA,uBACA,uBACA,uBACA,oBACA,oBACA,WACA,gBACA,kBACA,eACA,iBACA,iBACA,cACA,aACA,oBACA,iBACA,YACA,YACA,YACA,YACA,cACA,WACA,cACA,WACA,qBACA,kBACA,eACA,qBACA,qBACA,gBACA,aACA,eACA,gBACA,YACA,YACA,WACA,gBACA,kBACA,iBACA,gBACA,eACA,kBACA,gBACA,oBACA,uBACA,iBACA,oBACA,qBACA,iBACA,eACA,iBACA,eACA,gBACA,oBACA,kBACA,iBACA,gBACA,cACA,kBACA,eACA,aACA,YACA,mBACA,iBACA,qBACA,kBACA,cACA,QACA,YACA,YACA,YACA,YACA,SACA,oBACA,cACA,WACA,kBACA,eACA,UACA,qBACA,kBACA,mBACA,sBACA,mBACA,gBACA,kBACA,mBACA,wBAC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",
|
|
6
|
+
"names": ["React", "useMemo", "cn", "Avatar", "src", "status", "size", "alt", "initials", "imageStyles", "initialsStyles", "fontStyles", "defaultAvatarStyles", "statusStyles", "imageSize", "Avatar_default", "Avatar_default", "React", "cn", "React", "SolidIcons", "OutlineIcons", "FA", "tablerIconNames", "cn", "React", "TablerIcons", "TablerIcon", "icon", "className", "Icon", "TablerIcon_default", "isHeroIcon", "name", "SolidIcons", "OutlineIcons", "isTablerIcon", "tablerIconNames", "isFAIcon", "FA", "isUnifiedIconName", "DynamicIcon", "icon", "className", "outline", "CustomSVG", "props", "React", "TablerIcon_default", "cn", "Icon", "cn", "IconWithShadow", "props", "DynamicIcon", "IconWithShadow_default", "Badge", "color", "variant", "label", "size", "loading", "statusDot", "removeButton", "actionButton", "badgeStyles", "cn", "statusDotStyles", "removeButtonStyles", "loaderStyles", "React", "DynamicIcon", "Badge_default", "badges_default", "Badge_default", "cn", "React", "forwardRef", "_Button", "actionType", "size", "label", "icon", "iconObj", "CustomSVGIcon", "fullWidth", "iconPosition", "asLink", "isLoading", "className", "props", "ref", "iconStyles", "cn", "loaderColors", "loaderSize", "React", "DynamicIcon", "Button", "forwardRef", "Button_default", "Button_default", "cn", "Capsule", "actionType", "size", "label", "fullWidth", "asLink", "isLoading", "className", "props", "iconStyles", "loaderColors", "loaderSize", "Capsule_default", "Capsule_default", "React", "cn", "Loader", "className", "Loader_default", "React", "useMemo", "cn", "RadialProgress", "inputValue", "radius", "children", "className", "r", "drawPercentage", "roundCircum", "xyPos", "viewPortXY", "RadialProgress_default", "NProgress_default", "RadialProgress_default", "React", "cn", "React", "cn", "InputLabel", "isPlaceholder", "id", "isRequired", "isDisabled", "isActive", "isError", "label", "labelStyles", "InputLabel_default", "InputLabel_default", "useLayoutEffect", "useState", "id", "generateId", "useId", "setId", "Checkbox", "label", "id", "isDisabled", "isChecked", "isRequired", "isError", "message", "value", "onChange", "hasBorder", "className", "props", "uniqueID", "useId", "checkboxStyles", "cn", "wrapperStyles", "handleChange", "e", "targetValue", "targetChecked", "React", "InputLabel_default", "Checkbox_default", "checkbox_default", "Checkbox_default", "React", "useState", "useEffect", "cn", "HeadlessUICombobox", "classNames", "classes", "Combobox", "label", "items", "displayProperty", "displayValue", "keyProperty", "onChange", "placeholder", "message", "isDisabled", "isError", "isRequired", "id", "nullable", "query", "setQuery", "useState", "selectedItem", "setSelectedItem", "onChangeValue", "value", "useEffect", "dv", "i", "filteredItems", "item", "labelStyles", "cn", "buttonStyles", "optionStyles", "React", "HeadlessUICombobox", "e", "InputLabel_default", "event", "DynamicIcon", "index", "active", "selected", "ComboBox_default", "combobox_default", "ComboBox_default", "React", "forwardRef", "cn", "InputField", "type", "id", "name", "value", "isFocused", "isError", "isReadonly", "isDisabled", "handleChange", "required", "clientSideCheck", "className", "placeholder", "rest", "ref", "e", "_InputField", "InputField_default", "InputField_default", "React", "cn", "NestedInputButton", "icon", "ctaLabel", "align", "isClear", "onClickHandler", "buttonProps", "handleClick", "buttonStyle", "React", "DynamicIcon", "NestedInputButton_default", "NestedInputButton_default", "React", "cn", "Radio", "label", "id", "name", "isDisabled", "isChecked", "isRequired", "isError", "message", "onChange", "onClick", "value", "uniqueID", "useId", "checboxStyles", "wrapperStyles", "handleChange", "e", "targetValue", "targetChecked", "handleClick", "InputLabel_default", "Radio_default", "radio_default", "Radio_default", "React", "useEffect", "useState", "cn", "Select", "label", "id", "name", "options", "onChange", "isDisabled", "isError", "isRequired", "value", "className", "onFocus", "onBlur", "selectedOption", "setSelectedOption", "useState", "uniqueID", "useId", "useEffect", "handleChange", "e", "targetValue", "wrapperStyle", "React", "InputLabel_default", "Select_default", "select_default", "Select_default", "React", "useId", "cn", "React", "InputCounter", "current", "limit", "InputCounter_default", "Textarea", "id", "name", "label", "isError", "isRequired", "isDisabled", "defaultValue", "message", "isShowCounter", "maxLength", "rows", "cols", "onChange", "value", "placeholder", "className", "ref", "rest", "uniqueID", "useId", "discriptionStyles", "cn", "React", "InputLabel_default", "e", "targetValue", "InputCounter_default", "TextArea_default", "textArea_default", "TextArea_default", "React", "forwardRef", "useEffect", "useId", "useRef", "useState", "cn", "TextInput", "label", "isFocused", "isError", "id", "name", "isRequired", "type", "defaultValue", "isDisabled", "isReadonly", "message", "isShowCounter", "maxLength", "handleChange", "placeholder", "externalValue", "className", "props", "ref", "uniqueID", "useId", "isFocus", "setIsFocus", "useState", "value", "setValue", "inputRef", "useRef", "useEffect", "input", "handleInputFocus", "handleInputBlur", "React", "InputLabel_default", "InputField_default", "v", "cn", "InputCounter_default", "_TextInput", "forwardRef", "TextInput_default", "TextInput_default", "React", "useEffect", "useState", "cn", "Switch", "ToggleSwitch", "isChecked", "onChange", "label", "screenReaderLabel", "name", "id", "variant", "withIcon", "disabled", "groupClassName", "checked", "setChecked", "useState", "useEffect", "React", "Switch", "cn", "v", "DynamicIcon", "ToggleSwitch_default", "toggleSwitch_default", "ToggleSwitch_default", "React", "cn", "AnimatedLabelInput", "props", "id", "containerStyles", "message", "required", "isError", "label", "value", "handleChange", "input", "hasValue", "setHasValue", "React", "cn", "InputField_default", "v", "AnimatedLabelInput_default", "AnimatedLabelInput_default", "React", "cn", "AnimatedLabelTextArea", "props", "id", "containerStyles", "message", "required", "isError", "label", "value", "handleChange", "onChange", "input", "hasValue", "setHasValue", "React", "cn", "textArea_default", "v", "AnimatedLabelTextArea_default", "AnimatedLabelTextArea_default", "React", "cn", "React", "useEffect", "useMemo", "useRef", "useState", "cn", "useFloating", "autoUpdate", "offset", "useDismiss", "useRole", "useClick", "useInteractions", "FloatingFocusManager", "autoPlacement", "shift", "FloatingPortal", "FloatingList", "useTransitionStyles", "useListNavigation", "defaultClassNames", "Dropdown", "items", "id", "label", "groupClassname", "itemsClassname", "itemClassname", "activeItemClassname", "buttonClassname", "iconClassname", "iconSpacingClassname", "CustomDropdownTrigger", "placement", "offsetOptions", "disabled", "onFocus", "onBlur", "props", "isOpen", "setIsOpen", "useState", "activeItem", "setActiveItem", "activeIndex", "setActiveIndex", "listRef", "useRef", "refs", "floatingStyles", "context", "useFloating", "bool", "offset", "autoPlacement", "shift", "autoUpdate", "click", "useClick", "dismiss", "useDismiss", "role", "useRole", "listNavigation", "useListNavigation", "index", "getReferenceProps", "getFloatingProps", "getItemProps", "useInteractions", "useEffect", "ItemComponents", "useMemo", "itemStack", "stackIndex", "item", "itemIndex", "key", "icon", "iconObj", "iconPosition", "isEmphasized", "onClick", "rest", "active", "itemClass", "cn", "React", "node", "DynamicIcon", "isMounted", "transitionStyles", "useTransitionStyles", "FloatingList", "FloatingPortal", "FloatingFocusManager", "DropdownComponent_default", "DropdownComponent_default", "ButtonDropdown", "button", "dropDown", "placement", "offsetOptions", "React", "Button_default", "cn", "DropdownComponent_default", "DynamicIcon", "ButtonDropdown_default", "ButtonDropdown_default", "React", "cn", "EmptySectionPlaceholder", "icon", "mutedText", "primaryMessage", "CallToActionComponent", "actions", "isWide", "React", "IconWithShadow_default", "action", "index", "Button_default", "EmptySectionPlaceholder_default", "EmptySectionPlaceholder_default", "React", "useLayoutEffect", "useRef", "useState", "cn", "FormInputWithAddons", "handleChange", "value", "name", "id", "placeholder", "className", "containerClassName", "leadIcon", "leadLabel", "trailIcon", "trailLabel", "topLabel", "labelClass", "isDisabled", "isReadonly", "isError", "addonOffset", "iconOutlined", "description", "leadIconClassNames", "customIconClass", "type", "rest", "leadLabelRef", "useRef", "trailLabelRef", "leadLabelWidth", "setLeadLabelWidth", "useState", "trailLabelWidth", "setTrailLabelWidth", "useLayoutEffect", "React", "cn", "DynamicIcon", "InputField_default", "FormInputWithAddons_default", "FormInputWithAddons_default", "React", "useEffect", "useId", "useRef", "useState", "cn", "React", "useState", "cn", "InputSelect", "inputOptions", "onSelectOption", "align", "className", "isDisabled", "selectedOption", "setSelectedOption", "handleChange", "e", "targetValue", "option", "TextInputSelect", "label", "isFocused", "isError", "id", "name", "isRequired", "type", "defaultValue", "isDisabled", "message", "isShowCounter", "maxLength", "placeholder", "inputOptions", "selectLocation", "prefix", "onChange", "onSelectOption", "externalValue", "isFocus", "setIsFocus", "useState", "value", "setValue", "inputRef", "useRef", "uniqueID", "useId", "useEffect", "input", "handleInputFocus", "handleInputBlur", "labelStyles", "cn", "discriptionStyles", "React", "InputSelect", "InputField_default", "v", "InputCounter_default", "TextInputSelect_default", "TextInputSelect_default"]
|
|
7
7
|
}
|