@agility/plenum-ui 2.0.0-rc1 → 2.0.0-rc2

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/build.js CHANGED
@@ -1,6 +1,13 @@
1
1
  const { execSync } = require("child_process")
2
2
  const esbuild = require("esbuild")
3
3
  const path = require("path")
4
+ const { Generator } = require('npm-dts');
5
+
6
+ new Generator({
7
+ entry: path.resolve(__dirname, "stories/index.ts"),
8
+ output: path.resolve(__dirname, 'dist/index.d.ts'),
9
+ tsc: "--emitDeclarationOnly --project tsconfig.lib.json"
10
+ }).generate();
4
11
 
5
12
  // Run TypeScript to generate type declarations using the new tsconfig.lib.json
6
13
  execSync("tsc --emitDeclarationOnly --project tsconfig.lib.json", { stdio: "inherit" })
@@ -12,6 +19,7 @@ esbuild
12
19
  bundle: true,
13
20
  platform: "browser",
14
21
  target: ["es6"],
22
+ //HACK outfile: "dist/index.js,"
15
23
  outdir: path.resolve(__dirname, "dist"),
16
24
  sourcemap: true,
17
25
  external: [
@@ -0,0 +1,959 @@
1
+ declare module '@agility/plenum-ui/stories/atoms/Avatar/Avatar' {
2
+ import { FC } from "react";
3
+ export interface IAvatarProps {
4
+ /**
5
+ * source url for the avatar
6
+ */
7
+ src?: string;
8
+ /**
9
+ * Initials we use as fallback if no src is passed
10
+ */
11
+ initials?: string;
12
+ /**
13
+ * optional status
14
+ */
15
+ status?: "offline" | "online" | "busy";
16
+ /**
17
+ * avatar picture size (also affects status indicator)
18
+ */
19
+ size?: "xxs" | "xs" | "sm" | "md" | "lg" | "xl";
20
+ /**
21
+ * avatar img alt
22
+ */
23
+ alt?: string;
24
+ }
25
+ /**
26
+ * Avatar component that shows profile image or name initials of the user
27
+ */
28
+ const Avatar: FC<IAvatarProps>;
29
+ export default Avatar;
30
+
31
+ }
32
+ declare module '@agility/plenum-ui/stories/atoms/Avatar/index' {
33
+ import Avatar, { IAvatarProps } from "@agility/plenum-ui/stories/atoms/Avatar/Avatar";
34
+ export default Avatar;
35
+ export type { IAvatarProps };
36
+
37
+ }
38
+ declare module '@agility/plenum-ui/stories/atoms/badges/Badge' {
39
+ import React from "react";
40
+ export interface IBadgeProps {
41
+ /** The content scheme of the badge */
42
+ color: "primary" | "secondary" | "danger" | "warning" | "success" | "info" | "basic" | "pink";
43
+ /** Render with slightly rounded corners or as a pill shape */
44
+ variant: "rounded" | "pill";
45
+ /** The text content of the badge */
46
+ label: string;
47
+ /** The size of the badge */
48
+ size?: "sm" | "lg";
49
+ /** Render a loader inside the badge */
50
+ loading?: boolean;
51
+ /** Render with a small circle in a darker shade of the color chosen*/
52
+ statusDot?: boolean;
53
+ /** Render with a button to remove the badge */
54
+ removeButton?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
55
+ /** Render the badge as a clickable button */
56
+ actionButton?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
57
+ }
58
+ const Badge: React.FC<IBadgeProps>;
59
+ export default Badge;
60
+
61
+ }
62
+ declare module '@agility/plenum-ui/stories/atoms/badges/index' {
63
+ import Badge, { IBadgeProps } from "@agility/plenum-ui/stories/atoms/badges/Badge";
64
+ export default Badge;
65
+ export type { IBadgeProps };
66
+
67
+ }
68
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Alternative/Alternative.stories' {
69
+ import type { Meta, StoryObj } from "@storybook/react";
70
+ import Button from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
71
+ const meta: Meta<typeof Button>;
72
+ export default meta;
73
+ type Story = StoryObj<typeof Button>;
74
+ export const Alternative: Story;
75
+ export const AlternativeTrailingIcon: Story;
76
+ export const AlternativeLeadingIcon: Story;
77
+ export const AlternativeExtraSmall: Story;
78
+ export const AlternativeSmall: Story;
79
+ export const AlternativeMedium: Story;
80
+ export const AlternativeLarge: Story;
81
+ export const AlternativeExtraLarge: Story;
82
+
83
+ }
84
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Button' {
85
+ import { HTMLAttributeAnchorTarget } from "react";
86
+ import { IDynamicIconProps } from "@agility/plenum-ui/stories/atoms/icons/index";
87
+ export type BTNActionType = "primary" | "secondary" | "alternative" | "danger";
88
+ export interface IButtonProps extends React.ComponentPropsWithoutRef<"button"> {
89
+ /** Is the button a Primary CTA, alternative or danger button? */
90
+ actionType: BTNActionType;
91
+ /** How lg should the button be? - Defaults to 'base'. */
92
+ size?: "xs" | "sm" | "md" | "lg" | "xl";
93
+ /** The Button's text content. */
94
+ label: string;
95
+ /** The Icon to be displayed inside the button. */
96
+ icon?: IDynamicIconProps;
97
+ /** Does the button width grow to fill it's container? */
98
+ fullWidth?: boolean;
99
+ /** Optionally render as anchor tag */
100
+ asLink?: {
101
+ href: string;
102
+ target: HTMLAttributeAnchorTarget;
103
+ title?: string;
104
+ };
105
+ /** The placement of the icon relative to the text content. */
106
+ iconPosition?: "trailing" | "leading";
107
+ /** Use an custom svg element */
108
+ CustomSVGIcon?: JSX.Element;
109
+ /** Is the associated content loading? */
110
+ isLoading?: boolean;
111
+ className?: string;
112
+ }
113
+ /**
114
+ * Primary UI component for user interaction
115
+ */
116
+ const Button: ({ actionType, size, label, icon, CustomSVGIcon, fullWidth, iconPosition, asLink, isLoading, className, ...props }: IButtonProps) => import("react/jsx-runtime").JSX.Element;
117
+ export default Button;
118
+
119
+ }
120
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Danger/Danger.stories' {
121
+ import type { Meta, StoryObj } from "@storybook/react";
122
+ import Button from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
123
+ const meta: Meta<typeof Button>;
124
+ export default meta;
125
+ type Story = StoryObj<typeof Button>;
126
+ export const Danger: Story;
127
+ export const DangerTrailingIcon: Story;
128
+ export const DangerLeadingIcon: Story;
129
+ export const DangerExtraSmall: Story;
130
+ export const DangerSmall: Story;
131
+ export const DangerMedium: Story;
132
+ export const DangerLarge: Story;
133
+ export const DangerExtraLarge: Story;
134
+
135
+ }
136
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Primary/Primary.stories' {
137
+ import type { Meta, StoryObj } from "@storybook/react";
138
+ import Button from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
139
+ const meta: Meta<typeof Button>;
140
+ export default meta;
141
+ type Story = StoryObj<typeof Button>;
142
+ export const Primary: Story;
143
+ export const PrimaryLeadingIcon: Story;
144
+ export const PrimaryTrailingIcon: Story;
145
+ export const PrimaryExtraSmall: Story;
146
+ export const PrimarySmall: Story;
147
+ export const PrimaryMedium: Story;
148
+ export const PrimaryLarge: Story;
149
+ export const PrimaryExtraLarge: Story;
150
+
151
+ }
152
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Secondary/Secondary.stories' {
153
+ import type { Meta, StoryObj } from "@storybook/react";
154
+ import Button from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
155
+ const meta: Meta<typeof Button>;
156
+ export default meta;
157
+ type Story = StoryObj<typeof Button>;
158
+ export const Secondary: Story;
159
+ export const SecondaryTrailingIcon: Story;
160
+ export const SecondaryLeadingIcon: Story;
161
+ export const SecondaryExtraSmall: Story;
162
+ export const SecondarySmall: Story;
163
+ export const SecondaryMedium: Story;
164
+ export const SecondaryLarge: Story;
165
+ export const SecondaryExtraLarge: Story;
166
+
167
+ }
168
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/defaultArgs' {
169
+ import { IDynamicIconProps } from "@agility/plenum-ui/stories/atoms/icons/index";
170
+ const defaultIcon: IDynamicIconProps;
171
+ export { defaultIcon };
172
+
173
+ }
174
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/index' {
175
+ import Button, { IButtonProps, BTNActionType } from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
176
+ export type { IButtonProps, BTNActionType };
177
+ export default Button;
178
+
179
+ }
180
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/Alternative/Alternative.stories' {
181
+ import type { Meta, StoryObj } from "@storybook/react";
182
+ import Capsule from "@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule";
183
+ const meta: Meta<typeof Capsule>;
184
+ export default meta;
185
+ type Story = StoryObj<typeof Capsule>;
186
+ export const Alternative: Story;
187
+
188
+ }
189
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule' {
190
+ import { HTMLAttributeAnchorTarget } from "react";
191
+ import { BTNActionType } from "@agility/plenum-ui/stories/atoms/buttons/Button/Button";
192
+ /**
193
+ * Capsule Style Button
194
+ */
195
+ export interface ICapsuleProps extends React.ComponentPropsWithoutRef<"button"> {
196
+ /** Is the button a Primary CTA, alternative or danger button? */
197
+ actionType: BTNActionType;
198
+ /** How lg should the button be? - Defaults to 'base'. */
199
+ size?: "xs" | "sm" | "md" | "lg" | "xl";
200
+ /** The Button's text content. */
201
+ label: string;
202
+ /** Does the button width grow to fill it's container? */
203
+ fullWidth?: boolean;
204
+ /** Optionally render as anchor tag */
205
+ asLink?: {
206
+ href: string;
207
+ target: HTMLAttributeAnchorTarget;
208
+ title?: string;
209
+ };
210
+ /** Is the associated content loading? */
211
+ isLoading?: boolean;
212
+ /**Optional Classname String*/
213
+ className?: string;
214
+ }
215
+ const Capsule: ({ actionType, size, label, fullWidth, asLink, isLoading, className, ...props }: ICapsuleProps) => import("react/jsx-runtime").JSX.Element;
216
+ export default Capsule;
217
+
218
+ }
219
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/Danger/Danger.stories' {
220
+ import type { Meta, StoryObj } from "@storybook/react";
221
+ import Capsule from "@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule";
222
+ const meta: Meta<typeof Capsule>;
223
+ export default meta;
224
+ type Story = StoryObj<typeof Capsule>;
225
+ export const Danger: Story;
226
+
227
+ }
228
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/Primary/Primary.stories' {
229
+ import type { Meta, StoryObj } from "@storybook/react";
230
+ import Capsule from "@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule";
231
+ const meta: Meta<typeof Capsule>;
232
+ export default meta;
233
+ type Story = StoryObj<typeof Capsule>;
234
+ export const Primary: Story;
235
+
236
+ }
237
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/Secondary/Secondary.stories' {
238
+ import type { Meta, StoryObj } from "@storybook/react";
239
+ import Capsule from "@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule";
240
+ const meta: Meta<typeof Capsule>;
241
+ export default meta;
242
+ type Story = StoryObj<typeof Capsule>;
243
+ export const Secondary: Story;
244
+
245
+ }
246
+ declare module '@agility/plenum-ui/stories/atoms/buttons/Capsule/index' {
247
+ import Capsule, { ICapsuleProps } from "@agility/plenum-ui/stories/atoms/buttons/Capsule/Capsule";
248
+ export default Capsule;
249
+ export type { ICapsuleProps };
250
+
251
+ }
252
+ declare module '@agility/plenum-ui/stories/atoms/buttons/index' {
253
+ import Button, { BTNActionType, IButtonProps } from "@agility/plenum-ui/stories/atoms/buttons/Button/index";
254
+ import Capsule, { ICapsuleProps } from "@agility/plenum-ui/stories/atoms/buttons/Capsule/index";
255
+ export type { IButtonProps, BTNActionType, ICapsuleProps };
256
+ export { Button, Capsule };
257
+
258
+ }
259
+ declare module '@agility/plenum-ui/stories/atoms/icons/DynamicIcon' {
260
+ import React from "react";
261
+ import * as SolidIcons from "@heroicons/react/solid";
262
+ import * as OutlineIcons from "@heroicons/react/outline";
263
+ import * as FA from "react-icons/fa";
264
+ import { TablerIconName } from "@agility/plenum-ui/stories/atoms/icons/tablerIconNames";
265
+ import { ClassNameWithAutocomplete } from "@/utils/types";
266
+ export type IconName = keyof typeof SolidIcons | keyof typeof OutlineIcons;
267
+ export type FAIconName = keyof typeof FA;
268
+ export type UnifiedIconName = IconName | TablerIconName | FAIconName;
269
+ export function isHeroIcon(name: UnifiedIconName): name is keyof typeof SolidIcons | keyof typeof OutlineIcons;
270
+ export function isTablerIcon(name: UnifiedIconName): name is TablerIconName;
271
+ export function isFAIcon(name: UnifiedIconName): name is keyof typeof FA;
272
+ export function isUnifiedIconName(name: UnifiedIconName): name is UnifiedIconName;
273
+ export interface IDynamicIconProps extends React.ComponentProps<"i"> {
274
+ icon: UnifiedIconName;
275
+ className?: ClassNameWithAutocomplete;
276
+ outline?: boolean;
277
+ CustomSVG?: React.ReactNode;
278
+ }
279
+ export const DynamicIcon: ({ icon, className, outline, CustomSVG, ...props }: IDynamicIconProps) => JSX.Element;
280
+
281
+ }
282
+ declare module '@agility/plenum-ui/stories/atoms/icons/DynamicIcon.stories' {
283
+ import type { Meta, StoryObj } from "@storybook/react";
284
+ import { DynamicIcon } from "@agility/plenum-ui/stories/atoms/icons/DynamicIcon";
285
+ const meta: Meta<typeof DynamicIcon>;
286
+ type Story = StoryObj<typeof DynamicIcon>;
287
+ export const HeroIconSolid: Story;
288
+ export const HeroIconOutline: Story;
289
+ export const TablerIconSolid: Story;
290
+ export const TablerIconOutline: Story;
291
+ export const FAIcon: Story;
292
+ export default meta;
293
+
294
+ }
295
+ declare module '@agility/plenum-ui/stories/atoms/icons/IconWithShadow' {
296
+ /// <reference types="react" />
297
+ import { IDynamicIconProps } from "@agility/plenum-ui/stories/atoms/icons/DynamicIcon";
298
+ export interface IIconWithShadowProps extends IDynamicIconProps {
299
+ }
300
+ const IconWithShadow: React.FC<IIconWithShadowProps>;
301
+ export default IconWithShadow;
302
+
303
+ }
304
+ declare module '@agility/plenum-ui/stories/atoms/icons/IconWithShadow.stories' {
305
+ import type { Meta, StoryObj } from "@storybook/react";
306
+ import IconWithShadow from "@agility/plenum-ui/stories/atoms/icons/IconWithShadow";
307
+ const meta: Meta<typeof IconWithShadow>;
308
+ type Story = StoryObj<typeof IconWithShadow>;
309
+ export const HeroIconSolid: Story;
310
+ export const HeroIconOutline: Story;
311
+ export const TablerIconSolid: Story;
312
+ export const TablerIconOutline: Story;
313
+ export const FAIcon: Story;
314
+ export default meta;
315
+
316
+ }
317
+ declare module '@agility/plenum-ui/stories/atoms/icons/TablerIcon' {
318
+ import React from "react";
319
+ import { TablerIconName } from "@agility/plenum-ui/stories/atoms/icons/tablerIconNames";
320
+ import { ClassNameWithAutocomplete } from "@/utils/types";
321
+ export interface ITablerIconProps extends React.ComponentProps<"i"> {
322
+ icon: TablerIconName;
323
+ className?: ClassNameWithAutocomplete;
324
+ }
325
+ const TablerIcon: React.FC<ITablerIconProps>;
326
+ export default TablerIcon;
327
+
328
+ }
329
+ declare module '@agility/plenum-ui/stories/atoms/icons/index' {
330
+ import { DynamicIcon, FAIconName, IDynamicIconProps, IconName, UnifiedIconName, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName } from "@agility/plenum-ui/stories/atoms/icons/DynamicIcon";
331
+ import IconWithShadow, { IIconWithShadowProps } from "@agility/plenum-ui/stories/atoms/icons/IconWithShadow";
332
+ export { DynamicIcon, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName, IconWithShadow };
333
+ export type { FAIconName, IDynamicIconProps, IconName, UnifiedIconName, IIconWithShadowProps };
334
+
335
+ }
336
+ declare module '@agility/plenum-ui/stories/atoms/icons/tablerIconNames' {
337
+ export const tablerIconNames: readonly ["Icon123", "Icon24Hours", "Icon2fa", "Icon360View", "Icon360", "Icon3dCubeSphereOff", "Icon3dCubeSphere", "Icon3dRotate", "IconAB2", "IconABOff", "IconAB", "IconAbacusOff", "IconAbacus", "IconAbc", "IconAccessPointOff", "IconAccessPoint", "IconAccessibleOffFilled", "IconAccessibleOff", "IconAccessible", "IconActivityHeartbeat", "IconActivity", "IconAd2", "IconAdCircleFilled", "IconAdCircleOff", "IconAdCircle", "IconAdFilled", "IconAdOff", "IconAd", "IconAddressBookOff", "IconAddressBook", "IconAdjustmentsAlt", "IconAdjustmentsBolt", "IconAdjustmentsCancel", "IconAdjustmentsCheck", "IconAdjustmentsCode", "IconAdjustmentsCog", "IconAdjustmentsDollar", "IconAdjustmentsDown", "IconAdjustmentsExclamation", "IconAdjustmentsFilled", "IconAdjustmentsHeart", "IconAdjustmentsHorizontal", "IconAdjustmentsMinus", "IconAdjustmentsOff", "IconAdjustmentsPause", "IconAdjustmentsPin", "IconAdjustmentsPlus", "IconAdjustmentsQuestion", "IconAdjustmentsSearch", "IconAdjustmentsShare", "IconAdjustmentsStar", "IconAdjustmentsUp", "IconAdjustmentsX", "IconAdjustments", "IconAerialLift", "IconAffiliateFilled", "IconAffiliate", "IconAirBalloon", "IconAirConditioningDisabled", "IconAirConditioning", "IconAirTrafficControl", "IconAlarmFilled", "IconAlarmMinusFilled", "IconAlarmMinus", "IconAlarmOff", "IconAlarmPlusFilled", "IconAlarmPlus", "IconAlarmSnoozeFilled", "IconAlarmSnooze", "IconAlarm", "IconAlbumOff", "IconAlbum", "IconAlertCircleFilled", "IconAlertCircle", "IconAlertHexagonFilled", "IconAlertHexagon", "IconAlertOctagonFilled", "IconAlertOctagon", "IconAlertSmall", "IconAlertSquareFilled", "IconAlertSquareRoundedFilled", "IconAlertSquareRounded", "IconAlertSquare", "IconAlertTriangleFilled", "IconAlertTriangle", "IconAlienFilled", "IconAlien", "IconAlignBoxBottomCenterFilled", "IconAlignBoxBottomCenter", "IconAlignBoxBottomLeftFilled", "IconAlignBoxBottomLeft", "IconAlignBoxBottomRightFilled", "IconAlignBoxBottomRight", "IconAlignBoxCenterBottom", "IconAlignBoxCenterMiddleFilled", "IconAlignBoxCenterMiddle", "IconAlignBoxCenterStretch", "IconAlignBoxCenterTop", "IconAlignBoxLeftBottomFilled", "IconAlignBoxLeftBottom", "IconAlignBoxLeftMiddleFilled", "IconAlignBoxLeftMiddle", "IconAlignBoxLeftStretch", "IconAlignBoxLeftTopFilled", "IconAlignBoxLeftTop", "IconAlignBoxRightBottomFilled", "IconAlignBoxRightBottom", "IconAlignBoxRightMiddleFilled", "IconAlignBoxRightMiddle", "IconAlignBoxRightStretch", "IconAlignBoxRightTopFilled", "IconAlignBoxRightTop", "IconAlignBoxTopCenterFilled", "IconAlignBoxTopCenter", "IconAlignBoxTopLeftFilled", "IconAlignBoxTopLeft", "IconAlignBoxTopRightFilled", "IconAlignBoxTopRight", "IconAlignCenter", "IconAlignJustified", "IconAlignLeft", "IconAlignRight", "IconAlpha", "IconAlphabetCyrillic", "IconAlphabetGreek", "IconAlphabetLatin", "IconAmbulance", "IconAmpersand", "IconAnalyzeFilled", "IconAnalyzeOff", "IconAnalyze", "IconAnchorOff", "IconAnchor", "IconAngle", "IconAnkh", "IconAntennaBars1", "IconAntennaBars2", "IconAntennaBars3", "IconAntennaBars4", "IconAntennaBars5", "IconAntennaBarsOff", "IconAntennaOff", "IconAntenna", "IconApertureOff", "IconAperture", "IconApiAppOff", "IconApiApp", "IconApiOff", "IconApi", "IconAppWindowFilled", "IconAppWindow", "IconApple", "IconAppsFilled", "IconAppsOff", "IconApps", "IconArchiveFilled", "IconArchiveOff", "IconArchive", "IconArmchair2Off", "IconArmchair2", "IconArmchairOff", "IconArmchair", "IconArrowAutofitContentFilled", "IconArrowAutofitContent", "IconArrowAutofitDown", "IconArrowAutofitHeight", "IconArrowAutofitLeft", "IconArrowAutofitRight", "IconArrowAutofitUp", "IconArrowAutofitWidth", "IconArrowBackUpDouble", "IconArrowBackUp", "IconArrowBack", "IconArrowBadgeDownFilled", "IconArrowBadgeDown", "IconArrowBadgeLeftFilled", "IconArrowBadgeLeft", "IconArrowBadgeRightFilled", "IconArrowBadgeRight", "IconArrowBadgeUpFilled", "IconArrowBadgeUp", "IconArrowBarBoth", "IconArrowBarDown", "IconArrowBarLeft", "IconArrowBarRight", "IconArrowBarToDown", "IconArrowBarToLeft", "IconArrowBarToRight", "IconArrowBarToUp", "IconArrowBarUp", "IconArrowBearLeft2", "IconArrowBearLeft", "IconArrowBearRight2", "IconArrowBearRight", "IconArrowBigDownFilled", "IconArrowBigDownLineFilled", "IconArrowBigDownLine", "IconArrowBigDownLinesFilled", "IconArrowBigDownLines", "IconArrowBigDown", "IconArrowBigLeftFilled", "IconArrowBigLeftLineFilled", "IconArrowBigLeftLine", "IconArrowBigLeftLinesFilled", "IconArrowBigLeftLines", "IconArrowBigLeft", "IconArrowBigRightFilled", "IconArrowBigRightLineFilled", "IconArrowBigRightLine", "IconArrowBigRightLinesFilled", "IconArrowBigRightLines", "IconArrowBigRight", "IconArrowBigUpFilled", "IconArrowBigUpLineFilled", "IconArrowBigUpLine", "IconArrowBigUpLinesFilled", "IconArrowBigUpLines", "IconArrowBigUp", "IconArrowBounce", "IconArrowCapsule", "IconArrowCurveLeft", "IconArrowCurveRight", "IconArrowDownBar", "IconArrowDownCircle", "IconArrowDownLeftCircle", "IconArrowDownLeft", "IconArrowDownRhombus", "IconArrowDownRightCircle", "IconArrowDownRight", "IconArrowDownSquare", "IconArrowDownTail", "IconArrowDown", "IconArrowElbowLeft", "IconArrowElbowRight", "IconArrowFork", "IconArrowForwardUpDouble", "IconArrowForwardUp", "IconArrowForward", "IconArrowGuide", "IconArrowIteration", "IconArrowLeftBar", "IconArrowLeftCircle", "IconArrowLeftRhombus", "IconArrowLeftRight", "IconArrowLeftSquare", "IconArrowLeftTail", "IconArrowLeft", "IconArrowLoopLeft2", "IconArrowLoopLeft", "IconArrowLoopRight2", "IconArrowLoopRight", "IconArrowMergeBoth", "IconArrowMergeLeft", "IconArrowMergeRight", "IconArrowMerge", "IconArrowMoveDown", "IconArrowMoveLeft", "IconArrowMoveRight", "IconArrowMoveUp", "IconArrowNarrowDown", "IconArrowNarrowLeft", "IconArrowNarrowRight", "IconArrowNarrowUp", "IconArrowRampLeft2", "IconArrowRampLeft3", "IconArrowRampLeft", "IconArrowRampRight2", "IconArrowRampRight3", "IconArrowRampRight", "IconArrowRightBar", "IconArrowRightCircle", "IconArrowRightRhombus", "IconArrowRightSquare", "IconArrowRightTail", "IconArrowRight", "IconArrowRotaryFirstLeft", "IconArrowRotaryFirstRight", "IconArrowRotaryLastLeft", "IconArrowRotaryLastRight", "IconArrowRotaryLeft", "IconArrowRotaryRight", "IconArrowRotaryStraight", "IconArrowRoundaboutLeft", "IconArrowRoundaboutRight", "IconArrowSharpTurnLeft", "IconArrowSharpTurnRight", "IconArrowUpBar", "IconArrowUpCircle", "IconArrowUpLeftCircle", "IconArrowUpLeft", "IconArrowUpRhombus", "IconArrowUpRightCircle", "IconArrowUpRight", "IconArrowUpSquare", "IconArrowUpTail", "IconArrowUp", "IconArrowWaveLeftDown", "IconArrowWaveLeftUp", "IconArrowWaveRightDown", "IconArrowWaveRightUp", "IconArrowZigZag", "IconArrowsCross", "IconArrowsDiagonal2", "IconArrowsDiagonalMinimize2", "IconArrowsDiagonalMinimize", "IconArrowsDiagonal", "IconArrowsDiff", "IconArrowsDoubleNeSw", "IconArrowsDoubleNwSe", "IconArrowsDoubleSeNw", "IconArrowsDoubleSwNe", "IconArrowsDownUp", "IconArrowsDown", "IconArrowsExchange2", "IconArrowsExchange", "IconArrowsHorizontal", "IconArrowsJoin2", "IconArrowsJoin", "IconArrowsLeftDown", "IconArrowsLeftRight", "IconArrowsLeft", "IconArrowsMaximize", "IconArrowsMinimize", "IconArrowsMoveHorizontal", "IconArrowsMoveVertical", "IconArrowsMove", "IconArrowsRandom", "IconArrowsRightDown", "IconArrowsRightLeft", "IconArrowsRight", "IconArrowsShuffle2", "IconArrowsShuffle", "IconArrowsSort", "IconArrowsSplit2", "IconArrowsSplit", "IconArrowsTransferDown", "IconArrowsTransferUp", "IconArrowsUpDown", "IconArrowsUpLeft", "IconArrowsUpRight", "IconArrowsUp", "IconArrowsVertical", "IconArtboardFilled", "IconArtboardOff", "IconArtboard", "IconArticleFilledFilled", "IconArticleOff", "IconArticle", "IconAspectRatioFilled", "IconAspectRatioOff", "IconAspectRatio", "IconAssemblyOff", "IconAssembly", "IconAsset", "IconAsteriskSimple", "IconAsterisk", "IconAtOff", "IconAt", "IconAtom2Filled", "IconAtom2", "IconAtomOff", "IconAtom", "IconAugmentedReality2", "IconAugmentedRealityOff", "IconAugmentedReality", "IconAwardFilled", "IconAwardOff", "IconAward", "IconAxe", "IconAxisX", "IconAxisY", "IconBabyBottle", "IconBabyCarriage", "IconBackhoe", "IconBackpackOff", "IconBackpack", "IconBackslash", "IconBackspaceFilled", "IconBackspace", "IconBadge3d", "IconBadge4k", "IconBadge8k", "IconBadgeAd", "IconBadgeAr", "IconBadgeCc", "IconBadgeFilled", "IconBadgeHd", "IconBadgeOff", "IconBadgeSd", "IconBadgeTm", "IconBadgeVo", "IconBadgeVr", "IconBadgeWc", "IconBadge", "IconBadgesFilled", "IconBadgesOff", "IconBadges", "IconBaguette", "IconBallAmericanFootballOff", "IconBallAmericanFootball", "IconBallBaseball", "IconBallBasketball", "IconBallBowling", "IconBallFootballOff", "IconBallFootball", "IconBallTennis", "IconBallVolleyball", "IconBalloonFilled", "IconBalloonOff", "IconBalloon", "IconBallpenFilled", "IconBallpenOff", "IconBallpen", "IconBan", "IconBandageFilled", "IconBandageOff", "IconBandage", "IconBarbellOff", "IconBarbell", "IconBarcodeOff", "IconBarcode", "IconBarrelOff", "IconBarrel", "IconBarrierBlockOff", "IconBarrierBlock", "IconBaselineDensityLarge", "IconBaselineDensityMedium", "IconBaselineDensitySmall", "IconBaseline", "IconBasketFilled", "IconBasketOff", "IconBasket", "IconBat", "IconBathFilled", "IconBathOff", "IconBath", "IconBattery1Filled", "IconBattery1", "IconBattery2Filled", "IconBattery2", "IconBattery3Filled", "IconBattery3", "IconBattery4Filled", "IconBattery4", "IconBatteryAutomotive", "IconBatteryCharging2", "IconBatteryCharging", "IconBatteryEco", "IconBatteryFilled", "IconBatteryOff", "IconBattery", "IconBeachOff", "IconBeach", "IconBedFilled", "IconBedOff", "IconBed", "IconBeerFilled", "IconBeerOff", "IconBeer", "IconBellBolt", "IconBellCancel", "IconBellCheck", "IconBellCode", "IconBellCog", "IconBellDollar", "IconBellDown", "IconBellExclamation", "IconBellFilled", "IconBellHeart", "IconBellMinusFilled", "IconBellMinus", "IconBellOff", "IconBellPause", "IconBellPin", "IconBellPlusFilled", "IconBellPlus", "IconBellQuestion", "IconBellRinging2Filled", "IconBellRinging2", "IconBellRingingFilled", "IconBellRinging", "IconBellSchool", "IconBellSearch", "IconBellShare", "IconBellStar", "IconBellUp", "IconBellXFilled", "IconBellX", "IconBellZFilled", "IconBellZ", "IconBell", "IconBeta", "IconBible", "IconBikeOff", "IconBike", "IconBinaryOff", "IconBinaryTree2", "IconBinaryTree", "IconBinary", "IconBiohazardOff", "IconBiohazard", "IconBladeFilled", "IconBlade", "IconBleachChlorine", "IconBleachNoChlorine", "IconBleachOff", "IconBleach", "IconBlockquote", "IconBluetoothConnected", "IconBluetoothOff", "IconBluetoothX", "IconBluetooth", "IconBlurOff", "IconBlur", "IconBmp", "IconBoldOff", "IconBold", "IconBoltOff", "IconBolt", "IconBombFilled", "IconBomb", "IconBoneOff", "IconBone", "IconBongOff", "IconBong", "IconBook2", "IconBookDownload", "IconBookFilled", "IconBookOff", "IconBookUpload", "IconBook", "IconBookmarkEdit", "IconBookmarkFilled", "IconBookmarkMinus", "IconBookmarkOff", "IconBookmarkPlus", "IconBookmarkQuestion", "IconBookmark", "IconBookmarksFilled", "IconBookmarksOff", "IconBookmarks", "IconBooksOff", "IconBooks", "IconBorderAll", "IconBorderBottom", "IconBorderCorners", "IconBorderHorizontal", "IconBorderInner", "IconBorderLeft", "IconBorderNone", "IconBorderOuter", "IconBorderRadius", "IconBorderRight", "IconBorderSides", "IconBorderStyle2", "IconBorderStyle", "IconBorderTop", "IconBorderVertical", "IconBottleFilled", "IconBottleOff", "IconBottle", "IconBounceLeftFilled", "IconBounceLeft", "IconBounceRightFilled", "IconBounceRight", "IconBow", "IconBowlFilled", "IconBowl", "IconBoxAlignBottomFilled", "IconBoxAlignBottomLeftFilled", "IconBoxAlignBottomLeft", "IconBoxAlignBottomRightFilled", "IconBoxAlignBottomRight", "IconBoxAlignBottom", "IconBoxAlignLeftFilled", "IconBoxAlignLeft", "IconBoxAlignRightFilled", "IconBoxAlignRight", "IconBoxAlignTopFilled", "IconBoxAlignTopLeftFilled", "IconBoxAlignTopLeft", "IconBoxAlignTopRightFilled", "IconBoxAlignTopRight", "IconBoxAlignTop", "IconBoxMargin", "IconBoxModel2Off", "IconBoxModel2", "IconBoxModelOff", "IconBoxModel", "IconBoxMultiple0", "IconBoxMultiple1", "IconBoxMultiple2", "IconBoxMultiple3", "IconBoxMultiple4", "IconBoxMultiple5", "IconBoxMultiple6", "IconBoxMultiple7", "IconBoxMultiple8", "IconBoxMultiple9", "IconBoxMultiple", "IconBoxOff", "IconBoxPadding", "IconBoxSeam", "IconBox", "IconBracesOff", "IconBraces", "IconBracketsContainEnd", "IconBracketsContainStart", "IconBracketsContain", "IconBracketsOff", "IconBrackets", "IconBraille", "IconBrain", "IconBrand4chan", "IconBrandAbstract", "IconBrandAdobe", "IconBrandAdonisJs", "IconBrandAirbnb", "IconBrandAirtable", "IconBrandAlgolia", "IconBrandAlipay", "IconBrandAlpineJs", "IconBrandAmazon", "IconBrandAmd", "IconBrandAmigo", "IconBrandAmongUs", "IconBrandAndroid", "IconBrandAngular", "IconBrandAnsible", "IconBrandAo3", "IconBrandAppgallery", "IconBrandAppleArcade", "IconBrandApplePodcast", "IconBrandApple", "IconBrandAppstore", "IconBrandAsana", "IconBrandAws", "IconBrandAzure", "IconBrandBackbone", "IconBrandBadoo", "IconBrandBaidu", "IconBrandBandcamp", "IconBrandBandlab", "IconBrandBeats", "IconBrandBehance", "IconBrandBilibili", "IconBrandBinance", "IconBrandBing", "IconBrandBitbucket", "IconBrandBlackberry", "IconBrandBlender", "IconBrandBlogger", "IconBrandBooking", "IconBrandBootstrap", "IconBrandBulma", "IconBrandBumble", "IconBrandBunpo", "IconBrandCSharp", "IconBrandCake", "IconBrandCakephp", "IconBrandCampaignmonitor", "IconBrandCarbon", "IconBrandCashapp", "IconBrandChrome", "IconBrandCinema4d", "IconBrandCitymapper", "IconBrandCloudflare", "IconBrandCodecov", "IconBrandCodepen", "IconBrandCodesandbox", "IconBrandCohost", "IconBrandCoinbase", "IconBrandComedyCentral", "IconBrandCoreos", "IconBrandCouchdb", "IconBrandCouchsurfing", "IconBrandCpp", "IconBrandCraft", "IconBrandCrunchbase", "IconBrandCss3", "IconBrandCtemplar", "IconBrandCucumber", "IconBrandCupra", "IconBrandCypress", "IconBrandD3", "IconBrandDaysCounter", "IconBrandDcos", "IconBrandDebian", "IconBrandDeezer", "IconBrandDeliveroo", "IconBrandDeno", "IconBrandDenodo", "IconBrandDeviantart", "IconBrandDigg", "IconBrandDingtalk", "IconBrandDiscordFilled", "IconBrandDiscord", "IconBrandDisney", "IconBrandDisqus", "IconBrandDjango", "IconBrandDocker", "IconBrandDoctrine", "IconBrandDolbyDigital", "IconBrandDouban", "IconBrandDribbbleFilled", "IconBrandDribbble", "IconBrandDrops", "IconBrandDrupal", "IconBrandEdge", "IconBrandElastic", "IconBrandElectronicArts", "IconBrandEmber", "IconBrandEnvato", "IconBrandEtsy", "IconBrandEvernote", "IconBrandFacebookFilled", "IconBrandFacebook", "IconBrandFeedly", "IconBrandFigma", "IconBrandFilezilla", "IconBrandFinder", "IconBrandFirebase", "IconBrandFirefox", "IconBrandFiverr", "IconBrandFlickr", "IconBrandFlightradar24", "IconBrandFlipboard", "IconBrandFlutter", "IconBrandFortnite", "IconBrandFoursquare", "IconBrandFramerMotion", "IconBrandFramer", "IconBrandFunimation", "IconBrandGatsby", "IconBrandGit", "IconBrandGithubCopilot", "IconBrandGithubFilled", "IconBrandGithub", "IconBrandGitlab", "IconBrandGmail", "IconBrandGolang", "IconBrandGoogleAnalytics", "IconBrandGoogleBigQuery", "IconBrandGoogleDrive", "IconBrandGoogleFit", "IconBrandGoogleHome", "IconBrandGoogleMaps", "IconBrandGoogleOne", "IconBrandGooglePhotos", "IconBrandGooglePlay", "IconBrandGooglePodcasts", "IconBrandGoogle", "IconBrandGrammarly", "IconBrandGraphql", "IconBrandGravatar", "IconBrandGrindr", "IconBrandGuardian", "IconBrandGumroad", "IconBrandHbo", "IconBrandHeadlessui", "IconBrandHexo", "IconBrandHipchat", "IconBrandHtml5", "IconBrandInertia", "IconBrandInstagram", "IconBrandIntercom", "IconBrandItch", "IconBrandJavascript", "IconBrandJuejin", "IconBrandKbin", "IconBrandKick", "IconBrandKickstarter", "IconBrandKotlin", "IconBrandLaravel", "IconBrandLastfm", "IconBrandLeetcode", "IconBrandLetterboxd", "IconBrandLine", "IconBrandLinkedin", "IconBrandLinktree", "IconBrandLinqpad", "IconBrandLoom", "IconBrandMailgun", "IconBrandMantine", "IconBrandMastercard", "IconBrandMastodon", "IconBrandMatrix", "IconBrandMcdonalds", "IconBrandMedium", "IconBrandMercedes", "IconBrandMessenger", "IconBrandMeta", "IconBrandMicrosoftTeams", "IconBrandMinecraft", "IconBrandMiniprogram", "IconBrandMixpanel", "IconBrandMonday", "IconBrandMongodb", "IconBrandMyOppo", "IconBrandMysql", "IconBrandNationalGeographic", "IconBrandNem", "IconBrandNetbeans", "IconBrandNeteaseMusic", "IconBrandNetflix", "IconBrandNexo", "IconBrandNextcloud", "IconBrandNextjs", "IconBrandNodejs", "IconBrandNordVpn", "IconBrandNotion", "IconBrandNpm", "IconBrandNuxt", "IconBrandNytimes", "IconBrandOauth", "IconBrandOffice", "IconBrandOkRu", "IconBrandOnedrive", "IconBrandOnlyfans", "IconBrandOpenSource", "IconBrandOpenai", "IconBrandOpenvpn", "IconBrandOpera", "IconBrandPagekit", "IconBrandPatreon", "IconBrandPaypalFilled", "IconBrandPaypal", "IconBrandPaypay", "IconBrandPeanut", "IconBrandPepsi", "IconBrandPhp", "IconBrandPicsart", "IconBrandPinterest", "IconBrandPlanetscale", "IconBrandPocket", "IconBrandPolymer", "IconBrandPowershell", "IconBrandPrisma", "IconBrandProducthunt", "IconBrandPushbullet", "IconBrandPushover", "IconBrandPython", "IconBrandQq", "IconBrandRadixUi", "IconBrandReactNative", "IconBrandReact", "IconBrandReason", "IconBrandReddit", "IconBrandRedhat", "IconBrandRedux", "IconBrandRevolut", "IconBrandRumble", "IconBrandRust", "IconBrandSafari", "IconBrandSamsungpass", "IconBrandSass", "IconBrandSentry", "IconBrandSharik", "IconBrandShazam", "IconBrandShopee", "IconBrandSketch", "IconBrandSkype", "IconBrandSlack", "IconBrandSnapchat", "IconBrandSnapseed", "IconBrandSnowflake", "IconBrandSocketIo", "IconBrandSolidjs", "IconBrandSoundcloud", "IconBrandSpacehey", "IconBrandSpeedtest", "IconBrandSpotify", "IconBrandStackoverflow", "IconBrandStackshare", "IconBrandSteam", "IconBrandStorj", "IconBrandStorybook", "IconBrandStorytel", "IconBrandStrava", "IconBrandStripe", "IconBrandSublimeText", "IconBrandSugarizer", "IconBrandSupabase", "IconBrandSuperhuman", "IconBrandSupernova", "IconBrandSurfshark", "IconBrandSvelte", "IconBrandSwift", "IconBrandSymfony", "IconBrandTabler", "IconBrandTailwind", "IconBrandTaobao", "IconBrandTed", "IconBrandTelegram", "IconBrandTerraform", "IconBrandTether", "IconBrandThreads", "IconBrandThreejs", "IconBrandTidal", "IconBrandTiktoFilled", "IconBrandTiktok", "IconBrandTinder", "IconBrandTopbuzz", "IconBrandTorchain", "IconBrandToyota", "IconBrandTrello", "IconBrandTripadvisor", "IconBrandTumblr", "IconBrandTwilio", "IconBrandTwitch", "IconBrandTwitterFilled", "IconBrandTwitter", "IconBrandTypescript", "IconBrandUber", "IconBrandUbuntu", "IconBrandUnity", "IconBrandUnsplash", "IconBrandUpwork", "IconBrandValorant", "IconBrandVercel", "IconBrandVimeo", "IconBrandVinted", "IconBrandVisa", "IconBrandVisualStudio", "IconBrandVite", "IconBrandVivaldi", "IconBrandVk", "IconBrandVlc", "IconBrandVolkswagen", "IconBrandVsco", "IconBrandVscode", "IconBrandVue", "IconBrandWalmart", "IconBrandWaze", "IconBrandWebflow", "IconBrandWechat", "IconBrandWeibo", "IconBrandWhatsapp", "IconBrandWikipedia", "IconBrandWindows", "IconBrandWindy", "IconBrandWish", "IconBrandWix", "IconBrandWordpress", "IconBrandXamarin", "IconBrandXbox", "IconBrandXing", "IconBrandYahoo", "IconBrandYandex", "IconBrandYatse", "IconBrandYcombinator", "IconBrandYoutubeKids", "IconBrandYoutube", "IconBrandZalando", "IconBrandZapier", "IconBrandZeit", "IconBrandZhihu", "IconBrandZoom", "IconBrandZulip", "IconBrandZwift", "IconBreadOff", "IconBread", "IconBriefcase2", "IconBriefcaseOff", "IconBriefcase", "IconBrightness2", "IconBrightnessDownFilled", "IconBrightnessDown", "IconBrightnessHalf", "IconBrightnessOff", "IconBrightnessUpFilled", "IconBrightnessUp", "IconBrightness", "IconBroadcastOff", "IconBroadcast", "IconBrowserCheck", "IconBrowserOff", "IconBrowserPlus", "IconBrowserX", "IconBrowser", "IconBrushOff", "IconBrush", "IconBucketDroplet", "IconBucketOff", "IconBucket", "IconBugOff", "IconBug", "IconBuildingArch", "IconBuildingBank", "IconBuildingBridge2", "IconBuildingBridge", "IconBuildingBroadcastTower", "IconBuildingCarousel", "IconBuildingCastle", "IconBuildingChurch", "IconBuildingCircus", "IconBuildingCommunity", "IconBuildingCottage", "IconBuildingEstate", "IconBuildingFactory2", "IconBuildingFactory", "IconBuildingFortress", "IconBuildingHospital", "IconBuildingLighthouse", "IconBuildingMonument", "IconBuildingMosque", "IconBuildingPavilion", "IconBuildingSkyscraper", "IconBuildingStadium", "IconBuildingStore", "IconBuildingTunnel", "IconBuildingWarehouse", "IconBuildingWindTurbine", "IconBuilding", "IconBulbFilled", "IconBulbOff", "IconBulb", "IconBulldozer", "IconBusOff", "IconBusStop", "IconBus", "IconBusinessplan", "IconButterfly", "IconCactusFilled", "IconCactusOff", "IconCactus", "IconCakeOff", "IconCake", "IconCalculatorFilled", "IconCalculatorOff", "IconCalculator", "IconCalendarBolt", "IconCalendarCancel", "IconCalendarCheck", "IconCalendarCode", "IconCalendarCog", "IconCalendarDollar", "IconCalendarDown", "IconCalendarDue", "IconCalendarEvent", "IconCalendarExclamation", "IconCalendarFilled", "IconCalendarHeart", "IconCalendarMinus", "IconCalendarOff", "IconCalendarPause", "IconCalendarPin", "IconCalendarPlus", "IconCalendarQuestion", "IconCalendarRepeat", "IconCalendarSearch", "IconCalendarShare", "IconCalendarStar", "IconCalendarStats", "IconCalendarTime", "IconCalendarUp", "IconCalendarX", "IconCalendar", "IconCameraBolt", "IconCameraCancel", "IconCameraCheck", "IconCameraCode", "IconCameraCog", "IconCameraDollar", "IconCameraDown", "IconCameraExclamation", "IconCameraFilled", "IconCameraHeart", "IconCameraMinus", "IconCameraOff", "IconCameraPause", "IconCameraPin", "IconCameraPlus", "IconCameraQuestion", "IconCameraRotate", "IconCameraSearch", "IconCameraSelfie", "IconCameraShare", "IconCameraStar", "IconCameraUp", "IconCameraX", "IconCamera", "IconCamper", "IconCampfireFilled", "IconCampfire", "IconCandle", "IconCandyOff", "IconCandy", "IconCane", "IconCannabis", "IconCapsuleHorizontal", "IconCapsule", "IconCaptureFilled", "IconCaptureOff", "IconCapture", "IconCarCrane", "IconCarCrash", "IconCarOff", "IconCarTurbine", "IconCar", "IconCaravan", "IconCardboardsOff", "IconCardboards", "IconCards", "IconCaretDownFilled", "IconCaretDown", "IconCaretLeftFilled", "IconCaretLeft", "IconCaretRightFilled", "IconCaretRight", "IconCaretUpFilled", "IconCaretUp", "IconCarouselHorizontalFilled", "IconCarouselHorizontal", "IconCarouselVerticalFilled", "IconCarouselVertical", "IconCarrotOff", "IconCarrot", "IconCashBanknoteOff", "IconCashBanknote", "IconCashOff", "IconCash", "IconCastOff", "IconCast", "IconCat", "IconCategory2", "IconCategoryFilled", "IconCategory", "IconCeOff", "IconCe", "IconCellSignal1", "IconCellSignal2", "IconCellSignal3", "IconCellSignal4", "IconCellSignal5", "IconCellSignalOff", "IconCell", "IconCertificate2Off", "IconCertificate2", "IconCertificateOff", "IconCertificate", "IconChairDirector", "IconChalkboardOff", "IconChalkboard", "IconChargingPile", "IconChartArcs3", "IconChartArcs", "IconChartAreaFilled", "IconChartAreaLineFilled", "IconChartAreaLine", "IconChartArea", "IconChartArrowsVertical", "IconChartArrows", "IconChartBarOff", "IconChartBar", "IconChartBubbleFilled", "IconChartBubble", "IconChartCandleFilled", "IconChartCandle", "IconChartCircles", "IconChartDonut2", "IconChartDonut3", "IconChartDonut4", "IconChartDonutFilled", "IconChartDonut", "IconChartDots2", "IconChartDots3", "IconChartDots", "IconChartGridDots", "IconChartHistogram", "IconChartInfographic", "IconChartLine", "IconChartPie2", "IconChartPie3", "IconChartPie4", "IconChartPieFilled", "IconChartPieOff", "IconChartPie", "IconChartPpf", "IconChartRadar", "IconChartSankey", "IconChartTreemap", "IconCheck", "IconCheckbox", "IconChecklist", "IconChecks", "IconCheckupList", "IconCheese", "IconChefHatOff", "IconChefHat", "IconCherryFilled", "IconCherry", "IconChessBishopFilled", "IconChessBishop", "IconChessFilled", "IconChessKingFilled", "IconChessKing", "IconChessKnightFilled", "IconChessKnight", "IconChessQueenFilled", "IconChessQueen", "IconChessRookFilled", "IconChessRook", "IconChess", "IconChevronCompactDown", "IconChevronCompactLeft", "IconChevronCompactRight", "IconChevronCompactUp", "IconChevronDownLeft", "IconChevronDownRight", "IconChevronDown", "IconChevronLeftPipe", "IconChevronLeft", "IconChevronRightPipe", "IconChevronRight", "IconChevronUpLeft", "IconChevronUpRight", "IconChevronUp", "IconChevronsDownLeft", "IconChevronsDownRight", "IconChevronsDown", "IconChevronsLeft", "IconChevronsRight", "IconChevronsUpLeft", "IconChevronsUpRight", "IconChevronsUp", "IconChisel", "IconChristmasTreeOff", "IconChristmasTree", "IconCircle0Filled", "IconCircle1Filled", "IconCircle2Filled", "IconCircle3Filled", "IconCircle4Filled", "IconCircle5Filled", "IconCircle6Filled", "IconCircle7Filled", "IconCircle8Filled", "IconCircle9Filled", "IconCircleArrowDownFilled", "IconCircleArrowDownLeftFilled", "IconCircleArrowDownLeft", "IconCircleArrowDownRightFilled", "IconCircleArrowDownRight", "IconCircleArrowDown", "IconCircleArrowLeftFilled", "IconCircleArrowLeft", "IconCircleArrowRightFilled", "IconCircleArrowRight", "IconCircleArrowUpFilled", "IconCircleArrowUpLeftFilled", "IconCircleArrowUpLeft", "IconCircleArrowUpRightFilled", "IconCircleArrowUpRight", "IconCircleArrowUp", "IconCircleCaretDown", "IconCircleCaretLeft", "IconCircleCaretRight", "IconCircleCaretUp", "IconCircleCheckFilled", "IconCircleCheck", "IconCircleChevronDown", "IconCircleChevronLeft", "IconCircleChevronRight", "IconCircleChevronUp", "IconCircleChevronsDown", "IconCircleChevronsLeft", "IconCircleChevronsRight", "IconCircleChevronsUp", "IconCircleDashed", "IconCircleDotFilled", "IconCircleDot", "IconCircleDotted", "IconCircleFilled", "IconCircleHalf2", "IconCircleHalfVertical", "IconCircleHalf", "IconCircleKeyFilled", "IconCircleKey", "IconCircleLetterA", "IconCircleLetterB", "IconCircleLetterC", "IconCircleLetterD", "IconCircleLetterE", "IconCircleLetterF", "IconCircleLetterG", "IconCircleLetterH", "IconCircleLetterI", "IconCircleLetterJ", "IconCircleLetterK", "IconCircleLetterL", "IconCircleLetterM", "IconCircleLetterN", "IconCircleLetterO", "IconCircleLetterP", "IconCircleLetterQ", "IconCircleLetterR", "IconCircleLetterS", "IconCircleLetterT", "IconCircleLetterU", "IconCircleLetterV", "IconCircleLetterW", "IconCircleLetterX", "IconCircleLetterY", "IconCircleLetterZ", "IconCircleMinus", "IconCircleNumber0", "IconCircleNumber1", "IconCircleNumber2", "IconCircleNumber3", "IconCircleNumber4", "IconCircleNumber5", "IconCircleNumber6", "IconCircleNumber7", "IconCircleNumber8", "IconCircleNumber9", "IconCircleOff", "IconCirclePlus", "IconCircleRectangleOff", "IconCircleRectangle", "IconCircleSquare", "IconCircleTriangle", "IconCircleXFilled", "IconCircleX", "IconCircle", "IconCirclesFilled", "IconCirclesRelation", "IconCircles", "IconCircuitAmmeter", "IconCircuitBattery", "IconCircuitBulb", "IconCircuitCapacitorPolarized", "IconCircuitCapacitor", "IconCircuitCellPlus", "IconCircuitCell", "IconCircuitChangeover", "IconCircuitDiodeZener", "IconCircuitDiode", "IconCircuitGroundDigital", "IconCircuitGround", "IconCircuitInductor", "IconCircuitMotor", "IconCircuitPushbutton", "IconCircuitResistor", "IconCircuitSwitchClosed", "IconCircuitSwitchOpen", "IconCircuitVoltmeter", "IconClearAll", "IconClearFormatting", "IconClick", "IconClipboardCheck", "IconClipboardCopy", "IconClipboardData", "IconClipboardHeart", "IconClipboardList", "IconClipboardOff", "IconClipboardPlus", "IconClipboardText", "IconClipboardTypography", "IconClipboardX", "IconClipboard", "IconClock2", "IconClockBolt", "IconClockCancel", "IconClockCheck", "IconClockCode", "IconClockCog", "IconClockDollar", "IconClockDown", "IconClockEdit", "IconClockExclamation", "IconClockFilled", "IconClockHeart", "IconClockHour1", "IconClockHour10", "IconClockHour11", "IconClockHour12", "IconClockHour2", "IconClockHour3", "IconClockHour4", "IconClockHour5", "IconClockHour6", "IconClockHour7", "IconClockHour8", "IconClockHour9", "IconClockMinus", "IconClockOff", "IconClockPause", "IconClockPin", "IconClockPlay", "IconClockPlus", "IconClockQuestion", "IconClockRecord", "IconClockSearch", "IconClockShare", "IconClockShield", "IconClockStar", "IconClockStop", "IconClockUp", "IconClockX", "IconClock", "IconClothesRackOff", "IconClothesRack", "IconCloudBolt", "IconCloudCancel", "IconCloudCheck", "IconCloudCode", "IconCloudCog", "IconCloudComputing", "IconCloudDataConnection", "IconCloudDollar", "IconCloudDown", "IconCloudDownload", "IconCloudExclamation", "IconCloudFilled", "IconCloudFog", "IconCloudHeart", "IconCloudLockOpen", "IconCloudLock", "IconCloudMinus", "IconCloudOff", "IconCloudPause", "IconCloudPin", "IconCloudPlus", "IconCloudQuestion", "IconCloudRain", "IconCloudSearch", "IconCloudShare", "IconCloudSnow", "IconCloudStar", "IconCloudStorm", "IconCloudUp", "IconCloudUpload", "IconCloudX", "IconCloud", "IconClover2", "IconClover", "IconClubsFilled", "IconClubs", "IconCodeAsterix", "IconCodeCircle2", "IconCodeCircle", "IconCodeDots", "IconCodeMinus", "IconCodeOff", "IconCodePlus", "IconCode", "IconCoffeeOff", "IconCoffee", "IconCoffin", "IconCoinBitcoin", "IconCoinEuro", "IconCoinMonero", "IconCoinOff", "IconCoinPound", "IconCoinRupee", "IconCoinYen", "IconCoinYuan", "IconCoin", "IconCoins", "IconColorFilter", "IconColorPickerOff", "IconColorPicker", "IconColorSwatchOff", "IconColorSwatch", "IconColumnInsertLeft", "IconColumnInsertRight", "IconColumnRemove", "IconColumns1", "IconColumns2", "IconColumns3", "IconColumnsOff", "IconColumns", "IconComet", "IconCommandOff", "IconCommand", "IconCompassOff", "IconCompass", "IconComponentsOff", "IconComponents", "IconCone2", "IconConeOff", "IconConePlus", "IconCone", "IconConfettiOff", "IconConfetti", "IconConfucius", "IconContainerOff", "IconContainer", "IconContrast2Off", "IconContrast2", "IconContrastOff", "IconContrast", "IconCooker", "IconCookieMan", "IconCookieOff", "IconCookie", "IconCopyOff", "IconCopy", "IconCopyleftFilled", "IconCopyleftOff", "IconCopyleft", "IconCopyrightFilled", "IconCopyrightOff", "IconCopyright", "IconCornerDownLeftDouble", "IconCornerDownLeft", "IconCornerDownRightDouble", "IconCornerDownRight", "IconCornerLeftDownDouble", "IconCornerLeftDown", "IconCornerLeftUpDouble", "IconCornerLeftUp", "IconCornerRightDownDouble", "IconCornerRightDown", "IconCornerRightUpDouble", "IconCornerRightUp", "IconCornerUpLeftDouble", "IconCornerUpLeft", "IconCornerUpRightDouble", "IconCornerUpRight", "IconCpu2", "IconCpuOff", "IconCpu", "IconCraneOff", "IconCrane", "IconCreativeCommonsBy", "IconCreativeCommonsNc", "IconCreativeCommonsNd", "IconCreativeCommonsOff", "IconCreativeCommonsSa", "IconCreativeCommonsZero", "IconCreativeCommons", "IconCreditCardOff", "IconCreditCard", "IconCricket", "IconCrop", "IconCrossFilled", "IconCrossOff", "IconCross", "IconCrosshair", "IconCrownOff", "IconCrown", "IconCrutchesOff", "IconCrutches", "IconCrystalBall", "IconCsv", "IconCubeOff", "IconCubePlus", "IconCubeSend", "IconCubeUnfolded", "IconCube", "IconCupOff", "IconCup", "IconCurling", "IconCurlyLoop", "IconCurrencyAfghani", "IconCurrencyBahraini", "IconCurrencyBaht", "IconCurrencyBitcoin", "IconCurrencyCent", "IconCurrencyDinar", "IconCurrencyDirham", "IconCurrencyDogecoin", "IconCurrencyDollarAustralian", "IconCurrencyDollarBrunei", "IconCurrencyDollarCanadian", "IconCurrencyDollarGuyanese", "IconCurrencyDollarOff", "IconCurrencyDollarSingapore", "IconCurrencyDollarZimbabwean", "IconCurrencyDollar", "IconCurrencyDong", "IconCurrencyDram", "IconCurrencyEthereum", "IconCurrencyEuroOff", "IconCurrencyEuro", "IconCurrencyFlorin", "IconCurrencyForint", "IconCurrencyFrank", "IconCurrencyGuarani", "IconCurrencyHryvnia", "IconCurrencyIranianRial", "IconCurrencyKip", "IconCurrencyKroneCzech", "IconCurrencyKroneDanish", "IconCurrencyKroneSwedish", "IconCurrencyLari", "IconCurrencyLeu", "IconCurrencyLira", "IconCurrencyLitecoin", "IconCurrencyLyd", "IconCurrencyManat", "IconCurrencyMonero", "IconCurrencyNaira", "IconCurrencyNano", "IconCurrencyOff", "IconCurrencyPaanga", "IconCurrencyPeso", "IconCurrencyPoundOff", "IconCurrencyPound", "IconCurrencyQuetzal", "IconCurrencyReal", "IconCurrencyRenminbi", "IconCurrencyRipple", "IconCurrencyRiyal", "IconCurrencyRubel", "IconCurrencyRufiyaa", "IconCurrencyRupeeNepalese", "IconCurrencyRupee", "IconCurrencyShekel", "IconCurrencySolana", "IconCurrencySom", "IconCurrencyTaka", "IconCurrencyTenge", "IconCurrencyTugrik", "IconCurrencyWon", "IconCurrencyYenOff", "IconCurrencyYen", "IconCurrencyYuan", "IconCurrencyZloty", "IconCurrency", "IconCurrentLocationOff", "IconCurrentLocation", "IconCursorOff", "IconCursorText", "IconCut", "IconCylinderOff", "IconCylinderPlus", "IconCylinder", "IconDashboardOff", "IconDashboard", "IconDatabaseCog", "IconDatabaseDollar", "IconDatabaseEdit", "IconDatabaseExclamation", "IconDatabaseExport", "IconDatabaseHeart", "IconDatabaseImport", "IconDatabaseLeak", "IconDatabaseMinus", "IconDatabaseOff", "IconDatabasePlus", "IconDatabaseSearch", "IconDatabaseShare", "IconDatabaseStar", "IconDatabaseX", "IconDatabase", "IconDecimal", "IconDeer", "IconDelta", "IconDentalBroken", "IconDentalOff", "IconDental", "IconDeselect", "IconDetailsOff", "IconDetails", "IconDeviceAirpodsCase", "IconDeviceAirpods", "IconDeviceAirtag", "IconDeviceAnalytics", "IconDeviceAudioTape", "IconDeviceCameraPhone", "IconDeviceCctvOff", "IconDeviceCctv", "IconDeviceComputerCameraOff", "IconDeviceComputerCamera", "IconDeviceDesktopAnalytics", "IconDeviceDesktopBolt", "IconDeviceDesktopCancel", "IconDeviceDesktopCheck", "IconDeviceDesktopCode", "IconDeviceDesktopCog", "IconDeviceDesktopDollar", "IconDeviceDesktopDown", "IconDeviceDesktopExclamation", "IconDeviceDesktopHeart", "IconDeviceDesktopMinus", "IconDeviceDesktopOff", "IconDeviceDesktopPause", "IconDeviceDesktopPin", "IconDeviceDesktopPlus", "IconDeviceDesktopQuestion", "IconDeviceDesktopSearch", "IconDeviceDesktopShare", "IconDeviceDesktopStar", "IconDeviceDesktopUp", "IconDeviceDesktopX", "IconDeviceDesktop", "IconDeviceFloppy", "IconDeviceGamepad2", "IconDeviceGamepad", "IconDeviceHeartMonitorFilled", "IconDeviceHeartMonitor", "IconDeviceImacBolt", "IconDeviceImacCancel", "IconDeviceImacCheck", "IconDeviceImacCode", "IconDeviceImacCog", "IconDeviceImacDollar", "IconDeviceImacDown", "IconDeviceImacExclamation", "IconDeviceImacHeart", "IconDeviceImacMinus", "IconDeviceImacOff", "IconDeviceImacPause", "IconDeviceImacPin", "IconDeviceImacPlus", "IconDeviceImacQuestion", "IconDeviceImacSearch", "IconDeviceImacShare", "IconDeviceImacStar", "IconDeviceImacUp", "IconDeviceImacX", "IconDeviceImac", "IconDeviceIpadBolt", "IconDeviceIpadCancel", "IconDeviceIpadCheck", "IconDeviceIpadCode", "IconDeviceIpadCog", "IconDeviceIpadDollar", "IconDeviceIpadDown", "IconDeviceIpadExclamation", "IconDeviceIpadHeart", "IconDeviceIpadHorizontalBolt", "IconDeviceIpadHorizontalCancel", "IconDeviceIpadHorizontalCheck", "IconDeviceIpadHorizontalCode", "IconDeviceIpadHorizontalCog", "IconDeviceIpadHorizontalDollar", "IconDeviceIpadHorizontalDown", "IconDeviceIpadHorizontalExclamation", "IconDeviceIpadHorizontalHeart", "IconDeviceIpadHorizontalMinus", "IconDeviceIpadHorizontalOff", "IconDeviceIpadHorizontalPause", "IconDeviceIpadHorizontalPin", "IconDeviceIpadHorizontalPlus", "IconDeviceIpadHorizontalQuestion", "IconDeviceIpadHorizontalSearch", "IconDeviceIpadHorizontalShare", "IconDeviceIpadHorizontalStar", "IconDeviceIpadHorizontalUp", "IconDeviceIpadHorizontalX", "IconDeviceIpadHorizontal", "IconDeviceIpadMinus", "IconDeviceIpadOff", "IconDeviceIpadPause", "IconDeviceIpadPin", "IconDeviceIpadPlus", "IconDeviceIpadQuestion", "IconDeviceIpadSearch", "IconDeviceIpadShare", "IconDeviceIpadStar", "IconDeviceIpadUp", "IconDeviceIpadX", "IconDeviceIpad", "IconDeviceLandlinePhone", "IconDeviceLaptopOff", "IconDeviceLaptop", "IconDeviceMobileBolt", "IconDeviceMobileCancel", "IconDeviceMobileCharging", "IconDeviceMobileCheck", "IconDeviceMobileCode", "IconDeviceMobileCog", "IconDeviceMobileDollar", "IconDeviceMobileDown", "IconDeviceMobileExclamation", "IconDeviceMobileFilled", "IconDeviceMobileHeart", "IconDeviceMobileMessage", "IconDeviceMobileMinus", "IconDeviceMobileOff", "IconDeviceMobilePause", "IconDeviceMobilePin", "IconDeviceMobilePlus", "IconDeviceMobileQuestion", "IconDeviceMobileRotated", "IconDeviceMobileSearch", "IconDeviceMobileShare", "IconDeviceMobileStar", "IconDeviceMobileUp", "IconDeviceMobileVibration", "IconDeviceMobileX", "IconDeviceMobile", "IconDeviceNintendoOff", "IconDeviceNintendo", "IconDeviceRemote", "IconDeviceSdCard", "IconDeviceSim1", "IconDeviceSim2", "IconDeviceSim3", "IconDeviceSim", "IconDeviceSpeakerOff", "IconDeviceSpeaker", "IconDeviceTabletBolt", "IconDeviceTabletCancel", "IconDeviceTabletCheck", "IconDeviceTabletCode", "IconDeviceTabletCog", "IconDeviceTabletDollar", "IconDeviceTabletDown", "IconDeviceTabletExclamation", "IconDeviceTabletFilled", "IconDeviceTabletHeart", "IconDeviceTabletMinus", "IconDeviceTabletOff", "IconDeviceTabletPause", "IconDeviceTabletPin", "IconDeviceTabletPlus", "IconDeviceTabletQuestion", "IconDeviceTabletSearch", "IconDeviceTabletShare", "IconDeviceTabletStar", "IconDeviceTabletUp", "IconDeviceTabletX", "IconDeviceTablet", "IconDeviceTvOff", "IconDeviceTvOld", "IconDeviceTv", "IconDeviceVisionPro", "IconDeviceWatchBolt", "IconDeviceWatchCancel", "IconDeviceWatchCheck", "IconDeviceWatchCode", "IconDeviceWatchCog", "IconDeviceWatchDollar", "IconDeviceWatchDown", "IconDeviceWatchExclamation", "IconDeviceWatchHeart", "IconDeviceWatchMinus", "IconDeviceWatchOff", "IconDeviceWatchPause", "IconDeviceWatchPin", "IconDeviceWatchPlus", "IconDeviceWatchQuestion", "IconDeviceWatchSearch", "IconDeviceWatchShare", "IconDeviceWatchStar", "IconDeviceWatchStats2", "IconDeviceWatchStats", "IconDeviceWatchUp", "IconDeviceWatchX", "IconDeviceWatch", "IconDevices2", "IconDevicesBolt", "IconDevicesCancel", "IconDevicesCheck", "IconDevicesCode", "IconDevicesCog", "IconDevicesDollar", "IconDevicesDown", "IconDevicesExclamation", "IconDevicesHeart", "IconDevicesMinus", "IconDevicesOff", "IconDevicesPause", "IconDevicesPcOff", "IconDevicesPc", "IconDevicesPin", "IconDevicesPlus", "IconDevicesQuestion", "IconDevicesSearch", "IconDevicesShare", "IconDevicesStar", "IconDevicesUp", "IconDevicesX", "IconDevices", "IconDiaboloOff", "IconDiaboloPlus", "IconDiabolo", "IconDialpadFilled", "IconDialpadOff", "IconDialpad", "IconDiamondFilled", "IconDiamondOff", "IconDiamond", "IconDiamondsFilled", "IconDiamonds", "IconDice1Filled", "IconDice1", "IconDice2Filled", "IconDice2", "IconDice3Filled", "IconDice3", "IconDice4Filled", "IconDice4", "IconDice5Filled", "IconDice5", "IconDice6Filled", "IconDice6", "IconDiceFilled", "IconDice", "IconDimensions", "IconDirectionHorizontal", "IconDirectionSignFilled", "IconDirectionSignOff", "IconDirectionSign", "IconDirection", "IconDirectionsOff", "IconDirections", "IconDisabled2", "IconDisabledOff", "IconDisabled", "IconDiscGolf", "IconDiscOff", "IconDisc", "IconDiscount2Off", "IconDiscount2", "IconDiscountCheckFilled", "IconDiscountCheck", "IconDiscountOff", "IconDiscount", "IconDivide", "IconDna2Off", "IconDna2", "IconDnaOff", "IconDna", "IconDogBowl", "IconDog", "IconDoorEnter", "IconDoorExit", "IconDoorOff", "IconDoor", "IconDotsCircleHorizontal", "IconDotsDiagonal2", "IconDotsDiagonal", "IconDotsVertical", "IconDots", "IconDownloadOff", "IconDownload", "IconDragDrop2", "IconDragDrop", "IconDroneOff", "IconDrone", "IconDropCircle", "IconDropletBolt", "IconDropletCancel", "IconDropletCheck", "IconDropletCode", "IconDropletCog", "IconDropletDollar", "IconDropletDown", "IconDropletExclamation", "IconDropletFilled", "IconDropletHalf2", "IconDropletHalfFilled", "IconDropletHalf", "IconDropletHeart", "IconDropletMinus", "IconDropletOff", "IconDropletPause", "IconDropletPin", "IconDropletPlus", "IconDropletQuestion", "IconDropletSearch", "IconDropletShare", "IconDropletStar", "IconDropletUp", "IconDropletX", "IconDroplet", "IconDualScreen", "IconEPassport", "IconEarOff", "IconEar", "IconEaseInControlPoint", "IconEaseInOutControlPoints", "IconEaseInOut", "IconEaseIn", "IconEaseOutControlPoint", "IconEaseOut", "IconEditCircleOff", "IconEditCircle", "IconEditOff", "IconEdit", "IconEggCracked", "IconEggFilled", "IconEggFried", "IconEggOff", "IconEgg", "IconEggs", "IconElevatorOff", "IconElevator", "IconEmergencyBed", "IconEmpathizeOff", "IconEmpathize", "IconEmphasis", "IconEngineOff", "IconEngine", "IconEqualDouble", "IconEqualNot", "IconEqual", "IconEraserOff", "IconEraser", "IconError404Off", "IconError404", "IconEscalatorDown", "IconEscalatorUp", "IconEscalator", "IconExchangeOff", "IconExchange", "IconExclamationCircle", "IconExclamationMarkOff", "IconExclamationMark", "IconExplicitOff", "IconExplicit", "IconExposure0", "IconExposureMinus1", "IconExposureMinus2", "IconExposureOff", "IconExposurePlus1", "IconExposurePlus2", "IconExposure", "IconExternalLinkOff", "IconExternalLink", "IconEyeCheck", "IconEyeClosed", "IconEyeCog", "IconEyeEdit", "IconEyeExclamation", "IconEyeFilled", "IconEyeHeart", "IconEyeOff", "IconEyeTable", "IconEyeX", "IconEye", "IconEyeglass2", "IconEyeglassOff", "IconEyeglass", "IconFaceIdError", "IconFaceId", "IconFaceMaskOff", "IconFaceMask", "IconFall", "IconFeatherOff", "IconFeather", "IconFenceOff", "IconFence", "IconFidgetSpinner", "IconFile3d", "IconFileAlert", "IconFileAnalytics", "IconFileArrowLeft", "IconFileArrowRight", "IconFileBarcode", "IconFileBroken", "IconFileCertificate", "IconFileChart", "IconFileCheck", "IconFileCode2", "IconFileCode", "IconFileCv", "IconFileDatabase", "IconFileDelta", "IconFileDescription", "IconFileDiff", "IconFileDigit", "IconFileDislike", "IconFileDollar", "IconFileDots", "IconFileDownload", "IconFileEuro", "IconFileExport", "IconFileFilled", "IconFileFunction", "IconFileHorizontal", "IconFileImport", "IconFileInfinity", "IconFileInfo", "IconFileInvoice", "IconFileLambda", "IconFileLike", "IconFileMinus", "IconFileMusic", "IconFileOff", "IconFileOrientation", "IconFilePencil", "IconFilePercent", "IconFilePhone", "IconFilePlus", "IconFilePower", "IconFileReport", "IconFileRss", "IconFileScissors", "IconFileSearch", "IconFileSettings", "IconFileShredder", "IconFileSignal", "IconFileSpreadsheet", "IconFileStack", "IconFileStar", "IconFileSymlink", "IconFileTextAi", "IconFileText", "IconFileTime", "IconFileTypeBmp", "IconFileTypeCss", "IconFileTypeCsv", "IconFileTypeDoc", "IconFileTypeDocx", "IconFileTypeHtml", "IconFileTypeJpg", "IconFileTypeJs", "IconFileTypeJsx", "IconFileTypePdf", "IconFileTypePhp", "IconFileTypePng", "IconFileTypePpt", "IconFileTypeRs", "IconFileTypeSql", "IconFileTypeSvg", "IconFileTypeTs", "IconFileTypeTsx", "IconFileTypeTxt", "IconFileTypeVue", "IconFileTypeXls", "IconFileTypeXml", "IconFileTypeZip", "IconFileTypography", "IconFileUnknown", "IconFileUpload", "IconFileVector", "IconFileXFilled", "IconFileX", "IconFileZip", "IconFile", "IconFilesOff", "IconFiles", "IconFilterCog", "IconFilterDollar", "IconFilterEdit", "IconFilterMinus", "IconFilterOff", "IconFilterPlus", "IconFilterStar", "IconFilterX", "IconFilter", "IconFilters", "IconFingerprintOff", "IconFingerprint", "IconFireExtinguisher", "IconFireHydrantOff", "IconFireHydrant", "IconFiretruck", "IconFirstAidKitOff", "IconFirstAidKit", "IconFishBone", "IconFishChristianity", "IconFishHookOff", "IconFishHook", "IconFishOff", "IconFish", "IconFlag2Filled", "IconFlag2Off", "IconFlag2", "IconFlag3Filled", "IconFlag3", "IconFlagFilled", "IconFlagOff", "IconFlag", "IconFlameOff", "IconFlame", "IconFlare", "IconFlask2Off", "IconFlask2", "IconFlaskOff", "IconFlask", "IconFlipFlops", "IconFlipHorizontal", "IconFlipVertical", "IconFloatCenter", "IconFloatLeft", "IconFloatNone", "IconFloatRight", "IconFlowerOff", "IconFlower", "IconFocus2", "IconFocusAuto", "IconFocusCentered", "IconFocus", "IconFoldDown", "IconFoldUp", "IconFold", "IconFolderBolt", "IconFolderCancel", "IconFolderCheck", "IconFolderCode", "IconFolderCog", "IconFolderDollar", "IconFolderDown", "IconFolderExclamation", "IconFolderFilled", "IconFolderHeart", "IconFolderMinus", "IconFolderOff", "IconFolderOpen", "IconFolderPause", "IconFolderPin", "IconFolderPlus", "IconFolderQuestion", "IconFolderSearch", "IconFolderShare", "IconFolderStar", "IconFolderSymlink", "IconFolderUp", "IconFolderX", "IconFolder", "IconFoldersOff", "IconFolders", "IconForbid2", "IconForbid", "IconForklift", "IconForms", "IconFountainOff", "IconFountain", "IconFrameOff", "IconFrame", "IconFreeRights", "IconFreezeColumn", "IconFreezeRowColumn", "IconFreezeRow", "IconFridgeOff", "IconFridge", "IconFriendsOff", "IconFriends", "IconFrustumOff", "IconFrustumPlus", "IconFrustum", "IconFunctionOff", "IconFunction", "IconGardenCartOff", "IconGardenCart", "IconGasStationOff", "IconGasStation", "IconGaugeOff", "IconGauge", "IconGavel", "IconGenderAgender", "IconGenderAndrogyne", "IconGenderBigender", "IconGenderDemiboy", "IconGenderDemigirl", "IconGenderEpicene", "IconGenderFemale", "IconGenderFemme", "IconGenderGenderfluid", "IconGenderGenderless", "IconGenderGenderqueer", "IconGenderHermaphrodite", "IconGenderIntergender", "IconGenderMale", "IconGenderNeutrois", "IconGenderThird", "IconGenderTransgender", "IconGenderTrasvesti", "IconGeometry", "IconGhost2Filled", "IconGhost2", "IconGhostFilled", "IconGhostOff", "IconGhost", "IconGif", "IconGiftCard", "IconGiftOff", "IconGift", "IconGitBranchDeleted", "IconGitBranch", "IconGitCherryPick", "IconGitCommit", "IconGitCompare", "IconGitFork", "IconGitMerge", "IconGitPullRequestClosed", "IconGitPullRequestDraft", "IconGitPullRequest", "IconGizmo", "IconGlassFull", "IconGlassOff", "IconGlass", "IconGlobeOff", "IconGlobe", "IconGoGame", "IconGolfOff", "IconGolf", "IconGps", "IconGradienter", "IconGrain", "IconGraphOff", "IconGraph", "IconGrave2", "IconGrave", "IconGridDots", "IconGridPattern", "IconGrillFork", "IconGrillOff", "IconGrillSpatula", "IconGrill", "IconGripHorizontal", "IconGripVertical", "IconGrowth", "IconGuitarPickFilled", "IconGuitarPick", "IconH1", "IconH2", "IconH3", "IconH4", "IconH5", "IconH6", "IconHammerOff", "IconHammer", "IconHandClick", "IconHandFingerOff", "IconHandFinger", "IconHandGrab", "IconHandLittleFinger", "IconHandMiddleFinger", "IconHandMove", "IconHandOff", "IconHandRingFinger", "IconHandRock", "IconHandSanitizer", "IconHandStop", "IconHandThreeFingers", "IconHandTwoFingers", "IconHanger2", "IconHangerOff", "IconHanger", "IconHash", "IconHazeMoon", "IconHaze", "IconHdr", "IconHeadingOff", "IconHeading", "IconHeadphonesFilled", "IconHeadphonesOff", "IconHeadphones", "IconHeadsetOff", "IconHeadset", "IconHealthRecognition", "IconHeartBroken", "IconHeartFilled", "IconHeartHandshake", "IconHeartMinus", "IconHeartOff", "IconHeartPlus", "IconHeartRateMonitor", "IconHeart", "IconHeartbeat", "IconHeartsOff", "IconHearts", "IconHelicopterLanding", "IconHelicopter", "IconHelmetOff", "IconHelmet", "IconHelpCircleFilled", "IconHelpCircle", "IconHelpHexagonFilled", "IconHelpHexagon", "IconHelpOctagonFilled", "IconHelpOctagon", "IconHelpOff", "IconHelpSmall", "IconHelpSquareFilled", "IconHelpSquareRoundedFilled", "IconHelpSquareRounded", "IconHelpSquare", "IconHelpTriangleFilled", "IconHelpTriangle", "IconHelp", "IconHemisphereOff", "IconHemispherePlus", "IconHemisphere", "IconHexagon0Filled", "IconHexagon1Filled", "IconHexagon2Filled", "IconHexagon3Filled", "IconHexagon3d", "IconHexagon4Filled", "IconHexagon5Filled", "IconHexagon6Filled", "IconHexagon7Filled", "IconHexagon8Filled", "IconHexagon9Filled", "IconHexagonFilled", "IconHexagonLetterA", "IconHexagonLetterB", "IconHexagonLetterC", "IconHexagonLetterD", "IconHexagonLetterE", "IconHexagonLetterF", "IconHexagonLetterG", "IconHexagonLetterH", "IconHexagonLetterI", "IconHexagonLetterJ", "IconHexagonLetterK", "IconHexagonLetterL", "IconHexagonLetterM", "IconHexagonLetterN", "IconHexagonLetterO", "IconHexagonLetterP", "IconHexagonLetterQ", "IconHexagonLetterR", "IconHexagonLetterS", "IconHexagonLetterT", "IconHexagonLetterU", "IconHexagonLetterV", "IconHexagonLetterW", "IconHexagonLetterX", "IconHexagonLetterY", "IconHexagonLetterZ", "IconHexagonNumber0", "IconHexagonNumber1", "IconHexagonNumber2", "IconHexagonNumber3", "IconHexagonNumber4", "IconHexagonNumber5", "IconHexagonNumber6", "IconHexagonNumber7", "IconHexagonNumber8", "IconHexagonNumber9", "IconHexagonOff", "IconHexagon", "IconHexagonalPrismOff", "IconHexagonalPrismPlus", "IconHexagonalPrism", "IconHexagonalPyramidOff", "IconHexagonalPyramidPlus", "IconHexagonalPyramid", "IconHexagonsOff", "IconHexagons", "IconHierarchy2", "IconHierarchy3", "IconHierarchyOff", "IconHierarchy", "IconHighlightOff", "IconHighlight", "IconHistoryOff", "IconHistoryToggle", "IconHistory", "IconHome2", "IconHomeBolt", "IconHomeCancel", "IconHomeCheck", "IconHomeCog", "IconHomeDollar", "IconHomeDot", "IconHomeDown", "IconHomeEco", "IconHomeEdit", "IconHomeExclamation", "IconHomeHand", "IconHomeHeart", "IconHomeInfinity", "IconHomeLink", "IconHomeMinus", "IconHomeMove", "IconHomeOff", "IconHomePlus", "IconHomeQuestion", "IconHomeRibbon", "IconHomeSearch", "IconHomeShare", "IconHomeShield", "IconHomeSignal", "IconHomeStar", "IconHomeStats", "IconHomeUp", "IconHomeX", "IconHome", "IconHorseToy", "IconHotelService", "IconHourglassEmpty", "IconHourglassFilled", "IconHourglassHigh", "IconHourglassLow", "IconHourglassOff", "IconHourglass", "IconHtml", "IconHttpConnect", "IconHttpDelete", "IconHttpGet", "IconHttpHead", "IconHttpOptions", "IconHttpPatch", "IconHttpPost", "IconHttpPut", "IconHttpQue", "IconHttpTrace", "IconIceCream2", "IconIceCreamOff", "IconIceCream", "IconIceSkating", "IconIconsOff", "IconIcons", "IconIdBadge2", "IconIdBadgeOff", "IconIdBadge", "IconIdOff", "IconId", "IconInboxOff", "IconInbox", "IconIndentDecrease", "IconIndentIncrease", "IconInfinityOff", "IconInfinity", "IconInfoCircleFilled", "IconInfoCircle", "IconInfoHexagonFilled", "IconInfoHexagon", "IconInfoOctagonFilled", "IconInfoOctagon", "IconInfoSmall", "IconInfoSquareFilled", "IconInfoSquareRoundedFilled", "IconInfoSquareRounded", "IconInfoSquare", "IconInfoTriangleFilled", "IconInfoTriangle", "IconInnerShadowBottomFilled", "IconInnerShadowBottomLeftFilled", "IconInnerShadowBottomLeft", "IconInnerShadowBottomRightFilled", "IconInnerShadowBottomRight", "IconInnerShadowBottom", "IconInnerShadowLeftFilled", "IconInnerShadowLeft", "IconInnerShadowRightFilled", "IconInnerShadowRight", "IconInnerShadowTopFilled", "IconInnerShadowTopLeftFilled", "IconInnerShadowTopLeft", "IconInnerShadowTopRightFilled", "IconInnerShadowTopRight", "IconInnerShadowTop", "IconInputSearch", "IconIroning1", "IconIroning2", "IconIroning3", "IconIroningOff", "IconIroningSteamOff", "IconIroningSteam", "IconIroning", "IconIrregularPolyhedronOff", "IconIrregularPolyhedronPlus", "IconIrregularPolyhedron", "IconItalic", "IconJacket", "IconJetpack", "IconJewishStarFilled", "IconJewishStar", "IconJpg", "IconJson", "IconJumpRope", "IconKarate", "IconKayak", "IconKering", "IconKeyOff", "IconKey", "IconKeyboardHide", "IconKeyboardOff", "IconKeyboardShow", "IconKeyboard", "IconKeyframeAlignCenter", "IconKeyframeAlignHorizontal", "IconKeyframeAlignVertical", "IconKeyframe", "IconKeyframes", "IconLadderOff", "IconLadder", "IconLambda", "IconLamp2", "IconLampOff", "IconLamp", "IconLane", "IconLanguageHiragana", "IconLanguageKatakana", "IconLanguageOff", "IconLanguage", "IconLassoOff", "IconLassoPolygon", "IconLasso", "IconLayersDifference", "IconLayersIntersect2", "IconLayersIntersect", "IconLayersLinked", "IconLayersOff", "IconLayersSubtract", "IconLayersUnion", "IconLayout2", "IconLayoutAlignBottom", "IconLayoutAlignCenter", "IconLayoutAlignLeft", "IconLayoutAlignMiddle", "IconLayoutAlignRight", "IconLayoutAlignTop", "IconLayoutBoardSplit", "IconLayoutBoard", "IconLayoutBottombarCollapse", "IconLayoutBottombarExpand", "IconLayoutBottombar", "IconLayoutCards", "IconLayoutCollage", "IconLayoutColumns", "IconLayoutDashboard", "IconLayoutDistributeHorizontal", "IconLayoutDistributeVertical", "IconLayoutGridAdd", "IconLayoutGridRemove", "IconLayoutGrid", "IconLayoutKanban", "IconLayoutList", "IconLayoutNavbarCollapse", "IconLayoutNavbarExpand", "IconLayoutNavbar", "IconLayoutOff", "IconLayoutRows", "IconLayoutSidebarLeftCollapse", "IconLayoutSidebarLeftExpand", "IconLayoutSidebarRightCollapse", "IconLayoutSidebarRightExpand", "IconLayoutSidebarRight", "IconLayoutSidebar", "IconLayout", "IconLeafOff", "IconLeaf", "IconLegoOff", "IconLego", "IconLemon2", "IconLemon", "IconLetterA", "IconLetterB", "IconLetterC", "IconLetterCaseLower", "IconLetterCaseToggle", "IconLetterCaseUpper", "IconLetterCase", "IconLetterD", "IconLetterE", "IconLetterF", "IconLetterG", "IconLetterH", "IconLetterI", "IconLetterJ", "IconLetterK", "IconLetterL", "IconLetterM", "IconLetterN", "IconLetterO", "IconLetterP", "IconLetterQ", "IconLetterR", "IconLetterS", "IconLetterSpacing", "IconLetterT", "IconLetterU", "IconLetterV", "IconLetterW", "IconLetterX", "IconLetterY", "IconLetterZ", "IconLicenseOff", "IconLicense", "IconLifebuoyOff", "IconLifebuoy", "IconLighter", "IconLineDashed", "IconLineDotted", "IconLineHeight", "IconLine", "IconLinkOff", "IconLink", "IconListCheck", "IconListDetails", "IconListNumbers", "IconListSearch", "IconListTree", "IconList", "IconLivePhotoOff", "IconLivePhoto", "IconLiveView", "IconLoadBalancer", "IconLoader2", "IconLoader3", "IconLoaderQuarter", "IconLoader", "IconLocationBroken", "IconLocationFilled", "IconLocationOff", "IconLocation", "IconLockAccessOff", "IconLockAccess", "IconLockBolt", "IconLockCancel", "IconLockCheck", "IconLockCode", "IconLockCog", "IconLockDollar", "IconLockDown", "IconLockExclamation", "IconLockHeart", "IconLockMinus", "IconLockOff", "IconLockOpenOff", "IconLockOpen", "IconLockPause", "IconLockPin", "IconLockPlus", "IconLockQuestion", "IconLockSearch", "IconLockShare", "IconLockSquareRoundedFilled", "IconLockSquareRounded", "IconLockSquare", "IconLockStar", "IconLockUp", "IconLockX", "IconLock", "IconLogicAnd", "IconLogicBuffer", "IconLogicNand", "IconLogicNor", "IconLogicNot", "IconLogicOr", "IconLogicXnor", "IconLogicXor", "IconLogin", "IconLogout2", "IconLogout", "IconLollipopOff", "IconLollipop", "IconLuggageOff", "IconLuggage", "IconLungsOff", "IconLungs", "IconMacroOff", "IconMacro", "IconMagnetOff", "IconMagnet", "IconMailAi", "IconMailBolt", "IconMailCancel", "IconMailCheck", "IconMailCode", "IconMailCog", "IconMailDollar", "IconMailDown", "IconMailExclamation", "IconMailFast", "IconMailFilled", "IconMailForward", "IconMailHeart", "IconMailMinus", "IconMailOff", "IconMailOpenedFilled", "IconMailOpened", "IconMailPause", "IconMailPin", "IconMailPlus", "IconMailQuestion", "IconMailSearch", "IconMailShare", "IconMailStar", "IconMailUp", "IconMailX", "IconMail", "IconMailboxOff", "IconMailbox", "IconMan", "IconManualGearbox", "IconMap2", "IconMapOff", "IconMapPinBolt", "IconMapPinCancel", "IconMapPinCheck", "IconMapPinCode", "IconMapPinCog", "IconMapPinDollar", "IconMapPinDown", "IconMapPinExclamation", "IconMapPinFilled", "IconMapPinHeart", "IconMapPinMinus", "IconMapPinOff", "IconMapPinPause", "IconMapPinPin", "IconMapPinPlus", "IconMapPinQuestion", "IconMapPinSearch", "IconMapPinShare", "IconMapPinStar", "IconMapPinUp", "IconMapPinX", "IconMapPin", "IconMapPins", "IconMapSearch", "IconMap", "IconMarkdownOff", "IconMarkdown", "IconMarquee2", "IconMarqueeOff", "IconMarquee", "IconMars", "IconMaskOff", "IconMask", "IconMasksTheaterOff", "IconMasksTheater", "IconMassage", "IconMatchstick", "IconMath1Divide2", "IconMath1Divide3", "IconMathAvg", "IconMathEqualGreater", "IconMathEqualLower", "IconMathFunctionOff", "IconMathFunctionY", "IconMathFunction", "IconMathGreater", "IconMathIntegralX", "IconMathIntegral", "IconMathIntegrals", "IconMathLower", "IconMathMax", "IconMathMin", "IconMathNot", "IconMathOff", "IconMathPiDivide2", "IconMathPi", "IconMathSymbols", "IconMathXDivide2", "IconMathXDivideY2", "IconMathXDivideY", "IconMathXMinusX", "IconMathXMinusY", "IconMathXPlusX", "IconMathXPlusY", "IconMathXy", "IconMathYMinusY", "IconMathYPlusY", "IconMath", "IconMaximizeOff", "IconMaximize", "IconMeatOff", "IconMeat", "IconMedal2", "IconMedal", "IconMedicalCrossCircle", "IconMedicalCrossFilled", "IconMedicalCrossOff", "IconMedicalCross", "IconMedicineSyrup", "IconMeeple", "IconMenorah", "IconMenu2", "IconMenuDeep", "IconMenuOrder", "IconMenu", "IconMessage2Bolt", "IconMessage2Cancel", "IconMessage2Check", "IconMessage2Code", "IconMessage2Cog", "IconMessage2Dollar", "IconMessage2Down", "IconMessage2Exclamation", "IconMessage2Heart", "IconMessage2Minus", "IconMessage2Off", "IconMessage2Pause", "IconMessage2Pin", "IconMessage2Plus", "IconMessage2Question", "IconMessage2Search", "IconMessage2Share", "IconMessage2Star", "IconMessage2Up", "IconMessage2X", "IconMessage2", "IconMessageBolt", "IconMessageCancel", "IconMessageChatbot", "IconMessageCheck", "IconMessageCircle2Filled", "IconMessageCircle2", "IconMessageCircleBolt", "IconMessageCircleCancel", "IconMessageCircleCheck", "IconMessageCircleCode", "IconMessageCircleCog", "IconMessageCircleDollar", "IconMessageCircleDown", "IconMessageCircleExclamation", "IconMessageCircleHeart", "IconMessageCircleMinus", "IconMessageCircleOff", "IconMessageCirclePause", "IconMessageCirclePin", "IconMessageCirclePlus", "IconMessageCircleQuestion", "IconMessageCircleSearch", "IconMessageCircleShare", "IconMessageCircleStar", "IconMessageCircleUp", "IconMessageCircleX", "IconMessageCircle", "IconMessageCode", "IconMessageCog", "IconMessageDollar", "IconMessageDots", "IconMessageDown", "IconMessageExclamation", "IconMessageForward", "IconMessageHeart", "IconMessageLanguage", "IconMessageMinus", "IconMessageOff", "IconMessagePause", "IconMessagePin", "IconMessagePlus", "IconMessageQuestion", "IconMessageReport", "IconMessageSearch", "IconMessageShare", "IconMessageStar", "IconMessageUp", "IconMessageX", "IconMessage", "IconMessagesOff", "IconMessages", "IconMeteorOff", "IconMeteor", "IconMichelinBibGourmand", "IconMichelinStarGreen", "IconMichelinStar", "IconMickeyFilled", "IconMickey", "IconMicrophone2Off", "IconMicrophone2", "IconMicrophoneOff", "IconMicrophone", "IconMicroscopeOff", "IconMicroscope", "IconMicrowaveOff", "IconMicrowave", "IconMilitaryAward", "IconMilitaryRank", "IconMilkOff", "IconMilk", "IconMilkshake", "IconMinimize", "IconMinusVertical", "IconMinus", "IconMistOff", "IconMist", "IconMobiledataOff", "IconMobiledata", "IconMoneybag", "IconMoodAngry", "IconMoodAnnoyed2", "IconMoodAnnoyed", "IconMoodBoy", "IconMoodCheck", "IconMoodCog", "IconMoodConfuzedFilled", "IconMoodConfuzed", "IconMoodCrazyHappy", "IconMoodCry", "IconMoodDollar", "IconMoodEdit", "IconMoodEmptyFilled", "IconMoodEmpty", "IconMoodHappyFilled", "IconMoodHappy", "IconMoodHeart", "IconMoodKidFilled", "IconMoodKid", "IconMoodLookLeft", "IconMoodLookRight", "IconMoodMinus", "IconMoodNerd", "IconMoodNervous", "IconMoodNeutralFilled", "IconMoodNeutral", "IconMoodOff", "IconMoodPin", "IconMoodPlus", "IconMoodSad2", "IconMoodSadDizzy", "IconMoodSadFilled", "IconMoodSadSquint", "IconMoodSad", "IconMoodSearch", "IconMoodShare", "IconMoodSick", "IconMoodSilence", "IconMoodSing", "IconMoodSmileBeam", "IconMoodSmileDizzy", "IconMoodSmileFilled", "IconMoodSmile", "IconMoodSuprised", "IconMoodTongueWink2", "IconMoodTongueWink", "IconMoodTongue", "IconMoodUnamused", "IconMoodUp", "IconMoodWink2", "IconMoodWink", "IconMoodWrrr", "IconMoodX", "IconMoodXd", "IconMoon2", "IconMoonFilled", "IconMoonOff", "IconMoonStars", "IconMoon", "IconMoped", "IconMotorbike", "IconMountainOff", "IconMountain", "IconMouse2", "IconMouseFilled", "IconMouseOff", "IconMouse", "IconMoustache", "IconMovieOff", "IconMovie", "IconMugOff", "IconMug", "IconMultiplier05x", "IconMultiplier15x", "IconMultiplier1x", "IconMultiplier2x", "IconMushroomFilled", "IconMushroomOff", "IconMushroom", "IconMusicOff", "IconMusic", "IconNavigationFilled", "IconNavigationNorth", "IconNavigationOff", "IconNavigation", "IconNeedleThread", "IconNeedle", "IconNetworkOff", "IconNetwork", "IconNewSection", "IconNewsOff", "IconNews", "IconNfcOff", "IconNfc", "IconNoCopyright", "IconNoCreativeCommons", "IconNoDerivatives", "IconNorthStar", "IconNoteOff", "IconNote", "IconNotebookOff", "IconNotebook", "IconNotesOff", "IconNotes", "IconNotificationOff", "IconNotification", "IconNumber0", "IconNumber1", "IconNumber2", "IconNumber3", "IconNumber4", "IconNumber5", "IconNumber6", "IconNumber7", "IconNumber8", "IconNumber9", "IconNumber", "IconNumbers", "IconNurse", "IconOctagonFilled", "IconOctagonOff", "IconOctagon", "IconOctahedronOff", "IconOctahedronPlus", "IconOctahedron", "IconOld", "IconOlympicsOff", "IconOlympics", "IconOm", "IconOmega", "IconOutbound", "IconOutlet", "IconOvalFilled", "IconOvalVerticalFilled", "IconOvalVertical", "IconOval", "IconOverline", "IconPackageExport", "IconPackageImport", "IconPackageOff", "IconPackage", "IconPackages", "IconPacman", "IconPageBreak", "IconPaintFilled", "IconPaintOff", "IconPaint", "IconPaletteOff", "IconPalette", "IconPanoramaHorizontalOff", "IconPanoramaHorizontal", "IconPanoramaVerticalOff", "IconPanoramaVertical", "IconPaperBagOff", "IconPaperBag", "IconPaperclip", "IconParachuteOff", "IconParachute", "IconParenthesesOff", "IconParentheses", "IconParkingOff", "IconParking", "IconPassword", "IconPawFilled", "IconPawOff", "IconPaw", "IconPdf", "IconPeace", "IconPencilMinus", "IconPencilOff", "IconPencilPlus", "IconPencil", "IconPennant2Filled", "IconPennant2", "IconPennantFilled", "IconPennantOff", "IconPennant", "IconPentagonFilled", "IconPentagonOff", "IconPentagon", "IconPentagram", "IconPepperOff", "IconPepper", "IconPercentage", "IconPerfume", "IconPerspectiveOff", "IconPerspective", "IconPhoneCall", "IconPhoneCalling", "IconPhoneCheck", "IconPhoneFilled", "IconPhoneIncoming", "IconPhoneOff", "IconPhoneOutgoing", "IconPhonePause", "IconPhonePlus", "IconPhoneX", "IconPhone", "IconPhotoAi", "IconPhotoBolt", "IconPhotoCancel", "IconPhotoCheck", "IconPhotoCode", "IconPhotoCog", "IconPhotoDollar", "IconPhotoDown", "IconPhotoEdit", "IconPhotoExclamation", "IconPhotoFilled", "IconPhotoHeart", "IconPhotoMinus", "IconPhotoOff", "IconPhotoPause", "IconPhotoPin", "IconPhotoPlus", "IconPhotoQuestion", "IconPhotoSearch", "IconPhotoSensor2", "IconPhotoSensor3", "IconPhotoSensor", "IconPhotoShare", "IconPhotoShield", "IconPhotoStar", "IconPhotoUp", "IconPhotoX", "IconPhoto", "IconPhysotherapist", "IconPiano", "IconPick", "IconPictureInPictureOff", "IconPictureInPictureOn", "IconPictureInPictureTop", "IconPictureInPicture", "IconPigMoney", "IconPigOff", "IconPig", "IconPilcrow", "IconPillOff", "IconPill", "IconPills", "IconPinFilled", "IconPin", "IconPingPong", "IconPinnedFilled", "IconPinnedOff", "IconPinned", "IconPizzaOff", "IconPizza", "IconPlaceholder", "IconPlaneArrival", "IconPlaneDeparture", "IconPlaneInflight", "IconPlaneOff", "IconPlaneTilt", "IconPlane", "IconPlanetOff", "IconPlanet", "IconPlant2Off", "IconPlant2", "IconPlantOff", "IconPlant", "IconPlayBasketball", "IconPlayCardOff", "IconPlayCard", "IconPlayFootball", "IconPlayHandball", "IconPlayVolleyball", "IconPlayerEjectFilled", "IconPlayerEject", "IconPlayerPauseFilled", "IconPlayerPause", "IconPlayerPlayFilled", "IconPlayerPlay", "IconPlayerRecordFilled", "IconPlayerRecord", "IconPlayerSkipBackFilled", "IconPlayerSkipBack", "IconPlayerSkipForwardFilled", "IconPlayerSkipForward", "IconPlayerStopFilled", "IconPlayerStop", "IconPlayerTrackNextFilled", "IconPlayerTrackNext", "IconPlayerTrackPrevFilled", "IconPlayerTrackPrev", "IconPlaylistAdd", "IconPlaylistOff", "IconPlaylistX", "IconPlaylist", "IconPlaystationCircle", "IconPlaystationSquare", "IconPlaystationTriangle", "IconPlaystationX", "IconPlugConnectedX", "IconPlugConnected", "IconPlugOff", "IconPlugX", "IconPlug", "IconPlusEqual", "IconPlusMinus", "IconPlus", "IconPng", "IconPodiumOff", "IconPodium", "IconPointFilled", "IconPointOff", "IconPoint", "IconPointerBolt", "IconPointerCancel", "IconPointerCheck", "IconPointerCode", "IconPointerCog", "IconPointerDollar", "IconPointerDown", "IconPointerExclamation", "IconPointerFilled", "IconPointerHeart", "IconPointerMinus", "IconPointerOff", "IconPointerPause", "IconPointerPin", "IconPointerPlus", "IconPointerQuestion", "IconPointerSearch", "IconPointerShare", "IconPointerStar", "IconPointerUp", "IconPointerX", "IconPointer", "IconPokeballOff", "IconPokeball", "IconPokerChip", "IconPolaroidFilled", "IconPolaroid", "IconPolygonOff", "IconPolygon", "IconPoo", "IconPoolOff", "IconPool", "IconPower", "IconPray", "IconPremiumRights", "IconPrescription", "IconPresentationAnalytics", "IconPresentationOff", "IconPresentation", "IconPrinterOff", "IconPrinter", "IconPrismOff", "IconPrismPlus", "IconPrism", "IconPrison", "IconProgressAlert", "IconProgressBolt", "IconProgressCheck", "IconProgressDown", "IconProgressHelp", "IconProgressX", "IconProgress", "IconPrompt", "IconPropellerOff", "IconPropeller", "IconPumpkinScary", "IconPuzzle2", "IconPuzzleFilled", "IconPuzzleOff", "IconPuzzle", "IconPyramidOff", "IconPyramidPlus", "IconPyramid", "IconQrcodeOff", "IconQrcode", "IconQuestionMark", "IconQuoteOff", "IconQuote", "IconQuotes", "IconRadar2", "IconRadarOff", "IconRadar", "IconRadioOff", "IconRadio", "IconRadioactiveFilled", "IconRadioactiveOff", "IconRadioactive", "IconRadiusBottomLeft", "IconRadiusBottomRight", "IconRadiusTopLeft", "IconRadiusTopRight", "IconRainbowOff", "IconRainbow", "IconRating12Plus", "IconRating14Plus", "IconRating16Plus", "IconRating18Plus", "IconRating21Plus", "IconRazorElectric", "IconRazor", "IconReceipt2", "IconReceiptOff", "IconReceiptRefund", "IconReceiptTax", "IconReceipt", "IconRecharging", "IconRecordMailOff", "IconRecordMail", "IconRectangleFilled", "IconRectangleRoundedBottom", "IconRectangleRoundedTop", "IconRectangleVerticalFilled", "IconRectangleVertical", "IconRectangle", "IconRectangularPrismOff", "IconRectangularPrismPlus", "IconRectangularPrism", "IconRecycleOff", "IconRecycle", "IconRefreshAlert", "IconRefreshDot", "IconRefreshOff", "IconRefresh", "IconRegexOff", "IconRegex", "IconRegistered", "IconRelationManyToMany", "IconRelationOneToMany", "IconRelationOneToOne", "IconReload", "IconRepeatOff", "IconRepeatOnce", "IconRepeat", "IconReplaceFilled", "IconReplaceOff", "IconReplace", "IconReportAnalytics", "IconReportMedical", "IconReportMoney", "IconReportOff", "IconReportSearch", "IconReport", "IconReservedLine", "IconResize", "IconRestore", "IconRewindBackward10", "IconRewindBackward15", "IconRewindBackward20", "IconRewindBackward30", "IconRewindBackward40", "IconRewindBackward5", "IconRewindBackward50", "IconRewindBackward60", "IconRewindForward10", "IconRewindForward15", "IconRewindForward20", "IconRewindForward30", "IconRewindForward40", "IconRewindForward5", "IconRewindForward50", "IconRewindForward60", "IconRibbonHealth", "IconRings", "IconRippleOff", "IconRipple", "IconRoadOff", "IconRoadSign", "IconRoad", "IconRobotOff", "IconRobot", "IconRocketOff", "IconRocket", "IconRollerSkating", "IconRollercoasterOff", "IconRollercoaster", "IconRosetteFilled", "IconRosetteNumber0", "IconRosetteNumber1", "IconRosetteNumber2", "IconRosetteNumber3", "IconRosetteNumber4", "IconRosetteNumber5", "IconRosetteNumber6", "IconRosetteNumber7", "IconRosetteNumber8", "IconRosetteNumber9", "IconRosette", "IconRotate2", "IconRotate360", "IconRotateClockwise2", "IconRotateClockwise", "IconRotateDot", "IconRotateRectangle", "IconRotate", "IconRoute2", "IconRouteOff", "IconRoute", "IconRouterOff", "IconRouter", "IconRowInsertBottom", "IconRowInsertTop", "IconRowRemove", "IconRss", "IconRubberStampOff", "IconRubberStamp", "IconRuler2Off", "IconRuler2", "IconRuler3", "IconRulerMeasure", "IconRulerOff", "IconRuler", "IconRun", "IconSTurnDown", "IconSTurnLeft", "IconSTurnRight", "IconSTurnUp", "IconSailboat2", "IconSailboatOff", "IconSailboat", "IconSalad", "IconSalt", "IconSatelliteOff", "IconSatellite", "IconSausage", "IconScaleOff", "IconScaleOutlineOff", "IconScaleOutline", "IconScale", "IconScanEye", "IconScan", "IconSchemaOff", "IconSchema", "IconSchoolBell", "IconSchoolOff", "IconSchool", "IconScissorsOff", "IconScissors", "IconScooterElectric", "IconScooter", "IconScoreboard", "IconScreenShareOff", "IconScreenShare", "IconScreenshot", "IconScribbleOff", "IconScribble", "IconScriptMinus", "IconScriptPlus", "IconScriptX", "IconScript", "IconScubaMaskOff", "IconScubaMask", "IconSdk", "IconSearchOff", "IconSearch", "IconSectionSign", "IconSection", "IconSeedingOff", "IconSeeding", "IconSelectAll", "IconSelect", "IconSelector", "IconSendOff", "IconSend", "IconSeo", "IconSeparatorHorizontal", "IconSeparatorVertical", "IconSeparator", "IconServer2", "IconServerBolt", "IconServerCog", "IconServerOff", "IconServer", "IconServicemark", "IconSettings2", "IconSettingsAutomation", "IconSettingsBolt", "IconSettingsCancel", "IconSettingsCheck", "IconSettingsCode", "IconSettingsCog", "IconSettingsDollar", "IconSettingsDown", "IconSettingsExclamation", "IconSettingsFilled", "IconSettingsHeart", "IconSettingsMinus", "IconSettingsOff", "IconSettingsPause", "IconSettingsPin", "IconSettingsPlus", "IconSettingsQuestion", "IconSettingsSearch", "IconSettingsShare", "IconSettingsStar", "IconSettingsUp", "IconSettingsX", "IconSettings", "IconShadowOff", "IconShadow", "IconShape2", "IconShape3", "IconShapeOff", "IconShape", "IconShare2", "IconShare3", "IconShareOff", "IconShare", "IconShiJumping", "IconShieldBolt", "IconShieldCancel", "IconShieldCheckFilled", "IconShieldCheck", "IconShieldCheckeredFilled", "IconShieldCheckered", "IconShieldChevron", "IconShieldCode", "IconShieldCog", "IconShieldDollar", "IconShieldDown", "IconShieldExclamation", "IconShieldFilled", "IconShieldHalfFilled", "IconShieldHalf", "IconShieldHeart", "IconShieldLockFilled", "IconShieldLock", "IconShieldMinus", "IconShieldOff", "IconShieldPause", "IconShieldPin", "IconShieldPlus", "IconShieldQuestion", "IconShieldSearch", "IconShieldShare", "IconShieldStar", "IconShieldUp", "IconShieldX", "IconShield", "IconShipOff", "IconShip", "IconShirtFilled", "IconShirtOff", "IconShirtSport", "IconShirt", "IconShoeOff", "IconShoe", "IconShoppingBag", "IconShoppingCartDiscount", "IconShoppingCartOff", "IconShoppingCartPlus", "IconShoppingCartX", "IconShoppingCart", "IconShovel", "IconShredder", "IconSignLeftFilled", "IconSignLeft", "IconSignRightFilled", "IconSignRight", "IconSignal2g", "IconSignal3g", "IconSignal4gPlus", "IconSignal4g", "IconSignal5g", "IconSignal6g", "IconSignalE", "IconSignalG", "IconSignalHPlus", "IconSignalH", "IconSignalLte", "IconSignatureOff", "IconSignature", "IconSitemapOff", "IconSitemap", "IconSkateboardOff", "IconSkateboard", "IconSkateboarding", "IconSkull", "IconSlash", "IconSlashes", "IconSleigh", "IconSlice", "IconSlideshow", "IconSmartHomeOff", "IconSmartHome", "IconSmokingNo", "IconSmoking", "IconSnowflakeOff", "IconSnowflake", "IconSnowman", "IconSoccerField", "IconSocialOff", "IconSocial", "IconSock", "IconSofaOff", "IconSofa", "IconSolarPanel2", "IconSolarPanel", "IconSort09", "IconSort90", "IconSortAZ", "IconSortAscending2", "IconSortAscendingLetters", "IconSortAscendingNumbers", "IconSortAscending", "IconSortDescending2", "IconSortDescendingLetters", "IconSortDescendingNumbers", "IconSortDescending", "IconSortZA", "IconSos", "IconSoupOff", "IconSoup", "IconSourceCode", "IconSpaceOff", "IconSpace", "IconSpacingHorizontal", "IconSpacingVertical", "IconSpadeFilled", "IconSpade", "IconSparkles", "IconSpeakerphone", "IconSpeedboat", "IconSphereOff", "IconSpherePlus", "IconSphere", "IconSpider", "IconSpiralOff", "IconSpiral", "IconSportBillard", "IconSpray", "IconSpyOff", "IconSpy", "IconSql", "IconSquare0Filled", "IconSquare1Filled", "IconSquare2Filled", "IconSquare3Filled", "IconSquare4Filled", "IconSquare5Filled", "IconSquare6Filled", "IconSquare7Filled", "IconSquare8Filled", "IconSquare9Filled", "IconSquareArrowDown", "IconSquareArrowLeft", "IconSquareArrowRight", "IconSquareArrowUp", "IconSquareAsterisk", "IconSquareCheckFilled", "IconSquareCheck", "IconSquareChevronDown", "IconSquareChevronLeft", "IconSquareChevronRight", "IconSquareChevronUp", "IconSquareChevronsDown", "IconSquareChevronsLeft", "IconSquareChevronsRight", "IconSquareChevronsUp", "IconSquareDot", "IconSquareF0Filled", "IconSquareF0", "IconSquareF1Filled", "IconSquareF1", "IconSquareF2Filled", "IconSquareF2", "IconSquareF3Filled", "IconSquareF3", "IconSquareF4Filled", "IconSquareF4", "IconSquareF5Filled", "IconSquareF5", "IconSquareF6Filled", "IconSquareF6", "IconSquareF7Filled", "IconSquareF7", "IconSquareF8Filled", "IconSquareF8", "IconSquareF9Filled", "IconSquareF9", "IconSquareForbid2", "IconSquareForbid", "IconSquareHalf", "IconSquareKey", "IconSquareLetterA", "IconSquareLetterB", "IconSquareLetterC", "IconSquareLetterD", "IconSquareLetterE", "IconSquareLetterF", "IconSquareLetterG", "IconSquareLetterH", "IconSquareLetterI", "IconSquareLetterJ", "IconSquareLetterK", "IconSquareLetterL", "IconSquareLetterM", "IconSquareLetterN", "IconSquareLetterO", "IconSquareLetterP", "IconSquareLetterQ", "IconSquareLetterR", "IconSquareLetterS", "IconSquareLetterT", "IconSquareLetterU", "IconSquareLetterV", "IconSquareLetterW", "IconSquareLetterX", "IconSquareLetterY", "IconSquareLetterZ", "IconSquareMinus", "IconSquareNumber0", "IconSquareNumber1", "IconSquareNumber2", "IconSquareNumber3", "IconSquareNumber4", "IconSquareNumber5", "IconSquareNumber6", "IconSquareNumber7", "IconSquareNumber8", "IconSquareNumber9", "IconSquareOff", "IconSquarePlus", "IconSquareRoot2", "IconSquareRoot", "IconSquareRotatedFilled", "IconSquareRotatedForbid2", "IconSquareRotatedForbid", "IconSquareRotatedOff", "IconSquareRotated", "IconSquareRoundedArrowDownFilled", "IconSquareRoundedArrowDown", "IconSquareRoundedArrowLeftFilled", "IconSquareRoundedArrowLeft", "IconSquareRoundedArrowRightFilled", "IconSquareRoundedArrowRight", "IconSquareRoundedArrowUpFilled", "IconSquareRoundedArrowUp", "IconSquareRoundedCheckFilled", "IconSquareRoundedCheck", "IconSquareRoundedChevronDownFilled", "IconSquareRoundedChevronDown", "IconSquareRoundedChevronLeftFilled", "IconSquareRoundedChevronLeft", "IconSquareRoundedChevronRightFilled", "IconSquareRoundedChevronRight", "IconSquareRoundedChevronUpFilled", "IconSquareRoundedChevronUp", "IconSquareRoundedChevronsDownFilled", "IconSquareRoundedChevronsDown", "IconSquareRoundedChevronsLeftFilled", "IconSquareRoundedChevronsLeft", "IconSquareRoundedChevronsRightFilled", "IconSquareRoundedChevronsRight", "IconSquareRoundedChevronsUpFilled", "IconSquareRoundedChevronsUp", "IconSquareRoundedFilled", "IconSquareRoundedLetterA", "IconSquareRoundedLetterB", "IconSquareRoundedLetterC", "IconSquareRoundedLetterD", "IconSquareRoundedLetterE", "IconSquareRoundedLetterF", "IconSquareRoundedLetterG", "IconSquareRoundedLetterH", "IconSquareRoundedLetterI", "IconSquareRoundedLetterJ", "IconSquareRoundedLetterK", "IconSquareRoundedLetterL", "IconSquareRoundedLetterM", "IconSquareRoundedLetterN", "IconSquareRoundedLetterO", "IconSquareRoundedLetterP", "IconSquareRoundedLetterQ", "IconSquareRoundedLetterR", "IconSquareRoundedLetterS", "IconSquareRoundedLetterT", "IconSquareRoundedLetterU", "IconSquareRoundedLetterV", "IconSquareRoundedLetterW", "IconSquareRoundedLetterX", "IconSquareRoundedLetterY", "IconSquareRoundedLetterZ", "IconSquareRoundedMinus", "IconSquareRoundedNumber0Filled", "IconSquareRoundedNumber0", "IconSquareRoundedNumber1Filled", "IconSquareRoundedNumber1", "IconSquareRoundedNumber2Filled", "IconSquareRoundedNumber2", "IconSquareRoundedNumber3Filled", "IconSquareRoundedNumber3", "IconSquareRoundedNumber4Filled", "IconSquareRoundedNumber4", "IconSquareRoundedNumber5Filled", "IconSquareRoundedNumber5", "IconSquareRoundedNumber6Filled", "IconSquareRoundedNumber6", "IconSquareRoundedNumber7Filled", "IconSquareRoundedNumber7", "IconSquareRoundedNumber8Filled", "IconSquareRoundedNumber8", "IconSquareRoundedNumber9Filled", "IconSquareRoundedNumber9", "IconSquareRoundedPlusFilled", "IconSquareRoundedPlus", "IconSquareRoundedXFilled", "IconSquareRoundedX", "IconSquareRounded", "IconSquareToggleHorizontal", "IconSquareToggle", "IconSquareX", "IconSquare", "IconSquaresDiagonal", "IconSquaresFilled", "IconStack2", "IconStack3", "IconStackPop", "IconStackPush", "IconStack", "IconStairsDown", "IconStairsUp", "IconStairs", "IconStarFilled", "IconStarHalfFilled", "IconStarHalf", "IconStarOff", "IconStar", "IconStarsFilled", "IconStarsOff", "IconStars", "IconStatusChange", "IconSteam", "IconSteeringWheelOff", "IconSteeringWheel", "IconStepInto", "IconStepOut", "IconStereoGlasses", "IconStethoscopeOff", "IconStethoscope", "IconSticker", "IconStormOff", "IconStorm", "IconStretching2", "IconStretching", "IconStrikethrough", "IconSubmarine", "IconSubscript", "IconSubtask", "IconSumOff", "IconSum", "IconSunFilled", "IconSunHigh", "IconSunLow", "IconSunMoon", "IconSunOff", "IconSunWind", "IconSun", "IconSunglasses", "IconSunrise", "IconSunset2", "IconSunset", "IconSuperscript", "IconSvg", "IconSwimming", "IconSwipe", "IconSwitch2", "IconSwitch3", "IconSwitchHorizontal", "IconSwitchVertical", "IconSwitch", "IconSwordOff", "IconSword", "IconSwords", "IconTableAlias", "IconTableColumn", "IconTableDown", "IconTableExport", "IconTableFilled", "IconTableHeart", "IconTableImport", "IconTableMinus", "IconTableOff", "IconTableOptions", "IconTablePlus", "IconTableRow", "IconTableShare", "IconTableShortcut", "IconTable", "IconTagOff", "IconTag", "IconTagsOff", "IconTags", "IconTallymark1", "IconTallymark2", "IconTallymark3", "IconTallymark4", "IconTallymarks", "IconTank", "IconTargetArrow", "IconTargetOff", "IconTarget", "IconTeapot", "IconTelescopeOff", "IconTelescope", "IconTemperatureCelsius", "IconTemperatureFahrenheit", "IconTemperatureMinus", "IconTemperatureOff", "IconTemperaturePlus", "IconTemperature", "IconTemplateOff", "IconTemplate", "IconTentOff", "IconTent", "IconTerminal2", "IconTerminal", "IconTestPipe2", "IconTestPipeOff", "IconTestPipe", "IconTex", "IconTextCaption", "IconTextColor", "IconTextDecrease", "IconTextDirectionLtr", "IconTextDirectionRtl", "IconTextIncrease", "IconTextOrientation", "IconTextPlus", "IconTextRecognition", "IconTextResize", "IconTextSize", "IconTextSpellcheck", "IconTextWrapDisabled", "IconTextWrap", "IconTexture", "IconTheater", "IconThermometer", "IconThumbDownFilled", "IconThumbDownOff", "IconThumbDown", "IconThumbUpFilled", "IconThumbUpOff", "IconThumbUp", "IconTicTac", "IconTicketOff", "IconTicket", "IconTie", "IconTilde", "IconTiltShiftOff", "IconTiltShift", "IconTimeDuration0", "IconTimeDuration10", "IconTimeDuration15", "IconTimeDuration30", "IconTimeDuration45", "IconTimeDuration5", "IconTimeDuration60", "IconTimeDuration90", "IconTimeDurationOff", "IconTimelineEventExclamation", "IconTimelineEventMinus", "IconTimelineEventPlus", "IconTimelineEventText", "IconTimelineEventX", "IconTimelineEvent", "IconTimeline", "IconTir", "IconToggleLeft", "IconToggleRight", "IconToiletPaperOff", "IconToiletPaper", "IconToml", "IconTool", "IconToolsKitchen2Off", "IconToolsKitchen2", "IconToolsKitchenOff", "IconToolsKitchen", "IconToolsOff", "IconTools", "IconTooltip", "IconTopologyBus", "IconTopologyComplex", "IconTopologyFullHierarchy", "IconTopologyFull", "IconTopologyRing2", "IconTopologyRing3", "IconTopologyRing", "IconTopologyStar2", "IconTopologyStar3", "IconTopologyStarRing2", "IconTopologyStarRing3", "IconTopologyStarRing", "IconTopologyStar", "IconTorii", "IconTornado", "IconTournament", "IconTowerOff", "IconTower", "IconTrack", "IconTractor", "IconTrademark", "IconTrafficConeOff", "IconTrafficCone", "IconTrafficLightsOff", "IconTrafficLights", "IconTrain", "IconTransferIn", "IconTransferOut", "IconTransformFilled", "IconTransform", "IconTransitionBottom", "IconTransitionLeft", "IconTransitionRight", "IconTransitionTop", "IconTrashFilled", "IconTrashOff", "IconTrashXFilled", "IconTrashX", "IconTrash", "IconTreadmill", "IconTree", "IconTrees", "IconTrekking", "IconTrendingDown2", "IconTrendingDown3", "IconTrendingDown", "IconTrendingUp2", "IconTrendingUp3", "IconTrendingUp", "IconTriangleFilled", "IconTriangleInvertedFilled", "IconTriangleInverted", "IconTriangleOff", "IconTriangleSquareCircle", "IconTriangle", "IconTriangles", "IconTrident", "IconTrolley", "IconTrophyFilled", "IconTrophyOff", "IconTrophy", "IconTrowel", "IconTruckDelivery", "IconTruckLoading", "IconTruckOff", "IconTruckReturn", "IconTruck", "IconTxt", "IconTypographyOff", "IconTypography", "IconUfoOff", "IconUfo", "IconUmbrellaFilled", "IconUmbrellaOff", "IconUmbrella", "IconUnderline", "IconUnlink", "IconUpload", "IconUrgent", "IconUsb", "IconUserBolt", "IconUserCancel", "IconUserCheck", "IconUserCircle", "IconUserCode", "IconUserCog", "IconUserDollar", "IconUserDown", "IconUserEdit", "IconUserExclamation", "IconUserHeart", "IconUserMinus", "IconUserOff", "IconUserPause", "IconUserPin", "IconUserPlus", "IconUserQuestion", "IconUserSearch", "IconUserShare", "IconUserShield", "IconUserStar", "IconUserUp", "IconUserX", "IconUser", "IconUsersGroup", "IconUsersMinus", "IconUsersPlus", "IconUsers", "IconUvIndex", "IconUxCircle", "IconVaccineBottleOff", "IconVaccineBottle", "IconVaccineOff", "IconVaccine", "IconVacuumCleaner", "IconVariableMinus", "IconVariableOff", "IconVariablePlus", "IconVariable", "IconVectorBezier2", "IconVectorBezierArc", "IconVectorBezierCircle", "IconVectorBezier", "IconVectorOff", "IconVectorSpline", "IconVectorTriangleOff", "IconVectorTriangle", "IconVector", "IconVenus", "IconVersionsFilled", "IconVersionsOff", "IconVersions", "IconVideoMinus", "IconVideoOff", "IconVideoPlus", "IconVideo", "IconView360Off", "IconView360", "IconViewfinderOff", "IconViewfinder", "IconViewportNarrow", "IconViewportWide", "IconVinyl", "IconVipOff", "IconVip", "IconVirusOff", "IconVirusSearch", "IconVirus", "IconVocabularyOff", "IconVocabulary", "IconVolcano", "IconVolume2", "IconVolume3", "IconVolumeOff", "IconVolume", "IconWalk", "IconWallOff", "IconWall", "IconWalletOff", "IconWallet", "IconWallpaperOff", "IconWallpaper", "IconWandOff", "IconWand", "IconWashDry1", "IconWashDry2", "IconWashDry3", "IconWashDryA", "IconWashDryDip", "IconWashDryF", "IconWashDryFlat", "IconWashDryHang", "IconWashDryOff", "IconWashDryP", "IconWashDryShade", "IconWashDryW", "IconWashDry", "IconWashDrycleanOff", "IconWashDryclean", "IconWashEco", "IconWashGentle", "IconWashHand", "IconWashMachine", "IconWashOff", "IconWashPress", "IconWashTemperature1", "IconWashTemperature2", "IconWashTemperature3", "IconWashTemperature4", "IconWashTemperature5", "IconWashTemperature6", "IconWashTumbleDry", "IconWashTumbleOff", "IconWash", "IconWaterpolo", "IconWaveSawTool", "IconWaveSine", "IconWaveSquare", "IconWebhookOff", "IconWebhook", "IconWeight", "IconWheelchairOff", "IconWheelchair", "IconWhirl", "IconWifi0", "IconWifi1", "IconWifi2", "IconWifiOff", "IconWifi", "IconWindOff", "IconWind", "IconWindmillFilled", "IconWindmillOff", "IconWindmill", "IconWindowMaximize", "IconWindowMinimize", "IconWindowOff", "IconWindow", "IconWindsock", "IconWiperWash", "IconWiper", "IconWoman", "IconWood", "IconWorldBolt", "IconWorldCancel", "IconWorldCheck", "IconWorldCode", "IconWorldCog", "IconWorldDollar", "IconWorldDown", "IconWorldDownload", "IconWorldExclamation", "IconWorldHeart", "IconWorldLatitude", "IconWorldLongitude", "IconWorldMinus", "IconWorldOff", "IconWorldPause", "IconWorldPin", "IconWorldPlus", "IconWorldQuestion", "IconWorldSearch", "IconWorldShare", "IconWorldStar", "IconWorldUp", "IconWorldUpload", "IconWorldWww", "IconWorldX", "IconWorld", "IconWreckingBall", "IconWritingOff", "IconWritingSignOff", "IconWritingSign", "IconWriting", "IconX", "IconXboxA", "IconXboxB", "IconXboxX", "IconXboxY", "IconXd", "IconYinYangFilled", "IconYinYang", "IconYoga", "IconZeppelinOff", "IconZeppelin", "IconZip", "IconZodiacAquarius", "IconZodiacAries", "IconZodiacCancer", "IconZodiacCapricorn", "IconZodiacGemini", "IconZodiacLeo", "IconZodiacLibra", "IconZodiacPisces", "IconZodiacSagittarius", "IconZodiacScorpio", "IconZodiacTaurus", "IconZodiacVirgo", "IconZoomCancel", "IconZoomCheckFilled", "IconZoomCheck", "IconZoomCode", "IconZoomExclamation", "IconZoomFilled", "IconZoomInAreaFilled", "IconZoomInArea", "IconZoomInFilled", "IconZoomIn", "IconZoomMoney", "IconZoomOutArea", "IconZoomOutFilled", "IconZoomOut", "IconZoomPan", "IconZoomQuestion", "IconZoomReplace", "IconZoomReset", "IconZzzOff", "IconZzz"];
338
+ export type TablerIconName = (typeof tablerIconNames)[number];
339
+
340
+ }
341
+ declare module '@agility/plenum-ui/stories/atoms/index' {
342
+ import Avatar, { IAvatarProps } from "@agility/plenum-ui/stories/atoms/Avatar/index";
343
+ import Badge, { IBadgeProps } from "@agility/plenum-ui/stories/atoms/badges/index";
344
+ import { Button, Capsule, BTNActionType, IButtonProps, ICapsuleProps } from "@agility/plenum-ui/stories/atoms/buttons/index";
345
+ import { DynamicIcon, FAIconName, IDynamicIconProps, IIconWithShadowProps, IconName, IconWithShadow, UnifiedIconName, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName } from "@agility/plenum-ui/stories/atoms/icons/index";
346
+ import { ILoaderProps, IRadialProgressProps, Loader, RadialProgress } from "@agility/plenum-ui/stories/atoms/loaders/index";
347
+ export type { IAvatarProps, IBadgeProps, IButtonProps, ICapsuleProps, IDynamicIconProps, IIconWithShadowProps, ILoaderProps, IRadialProgressProps, UnifiedIconName, IconName, FAIconName, BTNActionType };
348
+ export { Avatar, Badge, Button, Capsule, DynamicIcon, IconWithShadow, Loader, RadialProgress, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName };
349
+
350
+ }
351
+ declare module '@agility/plenum-ui/stories/atoms/loaders/Loader' {
352
+ import React from "react";
353
+ export interface ILoaderProps {
354
+ className?: string;
355
+ }
356
+ const Loader: React.FC<ILoaderProps>;
357
+ export default Loader;
358
+
359
+ }
360
+ declare module '@agility/plenum-ui/stories/atoms/loaders/Loader.stories' {
361
+ import type { Meta, StoryObj } from "@storybook/react";
362
+ import Loader from "@agility/plenum-ui/stories/atoms/loaders/Loader";
363
+ const meta: Meta<typeof Loader>;
364
+ type Story = StoryObj<typeof Loader>;
365
+ export const DefaultLoader: Story;
366
+ export default meta;
367
+
368
+ }
369
+ declare module '@agility/plenum-ui/stories/atoms/loaders/NProgress/RadialProgress' {
370
+ import React from "react";
371
+ export interface IRadialProgressProps extends React.PropsWithChildren {
372
+ /** Percentage value to display */
373
+ inputValue: number;
374
+ /** Radius for the circle - Max value of 100 */
375
+ radius: number;
376
+ /** Additional classnames */
377
+ className?: string;
378
+ }
379
+ const RadialProgress: React.FC<IRadialProgressProps>;
380
+ export default RadialProgress;
381
+
382
+ }
383
+ declare module '@agility/plenum-ui/stories/atoms/loaders/NProgress/index' {
384
+ import RadialProgress, { IRadialProgressProps } from "@agility/plenum-ui/stories/atoms/loaders/NProgress/RadialProgress";
385
+ export default RadialProgress;
386
+ export type { IRadialProgressProps };
387
+
388
+ }
389
+ declare module '@agility/plenum-ui/stories/atoms/loaders/index' {
390
+ import Loader, { ILoaderProps } from "@agility/plenum-ui/stories/atoms/loaders/Loader";
391
+ import RadialProgress, { IRadialProgressProps } from "@agility/plenum-ui/stories/atoms/loaders/NProgress/index";
392
+ export { Loader, RadialProgress };
393
+ export type { ILoaderProps, IRadialProgressProps };
394
+
395
+ }
396
+ declare module '@agility/plenum-ui/stories/index' {
397
+ import { IAvatarProps, IBadgeProps, IButtonProps, ICapsuleProps, IDynamicIconProps, IIconWithShadowProps, ILoaderProps, IRadialProgressProps, UnifiedIconName, IconName, FAIconName, BTNActionType, Avatar, Badge, Button, Capsule, DynamicIcon, IconWithShadow, Loader, RadialProgress, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName } from "@agility/plenum-ui/stories/atoms/index";
398
+ import { ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ITextAreaFieldProps, IToggleSwitchProps, AcceptedInputTypes, Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, TextAreaField, ToggleSwitch } from "@agility/plenum-ui/stories/molecules/index";
399
+ import { IAnimatedLabelInputProps, IButtonDropdownProps, IDropdownClassnames, IDropdownProps, IEmptySectionPlaceholderProps, IItemProp, IFormInputWithAddonsProps, AnimatedLabelInput, ButtonDropdown, Dropdown, EmptySectionPlaceholder, FormInputWithAddons } from "@agility/plenum-ui/stories/organisms/index";
400
+ export type { IAvatarProps, IBadgeProps, IButtonProps, ICapsuleProps, IDynamicIconProps, IIconWithShadowProps, ILoaderProps, IRadialProgressProps, ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ITextAreaFieldProps, IToggleSwitchProps, AcceptedInputTypes, IAnimatedLabelInputProps, IButtonDropdownProps, IDropdownClassnames, IDropdownProps, IEmptySectionPlaceholderProps, IItemProp, IFormInputWithAddonsProps, UnifiedIconName, IconName, FAIconName, BTNActionType };
401
+ export { Avatar, Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, TextAreaField, ToggleSwitch, AnimatedLabelInput, ButtonDropdown, Dropdown, EmptySectionPlaceholder, FormInputWithAddons, Badge, Button, Capsule, DynamicIcon, IconWithShadow, Loader, RadialProgress, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName };
402
+
403
+ }
404
+ declare module '@agility/plenum-ui/stories/layouts/index' {
405
+
406
+ }
407
+ declare module '@agility/plenum-ui/stories/molecules/index' {
408
+ import { ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ITextAreaFieldProps, IToggleSwitchProps, AcceptedInputTypes, Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, TextAreaField, ToggleSwitch } from "@agility/plenum-ui/stories/molecules/inputs/index";
409
+ export type { ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ITextAreaFieldProps, IToggleSwitchProps, AcceptedInputTypes };
410
+ export { Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, TextAreaField, ToggleSwitch };
411
+
412
+ }
413
+ declare module '@agility/plenum-ui/stories/molecules/inputs/InputField/InputField' {
414
+ import React from "react";
415
+ export type AcceptedInputTypes = "date" | "datetime-local" | "email" | "month" | "number" | "password" | "search" | "submit" | "tel" | "text" | "url";
416
+ export interface IInputFieldProps extends React.ComponentPropsWithoutRef<"input"> {
417
+ /** Callback on change */
418
+ handleChange: (value: string) => void;
419
+ /** Input ID*/
420
+ id: string;
421
+ /** Input Name */
422
+ name: string;
423
+ /** Force the focus state on the input */
424
+ isFocused?: boolean;
425
+ /** Error condition */
426
+ isError?: boolean;
427
+ /** Disabled state */
428
+ isDisabled?: boolean;
429
+ /** Readonly state */
430
+ isReadonly?: boolean;
431
+ /** Input value */
432
+ value: string;
433
+ /** Type of Text Input to Render eg. "text", "email" */
434
+ type: AcceptedInputTypes;
435
+ /** If field is required */
436
+ required?: boolean;
437
+ /** use input psuedo classes for :valid and :invalid styles. on by default */
438
+ clientSideCheck?: boolean;
439
+ }
440
+ const InputField: React.FC<IInputFieldProps>;
441
+ export default InputField;
442
+
443
+ }
444
+ declare module '@agility/plenum-ui/stories/molecules/inputs/InputField/index' {
445
+ import InputField, { AcceptedInputTypes, IInputFieldProps } from "@agility/plenum-ui/stories/molecules/inputs/InputField/InputField";
446
+ export type { AcceptedInputTypes, IInputFieldProps };
447
+ export default InputField;
448
+
449
+ }
450
+ declare module '@agility/plenum-ui/stories/molecules/inputs/InputLabel/InputLabel' {
451
+ import { FC } from "react";
452
+ export interface IInputLabelProps {
453
+ /** Prop comment */
454
+ isPlaceholder?: boolean;
455
+ id: string;
456
+ isRequired?: boolean;
457
+ isDisabled?: boolean;
458
+ isError?: boolean;
459
+ isActive?: boolean;
460
+ isFocused?: boolean;
461
+ label?: string;
462
+ }
463
+ /** Comment */
464
+ const InputLabel: FC<IInputLabelProps>;
465
+ export default InputLabel;
466
+
467
+ }
468
+ declare module '@agility/plenum-ui/stories/molecules/inputs/InputLabel/index' {
469
+ import InputLabel, { IInputLabelProps } from "@agility/plenum-ui/stories/molecules/inputs/InputLabel/InputLabel";
470
+ export type { IInputLabelProps };
471
+ export default InputLabel;
472
+
473
+ }
474
+ declare module '@agility/plenum-ui/stories/molecules/inputs/NestedInputButton/NestedInputButton' {
475
+ import React from "react";
476
+ import { IDynamicIconProps } from "@/stories/atoms/icons";
477
+ export interface INestedInputButtonProps {
478
+ /** Icon to be included*/
479
+ icon?: IDynamicIconProps;
480
+ /** CTA label */
481
+ ctaLabel?: string;
482
+ /** Alignment */
483
+ align: "left" | "right";
484
+ /** Show the CTA without Background color and a border seperator */
485
+ isClear?: boolean;
486
+ /** Onclick callback */
487
+ onClickHandler?(): void;
488
+ buttonProps?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
489
+ }
490
+ const NestedInputButton: React.FC<INestedInputButtonProps>;
491
+ export default NestedInputButton;
492
+
493
+ }
494
+ declare module '@agility/plenum-ui/stories/molecules/inputs/NestedInputButton/index' {
495
+ import NestedInputButton, { INestedInputButtonProps } from "@agility/plenum-ui/stories/molecules/inputs/NestedInputButton/NestedInputButton";
496
+ export type { INestedInputButtonProps };
497
+ export default NestedInputButton;
498
+
499
+ }
500
+ declare module '@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox' {
501
+ import { FC } from "react";
502
+ export interface ICheckboxProps {
503
+ /** Checkbox label */
504
+ label: string;
505
+ /** Checkbox ID */
506
+ id?: string;
507
+ /** Disabled state */
508
+ isDisabled?: boolean;
509
+ /** value */
510
+ value?: string;
511
+ /** Check state */
512
+ isChecked?: boolean;
513
+ /** If field is required */
514
+ isRequired?: boolean;
515
+ /** Error state */
516
+ isError?: boolean;
517
+ /** Message or description */
518
+ message?: string;
519
+ /** Callback on input change */
520
+ onChange?(value: string, isChecked: boolean): void;
521
+ /** Has a border around the checkbox and label */
522
+ hasBorder?: boolean;
523
+ /** any arbitrary classNames to add to the wrapper */
524
+ className?: string;
525
+ }
526
+ /** Comment */
527
+ const Checkbox: FC<ICheckboxProps>;
528
+ export default Checkbox;
529
+
530
+ }
531
+ declare module '@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox.stories' {
532
+ import type { Meta, StoryObj } from "@storybook/react";
533
+ import Checkbox from "@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox";
534
+ const meta: Meta<typeof Checkbox>;
535
+ type Story = StoryObj<typeof Checkbox>;
536
+ export const DefaultCheckbox: Story;
537
+ export default meta;
538
+
539
+ }
540
+ declare module '@agility/plenum-ui/stories/molecules/inputs/checkbox/index' {
541
+ import Checkbox, { ICheckboxProps } from "@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox";
542
+ export type { ICheckboxProps };
543
+ export default Checkbox;
544
+
545
+ }
546
+ declare module '@agility/plenum-ui/stories/molecules/inputs/combobox/ComboBox' {
547
+ export interface IComboboxProps<T extends Record<string, unknown>> {
548
+ /** Label */
549
+ label?: string;
550
+ /** ID */
551
+ id: string;
552
+ /** Array of items to display */
553
+ items: T[];
554
+ /** the item property to use as the key */
555
+ keyProperty: string;
556
+ /** the item property to use as the display */
557
+ displayProperty: string;
558
+ /** Placeholder */
559
+ placeholder?: string;
560
+ /** Callback to trigger on change */
561
+ onChange?(value: T | undefined): void;
562
+ /** Select disabled state */
563
+ isDisabled?: boolean;
564
+ /** Select error state */
565
+ isError?: boolean;
566
+ /** Select required state */
567
+ isRequired?: boolean;
568
+ /** Message shown under field */
569
+ message?: string;
570
+ displayValue?: string;
571
+ /**
572
+ * Whether this item is nullable or not.
573
+ *
574
+ * @type {boolean}
575
+ * @memberof ComboboxProps
576
+ */
577
+ nullable?: boolean;
578
+ }
579
+ const Combobox: <T extends Record<string, unknown>>({ label, items, displayProperty, displayValue, keyProperty, onChange, placeholder, message, isDisabled, isError, isRequired, id, nullable }: IComboboxProps<T>) => import("react/jsx-runtime").JSX.Element;
580
+ export default Combobox;
581
+
582
+ }
583
+ declare module '@agility/plenum-ui/stories/molecules/inputs/combobox/ComboBox.stories' {
584
+ import type { Meta, StoryObj } from "@storybook/react";
585
+ import Combobox from "@agility/plenum-ui/stories/molecules/inputs/combobox/ComboBox";
586
+ const meta: Meta<typeof Combobox>;
587
+ type Story = StoryObj<typeof Combobox>;
588
+ export const DefaultComboBox: Story;
589
+ export default meta;
590
+
591
+ }
592
+ declare module '@agility/plenum-ui/stories/molecules/inputs/combobox/index' {
593
+ import Combobox, { IComboboxProps } from "@agility/plenum-ui/stories/molecules/inputs/combobox/ComboBox";
594
+ export type { IComboboxProps };
595
+ export default Combobox;
596
+
597
+ }
598
+ declare module '@agility/plenum-ui/stories/molecules/inputs/index' {
599
+ import Checkbox, { ICheckboxProps } from "@agility/plenum-ui/stories/molecules/inputs/checkbox/index";
600
+ import Combobox, { IComboboxProps } from "@agility/plenum-ui/stories/molecules/inputs/combobox/index";
601
+ import InputField, { AcceptedInputTypes, IInputFieldProps } from "@agility/plenum-ui/stories/molecules/inputs/InputField/index";
602
+ import InputLabel, { IInputLabelProps } from "@agility/plenum-ui/stories/molecules/inputs/InputLabel/index";
603
+ import NestedInputButton, { INestedInputButtonProps } from "@agility/plenum-ui/stories/molecules/inputs/NestedInputButton/index";
604
+ import Radio, { IRadioProps } from "@agility/plenum-ui/stories/molecules/inputs/radio/index";
605
+ import Select, { ISelectProps } from "@agility/plenum-ui/stories/molecules/inputs/select/index";
606
+ import TextAreaField, { ITextAreaFieldProps } from "@agility/plenum-ui/stories/molecules/inputs/textArea/index";
607
+ import ToggleSwitch, { IToggleSwitchProps } from "@agility/plenum-ui/stories/molecules/inputs/toggleSwitch/index";
608
+ export type { ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ITextAreaFieldProps, IToggleSwitchProps, AcceptedInputTypes };
609
+ export { Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, TextAreaField, ToggleSwitch };
610
+
611
+ }
612
+ declare module '@agility/plenum-ui/stories/molecules/inputs/radio/Radio' {
613
+ import React from "react";
614
+ export interface IRadioProps {
615
+ /** group name */
616
+ name?: string;
617
+ /** Radio label */
618
+ label: string;
619
+ /** Radio ID */
620
+ id?: string;
621
+ /** Disabled state */
622
+ isDisabled?: boolean;
623
+ /** Check state */
624
+ isChecked?: boolean;
625
+ /** If field is required */
626
+ isRequired?: boolean;
627
+ /** Error state */
628
+ isError?: boolean;
629
+ /** Message or description */
630
+ message?: string;
631
+ /** value */
632
+ value?: string;
633
+ /** Callback on input change */
634
+ onChange?(value: string, isChecked: boolean): void;
635
+ /** Callback on click */
636
+ onClick?(value: string, isChecked: boolean): void;
637
+ }
638
+ const Radio: React.FC<IRadioProps>;
639
+ export default Radio;
640
+
641
+ }
642
+ declare module '@agility/plenum-ui/stories/molecules/inputs/radio/Radio.stories' {
643
+ import type { Meta, StoryObj } from "@storybook/react";
644
+ import Radio from "@agility/plenum-ui/stories/molecules/inputs/radio/Radio";
645
+ const meta: Meta<typeof Radio>;
646
+ type Story = StoryObj<typeof Radio>;
647
+ export const DefaultRadio: Story;
648
+ export default meta;
649
+
650
+ }
651
+ declare module '@agility/plenum-ui/stories/molecules/inputs/radio/index' {
652
+ import Radio, { IRadioProps } from "@agility/plenum-ui/stories/molecules/inputs/radio/Radio";
653
+ export type { IRadioProps };
654
+ export default Radio;
655
+
656
+ }
657
+ declare module '@agility/plenum-ui/stories/molecules/inputs/select/Select' {
658
+ import React from "react";
659
+ export type ISimpleSelectOptions = {
660
+ label: string;
661
+ value: string;
662
+ };
663
+ export interface ISelectProps {
664
+ /** Label */
665
+ label?: string;
666
+ /** Select ID prop */
667
+ id?: string;
668
+ /** Select name prop */
669
+ name?: string;
670
+ /** List of options to display in the select menu */
671
+ options: ISimpleSelectOptions[];
672
+ /** Select name prop */
673
+ onChange?(value: string): void;
674
+ /** Select disabled state */
675
+ isDisabled?: boolean;
676
+ /** Select error state */
677
+ isError?: boolean;
678
+ /** Select required state */
679
+ isRequired?: boolean;
680
+ value?: string;
681
+ className?: string;
682
+ }
683
+ const Select: React.FC<ISelectProps>;
684
+ export default Select;
685
+
686
+ }
687
+ declare module '@agility/plenum-ui/stories/molecules/inputs/select/Select.stories' {
688
+ import type { Meta, StoryObj } from "@storybook/react";
689
+ import Select from "@agility/plenum-ui/stories/molecules/inputs/select/Select";
690
+ const meta: Meta<typeof Select>;
691
+ type Story = StoryObj<typeof Select>;
692
+ export const DefaultSelect: Story;
693
+ export default meta;
694
+
695
+ }
696
+ declare module '@agility/plenum-ui/stories/molecules/inputs/select/index' {
697
+ import Select, { ISelectProps, ISimpleSelectOptions } from "@agility/plenum-ui/stories/molecules/inputs/select/Select";
698
+ export type { ISelectProps, ISimpleSelectOptions };
699
+ export default Select;
700
+
701
+ }
702
+ declare module '@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea' {
703
+ /// <reference types="react" />
704
+ export interface ITextAreaFieldProps extends React.ComponentPropsWithoutRef<"textarea"> {
705
+ /** Callback on change */
706
+ handleChange: (value: string) => void;
707
+ /** textarea ID*/
708
+ id: string;
709
+ /** textarea Name */
710
+ name: string;
711
+ /** Force the focus state on the textarea */
712
+ isFocused?: boolean;
713
+ /** Error condition */
714
+ isError?: boolean;
715
+ /** Disabled state */
716
+ isDisabled?: boolean;
717
+ /** Readonly state */
718
+ isReadonly?: boolean;
719
+ /** textarea value */
720
+ value: string;
721
+ /** If field is required */
722
+ required?: boolean;
723
+ /**Allow Text Area Resize*/
724
+ textAreaResize?: boolean;
725
+ className?: string;
726
+ }
727
+ const TextAreaField: React.FC<ITextAreaFieldProps>;
728
+ export default TextAreaField;
729
+
730
+ }
731
+ declare module '@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea.stories' {
732
+ import type { Meta, StoryObj } from "@storybook/react";
733
+ import TextArea from "@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea";
734
+ const meta: Meta<typeof TextArea>;
735
+ type Story = StoryObj<typeof TextArea>;
736
+ export const DefaultTextArea: Story;
737
+ export default meta;
738
+
739
+ }
740
+ declare module '@agility/plenum-ui/stories/molecules/inputs/textArea/index' {
741
+ import TextAreaField, { ITextAreaFieldProps } from "@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea";
742
+ export type { ITextAreaFieldProps };
743
+ export default TextAreaField;
744
+
745
+ }
746
+ declare module '@agility/plenum-ui/stories/molecules/inputs/toggleSwitch/ToggleSwitch' {
747
+ import React from "react";
748
+ import { IDynamicIconProps } from "@/stories/atoms";
749
+ export interface IToggleSwitchProps {
750
+ isChecked: boolean;
751
+ onChange: (isChecked: boolean) => void;
752
+ label?: {
753
+ text: string | JSX.Element;
754
+ className?: string;
755
+ xPosition?: "left" | "right";
756
+ };
757
+ screenReaderLabel: string;
758
+ name: string;
759
+ id: string;
760
+ variant: "base" | "short";
761
+ withIcon?: IDynamicIconProps;
762
+ }
763
+ const ToggleSwitch: React.FC<IToggleSwitchProps>;
764
+ export default ToggleSwitch;
765
+
766
+ }
767
+ declare module '@agility/plenum-ui/stories/molecules/inputs/toggleSwitch/index' {
768
+ import ToggleSwitch, { IToggleSwitchProps } from "@agility/plenum-ui/stories/molecules/inputs/toggleSwitch/ToggleSwitch";
769
+ export type { IToggleSwitchProps };
770
+ export default ToggleSwitch;
771
+
772
+ }
773
+ declare module '@agility/plenum-ui/stories/organisms/AnimatedLabelInput/AnimatedLabelInput' {
774
+ import React from "react";
775
+ import { IInputFieldProps } from "@/stories/molecules/inputs/InputField";
776
+ import { ITextAreaFieldProps } from "@/stories/molecules/inputs/textArea/TextArea";
777
+ interface ILabelProps extends React.ComponentPropsWithoutRef<"label"> {
778
+ display: string;
779
+ }
780
+ export interface IAnimatedLabelInputProps {
781
+ id: string;
782
+ containerStyles?: string;
783
+ message?: string;
784
+ input?: IInputFieldProps;
785
+ textarea?: ITextAreaFieldProps;
786
+ required?: boolean;
787
+ isError?: boolean;
788
+ label: ILabelProps;
789
+ }
790
+ const AnimatedLabelInput: React.FC<IAnimatedLabelInputProps>;
791
+ export default AnimatedLabelInput;
792
+
793
+ }
794
+ declare module '@agility/plenum-ui/stories/organisms/AnimatedLabelInput/index' {
795
+ import AnimatedLabelInput, { IAnimatedLabelInputProps } from "@agility/plenum-ui/stories/organisms/AnimatedLabelInput/AnimatedLabelInput";
796
+ export default AnimatedLabelInput;
797
+ export type { IAnimatedLabelInputProps };
798
+
799
+ }
800
+ declare module '@agility/plenum-ui/stories/organisms/ButtonDropdown/ButtonDropdown' {
801
+ import { FC } from "react";
802
+ import { IButtonProps } from "@/stories/atoms/buttons/Button";
803
+ import { IDropdownProps } from "@agility/plenum-ui/stories/organisms/DropdownComponent/index";
804
+ export interface IButtonDropdownProps {
805
+ button: IButtonProps;
806
+ dropDown: IDropdownProps;
807
+ placement?: IDropdownProps["placement"];
808
+ offsetOptions?: IDropdownProps["offsetOptions"];
809
+ }
810
+ /**
811
+ * Primary UI component for user interaction
812
+ */
813
+ const ButtonDropdown: FC<IButtonDropdownProps>;
814
+ export default ButtonDropdown;
815
+
816
+ }
817
+ declare module '@agility/plenum-ui/stories/organisms/ButtonDropdown/index' {
818
+ import ButtonDropdown, { IButtonDropdownProps } from "@agility/plenum-ui/stories/organisms/ButtonDropdown/ButtonDropdown";
819
+ export type { IButtonDropdownProps };
820
+ export default ButtonDropdown;
821
+
822
+ }
823
+ declare module '@agility/plenum-ui/stories/organisms/DropdownComponent/DropdownComponent' {
824
+ import React, { HTMLAttributes } from "react";
825
+ import { Placement } from "@floating-ui/react";
826
+ import { ClassNameWithAutocomplete } from "utils/types";
827
+ import { IDynamicIconProps } from "@/stories/atoms/icons";
828
+ export interface IItemProp extends HTMLAttributes<HTMLButtonElement> {
829
+ icon?: {
830
+ name: IDynamicIconProps["icon"];
831
+ className?: ClassNameWithAutocomplete;
832
+ pos?: "trailing" | "leading";
833
+ outline?: boolean;
834
+ };
835
+ label: string;
836
+ onClick?(): void;
837
+ isEmphasized?: boolean;
838
+ key: React.Key;
839
+ }
840
+ export interface IDropdownClassnames {
841
+ groupClassname?: ClassNameWithAutocomplete;
842
+ itemsClassname?: ClassNameWithAutocomplete;
843
+ itemClassname?: ClassNameWithAutocomplete;
844
+ activeItemClassname?: ClassNameWithAutocomplete;
845
+ buttonClassname?: ClassNameWithAutocomplete;
846
+ }
847
+ export interface IDropdownProps extends HTMLAttributes<HTMLDivElement> {
848
+ items: IItemProp[][];
849
+ label: string;
850
+ CustomDropdownTrigger?: React.ReactNode;
851
+ id: string;
852
+ classNames?: IDropdownClassnames;
853
+ placement?: Placement;
854
+ offsetOptions?: Partial<{
855
+ mainAxis: number;
856
+ crossAxis: number;
857
+ alignmentAxis: number | null;
858
+ }>;
859
+ }
860
+ export const defaultClassNames: IDropdownClassnames;
861
+ /** Comment */
862
+ const Dropdown: React.FC<IDropdownProps>;
863
+ export default Dropdown;
864
+
865
+ }
866
+ declare module '@agility/plenum-ui/stories/organisms/DropdownComponent/dropdownItems' {
867
+ import { IItemProp } from "@agility/plenum-ui/stories/organisms/DropdownComponent/DropdownComponent";
868
+ export const dropdownDataBase: IItemProp[][];
869
+ export const dropdownDataWithIcons: IItemProp[][];
870
+
871
+ }
872
+ declare module '@agility/plenum-ui/stories/organisms/DropdownComponent/index' {
873
+ import Dropdown, { IItemProp, IDropdownClassnames, IDropdownProps, defaultClassNames } from "@agility/plenum-ui/stories/organisms/DropdownComponent/DropdownComponent";
874
+ export type { IItemProp, IDropdownClassnames, IDropdownProps };
875
+ export { defaultClassNames };
876
+ export default Dropdown;
877
+
878
+ }
879
+ declare module '@agility/plenum-ui/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder' {
880
+ import React from "react";
881
+ import { IButtonProps } from "@/stories/atoms/buttons/Button";
882
+ import { IDynamicIconProps } from "@/stories/atoms/icons";
883
+ export interface IEmptySectionPlaceholderProps {
884
+ /** the primary icon to display at top of component */
885
+ icon: IDynamicIconProps;
886
+ /** the muted text to display below the icon */
887
+ mutedText?: string;
888
+ /** the primary message to display below the muted text */
889
+ primaryMessage: string;
890
+ /** the call to action component that if provided will be used instead of primaryMessage */
891
+ CallToActionComponent?: React.ReactNode;
892
+ /** the actions to display below the primary call to action or message */
893
+ actions: IButtonProps[];
894
+ /** whether to display the component in a wide or narrow format */
895
+ isWide?: boolean;
896
+ }
897
+ const EmptySectionPlaceholder: React.FC<IEmptySectionPlaceholderProps>;
898
+ export default EmptySectionPlaceholder;
899
+
900
+ }
901
+ declare module '@agility/plenum-ui/stories/organisms/EmptySectionPlaceholder/index' {
902
+ import EmptySectionPlaceholder, { IEmptySectionPlaceholderProps } from "@agility/plenum-ui/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder";
903
+ export default EmptySectionPlaceholder;
904
+ export type { IEmptySectionPlaceholderProps };
905
+
906
+ }
907
+ declare module '@agility/plenum-ui/stories/organisms/FormInputWithAddons/FormInputWithAddons' {
908
+ import { IDynamicIconProps } from "@/stories/atoms/icons";
909
+ import React from "react";
910
+ import { IInputFieldProps, AcceptedInputTypes } from "@/stories/molecules/inputs/InputField";
911
+ export interface IFormInputWithAddonsProps extends Omit<IInputFieldProps, "type"> {
912
+ leadIcon?: IDynamicIconProps;
913
+ leadLabel?: string;
914
+ trailIcon?: IDynamicIconProps;
915
+ trailLabel?: string;
916
+ iconOutlined?: boolean;
917
+ /** @param addonOffset An extra buffer zone in pixels between the trailing/leading icon or label and search input -- Default is 24 */
918
+ addonOffset?: number;
919
+ topLabel?: string;
920
+ labelClass?: string;
921
+ containerClassName?: string;
922
+ description?: string;
923
+ leadIconClassNames?: string;
924
+ customIconClass?: string;
925
+ type: AcceptedInputTypes;
926
+ }
927
+ const FormInputWithAddons: React.FC<IFormInputWithAddonsProps>;
928
+ export default FormInputWithAddons;
929
+
930
+ }
931
+ declare module '@agility/plenum-ui/stories/organisms/FormInputWithAddons/index' {
932
+ import FormInputWithAddons, { IFormInputWithAddonsProps } from "@agility/plenum-ui/stories/organisms/FormInputWithAddons/FormInputWithAddons";
933
+ export type { IFormInputWithAddonsProps };
934
+ export default FormInputWithAddons;
935
+
936
+ }
937
+ declare module '@agility/plenum-ui/stories/organisms/index' {
938
+ import AnimatedLabelInput, { IAnimatedLabelInputProps } from "@agility/plenum-ui/stories/organisms/AnimatedLabelInput/index";
939
+ import ButtonDropdown, { IButtonDropdownProps } from "@agility/plenum-ui/stories/organisms/ButtonDropdown/index";
940
+ import Dropdown, { IDropdownClassnames, IDropdownProps, IItemProp } from "@agility/plenum-ui/stories/organisms/DropdownComponent/index";
941
+ import EmptySectionPlaceholder, { IEmptySectionPlaceholderProps } from "@agility/plenum-ui/stories/organisms/EmptySectionPlaceholder/index";
942
+ import FormInputWithAddons, { IFormInputWithAddonsProps } from "@agility/plenum-ui/stories/organisms/FormInputWithAddons/index";
943
+ export type { IAnimatedLabelInputProps, IButtonDropdownProps, IDropdownClassnames, IDropdownProps, IEmptySectionPlaceholderProps, IItemProp, IFormInputWithAddonsProps };
944
+ export { AnimatedLabelInput, ButtonDropdown, Dropdown, EmptySectionPlaceholder, FormInputWithAddons };
945
+
946
+ }
947
+ declare module '@agility/plenum-ui/utils/types' {
948
+ import React from "react";
949
+ export type ClassNameWithAutocomplete = React.ComponentPropsWithoutRef<"div">["className"];
950
+
951
+ }
952
+ declare module '@agility/plenum-ui/utils/useId' {
953
+ export const useId: () => string;
954
+
955
+ }
956
+ declare module '@agility/plenum-ui' {
957
+ import main = require('@agility/plenum-ui/stories/index');
958
+ export = main;
959
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agility/plenum-ui",
3
- "version": "2.0.0-rc1",
3
+ "version": "2.0.0-rc2",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -53,6 +53,7 @@
53
53
  "eslint-config-next": "13.1.6",
54
54
  "eslint-plugin-storybook": "^0.6.13",
55
55
  "next": "13.1.6",
56
+ "npm-dts": "^1.3.12",
56
57
  "npm-run-all": "^4.1.5",
57
58
  "postcss": "^8.4.21",
58
59
  "react": "18.2.0",
@@ -62,4 +63,4 @@
62
63
  "tailwindcss": "^3.2.4",
63
64
  "typescript": "^5.1.6"
64
65
  }
65
- }
66
+ }