@snapcall/design-system 1.12.0 → 1.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2471 -229
- package/dist/index.d.ts +2471 -229
- package/dist/index.js +51087 -1846
- package/dist/index.mjs +49924 -1804
- package/dist/tailwind.css +1 -1
- package/package.json +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import react__default, { SVGProps } from 'react';
|
|
3
3
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
@@ -27,13 +27,13 @@ interface IconProps extends SVGAttributes {
|
|
|
27
27
|
duotone?: boolean;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
declare const AccordionItem:
|
|
31
|
-
declare const Accordion:
|
|
30
|
+
declare const AccordionItem: react__default.ForwardRefExoticComponent<AccordionPrimitive.AccordionItemProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
31
|
+
declare const Accordion: react__default.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & react__default.RefAttributes<HTMLDivElement>>;
|
|
32
32
|
type TriggerIcon = {
|
|
33
|
-
icon?:
|
|
33
|
+
icon?: react__default.ReactElement<IconProps & react__default.RefAttributes<SVGSVGElement>>;
|
|
34
34
|
};
|
|
35
|
-
declare const AccordionTrigger:
|
|
36
|
-
declare const AccordionContent:
|
|
35
|
+
declare const AccordionTrigger: react__default.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & react__default.RefAttributes<HTMLButtonElement>, "ref"> & TriggerIcon & react__default.RefAttributes<HTMLButtonElement & TriggerIcon>>;
|
|
36
|
+
declare const AccordionContent: react__default.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & react__default.RefAttributes<HTMLDivElement>, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
37
37
|
|
|
38
38
|
declare const buttonVariants: (props?: ({
|
|
39
39
|
variant?: "link" | "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "outlineWhite" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" | null | undefined;
|
|
@@ -44,30 +44,30 @@ declare const buttonSizes: (props?: ({
|
|
|
44
44
|
declare const iconButtonSizes: (props?: ({
|
|
45
45
|
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
46
46
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
47
|
-
interface ButtonProps extends
|
|
47
|
+
interface ButtonProps extends react.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants>, VariantProps<typeof buttonSizes> {
|
|
48
48
|
icon?: boolean;
|
|
49
49
|
asChild?: boolean;
|
|
50
50
|
}
|
|
51
|
-
declare const Button:
|
|
51
|
+
declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
52
52
|
|
|
53
|
-
declare const AlertDialog:
|
|
54
|
-
declare const AlertDialogTrigger:
|
|
55
|
-
declare const AlertDialogContent:
|
|
53
|
+
declare const AlertDialog: react.FC<AlertDialogPrimitive.AlertDialogProps>;
|
|
54
|
+
declare const AlertDialogTrigger: react.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
55
|
+
declare const AlertDialogContent: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
56
56
|
declare const AlertDialogHeader: {
|
|
57
|
-
({ className, ...props }:
|
|
57
|
+
({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
58
58
|
displayName: string;
|
|
59
59
|
};
|
|
60
60
|
declare const AlertDialogFooter: {
|
|
61
|
-
({ className, ...props }:
|
|
61
|
+
({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
62
62
|
displayName: string;
|
|
63
63
|
};
|
|
64
|
-
declare const AlertDialogTitle:
|
|
65
|
-
declare const AlertDialogDescription:
|
|
64
|
+
declare const AlertDialogTitle: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & react.RefAttributes<HTMLHeadingElement>, "ref"> & react.RefAttributes<HTMLHeadingElement>>;
|
|
65
|
+
declare const AlertDialogDescription: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & react.RefAttributes<HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
|
|
66
66
|
type AlertDialogActionVariant = {
|
|
67
67
|
variant?: VariantProps<typeof buttonVariants>['variant'];
|
|
68
68
|
};
|
|
69
|
-
declare const AlertDialogAction:
|
|
70
|
-
declare const AlertDialogCancel:
|
|
69
|
+
declare const AlertDialogAction: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & react.RefAttributes<HTMLButtonElement>, "ref"> & AlertDialogActionVariant & react.RefAttributes<HTMLButtonElement>>;
|
|
70
|
+
declare const AlertDialogCancel: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
71
71
|
|
|
72
72
|
interface AvatarProps extends VariantProps<typeof avatarVariants>, VariantProps<typeof avatarSizes> {
|
|
73
73
|
className?: string;
|
|
@@ -81,126 +81,126 @@ declare const avatarSizes: (props?: ({
|
|
|
81
81
|
declare const avatarVariants: (props?: ({
|
|
82
82
|
variant?: "blue" | "amber" | "red" | "green" | "plum" | "crimson" | "purple" | "violet" | "indigo" | "cyan" | "teal" | "grass" | "brown" | "lime" | "yellow" | "gold" | "bronze" | "gray" | null | undefined;
|
|
83
83
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
84
|
-
declare const Avatar:
|
|
84
|
+
declare const Avatar: react__default.ForwardRefExoticComponent<AvatarProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
85
85
|
|
|
86
86
|
declare const badgeVariants: (props?: ({
|
|
87
87
|
variant?: "fill" | "default" | "outline" | null | undefined;
|
|
88
88
|
color?: "blue" | "red" | "green" | "crimson" | "violet" | "cyan" | "teal" | "brown" | "yellow" | "gray" | "orange" | null | undefined;
|
|
89
89
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
90
|
-
interface BadgeProps extends Omit<
|
|
90
|
+
interface BadgeProps extends Omit<react.HTMLAttributes<HTMLDivElement>, 'color'>, VariantProps<typeof badgeVariants> {
|
|
91
91
|
}
|
|
92
92
|
declare function Badge({ className, variant, color, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
93
93
|
|
|
94
|
-
type CalendarProps =
|
|
94
|
+
type CalendarProps = react.ComponentProps<typeof DayPicker>;
|
|
95
95
|
declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
96
96
|
declare namespace Calendar {
|
|
97
97
|
var displayName: string;
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
declare const Checkbox:
|
|
100
|
+
declare const Checkbox: react.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
101
101
|
|
|
102
|
-
declare const Command:
|
|
103
|
-
children?:
|
|
104
|
-
} &
|
|
102
|
+
declare const Command: react.ForwardRefExoticComponent<Omit<{
|
|
103
|
+
children?: react.ReactNode;
|
|
104
|
+
} & react.HTMLAttributes<HTMLDivElement> & {
|
|
105
105
|
label?: string | undefined;
|
|
106
106
|
shouldFilter?: boolean | undefined;
|
|
107
107
|
filter?: ((value: string, search: string) => number) | undefined;
|
|
108
108
|
value?: string | undefined;
|
|
109
109
|
onValueChange?: ((value: string) => void) | undefined;
|
|
110
110
|
loop?: boolean | undefined;
|
|
111
|
-
} &
|
|
112
|
-
declare const CommandInput:
|
|
111
|
+
} & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
112
|
+
declare const CommandInput: react.ForwardRefExoticComponent<Omit<Omit<react.InputHTMLAttributes<HTMLInputElement>, "type" | "onChange" | "value"> & {
|
|
113
113
|
value?: string | undefined;
|
|
114
114
|
onValueChange?: ((search: string) => void) | undefined;
|
|
115
|
-
} &
|
|
116
|
-
declare const CommandList:
|
|
117
|
-
children?:
|
|
118
|
-
} &
|
|
115
|
+
} & react.RefAttributes<HTMLInputElement>, "ref"> & react.RefAttributes<HTMLInputElement>>;
|
|
116
|
+
declare const CommandList: react.ForwardRefExoticComponent<Omit<{
|
|
117
|
+
children?: react.ReactNode;
|
|
118
|
+
} & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
119
119
|
interface CommandEmptyExtension {
|
|
120
120
|
title?: string;
|
|
121
121
|
description?: string;
|
|
122
122
|
}
|
|
123
|
-
declare const CommandEmpty:
|
|
124
|
-
children?:
|
|
125
|
-
} &
|
|
126
|
-
declare const CommandLoading:
|
|
127
|
-
children?:
|
|
123
|
+
declare const CommandEmpty: react.ForwardRefExoticComponent<Omit<{
|
|
124
|
+
children?: react.ReactNode;
|
|
125
|
+
} & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, "ref"> & CommandEmptyExtension & react.RefAttributes<HTMLDivElement & CommandEmptyExtension>>;
|
|
126
|
+
declare const CommandLoading: react.ForwardRefExoticComponent<Omit<{
|
|
127
|
+
children?: react.ReactNode;
|
|
128
128
|
} & {
|
|
129
129
|
progress?: number | undefined;
|
|
130
|
-
} &
|
|
131
|
-
declare const CommandGroup:
|
|
132
|
-
children?:
|
|
133
|
-
} & Omit<
|
|
134
|
-
heading?:
|
|
130
|
+
} & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
131
|
+
declare const CommandGroup: react.ForwardRefExoticComponent<Omit<{
|
|
132
|
+
children?: react.ReactNode;
|
|
133
|
+
} & Omit<react.HTMLAttributes<HTMLDivElement>, "heading" | "value"> & {
|
|
134
|
+
heading?: react.ReactNode;
|
|
135
135
|
value?: string | undefined;
|
|
136
|
-
} &
|
|
137
|
-
declare const CommandSeparator:
|
|
136
|
+
} & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
137
|
+
declare const CommandSeparator: react.ForwardRefExoticComponent<Omit<react.HTMLAttributes<HTMLDivElement> & {
|
|
138
138
|
alwaysRender?: boolean | undefined;
|
|
139
|
-
} &
|
|
139
|
+
} & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
140
140
|
type CommandItemExtension = {
|
|
141
141
|
icon?: JSX.Element;
|
|
142
142
|
checkbox?: boolean;
|
|
143
143
|
checked?: boolean;
|
|
144
144
|
description?: string;
|
|
145
145
|
};
|
|
146
|
-
declare const CommandItem:
|
|
147
|
-
children?:
|
|
148
|
-
} & Omit<
|
|
146
|
+
declare const CommandItem: react.ForwardRefExoticComponent<Omit<{
|
|
147
|
+
children?: react.ReactNode;
|
|
148
|
+
} & Omit<react.HTMLAttributes<HTMLDivElement>, "onSelect" | "disabled" | "value"> & {
|
|
149
149
|
disabled?: boolean | undefined;
|
|
150
150
|
onSelect?: ((value: string) => void) | undefined;
|
|
151
151
|
value?: string | undefined;
|
|
152
|
-
} &
|
|
152
|
+
} & react.RefAttributes<HTMLDivElement>, "ref"> & CommandItemExtension & react.RefAttributes<HTMLDivElement & CommandItemExtension>>;
|
|
153
153
|
|
|
154
|
-
declare const Dialog:
|
|
155
|
-
declare const DialogTrigger:
|
|
156
|
-
declare const DialogContent:
|
|
154
|
+
declare const Dialog: react.FC<DialogPrimitive.DialogProps>;
|
|
155
|
+
declare const DialogTrigger: react.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
156
|
+
declare const DialogContent: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
157
157
|
bottomSheet?: boolean | undefined;
|
|
158
|
-
} &
|
|
158
|
+
} & react.RefAttributes<HTMLDivElement & {
|
|
159
159
|
bottomSheet?: boolean | undefined;
|
|
160
160
|
}>>;
|
|
161
161
|
declare const DialogHeader: {
|
|
162
|
-
({ className, ...props }:
|
|
162
|
+
({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
163
163
|
displayName: string;
|
|
164
164
|
};
|
|
165
165
|
declare const DialogFooter: {
|
|
166
|
-
({ className, ...props }:
|
|
166
|
+
({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
167
167
|
displayName: string;
|
|
168
168
|
};
|
|
169
|
-
declare const DialogTitle:
|
|
170
|
-
declare const DialogDescription:
|
|
169
|
+
declare const DialogTitle: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & react.RefAttributes<HTMLHeadingElement>, "ref"> & react.RefAttributes<HTMLHeadingElement>>;
|
|
170
|
+
declare const DialogDescription: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & react.RefAttributes<HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
|
|
171
171
|
|
|
172
|
-
declare const DropdownMenu:
|
|
172
|
+
declare const DropdownMenu: react__default.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
173
173
|
interface DropdownMenuItemExtension {
|
|
174
174
|
icon?: JSX.Element;
|
|
175
175
|
description?: JSX.Element;
|
|
176
176
|
destructive?: boolean;
|
|
177
177
|
}
|
|
178
|
-
declare const DropdownMenuCheckboxItem:
|
|
179
|
-
declare const DropdownMenuContent:
|
|
180
|
-
declare const DropdownMenuGroup:
|
|
181
|
-
declare const DropdownMenuItem:
|
|
182
|
-
declare const DropdownMenuLabel:
|
|
183
|
-
declare const DropdownMenuPortal:
|
|
184
|
-
declare const DropdownMenuRadioGroup:
|
|
185
|
-
declare const DropdownMenuRadioItem:
|
|
186
|
-
declare const DropdownMenuSeparator:
|
|
187
|
-
declare const DropdownMenuSub:
|
|
188
|
-
declare const DropdownMenuSubContent:
|
|
189
|
-
declare const DropdownMenuSubTrigger:
|
|
190
|
-
declare const DropdownMenuTrigger:
|
|
178
|
+
declare const DropdownMenuCheckboxItem: react__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & react__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuItemExtension & react__default.RefAttributes<HTMLDivElement & DropdownMenuItemExtension>>;
|
|
179
|
+
declare const DropdownMenuContent: react__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & react__default.RefAttributes<HTMLDivElement>, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
180
|
+
declare const DropdownMenuGroup: react__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
181
|
+
declare const DropdownMenuItem: react__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & react__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuItemExtension & react__default.RefAttributes<HTMLDivElement & DropdownMenuItemExtension>>;
|
|
182
|
+
declare const DropdownMenuLabel: react__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & react__default.RefAttributes<HTMLDivElement>, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
183
|
+
declare const DropdownMenuPortal: react__default.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
184
|
+
declare const DropdownMenuRadioGroup: react__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
185
|
+
declare const DropdownMenuRadioItem: react__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & react__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuItemExtension & react__default.RefAttributes<HTMLDivElement & DropdownMenuItemExtension>>;
|
|
186
|
+
declare const DropdownMenuSeparator: react__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & react__default.RefAttributes<HTMLDivElement>, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
187
|
+
declare const DropdownMenuSub: react__default.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
188
|
+
declare const DropdownMenuSubContent: react__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & react__default.RefAttributes<HTMLDivElement>, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
|
|
189
|
+
declare const DropdownMenuSubTrigger: react__default.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & react__default.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuItemExtension & react__default.RefAttributes<HTMLDivElement & DropdownMenuItemExtension>>;
|
|
190
|
+
declare const DropdownMenuTrigger: react__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & react__default.RefAttributes<HTMLButtonElement>>;
|
|
191
191
|
|
|
192
192
|
interface FilterButtonProps extends ButtonProps {
|
|
193
193
|
selectedCount?: number;
|
|
194
194
|
}
|
|
195
|
-
declare const FilterButton:
|
|
195
|
+
declare const FilterButton: react__default.ForwardRefExoticComponent<FilterButtonProps & react__default.RefAttributes<HTMLButtonElement>>;
|
|
196
196
|
|
|
197
|
-
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues extends FieldValues | undefined = undefined>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) =>
|
|
197
|
+
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues extends FieldValues | undefined = undefined>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => react.JSX.Element;
|
|
198
198
|
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: {
|
|
199
199
|
render: ({ field, fieldState, formState, }: {
|
|
200
200
|
field: react_hook_form.ControllerRenderProps<TFieldValues, TName>;
|
|
201
201
|
fieldState: react_hook_form.ControllerFieldState;
|
|
202
202
|
formState: react_hook_form.UseFormStateReturn<TFieldValues>;
|
|
203
|
-
}) =>
|
|
203
|
+
}) => react.ReactElement<any, string | react.JSXElementConstructor<any>>;
|
|
204
204
|
} & react_hook_form.UseControllerProps<TFieldValues, TName> & {
|
|
205
205
|
disabled?: boolean | undefined;
|
|
206
206
|
}) => react_jsx_runtime.JSX.Element;
|
|
@@ -216,22 +216,22 @@ declare const useFormField: () => {
|
|
|
216
216
|
formDescriptionId: string;
|
|
217
217
|
formMessageId: string;
|
|
218
218
|
};
|
|
219
|
-
declare const FormItem:
|
|
220
|
-
declare const FormLabel:
|
|
221
|
-
declare const FormControl:
|
|
222
|
-
declare const FormDescription:
|
|
223
|
-
declare const FormMessage:
|
|
219
|
+
declare const FormItem: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
|
|
220
|
+
declare const FormLabel: react.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & react.RefAttributes<HTMLLabelElement>, "ref"> & react.RefAttributes<HTMLLabelElement>>;
|
|
221
|
+
declare const FormControl: react.ForwardRefExoticComponent<Omit<_radix_ui_react_slot.SlotProps & react.RefAttributes<HTMLElement>, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
222
|
+
declare const FormDescription: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLParagraphElement> & react.RefAttributes<HTMLParagraphElement>>;
|
|
223
|
+
declare const FormMessage: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLParagraphElement> & react.RefAttributes<HTMLParagraphElement>>;
|
|
224
224
|
|
|
225
|
-
interface InputProps extends
|
|
225
|
+
interface InputProps extends react.InputHTMLAttributes<HTMLInputElement> {
|
|
226
226
|
button?: JSX.Element;
|
|
227
227
|
prefixEnchancer?: JSX.Element | string;
|
|
228
228
|
suffixEnchancer?: JSX.Element | string;
|
|
229
229
|
'data-has-error'?: string;
|
|
230
230
|
'data-is-disabled'?: string;
|
|
231
231
|
}
|
|
232
|
-
declare const Input:
|
|
232
|
+
declare const Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<HTMLInputElement>>;
|
|
233
233
|
|
|
234
|
-
declare const Label:
|
|
234
|
+
declare const Label: react.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & react.RefAttributes<HTMLLabelElement>, "ref"> & react.RefAttributes<HTMLLabelElement>>;
|
|
235
235
|
|
|
236
236
|
declare enum PaginationPageChoice {
|
|
237
237
|
FIRST = "FIRST",
|
|
@@ -249,69 +249,69 @@ interface PaginationProps {
|
|
|
249
249
|
}
|
|
250
250
|
declare const Pagination: ({ totalRowsCaption, nextPageAvailable, previousPageAvailable, currentPageCation, onPageChange, className, }: PaginationProps) => react_jsx_runtime.JSX.Element;
|
|
251
251
|
|
|
252
|
-
declare const Popover:
|
|
253
|
-
declare const PopoverTrigger:
|
|
254
|
-
declare const PopoverContent:
|
|
252
|
+
declare const Popover: react.FC<PopoverPrimitive.PopoverProps>;
|
|
253
|
+
declare const PopoverTrigger: react.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
254
|
+
declare const PopoverContent: react.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
255
255
|
|
|
256
|
-
declare const Select:
|
|
257
|
-
declare const SelectGroup:
|
|
258
|
-
declare const SelectValue:
|
|
256
|
+
declare const Select: react.FC<SelectPrimitive.SelectProps>;
|
|
257
|
+
declare const SelectGroup: react.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & react.RefAttributes<HTMLDivElement>>;
|
|
258
|
+
declare const SelectValue: react.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & react.RefAttributes<HTMLSpanElement>>;
|
|
259
259
|
type SelectTriggerExtraProps = {
|
|
260
260
|
'data-has-error'?: string;
|
|
261
261
|
'data-is-disabled'?: string;
|
|
262
262
|
};
|
|
263
|
-
declare const SelectTrigger:
|
|
264
|
-
declare const SelectContent:
|
|
265
|
-
declare const SelectLabel:
|
|
266
|
-
declare const SelectItem:
|
|
267
|
-
declare const SelectSeparator:
|
|
268
|
-
|
|
269
|
-
declare const Switch:
|
|
270
|
-
|
|
271
|
-
declare const Table:
|
|
272
|
-
declare const TableHeader:
|
|
273
|
-
declare const TableBody:
|
|
274
|
-
declare const TableRow:
|
|
275
|
-
declare const TableHead:
|
|
276
|
-
declare const TableCell:
|
|
277
|
-
declare const TableEmpty:
|
|
263
|
+
declare const SelectTrigger: react.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & SelectTriggerExtraProps & react.RefAttributes<HTMLButtonElement & SelectTriggerExtraProps>>;
|
|
264
|
+
declare const SelectContent: react.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
265
|
+
declare const SelectLabel: react.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
266
|
+
declare const SelectItem: react.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
267
|
+
declare const SelectSeparator: react.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
268
|
+
|
|
269
|
+
declare const Switch: react.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
270
|
+
|
|
271
|
+
declare const Table: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableElement> & react.RefAttributes<HTMLTableElement>>;
|
|
272
|
+
declare const TableHeader: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableSectionElement> & react.RefAttributes<HTMLTableSectionElement>>;
|
|
273
|
+
declare const TableBody: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableSectionElement> & react.RefAttributes<HTMLTableSectionElement>>;
|
|
274
|
+
declare const TableRow: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableRowElement> & react.RefAttributes<HTMLTableRowElement>>;
|
|
275
|
+
declare const TableHead: react.ForwardRefExoticComponent<react.ThHTMLAttributes<HTMLTableCellElement> & react.RefAttributes<HTMLTableCellElement>>;
|
|
276
|
+
declare const TableCell: react.ForwardRefExoticComponent<react.TdHTMLAttributes<HTMLTableCellElement> & react.RefAttributes<HTMLTableCellElement>>;
|
|
277
|
+
declare const TableEmpty: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & {
|
|
278
278
|
title?: string | undefined;
|
|
279
279
|
description?: string | undefined;
|
|
280
|
-
} &
|
|
280
|
+
} & react.RefAttributes<HTMLDivElement & {
|
|
281
281
|
title?: string | undefined;
|
|
282
282
|
description?: string | undefined;
|
|
283
283
|
}>>;
|
|
284
284
|
|
|
285
|
-
declare const Tabs:
|
|
286
|
-
declare const TabsList:
|
|
287
|
-
declare const TabsTrigger:
|
|
288
|
-
declare const TabsContent:
|
|
285
|
+
declare const Tabs: react.ForwardRefExoticComponent<TabsPrimitive.TabsProps & react.RefAttributes<HTMLDivElement>>;
|
|
286
|
+
declare const TabsList: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
287
|
+
declare const TabsTrigger: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
288
|
+
declare const TabsContent: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
289
289
|
|
|
290
|
-
interface TextareaProps extends
|
|
290
|
+
interface TextareaProps extends react.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
291
291
|
'data-has-error'?: string;
|
|
292
292
|
'data-is-disabled'?: string;
|
|
293
293
|
}
|
|
294
|
-
declare const Textarea:
|
|
294
|
+
declare const Textarea: react.ForwardRefExoticComponent<TextareaProps & react.RefAttributes<HTMLTextAreaElement>>;
|
|
295
295
|
|
|
296
|
-
declare const ToastProvider:
|
|
297
|
-
declare const ToastViewport:
|
|
298
|
-
declare const Toast$1:
|
|
296
|
+
declare const ToastProvider: react.FC<ToastPrimitives.ToastProviderProps>;
|
|
297
|
+
declare const ToastViewport: react.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastViewportProps & react.RefAttributes<HTMLOListElement>, "ref"> & react.RefAttributes<HTMLOListElement>>;
|
|
298
|
+
declare const Toast$1: react.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & react.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
|
|
299
299
|
variant?: "default" | "destructive" | null | undefined;
|
|
300
|
-
} & class_variance_authority_dist_types.ClassProp) | undefined) => string> &
|
|
301
|
-
declare const ToastAction:
|
|
302
|
-
declare const ToastClose:
|
|
303
|
-
declare const ToastTitle:
|
|
304
|
-
declare const ToastDescription:
|
|
305
|
-
type ToastProps =
|
|
306
|
-
type ToastActionElement =
|
|
300
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string> & react.RefAttributes<HTMLLIElement>>;
|
|
301
|
+
declare const ToastAction: react.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastActionProps & react.RefAttributes<HTMLButtonElement>, "ref"> & ButtonProps & react.RefAttributes<never>>;
|
|
302
|
+
declare const ToastClose: react.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastCloseProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
303
|
+
declare const ToastTitle: react.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastTitleProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
304
|
+
declare const ToastDescription: react.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastDescriptionProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
305
|
+
type ToastProps = react.ComponentPropsWithoutRef<typeof Toast$1>;
|
|
306
|
+
type ToastActionElement = react.ReactElement<typeof ToastAction>;
|
|
307
307
|
|
|
308
308
|
type ToasterToast = ToastProps & {
|
|
309
309
|
id: string;
|
|
310
|
-
title?:
|
|
311
|
-
description?:
|
|
310
|
+
title?: react.ReactNode;
|
|
311
|
+
description?: react.ReactNode;
|
|
312
312
|
actions?: ToastActionElement[];
|
|
313
313
|
parentId?: string;
|
|
314
|
-
icon?:
|
|
314
|
+
icon?: react.ReactElement;
|
|
315
315
|
hideClose?: boolean;
|
|
316
316
|
};
|
|
317
317
|
type Toast = Omit<ToasterToast, 'id' | 'parentId'>;
|
|
@@ -339,213 +339,2455 @@ declare function Toaster({ className, toasterId, ...props }: ToastPrimitives.Toa
|
|
|
339
339
|
className?: string;
|
|
340
340
|
}): react_jsx_runtime.JSX.Element;
|
|
341
341
|
|
|
342
|
-
declare const TooltipProvider: ({ delayDuration, ...props }:
|
|
343
|
-
declare const Tooltip:
|
|
344
|
-
declare const TooltipTrigger:
|
|
345
|
-
declare const TooltipContent:
|
|
342
|
+
declare const TooltipProvider: ({ delayDuration, ...props }: react.ComponentProps<typeof TooltipPrimitive.Provider>) => react_jsx_runtime.JSX.Element;
|
|
343
|
+
declare const Tooltip: react.FC<TooltipPrimitive.TooltipProps>;
|
|
344
|
+
declare const TooltipTrigger: react.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
345
|
+
declare const TooltipContent: react.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
346
346
|
|
|
347
|
-
declare const ActivityIcon:
|
|
347
|
+
declare const ActivityIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
348
348
|
|
|
349
|
-
declare const
|
|
349
|
+
declare const ActivityHeartIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
350
350
|
|
|
351
|
-
declare const
|
|
351
|
+
declare const AirplayIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
352
352
|
|
|
353
|
-
declare const
|
|
353
|
+
declare const AirpodsIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
354
354
|
|
|
355
|
-
declare const
|
|
355
|
+
declare const AlarmClockIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
356
356
|
|
|
357
|
-
declare const
|
|
357
|
+
declare const AlarmClockCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
358
358
|
|
|
359
|
-
declare const
|
|
359
|
+
declare const AlarmClockMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
360
360
|
|
|
361
|
-
declare const
|
|
361
|
+
declare const AlarmClockOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
362
362
|
|
|
363
|
-
declare const
|
|
363
|
+
declare const AlarmClockPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
364
364
|
|
|
365
|
-
declare const
|
|
365
|
+
declare const AlertCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
366
366
|
|
|
367
|
-
declare const
|
|
367
|
+
declare const AlertHexagonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
368
368
|
|
|
369
|
-
declare const
|
|
369
|
+
declare const AlertOctagonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
370
370
|
|
|
371
|
-
declare const
|
|
371
|
+
declare const AlertSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
372
372
|
|
|
373
|
-
declare const
|
|
373
|
+
declare const AlertTriangleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
374
374
|
|
|
375
|
-
declare const
|
|
375
|
+
declare const AlignBottom1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
376
376
|
|
|
377
|
-
declare const
|
|
377
|
+
declare const AlignBottom2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
378
378
|
|
|
379
|
-
declare const
|
|
379
|
+
declare const AlignCenterIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
380
380
|
|
|
381
|
-
declare const
|
|
381
|
+
declare const AlignHorizontalCentre1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
382
382
|
|
|
383
|
-
declare const
|
|
383
|
+
declare const AlignHorizontalCentre2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
384
384
|
|
|
385
|
-
declare const
|
|
385
|
+
declare const AlignJustifyIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
386
386
|
|
|
387
|
-
declare const
|
|
387
|
+
declare const AlignLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
388
388
|
|
|
389
|
-
declare const
|
|
389
|
+
declare const AlignLeft1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
390
390
|
|
|
391
|
-
declare const
|
|
391
|
+
declare const AlignLeft2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
392
392
|
|
|
393
|
-
declare const
|
|
393
|
+
declare const AlignRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
394
394
|
|
|
395
|
-
declare const
|
|
395
|
+
declare const AlignRight1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
396
396
|
|
|
397
|
-
declare const
|
|
397
|
+
declare const AlignRight2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
398
398
|
|
|
399
|
-
declare const
|
|
399
|
+
declare const AlignTopArrow1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
400
400
|
|
|
401
|
-
declare const
|
|
401
|
+
declare const AlignTopArrow2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
402
402
|
|
|
403
|
-
declare const
|
|
403
|
+
declare const AlignVerticalCenter1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
404
404
|
|
|
405
|
-
declare const
|
|
405
|
+
declare const AlignVerticalCenter2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
406
406
|
|
|
407
|
-
declare const
|
|
407
|
+
declare const AnchorIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
408
408
|
|
|
409
|
-
declare const
|
|
409
|
+
declare const AnnotationIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
410
410
|
|
|
411
|
-
declare const
|
|
411
|
+
declare const AnnotationAlertIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
412
412
|
|
|
413
|
-
declare const
|
|
413
|
+
declare const AnnotationCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
414
414
|
|
|
415
|
-
declare const
|
|
415
|
+
declare const AnnotationDotsIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
416
416
|
|
|
417
|
-
declare const
|
|
417
|
+
declare const AnnotationHeartIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
418
418
|
|
|
419
|
-
declare const
|
|
419
|
+
declare const AnnotationInfoIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
420
420
|
|
|
421
|
-
declare const
|
|
421
|
+
declare const AnnotationPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
422
422
|
|
|
423
|
-
declare const
|
|
423
|
+
declare const AnnotationQuestionIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
424
424
|
|
|
425
|
-
declare const
|
|
425
|
+
declare const AnnotationXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
426
426
|
|
|
427
|
-
declare const
|
|
427
|
+
declare const Announcement1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
428
428
|
|
|
429
|
-
declare const
|
|
429
|
+
declare const Announcement2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
430
430
|
|
|
431
|
-
declare const
|
|
431
|
+
declare const Announcement3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
432
432
|
|
|
433
|
-
declare const
|
|
433
|
+
declare const AppIntegrationIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
434
434
|
|
|
435
|
-
declare const
|
|
435
|
+
declare const ArchiveIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
436
436
|
|
|
437
|
-
declare const
|
|
437
|
+
declare const ArrowBlockDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
438
438
|
|
|
439
|
-
declare const
|
|
439
|
+
declare const ArrowBlockLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
440
440
|
|
|
441
|
-
declare const
|
|
441
|
+
declare const ArrowBlockRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
442
442
|
|
|
443
|
-
declare const
|
|
443
|
+
declare const ArrowBlockUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
444
444
|
|
|
445
|
-
declare const
|
|
445
|
+
declare const ArrowCircleBrokenDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
446
446
|
|
|
447
|
-
declare const
|
|
447
|
+
declare const ArrowCircleBrokenDownLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
448
448
|
|
|
449
|
-
declare const
|
|
449
|
+
declare const ArrowCircleBrokenDownRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
450
450
|
|
|
451
|
-
declare const
|
|
451
|
+
declare const ArrowCircleBrokenLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
452
452
|
|
|
453
|
-
declare const
|
|
453
|
+
declare const ArrowCircleBrokenRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
454
454
|
|
|
455
|
-
declare const
|
|
455
|
+
declare const ArrowCircleBrokenUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
456
456
|
|
|
457
|
-
declare const
|
|
457
|
+
declare const ArrowCircleBrokenUpLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
458
458
|
|
|
459
|
-
declare const
|
|
459
|
+
declare const ArrowCircleBrokenUpRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
460
460
|
|
|
461
|
-
declare const
|
|
461
|
+
declare const ArrowCircleDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
462
462
|
|
|
463
|
-
declare const
|
|
463
|
+
declare const ArrowCircleDownLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
464
464
|
|
|
465
|
-
declare const
|
|
465
|
+
declare const ArrowCircleDownRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
466
466
|
|
|
467
|
-
declare const
|
|
467
|
+
declare const ArrowCircleLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
468
468
|
|
|
469
|
-
declare const
|
|
469
|
+
declare const ArrowCircleRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
470
470
|
|
|
471
|
-
declare const
|
|
471
|
+
declare const ArrowCircleUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
472
472
|
|
|
473
|
-
declare const
|
|
473
|
+
declare const ArrowCircleUpLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
474
474
|
|
|
475
|
-
declare const
|
|
475
|
+
declare const ArrowCircleUpRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
476
476
|
|
|
477
|
-
declare const
|
|
477
|
+
declare const ArrowDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
478
478
|
|
|
479
|
-
declare const
|
|
479
|
+
declare const ArrowDownLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
480
480
|
|
|
481
|
-
declare const
|
|
481
|
+
declare const ArrowDownRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
482
482
|
|
|
483
|
-
declare const
|
|
483
|
+
declare const ArrowLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
484
484
|
|
|
485
|
-
declare const
|
|
485
|
+
declare const ArrowNarrowDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
486
486
|
|
|
487
|
-
declare const
|
|
487
|
+
declare const ArrowNarrowDownLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
488
488
|
|
|
489
|
-
declare const
|
|
489
|
+
declare const ArrowNarrowDownRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
490
490
|
|
|
491
|
-
declare const
|
|
491
|
+
declare const ArrowNarrowLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
492
492
|
|
|
493
|
-
declare const
|
|
493
|
+
declare const ArrowNarrowRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
494
494
|
|
|
495
|
-
declare const
|
|
495
|
+
declare const ArrowNarrowUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
496
496
|
|
|
497
|
-
declare const
|
|
497
|
+
declare const ArrowNarrowUpLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
498
498
|
|
|
499
|
-
declare const
|
|
499
|
+
declare const ArrowNarrowUpRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
500
500
|
|
|
501
|
-
declare const
|
|
501
|
+
declare const ArrowRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
502
502
|
|
|
503
|
-
declare const
|
|
503
|
+
declare const ArrowSquareDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
504
504
|
|
|
505
|
-
declare const
|
|
505
|
+
declare const ArrowSquareDownLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
506
506
|
|
|
507
|
-
declare const
|
|
507
|
+
declare const ArrowSquareDownRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
508
508
|
|
|
509
|
-
declare const
|
|
509
|
+
declare const ArrowSquareLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
510
510
|
|
|
511
|
-
declare const
|
|
511
|
+
declare const ArrowSquareRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
512
512
|
|
|
513
|
-
declare const
|
|
513
|
+
declare const ArrowSquareUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
514
514
|
|
|
515
|
-
declare const
|
|
515
|
+
declare const ArrowSquareUpLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
516
516
|
|
|
517
|
-
declare const
|
|
517
|
+
declare const ArrowSquareUpRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
518
518
|
|
|
519
|
-
declare const
|
|
519
|
+
declare const ArrowUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
520
520
|
|
|
521
|
-
declare const
|
|
521
|
+
declare const ArrowUpLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
522
522
|
|
|
523
|
-
declare const
|
|
523
|
+
declare const ArrowUpRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
524
524
|
|
|
525
|
-
declare const
|
|
525
|
+
declare const ArrowsDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
526
526
|
|
|
527
|
-
declare const
|
|
527
|
+
declare const ArrowsLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
528
528
|
|
|
529
|
-
declare const
|
|
529
|
+
declare const ArrowsRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
530
530
|
|
|
531
|
-
declare const
|
|
531
|
+
declare const ArrowsTriangleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
532
532
|
|
|
533
|
-
declare const
|
|
533
|
+
declare const ArrowsUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
534
534
|
|
|
535
|
-
declare const
|
|
535
|
+
declare const Asterisk1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
536
536
|
|
|
537
|
-
declare const
|
|
537
|
+
declare const Asterisk2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
538
538
|
|
|
539
|
-
declare const
|
|
539
|
+
declare const AtSignIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
540
540
|
|
|
541
|
-
declare const
|
|
541
|
+
declare const Atom1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
542
542
|
|
|
543
|
-
declare const
|
|
543
|
+
declare const Atom2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
544
544
|
|
|
545
|
-
declare const
|
|
545
|
+
declare const AttachmentIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
546
546
|
|
|
547
|
-
declare const
|
|
547
|
+
declare const Attachment1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
548
548
|
|
|
549
|
-
declare const
|
|
549
|
+
declare const Attachment2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
550
550
|
|
|
551
|
-
|
|
551
|
+
declare const Award1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
552
|
+
|
|
553
|
+
declare const Award2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
554
|
+
|
|
555
|
+
declare const Award3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
556
|
+
|
|
557
|
+
declare const Award4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
558
|
+
|
|
559
|
+
declare const Award5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
560
|
+
|
|
561
|
+
declare const BackpackIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
562
|
+
|
|
563
|
+
declare const BankIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
564
|
+
|
|
565
|
+
declare const BankNote1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
566
|
+
|
|
567
|
+
declare const BankNote2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
568
|
+
|
|
569
|
+
declare const BankNote3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
570
|
+
|
|
571
|
+
declare const BarChart1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
572
|
+
|
|
573
|
+
declare const BarChart11Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
574
|
+
|
|
575
|
+
declare const BarChart12Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
576
|
+
|
|
577
|
+
declare const BarChart2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
578
|
+
|
|
579
|
+
declare const BarChart3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
580
|
+
|
|
581
|
+
declare const BarChart4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
582
|
+
|
|
583
|
+
declare const BarChart5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
584
|
+
|
|
585
|
+
declare const BarChart6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
586
|
+
|
|
587
|
+
declare const BarChart7Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
588
|
+
|
|
589
|
+
declare const BarChart8Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
590
|
+
|
|
591
|
+
declare const BarChart9Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
592
|
+
|
|
593
|
+
declare const BarChartCircle1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
594
|
+
|
|
595
|
+
declare const BarChartCircle2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
596
|
+
|
|
597
|
+
declare const BarChartCircle3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
598
|
+
|
|
599
|
+
declare const BarChartSquare1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
600
|
+
|
|
601
|
+
declare const BarChartSquare2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
602
|
+
|
|
603
|
+
declare const BarChartSquare3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
604
|
+
|
|
605
|
+
declare const BarChartSquareDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
606
|
+
|
|
607
|
+
declare const BarChartSquareMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
608
|
+
|
|
609
|
+
declare const BarChartSquarePlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
610
|
+
|
|
611
|
+
declare const BarChartSquareUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
612
|
+
|
|
613
|
+
declare const BarLineChartIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
614
|
+
|
|
615
|
+
declare const BatteryCharging1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
616
|
+
|
|
617
|
+
declare const BatteryCharging2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
618
|
+
|
|
619
|
+
declare const BatteryEmptyIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
620
|
+
|
|
621
|
+
declare const BatteryFullIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
622
|
+
|
|
623
|
+
declare const BatteryLowIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
624
|
+
|
|
625
|
+
declare const BatteryMidIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
626
|
+
|
|
627
|
+
declare const Beaker1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
628
|
+
|
|
629
|
+
declare const Beaker2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
630
|
+
|
|
631
|
+
declare const BellIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
632
|
+
|
|
633
|
+
declare const Bell1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
634
|
+
|
|
635
|
+
declare const Bell2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
636
|
+
|
|
637
|
+
declare const Bell3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
638
|
+
|
|
639
|
+
declare const Bell4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
640
|
+
|
|
641
|
+
declare const BellMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
642
|
+
|
|
643
|
+
declare const BellOff1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
644
|
+
|
|
645
|
+
declare const BellOff2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
646
|
+
|
|
647
|
+
declare const BellOff3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
648
|
+
|
|
649
|
+
declare const BellPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
650
|
+
|
|
651
|
+
declare const BellRinging1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
652
|
+
|
|
653
|
+
declare const BellRinging2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
654
|
+
|
|
655
|
+
declare const BellRinging3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
656
|
+
|
|
657
|
+
declare const BellRinging4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
658
|
+
|
|
659
|
+
declare const BezierCurve1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
660
|
+
|
|
661
|
+
declare const BezierCurve2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
662
|
+
|
|
663
|
+
declare const BezierCurve3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
664
|
+
|
|
665
|
+
declare const BluetoothConnectIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
666
|
+
|
|
667
|
+
declare const BluetoothOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
668
|
+
|
|
669
|
+
declare const BluetoothOnIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
670
|
+
|
|
671
|
+
declare const BluetoothSignalIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
672
|
+
|
|
673
|
+
declare const Bold1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
674
|
+
|
|
675
|
+
declare const Bold2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
676
|
+
|
|
677
|
+
declare const BoldSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
678
|
+
|
|
679
|
+
declare const BookClosedIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
680
|
+
|
|
681
|
+
declare const BookOpen1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
682
|
+
|
|
683
|
+
declare const BookOpen2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
684
|
+
|
|
685
|
+
declare const BookmarkIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
686
|
+
|
|
687
|
+
declare const BookmarkAddIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
688
|
+
|
|
689
|
+
declare const BookmarkCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
690
|
+
|
|
691
|
+
declare const BookmarkMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
692
|
+
|
|
693
|
+
declare const BookmarkXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
694
|
+
|
|
695
|
+
declare const BoxIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
696
|
+
|
|
697
|
+
declare const BracketsIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
698
|
+
|
|
699
|
+
declare const BracketsCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
700
|
+
|
|
701
|
+
declare const BracketsEllipsesIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
702
|
+
|
|
703
|
+
declare const BracketsMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
704
|
+
|
|
705
|
+
declare const BracketsPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
706
|
+
|
|
707
|
+
declare const BracketsSlashIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
708
|
+
|
|
709
|
+
declare const BracketsXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
710
|
+
|
|
711
|
+
declare const Briefcase1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
712
|
+
|
|
713
|
+
declare const Briefcase2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
714
|
+
|
|
715
|
+
declare const BrowserIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
716
|
+
|
|
717
|
+
declare const Brush1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
718
|
+
|
|
719
|
+
declare const Brush2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
720
|
+
|
|
721
|
+
declare const Brush3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
722
|
+
|
|
723
|
+
declare const Building1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
724
|
+
|
|
725
|
+
declare const Building2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
726
|
+
|
|
727
|
+
declare const Building3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
728
|
+
|
|
729
|
+
declare const Building4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
730
|
+
|
|
731
|
+
declare const Building5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
732
|
+
|
|
733
|
+
declare const Building6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
734
|
+
|
|
735
|
+
declare const Building7Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
736
|
+
|
|
737
|
+
declare const Building8Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
738
|
+
|
|
739
|
+
declare const BusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
740
|
+
|
|
741
|
+
declare const CalculatorIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
742
|
+
|
|
743
|
+
declare const CalendarIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
744
|
+
|
|
745
|
+
declare const CalendarCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
746
|
+
|
|
747
|
+
declare const CalendarCheck1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
748
|
+
|
|
749
|
+
declare const CalendarCheck2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
750
|
+
|
|
751
|
+
declare const CalendarDateIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
752
|
+
|
|
753
|
+
declare const CalendarHeart1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
754
|
+
|
|
755
|
+
declare const CalendarHeart2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
756
|
+
|
|
757
|
+
declare const CalendarMinus1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
758
|
+
|
|
759
|
+
declare const CalendarMinus2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
760
|
+
|
|
761
|
+
declare const CalendarPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
762
|
+
|
|
763
|
+
declare const CalendarPlus1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
764
|
+
|
|
765
|
+
declare const CalendarPlus2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
766
|
+
|
|
767
|
+
declare const CalendarPlusCornerIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
768
|
+
|
|
769
|
+
declare const CameraIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
770
|
+
|
|
771
|
+
declare const Camera1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
772
|
+
|
|
773
|
+
declare const Camera2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
774
|
+
|
|
775
|
+
declare const Camera3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
776
|
+
|
|
777
|
+
declare const CameraLensIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
778
|
+
|
|
779
|
+
declare const CameraOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
780
|
+
|
|
781
|
+
declare const CameraPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
782
|
+
|
|
783
|
+
declare const Car1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
784
|
+
|
|
785
|
+
declare const Car2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
786
|
+
|
|
787
|
+
declare const Certificate1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
788
|
+
|
|
789
|
+
declare const Certificate2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
790
|
+
|
|
791
|
+
declare const ChartBreakoutCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
792
|
+
|
|
793
|
+
declare const ChartBreakoutSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
794
|
+
|
|
795
|
+
declare const CheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
796
|
+
|
|
797
|
+
declare const CheckCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
798
|
+
|
|
799
|
+
declare const CheckCircleBrokenIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
800
|
+
|
|
801
|
+
declare const CheckDone1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
802
|
+
|
|
803
|
+
declare const CheckDone2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
804
|
+
|
|
805
|
+
declare const CheckHeartIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
806
|
+
|
|
807
|
+
declare const CheckSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
808
|
+
|
|
809
|
+
declare const CheckSquareBrokenIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
810
|
+
|
|
811
|
+
declare const CheckVerified1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
812
|
+
|
|
813
|
+
declare const CheckVerified2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
814
|
+
|
|
815
|
+
declare const CheckVerified3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
816
|
+
|
|
817
|
+
declare const ChevronDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
818
|
+
|
|
819
|
+
declare const ChevronDownDoubleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
820
|
+
|
|
821
|
+
declare const ChevronLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
822
|
+
|
|
823
|
+
declare const ChevronLeftDoubleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
824
|
+
|
|
825
|
+
declare const ChevronRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
826
|
+
|
|
827
|
+
declare const ChevronRightDoubleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
828
|
+
|
|
829
|
+
declare const ChevronSelectorHorizontalIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
830
|
+
|
|
831
|
+
declare const ChevronSelectorVerticalIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
832
|
+
|
|
833
|
+
declare const ChevronUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
834
|
+
|
|
835
|
+
declare const ChevronUpDoubleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
836
|
+
|
|
837
|
+
declare const ChromeCastIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
838
|
+
|
|
839
|
+
declare const CircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
840
|
+
|
|
841
|
+
declare const CircleCutIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
842
|
+
|
|
843
|
+
declare const ClapperboardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
844
|
+
|
|
845
|
+
declare const ClipboardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
846
|
+
|
|
847
|
+
declare const ClipboardAttachmentIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
848
|
+
|
|
849
|
+
declare const ClipboardCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
850
|
+
|
|
851
|
+
declare const ClipboardDownloadIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
852
|
+
|
|
853
|
+
declare const ClipboardMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
854
|
+
|
|
855
|
+
declare const ClipboardPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
856
|
+
|
|
857
|
+
declare const ClipboardXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
858
|
+
|
|
859
|
+
declare const ClockIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
860
|
+
|
|
861
|
+
declare const ClockCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
862
|
+
|
|
863
|
+
declare const ClockFastForwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
864
|
+
|
|
865
|
+
declare const ClockPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
866
|
+
|
|
867
|
+
declare const ClockRefreshIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
868
|
+
|
|
869
|
+
declare const ClockRewindIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
870
|
+
|
|
871
|
+
declare const ClockSnoozeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
872
|
+
|
|
873
|
+
declare const ClockStopwatchIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
874
|
+
|
|
875
|
+
declare const Cloud1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
876
|
+
|
|
877
|
+
declare const Cloud2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
878
|
+
|
|
879
|
+
declare const Cloud3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
880
|
+
|
|
881
|
+
declare const CloudBlank1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
882
|
+
|
|
883
|
+
declare const CloudBlank2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
884
|
+
|
|
885
|
+
declare const CloudLightningIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
886
|
+
|
|
887
|
+
declare const CloudMoonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
888
|
+
|
|
889
|
+
declare const CloudOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
890
|
+
|
|
891
|
+
declare const CloudRaining1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
892
|
+
|
|
893
|
+
declare const CloudRaining2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
894
|
+
|
|
895
|
+
declare const CloudRaining3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
896
|
+
|
|
897
|
+
declare const CloudRaining4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
898
|
+
|
|
899
|
+
declare const CloudRaining5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
900
|
+
|
|
901
|
+
declare const CloudRaining6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
902
|
+
|
|
903
|
+
declare const CloudSnowing1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
904
|
+
|
|
905
|
+
declare const CloudSnowing2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
906
|
+
|
|
907
|
+
declare const CloudSun1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
908
|
+
|
|
909
|
+
declare const CloudSun2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
910
|
+
|
|
911
|
+
declare const CloudSun3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
912
|
+
|
|
913
|
+
declare const Code1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
914
|
+
|
|
915
|
+
declare const Code2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
916
|
+
|
|
917
|
+
declare const CodeBrowserIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
918
|
+
|
|
919
|
+
declare const CodeCircle1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
920
|
+
|
|
921
|
+
declare const CodeCircle2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
922
|
+
|
|
923
|
+
declare const CodeCircle3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
924
|
+
|
|
925
|
+
declare const CodeSnippet1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
926
|
+
|
|
927
|
+
declare const CodeSnippet2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
928
|
+
|
|
929
|
+
declare const CodeSquare1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
930
|
+
|
|
931
|
+
declare const CodeSquare2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
932
|
+
|
|
933
|
+
declare const CodepenIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
934
|
+
|
|
935
|
+
declare const Coins1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
936
|
+
|
|
937
|
+
declare const Coins2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
938
|
+
|
|
939
|
+
declare const Coins3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
940
|
+
|
|
941
|
+
declare const Coins4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
942
|
+
|
|
943
|
+
declare const CoinsHandIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
944
|
+
|
|
945
|
+
declare const CoinsStacked1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
946
|
+
|
|
947
|
+
declare const CoinsStacked2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
948
|
+
|
|
949
|
+
declare const CoinsStacked3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
950
|
+
|
|
951
|
+
declare const CoinsStacked4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
952
|
+
|
|
953
|
+
declare const CoinsSwap1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
954
|
+
|
|
955
|
+
declare const CoinsSwap2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
956
|
+
|
|
957
|
+
declare const ColorsIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
958
|
+
|
|
959
|
+
declare const Colors1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
960
|
+
|
|
961
|
+
declare const Columns1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
962
|
+
|
|
963
|
+
declare const Columns2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
964
|
+
|
|
965
|
+
declare const Columns3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
966
|
+
|
|
967
|
+
declare const CommandIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
968
|
+
|
|
969
|
+
declare const CompassIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
970
|
+
|
|
971
|
+
declare const Compass1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
972
|
+
|
|
973
|
+
declare const Compass2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
974
|
+
|
|
975
|
+
declare const Compass3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
976
|
+
|
|
977
|
+
declare const ContainerIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
978
|
+
|
|
979
|
+
declare const Contrast1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
980
|
+
|
|
981
|
+
declare const Contrast2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
982
|
+
|
|
983
|
+
declare const Contrast3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
984
|
+
|
|
985
|
+
declare const CopyIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
986
|
+
|
|
987
|
+
declare const Copy1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
988
|
+
|
|
989
|
+
declare const Copy2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
990
|
+
|
|
991
|
+
declare const Copy3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
992
|
+
|
|
993
|
+
declare const Copy4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
994
|
+
|
|
995
|
+
declare const Copy5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
996
|
+
|
|
997
|
+
declare const Copy6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
998
|
+
|
|
999
|
+
declare const Copy7Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1000
|
+
|
|
1001
|
+
declare const CornerDownLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1002
|
+
|
|
1003
|
+
declare const CornerDownRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1004
|
+
|
|
1005
|
+
declare const CornerLeftDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1006
|
+
|
|
1007
|
+
declare const CornerLeftUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1008
|
+
|
|
1009
|
+
declare const CornerRightDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1010
|
+
|
|
1011
|
+
declare const CornerRightUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1012
|
+
|
|
1013
|
+
declare const CornerUpLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1014
|
+
|
|
1015
|
+
declare const CornerUpRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1016
|
+
|
|
1017
|
+
declare const CpuChip1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1018
|
+
|
|
1019
|
+
declare const CpuChip2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1020
|
+
|
|
1021
|
+
declare const CreditCard1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1022
|
+
|
|
1023
|
+
declare const CreditCard2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1024
|
+
|
|
1025
|
+
declare const CreditCardCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1026
|
+
|
|
1027
|
+
declare const CreditCardDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1028
|
+
|
|
1029
|
+
declare const CreditCardDownloadIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1030
|
+
|
|
1031
|
+
declare const CreditCardEditIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1032
|
+
|
|
1033
|
+
declare const CreditCardLockIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1034
|
+
|
|
1035
|
+
declare const CreditCardMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1036
|
+
|
|
1037
|
+
declare const CreditCardPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1038
|
+
|
|
1039
|
+
declare const CreditCardRefreshIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1040
|
+
|
|
1041
|
+
declare const CreditCardSearchIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1042
|
+
|
|
1043
|
+
declare const CreditCardShieldIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1044
|
+
|
|
1045
|
+
declare const CreditCardUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1046
|
+
|
|
1047
|
+
declare const CreditCardUploadIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1048
|
+
|
|
1049
|
+
declare const CreditCardXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1050
|
+
|
|
1051
|
+
declare const Crop1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1052
|
+
|
|
1053
|
+
declare const Crop2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1054
|
+
|
|
1055
|
+
declare const Cryptocurrency1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1056
|
+
|
|
1057
|
+
declare const Cryptocurrency2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1058
|
+
|
|
1059
|
+
declare const Cryptocurrency3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1060
|
+
|
|
1061
|
+
declare const Cryptocurrency4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1062
|
+
|
|
1063
|
+
declare const Cube1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1064
|
+
|
|
1065
|
+
declare const Cube2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1066
|
+
|
|
1067
|
+
declare const Cube3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1068
|
+
|
|
1069
|
+
declare const Cube4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1070
|
+
|
|
1071
|
+
declare const CubeOutlineIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1072
|
+
|
|
1073
|
+
declare const CurrencyBitcoinIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1074
|
+
|
|
1075
|
+
declare const CurrencyBitcoinCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1076
|
+
|
|
1077
|
+
declare const CurrencyDollarIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1078
|
+
|
|
1079
|
+
declare const CurrencyDollarCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1080
|
+
|
|
1081
|
+
declare const CurrencyEthereumIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1082
|
+
|
|
1083
|
+
declare const CurrencyEthereumCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1084
|
+
|
|
1085
|
+
declare const CurrencyEuroIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1086
|
+
|
|
1087
|
+
declare const CurrencyEuroCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1088
|
+
|
|
1089
|
+
declare const CurrencyPoundIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1090
|
+
|
|
1091
|
+
declare const CurrencyPoundCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1092
|
+
|
|
1093
|
+
declare const CurrencyRubleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1094
|
+
|
|
1095
|
+
declare const CurrencyRubleCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1096
|
+
|
|
1097
|
+
declare const CurrencyRupeeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1098
|
+
|
|
1099
|
+
declare const CurrencyRupeeCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1100
|
+
|
|
1101
|
+
declare const CurrencyYenIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1102
|
+
|
|
1103
|
+
declare const CurrencyYenCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1104
|
+
|
|
1105
|
+
declare const Cursor1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1106
|
+
|
|
1107
|
+
declare const Cursor2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1108
|
+
|
|
1109
|
+
declare const Cursor3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1110
|
+
|
|
1111
|
+
declare const Cursor4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1112
|
+
|
|
1113
|
+
declare const CursorBoxIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1114
|
+
|
|
1115
|
+
declare const CursorClickIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1116
|
+
|
|
1117
|
+
declare const CursorClick1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1118
|
+
|
|
1119
|
+
declare const CursorClick2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1120
|
+
|
|
1121
|
+
declare const DataIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1122
|
+
|
|
1123
|
+
declare const Database1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1124
|
+
|
|
1125
|
+
declare const Database2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1126
|
+
|
|
1127
|
+
declare const Database3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1128
|
+
|
|
1129
|
+
declare const Dataflow1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1130
|
+
|
|
1131
|
+
declare const Dataflow2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1132
|
+
|
|
1133
|
+
declare const Dataflow3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1134
|
+
|
|
1135
|
+
declare const Dataflow4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1136
|
+
|
|
1137
|
+
declare const DeleteIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1138
|
+
|
|
1139
|
+
declare const Diamond1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1140
|
+
|
|
1141
|
+
declare const Diamond2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1142
|
+
|
|
1143
|
+
declare const Dice1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1144
|
+
|
|
1145
|
+
declare const Dice2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1146
|
+
|
|
1147
|
+
declare const Dice3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1148
|
+
|
|
1149
|
+
declare const Dice4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1150
|
+
|
|
1151
|
+
declare const Dice5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1152
|
+
|
|
1153
|
+
declare const Dice6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1154
|
+
|
|
1155
|
+
declare const Disc1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1156
|
+
|
|
1157
|
+
declare const Disc2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1158
|
+
|
|
1159
|
+
declare const DistributeSpacingHorizontalIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1160
|
+
|
|
1161
|
+
declare const DistributeSpacingVerticalIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1162
|
+
|
|
1163
|
+
declare const Divide1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1164
|
+
|
|
1165
|
+
declare const Divide2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1166
|
+
|
|
1167
|
+
declare const Divide3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1168
|
+
|
|
1169
|
+
declare const DividerIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1170
|
+
|
|
1171
|
+
declare const Dotpoints1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1172
|
+
|
|
1173
|
+
declare const Dotpoints2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1174
|
+
|
|
1175
|
+
declare const DotsGridIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1176
|
+
|
|
1177
|
+
declare const DotsHorizontalIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1178
|
+
|
|
1179
|
+
declare const DotsVerticalIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1180
|
+
|
|
1181
|
+
declare const DownloadIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1182
|
+
|
|
1183
|
+
declare const Download1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1184
|
+
|
|
1185
|
+
declare const Download2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1186
|
+
|
|
1187
|
+
declare const Download3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1188
|
+
|
|
1189
|
+
declare const Download4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1190
|
+
|
|
1191
|
+
declare const DownloadCloud1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1192
|
+
|
|
1193
|
+
declare const DownloadCloud2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1194
|
+
|
|
1195
|
+
declare const DropIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1196
|
+
|
|
1197
|
+
declare const Droplets1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1198
|
+
|
|
1199
|
+
declare const Droplets2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1200
|
+
|
|
1201
|
+
declare const Droplets3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1202
|
+
|
|
1203
|
+
declare const DropperIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1204
|
+
|
|
1205
|
+
declare const EditIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1206
|
+
|
|
1207
|
+
declare const Edit1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1208
|
+
|
|
1209
|
+
declare const Edit2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1210
|
+
|
|
1211
|
+
declare const Edit3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1212
|
+
|
|
1213
|
+
declare const Edit4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1214
|
+
|
|
1215
|
+
declare const Edit5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1216
|
+
|
|
1217
|
+
declare const EqualIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1218
|
+
|
|
1219
|
+
declare const EqualNotIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1220
|
+
|
|
1221
|
+
declare const EraserIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1222
|
+
|
|
1223
|
+
declare const ExpandIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1224
|
+
|
|
1225
|
+
declare const Expand1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1226
|
+
|
|
1227
|
+
declare const Expand2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1228
|
+
|
|
1229
|
+
declare const Expand3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1230
|
+
|
|
1231
|
+
declare const Expand4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1232
|
+
|
|
1233
|
+
declare const Expand5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1234
|
+
|
|
1235
|
+
declare const Expand6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1236
|
+
|
|
1237
|
+
declare const EyeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1238
|
+
|
|
1239
|
+
declare const EyeOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1240
|
+
|
|
1241
|
+
declare const FaceContentIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1242
|
+
|
|
1243
|
+
declare const FaceFrownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1244
|
+
|
|
1245
|
+
declare const FaceHappyIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1246
|
+
|
|
1247
|
+
declare const FaceIdIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1248
|
+
|
|
1249
|
+
declare const FaceIdSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1250
|
+
|
|
1251
|
+
declare const FaceNeutralIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1252
|
+
|
|
1253
|
+
declare const FaceSadIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1254
|
+
|
|
1255
|
+
declare const FaceSmileIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1256
|
+
|
|
1257
|
+
declare const FaceWinkIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1258
|
+
|
|
1259
|
+
declare const FastBackwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1260
|
+
|
|
1261
|
+
declare const FastForwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1262
|
+
|
|
1263
|
+
declare const FeatherIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1264
|
+
|
|
1265
|
+
declare const FigmaIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1266
|
+
|
|
1267
|
+
declare const File1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1268
|
+
|
|
1269
|
+
declare const File2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1270
|
+
|
|
1271
|
+
declare const File3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1272
|
+
|
|
1273
|
+
declare const File4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1274
|
+
|
|
1275
|
+
declare const File5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1276
|
+
|
|
1277
|
+
declare const File6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1278
|
+
|
|
1279
|
+
declare const File7Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1280
|
+
|
|
1281
|
+
declare const FileAttachment1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1282
|
+
|
|
1283
|
+
declare const FileAttachment2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1284
|
+
|
|
1285
|
+
declare const FileAttachment3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1286
|
+
|
|
1287
|
+
declare const FileAttachment4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1288
|
+
|
|
1289
|
+
declare const FileAttachment5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1290
|
+
|
|
1291
|
+
declare const FileCheck1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1292
|
+
|
|
1293
|
+
declare const FileCheck2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1294
|
+
|
|
1295
|
+
declare const FileCheck3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1296
|
+
|
|
1297
|
+
declare const FileCode1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1298
|
+
|
|
1299
|
+
declare const FileCode2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1300
|
+
|
|
1301
|
+
declare const FileDownload1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1302
|
+
|
|
1303
|
+
declare const FileDownload2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1304
|
+
|
|
1305
|
+
declare const FileDownload3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1306
|
+
|
|
1307
|
+
declare const FileHeart1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1308
|
+
|
|
1309
|
+
declare const FileHeart2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1310
|
+
|
|
1311
|
+
declare const FileHeart3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1312
|
+
|
|
1313
|
+
declare const FileLock1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1314
|
+
|
|
1315
|
+
declare const FileLock2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1316
|
+
|
|
1317
|
+
declare const FileLock3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1318
|
+
|
|
1319
|
+
declare const FileMinus1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1320
|
+
|
|
1321
|
+
declare const FileMinus2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1322
|
+
|
|
1323
|
+
declare const FileMinus3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1324
|
+
|
|
1325
|
+
declare const FilePlus1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1326
|
+
|
|
1327
|
+
declare const FilePlus2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1328
|
+
|
|
1329
|
+
declare const FilePlus3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1330
|
+
|
|
1331
|
+
declare const FileQuestionIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1332
|
+
|
|
1333
|
+
declare const FileQuestion1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1334
|
+
|
|
1335
|
+
declare const FileQuestion2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1336
|
+
|
|
1337
|
+
declare const FileQuestion3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1338
|
+
|
|
1339
|
+
declare const FileSearch1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1340
|
+
|
|
1341
|
+
declare const FileSearch2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1342
|
+
|
|
1343
|
+
declare const FileSearch3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1344
|
+
|
|
1345
|
+
declare const FileShield1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1346
|
+
|
|
1347
|
+
declare const FileShield2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1348
|
+
|
|
1349
|
+
declare const FileShield3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1350
|
+
|
|
1351
|
+
declare const FileX1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1352
|
+
|
|
1353
|
+
declare const FileX2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1354
|
+
|
|
1355
|
+
declare const FileX3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1356
|
+
|
|
1357
|
+
declare const Film1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1358
|
+
|
|
1359
|
+
declare const Film2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1360
|
+
|
|
1361
|
+
declare const Film3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1362
|
+
|
|
1363
|
+
declare const FilterFunnel1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1364
|
+
|
|
1365
|
+
declare const FilterFunnel2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1366
|
+
|
|
1367
|
+
declare const FilterLinesIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1368
|
+
|
|
1369
|
+
declare const Fingerprint2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1370
|
+
|
|
1371
|
+
declare const Fingerprint3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1372
|
+
|
|
1373
|
+
declare const Fingerprint4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1374
|
+
|
|
1375
|
+
declare const Flag1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1376
|
+
|
|
1377
|
+
declare const Flag2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1378
|
+
|
|
1379
|
+
declare const Flag3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1380
|
+
|
|
1381
|
+
declare const Flag4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1382
|
+
|
|
1383
|
+
declare const Flag5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1384
|
+
|
|
1385
|
+
declare const Flag6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1386
|
+
|
|
1387
|
+
declare const FlashIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1388
|
+
|
|
1389
|
+
declare const FlashOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1390
|
+
|
|
1391
|
+
declare const FlexAlignBottomIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1392
|
+
|
|
1393
|
+
declare const FlexAlignLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1394
|
+
|
|
1395
|
+
declare const FlexAlignRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1396
|
+
|
|
1397
|
+
declare const FlexAlignTopIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1398
|
+
|
|
1399
|
+
declare const FlipBackwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1400
|
+
|
|
1401
|
+
declare const FlipForwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1402
|
+
|
|
1403
|
+
declare const FolderIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1404
|
+
|
|
1405
|
+
declare const FolderCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1406
|
+
|
|
1407
|
+
declare const FolderClosedIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1408
|
+
|
|
1409
|
+
declare const FolderCodeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1410
|
+
|
|
1411
|
+
declare const FolderDownloadIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1412
|
+
|
|
1413
|
+
declare const FolderLockIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1414
|
+
|
|
1415
|
+
declare const FolderMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1416
|
+
|
|
1417
|
+
declare const FolderMoveIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1418
|
+
|
|
1419
|
+
declare const FolderPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1420
|
+
|
|
1421
|
+
declare const FolderQuestionIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1422
|
+
|
|
1423
|
+
declare const FolderSearchIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1424
|
+
|
|
1425
|
+
declare const FolderShieldIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1426
|
+
|
|
1427
|
+
declare const FolderXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1428
|
+
|
|
1429
|
+
declare const FramerIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1430
|
+
|
|
1431
|
+
declare const GamingPad1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1432
|
+
|
|
1433
|
+
declare const GamingPad2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1434
|
+
|
|
1435
|
+
declare const Gift1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1436
|
+
|
|
1437
|
+
declare const Gift2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1438
|
+
|
|
1439
|
+
declare const GitBranch1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1440
|
+
|
|
1441
|
+
declare const GitBranch2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1442
|
+
|
|
1443
|
+
declare const GitCommitIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1444
|
+
|
|
1445
|
+
declare const GitMergeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1446
|
+
|
|
1447
|
+
declare const GitPullRequestIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1448
|
+
|
|
1449
|
+
declare const Glasses1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1450
|
+
|
|
1451
|
+
declare const Glasses2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1452
|
+
|
|
1453
|
+
declare const Globe1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1454
|
+
|
|
1455
|
+
declare const Globe11Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1456
|
+
|
|
1457
|
+
declare const Globe2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1458
|
+
|
|
1459
|
+
declare const Globe21Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1460
|
+
|
|
1461
|
+
declare const Globe3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1462
|
+
|
|
1463
|
+
declare const Globe4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1464
|
+
|
|
1465
|
+
declare const Globe5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1466
|
+
|
|
1467
|
+
declare const Globe6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1468
|
+
|
|
1469
|
+
declare const GoogleChromeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1470
|
+
|
|
1471
|
+
declare const GraduationHat1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1472
|
+
|
|
1473
|
+
declare const GraduationHat2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1474
|
+
|
|
1475
|
+
declare const Grid1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1476
|
+
|
|
1477
|
+
declare const Grid2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1478
|
+
|
|
1479
|
+
declare const Grid3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1480
|
+
|
|
1481
|
+
declare const GridDotsBlankIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1482
|
+
|
|
1483
|
+
declare const GridDotsBottomIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1484
|
+
|
|
1485
|
+
declare const GridDotsHorizontalCenterIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1486
|
+
|
|
1487
|
+
declare const GridDotsLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1488
|
+
|
|
1489
|
+
declare const GridDotsOuterIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1490
|
+
|
|
1491
|
+
declare const GridDotsRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1492
|
+
|
|
1493
|
+
declare const GridDotsTopIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1494
|
+
|
|
1495
|
+
declare const GridDotsVerticalCenterIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1496
|
+
|
|
1497
|
+
declare const HandIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1498
|
+
|
|
1499
|
+
declare const HardDriveIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1500
|
+
|
|
1501
|
+
declare const Hash1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1502
|
+
|
|
1503
|
+
declare const Hash2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1504
|
+
|
|
1505
|
+
declare const Heading1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1506
|
+
|
|
1507
|
+
declare const Heading2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1508
|
+
|
|
1509
|
+
declare const HeadingSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1510
|
+
|
|
1511
|
+
declare const Headphones1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1512
|
+
|
|
1513
|
+
declare const Headphones2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1514
|
+
|
|
1515
|
+
declare const HeartIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1516
|
+
|
|
1517
|
+
declare const HeartCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1518
|
+
|
|
1519
|
+
declare const HeartHandIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1520
|
+
|
|
1521
|
+
declare const HeartHexagonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1522
|
+
|
|
1523
|
+
declare const HeartOctagonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1524
|
+
|
|
1525
|
+
declare const HeartRoundedIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1526
|
+
|
|
1527
|
+
declare const HeartSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1528
|
+
|
|
1529
|
+
declare const HeartsIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1530
|
+
|
|
1531
|
+
declare const HelpCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1532
|
+
|
|
1533
|
+
declare const HelpHexagonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1534
|
+
|
|
1535
|
+
declare const HelpOctagonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1536
|
+
|
|
1537
|
+
declare const HelpSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1538
|
+
|
|
1539
|
+
declare const Hexagon1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1540
|
+
|
|
1541
|
+
declare const Hexagon2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1542
|
+
|
|
1543
|
+
declare const HomeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1544
|
+
|
|
1545
|
+
declare const Home1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1546
|
+
|
|
1547
|
+
declare const Home2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1548
|
+
|
|
1549
|
+
declare const Home3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1550
|
+
|
|
1551
|
+
declare const Home4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1552
|
+
|
|
1553
|
+
declare const Home5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1554
|
+
|
|
1555
|
+
declare const HomeLineIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1556
|
+
|
|
1557
|
+
declare const HomeSmileIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1558
|
+
|
|
1559
|
+
declare const HorizontalBarChart1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1560
|
+
|
|
1561
|
+
declare const HorizontalBarChart2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1562
|
+
|
|
1563
|
+
declare const HorizontalBarChart3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1564
|
+
|
|
1565
|
+
declare const Hourglass1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1566
|
+
|
|
1567
|
+
declare const Hourglass2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1568
|
+
|
|
1569
|
+
declare const Hourglass3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1570
|
+
|
|
1571
|
+
declare const Hurricane1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1572
|
+
|
|
1573
|
+
declare const Hurricane2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1574
|
+
|
|
1575
|
+
declare const Hurricane3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1576
|
+
|
|
1577
|
+
declare const ImageIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1578
|
+
|
|
1579
|
+
declare const Image1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1580
|
+
|
|
1581
|
+
declare const Image2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1582
|
+
|
|
1583
|
+
declare const Image3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1584
|
+
|
|
1585
|
+
declare const Image4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1586
|
+
|
|
1587
|
+
declare const Image5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1588
|
+
|
|
1589
|
+
declare const ImageCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1590
|
+
|
|
1591
|
+
declare const ImageDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1592
|
+
|
|
1593
|
+
declare const ImageIndentLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1594
|
+
|
|
1595
|
+
declare const ImageIndentRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1596
|
+
|
|
1597
|
+
declare const ImageLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1598
|
+
|
|
1599
|
+
declare const ImagePlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1600
|
+
|
|
1601
|
+
declare const ImageRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1602
|
+
|
|
1603
|
+
declare const ImageUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1604
|
+
|
|
1605
|
+
declare const ImageUserIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1606
|
+
|
|
1607
|
+
declare const ImageUserCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1608
|
+
|
|
1609
|
+
declare const ImageUserDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1610
|
+
|
|
1611
|
+
declare const ImageUserLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1612
|
+
|
|
1613
|
+
declare const ImageUserPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1614
|
+
|
|
1615
|
+
declare const ImageUserRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1616
|
+
|
|
1617
|
+
declare const ImageUserUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1618
|
+
|
|
1619
|
+
declare const ImageUserXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1620
|
+
|
|
1621
|
+
declare const ImageXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1622
|
+
|
|
1623
|
+
declare const Inbox1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1624
|
+
|
|
1625
|
+
declare const Inbox2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1626
|
+
|
|
1627
|
+
declare const InfinityIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1628
|
+
|
|
1629
|
+
declare const InfoCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1630
|
+
|
|
1631
|
+
declare const InfoHexagonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1632
|
+
|
|
1633
|
+
declare const InfoOctagonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1634
|
+
|
|
1635
|
+
declare const InfoSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1636
|
+
|
|
1637
|
+
declare const IntersectCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1638
|
+
|
|
1639
|
+
declare const IntersectSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1640
|
+
|
|
1641
|
+
declare const Italic1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1642
|
+
|
|
1643
|
+
declare const Italic2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1644
|
+
|
|
1645
|
+
declare const ItalicSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1646
|
+
|
|
1647
|
+
declare const Key1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1648
|
+
|
|
1649
|
+
declare const Key2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1650
|
+
|
|
1651
|
+
declare const Keyboard1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1652
|
+
|
|
1653
|
+
declare const Keyboard2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1654
|
+
|
|
1655
|
+
declare const Laptop1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1656
|
+
|
|
1657
|
+
declare const Laptop2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1658
|
+
|
|
1659
|
+
declare const LayerSingleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1660
|
+
|
|
1661
|
+
declare const LayersThree1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1662
|
+
|
|
1663
|
+
declare const LayersThree2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1664
|
+
|
|
1665
|
+
declare const LayersTwo1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1666
|
+
|
|
1667
|
+
declare const LayersTwo2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1668
|
+
|
|
1669
|
+
declare const LayoutAlt1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1670
|
+
|
|
1671
|
+
declare const LayoutAlt2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1672
|
+
|
|
1673
|
+
declare const LayoutAlt3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1674
|
+
|
|
1675
|
+
declare const LayoutAlt4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1676
|
+
|
|
1677
|
+
declare const LayoutBottomIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1678
|
+
|
|
1679
|
+
declare const LayoutGrid1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1680
|
+
|
|
1681
|
+
declare const LayoutGrid2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1682
|
+
|
|
1683
|
+
declare const LayoutLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1684
|
+
|
|
1685
|
+
declare const LayoutRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1686
|
+
|
|
1687
|
+
declare const LayoutTopIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1688
|
+
|
|
1689
|
+
declare const LeftIndent1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1690
|
+
|
|
1691
|
+
declare const LeftIndent2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1692
|
+
|
|
1693
|
+
declare const LetterSpacing1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1694
|
+
|
|
1695
|
+
declare const LetterSpacing2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1696
|
+
|
|
1697
|
+
declare const LifeBuoy1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1698
|
+
|
|
1699
|
+
declare const LifeBuoy2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1700
|
+
|
|
1701
|
+
declare const LightbulbIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1702
|
+
|
|
1703
|
+
declare const Lightbulb1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1704
|
+
|
|
1705
|
+
declare const Lightbulb2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1706
|
+
|
|
1707
|
+
declare const Lightbulb3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1708
|
+
|
|
1709
|
+
declare const Lightbulb4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1710
|
+
|
|
1711
|
+
declare const Lightbulb5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1712
|
+
|
|
1713
|
+
declare const Lightning1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1714
|
+
|
|
1715
|
+
declare const Lightning2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1716
|
+
|
|
1717
|
+
declare const LineChartDown1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1718
|
+
|
|
1719
|
+
declare const LineChartDown2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1720
|
+
|
|
1721
|
+
declare const LineChartDown3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1722
|
+
|
|
1723
|
+
declare const LineChartDown4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1724
|
+
|
|
1725
|
+
declare const LineChartDown5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1726
|
+
|
|
1727
|
+
declare const LineChartUp1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1728
|
+
|
|
1729
|
+
declare const LineChartUp2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1730
|
+
|
|
1731
|
+
declare const LineChartUp3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1732
|
+
|
|
1733
|
+
declare const LineChartUp4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1734
|
+
|
|
1735
|
+
declare const LineChartUp5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1736
|
+
|
|
1737
|
+
declare const LineHeightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1738
|
+
|
|
1739
|
+
declare const LinkIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1740
|
+
|
|
1741
|
+
declare const Link1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1742
|
+
|
|
1743
|
+
declare const Link2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1744
|
+
|
|
1745
|
+
declare const Link3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1746
|
+
|
|
1747
|
+
declare const Link4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1748
|
+
|
|
1749
|
+
declare const Link5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1750
|
+
|
|
1751
|
+
declare const LinkBroken1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1752
|
+
|
|
1753
|
+
declare const LinkBroken2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1754
|
+
|
|
1755
|
+
declare const LinkExternal1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1756
|
+
|
|
1757
|
+
declare const LinkExternal2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1758
|
+
|
|
1759
|
+
declare const ListIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1760
|
+
|
|
1761
|
+
declare const Loading1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1762
|
+
|
|
1763
|
+
declare const Loading2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1764
|
+
|
|
1765
|
+
declare const Loading3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1766
|
+
|
|
1767
|
+
declare const LockIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1768
|
+
|
|
1769
|
+
declare const Lock1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1770
|
+
|
|
1771
|
+
declare const Lock2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1772
|
+
|
|
1773
|
+
declare const Lock3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1774
|
+
|
|
1775
|
+
declare const Lock4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1776
|
+
|
|
1777
|
+
declare const LockKeyholeCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1778
|
+
|
|
1779
|
+
declare const LockKeyholeSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1780
|
+
|
|
1781
|
+
declare const LockUnlocked1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1782
|
+
|
|
1783
|
+
declare const LockUnlocked2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1784
|
+
|
|
1785
|
+
declare const LockUnlocked3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1786
|
+
|
|
1787
|
+
declare const LockUnlocked4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1788
|
+
|
|
1789
|
+
declare const LogInIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1790
|
+
|
|
1791
|
+
declare const LogIn1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1792
|
+
|
|
1793
|
+
declare const LogIn2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1794
|
+
|
|
1795
|
+
declare const LogIn3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1796
|
+
|
|
1797
|
+
declare const LogIn4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1798
|
+
|
|
1799
|
+
declare const LogOut1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1800
|
+
|
|
1801
|
+
declare const LogOut2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1802
|
+
|
|
1803
|
+
declare const LogOut3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1804
|
+
|
|
1805
|
+
declare const LogOut4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1806
|
+
|
|
1807
|
+
declare const Luggage1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1808
|
+
|
|
1809
|
+
declare const Luggage2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1810
|
+
|
|
1811
|
+
declare const Luggage3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1812
|
+
|
|
1813
|
+
declare const MagicWandIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1814
|
+
|
|
1815
|
+
declare const MagicWand1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1816
|
+
|
|
1817
|
+
declare const MagicWand2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1818
|
+
|
|
1819
|
+
declare const MailIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1820
|
+
|
|
1821
|
+
declare const Mail1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1822
|
+
|
|
1823
|
+
declare const Mail2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1824
|
+
|
|
1825
|
+
declare const Mail3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1826
|
+
|
|
1827
|
+
declare const Mail4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1828
|
+
|
|
1829
|
+
declare const Mail5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1830
|
+
|
|
1831
|
+
declare const MailNotificationIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1832
|
+
|
|
1833
|
+
declare const Map1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1834
|
+
|
|
1835
|
+
declare const Map2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1836
|
+
|
|
1837
|
+
declare const MarkIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1838
|
+
|
|
1839
|
+
declare const MarkerPin1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1840
|
+
|
|
1841
|
+
declare const MarkerPin2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1842
|
+
|
|
1843
|
+
declare const MarkerPin3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1844
|
+
|
|
1845
|
+
declare const MarkerPin4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1846
|
+
|
|
1847
|
+
declare const MarkerPin5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1848
|
+
|
|
1849
|
+
declare const MarkerPin6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1850
|
+
|
|
1851
|
+
declare const Maximize1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1852
|
+
|
|
1853
|
+
declare const Maximize2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1854
|
+
|
|
1855
|
+
declare const MedicalCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1856
|
+
|
|
1857
|
+
declare const MedicalCrossIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1858
|
+
|
|
1859
|
+
declare const MedicalSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1860
|
+
|
|
1861
|
+
declare const MenuIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1862
|
+
|
|
1863
|
+
declare const Menu1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1864
|
+
|
|
1865
|
+
declare const Menu2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1866
|
+
|
|
1867
|
+
declare const Menu3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1868
|
+
|
|
1869
|
+
declare const Menu4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1870
|
+
|
|
1871
|
+
declare const Menu5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1872
|
+
|
|
1873
|
+
declare const MessageAlertCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1874
|
+
|
|
1875
|
+
declare const MessageAlertSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1876
|
+
|
|
1877
|
+
declare const MessageChatCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1878
|
+
|
|
1879
|
+
declare const MessageChatSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1880
|
+
|
|
1881
|
+
declare const MessageCheckCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1882
|
+
|
|
1883
|
+
declare const MessageCheckSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1884
|
+
|
|
1885
|
+
declare const MessageCircle1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1886
|
+
|
|
1887
|
+
declare const MessageCircle2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1888
|
+
|
|
1889
|
+
declare const MessageDotsCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1890
|
+
|
|
1891
|
+
declare const MessageDotsSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1892
|
+
|
|
1893
|
+
declare const MessageHeartCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1894
|
+
|
|
1895
|
+
declare const MessageHeartSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1896
|
+
|
|
1897
|
+
declare const MessageNotificationCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1898
|
+
|
|
1899
|
+
declare const MessageNotificationSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1900
|
+
|
|
1901
|
+
declare const MessagePlusCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1902
|
+
|
|
1903
|
+
declare const MessagePlusSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1904
|
+
|
|
1905
|
+
declare const MessageQuestionCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1906
|
+
|
|
1907
|
+
declare const MessageQuestionSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1908
|
+
|
|
1909
|
+
declare const MessageSmileCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1910
|
+
|
|
1911
|
+
declare const MessageSmileSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1912
|
+
|
|
1913
|
+
declare const MessageSquare1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1914
|
+
|
|
1915
|
+
declare const MessageSquare2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1916
|
+
|
|
1917
|
+
declare const MessageTextCircle1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1918
|
+
|
|
1919
|
+
declare const MessageTextCircle2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1920
|
+
|
|
1921
|
+
declare const MessageTextSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1922
|
+
|
|
1923
|
+
declare const MessageTextSquare1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1924
|
+
|
|
1925
|
+
declare const MessageTextSquare2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1926
|
+
|
|
1927
|
+
declare const MessageXCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1928
|
+
|
|
1929
|
+
declare const MessageXSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1930
|
+
|
|
1931
|
+
declare const MicrophoneIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1932
|
+
|
|
1933
|
+
declare const Microphone1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1934
|
+
|
|
1935
|
+
declare const Microphone2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1936
|
+
|
|
1937
|
+
declare const MicrophoneOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1938
|
+
|
|
1939
|
+
declare const MicrophoneOff1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1940
|
+
|
|
1941
|
+
declare const MicrophoneOff2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1942
|
+
|
|
1943
|
+
declare const MicroscopeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1944
|
+
|
|
1945
|
+
declare const Minimize1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1946
|
+
|
|
1947
|
+
declare const Minimize2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1948
|
+
|
|
1949
|
+
declare const MinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1950
|
+
|
|
1951
|
+
declare const MinusCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1952
|
+
|
|
1953
|
+
declare const MinusSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1954
|
+
|
|
1955
|
+
declare const Modem1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1956
|
+
|
|
1957
|
+
declare const Modem2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1958
|
+
|
|
1959
|
+
declare const MonitorIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1960
|
+
|
|
1961
|
+
declare const Monitor1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1962
|
+
|
|
1963
|
+
declare const Monitor2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1964
|
+
|
|
1965
|
+
declare const Monitor3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1966
|
+
|
|
1967
|
+
declare const Monitor4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1968
|
+
|
|
1969
|
+
declare const Monitor5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1970
|
+
|
|
1971
|
+
declare const Moon1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1972
|
+
|
|
1973
|
+
declare const Moon2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1974
|
+
|
|
1975
|
+
declare const MoonEclipseIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1976
|
+
|
|
1977
|
+
declare const MoonStarIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1978
|
+
|
|
1979
|
+
declare const MouseIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1980
|
+
|
|
1981
|
+
declare const MoveIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1982
|
+
|
|
1983
|
+
declare const MusicNote1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1984
|
+
|
|
1985
|
+
declare const MusicNote2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1986
|
+
|
|
1987
|
+
declare const MusicNotePlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1988
|
+
|
|
1989
|
+
declare const NavigationPointer1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1990
|
+
|
|
1991
|
+
declare const NavigationPointer2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1992
|
+
|
|
1993
|
+
declare const NavigationPointerOff1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1994
|
+
|
|
1995
|
+
declare const NavigationPointerOff2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1996
|
+
|
|
1997
|
+
declare const NotificationBoxIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
1998
|
+
|
|
1999
|
+
declare const NotificationMessageIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2000
|
+
|
|
2001
|
+
declare const NotificationTextIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2002
|
+
|
|
2003
|
+
declare const OctagonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2004
|
+
|
|
2005
|
+
declare const PackageIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2006
|
+
|
|
2007
|
+
declare const PackageCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2008
|
+
|
|
2009
|
+
declare const PackageMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2010
|
+
|
|
2011
|
+
declare const PackagePlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2012
|
+
|
|
2013
|
+
declare const PackageSearchIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2014
|
+
|
|
2015
|
+
declare const PackageXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2016
|
+
|
|
2017
|
+
declare const PaintIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2018
|
+
|
|
2019
|
+
declare const PaintPourIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2020
|
+
|
|
2021
|
+
declare const PaletteIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2022
|
+
|
|
2023
|
+
declare const PaperclipIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2024
|
+
|
|
2025
|
+
declare const ParagraphSpacingIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2026
|
+
|
|
2027
|
+
declare const ParagraphWrapIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2028
|
+
|
|
2029
|
+
declare const PasscodeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2030
|
+
|
|
2031
|
+
declare const PasscodeLockIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2032
|
+
|
|
2033
|
+
declare const PassportIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2034
|
+
|
|
2035
|
+
declare const PauseCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2036
|
+
|
|
2037
|
+
declare const PauseSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2038
|
+
|
|
2039
|
+
declare const PenTool1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2040
|
+
|
|
2041
|
+
declare const PenTool2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2042
|
+
|
|
2043
|
+
declare const PenToolMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2044
|
+
|
|
2045
|
+
declare const PenToolPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2046
|
+
|
|
2047
|
+
declare const Pencil1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2048
|
+
|
|
2049
|
+
declare const Pencil2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2050
|
+
|
|
2051
|
+
declare const PencilLineIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2052
|
+
|
|
2053
|
+
declare const PentagonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2054
|
+
|
|
2055
|
+
declare const Percent1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2056
|
+
|
|
2057
|
+
declare const Percent2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2058
|
+
|
|
2059
|
+
declare const Percent3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2060
|
+
|
|
2061
|
+
declare const Perspective1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2062
|
+
|
|
2063
|
+
declare const Perspective2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2064
|
+
|
|
2065
|
+
declare const PhoneIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2066
|
+
|
|
2067
|
+
declare const Phone1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2068
|
+
|
|
2069
|
+
declare const Phone2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2070
|
+
|
|
2071
|
+
declare const PhoneCallIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2072
|
+
|
|
2073
|
+
declare const PhoneCall1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2074
|
+
|
|
2075
|
+
declare const PhoneCall2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2076
|
+
|
|
2077
|
+
declare const PhoneHangUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2078
|
+
|
|
2079
|
+
declare const PhoneIncomingIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2080
|
+
|
|
2081
|
+
declare const PhoneIncoming1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2082
|
+
|
|
2083
|
+
declare const PhoneIncoming2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2084
|
+
|
|
2085
|
+
declare const PhoneOutgoing1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2086
|
+
|
|
2087
|
+
declare const PhoneOutgoing2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2088
|
+
|
|
2089
|
+
declare const PhonePauseIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2090
|
+
|
|
2091
|
+
declare const PhonePlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2092
|
+
|
|
2093
|
+
declare const PhoneXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2094
|
+
|
|
2095
|
+
declare const PieChartIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2096
|
+
|
|
2097
|
+
declare const PieChart1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2098
|
+
|
|
2099
|
+
declare const PieChart2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2100
|
+
|
|
2101
|
+
declare const PieChart3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2102
|
+
|
|
2103
|
+
declare const PieChart4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2104
|
+
|
|
2105
|
+
declare const PiggyBank1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2106
|
+
|
|
2107
|
+
declare const PiggyBank2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2108
|
+
|
|
2109
|
+
declare const Pilcrow1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2110
|
+
|
|
2111
|
+
declare const Pilcrow2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2112
|
+
|
|
2113
|
+
declare const PilcrowSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2114
|
+
|
|
2115
|
+
declare const Pin1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2116
|
+
|
|
2117
|
+
declare const Pin2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2118
|
+
|
|
2119
|
+
declare const PlaceholderIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2120
|
+
|
|
2121
|
+
declare const PlaneIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2122
|
+
|
|
2123
|
+
declare const PlayIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2124
|
+
|
|
2125
|
+
declare const PlayCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2126
|
+
|
|
2127
|
+
declare const PlaySquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2128
|
+
|
|
2129
|
+
declare const PlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2130
|
+
|
|
2131
|
+
declare const PlusCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2132
|
+
|
|
2133
|
+
declare const PlusSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2134
|
+
|
|
2135
|
+
declare const PodcastIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2136
|
+
|
|
2137
|
+
declare const Power1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2138
|
+
|
|
2139
|
+
declare const Power2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2140
|
+
|
|
2141
|
+
declare const Power3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2142
|
+
|
|
2143
|
+
declare const PresentationChart1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2144
|
+
|
|
2145
|
+
declare const PresentationChart2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2146
|
+
|
|
2147
|
+
declare const PresentationChart3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2148
|
+
|
|
2149
|
+
declare const PrinterIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2150
|
+
|
|
2151
|
+
declare const PuzzlePieceIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2152
|
+
|
|
2153
|
+
declare const PuzzlePiece1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2154
|
+
|
|
2155
|
+
declare const PuzzlePiece2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2156
|
+
|
|
2157
|
+
declare const QrCodeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2158
|
+
|
|
2159
|
+
declare const QrCode1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2160
|
+
|
|
2161
|
+
declare const QrCode2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2162
|
+
|
|
2163
|
+
declare const ReceiptIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2164
|
+
|
|
2165
|
+
declare const ReceiptCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2166
|
+
|
|
2167
|
+
declare const RecordingIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2168
|
+
|
|
2169
|
+
declare const Recording1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2170
|
+
|
|
2171
|
+
declare const Recording2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2172
|
+
|
|
2173
|
+
declare const Recording3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2174
|
+
|
|
2175
|
+
declare const Reflect1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2176
|
+
|
|
2177
|
+
declare const Reflect2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2178
|
+
|
|
2179
|
+
declare const RefreshCcwIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2180
|
+
|
|
2181
|
+
declare const RefreshCcw1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2182
|
+
|
|
2183
|
+
declare const RefreshCcw2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2184
|
+
|
|
2185
|
+
declare const RefreshCcw3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2186
|
+
|
|
2187
|
+
declare const RefreshCcw4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2188
|
+
|
|
2189
|
+
declare const RefreshCcw5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2190
|
+
|
|
2191
|
+
declare const RefreshCwIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2192
|
+
|
|
2193
|
+
declare const RefreshCw1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2194
|
+
|
|
2195
|
+
declare const RefreshCw2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2196
|
+
|
|
2197
|
+
declare const RefreshCw3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2198
|
+
|
|
2199
|
+
declare const RefreshCw4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2200
|
+
|
|
2201
|
+
declare const RefreshCw5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2202
|
+
|
|
2203
|
+
declare const Repeat1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2204
|
+
|
|
2205
|
+
declare const Repeat2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2206
|
+
|
|
2207
|
+
declare const Repeat3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2208
|
+
|
|
2209
|
+
declare const Repeat4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2210
|
+
|
|
2211
|
+
declare const ReverseLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2212
|
+
|
|
2213
|
+
declare const ReverseRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2214
|
+
|
|
2215
|
+
declare const RightIndent1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2216
|
+
|
|
2217
|
+
declare const RightIndent2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2218
|
+
|
|
2219
|
+
declare const RocketIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2220
|
+
|
|
2221
|
+
declare const Rocket1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2222
|
+
|
|
2223
|
+
declare const Rocket2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2224
|
+
|
|
2225
|
+
declare const RollerBrushIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2226
|
+
|
|
2227
|
+
declare const RotateCcwIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2228
|
+
|
|
2229
|
+
declare const RouteIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2230
|
+
|
|
2231
|
+
declare const Rows1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2232
|
+
|
|
2233
|
+
declare const Rows2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2234
|
+
|
|
2235
|
+
declare const Rows3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2236
|
+
|
|
2237
|
+
declare const Rss1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2238
|
+
|
|
2239
|
+
declare const Rss2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2240
|
+
|
|
2241
|
+
declare const RulerIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2242
|
+
|
|
2243
|
+
declare const SafeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2244
|
+
|
|
2245
|
+
declare const Sale1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2246
|
+
|
|
2247
|
+
declare const Sale2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2248
|
+
|
|
2249
|
+
declare const Sale3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2250
|
+
|
|
2251
|
+
declare const Sale4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2252
|
+
|
|
2253
|
+
declare const SaveIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2254
|
+
|
|
2255
|
+
declare const Save1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2256
|
+
|
|
2257
|
+
declare const Save2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2258
|
+
|
|
2259
|
+
declare const Save3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2260
|
+
|
|
2261
|
+
declare const Scale1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2262
|
+
|
|
2263
|
+
declare const Scale2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2264
|
+
|
|
2265
|
+
declare const Scale3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2266
|
+
|
|
2267
|
+
declare const Scales1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2268
|
+
|
|
2269
|
+
declare const Scales2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2270
|
+
|
|
2271
|
+
declare const ScanIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2272
|
+
|
|
2273
|
+
declare const Scissors1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2274
|
+
|
|
2275
|
+
declare const Scissors2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2276
|
+
|
|
2277
|
+
declare const ScissorsCut1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2278
|
+
|
|
2279
|
+
declare const ScissorsCut2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2280
|
+
|
|
2281
|
+
declare const SearchLgIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2282
|
+
|
|
2283
|
+
declare const SearchMdIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2284
|
+
|
|
2285
|
+
declare const SearchRefractionIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2286
|
+
|
|
2287
|
+
declare const SearchSmIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2288
|
+
|
|
2289
|
+
declare const SendIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2290
|
+
|
|
2291
|
+
declare const Send1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2292
|
+
|
|
2293
|
+
declare const Send2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2294
|
+
|
|
2295
|
+
declare const Send3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2296
|
+
|
|
2297
|
+
declare const Server1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2298
|
+
|
|
2299
|
+
declare const Server2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2300
|
+
|
|
2301
|
+
declare const Server3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2302
|
+
|
|
2303
|
+
declare const Server4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2304
|
+
|
|
2305
|
+
declare const Server5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2306
|
+
|
|
2307
|
+
declare const Server6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2308
|
+
|
|
2309
|
+
declare const SettingsIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2310
|
+
|
|
2311
|
+
declare const Settings1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2312
|
+
|
|
2313
|
+
declare const Settings2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2314
|
+
|
|
2315
|
+
declare const Settings3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2316
|
+
|
|
2317
|
+
declare const Settings4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2318
|
+
|
|
2319
|
+
declare const ShareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2320
|
+
|
|
2321
|
+
declare const Share1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2322
|
+
|
|
2323
|
+
declare const Share2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2324
|
+
|
|
2325
|
+
declare const Share3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2326
|
+
|
|
2327
|
+
declare const Share4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2328
|
+
|
|
2329
|
+
declare const Share5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2330
|
+
|
|
2331
|
+
declare const Share6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2332
|
+
|
|
2333
|
+
declare const Share7Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2334
|
+
|
|
2335
|
+
declare const ShareArrowIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2336
|
+
|
|
2337
|
+
declare const Shield1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2338
|
+
|
|
2339
|
+
declare const Shield2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2340
|
+
|
|
2341
|
+
declare const Shield3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2342
|
+
|
|
2343
|
+
declare const ShieldDollarIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2344
|
+
|
|
2345
|
+
declare const ShieldOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2346
|
+
|
|
2347
|
+
declare const ShieldPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2348
|
+
|
|
2349
|
+
declare const ShieldTickIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2350
|
+
|
|
2351
|
+
declare const ShieldZapIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2352
|
+
|
|
2353
|
+
declare const ShoppingBag1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2354
|
+
|
|
2355
|
+
declare const ShoppingBag2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2356
|
+
|
|
2357
|
+
declare const ShoppingBag3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2358
|
+
|
|
2359
|
+
declare const ShoppingCart1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2360
|
+
|
|
2361
|
+
declare const ShoppingCart2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2362
|
+
|
|
2363
|
+
declare const ShoppingCart3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2364
|
+
|
|
2365
|
+
declare const Shuffle1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2366
|
+
|
|
2367
|
+
declare const Shuffle2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2368
|
+
|
|
2369
|
+
declare const Signal1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2370
|
+
|
|
2371
|
+
declare const Signal2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2372
|
+
|
|
2373
|
+
declare const Signal3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2374
|
+
|
|
2375
|
+
declare const SimcardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2376
|
+
|
|
2377
|
+
declare const SkewIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2378
|
+
|
|
2379
|
+
declare const SkipBackIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2380
|
+
|
|
2381
|
+
declare const SkipForwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2382
|
+
|
|
2383
|
+
declare const SlashCircle1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2384
|
+
|
|
2385
|
+
declare const SlashCircle2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2386
|
+
|
|
2387
|
+
declare const SlashDividerIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2388
|
+
|
|
2389
|
+
declare const SlashOctagonIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2390
|
+
|
|
2391
|
+
declare const Sliders1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2392
|
+
|
|
2393
|
+
declare const Sliders2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2394
|
+
|
|
2395
|
+
declare const Sliders3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2396
|
+
|
|
2397
|
+
declare const Sliders4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2398
|
+
|
|
2399
|
+
declare const Snowflake1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2400
|
+
|
|
2401
|
+
declare const Snowflake2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2402
|
+
|
|
2403
|
+
declare const SpacingHeight1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2404
|
+
|
|
2405
|
+
declare const SpacingHeight2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2406
|
+
|
|
2407
|
+
declare const SpacingWidth1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2408
|
+
|
|
2409
|
+
declare const SpacingWidth2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2410
|
+
|
|
2411
|
+
declare const Speaker1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2412
|
+
|
|
2413
|
+
declare const Speaker2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2414
|
+
|
|
2415
|
+
declare const Speaker3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2416
|
+
|
|
2417
|
+
declare const Speedometer1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2418
|
+
|
|
2419
|
+
declare const Speedometer2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2420
|
+
|
|
2421
|
+
declare const Speedometer3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2422
|
+
|
|
2423
|
+
declare const Speedometer4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2424
|
+
|
|
2425
|
+
declare const SpinnerIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2426
|
+
|
|
2427
|
+
declare const SquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2428
|
+
|
|
2429
|
+
declare const StandIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2430
|
+
|
|
2431
|
+
declare const Star1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2432
|
+
|
|
2433
|
+
declare const Star2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2434
|
+
|
|
2435
|
+
declare const Star3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2436
|
+
|
|
2437
|
+
declare const Star4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2438
|
+
|
|
2439
|
+
declare const Star5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2440
|
+
|
|
2441
|
+
declare const Star6Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2442
|
+
|
|
2443
|
+
declare const Star7Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2444
|
+
|
|
2445
|
+
declare const StarsIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2446
|
+
|
|
2447
|
+
declare const Stars1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2448
|
+
|
|
2449
|
+
declare const Stars2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2450
|
+
|
|
2451
|
+
declare const Stars3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2452
|
+
|
|
2453
|
+
declare const StickerCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2454
|
+
|
|
2455
|
+
declare const StickerSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2456
|
+
|
|
2457
|
+
declare const StopIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2458
|
+
|
|
2459
|
+
declare const StopCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2460
|
+
|
|
2461
|
+
declare const StopSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2462
|
+
|
|
2463
|
+
declare const Strikethrough1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2464
|
+
|
|
2465
|
+
declare const Strikethrough2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2466
|
+
|
|
2467
|
+
declare const StrikethroughSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2468
|
+
|
|
2469
|
+
declare const SubscriptIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2470
|
+
|
|
2471
|
+
declare const SunIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2472
|
+
|
|
2473
|
+
declare const SunSetting1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2474
|
+
|
|
2475
|
+
declare const SunSetting2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2476
|
+
|
|
2477
|
+
declare const SunSetting3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2478
|
+
|
|
2479
|
+
declare const SunriseIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2480
|
+
|
|
2481
|
+
declare const SunsetIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2482
|
+
|
|
2483
|
+
declare const SwitchHorizontal1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2484
|
+
|
|
2485
|
+
declare const SwitchHorizontal2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2486
|
+
|
|
2487
|
+
declare const SwitchVertical1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2488
|
+
|
|
2489
|
+
declare const SwitchVertical2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2490
|
+
|
|
2491
|
+
declare const TableIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2492
|
+
|
|
2493
|
+
declare const Tablet1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2494
|
+
|
|
2495
|
+
declare const Tablet2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2496
|
+
|
|
2497
|
+
declare const Tag1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2498
|
+
|
|
2499
|
+
declare const Tag2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2500
|
+
|
|
2501
|
+
declare const Tag3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2502
|
+
|
|
2503
|
+
declare const Target1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2504
|
+
|
|
2505
|
+
declare const Target2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2506
|
+
|
|
2507
|
+
declare const Target3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2508
|
+
|
|
2509
|
+
declare const Target4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2510
|
+
|
|
2511
|
+
declare const Target5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2512
|
+
|
|
2513
|
+
declare const TelescopeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2514
|
+
|
|
2515
|
+
declare const TerminalIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2516
|
+
|
|
2517
|
+
declare const TerminalBrowserIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2518
|
+
|
|
2519
|
+
declare const TerminalCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2520
|
+
|
|
2521
|
+
declare const TerminalSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2522
|
+
|
|
2523
|
+
declare const TextInputIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2524
|
+
|
|
2525
|
+
declare const Thermometer1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2526
|
+
|
|
2527
|
+
declare const Thermometer2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2528
|
+
|
|
2529
|
+
declare const Thermometer3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2530
|
+
|
|
2531
|
+
declare const ThermometerColdIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2532
|
+
|
|
2533
|
+
declare const ThermometerWarmIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2534
|
+
|
|
2535
|
+
declare const ThumbsDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2536
|
+
|
|
2537
|
+
declare const ThumbsUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2538
|
+
|
|
2539
|
+
declare const Ticket1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2540
|
+
|
|
2541
|
+
declare const Ticket2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2542
|
+
|
|
2543
|
+
declare const Toggle1LeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2544
|
+
|
|
2545
|
+
declare const Toggle1RightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2546
|
+
|
|
2547
|
+
declare const Toggle2LeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2548
|
+
|
|
2549
|
+
declare const Toggle2RightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2550
|
+
|
|
2551
|
+
declare const Toggle3LeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2552
|
+
|
|
2553
|
+
declare const Toggle3RightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2554
|
+
|
|
2555
|
+
declare const Tool1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2556
|
+
|
|
2557
|
+
declare const Tool2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2558
|
+
|
|
2559
|
+
declare const TrainIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2560
|
+
|
|
2561
|
+
declare const TramIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2562
|
+
|
|
2563
|
+
declare const TransformIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2564
|
+
|
|
2565
|
+
declare const Translate1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2566
|
+
|
|
2567
|
+
declare const Translate2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2568
|
+
|
|
2569
|
+
declare const TrashIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2570
|
+
|
|
2571
|
+
declare const Trash1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2572
|
+
|
|
2573
|
+
declare const Trash2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2574
|
+
|
|
2575
|
+
declare const Trash3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2576
|
+
|
|
2577
|
+
declare const Trash4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2578
|
+
|
|
2579
|
+
declare const TrendDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2580
|
+
|
|
2581
|
+
declare const TrendDown1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2582
|
+
|
|
2583
|
+
declare const TrendDown2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2584
|
+
|
|
2585
|
+
declare const TrendUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2586
|
+
|
|
2587
|
+
declare const TrendUp1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2588
|
+
|
|
2589
|
+
declare const TrendUp2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2590
|
+
|
|
2591
|
+
declare const TriangleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2592
|
+
|
|
2593
|
+
declare const Trophy1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2594
|
+
|
|
2595
|
+
declare const Trophy2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2596
|
+
|
|
2597
|
+
declare const Truck1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2598
|
+
|
|
2599
|
+
declare const Truck2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2600
|
+
|
|
2601
|
+
declare const Tv1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2602
|
+
|
|
2603
|
+
declare const Tv2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2604
|
+
|
|
2605
|
+
declare const Tv3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2606
|
+
|
|
2607
|
+
declare const Type1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2608
|
+
|
|
2609
|
+
declare const Type2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2610
|
+
|
|
2611
|
+
declare const TypeSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2612
|
+
|
|
2613
|
+
declare const TypeStrikethrough1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2614
|
+
|
|
2615
|
+
declare const TypeStrikethrough2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2616
|
+
|
|
2617
|
+
declare const Umbrella1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2618
|
+
|
|
2619
|
+
declare const Umbrella2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2620
|
+
|
|
2621
|
+
declare const Umbrella3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2622
|
+
|
|
2623
|
+
declare const Underline1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2624
|
+
|
|
2625
|
+
declare const Underline2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2626
|
+
|
|
2627
|
+
declare const UnderlineSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2628
|
+
|
|
2629
|
+
declare const Upload1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2630
|
+
|
|
2631
|
+
declare const Upload2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2632
|
+
|
|
2633
|
+
declare const Upload3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2634
|
+
|
|
2635
|
+
declare const Upload4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2636
|
+
|
|
2637
|
+
declare const UploadCloud1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2638
|
+
|
|
2639
|
+
declare const UploadCloud2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2640
|
+
|
|
2641
|
+
declare const UsbFlashDriveIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2642
|
+
|
|
2643
|
+
declare const UserIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2644
|
+
|
|
2645
|
+
declare const User1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2646
|
+
|
|
2647
|
+
declare const User2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2648
|
+
|
|
2649
|
+
declare const User3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2650
|
+
|
|
2651
|
+
declare const UserCheck1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2652
|
+
|
|
2653
|
+
declare const UserCheck2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2654
|
+
|
|
2655
|
+
declare const UserCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2656
|
+
|
|
2657
|
+
declare const UserDown1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2658
|
+
|
|
2659
|
+
declare const UserDown2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2660
|
+
|
|
2661
|
+
declare const UserEditIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2662
|
+
|
|
2663
|
+
declare const UserLeft1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2664
|
+
|
|
2665
|
+
declare const UserLeft2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2666
|
+
|
|
2667
|
+
declare const UserMinus1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2668
|
+
|
|
2669
|
+
declare const UserMinus2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2670
|
+
|
|
2671
|
+
declare const UserPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2672
|
+
|
|
2673
|
+
declare const UserPlus1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2674
|
+
|
|
2675
|
+
declare const UserPlus2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2676
|
+
|
|
2677
|
+
declare const UserRight1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2678
|
+
|
|
2679
|
+
declare const UserRight2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2680
|
+
|
|
2681
|
+
declare const UserSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2682
|
+
|
|
2683
|
+
declare const UserUp1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2684
|
+
|
|
2685
|
+
declare const UserUp2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2686
|
+
|
|
2687
|
+
declare const UserXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2688
|
+
|
|
2689
|
+
declare const UserX1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2690
|
+
|
|
2691
|
+
declare const UserX2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2692
|
+
|
|
2693
|
+
declare const UsersIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2694
|
+
|
|
2695
|
+
declare const Users1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2696
|
+
|
|
2697
|
+
declare const Users2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2698
|
+
|
|
2699
|
+
declare const Users3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2700
|
+
|
|
2701
|
+
declare const UsersCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2702
|
+
|
|
2703
|
+
declare const UsersDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2704
|
+
|
|
2705
|
+
declare const UsersEditIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2706
|
+
|
|
2707
|
+
declare const UsersLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2708
|
+
|
|
2709
|
+
declare const UsersMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2710
|
+
|
|
2711
|
+
declare const UsersPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2712
|
+
|
|
2713
|
+
declare const UsersRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2714
|
+
|
|
2715
|
+
declare const UsersUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2716
|
+
|
|
2717
|
+
declare const UsersXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2718
|
+
|
|
2719
|
+
declare const VariableIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2720
|
+
|
|
2721
|
+
declare const VideoRecorderIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2722
|
+
|
|
2723
|
+
declare const VideoRecorderOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2724
|
+
|
|
2725
|
+
declare const VirusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2726
|
+
|
|
2727
|
+
declare const VoicemailIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2728
|
+
|
|
2729
|
+
declare const VolumeMaxIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2730
|
+
|
|
2731
|
+
declare const VolumeMinIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2732
|
+
|
|
2733
|
+
declare const VolumeMinusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2734
|
+
|
|
2735
|
+
declare const VolumePlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2736
|
+
|
|
2737
|
+
declare const VolumeXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2738
|
+
|
|
2739
|
+
declare const Wallet1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2740
|
+
|
|
2741
|
+
declare const Wallet2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2742
|
+
|
|
2743
|
+
declare const Wallet3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2744
|
+
|
|
2745
|
+
declare const Wallet4Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2746
|
+
|
|
2747
|
+
declare const Wallet5Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2748
|
+
|
|
2749
|
+
declare const WatchCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2750
|
+
|
|
2751
|
+
declare const WatchSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2752
|
+
|
|
2753
|
+
declare const WavesIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2754
|
+
|
|
2755
|
+
declare const Webcam1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2756
|
+
|
|
2757
|
+
declare const Webcam2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2758
|
+
|
|
2759
|
+
declare const WifiIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2760
|
+
|
|
2761
|
+
declare const WifiOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2762
|
+
|
|
2763
|
+
declare const Wind1Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2764
|
+
|
|
2765
|
+
declare const Wind2Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2766
|
+
|
|
2767
|
+
declare const Wind3Icon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2768
|
+
|
|
2769
|
+
declare const XIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2770
|
+
|
|
2771
|
+
declare const XCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2772
|
+
|
|
2773
|
+
declare const XCloseIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2774
|
+
|
|
2775
|
+
declare const XSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2776
|
+
|
|
2777
|
+
declare const YoutubeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2778
|
+
|
|
2779
|
+
declare const ZapIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2780
|
+
|
|
2781
|
+
declare const ZapCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2782
|
+
|
|
2783
|
+
declare const ZapFastIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2784
|
+
|
|
2785
|
+
declare const ZapOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2786
|
+
|
|
2787
|
+
declare const ZapSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2788
|
+
|
|
2789
|
+
declare const ZoomInIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2790
|
+
|
|
2791
|
+
declare const ZoomOutIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
2792
|
+
|
|
2793
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityHeartIcon, ActivityIcon, AirplayIcon, AirpodsIcon, AlarmClockCheckIcon, AlarmClockIcon, AlarmClockMinusIcon, AlarmClockOffIcon, AlarmClockPlusIcon, AlertCircleIcon, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertHexagonIcon, AlertOctagonIcon, AlertSquareIcon, AlertTriangleIcon, AlignBottom1Icon, AlignBottom2Icon, AlignCenterIcon, AlignHorizontalCentre1Icon, AlignHorizontalCentre2Icon, AlignJustifyIcon, AlignLeft1Icon, AlignLeft2Icon, AlignLeftIcon, AlignRight1Icon, AlignRight2Icon, AlignRightIcon, AlignTopArrow1Icon, AlignTopArrow2Icon, AlignVerticalCenter1Icon, AlignVerticalCenter2Icon, AnchorIcon, AnnotationAlertIcon, AnnotationCheckIcon, AnnotationDotsIcon, AnnotationHeartIcon, AnnotationIcon, AnnotationInfoIcon, AnnotationPlusIcon, AnnotationQuestionIcon, AnnotationXIcon, Announcement1Icon, Announcement2Icon, Announcement3Icon, AppIntegrationIcon, ArchiveIcon, ArrowBlockDownIcon, ArrowBlockLeftIcon, ArrowBlockRightIcon, ArrowBlockUpIcon, ArrowCircleBrokenDownIcon, ArrowCircleBrokenDownLeftIcon, ArrowCircleBrokenDownRightIcon, ArrowCircleBrokenLeftIcon, ArrowCircleBrokenRightIcon, ArrowCircleBrokenUpIcon, ArrowCircleBrokenUpLeftIcon, ArrowCircleBrokenUpRightIcon, ArrowCircleDownIcon, ArrowCircleDownLeftIcon, ArrowCircleDownRightIcon, ArrowCircleLeftIcon, ArrowCircleRightIcon, ArrowCircleUpIcon, ArrowCircleUpLeftIcon, ArrowCircleUpRightIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowNarrowDownIcon, ArrowNarrowDownLeftIcon, ArrowNarrowDownRightIcon, ArrowNarrowLeftIcon, ArrowNarrowRightIcon, ArrowNarrowUpIcon, ArrowNarrowUpLeftIcon, ArrowNarrowUpRightIcon, ArrowRightIcon, ArrowSquareDownIcon, ArrowSquareDownLeftIcon, ArrowSquareDownRightIcon, ArrowSquareLeftIcon, ArrowSquareRightIcon, ArrowSquareUpIcon, ArrowSquareUpLeftIcon, ArrowSquareUpRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, ArrowsDownIcon, ArrowsLeftIcon, ArrowsRightIcon, ArrowsTriangleIcon, ArrowsUpIcon, Asterisk1Icon, Asterisk2Icon, AtSignIcon, Atom1Icon, Atom2Icon, Attachment1Icon, Attachment2Icon, AttachmentIcon, Avatar, Award1Icon, Award2Icon, Award3Icon, Award4Icon, Award5Icon, BackpackIcon, Badge, BadgeProps, BankIcon, BankNote1Icon, BankNote2Icon, BankNote3Icon, BarChart11Icon, BarChart12Icon, BarChart1Icon, BarChart2Icon, BarChart3Icon, BarChart4Icon, BarChart5Icon, BarChart6Icon, BarChart7Icon, BarChart8Icon, BarChart9Icon, BarChartCircle1Icon, BarChartCircle2Icon, BarChartCircle3Icon, BarChartSquare1Icon, BarChartSquare2Icon, BarChartSquare3Icon, BarChartSquareDownIcon, BarChartSquareMinusIcon, BarChartSquarePlusIcon, BarChartSquareUpIcon, BarLineChartIcon, BatteryCharging1Icon, BatteryCharging2Icon, BatteryEmptyIcon, BatteryFullIcon, BatteryLowIcon, BatteryMidIcon, Beaker1Icon, Beaker2Icon, Bell1Icon, Bell2Icon, Bell3Icon, Bell4Icon, BellIcon, BellMinusIcon, BellOff1Icon, BellOff2Icon, BellOff3Icon, BellPlusIcon, BellRinging1Icon, BellRinging2Icon, BellRinging3Icon, BellRinging4Icon, BezierCurve1Icon, BezierCurve2Icon, BezierCurve3Icon, BluetoothConnectIcon, BluetoothOffIcon, BluetoothOnIcon, BluetoothSignalIcon, Bold1Icon, Bold2Icon, BoldSquareIcon, BookClosedIcon, BookOpen1Icon, BookOpen2Icon, BookmarkAddIcon, BookmarkCheckIcon, BookmarkIcon, BookmarkMinusIcon, BookmarkXIcon, BoxIcon, BracketsCheckIcon, BracketsEllipsesIcon, BracketsIcon, BracketsMinusIcon, BracketsPlusIcon, BracketsSlashIcon, BracketsXIcon, Briefcase1Icon, Briefcase2Icon, BrowserIcon, Brush1Icon, Brush2Icon, Brush3Icon, Building1Icon, Building2Icon, Building3Icon, Building4Icon, Building5Icon, Building6Icon, Building7Icon, Building8Icon, BusIcon, Button, ButtonProps, CalculatorIcon, Calendar, CalendarCheck1Icon, CalendarCheck2Icon, CalendarCheckIcon, CalendarDateIcon, CalendarHeart1Icon, CalendarHeart2Icon, CalendarIcon, CalendarMinus1Icon, CalendarMinus2Icon, CalendarPlus1Icon, CalendarPlus2Icon, CalendarPlusCornerIcon, CalendarPlusIcon, Camera1Icon, Camera2Icon, Camera3Icon, CameraIcon, CameraLensIcon, CameraOffIcon, CameraPlusIcon, Car1Icon, Car2Icon, Certificate1Icon, Certificate2Icon, ChartBreakoutCircleIcon, ChartBreakoutSquareIcon, CheckCircleBrokenIcon, CheckCircleIcon, CheckDone1Icon, CheckDone2Icon, CheckHeartIcon, CheckIcon, CheckSquareBrokenIcon, CheckSquareIcon, CheckVerified1Icon, CheckVerified2Icon, CheckVerified3Icon, Checkbox, ChevronDownDoubleIcon, ChevronDownIcon, ChevronLeftDoubleIcon, ChevronLeftIcon, ChevronRightDoubleIcon, ChevronRightIcon, ChevronSelectorHorizontalIcon, ChevronSelectorVerticalIcon, ChevronUpDoubleIcon, ChevronUpIcon, ChromeCastIcon, CircleCutIcon, CircleIcon, ClapperboardIcon, ClipboardAttachmentIcon, ClipboardCheckIcon, ClipboardDownloadIcon, ClipboardIcon, ClipboardMinusIcon, ClipboardPlusIcon, ClipboardXIcon, ClockCheckIcon, ClockFastForwardIcon, ClockIcon, ClockPlusIcon, ClockRefreshIcon, ClockRewindIcon, ClockSnoozeIcon, ClockStopwatchIcon, Cloud1Icon, Cloud2Icon, Cloud3Icon, CloudBlank1Icon, CloudBlank2Icon, CloudLightningIcon, CloudMoonIcon, CloudOffIcon, CloudRaining1Icon, CloudRaining2Icon, CloudRaining3Icon, CloudRaining4Icon, CloudRaining5Icon, CloudRaining6Icon, CloudSnowing1Icon, CloudSnowing2Icon, CloudSun1Icon, CloudSun2Icon, CloudSun3Icon, Code1Icon, Code2Icon, CodeBrowserIcon, CodeCircle1Icon, CodeCircle2Icon, CodeCircle3Icon, CodeSnippet1Icon, CodeSnippet2Icon, CodeSquare1Icon, CodeSquare2Icon, CodepenIcon, Coins1Icon, Coins2Icon, Coins3Icon, Coins4Icon, CoinsHandIcon, CoinsStacked1Icon, CoinsStacked2Icon, CoinsStacked3Icon, CoinsStacked4Icon, CoinsSwap1Icon, CoinsSwap2Icon, Colors1Icon, ColorsIcon, Columns1Icon, Columns2Icon, Columns3Icon, Command, CommandEmpty, CommandGroup, CommandIcon, CommandInput, CommandItem, CommandList, CommandLoading, CommandSeparator, Compass1Icon, Compass2Icon, Compass3Icon, CompassIcon, ContainerIcon, Contrast1Icon, Contrast2Icon, Contrast3Icon, Copy1Icon, Copy2Icon, Copy3Icon, Copy4Icon, Copy5Icon, Copy6Icon, Copy7Icon, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, CpuChip1Icon, CpuChip2Icon, CreditCard1Icon, CreditCard2Icon, CreditCardCheckIcon, CreditCardDownIcon, CreditCardDownloadIcon, CreditCardEditIcon, CreditCardLockIcon, CreditCardMinusIcon, CreditCardPlusIcon, CreditCardRefreshIcon, CreditCardSearchIcon, CreditCardShieldIcon, CreditCardUpIcon, CreditCardUploadIcon, CreditCardXIcon, Crop1Icon, Crop2Icon, Cryptocurrency1Icon, Cryptocurrency2Icon, Cryptocurrency3Icon, Cryptocurrency4Icon, Cube1Icon, Cube2Icon, Cube3Icon, Cube4Icon, CubeOutlineIcon, CurrencyBitcoinCircleIcon, CurrencyBitcoinIcon, CurrencyDollarCircleIcon, CurrencyDollarIcon, CurrencyEthereumCircleIcon, CurrencyEthereumIcon, CurrencyEuroCircleIcon, CurrencyEuroIcon, CurrencyPoundCircleIcon, CurrencyPoundIcon, CurrencyRubleCircleIcon, CurrencyRubleIcon, CurrencyRupeeCircleIcon, CurrencyRupeeIcon, CurrencyYenCircleIcon, CurrencyYenIcon, Cursor1Icon, Cursor2Icon, Cursor3Icon, Cursor4Icon, CursorBoxIcon, CursorClick1Icon, CursorClick2Icon, CursorClickIcon, DataIcon, Database1Icon, Database2Icon, Database3Icon, Dataflow1Icon, Dataflow2Icon, Dataflow3Icon, Dataflow4Icon, DeleteIcon, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Diamond1Icon, Diamond2Icon, Dice1Icon, Dice2Icon, Dice3Icon, Dice4Icon, Dice5Icon, Dice6Icon, Disc1Icon, Disc2Icon, DistributeSpacingHorizontalIcon, DistributeSpacingVerticalIcon, Divide1Icon, Divide2Icon, Divide3Icon, DividerIcon, Dotpoints1Icon, Dotpoints2Icon, DotsGridIcon, DotsHorizontalIcon, DotsVerticalIcon, Download1Icon, Download2Icon, Download3Icon, Download4Icon, DownloadCloud1Icon, DownloadCloud2Icon, DownloadIcon, DropIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Droplets1Icon, Droplets2Icon, Droplets3Icon, DropperIcon, Edit1Icon, Edit2Icon, Edit3Icon, Edit4Icon, Edit5Icon, EditIcon, EqualIcon, EqualNotIcon, EraserIcon, Expand1Icon, Expand2Icon, Expand3Icon, Expand4Icon, Expand5Icon, Expand6Icon, ExpandIcon, EyeIcon, EyeOffIcon, FaceContentIcon, FaceFrownIcon, FaceHappyIcon, FaceIdIcon, FaceIdSquareIcon, FaceNeutralIcon, FaceSadIcon, FaceSmileIcon, FaceWinkIcon, FastBackwardIcon, FastForwardIcon, FeatherIcon, FigmaIcon, File1Icon, File2Icon, File3Icon, File4Icon, File5Icon, File6Icon, File7Icon, FileAttachment1Icon, FileAttachment2Icon, FileAttachment3Icon, FileAttachment4Icon, FileAttachment5Icon, FileCheck1Icon, FileCheck2Icon, FileCheck3Icon, FileCode1Icon, FileCode2Icon, FileDownload1Icon, FileDownload2Icon, FileDownload3Icon, FileHeart1Icon, FileHeart2Icon, FileHeart3Icon, FileLock1Icon, FileLock2Icon, FileLock3Icon, FileMinus1Icon, FileMinus2Icon, FileMinus3Icon, FilePlus1Icon, FilePlus2Icon, FilePlus3Icon, FileQuestion1Icon, FileQuestion2Icon, FileQuestion3Icon, FileQuestionIcon, FileSearch1Icon, FileSearch2Icon, FileSearch3Icon, FileShield1Icon, FileShield2Icon, FileShield3Icon, FileX1Icon, FileX2Icon, FileX3Icon, Film1Icon, Film2Icon, Film3Icon, FilterButton, FilterFunnel1Icon, FilterFunnel2Icon, FilterLinesIcon, Fingerprint2Icon, Fingerprint3Icon, Fingerprint4Icon, Flag1Icon, Flag2Icon, Flag3Icon, Flag4Icon, Flag5Icon, Flag6Icon, FlashIcon, FlashOffIcon, FlexAlignBottomIcon, FlexAlignLeftIcon, FlexAlignRightIcon, FlexAlignTopIcon, FlipBackwardIcon, FlipForwardIcon, FolderCheckIcon, FolderClosedIcon, FolderCodeIcon, FolderDownloadIcon, FolderIcon, FolderLockIcon, FolderMinusIcon, FolderMoveIcon, FolderPlusIcon, FolderQuestionIcon, FolderSearchIcon, FolderShieldIcon, FolderXIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FramerIcon, GamingPad1Icon, GamingPad2Icon, Gift1Icon, Gift2Icon, GitBranch1Icon, GitBranch2Icon, GitCommitIcon, GitMergeIcon, GitPullRequestIcon, Glasses1Icon, Glasses2Icon, Globe11Icon, Globe1Icon, Globe21Icon, Globe2Icon, Globe3Icon, Globe4Icon, Globe5Icon, Globe6Icon, GoogleChromeIcon, GraduationHat1Icon, GraduationHat2Icon, Grid1Icon, Grid2Icon, Grid3Icon, GridDotsBlankIcon, GridDotsBottomIcon, GridDotsHorizontalCenterIcon, GridDotsLeftIcon, GridDotsOuterIcon, GridDotsRightIcon, GridDotsTopIcon, GridDotsVerticalCenterIcon, HandIcon, HardDriveIcon, Hash1Icon, Hash2Icon, Heading1Icon, Heading2Icon, HeadingSquareIcon, Headphones1Icon, Headphones2Icon, HeartCircleIcon, HeartHandIcon, HeartHexagonIcon, HeartIcon, HeartOctagonIcon, HeartRoundedIcon, HeartSquareIcon, HeartsIcon, HelpCircleIcon, HelpHexagonIcon, HelpOctagonIcon, HelpSquareIcon, Hexagon1Icon, Hexagon2Icon, Home1Icon, Home2Icon, Home3Icon, Home4Icon, Home5Icon, HomeIcon, HomeLineIcon, HomeSmileIcon, HorizontalBarChart1Icon, HorizontalBarChart2Icon, HorizontalBarChart3Icon, Hourglass1Icon, Hourglass2Icon, Hourglass3Icon, Hurricane1Icon, Hurricane2Icon, Hurricane3Icon, Image1Icon, Image2Icon, Image3Icon, Image4Icon, Image5Icon, ImageCheckIcon, ImageDownIcon, ImageIcon, ImageIndentLeftIcon, ImageIndentRightIcon, ImageLeftIcon, ImagePlusIcon, ImageRightIcon, ImageUpIcon, ImageUserCheckIcon, ImageUserDownIcon, ImageUserIcon, ImageUserLeftIcon, ImageUserPlusIcon, ImageUserRightIcon, ImageUserUpIcon, ImageUserXIcon, ImageXIcon, Inbox1Icon, Inbox2Icon, InfinityIcon, InfoCircleIcon, InfoHexagonIcon, InfoOctagonIcon, InfoSquareIcon, Input, IntersectCircleIcon, IntersectSquareIcon, Italic1Icon, Italic2Icon, ItalicSquareIcon, Key1Icon, Key2Icon, Keyboard1Icon, Keyboard2Icon, Label, Laptop1Icon, Laptop2Icon, LayerSingleIcon, LayersThree1Icon, LayersThree2Icon, LayersTwo1Icon, LayersTwo2Icon, LayoutAlt1Icon, LayoutAlt2Icon, LayoutAlt3Icon, LayoutAlt4Icon, LayoutBottomIcon, LayoutGrid1Icon, LayoutGrid2Icon, LayoutLeftIcon, LayoutRightIcon, LayoutTopIcon, LeftIndent1Icon, LeftIndent2Icon, LetterSpacing1Icon, LetterSpacing2Icon, LifeBuoy1Icon, LifeBuoy2Icon, Lightbulb1Icon, Lightbulb2Icon, Lightbulb3Icon, Lightbulb4Icon, Lightbulb5Icon, LightbulbIcon, Lightning1Icon, Lightning2Icon, LineChartDown1Icon, LineChartDown2Icon, LineChartDown3Icon, LineChartDown4Icon, LineChartDown5Icon, LineChartUp1Icon, LineChartUp2Icon, LineChartUp3Icon, LineChartUp4Icon, LineChartUp5Icon, LineHeightIcon, Link1Icon, Link2Icon, Link3Icon, Link4Icon, Link5Icon, LinkBroken1Icon, LinkBroken2Icon, LinkExternal1Icon, LinkExternal2Icon, LinkIcon, ListIcon, Loading1Icon, Loading2Icon, Loading3Icon, Lock1Icon, Lock2Icon, Lock3Icon, Lock4Icon, LockIcon, LockKeyholeCircleIcon, LockKeyholeSquareIcon, LockUnlocked1Icon, LockUnlocked2Icon, LockUnlocked3Icon, LockUnlocked4Icon, LogIn1Icon, LogIn2Icon, LogIn3Icon, LogIn4Icon, LogInIcon, LogOut1Icon, LogOut2Icon, LogOut3Icon, LogOut4Icon, Luggage1Icon, Luggage2Icon, Luggage3Icon, MagicWand1Icon, MagicWand2Icon, MagicWandIcon, Mail1Icon, Mail2Icon, Mail3Icon, Mail4Icon, Mail5Icon, MailIcon, MailNotificationIcon, Map1Icon, Map2Icon, MarkIcon, MarkerPin1Icon, MarkerPin2Icon, MarkerPin3Icon, MarkerPin4Icon, MarkerPin5Icon, MarkerPin6Icon, Maximize1Icon, Maximize2Icon, MedicalCircleIcon, MedicalCrossIcon, MedicalSquareIcon, Menu1Icon, Menu2Icon, Menu3Icon, Menu4Icon, Menu5Icon, MenuIcon, MessageAlertCircleIcon, MessageAlertSquareIcon, MessageChatCircleIcon, MessageChatSquareIcon, MessageCheckCircleIcon, MessageCheckSquareIcon, MessageCircle1Icon, MessageCircle2Icon, MessageDotsCircleIcon, MessageDotsSquareIcon, MessageHeartCircleIcon, MessageHeartSquareIcon, MessageNotificationCircleIcon, MessageNotificationSquareIcon, MessagePlusCircleIcon, MessagePlusSquareIcon, MessageQuestionCircleIcon, MessageQuestionSquareIcon, MessageSmileCircleIcon, MessageSmileSquareIcon, MessageSquare1Icon, MessageSquare2Icon, MessageTextCircle1Icon, MessageTextCircle2Icon, MessageTextSquare1Icon, MessageTextSquare2Icon, MessageTextSquareIcon, MessageXCircleIcon, MessageXSquareIcon, Microphone1Icon, Microphone2Icon, MicrophoneIcon, MicrophoneOff1Icon, MicrophoneOff2Icon, MicrophoneOffIcon, MicroscopeIcon, Minimize1Icon, Minimize2Icon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modem1Icon, Modem2Icon, Monitor1Icon, Monitor2Icon, Monitor3Icon, Monitor4Icon, Monitor5Icon, MonitorIcon, Moon1Icon, Moon2Icon, MoonEclipseIcon, MoonStarIcon, MouseIcon, MoveIcon, MusicNote1Icon, MusicNote2Icon, MusicNotePlusIcon, NavigationPointer1Icon, NavigationPointer2Icon, NavigationPointerOff1Icon, NavigationPointerOff2Icon, NotificationBoxIcon, NotificationMessageIcon, NotificationTextIcon, OctagonIcon, PackageCheckIcon, PackageIcon, PackageMinusIcon, PackagePlusIcon, PackageSearchIcon, PackageXIcon, Pagination, PaginationPageChoice, PaintIcon, PaintPourIcon, PaletteIcon, PaperclipIcon, ParagraphSpacingIcon, ParagraphWrapIcon, PasscodeIcon, PasscodeLockIcon, PassportIcon, PauseCircleIcon, PauseSquareIcon, PenTool1Icon, PenTool2Icon, PenToolMinusIcon, PenToolPlusIcon, Pencil1Icon, Pencil2Icon, PencilLineIcon, PentagonIcon, Percent1Icon, Percent2Icon, Percent3Icon, Perspective1Icon, Perspective2Icon, Phone1Icon, Phone2Icon, PhoneCall1Icon, PhoneCall2Icon, PhoneCallIcon, PhoneHangUpIcon, PhoneIcon, PhoneIncoming1Icon, PhoneIncoming2Icon, PhoneIncomingIcon, PhoneOutgoing1Icon, PhoneOutgoing2Icon, PhonePauseIcon, PhonePlusIcon, PhoneXIcon, PieChart1Icon, PieChart2Icon, PieChart3Icon, PieChart4Icon, PieChartIcon, PiggyBank1Icon, PiggyBank2Icon, Pilcrow1Icon, Pilcrow2Icon, PilcrowSquareIcon, Pin1Icon, Pin2Icon, PlaceholderIcon, PlaneIcon, PlayCircleIcon, PlayIcon, PlaySquareIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PodcastIcon, Popover, PopoverContent, PopoverTrigger, Power1Icon, Power2Icon, Power3Icon, PresentationChart1Icon, PresentationChart2Icon, PresentationChart3Icon, PrinterIcon, PuzzlePiece1Icon, PuzzlePiece2Icon, PuzzlePieceIcon, QrCode1Icon, QrCode2Icon, QrCodeIcon, ReceiptCheckIcon, ReceiptIcon, Recording1Icon, Recording2Icon, Recording3Icon, RecordingIcon, Reflect1Icon, Reflect2Icon, RefreshCcw1Icon, RefreshCcw2Icon, RefreshCcw3Icon, RefreshCcw4Icon, RefreshCcw5Icon, RefreshCcwIcon, RefreshCw1Icon, RefreshCw2Icon, RefreshCw3Icon, RefreshCw4Icon, RefreshCw5Icon, RefreshCwIcon, Repeat1Icon, Repeat2Icon, Repeat3Icon, Repeat4Icon, ReverseLeftIcon, ReverseRightIcon, RightIndent1Icon, RightIndent2Icon, Rocket1Icon, Rocket2Icon, RocketIcon, RollerBrushIcon, RotateCcwIcon, RouteIcon, Rows1Icon, Rows2Icon, Rows3Icon, Rss1Icon, Rss2Icon, RulerIcon, SafeIcon, Sale1Icon, Sale2Icon, Sale3Icon, Sale4Icon, Save1Icon, Save2Icon, Save3Icon, SaveIcon, Scale1Icon, Scale2Icon, Scale3Icon, Scales1Icon, Scales2Icon, ScanIcon, Scissors1Icon, Scissors2Icon, ScissorsCut1Icon, ScissorsCut2Icon, SearchLgIcon, SearchMdIcon, SearchRefractionIcon, SearchSmIcon, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Send1Icon, Send2Icon, Send3Icon, SendIcon, Server1Icon, Server2Icon, Server3Icon, Server4Icon, Server5Icon, Server6Icon, Settings1Icon, Settings2Icon, Settings3Icon, Settings4Icon, SettingsIcon, Share1Icon, Share2Icon, Share3Icon, Share4Icon, Share5Icon, Share6Icon, Share7Icon, ShareArrowIcon, ShareIcon, Shield1Icon, Shield2Icon, Shield3Icon, ShieldDollarIcon, ShieldOffIcon, ShieldPlusIcon, ShieldTickIcon, ShieldZapIcon, ShoppingBag1Icon, ShoppingBag2Icon, ShoppingBag3Icon, ShoppingCart1Icon, ShoppingCart2Icon, ShoppingCart3Icon, Shuffle1Icon, Shuffle2Icon, Signal1Icon, Signal2Icon, Signal3Icon, SimcardIcon, SkewIcon, SkipBackIcon, SkipForwardIcon, SlashCircle1Icon, SlashCircle2Icon, SlashDividerIcon, SlashOctagonIcon, Sliders1Icon, Sliders2Icon, Sliders3Icon, Sliders4Icon, Snowflake1Icon, Snowflake2Icon, SpacingHeight1Icon, SpacingHeight2Icon, SpacingWidth1Icon, SpacingWidth2Icon, Speaker1Icon, Speaker2Icon, Speaker3Icon, Speedometer1Icon, Speedometer2Icon, Speedometer3Icon, Speedometer4Icon, SpinnerIcon, SquareIcon, StandIcon, Star1Icon, Star2Icon, Star3Icon, Star4Icon, Star5Icon, Star6Icon, Star7Icon, Stars1Icon, Stars2Icon, Stars3Icon, StarsIcon, StickerCircleIcon, StickerSquareIcon, StopCircleIcon, StopIcon, StopSquareIcon, Strikethrough1Icon, Strikethrough2Icon, StrikethroughSquareIcon, SubscriptIcon, SunIcon, SunSetting1Icon, SunSetting2Icon, SunSetting3Icon, SunriseIcon, SunsetIcon, Switch, SwitchHorizontal1Icon, SwitchHorizontal2Icon, SwitchVertical1Icon, SwitchVertical2Icon, Table, TableBody, TableCell, TableEmpty, TableHead, TableHeader, TableIcon, TableRow, Tablet1Icon, Tablet2Icon, Tabs, TabsContent, TabsList, TabsTrigger, Tag1Icon, Tag2Icon, Tag3Icon, Target1Icon, Target2Icon, Target3Icon, Target4Icon, Target5Icon, TelescopeIcon, TerminalBrowserIcon, TerminalCircleIcon, TerminalIcon, TerminalSquareIcon, TextInputIcon, Textarea, Thermometer1Icon, Thermometer2Icon, Thermometer3Icon, ThermometerColdIcon, ThermometerWarmIcon, ThumbsDownIcon, ThumbsUpIcon, Ticket1Icon, Ticket2Icon, Toast$1 as Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle1LeftIcon, Toggle1RightIcon, Toggle2LeftIcon, Toggle2RightIcon, Toggle3LeftIcon, Toggle3RightIcon, Tool1Icon, Tool2Icon, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TrainIcon, TramIcon, TransformIcon, Translate1Icon, Translate2Icon, Trash1Icon, Trash2Icon, Trash3Icon, Trash4Icon, TrashIcon, TrendDown1Icon, TrendDown2Icon, TrendDownIcon, TrendUp1Icon, TrendUp2Icon, TrendUpIcon, TriangleIcon, Trophy1Icon, Trophy2Icon, Truck1Icon, Truck2Icon, Tv1Icon, Tv2Icon, Tv3Icon, Type1Icon, Type2Icon, TypeSquareIcon, TypeStrikethrough1Icon, TypeStrikethrough2Icon, Umbrella1Icon, Umbrella2Icon, Umbrella3Icon, Underline1Icon, Underline2Icon, UnderlineSquareIcon, Upload1Icon, Upload2Icon, Upload3Icon, Upload4Icon, UploadCloud1Icon, UploadCloud2Icon, UsbFlashDriveIcon, User1Icon, User2Icon, User3Icon, UserCheck1Icon, UserCheck2Icon, UserCircleIcon, UserDown1Icon, UserDown2Icon, UserEditIcon, UserIcon, UserLeft1Icon, UserLeft2Icon, UserMinus1Icon, UserMinus2Icon, UserPlus1Icon, UserPlus2Icon, UserPlusIcon, UserRight1Icon, UserRight2Icon, UserSquareIcon, UserUp1Icon, UserUp2Icon, UserX1Icon, UserX2Icon, UserXIcon, Users1Icon, Users2Icon, Users3Icon, UsersCheckIcon, UsersDownIcon, UsersEditIcon, UsersIcon, UsersLeftIcon, UsersMinusIcon, UsersPlusIcon, UsersRightIcon, UsersUpIcon, UsersXIcon, VariableIcon, VideoRecorderIcon, VideoRecorderOffIcon, VirusIcon, VoicemailIcon, VolumeMaxIcon, VolumeMinIcon, VolumeMinusIcon, VolumePlusIcon, VolumeXIcon, Wallet1Icon, Wallet2Icon, Wallet3Icon, Wallet4Icon, Wallet5Icon, WatchCircleIcon, WatchSquareIcon, WavesIcon, Webcam1Icon, Webcam2Icon, WifiIcon, WifiOffIcon, Wind1Icon, Wind2Icon, Wind3Icon, XCircleIcon, XCloseIcon, XIcon, XSquareIcon, YoutubeIcon, ZapCircleIcon, ZapFastIcon, ZapIcon, ZapOffIcon, ZapSquareIcon, ZoomInIcon, ZoomOutIcon, buttonSizes, buttonVariants, iconButtonSizes, toast, useFormField, useToast };
|