@assure-one/design-system 1.33.0 → 1.35.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.
@@ -0,0 +1,509 @@
1
+ import { S as SystemTokens, i as iconSizes } from './system-lyhOUTpa.js';
2
+ import * as react_jsx_runtime from 'react/jsx-runtime';
3
+
4
+ /**
5
+ * Shared component vocabulary (W3-01, ADR-007, target architecture §28).
6
+ *
7
+ * Every component that offers one of these axes must use *this* type for it,
8
+ * never a private union with the same words. Components that support only a
9
+ * subset narrow with `Extract<…>`; nothing may widen a list. The lists are
10
+ * closed: adding a word is an ADR-007 amendment, not a component change.
11
+ *
12
+ * Types only — this module has no runtime and adds nothing to `dist/index.js`.
13
+ * All four names are `@experimental` until decision D4 (`danger` vs
14
+ * `destructive`) is resolved and the Wave 3 components that adopt them are
15
+ * marked stable (ADR-007 acceptance condition).
16
+ */
17
+
18
+ /**
19
+ * Semantic meaning → colour family.
20
+ *
21
+ * `intent` says *what the element means*; `variant` says how loudly. A
22
+ * `danger` action, a `danger` badge and a `danger` alert share one colour
23
+ * family (`--ds-color-danger-*`) at three different emphases.
24
+ *
25
+ * `danger` is the canonical word (decision D4, default); `destructive` is
26
+ * accepted by components as a deprecated alias for the 2.x line and is *not*
27
+ * a member of this type.
28
+ *
29
+ * @experimental
30
+ */
31
+ type Intent = "neutral" | "brand" | "info" | "success" | "warning" | "danger";
32
+ /**
33
+ * Visual emphasis — how strongly the element asserts itself, independent of
34
+ * what it means. Actions, badges, alerts and chips each pick the subset that
35
+ * applies (`Extract<Variant, "solid" | "soft" | "outline">` for Badge).
36
+ *
37
+ * - `solid` — filled with the intent colour, contrasting foreground
38
+ * - `soft` — tinted background, intent-coloured foreground
39
+ * - `outline` — border only, transparent background
40
+ * - `ghost` — no border or background until hovered
41
+ * - `link` — inline text, underlined on hover; actions only
42
+ *
43
+ * State (`disabled`, `loading`, `pressed`, `selected`, …) is never a variant:
44
+ * it is a boolean prop reflected as a `data-*` or ARIA attribute.
45
+ *
46
+ * @experimental
47
+ */
48
+ type Variant = "solid" | "soft" | "outline" | "ghost" | "link";
49
+ /**
50
+ * The shared control size step (ADR-013, W2-03): one name means one outer
51
+ * height on every control that offers it, read from
52
+ * `--ds-control-height-{size}`. Derived from the token scale so the type and
53
+ * the tokens cannot disagree; it resolves to `"xs" | "sm" | "md" | "lg" | "xl"`.
54
+ *
55
+ * The pixels behind each step are decision D5; existing components keep
56
+ * today's geometry under these names until 2.0 (compat token per control).
57
+ *
58
+ * @experimental
59
+ */
60
+ type ControlSize = keyof SystemTokens["control"]["height"];
61
+ /**
62
+ * Corner treatment, offered only where it is a real choice (W2-07 radius roles,
63
+ * target architecture §18, §28).
64
+ *
65
+ * - `rounded` — the component's radius role (`--ds-radius-control`,
66
+ * `--ds-radius-badge`, …)
67
+ * - `pill` — `--ds-radius-full`
68
+ * - `square` — no rounding beyond the smallest reference step; icon tiles only
69
+ *
70
+ * A component's *default* shape is whatever it renders today; changing a
71
+ * default is decision D1 and waits for 2.0.
72
+ *
73
+ * @experimental
74
+ */
75
+ type Shape = "rounded" | "pill" | "square";
76
+
77
+ /**
78
+ * The icon contract (target architecture §37; W3-18, W3-19, W3-20): the props
79
+ * every catalogue icon takes, the `<svg>` root they all render through, and
80
+ * `createIcon()`, which builds an icon from path data or elements.
81
+ *
82
+ * The catalogue itself is one module per icon next to this file
83
+ * (`src/icons/<name>-icon.tsx`); `src/icons/index.ts` and the compat facade
84
+ * `src/primitives/icons.tsx` are generated from those modules by
85
+ * `scripts/icons/generate.mjs`. `Icon` and `iconSizePx` are exported for the
86
+ * catalogue modules only — neither barrel re-exports them.
87
+ */
88
+ /**
89
+ * Named icon boxes — the four `--ds-icon-size-*` steps of W2-10 (12 / 14 / 16 /
90
+ * 20 px), spelled with the shared size vocabulary (ADR-007) and derived from the
91
+ * token scale so the type and the tokens cannot disagree.
92
+ */
93
+ type IconSize = Extract<ControlSize, keyof typeof iconSizes>;
94
+ interface IconProps extends React.SVGAttributes<SVGElement> {
95
+ /**
96
+ * The icon box. A size name renders `var(--ds-icon-size-<name>)` — with the
97
+ * legacy `--icon-size-<name>` and then the token's pixel value as fallbacks —
98
+ * so a theme can retune the boxes; a number is a pixel box, as before.
99
+ * Defaults to 24, the grid the glyphs are drawn on.
100
+ */
101
+ size?: IconSize | number;
102
+ /**
103
+ * Stroke width of every stroked element, set once on the root `<svg>` and
104
+ * inherited. Defaults to 1.5, the catalogue's baseline; the few glyphs drawn
105
+ * heavier (`XIcon`, `CheckIcon`, `BoldIcon`) default to their own weight.
106
+ */
107
+ strokeWidth?: number | string;
108
+ /**
109
+ * Accessible name. Icons are decorative (`aria-hidden`); a `title` exposes
110
+ * the svg as `role="img"` with a `<title>` child. (An `aria-label` alone
111
+ * still lands on the hidden svg, as it always has — C-DOM-15 freezes that
112
+ * DOM for Pro; use `title` to name an icon.)
113
+ */
114
+ title?: string;
115
+ }
116
+ /** What every catalogue icon and every `createIcon()` product is. */
117
+ interface IconComponent {
118
+ (props: IconProps): React.JSX.Element;
119
+ displayName?: string;
120
+ }
121
+ interface IconDefinition {
122
+ /** Component name, e.g. `"ArchiveIcon"`; becomes the `displayName`. */
123
+ name: string;
124
+ /**
125
+ * What to draw. Path data strings become `currentColor` strokes with round
126
+ * caps and joins, the catalogue's outline style; pass elements for anything
127
+ * else (filled dots, rects, a mark's fixed colours). Elements must not set
128
+ * their own `strokeWidth` — it lives on the root so the prop works.
129
+ */
130
+ paths: string | readonly string[] | React.ReactNode;
131
+ /** Defaults to `"0 0 24 24"`. A product icon drawn on another grid sets its own. */
132
+ viewBox?: string;
133
+ /** This glyph's default stroke width when the caller passes none. Defaults to 1.5. */
134
+ strokeWidth?: number | string;
135
+ }
136
+ /**
137
+ * Builds an icon component with the catalogue's props, sizing, stroke and
138
+ * accessibility contract from path data or SVG elements. Products use it for
139
+ * icons that are theirs (vendor logos, annotation shapes) without inlining
140
+ * `<svg>` at call sites; the catalogue uses it for its newer glyphs.
141
+ *
142
+ * @example
143
+ * const ArchiveIcon = createIcon({
144
+ * name: "ArchiveIcon",
145
+ * paths: ["M3 3h18a1 1 0 011 1v3a1 1 0 01-1 1H3a1 1 0 01-1-1V4a1 1 0 011-1z", "M4 8v11a2 2 0 002 2h12a2 2 0 002-2V8", "M10 12h4"],
146
+ * });
147
+ */
148
+ declare function createIcon(definition: IconDefinition): IconComponent;
149
+
150
+ declare function AlertCircleIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
151
+
152
+ declare function AlertTriangleIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
153
+
154
+ declare function AlertTriangleSolidIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
155
+
156
+ declare const ArchiveIcon: IconComponent;
157
+
158
+ declare function ArrowDownIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
159
+
160
+ declare function ArrowLeftIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
161
+
162
+ declare function ArrowRightIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
163
+
164
+ /**
165
+ * @deprecated Use `ArrowRightIcon` — it is the same path; "small" was never a
166
+ * different drawing. This alias is the identical component and stays through 2.x.
167
+ */
168
+ declare const ArrowRightSmallIcon: typeof ArrowRightIcon;
169
+
170
+ declare function ArrowUpIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
171
+
172
+ declare function AtSignIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
173
+
174
+ declare function BarChartIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
175
+
176
+ declare function BellIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
177
+
178
+ declare function BoldIcon({ size, strokeWidth, ...props }: IconProps): react_jsx_runtime.JSX.Element;
179
+
180
+ declare const BrainIcon: IconComponent;
181
+
182
+ declare function BriefcaseIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
183
+
184
+ declare function Building2Icon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
185
+
186
+ declare function BuildingIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
187
+
188
+ declare function CalendarIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
189
+
190
+ declare function ChatBubbleIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
191
+
192
+ declare function CheckCircle2Icon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
193
+
194
+ declare function CheckCircleSolidIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
195
+
196
+ declare function CheckIcon({ size, strokeWidth, ...props }: IconProps): react_jsx_runtime.JSX.Element;
197
+
198
+ declare function ChevronDownIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
199
+
200
+ declare function ChevronLeftIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
201
+
202
+ declare function ChevronRightIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
203
+
204
+ declare function ChevronUpIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
205
+
206
+ /** Collapse — the pair of `ChevronsUpDownIcon`. */
207
+ declare const ChevronsDownUpIcon: IconComponent;
208
+
209
+ declare function ChevronsUpDownIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
210
+
211
+ declare function CircleDotIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
212
+
213
+ declare function CircleIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
214
+
215
+ declare function ClipboardCheckIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
216
+
217
+ declare function ClockIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
218
+
219
+ declare function XIcon({ size, strokeWidth, ...props }: IconProps): react_jsx_runtime.JSX.Element;
220
+
221
+ /**
222
+ * @deprecated Use `XIcon` — the same glyph under its lucide name (the catalogue
223
+ * drew it twice). This alias is the identical component and stays through 2.x.
224
+ */
225
+ declare const CloseIcon: typeof XIcon;
226
+
227
+ declare function CommandIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
228
+
229
+ declare function CopyIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
230
+
231
+ declare function CornerDownLeftIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
232
+
233
+ declare function CreditCardIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
234
+
235
+ declare function DocumentIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
236
+
237
+ declare function DollarSignIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
238
+
239
+ declare function DownloadIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
240
+
241
+ /** Pop-out / opens elsewhere — box with an arrow leaving the top-right corner. */
242
+ declare const ExternalLinkIcon: IconComponent;
243
+
244
+ /**
245
+ * ExtractIcon — gradient (Pro purple → cyan) tri-sparkle used for AI
246
+ * "Extract" affordances. Unlike the currentColor catalog, the fill is a
247
+ * fixed brand gradient; `size` scales it while preserving the 16:12 ratio.
248
+ * Gradient/clip ids are per-instance (useId) so multiple icons don't clash.
249
+ */
250
+ declare function ExtractIcon({ size, className, ...props }: IconProps): react_jsx_runtime.JSX.Element;
251
+
252
+ declare function EyeIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
253
+
254
+ declare function EyeOffIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
255
+
256
+ declare function FileIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
257
+
258
+ declare function FileReturnIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
259
+
260
+ declare function FileTextIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
261
+
262
+ /**
263
+ * FilterIcon — funnel mark used for filter popover triggers across list
264
+ * pages (clients, workflow, billing, organizers…). Renders the same
265
+ * lucide-style polygon at any size; pair with a corner notification dot
266
+ * to surface active filter count.
267
+ */
268
+ declare function FilterIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
269
+
270
+ declare function FlagIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
271
+
272
+ declare function FolderClosedIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
273
+
274
+ declare function FolderOpenIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
275
+
276
+ declare function FolderPlusIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
277
+
278
+ /** Folder with an up-arrow — the "upload documents" / document-request mark. */
279
+ declare function FolderUpIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
280
+
281
+ declare function GlobeIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
282
+
283
+ /**
284
+ * GoogleBrandIcon — Google four-color "G" mark. Brand-locked colors,
285
+ * does NOT respond to currentColor. Use only in provider-list UIs
286
+ * (OAuth buttons, integration chips). Standard 24-grid.
287
+ */
288
+ declare function GoogleBrandIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
289
+
290
+ /** Six-dot drag handle for sortable rows and kanban cards. */
291
+ declare const GripVerticalIcon: IconComponent;
292
+
293
+ declare function HelpCircleIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
294
+
295
+ declare function HistoryIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
296
+
297
+ declare function HomeIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
298
+
299
+ declare function InboxIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
300
+
301
+ declare function InfoCircleSolidIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
302
+
303
+ declare function InfoIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
304
+
305
+ declare function ItalicIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
306
+
307
+ declare function KanbanIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
308
+
309
+ declare function KeyIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
310
+
311
+ /** Landmark / "bank" glyph (columns + pediment) — the accounting service mark. */
312
+ declare function LandmarkIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
313
+
314
+ declare const LayersIcon: IconComponent;
315
+
316
+ declare function LayoutDashboardIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
317
+
318
+ declare function LayoutGridIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
319
+
320
+ declare function LayoutListIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
321
+
322
+ declare function LightningIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
323
+
324
+ declare function Link2Icon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
325
+
326
+ declare function LinkIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
327
+
328
+ declare function ListChecksIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
329
+
330
+ declare function ListIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
331
+
332
+ declare function ListOrderedIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
333
+
334
+ /**
335
+ * LoaderIcon — animated spinner. Render with `className="animate-spin"`
336
+ * (or `motion-safe:animate-spin` if you want to respect `prefers-reduced-
337
+ * motion`; the catalog doesn't gate this itself because the spinner IS
338
+ * the indicator for many flows).
339
+ *
340
+ * Visual contract: a dim full-circle ring + a brighter quarter-arc on top.
341
+ * When rotated, the bright arc creates the "leading edge" of the spinner.
342
+ */
343
+ declare function LoaderIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
344
+
345
+ declare function LockIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
346
+
347
+ declare function LockKeyholeIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
348
+
349
+ declare function LockOpenIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
350
+
351
+ declare function LogOutIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
352
+
353
+ declare function MailIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
354
+
355
+ declare function MapPinIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
356
+
357
+ /** Enter full screen / expand a panel — four outward corners. */
358
+ declare const MaximizeIcon: IconComponent;
359
+
360
+ declare function MenuIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
361
+
362
+ declare function MessageCircleIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
363
+
364
+ declare function MessageCircleWarningIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
365
+
366
+ declare const MicIcon: IconComponent;
367
+
368
+ /**
369
+ * MicrosoftBrandIcon — Microsoft four-square mark in red / green / blue /
370
+ * yellow. Brand-locked colors, does NOT respond to currentColor. Use
371
+ * inside Microsoft OAuth signin buttons, Outlook / Office integration
372
+ * chips, and similar provider-list UIs. Standard 24-grid (10×10 squares
373
+ * with 2u gaps).
374
+ */
375
+ declare function MicrosoftBrandIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
376
+
377
+ /** Leave full screen / shrink a panel — four inward corners. */
378
+ declare const MinimizeIcon: IconComponent;
379
+
380
+ declare function MinusIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
381
+
382
+ declare function MonitorIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
383
+
384
+ declare function MoonIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
385
+
386
+ declare function MoreHorizontalIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
387
+
388
+ declare function MoveIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
389
+
390
+ declare function PaletteIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
391
+
392
+ declare function PanelLeftCloseIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
393
+
394
+ declare function PanelLeftIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
395
+
396
+ /** Dock to the right — the mirror of `PanelLeftIcon`. */
397
+ declare const PanelRightIcon: IconComponent;
398
+
399
+ declare function PaperclipIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
400
+
401
+ declare function PauseIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
402
+
403
+ declare function PenSignIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
404
+
405
+ /** Pen-tool / nibbed signature pen — the e-signature mark. */
406
+ declare function PenToolIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
407
+
408
+ declare function PencilIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
409
+
410
+ declare function PhoneIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
411
+
412
+ declare function PlayIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
413
+
414
+ declare function PlusIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
415
+
416
+ declare function ReceiptIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
417
+
418
+ /** Two clockwise arrows — refresh / sync. `RotateCcwIcon` is the single-arrow undo. */
419
+ declare const RefreshCwIcon: IconComponent;
420
+
421
+ declare function ReplyIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
422
+
423
+ declare function RotateCcwIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
424
+
425
+ declare function SaveIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
426
+
427
+ declare function SearchIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
428
+
429
+ declare function SendIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
430
+
431
+ declare function SettingsIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
432
+
433
+ declare function ShieldIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
434
+
435
+ /** Formula / sum — the Greek capital sigma. */
436
+ declare const SigmaIcon: IconComponent;
437
+
438
+ declare function SlashIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
439
+
440
+ declare function SmartphoneIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
441
+
442
+ declare function SparkleIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
443
+
444
+ declare function SparklesIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
445
+
446
+ declare function StarIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
447
+
448
+ declare function StopIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
449
+
450
+ declare function StrikethroughIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
451
+
452
+ declare function SunIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
453
+
454
+ declare function TableIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
455
+
456
+ declare function TagIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
457
+
458
+ declare function TeamIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
459
+
460
+ declare const ThumbsDownIcon: IconComponent;
461
+
462
+ declare const ThumbsUpIcon: IconComponent;
463
+
464
+ /** Stopwatch — elapsed time and timers; `ClockIcon` is wall-clock time. */
465
+ declare const TimerIcon: IconComponent;
466
+
467
+ declare function Trash2Icon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
468
+
469
+ declare function TrashIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
470
+
471
+ /**
472
+ * Filled trash can for destructive affordances inside small round buttons,
473
+ * where the outline `TrashIcon` reads as thin. Same family as the solid status
474
+ * icons: the slots are knockouts.
475
+ */
476
+ declare const TrashSolidIcon: IconComponent;
477
+
478
+ declare function TrendingDownIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
479
+
480
+ declare function TrendingUpIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
481
+
482
+ declare function UnderlineIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
483
+
484
+ declare function UploadIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
485
+
486
+ declare function UserCircleIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
487
+
488
+ declare function UserIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
489
+
490
+ declare function UsersIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
491
+
492
+ /** Video camera; pair with `PlayIcon` for playback. */
493
+ declare const VideoIcon: IconComponent;
494
+
495
+ /** Speaker with two sound waves — audio on. */
496
+ declare const Volume2Icon: IconComponent;
497
+
498
+ /** Speaker with a cross — muted. */
499
+ declare const VolumeXIcon: IconComponent;
500
+
501
+ declare function WorkflowIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
502
+
503
+ declare function XCircleSolidIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
504
+
505
+ declare function ZoomInIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
506
+
507
+ declare function ZoomOutIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
508
+
509
+ export { FolderClosedIcon as $, AlertCircleIcon as A, BarChartIcon as B, type ControlSize as C, CircleDotIcon as D, CircleIcon as E, ClipboardCheckIcon as F, ClockIcon as G, CloseIcon as H, type Intent as I, CommandIcon as J, CopyIcon as K, CornerDownLeftIcon as L, CreditCardIcon as M, DocumentIcon as N, DollarSignIcon as O, DownloadIcon as P, ExternalLinkIcon as Q, ExtractIcon as R, type Shape as S, EyeIcon as T, EyeOffIcon as U, type Variant as V, FileIcon as W, FileReturnIcon as X, FileTextIcon as Y, FilterIcon as Z, FlagIcon as _, AlertTriangleIcon as a, ReplyIcon as a$, FolderOpenIcon as a0, FolderPlusIcon as a1, FolderUpIcon as a2, GlobeIcon as a3, GoogleBrandIcon as a4, GripVerticalIcon as a5, HelpCircleIcon as a6, HistoryIcon as a7, HomeIcon as a8, type IconComponent as a9, MapPinIcon as aA, MaximizeIcon as aB, MenuIcon as aC, MessageCircleIcon as aD, MessageCircleWarningIcon as aE, MicIcon as aF, MicrosoftBrandIcon as aG, MinimizeIcon as aH, MinusIcon as aI, MonitorIcon as aJ, MoonIcon as aK, MoreHorizontalIcon as aL, MoveIcon as aM, PaletteIcon as aN, PanelLeftCloseIcon as aO, PanelLeftIcon as aP, PanelRightIcon as aQ, PaperclipIcon as aR, PauseIcon as aS, PenSignIcon as aT, PenToolIcon as aU, PencilIcon as aV, PhoneIcon as aW, PlayIcon as aX, PlusIcon as aY, ReceiptIcon as aZ, RefreshCwIcon as a_, type IconDefinition as aa, type IconProps as ab, type IconSize as ac, InboxIcon as ad, InfoCircleSolidIcon as ae, InfoIcon as af, ItalicIcon as ag, KanbanIcon as ah, KeyIcon as ai, LandmarkIcon as aj, LayersIcon as ak, LayoutDashboardIcon as al, LayoutGridIcon as am, LayoutListIcon as an, LightningIcon as ao, Link2Icon as ap, LinkIcon as aq, ListChecksIcon as ar, ListIcon as as, ListOrderedIcon as at, LoaderIcon as au, LockIcon as av, LockKeyholeIcon as aw, LockOpenIcon as ax, LogOutIcon as ay, MailIcon as az, AlertTriangleSolidIcon as b, RotateCcwIcon as b0, SaveIcon as b1, SearchIcon as b2, SendIcon as b3, SettingsIcon as b4, ShieldIcon as b5, SigmaIcon as b6, SlashIcon as b7, SmartphoneIcon as b8, SparkleIcon as b9, XIcon as bA, ZoomInIcon as bB, ZoomOutIcon as bC, createIcon as bD, SparklesIcon as ba, StarIcon as bb, StopIcon as bc, StrikethroughIcon as bd, SunIcon as be, TableIcon as bf, TagIcon as bg, TeamIcon as bh, ThumbsDownIcon as bi, ThumbsUpIcon as bj, TimerIcon as bk, Trash2Icon as bl, TrashIcon as bm, TrashSolidIcon as bn, TrendingDownIcon as bo, TrendingUpIcon as bp, UnderlineIcon as bq, UploadIcon as br, UserCircleIcon as bs, UserIcon as bt, UsersIcon as bu, VideoIcon as bv, Volume2Icon as bw, VolumeXIcon as bx, WorkflowIcon as by, XCircleSolidIcon as bz, ArchiveIcon as c, ArrowDownIcon as d, ArrowLeftIcon as e, ArrowRightIcon as f, ArrowRightSmallIcon as g, ArrowUpIcon as h, AtSignIcon as i, BellIcon as j, BoldIcon as k, BrainIcon as l, BriefcaseIcon as m, Building2Icon as n, BuildingIcon as o, CalendarIcon as p, ChatBubbleIcon as q, CheckCircle2Icon as r, CheckCircleSolidIcon as s, CheckIcon as t, ChevronDownIcon as u, ChevronLeftIcon as v, ChevronRightIcon as w, ChevronUpIcon as x, ChevronsDownUpIcon as y, ChevronsUpDownIcon as z };