nuvox 0.1.0
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/BUILDING-COMPONENTS.md +544 -0
- package/CONTRACT.md +255 -0
- package/LICENSE +28 -0
- package/README.md +99 -0
- package/THIRD-PARTY-NOTICES.md +52 -0
- package/dist/chunk-3F7OVF4J.js +1126 -0
- package/dist/chunk-3F7OVF4J.js.map +1 -0
- package/dist/context-menu-CBdFZq5L.d.cts +627 -0
- package/dist/context-menu-CBdFZq5L.d.ts +627 -0
- package/dist/index.cjs +896 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +58 -0
- package/dist/index.d.ts +58 -0
- package/dist/index.js +71 -0
- package/dist/index.js.map +1 -0
- package/dist/react/index.cjs +23038 -0
- package/dist/react/index.cjs.map +1 -0
- package/dist/react/index.css +5731 -0
- package/dist/react/index.css.map +1 -0
- package/dist/react/index.d.cts +1937 -0
- package/dist/react/index.d.ts +1937 -0
- package/dist/react/index.js +21500 -0
- package/dist/react/index.js.map +1 -0
- package/dist/themes/generated.css +1155 -0
- package/package.json +72 -0
|
@@ -0,0 +1,1937 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import react__default, { SVGProps, ComponentType } from 'react';
|
|
3
|
+
import { H as Placement, c as Alignment, Q as Size, g as BaseComponentProps, F as FieldProps, ak as BadgeCoreProps, al as AvatarCoreProps, am as SpinnerCoreProps, an as DividerCoreProps, ao as CardCoreProps, ap as AlertCoreProps, aq as ModalCoreProps, ab as ToastVariant, aa as ToastPosition, ar as ProgressCoreProps, as as TabsCoreProps, at as AccordionCoreProps, au as DropdownCoreProps, D as DropdownItemVariant, av as SelectCoreProps, L as SelectOptionItem, aw as SliderCoreProps, W as SliderValue, ax as ComboboxCoreProps, o as ComboboxOption, s as DatePickerCoreProps, a3 as TimePickerCoreProps, a4 as TimeValue, ay as TimePanelMode, m as ColorPickerCoreProps, k as CarouselCoreProps, a6 as TimelineCoreProps, a7 as TimelineItemCoreProps, q as CommandItem, I as PopoverCoreProps, az as FileUploadCoreProps, x as FileVerdict, aA as PaginationCoreProps, aB as BreadcrumbCoreProps, aC as SkeletonCoreProps, $ as TableCoreProps, X as SortDirection, aD as DrawerCoreProps, aE as ContextMenuCoreProps, K as RatingCoreProps, O as OTPInputCoreProps, G as PhoneInputCoreProps, j as CardVariant, i as CardPadding } from '../context-menu-CBdFZq5L.cjs';
|
|
4
|
+
export { aF as DEFAULT_ACCENT } from '../context-menu-CBdFZq5L.cjs';
|
|
5
|
+
|
|
6
|
+
interface TooltipCoreProps {
|
|
7
|
+
placement?: Placement;
|
|
8
|
+
align?: Alignment;
|
|
9
|
+
offset?: number;
|
|
10
|
+
/** ms of hover before showing. Keyboard focus shows immediately, no delay — see Tooltip.tsx. */
|
|
11
|
+
delay?: number;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
interface NuvoxProviderProps {
|
|
16
|
+
/** Theme name — shape/structure (radius, shadow, motion, glass/gradient/glow). Must be registered (see tokens/registry.ts). */
|
|
17
|
+
theme?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Either a registered accent name ("teal", "rose", ...) OR any raw
|
|
20
|
+
* CSS color ("#ff6600", "rgb(255 100 0)", "tomato", ...). A
|
|
21
|
+
* registered name uses the full designed scale (data-accent CSS
|
|
22
|
+
* mechanism); anything else is treated as a literal color and its
|
|
23
|
+
* hover/active/soft shades are derived via CSS color-mix() —
|
|
24
|
+
* no registration needed for a one-off brand color.
|
|
25
|
+
*/
|
|
26
|
+
accent?: string;
|
|
27
|
+
children: react__default.ReactNode;
|
|
28
|
+
/** Renders as this element instead of a div — useful at the document root. */
|
|
29
|
+
as?: keyof react__default.JSX.IntrinsicElements;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Sets data-theme and/or data-accent (or, for a raw color, inline
|
|
33
|
+
* --color-brand-* variables) on a wrapping element. Theme and accent
|
|
34
|
+
* are two independent axes — a theme controls shape (radius, shadow,
|
|
35
|
+
* motion, glass/gradient/glow), an accent controls brand color — and
|
|
36
|
+
* either one can be set without the other. Nesting one NuvoxProvider
|
|
37
|
+
* inside another (or setting `theme`/`accent` directly on a leaf
|
|
38
|
+
* component) overrides just that axis for everything inside it, via
|
|
39
|
+
* the CSS cascade. No resolveTheme() JS function is needed for
|
|
40
|
+
* in-tree components.
|
|
41
|
+
*
|
|
42
|
+
* A future portal-based component is the one case the cascade can't
|
|
43
|
+
* reach on its own, because it renders outside this element's DOM
|
|
44
|
+
* subtree — that's handled by ThemedPortal (see ThemedPortal.tsx),
|
|
45
|
+
* which currently mirrors data-theme/data-accent but NOT a raw
|
|
46
|
+
* color's inline style vars — worth fixing when the next portal
|
|
47
|
+
* component is built and needs to support raw-color overrides too.
|
|
48
|
+
*/
|
|
49
|
+
declare function NuvoxProvider({ theme, accent, children, as }: NuvoxProviderProps): react__default.JSX.Element;
|
|
50
|
+
/**
|
|
51
|
+
* Component-level override helper for shape (theme). A component
|
|
52
|
+
* that accepts a `theme?: string` prop wraps its own output with
|
|
53
|
+
* this instead of rendering raw JSX directly, so:
|
|
54
|
+
*
|
|
55
|
+
* <Button theme="cyberpunk" />
|
|
56
|
+
*
|
|
57
|
+
* gets Cyberpunk's shape regardless of the ambient theme, and a
|
|
58
|
+
* Button with no `theme` prop is untouched — it still inherits
|
|
59
|
+
* from whatever ancestor set data-theme, because it renders no
|
|
60
|
+
* data-theme attribute at all.
|
|
61
|
+
*/
|
|
62
|
+
declare function withThemeOverride(theme: string | undefined, children: react__default.ReactNode): string | number | bigint | boolean | Iterable<react__default.ReactNode> | Promise<string | number | bigint | boolean | react__default.ReactPortal | react__default.ReactElement<unknown, string | react__default.JSXElementConstructor<any>> | Iterable<react__default.ReactNode> | null | undefined> | react__default.JSX.Element | null | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* Component-level override helper for brand color. Same mechanism
|
|
65
|
+
* as withThemeOverride, but for the independent color axis — a
|
|
66
|
+
* component's `color?: string` prop (see BaseComponentProps) wraps
|
|
67
|
+
* with this:
|
|
68
|
+
*
|
|
69
|
+
* <Button color="teal" /> // registered accent
|
|
70
|
+
* <Button color="#ff6600" /> // raw CSS color, works the same way
|
|
71
|
+
*
|
|
72
|
+
* Either gets applied regardless of which theme is active or which
|
|
73
|
+
* accent/color is ambient, and doesn't touch shape at all. Which of
|
|
74
|
+
* the two paths is used is resolved inside NuvoxProvider, not here —
|
|
75
|
+
* this function doesn't need to know or care which one it is.
|
|
76
|
+
*/
|
|
77
|
+
declare function withAccentOverride(color: string | undefined, children: react__default.ReactNode): string | number | bigint | boolean | Iterable<react__default.ReactNode> | Promise<string | number | bigint | boolean | react__default.ReactPortal | react__default.ReactElement<unknown, string | react__default.JSXElementConstructor<any>> | Iterable<react__default.ReactNode> | null | undefined> | react__default.JSX.Element | null | undefined;
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* ============================================================
|
|
81
|
+
* THE FIX FOR THE #1 BUG FOUND IN THE OLD CODEBASE.
|
|
82
|
+
*
|
|
83
|
+
* Every component that portals to document.body (Popover, Modal,
|
|
84
|
+
* Toast, Tooltip, Dropdown, Select, Combobox, DatePicker, ...)
|
|
85
|
+
* escapes the DOM subtree that data-theme/data-accent cascade
|
|
86
|
+
* through.
|
|
87
|
+
*
|
|
88
|
+
* The old code re-solved this per component: walk up from an
|
|
89
|
+
* anchor element to the nearest [data-theme] ancestor, copy the
|
|
90
|
+
* attribute onto the portal node, and watch it with a
|
|
91
|
+
* MutationObserver in case the theme changes live. That fix was
|
|
92
|
+
* copy-pasted into 12 of 15 portal-using components — and
|
|
93
|
+
* missing from the other 3 (Toast, Tooltip, Kanban), which
|
|
94
|
+
* silently rendered in the wrong theme.
|
|
95
|
+
*
|
|
96
|
+
* ThemedPortal solves it exactly once, for BOTH independent axes
|
|
97
|
+
* (theme = shape, accent = brand color) — they can be set on
|
|
98
|
+
* different ancestor elements (e.g. theme at the app root, an
|
|
99
|
+
* accent override closer to one button), so each is tracked
|
|
100
|
+
* against its own nearest ancestor, not assumed to share one.
|
|
101
|
+
* Every future portal-based component renders through this
|
|
102
|
+
* instead of calling createPortal directly, and the bug class
|
|
103
|
+
* becomes structurally impossible to reintroduce — there's no
|
|
104
|
+
* second place to forget the fix in.
|
|
105
|
+
* ============================================================
|
|
106
|
+
*/
|
|
107
|
+
interface ThemedPortalProps {
|
|
108
|
+
/** Element inside the themed tree to read the ambient theme/accent from (e.g. the trigger button). */
|
|
109
|
+
anchorRef: react__default.RefObject<HTMLElement | null>;
|
|
110
|
+
children: react__default.ReactNode;
|
|
111
|
+
/** Defaults to document.body. */
|
|
112
|
+
container?: Element;
|
|
113
|
+
}
|
|
114
|
+
declare function ThemedPortal({ anchorRef, children, container }: ThemedPortalProps): react__default.ReactPortal | null;
|
|
115
|
+
|
|
116
|
+
type ButtonVariant = "solid" | "outline" | "ghost" | "soft" | "danger";
|
|
117
|
+
type ButtonSize = Size;
|
|
118
|
+
interface ButtonProps$1 {
|
|
119
|
+
variant?: ButtonVariant;
|
|
120
|
+
size?: ButtonSize;
|
|
121
|
+
disabled?: boolean;
|
|
122
|
+
loading?: boolean;
|
|
123
|
+
fullWidth?: boolean;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
interface ButtonProps extends Omit<react__default.ButtonHTMLAttributes<HTMLButtonElement>, "color">, ButtonProps$1, BaseComponentProps {
|
|
127
|
+
/**
|
|
128
|
+
* Anything renderable — a Nuvox icon, a Lucide icon, a raw
|
|
129
|
+
* <svg>, an emoji. Deliberately typed as ReactNode, not as a
|
|
130
|
+
* Nuvox-specific icon type. Button doesn't clone the element,
|
|
131
|
+
* doesn't inject a size prop, doesn't inspect it at all — it
|
|
132
|
+
* just renders it in a wrapping span. This is the fix for the
|
|
133
|
+
* old codebase's icon-coupling problem: the mistake wasn't
|
|
134
|
+
* having an icon package, it was components knowing too much
|
|
135
|
+
* about how that specific package's icons worked internally.
|
|
136
|
+
*/
|
|
137
|
+
iconLeft?: react__default.ReactNode;
|
|
138
|
+
iconRight?: react__default.ReactNode;
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Every interactive component forwards its ref. The old codebase
|
|
142
|
+
* did this in 1 of 41 components (Slider only) — every other
|
|
143
|
+
* component, including Button and Input, couldn't be focused
|
|
144
|
+
* imperatively or registered with a form library. That's fixed
|
|
145
|
+
* here structurally: this is the template every future
|
|
146
|
+
* interactive component copies.
|
|
147
|
+
*/
|
|
148
|
+
declare const Button: react__default.ForwardRefExoticComponent<ButtonProps & react__default.RefAttributes<HTMLButtonElement>>;
|
|
149
|
+
|
|
150
|
+
interface InputCoreProps extends FieldProps {
|
|
151
|
+
hasPrefix?: boolean;
|
|
152
|
+
hasSuffix?: boolean;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
interface InputProps extends Omit<react__default.InputHTMLAttributes<HTMLInputElement>, "size" | "color" | "prefix">, Omit<InputCoreProps, "hasPrefix" | "hasSuffix">, BaseComponentProps {
|
|
156
|
+
label?: string;
|
|
157
|
+
helperText?: string;
|
|
158
|
+
errorText?: string;
|
|
159
|
+
/**
|
|
160
|
+
* Anything renderable, same philosophy as Button's iconLeft/
|
|
161
|
+
* iconRight (see react/Button.tsx) — Input doesn't inspect or
|
|
162
|
+
* clone what's passed, it just renders it in a slot. No built-in
|
|
163
|
+
* per-`type` icon injection: that coupled the component to a
|
|
164
|
+
* fixed icon set internally in the old codebase.
|
|
165
|
+
*/
|
|
166
|
+
prefix?: react__default.ReactNode;
|
|
167
|
+
suffix?: react__default.ReactNode;
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* Category B's ref-forwarding requirement (BUILDING-COMPONENTS.md)
|
|
171
|
+
* is non-negotiable here: this is exactly the component category
|
|
172
|
+
* where the old codebase's 1-of-41 ref problem cost real pain
|
|
173
|
+
* (react-hook-form register(), imperative .focus() on validation
|
|
174
|
+
* error). See react/Button.tsx for the template this follows.
|
|
175
|
+
*/
|
|
176
|
+
declare const Input: react__default.ForwardRefExoticComponent<InputProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
177
|
+
|
|
178
|
+
interface TextareaCoreProps extends FieldProps {
|
|
179
|
+
autoGrow?: boolean;
|
|
180
|
+
maxLength?: number;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
interface TextareaProps extends Omit<react__default.TextareaHTMLAttributes<HTMLTextAreaElement>, "color">, TextareaCoreProps, BaseComponentProps {
|
|
184
|
+
label?: string;
|
|
185
|
+
helperText?: string;
|
|
186
|
+
errorText?: string;
|
|
187
|
+
/** Caps how tall autoGrow will stretch the textarea, in rows. */
|
|
188
|
+
maxRows?: number;
|
|
189
|
+
/** Shows a `n / maxLength` counter — requires `maxLength` to be set. */
|
|
190
|
+
showCount?: boolean;
|
|
191
|
+
}
|
|
192
|
+
declare const Textarea: react__default.ForwardRefExoticComponent<TextareaProps & react__default.RefAttributes<HTMLTextAreaElement>>;
|
|
193
|
+
|
|
194
|
+
interface CheckboxCoreProps extends FieldProps {
|
|
195
|
+
indeterminate?: boolean;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
interface CheckboxProps extends Omit<react__default.InputHTMLAttributes<HTMLInputElement>, "size" | "color" | "type">, CheckboxCoreProps, BaseComponentProps {
|
|
199
|
+
label?: react__default.ReactNode;
|
|
200
|
+
helperText?: string;
|
|
201
|
+
errorText?: string;
|
|
202
|
+
}
|
|
203
|
+
declare const Checkbox: react__default.ForwardRefExoticComponent<CheckboxProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
204
|
+
|
|
205
|
+
type RadioCoreProps = FieldProps;
|
|
206
|
+
|
|
207
|
+
interface RadioProps extends Omit<react__default.InputHTMLAttributes<HTMLInputElement>, "size" | "color" | "type">, RadioCoreProps, BaseComponentProps {
|
|
208
|
+
label?: react__default.ReactNode;
|
|
209
|
+
helperText?: string;
|
|
210
|
+
errorText?: string;
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* A single radio input. Grouping multiple `Radio`s is done the same
|
|
214
|
+
* way native HTML does it — give them the same `name` — rather than
|
|
215
|
+
* a bespoke RadioGroup wrapper; see core/radio.ts for why that's a
|
|
216
|
+
* deliberate scope decision, not an oversight.
|
|
217
|
+
*/
|
|
218
|
+
declare const Radio: react__default.ForwardRefExoticComponent<RadioProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
219
|
+
|
|
220
|
+
type ToggleCoreProps = FieldProps;
|
|
221
|
+
|
|
222
|
+
interface ToggleProps extends Omit<react__default.InputHTMLAttributes<HTMLInputElement>, "size" | "color" | "type">, ToggleCoreProps, BaseComponentProps {
|
|
223
|
+
label?: react__default.ReactNode;
|
|
224
|
+
helperText?: string;
|
|
225
|
+
errorText?: string;
|
|
226
|
+
}
|
|
227
|
+
declare const Toggle: react__default.ForwardRefExoticComponent<ToggleProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
228
|
+
|
|
229
|
+
interface BadgeProps extends BadgeCoreProps, BaseComponentProps {
|
|
230
|
+
children?: react__default.ReactNode;
|
|
231
|
+
iconLeft?: react__default.ReactNode;
|
|
232
|
+
iconRight?: react__default.ReactNode;
|
|
233
|
+
/**
|
|
234
|
+
* Presence of this prop is what makes the badge dismissible/a
|
|
235
|
+
* chip — there's no separate `dismissible` boolean to keep in
|
|
236
|
+
* sync with it (Category A convention: derive booleans from what
|
|
237
|
+
* was actually passed rather than asking for both).
|
|
238
|
+
*/
|
|
239
|
+
onDismiss?: react__default.MouseEventHandler<HTMLButtonElement>;
|
|
240
|
+
}
|
|
241
|
+
declare const Badge: react__default.ForwardRefExoticComponent<BadgeProps & react__default.RefAttributes<HTMLSpanElement>>;
|
|
242
|
+
|
|
243
|
+
interface AvatarProps extends AvatarCoreProps, BaseComponentProps {
|
|
244
|
+
src?: string;
|
|
245
|
+
alt?: string;
|
|
246
|
+
/** Used for the initials fallback and the deterministic fallback color. */
|
|
247
|
+
name?: string;
|
|
248
|
+
onClick?: () => void;
|
|
249
|
+
}
|
|
250
|
+
declare const Avatar: react__default.ForwardRefExoticComponent<AvatarProps & react__default.RefAttributes<HTMLSpanElement>>;
|
|
251
|
+
|
|
252
|
+
interface SpinnerProps extends SpinnerCoreProps, BaseComponentProps {
|
|
253
|
+
}
|
|
254
|
+
declare const Spinner: react__default.ForwardRefExoticComponent<SpinnerProps & react__default.RefAttributes<HTMLSpanElement>>;
|
|
255
|
+
|
|
256
|
+
interface DividerProps extends DividerCoreProps, BaseComponentProps {
|
|
257
|
+
children?: react__default.ReactNode;
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
* CONTRACT.md's Rule 4 names Divider as the one legitimate
|
|
261
|
+
* ref-forwarding exemption. This implementation forwards anyway —
|
|
262
|
+
* not because the exemption is wrong, but because forwarding it too
|
|
263
|
+
* costs nothing and sidesteps re-litigating the "is this one of the
|
|
264
|
+
* exempt ones?" judgment call the rule was written to eliminate in
|
|
265
|
+
* the first place. A consumer that never needs the ref simply never
|
|
266
|
+
* uses it.
|
|
267
|
+
*/
|
|
268
|
+
declare const Divider: react__default.ForwardRefExoticComponent<DividerProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
269
|
+
|
|
270
|
+
interface CardProps extends CardCoreProps, BaseComponentProps {
|
|
271
|
+
children?: react__default.ReactNode;
|
|
272
|
+
header?: react__default.ReactNode;
|
|
273
|
+
footer?: react__default.ReactNode;
|
|
274
|
+
/** An <img>, <video>, or any custom media element — sized and cropped by the card, not by you. */
|
|
275
|
+
media?: react__default.ReactNode;
|
|
276
|
+
mediaPosition?: "top" | "bottom";
|
|
277
|
+
badge?: react__default.ReactNode;
|
|
278
|
+
onClick?: react__default.MouseEventHandler<HTMLDivElement>;
|
|
279
|
+
}
|
|
280
|
+
declare const Card: react__default.ForwardRefExoticComponent<CardProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
281
|
+
|
|
282
|
+
interface AlertProps extends AlertCoreProps, BaseComponentProps {
|
|
283
|
+
title?: react__default.ReactNode;
|
|
284
|
+
children?: react__default.ReactNode;
|
|
285
|
+
/** Overrides the default per-variant status icon. Pass `false` to hide the icon entirely. */
|
|
286
|
+
icon?: react__default.ReactNode | false;
|
|
287
|
+
/** Rendered at the end of the alert (a button, a link) — separate from the dismiss control. */
|
|
288
|
+
action?: react__default.ReactNode;
|
|
289
|
+
/** Presence is what makes the alert dismissible — see Badge/Card's onDismiss convention. */
|
|
290
|
+
onDismiss?: () => void;
|
|
291
|
+
}
|
|
292
|
+
declare const Alert: react__default.ForwardRefExoticComponent<AlertProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
293
|
+
|
|
294
|
+
interface ModalProps extends ModalCoreProps, BaseComponentProps {
|
|
295
|
+
open: boolean;
|
|
296
|
+
onClose: () => void;
|
|
297
|
+
title?: react__default.ReactNode;
|
|
298
|
+
children?: react__default.ReactNode;
|
|
299
|
+
footer?: react__default.ReactNode;
|
|
300
|
+
/** Explicit element to return focus to on close. Defaults to whatever was focused right before opening (almost always the button that opened it). */
|
|
301
|
+
triggerRef?: react__default.RefObject<HTMLElement | null>;
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* Modal doesn't have a natural "trigger element" of its own the way
|
|
305
|
+
* Tooltip does (the consumer manages `open` state from wherever they
|
|
306
|
+
* want) — `sentinelRef` is a zero-size marker rendered inline, right
|
|
307
|
+
* where `<Modal>` appears in the tree, purely so ThemedPortal has a
|
|
308
|
+
* real DOM node inside the themed subtree to read `data-theme`/
|
|
309
|
+
* `data-accent` from. It's the same reasoning ThemedPortal always
|
|
310
|
+
* needs an anchorRef for, just satisfied differently here than a
|
|
311
|
+
* component with a visible trigger.
|
|
312
|
+
*
|
|
313
|
+
* Ref forwarding (Rule 4) still applies here even though the ref
|
|
314
|
+
* needs to reach a node that only exists once portaled and is also
|
|
315
|
+
* used internally for the focus trap — same merged-ref pattern as
|
|
316
|
+
* Checkbox/Textarea's internally-needed refs, via useImperativeHandle.
|
|
317
|
+
*/
|
|
318
|
+
declare const Modal: react__default.ForwardRefExoticComponent<ModalProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
319
|
+
|
|
320
|
+
interface TooltipProps extends TooltipCoreProps, BaseComponentProps {
|
|
321
|
+
content: react__default.ReactNode;
|
|
322
|
+
/** A single element — Tooltip clones it to attach hover/focus handlers, a ref for positioning, and aria-describedby. */
|
|
323
|
+
children: react__default.ReactElement;
|
|
324
|
+
}
|
|
325
|
+
/**
|
|
326
|
+
* Hover AND focus both trigger it — a keyboard user tabbing to the
|
|
327
|
+
* trigger needs to see the tooltip too, not just a mouse user
|
|
328
|
+
* hovering it (BUILDING-COMPONENTS.md's Category C note on this
|
|
329
|
+
* exact point). Keyboard focus shows immediately; hover waits
|
|
330
|
+
* `delay` ms so tooltips don't flash on every incidental mouse pass.
|
|
331
|
+
*
|
|
332
|
+
* Ref forwarding (Rule 4) resolves to the trigger element — the same
|
|
333
|
+
* node Tooltip already needs internally for positioning, and the one
|
|
334
|
+
* a consumer would actually want (to focus/measure the trigger, not
|
|
335
|
+
* the transient tooltip bubble). It's merged three ways: the child's
|
|
336
|
+
* own existing ref (if any), Tooltip's internal triggerRef, and
|
|
337
|
+
* whatever ref was forwarded to Tooltip itself.
|
|
338
|
+
*/
|
|
339
|
+
declare const Tooltip: react__default.ForwardRefExoticComponent<TooltipProps & react__default.RefAttributes<HTMLElement>>;
|
|
340
|
+
|
|
341
|
+
interface ShowToastOptions {
|
|
342
|
+
variant?: ToastVariant;
|
|
343
|
+
title?: react__default.ReactNode;
|
|
344
|
+
description?: react__default.ReactNode;
|
|
345
|
+
/** ms before auto-dismiss. 0 = sticky. Default 4000. */
|
|
346
|
+
duration?: number;
|
|
347
|
+
action?: react__default.ReactNode;
|
|
348
|
+
}
|
|
349
|
+
interface ToastContextValue {
|
|
350
|
+
show: (options: ShowToastOptions) => string;
|
|
351
|
+
dismiss: (id: string) => void;
|
|
352
|
+
dismissAll: () => void;
|
|
353
|
+
}
|
|
354
|
+
/** Throws outside a ToastProvider — same "fail loudly, not silently" preference as the rest of the library. */
|
|
355
|
+
declare function useToast(): ToastContextValue;
|
|
356
|
+
interface ToastProviderProps extends BaseComponentProps {
|
|
357
|
+
children: react__default.ReactNode;
|
|
358
|
+
position?: ToastPosition;
|
|
359
|
+
}
|
|
360
|
+
declare function ToastProvider({ children, position, theme, color }: ToastProviderProps): react__default.JSX.Element;
|
|
361
|
+
|
|
362
|
+
interface ProgressProps extends ProgressCoreProps, BaseComponentProps {
|
|
363
|
+
/**
|
|
364
|
+
* Accessible name for the bar. A progressbar with no name is a
|
|
365
|
+
* WCAG failure, so if neither `label` nor a `labelledBy` is given
|
|
366
|
+
* and there's no visible label to point at, this falls back to a
|
|
367
|
+
* generic "Progress" — better than an unnamed meter.
|
|
368
|
+
*/
|
|
369
|
+
label?: string;
|
|
370
|
+
/** id of an external visible element that names this bar (instead of `label`). */
|
|
371
|
+
labelledBy?: string;
|
|
372
|
+
}
|
|
373
|
+
/**
|
|
374
|
+
* Determinate or indeterminate progress meter (row 7, Category A).
|
|
375
|
+
* Ref forwards to the `progressbar` element itself — the node a
|
|
376
|
+
* consumer would want to measure or observe — not the layout
|
|
377
|
+
* wrapper, following the same "ref goes to the meaningful element"
|
|
378
|
+
* choice Input makes (ref → the <input>, not the field wrapper).
|
|
379
|
+
*
|
|
380
|
+
* The fill width is set inline only when determinate; in the
|
|
381
|
+
* indeterminate state the width is owned entirely by a CSS keyframe
|
|
382
|
+
* animation, so no inline width is written (setting one would fight
|
|
383
|
+
* the animation).
|
|
384
|
+
*/
|
|
385
|
+
declare const Progress: react__default.ForwardRefExoticComponent<ProgressProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
386
|
+
|
|
387
|
+
interface TabsProps extends TabsCoreProps, BaseComponentProps {
|
|
388
|
+
/** Selected tab value (controlled). */
|
|
389
|
+
value?: string;
|
|
390
|
+
/** Initial selected tab value (uncontrolled). */
|
|
391
|
+
defaultValue?: string;
|
|
392
|
+
/** Fires with the newly selected value on every change. */
|
|
393
|
+
onValueChange?: (value: string) => void;
|
|
394
|
+
children?: react__default.ReactNode;
|
|
395
|
+
}
|
|
396
|
+
declare const Tabs: react__default.ForwardRefExoticComponent<TabsProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
397
|
+
interface TabListProps extends react__default.HTMLAttributes<HTMLDivElement> {
|
|
398
|
+
children?: react__default.ReactNode;
|
|
399
|
+
}
|
|
400
|
+
declare const TabList: react__default.ForwardRefExoticComponent<TabListProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
401
|
+
interface TabProps extends Omit<react__default.ButtonHTMLAttributes<HTMLButtonElement>, "value"> {
|
|
402
|
+
/** Identifies this tab and links it to the panel with the same value. */
|
|
403
|
+
value: string;
|
|
404
|
+
disabled?: boolean;
|
|
405
|
+
children?: react__default.ReactNode;
|
|
406
|
+
}
|
|
407
|
+
declare const Tab: react__default.ForwardRefExoticComponent<TabProps & react__default.RefAttributes<HTMLButtonElement>>;
|
|
408
|
+
interface TabPanelProps extends react__default.HTMLAttributes<HTMLDivElement> {
|
|
409
|
+
/** Links this panel to the tab with the same value. */
|
|
410
|
+
value: string;
|
|
411
|
+
/**
|
|
412
|
+
* Keep the panel mounted (just hidden) when inactive, so its
|
|
413
|
+
* internal state survives tab switches. Default false — inactive
|
|
414
|
+
* panels unmount, which is lighter and the common case.
|
|
415
|
+
*/
|
|
416
|
+
forceMount?: boolean;
|
|
417
|
+
children?: react__default.ReactNode;
|
|
418
|
+
}
|
|
419
|
+
declare const TabPanel: react__default.ForwardRefExoticComponent<TabPanelProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
420
|
+
|
|
421
|
+
interface AccordionCommonProps extends AccordionCoreProps, BaseComponentProps {
|
|
422
|
+
children?: react__default.ReactNode;
|
|
423
|
+
}
|
|
424
|
+
interface AccordionSingleProps extends AccordionCommonProps {
|
|
425
|
+
type?: "single";
|
|
426
|
+
/** Open item value (controlled). Empty string = nothing open. */
|
|
427
|
+
value?: string;
|
|
428
|
+
defaultValue?: string;
|
|
429
|
+
onValueChange?: (value: string) => void;
|
|
430
|
+
/** Allow closing the open item so all sections can be shut. Single mode only. */
|
|
431
|
+
collapsible?: boolean;
|
|
432
|
+
}
|
|
433
|
+
interface AccordionMultipleProps extends AccordionCommonProps {
|
|
434
|
+
type: "multiple";
|
|
435
|
+
/** Open item values (controlled). */
|
|
436
|
+
value?: string[];
|
|
437
|
+
defaultValue?: string[];
|
|
438
|
+
onValueChange?: (value: string[]) => void;
|
|
439
|
+
}
|
|
440
|
+
type AccordionProps = AccordionSingleProps | AccordionMultipleProps;
|
|
441
|
+
declare const Accordion: react__default.ForwardRefExoticComponent<AccordionProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
442
|
+
interface AccordionItemProps extends react__default.HTMLAttributes<HTMLDivElement> {
|
|
443
|
+
value: string;
|
|
444
|
+
disabled?: boolean;
|
|
445
|
+
children?: react__default.ReactNode;
|
|
446
|
+
}
|
|
447
|
+
declare const AccordionItem: react__default.ForwardRefExoticComponent<AccordionItemProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
448
|
+
interface AccordionTriggerProps extends react__default.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
449
|
+
/** Heading level to wrap the button in (WAI-ARIA requires a heading). Default 3. */
|
|
450
|
+
headingLevel?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
451
|
+
children?: react__default.ReactNode;
|
|
452
|
+
}
|
|
453
|
+
declare const AccordionTrigger: react__default.ForwardRefExoticComponent<AccordionTriggerProps & react__default.RefAttributes<HTMLButtonElement>>;
|
|
454
|
+
interface AccordionPanelProps extends react__default.HTMLAttributes<HTMLDivElement> {
|
|
455
|
+
/** Keep mounted (hidden) when closed, preserving internal state. Default false. */
|
|
456
|
+
forceMount?: boolean;
|
|
457
|
+
children?: react__default.ReactNode;
|
|
458
|
+
}
|
|
459
|
+
declare const AccordionPanel: react__default.ForwardRefExoticComponent<AccordionPanelProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
460
|
+
|
|
461
|
+
interface DropdownMenuProps extends DropdownCoreProps, Pick<BaseComponentProps, "theme" | "color"> {
|
|
462
|
+
/** Open state (controlled). Pair with onOpenChange. */
|
|
463
|
+
open?: boolean;
|
|
464
|
+
/** Initial open state (uncontrolled). Default false. */
|
|
465
|
+
defaultOpen?: boolean;
|
|
466
|
+
onOpenChange?: (open: boolean) => void;
|
|
467
|
+
children?: react__default.ReactNode;
|
|
468
|
+
}
|
|
469
|
+
declare function DropdownMenu(props: DropdownMenuProps): react__default.JSX.Element;
|
|
470
|
+
interface DropdownMenuTriggerProps {
|
|
471
|
+
/** A single element — the trigger clones it to attach the menu-button ARIA, a ref, and open/close handlers. */
|
|
472
|
+
children: react__default.ReactElement;
|
|
473
|
+
}
|
|
474
|
+
declare const DropdownMenuTrigger: react__default.ForwardRefExoticComponent<DropdownMenuTriggerProps & react__default.RefAttributes<HTMLElement>>;
|
|
475
|
+
interface DropdownMenuContentProps extends BaseComponentProps {
|
|
476
|
+
children?: react__default.ReactNode;
|
|
477
|
+
}
|
|
478
|
+
declare const DropdownMenuContent: react__default.ForwardRefExoticComponent<DropdownMenuContentProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
479
|
+
interface DropdownMenuItemProps extends Omit<react__default.HTMLAttributes<HTMLDivElement>, "onSelect"> {
|
|
480
|
+
/** Destructive styling from the semantic registry (stays red across accents). Default "default". */
|
|
481
|
+
variant?: DropdownItemVariant;
|
|
482
|
+
disabled?: boolean;
|
|
483
|
+
/** Called when the item is chosen (click or Enter/Space). The menu then closes. */
|
|
484
|
+
onSelect?: () => void;
|
|
485
|
+
children?: react__default.ReactNode;
|
|
486
|
+
}
|
|
487
|
+
declare const DropdownMenuItem: react__default.ForwardRefExoticComponent<DropdownMenuItemProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
488
|
+
declare const DropdownMenuSeparator: react__default.ForwardRefExoticComponent<react__default.HTMLAttributes<HTMLDivElement> & react__default.RefAttributes<HTMLDivElement>>;
|
|
489
|
+
declare const DropdownMenuLabel: react__default.ForwardRefExoticComponent<react__default.HTMLAttributes<HTMLDivElement> & react__default.RefAttributes<HTMLDivElement>>;
|
|
490
|
+
|
|
491
|
+
interface SelectProps extends SelectCoreProps, Omit<BaseComponentProps, "children"> {
|
|
492
|
+
options: SelectOptionItem[];
|
|
493
|
+
/** Allow selecting several values (renders removable chips). Default false. */
|
|
494
|
+
multiple?: boolean;
|
|
495
|
+
/** Selected value(s) (controlled). `string | null` single, `string[]` multiple. */
|
|
496
|
+
value?: string | string[] | null;
|
|
497
|
+
/** Initial selection (uncontrolled). */
|
|
498
|
+
defaultValue?: string | string[] | null;
|
|
499
|
+
/** Fires on change; payload is `string | null` for single, `string[]` for multiple. */
|
|
500
|
+
onValueChange?: (value: string | string[] | null) => void;
|
|
501
|
+
/** Shown when nothing is selected. Default "Select…". */
|
|
502
|
+
placeholder?: string;
|
|
503
|
+
/** Open state (controlled). */
|
|
504
|
+
open?: boolean;
|
|
505
|
+
defaultOpen?: boolean;
|
|
506
|
+
onOpenChange?: (open: boolean) => void;
|
|
507
|
+
/** Emits hidden inputs so the Select participates in native form submission. */
|
|
508
|
+
name?: string;
|
|
509
|
+
"aria-label"?: string;
|
|
510
|
+
"aria-labelledby"?: string;
|
|
511
|
+
}
|
|
512
|
+
declare const Select: react__default.ForwardRefExoticComponent<SelectProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
513
|
+
|
|
514
|
+
interface SliderProps extends SliderCoreProps, BaseComponentProps {
|
|
515
|
+
value?: SliderValue;
|
|
516
|
+
defaultValue?: SliderValue;
|
|
517
|
+
onChange?: (value: SliderValue) => void;
|
|
518
|
+
label?: string;
|
|
519
|
+
helperText?: string;
|
|
520
|
+
errorText?: string;
|
|
521
|
+
error?: boolean;
|
|
522
|
+
/** A floating value readout above each thumb (e.g. while dragging). Default false. */
|
|
523
|
+
showValueLabel?: boolean;
|
|
524
|
+
/** Formats a thumb's value for both the value-label bubble and its aria-valuetext. Defaults to String(value). */
|
|
525
|
+
formatValue?: (value: number) => string;
|
|
526
|
+
/** Range mode only: the minimum value-unit gap enforced between the two thumbs, so they can be kept from ever touching. Default 0 (thumbs may meet but not cross). */
|
|
527
|
+
minGap?: number;
|
|
528
|
+
id?: string;
|
|
529
|
+
}
|
|
530
|
+
declare const Slider: react__default.ForwardRefExoticComponent<SliderProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
531
|
+
|
|
532
|
+
interface ComboboxProps extends ComboboxCoreProps, Omit<BaseComponentProps, "children"> {
|
|
533
|
+
options: ComboboxOption[];
|
|
534
|
+
/** Selected value (controlled). `null` means nothing selected. */
|
|
535
|
+
value?: string | null;
|
|
536
|
+
defaultValue?: string | null;
|
|
537
|
+
onValueChange?: (value: string | null) => void;
|
|
538
|
+
/** Custom match predicate, replacing the default case-insensitive substring match. */
|
|
539
|
+
filter?: (option: ComboboxOption, query: string) => boolean;
|
|
540
|
+
placeholder?: string;
|
|
541
|
+
open?: boolean;
|
|
542
|
+
defaultOpen?: boolean;
|
|
543
|
+
onOpenChange?: (open: boolean) => void;
|
|
544
|
+
/** Emits a hidden input so the Combobox participates in native form submission. */
|
|
545
|
+
name?: string;
|
|
546
|
+
label?: string;
|
|
547
|
+
helperText?: string;
|
|
548
|
+
errorText?: string;
|
|
549
|
+
id?: string;
|
|
550
|
+
"aria-label"?: string;
|
|
551
|
+
"aria-labelledby"?: string;
|
|
552
|
+
}
|
|
553
|
+
declare const Combobox: react__default.ForwardRefExoticComponent<ComboboxProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
554
|
+
|
|
555
|
+
interface CalendarProps extends BaseComponentProps {
|
|
556
|
+
value?: Date | null;
|
|
557
|
+
defaultValue?: Date | null;
|
|
558
|
+
onChange?: (date: Date) => void;
|
|
559
|
+
min?: Date;
|
|
560
|
+
max?: Date;
|
|
561
|
+
isDateDisabled?: (date: Date) => boolean;
|
|
562
|
+
weekStartsOn?: 0 | 1;
|
|
563
|
+
locale?: string;
|
|
564
|
+
/** Which month is shown (controlled). Pair with onMonthChange. Defaults to the selected value's month, or today's. */
|
|
565
|
+
month?: Date;
|
|
566
|
+
onMonthChange?: (month: Date) => void;
|
|
567
|
+
}
|
|
568
|
+
declare const Calendar: react__default.ForwardRefExoticComponent<CalendarProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
569
|
+
|
|
570
|
+
interface DatePickerProps extends DatePickerCoreProps, Omit<BaseComponentProps, "children"> {
|
|
571
|
+
value?: Date | null;
|
|
572
|
+
defaultValue?: Date | null;
|
|
573
|
+
onChange?: (date: Date | null) => void;
|
|
574
|
+
placeholder?: string;
|
|
575
|
+
label?: string;
|
|
576
|
+
helperText?: string;
|
|
577
|
+
errorText?: string;
|
|
578
|
+
id?: string;
|
|
579
|
+
name?: string;
|
|
580
|
+
open?: boolean;
|
|
581
|
+
defaultOpen?: boolean;
|
|
582
|
+
onOpenChange?: (open: boolean) => void;
|
|
583
|
+
}
|
|
584
|
+
declare const DatePicker: react__default.ForwardRefExoticComponent<DatePickerProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
585
|
+
|
|
586
|
+
interface TimePickerProps extends TimePickerCoreProps, Omit<BaseComponentProps, "children"> {
|
|
587
|
+
value?: TimeValue | null;
|
|
588
|
+
defaultValue?: TimeValue | null;
|
|
589
|
+
onChange?: (time: TimeValue | null) => void;
|
|
590
|
+
placeholder?: string;
|
|
591
|
+
label?: string;
|
|
592
|
+
helperText?: string;
|
|
593
|
+
errorText?: string;
|
|
594
|
+
id?: string;
|
|
595
|
+
name?: string;
|
|
596
|
+
/** Which view the panel opens showing: the analog dial (default) or digital HH:MM entry. The person can still switch between them via the panel's own toggle button once it's open. */
|
|
597
|
+
defaultPanelMode?: TimePanelMode;
|
|
598
|
+
open?: boolean;
|
|
599
|
+
defaultOpen?: boolean;
|
|
600
|
+
onOpenChange?: (open: boolean) => void;
|
|
601
|
+
}
|
|
602
|
+
declare const TimePicker: react__default.ForwardRefExoticComponent<TimePickerProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
603
|
+
|
|
604
|
+
interface ColorPickerProps extends ColorPickerCoreProps, Omit<BaseComponentProps, "children"> {
|
|
605
|
+
value?: string | null;
|
|
606
|
+
defaultValue?: string | null;
|
|
607
|
+
onChange?: (hex: string | null) => void;
|
|
608
|
+
placeholder?: string;
|
|
609
|
+
label?: string;
|
|
610
|
+
helperText?: string;
|
|
611
|
+
errorText?: string;
|
|
612
|
+
id?: string;
|
|
613
|
+
name?: string;
|
|
614
|
+
open?: boolean;
|
|
615
|
+
defaultOpen?: boolean;
|
|
616
|
+
onOpenChange?: (open: boolean) => void;
|
|
617
|
+
}
|
|
618
|
+
declare const ColorPicker: react__default.ForwardRefExoticComponent<ColorPickerProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
619
|
+
|
|
620
|
+
interface CarouselProps extends CarouselCoreProps, BaseComponentProps {
|
|
621
|
+
/** Active slide index (controlled). Pair with onChange. */
|
|
622
|
+
value?: number;
|
|
623
|
+
/** Initial active slide index (uncontrolled). Default 0. */
|
|
624
|
+
defaultValue?: number;
|
|
625
|
+
onChange?: (index: number) => void;
|
|
626
|
+
children?: react__default.ReactNode;
|
|
627
|
+
}
|
|
628
|
+
declare const Carousel: react__default.ForwardRefExoticComponent<CarouselProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
629
|
+
interface CarouselViewportProps extends react__default.HTMLAttributes<HTMLDivElement> {
|
|
630
|
+
/** Accessible label for the region (WAI-ARIA carousel pattern). Default "Carousel". */
|
|
631
|
+
label?: string;
|
|
632
|
+
children?: react__default.ReactNode;
|
|
633
|
+
}
|
|
634
|
+
declare const CarouselViewport: react__default.ForwardRefExoticComponent<CarouselViewportProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
635
|
+
interface CarouselTrackProps extends Omit<react__default.HTMLAttributes<HTMLDivElement>, "children"> {
|
|
636
|
+
children?: react__default.ReactNode;
|
|
637
|
+
}
|
|
638
|
+
declare const CarouselTrack: react__default.ForwardRefExoticComponent<CarouselTrackProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
639
|
+
interface CarouselSlideProps extends react__default.HTMLAttributes<HTMLDivElement> {
|
|
640
|
+
children?: react__default.ReactNode;
|
|
641
|
+
}
|
|
642
|
+
declare const CarouselSlide: react__default.ForwardRefExoticComponent<CarouselSlideProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
643
|
+
interface CarouselNavButtonProps extends Omit<react__default.ButtonHTMLAttributes<HTMLButtonElement>, "children"> {
|
|
644
|
+
children?: react__default.ReactNode;
|
|
645
|
+
}
|
|
646
|
+
declare const CarouselPrevious: react__default.ForwardRefExoticComponent<CarouselNavButtonProps & react__default.RefAttributes<HTMLButtonElement>>;
|
|
647
|
+
declare const CarouselNext: react__default.ForwardRefExoticComponent<CarouselNavButtonProps & react__default.RefAttributes<HTMLButtonElement>>;
|
|
648
|
+
declare const CarouselIndicators: react__default.ForwardRefExoticComponent<react__default.HTMLAttributes<HTMLDivElement> & react__default.RefAttributes<HTMLDivElement>>;
|
|
649
|
+
|
|
650
|
+
interface TimelineProps extends TimelineCoreProps, BaseComponentProps {
|
|
651
|
+
/** Accessible label for the list (e.g. "Order history"). Optional — most timelines sit under their own visible heading already. */
|
|
652
|
+
label?: string;
|
|
653
|
+
children?: react__default.ReactNode;
|
|
654
|
+
}
|
|
655
|
+
declare const Timeline: react__default.ForwardRefExoticComponent<TimelineProps & react__default.RefAttributes<HTMLOListElement>>;
|
|
656
|
+
interface TimelineItemProps extends TimelineItemCoreProps, Omit<react__default.LiHTMLAttributes<HTMLLIElement>, "title"> {
|
|
657
|
+
/** The event's headline. Also accepts arbitrary nodes, not just text. */
|
|
658
|
+
title?: react__default.ReactNode;
|
|
659
|
+
/** Supporting detail below the title. */
|
|
660
|
+
description?: react__default.ReactNode;
|
|
661
|
+
/** A date/time label, rendered opposite the title (e.g. "2 hours ago", "Mar 4, 2026"). */
|
|
662
|
+
timestamp?: react__default.ReactNode;
|
|
663
|
+
/** Replaces the default status dot entirely — an icon, an avatar, initials, anything. Not inspected or cloned (same philosophy as Button's iconLeft), just rendered in the dot's slot. */
|
|
664
|
+
icon?: react__default.ReactNode;
|
|
665
|
+
children?: react__default.ReactNode;
|
|
666
|
+
}
|
|
667
|
+
declare const TimelineItem: react__default.ForwardRefExoticComponent<TimelineItemProps & react__default.RefAttributes<HTMLLIElement>>;
|
|
668
|
+
|
|
669
|
+
interface CommandPaletteProps extends BaseComponentProps {
|
|
670
|
+
open: boolean;
|
|
671
|
+
onClose: () => void;
|
|
672
|
+
items: CommandItem[];
|
|
673
|
+
onSelect: (item: CommandItem) => void;
|
|
674
|
+
placeholder?: string;
|
|
675
|
+
emptyMessage?: string;
|
|
676
|
+
/** Accessible label for the dialog itself. Default "Command palette". */
|
|
677
|
+
label?: string;
|
|
678
|
+
filter?: (item: CommandItem, query: string) => boolean;
|
|
679
|
+
/** Calls onClose automatically right after onSelect fires. Default true — the overwhelmingly common case (running a command dismisses the palette); set false for a palette meant to stay open across multiple actions. */
|
|
680
|
+
closeOnSelect?: boolean;
|
|
681
|
+
/** Explicit element to return focus to on close. Defaults to whatever was focused right before opening. */
|
|
682
|
+
triggerRef?: react__default.RefObject<HTMLElement | null>;
|
|
683
|
+
}
|
|
684
|
+
declare const CommandPalette: react__default.ForwardRefExoticComponent<CommandPaletteProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
685
|
+
|
|
686
|
+
interface PopoverProps extends PopoverCoreProps, Pick<BaseComponentProps, "theme" | "color"> {
|
|
687
|
+
/** Open state (controlled). Pair with onOpenChange. */
|
|
688
|
+
open?: boolean;
|
|
689
|
+
/** Initial open state (uncontrolled). Default false. */
|
|
690
|
+
defaultOpen?: boolean;
|
|
691
|
+
onOpenChange?: (open: boolean) => void;
|
|
692
|
+
children?: react__default.ReactNode;
|
|
693
|
+
}
|
|
694
|
+
declare function Popover(props: PopoverProps): react__default.JSX.Element;
|
|
695
|
+
interface PopoverTriggerProps {
|
|
696
|
+
/** A single element — cloned to attach the dialog-button ARIA, a ref, and the open/close click handler. */
|
|
697
|
+
children: react__default.ReactElement;
|
|
698
|
+
}
|
|
699
|
+
declare const PopoverTrigger: react__default.ForwardRefExoticComponent<PopoverTriggerProps & react__default.RefAttributes<HTMLElement>>;
|
|
700
|
+
interface PopoverContentProps extends BaseComponentProps {
|
|
701
|
+
children?: react__default.ReactNode;
|
|
702
|
+
}
|
|
703
|
+
declare const PopoverContent: react__default.ForwardRefExoticComponent<PopoverContentProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
704
|
+
interface PopoverCloseProps extends react__default.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
705
|
+
children?: react__default.ReactNode;
|
|
706
|
+
}
|
|
707
|
+
/**
|
|
708
|
+
* Closes the popover on click — purely a convenience so consumers
|
|
709
|
+
* don't have to reach back into context themselves for the common
|
|
710
|
+
* "X" or "Done" action inside a popover's own content. Entirely
|
|
711
|
+
* optional; PopoverContent's children can just as well call the
|
|
712
|
+
* close behavior some other way (e.g. the trigger itself, or an
|
|
713
|
+
* outside click).
|
|
714
|
+
*
|
|
715
|
+
* Same clone-a-single-element approach as PopoverTrigger, and for
|
|
716
|
+
* the same reason: wrapping `children` in an unconditional `<button>`
|
|
717
|
+
* of its own broke the instant someone passed an already-interactive
|
|
718
|
+
* child (`<PopoverClose><Button>Done</Button></PopoverClose>`) —
|
|
719
|
+
* nesting a real `<button>` inside another `<button>` is invalid
|
|
720
|
+
* HTML and a real hydration error, not just a style nit. When
|
|
721
|
+
* `children` is a single element, this clones it (merging the ref
|
|
722
|
+
* and composing onClick) instead of adding a second wrapper element.
|
|
723
|
+
* Plain text or icon content (nothing to clone) still gets its own
|
|
724
|
+
* `<button>`, the same as before.
|
|
725
|
+
*/
|
|
726
|
+
declare const PopoverClose: react__default.ForwardRefExoticComponent<PopoverCloseProps & react__default.RefAttributes<HTMLButtonElement>>;
|
|
727
|
+
|
|
728
|
+
interface NumberInputCoreProps extends FieldProps {
|
|
729
|
+
min?: number;
|
|
730
|
+
max?: number;
|
|
731
|
+
/** Amount +/- buttons and Arrow keys move by. Default 1. */
|
|
732
|
+
step?: number;
|
|
733
|
+
/** Hides the increment/decrement buttons, leaving a plain numeric field. Default false. */
|
|
734
|
+
hideStepper?: boolean;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
interface NumberInputProps extends Omit<react__default.InputHTMLAttributes<HTMLInputElement>, "size" | "color" | "value" | "defaultValue" | "onChange" | "type">, Omit<NumberInputCoreProps, "min" | "max" | "step" | "hideStepper">, BaseComponentProps {
|
|
738
|
+
min?: number;
|
|
739
|
+
max?: number;
|
|
740
|
+
step?: number;
|
|
741
|
+
hideStepper?: boolean;
|
|
742
|
+
value?: number;
|
|
743
|
+
defaultValue?: number;
|
|
744
|
+
/** Fires once a typed/stepped value is committed (blur, Enter, or a stepper click) — not on every keystroke. See the module comment for why. */
|
|
745
|
+
onChange?: (value: number) => void;
|
|
746
|
+
label?: string;
|
|
747
|
+
helperText?: string;
|
|
748
|
+
errorText?: string;
|
|
749
|
+
}
|
|
750
|
+
declare const NumberInput: react__default.ForwardRefExoticComponent<NumberInputProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
751
|
+
|
|
752
|
+
interface FileUploadRejection {
|
|
753
|
+
file: File;
|
|
754
|
+
reason: Exclude<FileVerdict, "ok">;
|
|
755
|
+
}
|
|
756
|
+
interface FileUploadProps extends Omit<react__default.InputHTMLAttributes<HTMLInputElement>, "size" | "color" | "value" | "defaultValue" | "onChange" | "type">, Omit<FileUploadCoreProps, "accept" | "multiple" | "maxSizeBytes">, BaseComponentProps {
|
|
757
|
+
accept?: string;
|
|
758
|
+
multiple?: boolean;
|
|
759
|
+
maxSizeBytes?: number;
|
|
760
|
+
/** Controlled file list. */
|
|
761
|
+
files?: File[];
|
|
762
|
+
defaultFiles?: File[];
|
|
763
|
+
onFilesChange?: (files: File[]) => void;
|
|
764
|
+
/** Files that failed the accept/size check — never added to the list, reported here instead. */
|
|
765
|
+
onFilesRejected?: (rejected: FileUploadRejection[]) => void;
|
|
766
|
+
label?: string;
|
|
767
|
+
helperText?: string;
|
|
768
|
+
errorText?: string;
|
|
769
|
+
/** Replaces the default "drag and drop / Browse" prompt entirely. */
|
|
770
|
+
children?: react__default.ReactNode;
|
|
771
|
+
}
|
|
772
|
+
declare const FileUpload: react__default.ForwardRefExoticComponent<FileUploadProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
773
|
+
|
|
774
|
+
interface PaginationProps extends PaginationCoreProps, BaseComponentProps {
|
|
775
|
+
page?: number;
|
|
776
|
+
defaultPage?: number;
|
|
777
|
+
onPageChange?: (page: number) => void;
|
|
778
|
+
/** Accessible label for the <nav>. Default "Pagination". */
|
|
779
|
+
"aria-label"?: string;
|
|
780
|
+
id?: string;
|
|
781
|
+
}
|
|
782
|
+
declare const Pagination: react__default.ForwardRefExoticComponent<PaginationProps & react__default.RefAttributes<HTMLElement>>;
|
|
783
|
+
|
|
784
|
+
interface BreadcrumbItem {
|
|
785
|
+
label: react__default.ReactNode;
|
|
786
|
+
href?: string;
|
|
787
|
+
onClick?: (e: react__default.MouseEvent<HTMLAnchorElement>) => void;
|
|
788
|
+
disabled?: boolean;
|
|
789
|
+
/** Anything renderable, same philosophy as Button's iconLeft/iconRight — not inspected or cloned, just rendered in a slot. */
|
|
790
|
+
icon?: react__default.ReactNode;
|
|
791
|
+
}
|
|
792
|
+
interface BreadcrumbProps extends BreadcrumbCoreProps, BaseComponentProps {
|
|
793
|
+
items: BreadcrumbItem[];
|
|
794
|
+
/** Rendered between items. Default "/". */
|
|
795
|
+
separator?: react__default.ReactNode;
|
|
796
|
+
/** Collapses a long trail to the first item + the last `maxItems - 1` items, with a "…" between. Undefined shows every item. */
|
|
797
|
+
maxItems?: number;
|
|
798
|
+
id?: string;
|
|
799
|
+
}
|
|
800
|
+
declare const Breadcrumb: react__default.ForwardRefExoticComponent<BreadcrumbProps & react__default.RefAttributes<HTMLElement>>;
|
|
801
|
+
|
|
802
|
+
interface SkeletonProps extends SkeletonCoreProps, BaseComponentProps {
|
|
803
|
+
width?: number | string;
|
|
804
|
+
height?: number | string;
|
|
805
|
+
/** Stacks this many lines when variant="text" and no explicit height is set (the last line renders narrower, matching how paragraph placeholders usually taper). Default 1. */
|
|
806
|
+
lines?: number;
|
|
807
|
+
}
|
|
808
|
+
declare const Skeleton: react__default.ForwardRefExoticComponent<SkeletonProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
809
|
+
|
|
810
|
+
interface TableProps extends TableCoreProps, BaseComponentProps {
|
|
811
|
+
children?: react__default.ReactNode;
|
|
812
|
+
/** Caps the wrapper's height (enables vertical scroll, and gives stickyHeader something to stick within). Any CSS length. */
|
|
813
|
+
maxHeight?: number | string;
|
|
814
|
+
}
|
|
815
|
+
declare const Table: react__default.ForwardRefExoticComponent<TableProps & react__default.RefAttributes<HTMLTableElement>>;
|
|
816
|
+
declare const TableHeader: react__default.ForwardRefExoticComponent<react__default.HTMLAttributes<HTMLTableSectionElement> & react__default.RefAttributes<HTMLTableSectionElement>>;
|
|
817
|
+
interface TableBodyProps extends react__default.HTMLAttributes<HTMLTableSectionElement> {
|
|
818
|
+
/** Renders `emptyState` in a single full-width row instead of `children` when true. */
|
|
819
|
+
isEmpty?: boolean;
|
|
820
|
+
/** Content shown when isEmpty is true — typically a short message, optionally with an action. */
|
|
821
|
+
emptyState?: react__default.ReactNode;
|
|
822
|
+
/** How many columns the empty-state cell should span. Required for the empty row to render at full width; omit it and the cell just spans 1. */
|
|
823
|
+
columnCount?: number;
|
|
824
|
+
children?: react__default.ReactNode;
|
|
825
|
+
}
|
|
826
|
+
declare const TableBody: react__default.ForwardRefExoticComponent<TableBodyProps & react__default.RefAttributes<HTMLTableSectionElement>>;
|
|
827
|
+
interface TableRowProps extends react__default.HTMLAttributes<HTMLTableRowElement> {
|
|
828
|
+
selected?: boolean;
|
|
829
|
+
children?: react__default.ReactNode;
|
|
830
|
+
}
|
|
831
|
+
declare const TableRow: react__default.ForwardRefExoticComponent<TableRowProps & react__default.RefAttributes<HTMLTableRowElement>>;
|
|
832
|
+
interface TableHeadProps extends Omit<react__default.ThHTMLAttributes<HTMLTableCellElement>, "onClick"> {
|
|
833
|
+
sortable?: boolean;
|
|
834
|
+
/** Controlled sort state for this column — null/undefined means "not the active sort column." */
|
|
835
|
+
sortDirection?: SortDirection;
|
|
836
|
+
/** Fires when this header is activated (click, or Enter/Space when sortable). Compute the next direction yourself, e.g. with `getNextSortDirection`. */
|
|
837
|
+
onSort?: () => void;
|
|
838
|
+
children?: react__default.ReactNode;
|
|
839
|
+
}
|
|
840
|
+
declare const TableHead: react__default.ForwardRefExoticComponent<TableHeadProps & react__default.RefAttributes<HTMLTableCellElement>>;
|
|
841
|
+
declare const TableCell: react__default.ForwardRefExoticComponent<react__default.TdHTMLAttributes<HTMLTableCellElement> & react__default.RefAttributes<HTMLTableCellElement>>;
|
|
842
|
+
interface TableCaptionProps extends react__default.HTMLAttributes<HTMLTableCaptionElement> {
|
|
843
|
+
/** Visually hidden but still announced by screen readers — for a caption that would be redundant next to a visible heading right above the table. Default false. */
|
|
844
|
+
srOnly?: boolean;
|
|
845
|
+
children?: react__default.ReactNode;
|
|
846
|
+
}
|
|
847
|
+
declare const TableCaption: react__default.ForwardRefExoticComponent<TableCaptionProps & react__default.RefAttributes<HTMLTableCaptionElement>>;
|
|
848
|
+
|
|
849
|
+
interface DrawerProps extends DrawerCoreProps, BaseComponentProps {
|
|
850
|
+
open: boolean;
|
|
851
|
+
onClose: () => void;
|
|
852
|
+
title?: react__default.ReactNode;
|
|
853
|
+
children?: react__default.ReactNode;
|
|
854
|
+
footer?: react__default.ReactNode;
|
|
855
|
+
/** Explicit element to return focus to on close. Defaults to whatever was focused right before opening. */
|
|
856
|
+
triggerRef?: react__default.RefObject<HTMLElement | null>;
|
|
857
|
+
}
|
|
858
|
+
declare const Drawer: react__default.ForwardRefExoticComponent<DrawerProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
859
|
+
|
|
860
|
+
interface ContextMenuProps extends ContextMenuCoreProps, Pick<BaseComponentProps, "theme" | "color"> {
|
|
861
|
+
open?: boolean;
|
|
862
|
+
onOpenChange?: (open: boolean) => void;
|
|
863
|
+
children?: react__default.ReactNode;
|
|
864
|
+
}
|
|
865
|
+
declare function ContextMenu(props: ContextMenuProps): react__default.JSX.Element;
|
|
866
|
+
interface ContextMenuTriggerProps {
|
|
867
|
+
/** A single element — right-clicking it opens the menu at the cursor. Its own onContextMenu (if any) still runs first. */
|
|
868
|
+
children: react__default.ReactElement;
|
|
869
|
+
/** Disables the menu for this trigger without unmounting it. Default false. */
|
|
870
|
+
disabled?: boolean;
|
|
871
|
+
}
|
|
872
|
+
declare const ContextMenuTrigger: react__default.ForwardRefExoticComponent<ContextMenuTriggerProps & react__default.RefAttributes<HTMLElement>>;
|
|
873
|
+
interface ContextMenuContentProps extends BaseComponentProps {
|
|
874
|
+
children?: react__default.ReactNode;
|
|
875
|
+
}
|
|
876
|
+
declare const ContextMenuContent: react__default.ForwardRefExoticComponent<ContextMenuContentProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
877
|
+
interface ContextMenuItemProps extends Omit<react__default.HTMLAttributes<HTMLDivElement>, "onSelect"> {
|
|
878
|
+
variant?: DropdownItemVariant;
|
|
879
|
+
disabled?: boolean;
|
|
880
|
+
onSelect?: () => void;
|
|
881
|
+
children?: react__default.ReactNode;
|
|
882
|
+
}
|
|
883
|
+
declare const ContextMenuItem: react__default.ForwardRefExoticComponent<ContextMenuItemProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
884
|
+
declare const ContextMenuSeparator: react__default.ForwardRefExoticComponent<react__default.HTMLAttributes<HTMLDivElement> & react__default.RefAttributes<HTMLDivElement>>;
|
|
885
|
+
declare const ContextMenuLabel: react__default.ForwardRefExoticComponent<react__default.HTMLAttributes<HTMLDivElement> & react__default.RefAttributes<HTMLDivElement>>;
|
|
886
|
+
|
|
887
|
+
interface RatingProps extends RatingCoreProps, BaseComponentProps {
|
|
888
|
+
value?: number;
|
|
889
|
+
defaultValue?: number;
|
|
890
|
+
onChange?: (value: number) => void;
|
|
891
|
+
label?: string;
|
|
892
|
+
helperText?: string;
|
|
893
|
+
id?: string;
|
|
894
|
+
"aria-label"?: string;
|
|
895
|
+
}
|
|
896
|
+
declare const Rating: react__default.ForwardRefExoticComponent<RatingProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
897
|
+
|
|
898
|
+
interface OTPInputProps extends OTPInputCoreProps, BaseComponentProps {
|
|
899
|
+
value?: string;
|
|
900
|
+
defaultValue?: string;
|
|
901
|
+
onChange?: (value: string) => void;
|
|
902
|
+
/** Fires once when the value reaches `length` characters (e.g. to auto-submit). */
|
|
903
|
+
onComplete?: (value: string) => void;
|
|
904
|
+
label?: string;
|
|
905
|
+
helperText?: string;
|
|
906
|
+
errorText?: string;
|
|
907
|
+
id?: string;
|
|
908
|
+
}
|
|
909
|
+
declare const OTPInput: react__default.ForwardRefExoticComponent<OTPInputProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
910
|
+
|
|
911
|
+
interface PhoneInputProps extends PhoneInputCoreProps, BaseComponentProps {
|
|
912
|
+
value?: string;
|
|
913
|
+
defaultValue?: string;
|
|
914
|
+
/** Fires with the recombined E.164-ish value ("+<dialCode><digits>") on every change to either the country or the digits. */
|
|
915
|
+
onChange?: (value: string) => void;
|
|
916
|
+
/** Fires whenever the selected country changes, independent of onChange. */
|
|
917
|
+
onCountryChange?: (iso2: string) => void;
|
|
918
|
+
label?: string;
|
|
919
|
+
helperText?: string;
|
|
920
|
+
errorText?: string;
|
|
921
|
+
error?: boolean;
|
|
922
|
+
placeholder?: string;
|
|
923
|
+
id?: string;
|
|
924
|
+
}
|
|
925
|
+
declare const PhoneInput: react__default.ForwardRefExoticComponent<PhoneInputProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
926
|
+
|
|
927
|
+
interface StatCardProps extends BaseComponentProps {
|
|
928
|
+
label: string;
|
|
929
|
+
value: string | number;
|
|
930
|
+
/** Percentage change, e.g. 12.5 or -3. Omit to render no trend indicator at all. */
|
|
931
|
+
trend?: number;
|
|
932
|
+
/** Context for the trend, e.g. "vs last month". Only rendered alongside a trend. */
|
|
933
|
+
trendLabel?: string;
|
|
934
|
+
icon?: react__default.ReactNode;
|
|
935
|
+
variant?: CardVariant;
|
|
936
|
+
padding?: CardPadding;
|
|
937
|
+
disabled?: boolean;
|
|
938
|
+
}
|
|
939
|
+
declare const StatCard: react__default.ForwardRefExoticComponent<StatCardProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
940
|
+
|
|
941
|
+
interface IconProps extends SVGProps<SVGSVGElement> {
|
|
942
|
+
/** Applies to both width and height. Defaults to 20 — override via prop or CSS, not a component-specific "size" enum. */
|
|
943
|
+
size?: number | string;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
interface IconRegistryEntry {
|
|
947
|
+
name: string;
|
|
948
|
+
kebabName: string;
|
|
949
|
+
Component: ComponentType<IconProps>;
|
|
950
|
+
}
|
|
951
|
+
declare const ICON_REGISTRY: IconRegistryEntry[];
|
|
952
|
+
|
|
953
|
+
declare function AlarmCheckIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
954
|
+
|
|
955
|
+
declare function AlarmClockIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
956
|
+
|
|
957
|
+
declare function AlarmMinusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
958
|
+
|
|
959
|
+
declare function AlarmOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
960
|
+
|
|
961
|
+
declare function AlarmPlusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
962
|
+
|
|
963
|
+
declare function AlertIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
964
|
+
|
|
965
|
+
declare function AlignBottomIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
966
|
+
|
|
967
|
+
declare function AlignCenterIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
968
|
+
|
|
969
|
+
declare function AlignJustifyIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
970
|
+
|
|
971
|
+
declare function AlignLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
972
|
+
|
|
973
|
+
declare function AlignRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
974
|
+
|
|
975
|
+
declare function AlignTopIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
976
|
+
|
|
977
|
+
declare function AnchorIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
978
|
+
|
|
979
|
+
declare function AngryIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
980
|
+
|
|
981
|
+
declare function AnnoyedIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
982
|
+
|
|
983
|
+
declare function AntennaIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
984
|
+
|
|
985
|
+
declare function ArrowDownIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
986
|
+
|
|
987
|
+
declare function ArrowDownLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
988
|
+
|
|
989
|
+
declare function ArrowDownRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
990
|
+
|
|
991
|
+
declare function ArrowLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
992
|
+
|
|
993
|
+
declare function ArrowLeftRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
994
|
+
|
|
995
|
+
declare function ArrowRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
996
|
+
|
|
997
|
+
declare function ArrowUpDownIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
998
|
+
|
|
999
|
+
declare function ArrowUpIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1000
|
+
|
|
1001
|
+
declare function ArrowUpLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1002
|
+
|
|
1003
|
+
declare function ArrowUpRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1004
|
+
|
|
1005
|
+
declare function AtSignIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1006
|
+
|
|
1007
|
+
declare function AwardIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1008
|
+
|
|
1009
|
+
declare function BabyIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1010
|
+
|
|
1011
|
+
declare function BadgeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1012
|
+
|
|
1013
|
+
declare function BanIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1014
|
+
|
|
1015
|
+
declare function BankIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1016
|
+
|
|
1017
|
+
declare function BatteryChargeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1018
|
+
|
|
1019
|
+
declare function BatteryFullIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1020
|
+
|
|
1021
|
+
declare function BatteryIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1022
|
+
|
|
1023
|
+
declare function BatteryLowIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1024
|
+
|
|
1025
|
+
declare function BellDotIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1026
|
+
|
|
1027
|
+
declare function BellIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1028
|
+
|
|
1029
|
+
declare function BellOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1030
|
+
|
|
1031
|
+
declare function BikeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1032
|
+
|
|
1033
|
+
declare function BirdIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1034
|
+
|
|
1035
|
+
declare function BitcoinIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1036
|
+
|
|
1037
|
+
declare function BluetoothIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1038
|
+
|
|
1039
|
+
declare function BluetoothOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1040
|
+
|
|
1041
|
+
declare function BoatIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1042
|
+
|
|
1043
|
+
declare function BoltIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1044
|
+
|
|
1045
|
+
declare function BombIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1046
|
+
|
|
1047
|
+
declare function BookIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1048
|
+
|
|
1049
|
+
declare function BookmarkFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1050
|
+
|
|
1051
|
+
declare function BookmarkIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1052
|
+
|
|
1053
|
+
declare function BotIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1054
|
+
|
|
1055
|
+
declare function BoxIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1056
|
+
|
|
1057
|
+
declare function BrainIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1058
|
+
|
|
1059
|
+
declare function BriefcaseIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1060
|
+
|
|
1061
|
+
declare function BugIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1062
|
+
|
|
1063
|
+
declare function BuildingIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1064
|
+
|
|
1065
|
+
declare function BusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1066
|
+
|
|
1067
|
+
declare function CalculatorIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1068
|
+
|
|
1069
|
+
declare function CalendarAddIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1070
|
+
|
|
1071
|
+
declare function CalendarIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1072
|
+
|
|
1073
|
+
declare function CameraIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1074
|
+
|
|
1075
|
+
declare function CameraOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1076
|
+
|
|
1077
|
+
declare function CameraSwitchIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1078
|
+
|
|
1079
|
+
declare function CandlestickIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1080
|
+
|
|
1081
|
+
declare function CaptionsIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1082
|
+
|
|
1083
|
+
declare function CaptionsOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1084
|
+
|
|
1085
|
+
declare function CarIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1086
|
+
|
|
1087
|
+
declare function CashIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1088
|
+
|
|
1089
|
+
declare function CastIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1090
|
+
|
|
1091
|
+
declare function CatIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1092
|
+
|
|
1093
|
+
declare function CctvIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1094
|
+
|
|
1095
|
+
declare function CentIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1096
|
+
|
|
1097
|
+
declare function CentSymbolIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1098
|
+
|
|
1099
|
+
declare function ChartDownIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1100
|
+
|
|
1101
|
+
declare function ChartUpIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1102
|
+
|
|
1103
|
+
declare function CheckCircleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1104
|
+
|
|
1105
|
+
declare function CheckIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1106
|
+
|
|
1107
|
+
declare function ChevronDownIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1108
|
+
|
|
1109
|
+
declare function ChevronFirstIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1110
|
+
|
|
1111
|
+
declare function ChevronLastIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1112
|
+
|
|
1113
|
+
declare function ChevronLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1114
|
+
|
|
1115
|
+
declare function ChevronRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1116
|
+
|
|
1117
|
+
declare function ChevronUpIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1118
|
+
|
|
1119
|
+
declare function ChevronsDownIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1120
|
+
|
|
1121
|
+
declare function ChevronsLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1122
|
+
|
|
1123
|
+
declare function ChevronsRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1124
|
+
|
|
1125
|
+
declare function ChevronsUpIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1126
|
+
|
|
1127
|
+
declare function CigaretteIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1128
|
+
|
|
1129
|
+
declare function CigaretteOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1130
|
+
|
|
1131
|
+
declare function CircleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1132
|
+
|
|
1133
|
+
declare function ClapperboardIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1134
|
+
|
|
1135
|
+
declare function ClipboardIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1136
|
+
|
|
1137
|
+
declare function ClockIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1138
|
+
|
|
1139
|
+
declare function CloseIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1140
|
+
|
|
1141
|
+
declare function CloudDownloadIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1142
|
+
|
|
1143
|
+
declare function CloudIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1144
|
+
|
|
1145
|
+
declare function CloudLightningIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1146
|
+
|
|
1147
|
+
declare function CloudMoonIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1148
|
+
|
|
1149
|
+
declare function CloudRainIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1150
|
+
|
|
1151
|
+
declare function CloudSnowIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1152
|
+
|
|
1153
|
+
declare function CloudSunIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1154
|
+
|
|
1155
|
+
declare function CloudUploadIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1156
|
+
|
|
1157
|
+
declare function CloudyIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1158
|
+
|
|
1159
|
+
declare function CodeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1160
|
+
|
|
1161
|
+
declare function CoinIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1162
|
+
|
|
1163
|
+
declare function ColumnIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1164
|
+
|
|
1165
|
+
declare function CompassIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1166
|
+
|
|
1167
|
+
declare function ContactIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1168
|
+
|
|
1169
|
+
declare function CopyIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1170
|
+
|
|
1171
|
+
declare function CornerDownLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1172
|
+
|
|
1173
|
+
declare function CornerDownRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1174
|
+
|
|
1175
|
+
declare function CornerUpLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1176
|
+
|
|
1177
|
+
declare function CornerUpRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1178
|
+
|
|
1179
|
+
declare function CpuIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1180
|
+
|
|
1181
|
+
declare function CreativeCommonsIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1182
|
+
|
|
1183
|
+
declare function CreditCardIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1184
|
+
|
|
1185
|
+
declare function CropIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1186
|
+
|
|
1187
|
+
declare function CrossCircleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1188
|
+
|
|
1189
|
+
declare function CrownIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1190
|
+
|
|
1191
|
+
declare function CutIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1192
|
+
|
|
1193
|
+
declare function CycleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1194
|
+
|
|
1195
|
+
declare function DatabaseIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1196
|
+
|
|
1197
|
+
declare function DiaryIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1198
|
+
|
|
1199
|
+
declare function DiceFiveIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1200
|
+
|
|
1201
|
+
declare function DiceFourIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1202
|
+
|
|
1203
|
+
declare function DiceOneIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1204
|
+
|
|
1205
|
+
declare function DiceSixIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1206
|
+
|
|
1207
|
+
declare function DiceThreeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1208
|
+
|
|
1209
|
+
declare function DiceTwoIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1210
|
+
|
|
1211
|
+
declare function DirectionDownIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1212
|
+
|
|
1213
|
+
declare function DirectionLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1214
|
+
|
|
1215
|
+
declare function DirectionRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1216
|
+
|
|
1217
|
+
declare function DirectionUpIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1218
|
+
|
|
1219
|
+
declare function DiscordFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1220
|
+
|
|
1221
|
+
declare function DiscordIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1222
|
+
|
|
1223
|
+
declare function DislikeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1224
|
+
|
|
1225
|
+
declare function DogIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1226
|
+
|
|
1227
|
+
declare function DollarIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1228
|
+
|
|
1229
|
+
declare function DollarSymbolIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1230
|
+
|
|
1231
|
+
declare function DotIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1232
|
+
|
|
1233
|
+
declare function DownloadIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1234
|
+
|
|
1235
|
+
declare function DragIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1236
|
+
|
|
1237
|
+
declare function DribbbleFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1238
|
+
|
|
1239
|
+
declare function DribbbleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1240
|
+
|
|
1241
|
+
declare function DropletIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1242
|
+
|
|
1243
|
+
declare function DropletOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1244
|
+
|
|
1245
|
+
declare function EditIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1246
|
+
|
|
1247
|
+
declare function EmergencyIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1248
|
+
|
|
1249
|
+
declare function EqualIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1250
|
+
|
|
1251
|
+
declare function EraserIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1252
|
+
|
|
1253
|
+
declare function EthernetIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1254
|
+
|
|
1255
|
+
declare function EuroIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1256
|
+
|
|
1257
|
+
declare function EuroSymbolIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1258
|
+
|
|
1259
|
+
declare function ExpandIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1260
|
+
|
|
1261
|
+
declare function ExternalLinkIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1262
|
+
|
|
1263
|
+
declare function EyeClosedIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1264
|
+
|
|
1265
|
+
declare function EyeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1266
|
+
|
|
1267
|
+
declare function EyeOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1268
|
+
|
|
1269
|
+
declare function FacebookFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1270
|
+
|
|
1271
|
+
declare function FacebookIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1272
|
+
|
|
1273
|
+
declare function FactoryIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1274
|
+
|
|
1275
|
+
declare function FastForwardIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1276
|
+
|
|
1277
|
+
declare function FemaleGenderIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1278
|
+
|
|
1279
|
+
declare function FigmaFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1280
|
+
|
|
1281
|
+
declare function FigmaIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1282
|
+
|
|
1283
|
+
declare function FileArchiveIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1284
|
+
|
|
1285
|
+
declare function FileAudioIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1286
|
+
|
|
1287
|
+
declare function FileChartIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1288
|
+
|
|
1289
|
+
declare function FileCheckIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1290
|
+
|
|
1291
|
+
declare function FileCodeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1292
|
+
|
|
1293
|
+
declare function FileCogIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1294
|
+
|
|
1295
|
+
declare function FileCssIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1296
|
+
|
|
1297
|
+
declare function FileDatabaseIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1298
|
+
|
|
1299
|
+
declare function FileDownloadIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1300
|
+
|
|
1301
|
+
declare function FileEditIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1302
|
+
|
|
1303
|
+
declare function FileEnvIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1304
|
+
|
|
1305
|
+
declare function FileHeartIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1306
|
+
|
|
1307
|
+
declare function FileHtmlIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1308
|
+
|
|
1309
|
+
declare function FileIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1310
|
+
|
|
1311
|
+
declare function FileImageIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1312
|
+
|
|
1313
|
+
declare function FileJsIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1314
|
+
|
|
1315
|
+
declare function FileJsonIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1316
|
+
|
|
1317
|
+
declare function FileJsxIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1318
|
+
|
|
1319
|
+
declare function FileLockIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1320
|
+
|
|
1321
|
+
declare function FileMdIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1322
|
+
|
|
1323
|
+
declare function FileMinusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1324
|
+
|
|
1325
|
+
declare function FilePdfIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1326
|
+
|
|
1327
|
+
declare function FilePlusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1328
|
+
|
|
1329
|
+
declare function FilePresentationIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1330
|
+
|
|
1331
|
+
declare function FileSearchIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1332
|
+
|
|
1333
|
+
declare function FileSpreadsheetIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1334
|
+
|
|
1335
|
+
declare function FileTextIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1336
|
+
|
|
1337
|
+
declare function FileTsIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1338
|
+
|
|
1339
|
+
declare function FileTsxIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1340
|
+
|
|
1341
|
+
declare function FileUserIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1342
|
+
|
|
1343
|
+
declare function FileVideoIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1344
|
+
|
|
1345
|
+
declare function FileXIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1346
|
+
|
|
1347
|
+
declare function FilmIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1348
|
+
|
|
1349
|
+
declare function FilterIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1350
|
+
|
|
1351
|
+
declare function FingerprintIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1352
|
+
|
|
1353
|
+
declare function FireExtinguisherIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1354
|
+
|
|
1355
|
+
declare function FishIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1356
|
+
|
|
1357
|
+
declare function FlagIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1358
|
+
|
|
1359
|
+
declare function FlagOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1360
|
+
|
|
1361
|
+
declare function FlameIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1362
|
+
|
|
1363
|
+
declare function FlipHorizontalIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1364
|
+
|
|
1365
|
+
declare function FlipVerticalIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1366
|
+
|
|
1367
|
+
declare function FlowerIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1368
|
+
|
|
1369
|
+
declare function FolderArchiveIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1370
|
+
|
|
1371
|
+
declare function FolderCheckIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1372
|
+
|
|
1373
|
+
declare function FolderCogIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1374
|
+
|
|
1375
|
+
declare function FolderDownIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1376
|
+
|
|
1377
|
+
declare function FolderDownloadIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1378
|
+
|
|
1379
|
+
declare function FolderEditIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1380
|
+
|
|
1381
|
+
declare function FolderHeartIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1382
|
+
|
|
1383
|
+
declare function FolderIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1384
|
+
|
|
1385
|
+
declare function FolderLockIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1386
|
+
|
|
1387
|
+
declare function FolderMinusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1388
|
+
|
|
1389
|
+
declare function FolderOpenIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1390
|
+
|
|
1391
|
+
declare function FolderPlusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1392
|
+
|
|
1393
|
+
declare function FolderSearchIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1394
|
+
|
|
1395
|
+
declare function FolderXIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1396
|
+
|
|
1397
|
+
declare function FrancIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1398
|
+
|
|
1399
|
+
declare function FrancSymbolIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1400
|
+
|
|
1401
|
+
declare function FrownIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1402
|
+
|
|
1403
|
+
declare function GamepadIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1404
|
+
|
|
1405
|
+
declare function GemIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1406
|
+
|
|
1407
|
+
declare function GhostIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1408
|
+
|
|
1409
|
+
declare function GiftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1410
|
+
|
|
1411
|
+
declare function GithubFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1412
|
+
|
|
1413
|
+
declare function GithubIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1414
|
+
|
|
1415
|
+
declare function GlobeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1416
|
+
|
|
1417
|
+
declare function GpuIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1418
|
+
|
|
1419
|
+
declare function GraduationCapIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1420
|
+
|
|
1421
|
+
declare function GridIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1422
|
+
|
|
1423
|
+
declare function GroupIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1424
|
+
|
|
1425
|
+
declare function HandshakeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1426
|
+
|
|
1427
|
+
declare function HardDriveIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1428
|
+
|
|
1429
|
+
declare function HdmiIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1430
|
+
|
|
1431
|
+
declare function HeadphonesIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1432
|
+
|
|
1433
|
+
declare function HeadphonesOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1434
|
+
|
|
1435
|
+
declare function HeartBrokenIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1436
|
+
|
|
1437
|
+
declare function HeartFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1438
|
+
|
|
1439
|
+
declare function HeartIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1440
|
+
|
|
1441
|
+
declare function HelicopterIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1442
|
+
|
|
1443
|
+
declare function HelpIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1444
|
+
|
|
1445
|
+
declare function HeptagonIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1446
|
+
|
|
1447
|
+
declare function HexagonIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1448
|
+
|
|
1449
|
+
declare function HighlighterIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1450
|
+
|
|
1451
|
+
declare function HistoryIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1452
|
+
|
|
1453
|
+
declare function HomeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1454
|
+
|
|
1455
|
+
declare function HospitalIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1456
|
+
|
|
1457
|
+
declare function HourglassIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1458
|
+
|
|
1459
|
+
declare function IdCardIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1460
|
+
|
|
1461
|
+
declare function ImageIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1462
|
+
|
|
1463
|
+
declare function InboxIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1464
|
+
|
|
1465
|
+
declare function IndentIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1466
|
+
|
|
1467
|
+
declare function InfoIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1468
|
+
|
|
1469
|
+
declare function InstagramFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1470
|
+
|
|
1471
|
+
declare function InstagramIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1472
|
+
|
|
1473
|
+
declare function JoystickIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1474
|
+
|
|
1475
|
+
declare function KeyIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1476
|
+
|
|
1477
|
+
declare function KeyboardIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1478
|
+
|
|
1479
|
+
declare function LaptopIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1480
|
+
|
|
1481
|
+
declare function LaughIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1482
|
+
|
|
1483
|
+
declare function LayersIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1484
|
+
|
|
1485
|
+
declare function LayersPlusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1486
|
+
|
|
1487
|
+
declare function LayoutGridIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1488
|
+
|
|
1489
|
+
declare function LayoutKanbanIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1490
|
+
|
|
1491
|
+
declare function LayoutListIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1492
|
+
|
|
1493
|
+
declare function LeafIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1494
|
+
|
|
1495
|
+
declare function LightbulbIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1496
|
+
|
|
1497
|
+
declare function LightbulbOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1498
|
+
|
|
1499
|
+
declare function LikeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1500
|
+
|
|
1501
|
+
declare function LineIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1502
|
+
|
|
1503
|
+
declare function LinkIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1504
|
+
|
|
1505
|
+
declare function LinkedinFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1506
|
+
|
|
1507
|
+
declare function LinkedinIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1508
|
+
|
|
1509
|
+
declare function LiraIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1510
|
+
|
|
1511
|
+
declare function LiraSymbolIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1512
|
+
|
|
1513
|
+
declare function ListIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1514
|
+
|
|
1515
|
+
declare function LoaderIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1516
|
+
|
|
1517
|
+
declare function LoaderSpinnerIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1518
|
+
|
|
1519
|
+
declare function LockIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1520
|
+
|
|
1521
|
+
declare function MagicIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1522
|
+
|
|
1523
|
+
declare function MailIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1524
|
+
|
|
1525
|
+
declare function MaleGenderIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1526
|
+
|
|
1527
|
+
declare function MapPinIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1528
|
+
|
|
1529
|
+
declare function MaximizeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1530
|
+
|
|
1531
|
+
declare function MedalIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1532
|
+
|
|
1533
|
+
declare function MedicineIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1534
|
+
|
|
1535
|
+
declare function MehIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1536
|
+
|
|
1537
|
+
declare function MenuIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1538
|
+
|
|
1539
|
+
declare function MergeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1540
|
+
|
|
1541
|
+
declare function MessageCircleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1542
|
+
|
|
1543
|
+
declare function MessageSquareIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1544
|
+
|
|
1545
|
+
declare function MicIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1546
|
+
|
|
1547
|
+
declare function MicOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1548
|
+
|
|
1549
|
+
declare function MinimizeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1550
|
+
|
|
1551
|
+
declare function MinusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1552
|
+
|
|
1553
|
+
declare function MonitorIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1554
|
+
|
|
1555
|
+
declare function MoonIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1556
|
+
|
|
1557
|
+
declare function MoreHorizontalIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1558
|
+
|
|
1559
|
+
declare function MoreVerticalIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1560
|
+
|
|
1561
|
+
declare function MountainIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1562
|
+
|
|
1563
|
+
declare function MouseIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1564
|
+
|
|
1565
|
+
declare function MoveIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1566
|
+
|
|
1567
|
+
declare function MusicIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1568
|
+
|
|
1569
|
+
declare function OctagonIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1570
|
+
|
|
1571
|
+
declare function OutboxIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1572
|
+
|
|
1573
|
+
declare function OutdentIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1574
|
+
|
|
1575
|
+
declare function PackageIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1576
|
+
|
|
1577
|
+
declare function PackageOpenIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1578
|
+
|
|
1579
|
+
declare function PaintbrushIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1580
|
+
|
|
1581
|
+
declare function PaletteIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1582
|
+
|
|
1583
|
+
declare function PanelBottomIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1584
|
+
|
|
1585
|
+
declare function PanelLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1586
|
+
|
|
1587
|
+
declare function PanelRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1588
|
+
|
|
1589
|
+
declare function PanelTopIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1590
|
+
|
|
1591
|
+
declare function PaperclipIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1592
|
+
|
|
1593
|
+
declare function PassportIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1594
|
+
|
|
1595
|
+
declare function PauseIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1596
|
+
|
|
1597
|
+
declare function PawIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1598
|
+
|
|
1599
|
+
declare function PencilIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1600
|
+
|
|
1601
|
+
declare function PentagonIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1602
|
+
|
|
1603
|
+
declare function PhoneCallIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1604
|
+
|
|
1605
|
+
declare function PhoneIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1606
|
+
|
|
1607
|
+
declare function PhoneMissedIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1608
|
+
|
|
1609
|
+
declare function PhoneOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1610
|
+
|
|
1611
|
+
declare function PictureInPictureIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1612
|
+
|
|
1613
|
+
declare function PiggyBankIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1614
|
+
|
|
1615
|
+
declare function PinIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1616
|
+
|
|
1617
|
+
declare function PlayIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1618
|
+
|
|
1619
|
+
declare function PlaylistIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1620
|
+
|
|
1621
|
+
declare function PlusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1622
|
+
|
|
1623
|
+
declare function PoundIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1624
|
+
|
|
1625
|
+
declare function PoundSymbolIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1626
|
+
|
|
1627
|
+
declare function PowerIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1628
|
+
|
|
1629
|
+
declare function PowerOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1630
|
+
|
|
1631
|
+
declare function PrintIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1632
|
+
|
|
1633
|
+
declare function PrinterIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1634
|
+
|
|
1635
|
+
declare function ProjectorIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1636
|
+
|
|
1637
|
+
declare function QrIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1638
|
+
|
|
1639
|
+
declare function RadioIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1640
|
+
|
|
1641
|
+
declare function RadioOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1642
|
+
|
|
1643
|
+
declare function RadioTowerIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1644
|
+
|
|
1645
|
+
declare function RainbowIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1646
|
+
|
|
1647
|
+
declare function RectangleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1648
|
+
|
|
1649
|
+
declare function RecycleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1650
|
+
|
|
1651
|
+
declare function RedditFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1652
|
+
|
|
1653
|
+
declare function RedditIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1654
|
+
|
|
1655
|
+
declare function RedoIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1656
|
+
|
|
1657
|
+
declare function RefreshIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1658
|
+
|
|
1659
|
+
declare function RepeatIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1660
|
+
|
|
1661
|
+
declare function RepeatOnceIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1662
|
+
|
|
1663
|
+
declare function ReplyAllIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1664
|
+
|
|
1665
|
+
declare function ReplyIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1666
|
+
|
|
1667
|
+
declare function ResizeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1668
|
+
|
|
1669
|
+
declare function RibbonIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1670
|
+
|
|
1671
|
+
declare function RocketIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1672
|
+
|
|
1673
|
+
declare function RotateCcwIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1674
|
+
|
|
1675
|
+
declare function RotateCwIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1676
|
+
|
|
1677
|
+
declare function RouterIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1678
|
+
|
|
1679
|
+
declare function RowIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1680
|
+
|
|
1681
|
+
declare function RubleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1682
|
+
|
|
1683
|
+
declare function RubleSymbolIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1684
|
+
|
|
1685
|
+
declare function RupeeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1686
|
+
|
|
1687
|
+
declare function RupeeSymbolIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1688
|
+
|
|
1689
|
+
declare function SatelliteIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1690
|
+
|
|
1691
|
+
declare function SaveIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1692
|
+
|
|
1693
|
+
declare function ScanEyeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1694
|
+
|
|
1695
|
+
declare function ScanIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1696
|
+
|
|
1697
|
+
declare function SchoolIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1698
|
+
|
|
1699
|
+
declare function ScreenShareIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1700
|
+
|
|
1701
|
+
declare function ScreenShareOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1702
|
+
|
|
1703
|
+
declare function SearchIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1704
|
+
|
|
1705
|
+
declare function SendAngledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1706
|
+
|
|
1707
|
+
declare function SendDiagonalIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1708
|
+
|
|
1709
|
+
declare function ServerIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1710
|
+
|
|
1711
|
+
declare function SettingsIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1712
|
+
|
|
1713
|
+
declare function ShareIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1714
|
+
|
|
1715
|
+
declare function ShieldCheckIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1716
|
+
|
|
1717
|
+
declare function ShieldOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1718
|
+
|
|
1719
|
+
declare function ShieldUserIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1720
|
+
|
|
1721
|
+
declare function ShoppingBagIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1722
|
+
|
|
1723
|
+
declare function ShoppingCartIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1724
|
+
|
|
1725
|
+
declare function ShrinkIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1726
|
+
|
|
1727
|
+
declare function SidebarLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1728
|
+
|
|
1729
|
+
declare function SidebarRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1730
|
+
|
|
1731
|
+
declare function SignatureIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1732
|
+
|
|
1733
|
+
declare function SmartphoneChargingIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1734
|
+
|
|
1735
|
+
declare function SmartphoneIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1736
|
+
|
|
1737
|
+
declare function SmileIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1738
|
+
|
|
1739
|
+
declare function SnowflakeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1740
|
+
|
|
1741
|
+
declare function SortAscIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1742
|
+
|
|
1743
|
+
declare function SortDescIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1744
|
+
|
|
1745
|
+
declare function SparkleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1746
|
+
|
|
1747
|
+
declare function SpeakerIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1748
|
+
|
|
1749
|
+
declare function SplitHorizontalIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1750
|
+
|
|
1751
|
+
declare function SplitVerticalIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1752
|
+
|
|
1753
|
+
declare function SquareIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1754
|
+
|
|
1755
|
+
declare function StampIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1756
|
+
|
|
1757
|
+
declare function StarFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1758
|
+
|
|
1759
|
+
declare function StarHalfFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1760
|
+
|
|
1761
|
+
declare function StarHalfIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1762
|
+
|
|
1763
|
+
declare function StarIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1764
|
+
|
|
1765
|
+
declare function StepBackIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1766
|
+
|
|
1767
|
+
declare function StepForwardIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1768
|
+
|
|
1769
|
+
declare function StickyNoteIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1770
|
+
|
|
1771
|
+
declare function StopIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1772
|
+
|
|
1773
|
+
declare function StopwatchIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1774
|
+
|
|
1775
|
+
declare function StoreIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1776
|
+
|
|
1777
|
+
declare function SunIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1778
|
+
|
|
1779
|
+
declare function TableOfContentsIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1780
|
+
|
|
1781
|
+
declare function TabletIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1782
|
+
|
|
1783
|
+
declare function TagIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1784
|
+
|
|
1785
|
+
declare function TelegramFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1786
|
+
|
|
1787
|
+
declare function TelegramIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1788
|
+
|
|
1789
|
+
declare function TerminalIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1790
|
+
|
|
1791
|
+
declare function TerminalSquareIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1792
|
+
|
|
1793
|
+
declare function ThermometerIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1794
|
+
|
|
1795
|
+
declare function ThermometerSnowflakeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1796
|
+
|
|
1797
|
+
declare function ThermometerSunIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1798
|
+
|
|
1799
|
+
declare function TicketAddIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1800
|
+
|
|
1801
|
+
declare function TicketCancelIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1802
|
+
|
|
1803
|
+
declare function TicketCheckIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1804
|
+
|
|
1805
|
+
declare function TicketDiscountIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1806
|
+
|
|
1807
|
+
declare function TicketIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1808
|
+
|
|
1809
|
+
declare function TimerIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1810
|
+
|
|
1811
|
+
declare function ToggleLeftIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1812
|
+
|
|
1813
|
+
declare function ToggleRightIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1814
|
+
|
|
1815
|
+
declare function ToiletIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1816
|
+
|
|
1817
|
+
declare function TorchIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1818
|
+
|
|
1819
|
+
declare function TorchOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1820
|
+
|
|
1821
|
+
declare function TornadoIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1822
|
+
|
|
1823
|
+
declare function TrademarkIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1824
|
+
|
|
1825
|
+
declare function TrainIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1826
|
+
|
|
1827
|
+
declare function TransgenderIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1828
|
+
|
|
1829
|
+
declare function TrashIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1830
|
+
|
|
1831
|
+
declare function TreeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1832
|
+
|
|
1833
|
+
declare function TrendingDownIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1834
|
+
|
|
1835
|
+
declare function TrendingUpDownIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1836
|
+
|
|
1837
|
+
declare function TrendingUpIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1838
|
+
|
|
1839
|
+
declare function TriangleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1840
|
+
|
|
1841
|
+
declare function TrophyIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1842
|
+
|
|
1843
|
+
declare function TruckIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1844
|
+
|
|
1845
|
+
declare function TvIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1846
|
+
|
|
1847
|
+
declare function UmbrellaIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1848
|
+
|
|
1849
|
+
declare function UmbrellaOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1850
|
+
|
|
1851
|
+
declare function UndoIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1852
|
+
|
|
1853
|
+
declare function UngroupIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1854
|
+
|
|
1855
|
+
declare function UnlinkIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1856
|
+
|
|
1857
|
+
declare function UnlockIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1858
|
+
|
|
1859
|
+
declare function UploadIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1860
|
+
|
|
1861
|
+
declare function UsbIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1862
|
+
|
|
1863
|
+
declare function UserCheckIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1864
|
+
|
|
1865
|
+
declare function UserCircleIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1866
|
+
|
|
1867
|
+
declare function UserCogIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1868
|
+
|
|
1869
|
+
declare function UserEditIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1870
|
+
|
|
1871
|
+
declare function UserIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1872
|
+
|
|
1873
|
+
declare function UserLockIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1874
|
+
|
|
1875
|
+
declare function UserMinusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1876
|
+
|
|
1877
|
+
declare function UserPlusIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1878
|
+
|
|
1879
|
+
declare function UserSearchIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1880
|
+
|
|
1881
|
+
declare function UserSquareIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1882
|
+
|
|
1883
|
+
declare function UserStarIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1884
|
+
|
|
1885
|
+
declare function UsersIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1886
|
+
|
|
1887
|
+
declare function VideoIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1888
|
+
|
|
1889
|
+
declare function VideoOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1890
|
+
|
|
1891
|
+
declare function VolumeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1892
|
+
|
|
1893
|
+
declare function VolumeOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1894
|
+
|
|
1895
|
+
declare function WalletIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1896
|
+
|
|
1897
|
+
declare function WandIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1898
|
+
|
|
1899
|
+
declare function WatchIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1900
|
+
|
|
1901
|
+
declare function WebcamIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1902
|
+
|
|
1903
|
+
declare function WhatsappFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1904
|
+
|
|
1905
|
+
declare function WhatsappIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1906
|
+
|
|
1907
|
+
declare function WifiIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1908
|
+
|
|
1909
|
+
declare function WindIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1910
|
+
|
|
1911
|
+
declare function WorkflowIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1912
|
+
|
|
1913
|
+
declare function WrapTextIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1914
|
+
|
|
1915
|
+
declare function WrenchIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1916
|
+
|
|
1917
|
+
declare function XFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1918
|
+
|
|
1919
|
+
declare function XIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1920
|
+
|
|
1921
|
+
declare function YenIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1922
|
+
|
|
1923
|
+
declare function YenSymbolIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1924
|
+
|
|
1925
|
+
declare function YoutubeFilledIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1926
|
+
|
|
1927
|
+
declare function YoutubeIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1928
|
+
|
|
1929
|
+
declare function ZapIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1930
|
+
|
|
1931
|
+
declare function ZapOffIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1932
|
+
|
|
1933
|
+
declare function ZoomInIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1934
|
+
|
|
1935
|
+
declare function ZoomOutIcon({ size, ...props }: IconProps): react.JSX.Element;
|
|
1936
|
+
|
|
1937
|
+
export { Accordion, AccordionItem, AccordionPanel, AccordionTrigger, AlarmCheckIcon, AlarmClockIcon, AlarmMinusIcon, AlarmOffIcon, AlarmPlusIcon, Alert, AlertIcon, AlignBottomIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AlignTopIcon, AnchorIcon, AngryIcon, AnnoyedIcon, AntennaIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowLeftRightIcon, ArrowRightIcon, ArrowUpDownIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Avatar, AwardIcon, BabyIcon, Badge, BadgeIcon, BanIcon, BankIcon, BatteryChargeIcon, BatteryFullIcon, BatteryIcon, BatteryLowIcon, BellDotIcon, BellIcon, BellOffIcon, BikeIcon, BirdIcon, BitcoinIcon, BluetoothIcon, BluetoothOffIcon, BoatIcon, BoltIcon, BombIcon, BookIcon, BookmarkFilledIcon, BookmarkIcon, BotIcon, BoxIcon, BrainIcon, Breadcrumb, type BreadcrumbItem, BriefcaseIcon, BugIcon, BuildingIcon, BusIcon, Button, CalculatorIcon, Calendar, CalendarAddIcon, CalendarIcon, CameraIcon, CameraOffIcon, CameraSwitchIcon, CandlestickIcon, CaptionsIcon, CaptionsOffIcon, CarIcon, Card, Carousel, CarouselIndicators, CarouselNext, CarouselPrevious, CarouselSlide, CarouselTrack, CarouselViewport, CashIcon, CastIcon, CatIcon, CctvIcon, CentIcon, CentSymbolIcon, ChartDownIcon, ChartUpIcon, CheckCircleIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronFirstIcon, ChevronLastIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, CigaretteIcon, CigaretteOffIcon, CircleIcon, ClapperboardIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudMoonIcon, CloudRainIcon, CloudSnowIcon, CloudSunIcon, CloudUploadIcon, CloudyIcon, CodeIcon, CoinIcon, ColorPicker, ColumnIcon, Combobox, CommandPalette, CompassIcon, ContactIcon, ContextMenu, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuSeparator, ContextMenuTrigger, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerUpLeftIcon, CornerUpRightIcon, CpuIcon, CreativeCommonsIcon, CreditCardIcon, CropIcon, CrossCircleIcon, CrownIcon, CutIcon, CycleIcon, DatabaseIcon, DatePicker, DiaryIcon, DiceFiveIcon, DiceFourIcon, DiceOneIcon, DiceSixIcon, DiceThreeIcon, DiceTwoIcon, DirectionDownIcon, DirectionLeftIcon, DirectionRightIcon, DirectionUpIcon, DiscordFilledIcon, DiscordIcon, DislikeIcon, Divider, DogIcon, DollarIcon, DollarSymbolIcon, DotIcon, DownloadIcon, DragIcon, Drawer, DribbbleFilledIcon, DribbbleIcon, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, DropletIcon, DropletOffIcon, EditIcon, EmergencyIcon, EqualIcon, EraserIcon, EthernetIcon, EuroIcon, EuroSymbolIcon, ExpandIcon, ExternalLinkIcon, EyeClosedIcon, EyeIcon, EyeOffIcon, FacebookFilledIcon, FacebookIcon, FactoryIcon, FastForwardIcon, FemaleGenderIcon, FigmaFilledIcon, FigmaIcon, FileArchiveIcon, FileAudioIcon, FileChartIcon, FileCheckIcon, FileCodeIcon, FileCogIcon, FileCssIcon, FileDatabaseIcon, FileDownloadIcon, FileEditIcon, FileEnvIcon, FileHeartIcon, FileHtmlIcon, FileIcon, FileImageIcon, FileJsIcon, FileJsonIcon, FileJsxIcon, FileLockIcon, FileMdIcon, FileMinusIcon, FilePdfIcon, FilePlusIcon, FilePresentationIcon, FileSearchIcon, FileSpreadsheetIcon, FileTextIcon, FileTsIcon, FileTsxIcon, FileUpload, type FileUploadRejection, FileUserIcon, FileVideoIcon, FileXIcon, FilmIcon, FilterIcon, FingerprintIcon, FireExtinguisherIcon, FishIcon, FlagIcon, FlagOffIcon, FlameIcon, FlipHorizontalIcon, FlipVerticalIcon, FlowerIcon, FolderArchiveIcon, FolderCheckIcon, FolderCogIcon, FolderDownIcon, FolderDownloadIcon, FolderEditIcon, FolderHeartIcon, FolderIcon, FolderLockIcon, FolderMinusIcon, FolderOpenIcon, FolderPlusIcon, FolderSearchIcon, FolderXIcon, FrancIcon, FrancSymbolIcon, FrownIcon, GamepadIcon, GemIcon, GhostIcon, GiftIcon, GithubFilledIcon, GithubIcon, GlobeIcon, GpuIcon, GraduationCapIcon, GridIcon, GroupIcon, HandshakeIcon, HardDriveIcon, HdmiIcon, HeadphonesIcon, HeadphonesOffIcon, HeartBrokenIcon, HeartFilledIcon, HeartIcon, HelicopterIcon, HelpIcon, HeptagonIcon, HexagonIcon, HighlighterIcon, HistoryIcon, HomeIcon, HospitalIcon, HourglassIcon, ICON_REGISTRY, type IconProps, type IconRegistryEntry, IdCardIcon, ImageIcon, InboxIcon, IndentIcon, InfoIcon, Input, InstagramFilledIcon, InstagramIcon, JoystickIcon, KeyIcon, KeyboardIcon, LaptopIcon, LaughIcon, LayersIcon, LayersPlusIcon, LayoutGridIcon, LayoutKanbanIcon, LayoutListIcon, LeafIcon, LightbulbIcon, LightbulbOffIcon, LikeIcon, LineIcon, LinkIcon, LinkedinFilledIcon, LinkedinIcon, LiraIcon, LiraSymbolIcon, ListIcon, LoaderIcon, LoaderSpinnerIcon, LockIcon, MagicIcon, MailIcon, MaleGenderIcon, MapPinIcon, MaximizeIcon, MedalIcon, MedicineIcon, MehIcon, MenuIcon, MergeIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusIcon, Modal, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MountainIcon, MouseIcon, MoveIcon, MusicIcon, NumberInput, NuvoxProvider, OTPInput, OctagonIcon, OutboxIcon, OutdentIcon, PackageIcon, PackageOpenIcon, Pagination, PaintbrushIcon, PaletteIcon, PanelBottomIcon, PanelLeftIcon, PanelRightIcon, PanelTopIcon, PaperclipIcon, PassportIcon, PauseIcon, PawIcon, PencilIcon, PentagonIcon, PhoneCallIcon, PhoneIcon, PhoneInput, PhoneMissedIcon, PhoneOffIcon, PictureInPictureIcon, PiggyBankIcon, PinIcon, PlayIcon, PlaylistIcon, PlusIcon, Popover, PopoverClose, PopoverContent, PopoverTrigger, PoundIcon, PoundSymbolIcon, PowerIcon, PowerOffIcon, PrintIcon, PrinterIcon, Progress, ProjectorIcon, QrIcon, Radio, RadioIcon, RadioOffIcon, RadioTowerIcon, RainbowIcon, Rating, RectangleIcon, RecycleIcon, RedditFilledIcon, RedditIcon, RedoIcon, RefreshIcon, RepeatIcon, RepeatOnceIcon, ReplyAllIcon, ReplyIcon, ResizeIcon, RibbonIcon, RocketIcon, RotateCcwIcon, RotateCwIcon, RouterIcon, RowIcon, RubleIcon, RubleSymbolIcon, RupeeIcon, RupeeSymbolIcon, SatelliteIcon, SaveIcon, ScanEyeIcon, ScanIcon, SchoolIcon, ScreenShareIcon, ScreenShareOffIcon, SearchIcon, Select, SendAngledIcon, SendDiagonalIcon, ServerIcon, SettingsIcon, ShareIcon, ShieldCheckIcon, ShieldOffIcon, ShieldUserIcon, ShoppingBagIcon, ShoppingCartIcon, type ShowToastOptions, ShrinkIcon, SidebarLeftIcon, SidebarRightIcon, SignatureIcon, Skeleton, Slider, SmartphoneChargingIcon, SmartphoneIcon, SmileIcon, SnowflakeIcon, SortAscIcon, SortDescIcon, SparkleIcon, SpeakerIcon, Spinner, SplitHorizontalIcon, SplitVerticalIcon, SquareIcon, StampIcon, StarFilledIcon, StarHalfFilledIcon, StarHalfIcon, StarIcon, StatCard, StepBackIcon, StepForwardIcon, StickyNoteIcon, StopIcon, StopwatchIcon, StoreIcon, SunIcon, Tab, TabList, TabPanel, Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableOfContentsIcon, TableRow, TabletIcon, Tabs, TagIcon, TelegramFilledIcon, TelegramIcon, TerminalIcon, TerminalSquareIcon, Textarea, ThemedPortal, ThermometerIcon, ThermometerSnowflakeIcon, ThermometerSunIcon, TicketAddIcon, TicketCancelIcon, TicketCheckIcon, TicketDiscountIcon, TicketIcon, TimePicker, Timeline, TimelineItem, TimerIcon, ToastProvider, Toggle, ToggleLeftIcon, ToggleRightIcon, ToiletIcon, Tooltip, TorchIcon, TorchOffIcon, TornadoIcon, TrademarkIcon, TrainIcon, TransgenderIcon, TrashIcon, TreeIcon, TrendingDownIcon, TrendingUpDownIcon, TrendingUpIcon, TriangleIcon, TrophyIcon, TruckIcon, TvIcon, UmbrellaIcon, UmbrellaOffIcon, UndoIcon, UngroupIcon, UnlinkIcon, UnlockIcon, UploadIcon, UsbIcon, UserCheckIcon, UserCircleIcon, UserCogIcon, UserEditIcon, UserIcon, UserLockIcon, UserMinusIcon, UserPlusIcon, UserSearchIcon, UserSquareIcon, UserStarIcon, UsersIcon, VideoIcon, VideoOffIcon, VolumeIcon, VolumeOffIcon, WalletIcon, WandIcon, WatchIcon, WebcamIcon, WhatsappFilledIcon, WhatsappIcon, WifiIcon, WindIcon, WorkflowIcon, WrapTextIcon, WrenchIcon, XFilledIcon, XIcon, YenIcon, YenSymbolIcon, YoutubeFilledIcon, YoutubeIcon, ZapIcon, ZapOffIcon, ZoomInIcon, ZoomOutIcon, useToast, withAccentOverride, withThemeOverride };
|