@octavius2929-personal/design-system 0.14.0 → 0.16.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/dist/index.js CHANGED
@@ -101,10 +101,264 @@ var Container = ContainerForwarded;
101
101
  import { forwardRef as forwardRef2 } from "react";
102
102
 
103
103
  // src/components/typography/use-styles.ts
104
- import { useMemo as useMemo4 } from "react";
104
+ import { useMemo as useMemo5 } from "react";
105
+
106
+ // ../core/dist/index.js
107
+ import { useEffect as useEffect2, useMemo as useMemo3, useState as useState2 } from "react";
108
+ var tokens = {
109
+ font: {
110
+ display: "'DM Serif Display', 'Times New Roman', serif",
111
+ text: "'Newsreader', Georgia, serif",
112
+ mono: "'IBM Plex Mono', 'SFMono-Regular', monospace",
113
+ black: "'UnifrakturMaguntia', 'Grenze Gotisch', serif"
114
+ },
115
+ // Roles tipográficos: tamaño/interlineado/peso/tracking listos para typography.css.ts.
116
+ text: {
117
+ eyebrow: { size: "0.694rem", lineHeight: "1.2", weight: "500", letterSpacing: "0.14em" },
118
+ display: { size: "5.6rem", lineHeight: "1.05", weight: "600", letterSpacing: "-0.01em" },
119
+ h1: { size: "2.9rem", lineHeight: "1.05", weight: "600", letterSpacing: "-0.01em" },
120
+ h2: { size: "2.1rem", lineHeight: "1.2", weight: "600", letterSpacing: "0" },
121
+ h3: { size: "1.563rem", lineHeight: "1.2", weight: "500", letterSpacing: "0" },
122
+ h4: { size: "1.25rem", lineHeight: "1.2", weight: "600", letterSpacing: "0" },
123
+ body: { size: "1rem", lineHeight: "1.7", weight: "400", letterSpacing: "0" },
124
+ lead: { size: "1.25rem", lineHeight: "1.7", weight: "400", letterSpacing: "0" },
125
+ small: { size: "0.95rem", lineHeight: "1.5", weight: "400", letterSpacing: "0" },
126
+ caption: { size: "0.833rem", lineHeight: "1.5", weight: "400", letterSpacing: "0.04em" }
127
+ },
128
+ space: {
129
+ s0: "0",
130
+ s1: "0.25rem",
131
+ // 4
132
+ s2: "0.5rem",
133
+ // 8
134
+ s3: "0.75rem",
135
+ // 12
136
+ s4: "1rem",
137
+ // 16
138
+ s5: "1.5rem",
139
+ // 24
140
+ s6: "2rem",
141
+ // 32
142
+ s7: "3rem",
143
+ // 48
144
+ s8: "4rem",
145
+ // 64
146
+ s9: "6rem"
147
+ // 96
148
+ },
149
+ radius: { none: "0px", sm: "3px", md: "5px", lg: "8px", base: "4px", full: "999px" },
150
+ border: { hair: "1px", rule: "1.5px", heavy: "2px" },
151
+ // Tracking de mayúsculas: escala coherente alineada al uso real (eyebrow = widest).
152
+ tracking: { tight: "-0.01em", normal: "0", wide: "0.04em", wider: "0.1em", widest: "0.14em" },
153
+ weight: { light: "300", regular: "400", medium: "500", semibold: "600", bold: "700" },
154
+ dur: { fast: "120ms", base: "200ms", slow: "360ms" },
155
+ ease: { ink: "cubic-bezier(0.2, 0, 0, 1)" },
156
+ shadow: {
157
+ sm: "0 1px 0 rgba(20,17,14,0.06)",
158
+ md: "0 2px 10px -4px rgba(20,17,14,0.22)",
159
+ lg: "0 12px 32px -10px rgba(20,17,14,0.34)"
160
+ }
161
+ };
162
+ var tintaSchema = {
163
+ light: {
164
+ ...tokens,
165
+ color: {
166
+ bg1: "#F8F7F4",
167
+ bg2: "#FFFFFF",
168
+ bg3: "#EDEBE6",
169
+ bgInset: "#E4E1DA",
170
+ fg1: "#15130F",
171
+ fg2: "#494640",
172
+ fg3: "#737069",
173
+ fgOnAccent: "#F8F7F4",
174
+ border1: "rgba(21, 19, 15, 0.12)",
175
+ border2: "rgba(21, 19, 15, 0.26)",
176
+ borderStrong: "rgba(21, 19, 15, 0.85)",
177
+ accent: "#7B1E1E",
178
+ accentHover: "#631616",
179
+ accentSoft: "rgba(123, 30, 30, 0.10)",
180
+ ok: "#3E5C3A",
181
+ warn: "#8A6A1E",
182
+ danger: "#7B1E1E",
183
+ dangerHover: "#631616",
184
+ dangerSoft: "rgba(123, 30, 30, 0.10)",
185
+ info: "#2E4257",
186
+ focus: "#7B1E1E",
187
+ scrim: "rgba(20, 17, 14, 0.55)"
188
+ }
189
+ },
190
+ dark: {
191
+ ...tokens,
192
+ color: {
193
+ bg1: "#100E0B",
194
+ bg2: "#1A1611",
195
+ bg3: "#070605",
196
+ bgInset: "#221D16",
197
+ fg1: "#F2EDE2",
198
+ fg2: "#B7AF9F",
199
+ fg3: "#878070",
200
+ fgOnAccent: "#F2EDE2",
201
+ border1: "rgba(242, 237, 226, 0.13)",
202
+ border2: "rgba(242, 237, 226, 0.26)",
203
+ borderStrong: "rgba(242, 237, 226, 0.80)",
204
+ accent: "#B23A3A",
205
+ accentHover: "#CC4A4A",
206
+ accentSoft: "rgba(178, 58, 58, 0.16)",
207
+ ok: "#7FA178",
208
+ warn: "#C7A04E",
209
+ danger: "#C24A4A",
210
+ dangerHover: "#D45C5C",
211
+ dangerSoft: "rgba(194, 74, 74, 0.16)",
212
+ info: "#6E92B4",
213
+ focus: "#CC4A4A",
214
+ scrim: "rgba(7, 6, 5, 0.65)"
215
+ }
216
+ },
217
+ sepia: {
218
+ ...tokens,
219
+ color: {
220
+ bg1: "#E9DDC4",
221
+ bg2: "#F2E9D5",
222
+ bg3: "#DCCDAC",
223
+ bgInset: "#D2C09B",
224
+ fg1: "#2A2013",
225
+ fg2: "#5A4A33",
226
+ fg3: "#6E6046",
227
+ fgOnAccent: "#F2E9D5",
228
+ border1: "rgba(42, 32, 19, 0.16)",
229
+ border2: "rgba(42, 32, 19, 0.32)",
230
+ borderStrong: "rgba(42, 32, 19, 0.82)",
231
+ accent: "#7A2E12",
232
+ accentHover: "#5F2109",
233
+ accentSoft: "rgba(122, 46, 18, 0.12)",
234
+ ok: "#4A5A2E",
235
+ warn: "#8A6A1E",
236
+ danger: "#7A2E12",
237
+ dangerHover: "#5F2109",
238
+ dangerSoft: "rgba(122, 46, 18, 0.12)",
239
+ info: "#3C4E57",
240
+ focus: "#7A2E12",
241
+ scrim: "rgba(42, 32, 19, 0.55)"
242
+ }
243
+ },
244
+ contrast: {
245
+ ...tokens,
246
+ color: {
247
+ bg1: "#FFFFFF",
248
+ bg2: "#FFFFFF",
249
+ bg3: "#F2F2F2",
250
+ bgInset: "#EAEAEA",
251
+ fg1: "#000000",
252
+ fg2: "#000000",
253
+ fg3: "#2B2B2B",
254
+ fgOnAccent: "#FFFFFF",
255
+ border1: "#000000",
256
+ border2: "#000000",
257
+ borderStrong: "#000000",
258
+ accent: "#000000",
259
+ accentHover: "#2B2B2B",
260
+ accentSoft: "rgba(0, 0, 0, 0.08)",
261
+ ok: "#000000",
262
+ warn: "#000000",
263
+ danger: "#8B0000",
264
+ dangerHover: "#6B0000",
265
+ dangerSoft: "rgba(139, 0, 0, 0.10)",
266
+ info: "#000000",
267
+ focus: "#000000",
268
+ scrim: "rgba(0, 0, 0, 0.7)"
269
+ }
270
+ }
271
+ };
272
+ var schemas = { tinta: tintaSchema };
273
+ var modeNames2 = ["light", "dark", "sepia", "contrast"];
274
+ function resolveMode(preference, systemMode) {
275
+ return preference === "system" ? systemMode : preference;
276
+ }
277
+ function useThemeStore(options, storage, system) {
278
+ const { defaultSchema = "tinta", defaultMode = "light" } = options;
279
+ const [persisted] = useState2(() => storage.read());
280
+ const [schema, setSchema] = useState2(persisted?.schema ?? defaultSchema);
281
+ const [preference, setPreference] = useState2(
282
+ persisted?.preference ?? defaultMode
283
+ );
284
+ const [systemMode, setSystemMode] = useState2(() => system.get());
285
+ useEffect2(() => {
286
+ if (preference !== "system") return;
287
+ const update = () => setSystemMode(system.get());
288
+ update();
289
+ return system.subscribe(update);
290
+ }, [preference, system]);
291
+ const mode = resolveMode(preference, systemMode);
292
+ useEffect2(() => {
293
+ storage.write({ schema, preference });
294
+ }, [schema, preference, storage]);
295
+ return useMemo3(
296
+ () => ({
297
+ schema,
298
+ mode,
299
+ preference,
300
+ colorTokens: schemas[schema][mode].color,
301
+ setSchema,
302
+ setMode: setPreference,
303
+ toggleMode: () => setPreference(mode === "dark" ? "light" : "dark"),
304
+ cycleMode: () => {
305
+ const next = modeNames2[(modeNames2.indexOf(mode) + 1) % modeNames2.length];
306
+ if (next) setPreference(next);
307
+ }
308
+ }),
309
+ [schema, mode, preference]
310
+ );
311
+ }
312
+
313
+ // src/theme/context/theme-context.tsx
314
+ import { createContext as createContext2, useContext as useContext2, useMemo as useMemo4 } from "react";
315
+
316
+ // src/theme/adapters.ts
317
+ var SYSTEM_QUERIES = ["(prefers-contrast: more)", "(prefers-color-scheme: dark)"];
318
+ function createWebStorageAdapter(storageKey, persist) {
319
+ return {
320
+ read() {
321
+ if (!persist || typeof window === "undefined") return null;
322
+ try {
323
+ const raw = window.localStorage.getItem(storageKey);
324
+ return raw ? JSON.parse(raw) : null;
325
+ } catch {
326
+ return null;
327
+ }
328
+ },
329
+ write(value) {
330
+ if (!persist || typeof window === "undefined") return;
331
+ try {
332
+ window.localStorage.setItem(storageKey, JSON.stringify(value));
333
+ } catch {
334
+ }
335
+ }
336
+ };
337
+ }
338
+ function createWebSystemModeAdapter() {
339
+ function get() {
340
+ if (typeof window === "undefined" || typeof window.matchMedia !== "function") return "light";
341
+ if (window.matchMedia("(prefers-contrast: more)").matches) return "contrast";
342
+ if (window.matchMedia("(prefers-color-scheme: dark)").matches) return "dark";
343
+ return "light";
344
+ }
345
+ return {
346
+ get,
347
+ subscribe(onChange) {
348
+ if (typeof window === "undefined" || typeof window.matchMedia !== "function") {
349
+ return () => {
350
+ };
351
+ }
352
+ const mqls = SYSTEM_QUERIES.map((q) => window.matchMedia(q));
353
+ for (const mql of mqls) mql.addEventListener?.("change", onChange);
354
+ return () => {
355
+ for (const mql of mqls) mql.removeEventListener?.("change", onChange);
356
+ };
357
+ }
358
+ };
359
+ }
105
360
 
106
361
  // src/theme/context/theme-context.tsx
107
- import { createContext as createContext2, useContext as useContext2, useEffect as useEffect2, useMemo as useMemo3, useState as useState2 } from "react";
108
362
  import { jsx as jsx3 } from "react/jsx-runtime";
109
363
  var noop = () => {
110
364
  };
@@ -119,28 +373,6 @@ var DEFAULT_VALUE = {
119
373
  cycleMode: noop
120
374
  };
121
375
  var ThemeContext = createContext2(null);
122
- function resolveSystemMode() {
123
- if (typeof window === "undefined" || typeof window.matchMedia !== "function") return "light";
124
- if (window.matchMedia("(prefers-contrast: more)").matches) return "contrast";
125
- if (window.matchMedia("(prefers-color-scheme: dark)").matches) return "dark";
126
- return "light";
127
- }
128
- function readStored(key) {
129
- if (typeof window === "undefined") return null;
130
- try {
131
- const raw = window.localStorage.getItem(key);
132
- return raw ? JSON.parse(raw) : null;
133
- } catch {
134
- return null;
135
- }
136
- }
137
- function writeStored(key, value) {
138
- if (typeof window === "undefined") return;
139
- try {
140
- window.localStorage.setItem(key, JSON.stringify(value));
141
- } catch {
142
- }
143
- }
144
376
  function ThemeProvider({
145
377
  children,
146
378
  defaultSchema = "tinta",
@@ -148,45 +380,24 @@ function ThemeProvider({
148
380
  storageKey = "ds-theme",
149
381
  persist = true
150
382
  }) {
151
- const [schema, setSchema] = useState2(
152
- () => persist && readStored(storageKey)?.schema || defaultSchema
153
- );
154
- const [preference, setPreference] = useState2(
155
- () => (persist ? readStored(storageKey)?.preference : null) ?? defaultMode
383
+ const storage = useMemo4(
384
+ () => createWebStorageAdapter(storageKey, persist),
385
+ [storageKey, persist]
156
386
  );
157
- const [systemMode, setSystemMode] = useState2(resolveSystemMode);
158
- useEffect2(() => {
159
- if (preference !== "system") return;
160
- if (typeof window === "undefined" || typeof window.matchMedia !== "function") return;
161
- const mqls = ["(prefers-contrast: more)", "(prefers-color-scheme: dark)"].map(
162
- (q) => window.matchMedia(q)
163
- );
164
- const onChange = () => setSystemMode(resolveSystemMode());
165
- onChange();
166
- for (const mql of mqls) mql.addEventListener?.("change", onChange);
167
- return () => {
168
- for (const mql of mqls) mql.removeEventListener?.("change", onChange);
169
- };
170
- }, [preference]);
171
- const mode = preference === "system" ? systemMode : preference;
172
- useEffect2(() => {
173
- if (persist) writeStored(storageKey, { schema, preference });
174
- }, [schema, preference, persist, storageKey]);
175
- const value = useMemo3(
387
+ const system = useMemo4(() => createWebSystemModeAdapter(), []);
388
+ const store = useThemeStore({ defaultSchema, defaultMode }, storage, system);
389
+ const value = useMemo4(
176
390
  () => ({
177
- schema,
178
- mode,
179
- preference,
180
- themeClass: themes[schema][mode],
181
- setSchema,
182
- setMode: setPreference,
183
- toggleMode: () => setPreference(mode === "dark" ? "light" : "dark"),
184
- cycleMode: () => {
185
- const next = modeNames[(modeNames.indexOf(mode) + 1) % modeNames.length];
186
- if (next) setPreference(next);
187
- }
391
+ schema: store.schema,
392
+ mode: store.mode,
393
+ preference: store.preference,
394
+ themeClass: themes[store.schema][store.mode],
395
+ setSchema: store.setSchema,
396
+ setMode: store.setMode,
397
+ toggleMode: store.toggleMode,
398
+ cycleMode: store.cycleMode
188
399
  }),
189
- [schema, mode, preference]
400
+ [store]
190
401
  );
191
402
  return /* @__PURE__ */ jsx3(ThemeContext.Provider, { value, children });
192
403
  }
@@ -209,7 +420,7 @@ function useStyles2({
209
420
  align: align2
210
421
  }) {
211
422
  const { themeClass } = useTheme();
212
- const className = useMemo4(
423
+ const className = useMemo5(
213
424
  () => [
214
425
  themeClass,
215
426
  base,
@@ -260,7 +471,7 @@ function states(map) {
260
471
  }
261
472
 
262
473
  // src/components/button/use-styles.ts
263
- import { useMemo as useMemo5 } from "react";
474
+ import { useMemo as useMemo6 } from "react";
264
475
 
265
476
  // src/components/button/use-styles.css.ts
266
477
  var full = "use-styles_full__1pbtill4";
@@ -281,7 +492,7 @@ function useStyles3({
281
492
  className
282
493
  }) {
283
494
  const { themeClass } = useTheme();
284
- const container = useMemo5(
495
+ const container = useMemo6(
285
496
  () => [
286
497
  themeClass,
287
498
  root,
@@ -336,7 +547,7 @@ var Button = forwardRef3(function Button2({
336
547
  import { forwardRef as forwardRef4 } from "react";
337
548
 
338
549
  // src/components/divider/use-styles.ts
339
- import { useMemo as useMemo6 } from "react";
550
+ import { useMemo as useMemo7 } from "react";
340
551
 
341
552
  // src/components/divider/use-styles.css.ts
342
553
  var horizontal = "use-styles_horizontal__1n7v7yj1";
@@ -349,7 +560,7 @@ var vertical = "use-styles_vertical__1n7v7yj2";
349
560
  // src/components/divider/use-styles.ts
350
561
  function useStyles4({ vertical: vertical2, hasLabel }) {
351
562
  const { themeClass } = useTheme();
352
- const root24 = useMemo6(
563
+ const root24 = useMemo7(
353
564
  () => [
354
565
  themeClass,
355
566
  root2,
@@ -380,7 +591,7 @@ var Divider = forwardRef4(function Divider2({ vertical: vertical2, label: label7
380
591
  import { forwardRef as forwardRef5 } from "react";
381
592
 
382
593
  // src/components/avatar/use-styles.ts
383
- import { useMemo as useMemo7 } from "react";
594
+ import { useMemo as useMemo8 } from "react";
384
595
 
385
596
  // src/components/avatar/use-styles.css.ts
386
597
  var root3 = "use-styles_root__1mn1rmu0";
@@ -394,7 +605,7 @@ function useStyles5({
394
605
  className
395
606
  }) {
396
607
  const { themeClass } = useTheme();
397
- const root24 = useMemo7(
608
+ const root24 = useMemo8(
398
609
  () => [
399
610
  themeClass,
400
611
  root3,
@@ -419,7 +630,7 @@ var Avatar = forwardRef5(function Avatar2({ size: size3, filled, className, chil
419
630
  import { forwardRef as forwardRef6 } from "react";
420
631
 
421
632
  // src/components/badge/use-styles.ts
422
- import { useMemo as useMemo8 } from "react";
633
+ import { useMemo as useMemo9 } from "react";
423
634
 
424
635
  // src/components/badge/use-styles.css.ts
425
636
  var dot = "use-styles_dot__1wpei6p1";
@@ -432,11 +643,11 @@ function useStyles6({
432
643
  className
433
644
  }) {
434
645
  const { themeClass } = useTheme();
435
- const root24 = useMemo8(
646
+ const root24 = useMemo9(
436
647
  () => [themeClass, root4, className].filter(Boolean).join(" "),
437
648
  [themeClass, className]
438
649
  );
439
- const dot3 = useMemo8(() => [dot, tone2[tone4]].join(" "), [tone4]);
650
+ const dot3 = useMemo9(() => [dot, tone2[tone4]].join(" "), [tone4]);
440
651
  return { root: root24, dot: dot3 };
441
652
  }
442
653
 
@@ -455,7 +666,7 @@ var Badge = forwardRef6(function Badge2({ count, tone: tone4, className, childre
455
666
  import { forwardRef as forwardRef7 } from "react";
456
667
 
457
668
  // src/components/progress/use-styles.ts
458
- import { useMemo as useMemo9 } from "react";
669
+ import { useMemo as useMemo10 } from "react";
459
670
 
460
671
  // src/components/progress/use-styles.css.ts
461
672
  var bar = "use-styles_bar__kbop7v3";
@@ -471,7 +682,7 @@ function useStyles7({
471
682
  }) {
472
683
  const { themeClass } = useTheme();
473
684
  const indeterminate2 = value === void 0;
474
- return useMemo9(() => {
685
+ return useMemo10(() => {
475
686
  const root24 = (...classes) => [themeClass, ...classes, className].filter(Boolean).join(" ");
476
687
  if (variant2 === "circular") {
477
688
  return { track: "", bar: "", spinner: root24(spinner) };
@@ -560,7 +771,7 @@ function XIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
560
771
  }
561
772
 
562
773
  // src/components/chip/use-styles.ts
563
- import { useMemo as useMemo10 } from "react";
774
+ import { useMemo as useMemo11 } from "react";
564
775
 
565
776
  // src/components/chip/use-styles.css.ts
566
777
  var clickable = "use-styles_clickable__1axilf44";
@@ -576,7 +787,7 @@ function useStyles8({
576
787
  clickable: clickable2
577
788
  }) {
578
789
  const { themeClass } = useTheme();
579
- const root24 = useMemo10(
790
+ const root24 = useMemo11(
580
791
  () => [
581
792
  themeClass,
582
793
  root5,
@@ -651,7 +862,7 @@ function CheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
651
862
  }
652
863
 
653
864
  // src/components/checkbox/use-styles.ts
654
- import { useMemo as useMemo11 } from "react";
865
+ import { useMemo as useMemo12 } from "react";
655
866
 
656
867
  // src/components/checkbox/use-styles.css.ts
657
868
  var box = "use-styles_box__9zoga91";
@@ -664,11 +875,11 @@ var root6 = "use-styles_root__9zoga90";
664
875
  // src/components/checkbox/use-styles.ts
665
876
  function useStyles9({ checked, disabled: disabled3 }) {
666
877
  const { themeClass } = useTheme();
667
- const root24 = useMemo11(
878
+ const root24 = useMemo12(
668
879
  () => [themeClass, root6, disabled3 && disabled].filter(Boolean).join(" "),
669
880
  [themeClass, disabled3]
670
881
  );
671
- const box2 = useMemo11(
882
+ const box2 = useMemo12(
672
883
  () => [box, checked && boxChecked].filter(Boolean).join(" "),
673
884
  [checked]
674
885
  );
@@ -707,7 +918,7 @@ var Checkbox = forwardRef9(function Checkbox2({ checked = false, onChange, label
707
918
  import { forwardRef as forwardRef10 } from "react";
708
919
 
709
920
  // src/components/radio/use-styles.ts
710
- import { useMemo as useMemo12 } from "react";
921
+ import { useMemo as useMemo13 } from "react";
711
922
 
712
923
  // src/components/radio/use-styles.css.ts
713
924
  var circle = "use-styles_circle__vy61b42";
@@ -723,7 +934,7 @@ function useStyles10({
723
934
  className
724
935
  }) {
725
936
  const { themeClass } = useTheme();
726
- const root24 = useMemo12(
937
+ const root24 = useMemo13(
727
938
  () => [themeClass, root7, disabled3 && disabled2, className].filter(Boolean).join(" "),
728
939
  [themeClass, disabled3, className]
729
940
  );
@@ -765,7 +976,7 @@ var Radio = forwardRef10(function Radio2({ checked, onChange, label: label7, nam
765
976
  import { forwardRef as forwardRef11 } from "react";
766
977
 
767
978
  // src/components/switch/use-styles.ts
768
- import { useMemo as useMemo13 } from "react";
979
+ import { useMemo as useMemo14 } from "react";
769
980
 
770
981
  // src/components/switch/use-styles.css.ts
771
982
  var input3 = "surfaces_srOnly__1qa7atn0";
@@ -779,7 +990,7 @@ var trackChecked = "use-styles_trackChecked__1r6kem72";
779
990
  // src/components/switch/use-styles.ts
780
991
  function useStyles11({ checked }) {
781
992
  const { themeClass } = useTheme();
782
- return useMemo13(
993
+ return useMemo14(
783
994
  () => ({
784
995
  root: [themeClass, root8].filter(Boolean).join(" "),
785
996
  input: input3,
@@ -826,7 +1037,7 @@ import { forwardRef as forwardRef13 } from "react";
826
1037
  import { forwardRef as forwardRef12, useId } from "react";
827
1038
 
828
1039
  // src/components/base-field/use-styles.ts
829
- import { useMemo as useMemo14 } from "react";
1040
+ import { useMemo as useMemo15 } from "react";
830
1041
 
831
1042
  // src/components/base-field/use-styles.css.ts
832
1043
  var field = "use-styles_field__1c3cgd3";
@@ -845,7 +1056,7 @@ var trailingSlot = "use-styles_trailingSlot__1c3cgdb";
845
1056
  // src/components/base-field/use-styles.ts
846
1057
  function useStyles12({ error, hasStartIcon, hasTrailing, className }) {
847
1058
  const { themeClass } = useTheme();
848
- return useMemo14(() => {
1059
+ return useMemo15(() => {
849
1060
  const root24 = [themeClass, root9].filter(Boolean).join(" ");
850
1061
  const labelText2 = [labelText, error && labelTextError].filter(Boolean).join(" ");
851
1062
  const input6 = [
@@ -1025,14 +1236,14 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1025
1236
  }
1026
1237
 
1027
1238
  // src/components/password-field/use-styles.ts
1028
- import { useMemo as useMemo15 } from "react";
1239
+ import { useMemo as useMemo16 } from "react";
1029
1240
 
1030
1241
  // src/components/password-field/use-styles.css.ts
1031
1242
  var revealButton = "use-styles_revealButton__rsu9d50";
1032
1243
 
1033
1244
  // src/components/password-field/use-styles.ts
1034
1245
  function useStyles13() {
1035
- return useMemo15(() => ({ revealButton }), []);
1246
+ return useMemo16(() => ({ revealButton }), []);
1036
1247
  }
1037
1248
 
1038
1249
  // src/components/password-field/index.tsx
@@ -1085,7 +1296,7 @@ var PasswordField = forwardRef14(
1085
1296
  );
1086
1297
 
1087
1298
  // src/components/money-field/index.tsx
1088
- import { forwardRef as forwardRef15, useMemo as useMemo16, useState as useState4 } from "react";
1299
+ import { forwardRef as forwardRef15, useMemo as useMemo17, useState as useState4 } from "react";
1089
1300
  import { jsx as jsx21 } from "react/jsx-runtime";
1090
1301
  function parseAmount(raw) {
1091
1302
  const cleaned = raw.replace(/[^0-9.-]/g, "");
@@ -1110,7 +1321,7 @@ var MoneyField = forwardRef15(function MoneyField2({
1110
1321
  }, ref) {
1111
1322
  const [focused, setFocused] = useState4(false);
1112
1323
  const [draft, setDraft] = useState4("");
1113
- const formatter = useMemo16(
1324
+ const formatter = useMemo17(
1114
1325
  () => new Intl.NumberFormat(locale, { style: "currency", currency }),
1115
1326
  [locale, currency]
1116
1327
  );
@@ -1156,7 +1367,7 @@ var MoneyField = forwardRef15(function MoneyField2({
1156
1367
  import { forwardRef as forwardRef16 } from "react";
1157
1368
 
1158
1369
  // src/components/icon-button/use-styles.ts
1159
- import { useMemo as useMemo17 } from "react";
1370
+ import { useMemo as useMemo18 } from "react";
1160
1371
 
1161
1372
  // src/components/icon-button/use-styles.css.ts
1162
1373
  var accent = "use-styles_accent__18np0q02";
@@ -1169,7 +1380,7 @@ function useStyles14({
1169
1380
  tone: tone4 = "ink"
1170
1381
  }) {
1171
1382
  const { themeClass } = useTheme();
1172
- const root24 = useMemo17(
1383
+ const root24 = useMemo18(
1173
1384
  () => [themeClass, root10, tone4 === "accent" && accent, active2 && active].filter(Boolean).join(" "),
1174
1385
  [themeClass, active2, tone4]
1175
1386
  );
@@ -1208,7 +1419,7 @@ var IconButton = forwardRef16(function IconButton2({ icon: Icon, active: active2
1208
1419
  import { forwardRef as forwardRef17 } from "react";
1209
1420
 
1210
1421
  // src/components/card/use-styles.ts
1211
- import { useMemo as useMemo18 } from "react";
1422
+ import { useMemo as useMemo19 } from "react";
1212
1423
 
1213
1424
  // src/components/card/use-styles.css.ts
1214
1425
  var body = "use-styles_body__1fuvd022";
@@ -1219,7 +1430,7 @@ var root11 = "use-styles_root__1fuvd020";
1219
1430
  // src/components/card/use-styles.ts
1220
1431
  function useStyles15() {
1221
1432
  const { themeClass } = useTheme();
1222
- const root24 = useMemo18(() => `${themeClass} ${root11}`, [themeClass]);
1433
+ const root24 = useMemo19(() => `${themeClass} ${root11}`, [themeClass]);
1223
1434
  return { root: root24, header, body, footer };
1224
1435
  }
1225
1436
 
@@ -1359,7 +1570,7 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1359
1570
  }
1360
1571
 
1361
1572
  // src/components/alert/use-styles.ts
1362
- import { useMemo as useMemo19 } from "react";
1573
+ import { useMemo as useMemo20 } from "react";
1363
1574
 
1364
1575
  // src/components/alert/use-styles.css.ts
1365
1576
  var content = "use-styles_content__ivsh6u6";
@@ -1373,7 +1584,7 @@ function useStyles16({
1373
1584
  className
1374
1585
  }) {
1375
1586
  const { themeClass } = useTheme();
1376
- const root24 = useMemo19(
1587
+ const root24 = useMemo20(
1377
1588
  () => [themeClass, root12, severity[severity2], className].filter(Boolean).join(" "),
1378
1589
  [themeClass, severity2, className]
1379
1590
  );
@@ -1416,7 +1627,7 @@ import {
1416
1627
  } from "react";
1417
1628
 
1418
1629
  // src/components/tooltip/use-styles.ts
1419
- import { useMemo as useMemo20 } from "react";
1630
+ import { useMemo as useMemo21 } from "react";
1420
1631
 
1421
1632
  // src/components/tooltip/use-styles.css.ts
1422
1633
  var bubble = "use-styles_bubble__h9kvh1 surfaces_inkySurface__1qa7atn2";
@@ -1428,11 +1639,11 @@ function useStyles17({
1428
1639
  placement: placement2 = "top"
1429
1640
  }) {
1430
1641
  const { themeClass } = useTheme();
1431
- const wrapper4 = useMemo20(
1642
+ const wrapper4 = useMemo21(
1432
1643
  () => [themeClass, wrapper].filter(Boolean).join(" "),
1433
1644
  [themeClass]
1434
1645
  );
1435
- const bubble2 = useMemo20(
1646
+ const bubble2 = useMemo21(
1436
1647
  () => [bubble, placement[placement2]].filter(Boolean).join(" "),
1437
1648
  [placement2]
1438
1649
  );
@@ -1536,7 +1747,7 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1536
1747
  }
1537
1748
 
1538
1749
  // src/components/select/use-styles.ts
1539
- import { useMemo as useMemo21 } from "react";
1750
+ import { useMemo as useMemo22 } from "react";
1540
1751
 
1541
1752
  // src/components/select/use-styles.css.ts
1542
1753
  var chevron = "use-styles_chevron__1w1czpb4";
@@ -1555,7 +1766,7 @@ function useStyles18({
1555
1766
  open = false
1556
1767
  }) {
1557
1768
  const { themeClass } = useTheme();
1558
- return useMemo21(() => {
1769
+ return useMemo22(() => {
1559
1770
  const chevron3 = [chevron, open && chevronOpen].filter(Boolean).join(" ");
1560
1771
  return {
1561
1772
  root: [themeClass, root13].filter(Boolean).join(" "),
@@ -1706,7 +1917,7 @@ var Select = forwardRef20(function Select2({ options, value, onChange, placehold
1706
1917
  import { forwardRef as forwardRef21 } from "react";
1707
1918
 
1708
1919
  // src/components/slider/use-styles.ts
1709
- import { useMemo as useMemo22 } from "react";
1920
+ import { useMemo as useMemo23 } from "react";
1710
1921
 
1711
1922
  // src/components/slider/use-styles.css.ts
1712
1923
  var input5 = "use-styles_input__okw59n3";
@@ -1720,7 +1931,7 @@ var wrapper2 = "use-styles_wrapper__okw59n6";
1720
1931
  // src/components/slider/use-styles.ts
1721
1932
  function useStyles19() {
1722
1933
  const { themeClass } = useTheme();
1723
- return useMemo22(() => {
1934
+ return useMemo23(() => {
1724
1935
  const root24 = [themeClass, root14].filter(Boolean).join(" ");
1725
1936
  return {
1726
1937
  wrapper: wrapper2,
@@ -1773,7 +1984,7 @@ var Slider = forwardRef21(function Slider2({ value = 0, onChange, min = 0, max =
1773
1984
  import { forwardRef as forwardRef22, useState as useState7 } from "react";
1774
1985
 
1775
1986
  // src/components/accordion/use-styles.ts
1776
- import { useMemo as useMemo23 } from "react";
1987
+ import { useMemo as useMemo24 } from "react";
1777
1988
 
1778
1989
  // src/components/accordion/use-styles.css.ts
1779
1990
  var chevron2 = "use-styles_chevron__1cjrdh93";
@@ -1786,7 +1997,7 @@ var root15 = "use-styles_root__1cjrdh90";
1786
1997
  // src/components/accordion/use-styles.ts
1787
1998
  function useStyles20({ className }) {
1788
1999
  const { themeClass } = useTheme();
1789
- return useMemo23(
2000
+ return useMemo24(
1790
2001
  () => ({
1791
2002
  root: [themeClass, root15, className].filter(Boolean).join(" "),
1792
2003
  item,
@@ -1883,7 +2094,7 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1883
2094
  }
1884
2095
 
1885
2096
  // src/components/breadcrumbs/use-styles.ts
1886
- import { useMemo as useMemo24 } from "react";
2097
+ import { useMemo as useMemo25 } from "react";
1887
2098
 
1888
2099
  // src/components/breadcrumbs/use-styles.css.ts
1889
2100
  var crumb = "use-styles_crumb__7u0du61";
@@ -1894,7 +2105,7 @@ var separator = "use-styles_separator__7u0du63";
1894
2105
  // src/components/breadcrumbs/use-styles.ts
1895
2106
  function useStyles21({ className }) {
1896
2107
  const { themeClass } = useTheme();
1897
- const root24 = useMemo24(
2108
+ const root24 = useMemo25(
1898
2109
  () => [themeClass, root16, className].filter(Boolean).join(" "),
1899
2110
  [themeClass, className]
1900
2111
  );
@@ -1942,7 +2153,7 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
1942
2153
  }
1943
2154
 
1944
2155
  // src/components/pagination/use-styles.ts
1945
- import { useMemo as useMemo25 } from "react";
2156
+ import { useMemo as useMemo26 } from "react";
1946
2157
 
1947
2158
  // src/components/pagination/use-styles.css.ts
1948
2159
  var ellipsis = "use-styles_ellipsis__1azgzoh3";
@@ -1954,7 +2165,7 @@ var root17 = "use-styles_root__1azgzoh0";
1954
2165
  // src/components/pagination/use-styles.ts
1955
2166
  function useStyles22() {
1956
2167
  const { themeClass } = useTheme();
1957
- return useMemo25(
2168
+ return useMemo26(
1958
2169
  () => ({
1959
2170
  root: [themeClass, root17].filter(Boolean).join(" "),
1960
2171
  pageBtnFor: (active2) => [pageBtn, active2 && pageActive].filter(Boolean).join(" "),
@@ -2041,7 +2252,7 @@ var Pagination = forwardRef24(function Pagination2({ count, page = 1, onChange,
2041
2252
  import { Fragment as Fragment2, forwardRef as forwardRef25 } from "react";
2042
2253
 
2043
2254
  // src/components/stepper/use-styles.ts
2044
- import { useMemo as useMemo26 } from "react";
2255
+ import { useMemo as useMemo27 } from "react";
2045
2256
 
2046
2257
  // src/components/stepper/use-styles.css.ts
2047
2258
  var connector = "use-styles_connector__79pt4e7";
@@ -2056,7 +2267,7 @@ var step = "use-styles_step__79pt4e1";
2056
2267
  // src/components/stepper/use-styles.ts
2057
2268
  function useStyles23({ className }) {
2058
2269
  const { themeClass } = useTheme();
2059
- return useMemo26(() => {
2270
+ return useMemo27(() => {
2060
2271
  const root24 = [themeClass, root18, className].filter(Boolean).join(" ");
2061
2272
  const markerFor = (state) => [
2062
2273
  marker,
@@ -2102,7 +2313,7 @@ var Stepper = forwardRef25(function Stepper2({ steps, active: active2 = 0, class
2102
2313
  import { forwardRef as forwardRef26, useId as useId4, useRef as useRef4 } from "react";
2103
2314
 
2104
2315
  // src/components/tabs/use-styles.ts
2105
- import { useMemo as useMemo27 } from "react";
2316
+ import { useMemo as useMemo28 } from "react";
2106
2317
 
2107
2318
  // src/components/tabs/use-styles.css.ts
2108
2319
  var panel2 = "use-styles_panel__1l4m7t43";
@@ -2113,7 +2324,7 @@ var tabActive = "use-styles_tabActive__1l4m7t42";
2113
2324
  // src/components/tabs/use-styles.ts
2114
2325
  function useStyles24() {
2115
2326
  const { themeClass } = useTheme();
2116
- return useMemo27(() => {
2327
+ return useMemo28(() => {
2117
2328
  const root24 = [themeClass, root19].filter(Boolean).join(" ");
2118
2329
  const tabClass = (active2) => [tab, active2 && tabActive].filter(Boolean).join(" ");
2119
2330
  return { root: root24, tab, tabClass, panel: panel2 };
@@ -2212,7 +2423,7 @@ import {
2212
2423
  } from "react";
2213
2424
 
2214
2425
  // src/components/menu/use-styles.ts
2215
- import { useMemo as useMemo28 } from "react";
2426
+ import { useMemo as useMemo29 } from "react";
2216
2427
 
2217
2428
  // src/components/menu/use-styles.css.ts
2218
2429
  var danger = "use-styles_danger__1uyxaj3";
@@ -2223,7 +2434,7 @@ var wrapper3 = "use-styles_wrapper__1uyxaj0";
2223
2434
  // src/components/menu/use-styles.ts
2224
2435
  function useStyles25() {
2225
2436
  const { themeClass } = useTheme();
2226
- return useMemo28(
2437
+ return useMemo29(
2227
2438
  () => ({
2228
2439
  wrapper: [themeClass, wrapper3].filter(Boolean).join(" "),
2229
2440
  list,
@@ -2391,7 +2602,7 @@ import {
2391
2602
  import { createPortal } from "react-dom";
2392
2603
 
2393
2604
  // src/components/dialog/use-styles.ts
2394
- import { useMemo as useMemo29 } from "react";
2605
+ import { useMemo as useMemo30 } from "react";
2395
2606
 
2396
2607
  // src/components/dialog/use-styles.css.ts
2397
2608
  var actions = "use-styles_actions__5tstu83";
@@ -2402,7 +2613,7 @@ var surface = "use-styles_surface__5tstu81";
2402
2613
  // src/components/dialog/use-styles.ts
2403
2614
  function useStyles26() {
2404
2615
  const { themeClass } = useTheme();
2405
- return useMemo29(
2616
+ return useMemo30(
2406
2617
  () => ({
2407
2618
  overlay: [themeClass, overlay].filter(Boolean).join(" "),
2408
2619
  surface,
@@ -2511,7 +2722,7 @@ import { forwardRef as forwardRef29 } from "react";
2511
2722
  import { createPortal as createPortal2 } from "react-dom";
2512
2723
 
2513
2724
  // src/components/snackbar/use-styles.ts
2514
- import { useMemo as useMemo30 } from "react";
2725
+ import { useMemo as useMemo31 } from "react";
2515
2726
 
2516
2727
  // src/components/snackbar/use-styles.css.ts
2517
2728
  var closeBtn = "use-styles_closeBtn__ihzsep2";
@@ -2521,7 +2732,7 @@ var root20 = "use-styles_root__ihzsep0 surfaces_inkySurface__1qa7atn2";
2521
2732
  // src/components/snackbar/use-styles.ts
2522
2733
  function useStyles27() {
2523
2734
  const { themeClass } = useTheme();
2524
- return useMemo30(
2735
+ return useMemo31(
2525
2736
  () => ({
2526
2737
  root: [themeClass, root20].filter(Boolean).join(" "),
2527
2738
  message,
@@ -2561,7 +2772,7 @@ var Snackbar = forwardRef29(function Snackbar2({ open, message: message2, action
2561
2772
  import { forwardRef as forwardRef30 } from "react";
2562
2773
 
2563
2774
  // src/components/table/use-styles.ts
2564
- import { useMemo as useMemo31 } from "react";
2775
+ import { useMemo as useMemo32 } from "react";
2565
2776
 
2566
2777
  // src/components/table/use-styles.css.ts
2567
2778
  var alignRight = "use-styles_alignRight__1n2cz6i3";
@@ -2573,7 +2784,7 @@ var th = "use-styles_th__1n2cz6i1";
2573
2784
  // src/components/table/use-styles.ts
2574
2785
  function useStyles28({ className }) {
2575
2786
  const { themeClass } = useTheme();
2576
- const root24 = useMemo31(
2787
+ const root24 = useMemo32(
2577
2788
  () => [themeClass, root21, className].filter(Boolean).join(" "),
2578
2789
  [themeClass, className]
2579
2790
  );
@@ -2607,7 +2818,7 @@ var Table = TableForwarded;
2607
2818
  import { forwardRef as forwardRef31 } from "react";
2608
2819
 
2609
2820
  // src/components/app-bar/use-styles.ts
2610
- import { useMemo as useMemo32 } from "react";
2821
+ import { useMemo as useMemo33 } from "react";
2611
2822
 
2612
2823
  // src/components/app-bar/use-styles.css.ts
2613
2824
  var actions2 = "use-styles_actions__1h133nh2";
@@ -2617,7 +2828,7 @@ var root22 = "use-styles_root__1h133nh0";
2617
2828
  // src/components/app-bar/use-styles.ts
2618
2829
  function useStyles29({ className }) {
2619
2830
  const { themeClass } = useTheme();
2620
- const root24 = useMemo32(
2831
+ const root24 = useMemo33(
2621
2832
  () => [themeClass, root22, className].filter(Boolean).join(" "),
2622
2833
  [themeClass, className]
2623
2834
  );
@@ -2640,7 +2851,7 @@ var AppBar = forwardRef31(function AppBar2({ brand: brand2, actions: actions3, c
2640
2851
  import { forwardRef as forwardRef32 } from "react";
2641
2852
 
2642
2853
  // src/components/list-item/use-styles.ts
2643
- import { useMemo as useMemo33 } from "react";
2854
+ import { useMemo as useMemo34 } from "react";
2644
2855
 
2645
2856
  // src/components/list-item/use-styles.css.ts
2646
2857
  var content2 = "use-styles_content__kbreq13";
@@ -2655,7 +2866,7 @@ function useStyles30({
2655
2866
  className
2656
2867
  }) {
2657
2868
  const { themeClass } = useTheme();
2658
- const root24 = useMemo33(
2869
+ const root24 = useMemo34(
2659
2870
  () => [themeClass, root23, selected3 && selected2, className].filter(Boolean).join(" "),
2660
2871
  [themeClass, selected3, className]
2661
2872
  );
@@ -2684,10 +2895,10 @@ var ListItem = forwardRef32(function ListItem2({ leading: leading2, trailing: tr
2684
2895
  );
2685
2896
  });
2686
2897
 
2687
- // src/components/icons/chevron-up/index.tsx
2688
- import { jsx as jsx46 } from "react/jsx-runtime";
2689
- function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2690
- return /* @__PURE__ */ jsx46(
2898
+ // src/components/icons/alert-circle/index.tsx
2899
+ import { jsx as jsx46, jsxs as jsxs31 } from "react/jsx-runtime";
2900
+ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2901
+ return /* @__PURE__ */ jsxs31(
2691
2902
  "svg",
2692
2903
  {
2693
2904
  xmlns: "http://www.w3.org/2000/svg",
@@ -2701,15 +2912,19 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2701
2912
  strokeLinejoin: "round",
2702
2913
  "aria-hidden": "true",
2703
2914
  ...rest,
2704
- children: /* @__PURE__ */ jsx46("path", { d: "m18 15-6-6-6 6" })
2915
+ children: [
2916
+ /* @__PURE__ */ jsx46("circle", { cx: "12", cy: "12", r: "10" }),
2917
+ /* @__PURE__ */ jsx46("line", { x1: "12", x2: "12", y1: "8", y2: "12" }),
2918
+ /* @__PURE__ */ jsx46("line", { x1: "12", x2: "12.01", y1: "16", y2: "16" })
2919
+ ]
2705
2920
  }
2706
2921
  );
2707
2922
  }
2708
2923
 
2709
- // src/components/icons/search/index.tsx
2710
- import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
2711
- function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2712
- return /* @__PURE__ */ jsxs31(
2924
+ // src/components/icons/archive/index.tsx
2925
+ import { jsx as jsx47, jsxs as jsxs32 } from "react/jsx-runtime";
2926
+ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2927
+ return /* @__PURE__ */ jsxs32(
2713
2928
  "svg",
2714
2929
  {
2715
2930
  xmlns: "http://www.w3.org/2000/svg",
@@ -2724,17 +2939,18 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2724
2939
  "aria-hidden": "true",
2725
2940
  ...rest,
2726
2941
  children: [
2727
- /* @__PURE__ */ jsx47("circle", { cx: "11", cy: "11", r: "8" }),
2728
- /* @__PURE__ */ jsx47("path", { d: "m21 21-4.3-4.3" })
2942
+ /* @__PURE__ */ jsx47("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
2943
+ /* @__PURE__ */ jsx47("path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }),
2944
+ /* @__PURE__ */ jsx47("path", { d: "M10 12h4" })
2729
2945
  ]
2730
2946
  }
2731
2947
  );
2732
2948
  }
2733
2949
 
2734
- // src/components/icons/plus/index.tsx
2735
- import { jsx as jsx48, jsxs as jsxs32 } from "react/jsx-runtime";
2736
- function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2737
- return /* @__PURE__ */ jsxs32(
2950
+ // src/components/icons/arrow-down/index.tsx
2951
+ import { jsx as jsx48, jsxs as jsxs33 } from "react/jsx-runtime";
2952
+ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2953
+ return /* @__PURE__ */ jsxs33(
2738
2954
  "svg",
2739
2955
  {
2740
2956
  xmlns: "http://www.w3.org/2000/svg",
@@ -2749,17 +2965,17 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2749
2965
  "aria-hidden": "true",
2750
2966
  ...rest,
2751
2967
  children: [
2752
- /* @__PURE__ */ jsx48("path", { d: "M5 12h14" }),
2753
- /* @__PURE__ */ jsx48("path", { d: "M12 5v14" })
2968
+ /* @__PURE__ */ jsx48("path", { d: "M12 5v14" }),
2969
+ /* @__PURE__ */ jsx48("path", { d: "m19 12-7 7-7-7" })
2754
2970
  ]
2755
2971
  }
2756
2972
  );
2757
2973
  }
2758
2974
 
2759
- // src/components/icons/minus/index.tsx
2760
- import { jsx as jsx49 } from "react/jsx-runtime";
2761
- function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2762
- return /* @__PURE__ */ jsx49(
2975
+ // src/components/icons/arrow-left/index.tsx
2976
+ import { jsx as jsx49, jsxs as jsxs34 } from "react/jsx-runtime";
2977
+ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2978
+ return /* @__PURE__ */ jsxs34(
2763
2979
  "svg",
2764
2980
  {
2765
2981
  xmlns: "http://www.w3.org/2000/svg",
@@ -2773,15 +2989,118 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2773
2989
  strokeLinejoin: "round",
2774
2990
  "aria-hidden": "true",
2775
2991
  ...rest,
2776
- children: /* @__PURE__ */ jsx49("path", { d: "M5 12h14" })
2992
+ children: [
2993
+ /* @__PURE__ */ jsx49("path", { d: "m12 19-7-7 7-7" }),
2994
+ /* @__PURE__ */ jsx49("path", { d: "M19 12H5" })
2995
+ ]
2777
2996
  }
2778
2997
  );
2779
2998
  }
2780
2999
 
2781
- // src/components/icons/more-horizontal/index.tsx
2782
- import { jsx as jsx50, jsxs as jsxs33 } from "react/jsx-runtime";
2783
- function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2784
- return /* @__PURE__ */ jsxs33(
3000
+ // src/components/icons/arrow-right/index.tsx
3001
+ import { jsx as jsx50, jsxs as jsxs35 } from "react/jsx-runtime";
3002
+ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3003
+ return /* @__PURE__ */ jsxs35(
3004
+ "svg",
3005
+ {
3006
+ xmlns: "http://www.w3.org/2000/svg",
3007
+ width: size3,
3008
+ height: size3,
3009
+ viewBox: "0 0 24 24",
3010
+ fill: "none",
3011
+ stroke: "currentColor",
3012
+ strokeWidth,
3013
+ strokeLinecap: "round",
3014
+ strokeLinejoin: "round",
3015
+ "aria-hidden": "true",
3016
+ ...rest,
3017
+ children: [
3018
+ /* @__PURE__ */ jsx50("path", { d: "M5 12h14" }),
3019
+ /* @__PURE__ */ jsx50("path", { d: "m12 5 7 7-7 7" })
3020
+ ]
3021
+ }
3022
+ );
3023
+ }
3024
+
3025
+ // src/components/icons/arrow-up/index.tsx
3026
+ import { jsx as jsx51, jsxs as jsxs36 } from "react/jsx-runtime";
3027
+ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3028
+ return /* @__PURE__ */ jsxs36(
3029
+ "svg",
3030
+ {
3031
+ xmlns: "http://www.w3.org/2000/svg",
3032
+ width: size3,
3033
+ height: size3,
3034
+ viewBox: "0 0 24 24",
3035
+ fill: "none",
3036
+ stroke: "currentColor",
3037
+ strokeWidth,
3038
+ strokeLinecap: "round",
3039
+ strokeLinejoin: "round",
3040
+ "aria-hidden": "true",
3041
+ ...rest,
3042
+ children: [
3043
+ /* @__PURE__ */ jsx51("path", { d: "m5 12 7-7 7 7" }),
3044
+ /* @__PURE__ */ jsx51("path", { d: "M12 19V5" })
3045
+ ]
3046
+ }
3047
+ );
3048
+ }
3049
+
3050
+ // src/components/icons/at-sign/index.tsx
3051
+ import { jsx as jsx52, jsxs as jsxs37 } from "react/jsx-runtime";
3052
+ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3053
+ return /* @__PURE__ */ jsxs37(
3054
+ "svg",
3055
+ {
3056
+ xmlns: "http://www.w3.org/2000/svg",
3057
+ width: size3,
3058
+ height: size3,
3059
+ viewBox: "0 0 24 24",
3060
+ fill: "none",
3061
+ stroke: "currentColor",
3062
+ strokeWidth,
3063
+ strokeLinecap: "round",
3064
+ strokeLinejoin: "round",
3065
+ "aria-hidden": "true",
3066
+ ...rest,
3067
+ children: [
3068
+ /* @__PURE__ */ jsx52("circle", { cx: "12", cy: "12", r: "4" }),
3069
+ /* @__PURE__ */ jsx52("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" })
3070
+ ]
3071
+ }
3072
+ );
3073
+ }
3074
+
3075
+ // src/components/icons/bell/index.tsx
3076
+ import { jsx as jsx53, jsxs as jsxs38 } from "react/jsx-runtime";
3077
+ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3078
+ return /* @__PURE__ */ jsxs38(
3079
+ "svg",
3080
+ {
3081
+ xmlns: "http://www.w3.org/2000/svg",
3082
+ width: size3,
3083
+ height: size3,
3084
+ viewBox: "0 0 24 24",
3085
+ fill: "none",
3086
+ stroke: "currentColor",
3087
+ strokeWidth,
3088
+ strokeLinecap: "round",
3089
+ strokeLinejoin: "round",
3090
+ "aria-hidden": "true",
3091
+ ...rest,
3092
+ children: [
3093
+ /* @__PURE__ */ jsx53("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
3094
+ /* @__PURE__ */ jsx53("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" })
3095
+ ]
3096
+ }
3097
+ );
3098
+ }
3099
+
3100
+ // src/components/icons/bell-off/index.tsx
3101
+ import { jsx as jsx54, jsxs as jsxs39 } from "react/jsx-runtime";
3102
+ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3103
+ return /* @__PURE__ */ jsxs39(
2785
3104
  "svg",
2786
3105
  {
2787
3106
  xmlns: "http://www.w3.org/2000/svg",
@@ -2796,21 +3115,2427 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2796
3115
  "aria-hidden": "true",
2797
3116
  ...rest,
2798
3117
  children: [
2799
- /* @__PURE__ */ jsx50("circle", { cx: "12", cy: "12", r: "1" }),
2800
- /* @__PURE__ */ jsx50("circle", { cx: "19", cy: "12", r: "1" }),
2801
- /* @__PURE__ */ jsx50("circle", { cx: "5", cy: "12", r: "1" })
3118
+ /* @__PURE__ */ jsx54("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
3119
+ /* @__PURE__ */ jsx54("path", { d: "M17 17H3s3-2 3-9a4.67 4.67 0 0 1 .3-1.7" }),
3120
+ /* @__PURE__ */ jsx54("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" }),
3121
+ /* @__PURE__ */ jsx54("path", { d: "m2 2 20 20" })
2802
3122
  ]
2803
3123
  }
2804
3124
  );
2805
3125
  }
3126
+
3127
+ // src/components/icons/bookmark/index.tsx
3128
+ import { jsx as jsx55 } from "react/jsx-runtime";
3129
+ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3130
+ return /* @__PURE__ */ jsx55(
3131
+ "svg",
3132
+ {
3133
+ xmlns: "http://www.w3.org/2000/svg",
3134
+ width: size3,
3135
+ height: size3,
3136
+ viewBox: "0 0 24 24",
3137
+ fill: "none",
3138
+ stroke: "currentColor",
3139
+ strokeWidth,
3140
+ strokeLinecap: "round",
3141
+ strokeLinejoin: "round",
3142
+ "aria-hidden": "true",
3143
+ ...rest,
3144
+ children: /* @__PURE__ */ jsx55("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
3145
+ }
3146
+ );
3147
+ }
3148
+
3149
+ // src/components/icons/calendar/index.tsx
3150
+ import { jsx as jsx56, jsxs as jsxs40 } from "react/jsx-runtime";
3151
+ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3152
+ return /* @__PURE__ */ jsxs40(
3153
+ "svg",
3154
+ {
3155
+ xmlns: "http://www.w3.org/2000/svg",
3156
+ width: size3,
3157
+ height: size3,
3158
+ viewBox: "0 0 24 24",
3159
+ fill: "none",
3160
+ stroke: "currentColor",
3161
+ strokeWidth,
3162
+ strokeLinecap: "round",
3163
+ strokeLinejoin: "round",
3164
+ "aria-hidden": "true",
3165
+ ...rest,
3166
+ children: [
3167
+ /* @__PURE__ */ jsx56("path", { d: "M8 2v4" }),
3168
+ /* @__PURE__ */ jsx56("path", { d: "M16 2v4" }),
3169
+ /* @__PURE__ */ jsx56("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
3170
+ /* @__PURE__ */ jsx56("path", { d: "M3 10h18" })
3171
+ ]
3172
+ }
3173
+ );
3174
+ }
3175
+
3176
+ // src/components/icons/camera/index.tsx
3177
+ import { jsx as jsx57, jsxs as jsxs41 } from "react/jsx-runtime";
3178
+ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3179
+ return /* @__PURE__ */ jsxs41(
3180
+ "svg",
3181
+ {
3182
+ xmlns: "http://www.w3.org/2000/svg",
3183
+ width: size3,
3184
+ height: size3,
3185
+ viewBox: "0 0 24 24",
3186
+ fill: "none",
3187
+ stroke: "currentColor",
3188
+ strokeWidth,
3189
+ strokeLinecap: "round",
3190
+ strokeLinejoin: "round",
3191
+ "aria-hidden": "true",
3192
+ ...rest,
3193
+ children: [
3194
+ /* @__PURE__ */ jsx57("path", { d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" }),
3195
+ /* @__PURE__ */ jsx57("circle", { cx: "12", cy: "13", r: "3" })
3196
+ ]
3197
+ }
3198
+ );
3199
+ }
3200
+
3201
+ // src/components/icons/chevron-up/index.tsx
3202
+ import { jsx as jsx58 } from "react/jsx-runtime";
3203
+ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3204
+ return /* @__PURE__ */ jsx58(
3205
+ "svg",
3206
+ {
3207
+ xmlns: "http://www.w3.org/2000/svg",
3208
+ width: size3,
3209
+ height: size3,
3210
+ viewBox: "0 0 24 24",
3211
+ fill: "none",
3212
+ stroke: "currentColor",
3213
+ strokeWidth,
3214
+ strokeLinecap: "round",
3215
+ strokeLinejoin: "round",
3216
+ "aria-hidden": "true",
3217
+ ...rest,
3218
+ children: /* @__PURE__ */ jsx58("path", { d: "m18 15-6-6-6 6" })
3219
+ }
3220
+ );
3221
+ }
3222
+
3223
+ // src/components/icons/chevrons-left/index.tsx
3224
+ import { jsx as jsx59, jsxs as jsxs42 } from "react/jsx-runtime";
3225
+ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3226
+ return /* @__PURE__ */ jsxs42(
3227
+ "svg",
3228
+ {
3229
+ xmlns: "http://www.w3.org/2000/svg",
3230
+ width: size3,
3231
+ height: size3,
3232
+ viewBox: "0 0 24 24",
3233
+ fill: "none",
3234
+ stroke: "currentColor",
3235
+ strokeWidth,
3236
+ strokeLinecap: "round",
3237
+ strokeLinejoin: "round",
3238
+ "aria-hidden": "true",
3239
+ ...rest,
3240
+ children: [
3241
+ /* @__PURE__ */ jsx59("path", { d: "m11 17-5-5 5-5" }),
3242
+ /* @__PURE__ */ jsx59("path", { d: "m18 17-5-5 5-5" })
3243
+ ]
3244
+ }
3245
+ );
3246
+ }
3247
+
3248
+ // src/components/icons/chevrons-right/index.tsx
3249
+ import { jsx as jsx60, jsxs as jsxs43 } from "react/jsx-runtime";
3250
+ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3251
+ return /* @__PURE__ */ jsxs43(
3252
+ "svg",
3253
+ {
3254
+ xmlns: "http://www.w3.org/2000/svg",
3255
+ width: size3,
3256
+ height: size3,
3257
+ viewBox: "0 0 24 24",
3258
+ fill: "none",
3259
+ stroke: "currentColor",
3260
+ strokeWidth,
3261
+ strokeLinecap: "round",
3262
+ strokeLinejoin: "round",
3263
+ "aria-hidden": "true",
3264
+ ...rest,
3265
+ children: [
3266
+ /* @__PURE__ */ jsx60("path", { d: "m6 17 5-5-5-5" }),
3267
+ /* @__PURE__ */ jsx60("path", { d: "m13 17 5-5-5-5" })
3268
+ ]
3269
+ }
3270
+ );
3271
+ }
3272
+
3273
+ // src/components/icons/clipboard/index.tsx
3274
+ import { jsx as jsx61, jsxs as jsxs44 } from "react/jsx-runtime";
3275
+ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3276
+ return /* @__PURE__ */ jsxs44(
3277
+ "svg",
3278
+ {
3279
+ xmlns: "http://www.w3.org/2000/svg",
3280
+ width: size3,
3281
+ height: size3,
3282
+ viewBox: "0 0 24 24",
3283
+ fill: "none",
3284
+ stroke: "currentColor",
3285
+ strokeWidth,
3286
+ strokeLinecap: "round",
3287
+ strokeLinejoin: "round",
3288
+ "aria-hidden": "true",
3289
+ ...rest,
3290
+ children: [
3291
+ /* @__PURE__ */ jsx61("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
3292
+ /* @__PURE__ */ jsx61("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" })
3293
+ ]
3294
+ }
3295
+ );
3296
+ }
3297
+
3298
+ // src/components/icons/clock/index.tsx
3299
+ import { jsx as jsx62, jsxs as jsxs45 } from "react/jsx-runtime";
3300
+ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3301
+ return /* @__PURE__ */ jsxs45(
3302
+ "svg",
3303
+ {
3304
+ xmlns: "http://www.w3.org/2000/svg",
3305
+ width: size3,
3306
+ height: size3,
3307
+ viewBox: "0 0 24 24",
3308
+ fill: "none",
3309
+ stroke: "currentColor",
3310
+ strokeWidth,
3311
+ strokeLinecap: "round",
3312
+ strokeLinejoin: "round",
3313
+ "aria-hidden": "true",
3314
+ ...rest,
3315
+ children: [
3316
+ /* @__PURE__ */ jsx62("circle", { cx: "12", cy: "12", r: "10" }),
3317
+ /* @__PURE__ */ jsx62("polyline", { points: "12 6 12 12 16 14" })
3318
+ ]
3319
+ }
3320
+ );
3321
+ }
3322
+
3323
+ // src/components/icons/cloud/index.tsx
3324
+ import { jsx as jsx63 } from "react/jsx-runtime";
3325
+ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3326
+ return /* @__PURE__ */ jsx63(
3327
+ "svg",
3328
+ {
3329
+ xmlns: "http://www.w3.org/2000/svg",
3330
+ width: size3,
3331
+ height: size3,
3332
+ viewBox: "0 0 24 24",
3333
+ fill: "none",
3334
+ stroke: "currentColor",
3335
+ strokeWidth,
3336
+ strokeLinecap: "round",
3337
+ strokeLinejoin: "round",
3338
+ "aria-hidden": "true",
3339
+ ...rest,
3340
+ children: /* @__PURE__ */ jsx63("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
3341
+ }
3342
+ );
3343
+ }
3344
+
3345
+ // src/components/icons/copy/index.tsx
3346
+ import { jsx as jsx64, jsxs as jsxs46 } from "react/jsx-runtime";
3347
+ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3348
+ return /* @__PURE__ */ jsxs46(
3349
+ "svg",
3350
+ {
3351
+ xmlns: "http://www.w3.org/2000/svg",
3352
+ width: size3,
3353
+ height: size3,
3354
+ viewBox: "0 0 24 24",
3355
+ fill: "none",
3356
+ stroke: "currentColor",
3357
+ strokeWidth,
3358
+ strokeLinecap: "round",
3359
+ strokeLinejoin: "round",
3360
+ "aria-hidden": "true",
3361
+ ...rest,
3362
+ children: [
3363
+ /* @__PURE__ */ jsx64("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
3364
+ /* @__PURE__ */ jsx64("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
3365
+ ]
3366
+ }
3367
+ );
3368
+ }
3369
+
3370
+ // src/components/icons/corner-down-right/index.tsx
3371
+ import { jsx as jsx65, jsxs as jsxs47 } from "react/jsx-runtime";
3372
+ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3373
+ return /* @__PURE__ */ jsxs47(
3374
+ "svg",
3375
+ {
3376
+ xmlns: "http://www.w3.org/2000/svg",
3377
+ width: size3,
3378
+ height: size3,
3379
+ viewBox: "0 0 24 24",
3380
+ fill: "none",
3381
+ stroke: "currentColor",
3382
+ strokeWidth,
3383
+ strokeLinecap: "round",
3384
+ strokeLinejoin: "round",
3385
+ "aria-hidden": "true",
3386
+ ...rest,
3387
+ children: [
3388
+ /* @__PURE__ */ jsx65("polyline", { points: "15 10 20 15 15 20" }),
3389
+ /* @__PURE__ */ jsx65("path", { d: "M4 4v7a4 4 0 0 0 4 4h12" })
3390
+ ]
3391
+ }
3392
+ );
3393
+ }
3394
+
3395
+ // src/components/icons/credit-card/index.tsx
3396
+ import { jsx as jsx66, jsxs as jsxs48 } from "react/jsx-runtime";
3397
+ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3398
+ return /* @__PURE__ */ jsxs48(
3399
+ "svg",
3400
+ {
3401
+ xmlns: "http://www.w3.org/2000/svg",
3402
+ width: size3,
3403
+ height: size3,
3404
+ viewBox: "0 0 24 24",
3405
+ fill: "none",
3406
+ stroke: "currentColor",
3407
+ strokeWidth,
3408
+ strokeLinecap: "round",
3409
+ strokeLinejoin: "round",
3410
+ "aria-hidden": "true",
3411
+ ...rest,
3412
+ children: [
3413
+ /* @__PURE__ */ jsx66("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
3414
+ /* @__PURE__ */ jsx66("line", { x1: "2", x2: "22", y1: "10", y2: "10" })
3415
+ ]
3416
+ }
3417
+ );
3418
+ }
3419
+
3420
+ // src/components/icons/dollar-sign/index.tsx
3421
+ import { jsx as jsx67, jsxs as jsxs49 } from "react/jsx-runtime";
3422
+ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3423
+ return /* @__PURE__ */ jsxs49(
3424
+ "svg",
3425
+ {
3426
+ xmlns: "http://www.w3.org/2000/svg",
3427
+ width: size3,
3428
+ height: size3,
3429
+ viewBox: "0 0 24 24",
3430
+ fill: "none",
3431
+ stroke: "currentColor",
3432
+ strokeWidth,
3433
+ strokeLinecap: "round",
3434
+ strokeLinejoin: "round",
3435
+ "aria-hidden": "true",
3436
+ ...rest,
3437
+ children: [
3438
+ /* @__PURE__ */ jsx67("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
3439
+ /* @__PURE__ */ jsx67("path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" })
3440
+ ]
3441
+ }
3442
+ );
3443
+ }
3444
+
3445
+ // src/components/icons/download/index.tsx
3446
+ import { jsx as jsx68, jsxs as jsxs50 } from "react/jsx-runtime";
3447
+ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3448
+ return /* @__PURE__ */ jsxs50(
3449
+ "svg",
3450
+ {
3451
+ xmlns: "http://www.w3.org/2000/svg",
3452
+ width: size3,
3453
+ height: size3,
3454
+ viewBox: "0 0 24 24",
3455
+ fill: "none",
3456
+ stroke: "currentColor",
3457
+ strokeWidth,
3458
+ strokeLinecap: "round",
3459
+ strokeLinejoin: "round",
3460
+ "aria-hidden": "true",
3461
+ ...rest,
3462
+ children: [
3463
+ /* @__PURE__ */ jsx68("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
3464
+ /* @__PURE__ */ jsx68("polyline", { points: "7 10 12 15 17 10" }),
3465
+ /* @__PURE__ */ jsx68("line", { x1: "12", x2: "12", y1: "15", y2: "3" })
3466
+ ]
3467
+ }
3468
+ );
3469
+ }
3470
+
3471
+ // src/components/icons/external-link/index.tsx
3472
+ import { jsx as jsx69, jsxs as jsxs51 } from "react/jsx-runtime";
3473
+ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3474
+ return /* @__PURE__ */ jsxs51(
3475
+ "svg",
3476
+ {
3477
+ xmlns: "http://www.w3.org/2000/svg",
3478
+ width: size3,
3479
+ height: size3,
3480
+ viewBox: "0 0 24 24",
3481
+ fill: "none",
3482
+ stroke: "currentColor",
3483
+ strokeWidth,
3484
+ strokeLinecap: "round",
3485
+ strokeLinejoin: "round",
3486
+ "aria-hidden": "true",
3487
+ ...rest,
3488
+ children: [
3489
+ /* @__PURE__ */ jsx69("path", { d: "M15 3h6v6" }),
3490
+ /* @__PURE__ */ jsx69("path", { d: "M10 14 21 3" }),
3491
+ /* @__PURE__ */ jsx69("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
3492
+ ]
3493
+ }
3494
+ );
3495
+ }
3496
+
3497
+ // src/components/icons/file/index.tsx
3498
+ import { jsx as jsx70, jsxs as jsxs52 } from "react/jsx-runtime";
3499
+ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3500
+ return /* @__PURE__ */ jsxs52(
3501
+ "svg",
3502
+ {
3503
+ xmlns: "http://www.w3.org/2000/svg",
3504
+ width: size3,
3505
+ height: size3,
3506
+ viewBox: "0 0 24 24",
3507
+ fill: "none",
3508
+ stroke: "currentColor",
3509
+ strokeWidth,
3510
+ strokeLinecap: "round",
3511
+ strokeLinejoin: "round",
3512
+ "aria-hidden": "true",
3513
+ ...rest,
3514
+ children: [
3515
+ /* @__PURE__ */ jsx70("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
3516
+ /* @__PURE__ */ jsx70("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })
3517
+ ]
3518
+ }
3519
+ );
3520
+ }
3521
+
3522
+ // src/components/icons/file-text/index.tsx
3523
+ import { jsx as jsx71, jsxs as jsxs53 } from "react/jsx-runtime";
3524
+ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3525
+ return /* @__PURE__ */ jsxs53(
3526
+ "svg",
3527
+ {
3528
+ xmlns: "http://www.w3.org/2000/svg",
3529
+ width: size3,
3530
+ height: size3,
3531
+ viewBox: "0 0 24 24",
3532
+ fill: "none",
3533
+ stroke: "currentColor",
3534
+ strokeWidth,
3535
+ strokeLinecap: "round",
3536
+ strokeLinejoin: "round",
3537
+ "aria-hidden": "true",
3538
+ ...rest,
3539
+ children: [
3540
+ /* @__PURE__ */ jsx71("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
3541
+ /* @__PURE__ */ jsx71("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
3542
+ /* @__PURE__ */ jsx71("path", { d: "M16 13H8" }),
3543
+ /* @__PURE__ */ jsx71("path", { d: "M16 17H8" }),
3544
+ /* @__PURE__ */ jsx71("path", { d: "M10 9H8" })
3545
+ ]
3546
+ }
3547
+ );
3548
+ }
3549
+
3550
+ // src/components/icons/filter/index.tsx
3551
+ import { jsx as jsx72 } from "react/jsx-runtime";
3552
+ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3553
+ return /* @__PURE__ */ jsx72(
3554
+ "svg",
3555
+ {
3556
+ xmlns: "http://www.w3.org/2000/svg",
3557
+ width: size3,
3558
+ height: size3,
3559
+ viewBox: "0 0 24 24",
3560
+ fill: "none",
3561
+ stroke: "currentColor",
3562
+ strokeWidth,
3563
+ strokeLinecap: "round",
3564
+ strokeLinejoin: "round",
3565
+ "aria-hidden": "true",
3566
+ ...rest,
3567
+ children: /* @__PURE__ */ jsx72("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
3568
+ }
3569
+ );
3570
+ }
3571
+
3572
+ // src/components/icons/fingerprint/index.tsx
3573
+ import { jsx as jsx73, jsxs as jsxs54 } from "react/jsx-runtime";
3574
+ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3575
+ return /* @__PURE__ */ jsxs54(
3576
+ "svg",
3577
+ {
3578
+ xmlns: "http://www.w3.org/2000/svg",
3579
+ width: size3,
3580
+ height: size3,
3581
+ viewBox: "0 0 24 24",
3582
+ fill: "none",
3583
+ stroke: "currentColor",
3584
+ strokeWidth,
3585
+ strokeLinecap: "round",
3586
+ strokeLinejoin: "round",
3587
+ "aria-hidden": "true",
3588
+ ...rest,
3589
+ children: [
3590
+ /* @__PURE__ */ jsx73("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
3591
+ /* @__PURE__ */ jsx73("path", { d: "M5 19.5C5.5 18 6 15 6 12c0-.7.12-1.37.34-2" }),
3592
+ /* @__PURE__ */ jsx73("path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" }),
3593
+ /* @__PURE__ */ jsx73("path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }),
3594
+ /* @__PURE__ */ jsx73("path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }),
3595
+ /* @__PURE__ */ jsx73("path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }),
3596
+ /* @__PURE__ */ jsx73("path", { d: "M2 16h.01" }),
3597
+ /* @__PURE__ */ jsx73("path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }),
3598
+ /* @__PURE__ */ jsx73("path", { d: "M9 6.8a6 6 0 0 1 9 5.2c0 .47 0 1.17-.02 2" })
3599
+ ]
3600
+ }
3601
+ );
3602
+ }
3603
+
3604
+ // src/components/icons/folder/index.tsx
3605
+ import { jsx as jsx74 } from "react/jsx-runtime";
3606
+ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3607
+ return /* @__PURE__ */ jsx74(
3608
+ "svg",
3609
+ {
3610
+ xmlns: "http://www.w3.org/2000/svg",
3611
+ width: size3,
3612
+ height: size3,
3613
+ viewBox: "0 0 24 24",
3614
+ fill: "none",
3615
+ stroke: "currentColor",
3616
+ strokeWidth,
3617
+ strokeLinecap: "round",
3618
+ strokeLinejoin: "round",
3619
+ "aria-hidden": "true",
3620
+ ...rest,
3621
+ children: /* @__PURE__ */ jsx74("path", { d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" })
3622
+ }
3623
+ );
3624
+ }
3625
+
3626
+ // src/components/icons/folder-open/index.tsx
3627
+ import { jsx as jsx75 } from "react/jsx-runtime";
3628
+ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3629
+ return /* @__PURE__ */ jsx75(
3630
+ "svg",
3631
+ {
3632
+ xmlns: "http://www.w3.org/2000/svg",
3633
+ width: size3,
3634
+ height: size3,
3635
+ viewBox: "0 0 24 24",
3636
+ fill: "none",
3637
+ stroke: "currentColor",
3638
+ strokeWidth,
3639
+ strokeLinecap: "round",
3640
+ strokeLinejoin: "round",
3641
+ "aria-hidden": "true",
3642
+ ...rest,
3643
+ children: /* @__PURE__ */ jsx75("path", { d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" })
3644
+ }
3645
+ );
3646
+ }
3647
+
3648
+ // src/components/icons/gift/index.tsx
3649
+ import { jsx as jsx76, jsxs as jsxs55 } from "react/jsx-runtime";
3650
+ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3651
+ return /* @__PURE__ */ jsxs55(
3652
+ "svg",
3653
+ {
3654
+ xmlns: "http://www.w3.org/2000/svg",
3655
+ width: size3,
3656
+ height: size3,
3657
+ viewBox: "0 0 24 24",
3658
+ fill: "none",
3659
+ stroke: "currentColor",
3660
+ strokeWidth,
3661
+ strokeLinecap: "round",
3662
+ strokeLinejoin: "round",
3663
+ "aria-hidden": "true",
3664
+ ...rest,
3665
+ children: [
3666
+ /* @__PURE__ */ jsx76("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
3667
+ /* @__PURE__ */ jsx76("path", { d: "M12 8v13" }),
3668
+ /* @__PURE__ */ jsx76("path", { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" }),
3669
+ /* @__PURE__ */ jsx76("path", { d: "M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5" })
3670
+ ]
3671
+ }
3672
+ );
3673
+ }
3674
+
3675
+ // src/components/icons/globe/index.tsx
3676
+ import { jsx as jsx77, jsxs as jsxs56 } from "react/jsx-runtime";
3677
+ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3678
+ return /* @__PURE__ */ jsxs56(
3679
+ "svg",
3680
+ {
3681
+ xmlns: "http://www.w3.org/2000/svg",
3682
+ width: size3,
3683
+ height: size3,
3684
+ viewBox: "0 0 24 24",
3685
+ fill: "none",
3686
+ stroke: "currentColor",
3687
+ strokeWidth,
3688
+ strokeLinecap: "round",
3689
+ strokeLinejoin: "round",
3690
+ "aria-hidden": "true",
3691
+ ...rest,
3692
+ children: [
3693
+ /* @__PURE__ */ jsx77("circle", { cx: "12", cy: "12", r: "10" }),
3694
+ /* @__PURE__ */ jsx77("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
3695
+ /* @__PURE__ */ jsx77("path", { d: "M2 12h20" })
3696
+ ]
3697
+ }
3698
+ );
3699
+ }
3700
+
3701
+ // src/components/icons/grid/index.tsx
3702
+ import { jsx as jsx78, jsxs as jsxs57 } from "react/jsx-runtime";
3703
+ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3704
+ return /* @__PURE__ */ jsxs57(
3705
+ "svg",
3706
+ {
3707
+ xmlns: "http://www.w3.org/2000/svg",
3708
+ width: size3,
3709
+ height: size3,
3710
+ viewBox: "0 0 24 24",
3711
+ fill: "none",
3712
+ stroke: "currentColor",
3713
+ strokeWidth,
3714
+ strokeLinecap: "round",
3715
+ strokeLinejoin: "round",
3716
+ "aria-hidden": "true",
3717
+ ...rest,
3718
+ children: [
3719
+ /* @__PURE__ */ jsx78("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
3720
+ /* @__PURE__ */ jsx78("path", { d: "M3 9h18" }),
3721
+ /* @__PURE__ */ jsx78("path", { d: "M3 15h18" }),
3722
+ /* @__PURE__ */ jsx78("path", { d: "M9 3v18" }),
3723
+ /* @__PURE__ */ jsx78("path", { d: "M15 3v18" })
3724
+ ]
3725
+ }
3726
+ );
3727
+ }
3728
+
3729
+ // src/components/icons/heart/index.tsx
3730
+ import { jsx as jsx79 } from "react/jsx-runtime";
3731
+ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3732
+ return /* @__PURE__ */ jsx79(
3733
+ "svg",
3734
+ {
3735
+ xmlns: "http://www.w3.org/2000/svg",
3736
+ width: size3,
3737
+ height: size3,
3738
+ viewBox: "0 0 24 24",
3739
+ fill: "none",
3740
+ stroke: "currentColor",
3741
+ strokeWidth,
3742
+ strokeLinecap: "round",
3743
+ strokeLinejoin: "round",
3744
+ "aria-hidden": "true",
3745
+ ...rest,
3746
+ children: /* @__PURE__ */ jsx79("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
3747
+ }
3748
+ );
3749
+ }
3750
+
3751
+ // src/components/icons/help-circle/index.tsx
3752
+ import { jsx as jsx80, jsxs as jsxs58 } from "react/jsx-runtime";
3753
+ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3754
+ return /* @__PURE__ */ jsxs58(
3755
+ "svg",
3756
+ {
3757
+ xmlns: "http://www.w3.org/2000/svg",
3758
+ width: size3,
3759
+ height: size3,
3760
+ viewBox: "0 0 24 24",
3761
+ fill: "none",
3762
+ stroke: "currentColor",
3763
+ strokeWidth,
3764
+ strokeLinecap: "round",
3765
+ strokeLinejoin: "round",
3766
+ "aria-hidden": "true",
3767
+ ...rest,
3768
+ children: [
3769
+ /* @__PURE__ */ jsx80("circle", { cx: "12", cy: "12", r: "10" }),
3770
+ /* @__PURE__ */ jsx80("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
3771
+ /* @__PURE__ */ jsx80("path", { d: "M12 17h.01" })
3772
+ ]
3773
+ }
3774
+ );
3775
+ }
3776
+
3777
+ // src/components/icons/home/index.tsx
3778
+ import { jsx as jsx81, jsxs as jsxs59 } from "react/jsx-runtime";
3779
+ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3780
+ return /* @__PURE__ */ jsxs59(
3781
+ "svg",
3782
+ {
3783
+ xmlns: "http://www.w3.org/2000/svg",
3784
+ width: size3,
3785
+ height: size3,
3786
+ viewBox: "0 0 24 24",
3787
+ fill: "none",
3788
+ stroke: "currentColor",
3789
+ strokeWidth,
3790
+ strokeLinecap: "round",
3791
+ strokeLinejoin: "round",
3792
+ "aria-hidden": "true",
3793
+ ...rest,
3794
+ children: [
3795
+ /* @__PURE__ */ jsx81("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
3796
+ /* @__PURE__ */ jsx81("polyline", { points: "9 22 9 12 15 12 15 22" })
3797
+ ]
3798
+ }
3799
+ );
3800
+ }
3801
+
3802
+ // src/components/icons/image/index.tsx
3803
+ import { jsx as jsx82, jsxs as jsxs60 } from "react/jsx-runtime";
3804
+ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3805
+ return /* @__PURE__ */ jsxs60(
3806
+ "svg",
3807
+ {
3808
+ xmlns: "http://www.w3.org/2000/svg",
3809
+ width: size3,
3810
+ height: size3,
3811
+ viewBox: "0 0 24 24",
3812
+ fill: "none",
3813
+ stroke: "currentColor",
3814
+ strokeWidth,
3815
+ strokeLinecap: "round",
3816
+ strokeLinejoin: "round",
3817
+ "aria-hidden": "true",
3818
+ ...rest,
3819
+ children: [
3820
+ /* @__PURE__ */ jsx82("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
3821
+ /* @__PURE__ */ jsx82("circle", { cx: "9", cy: "9", r: "2" }),
3822
+ /* @__PURE__ */ jsx82("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
3823
+ ]
3824
+ }
3825
+ );
3826
+ }
3827
+
3828
+ // src/components/icons/inbox/index.tsx
3829
+ import { jsx as jsx83, jsxs as jsxs61 } from "react/jsx-runtime";
3830
+ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3831
+ return /* @__PURE__ */ jsxs61(
3832
+ "svg",
3833
+ {
3834
+ xmlns: "http://www.w3.org/2000/svg",
3835
+ width: size3,
3836
+ height: size3,
3837
+ viewBox: "0 0 24 24",
3838
+ fill: "none",
3839
+ stroke: "currentColor",
3840
+ strokeWidth,
3841
+ strokeLinecap: "round",
3842
+ strokeLinejoin: "round",
3843
+ "aria-hidden": "true",
3844
+ ...rest,
3845
+ children: [
3846
+ /* @__PURE__ */ jsx83("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
3847
+ /* @__PURE__ */ jsx83("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
3848
+ ]
3849
+ }
3850
+ );
3851
+ }
3852
+
3853
+ // src/components/icons/key/index.tsx
3854
+ import { jsx as jsx84, jsxs as jsxs62 } from "react/jsx-runtime";
3855
+ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3856
+ return /* @__PURE__ */ jsxs62(
3857
+ "svg",
3858
+ {
3859
+ xmlns: "http://www.w3.org/2000/svg",
3860
+ width: size3,
3861
+ height: size3,
3862
+ viewBox: "0 0 24 24",
3863
+ fill: "none",
3864
+ stroke: "currentColor",
3865
+ strokeWidth,
3866
+ strokeLinecap: "round",
3867
+ strokeLinejoin: "round",
3868
+ "aria-hidden": "true",
3869
+ ...rest,
3870
+ children: [
3871
+ /* @__PURE__ */ jsx84("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
3872
+ /* @__PURE__ */ jsx84("path", { d: "m21 2-9.6 9.6" }),
3873
+ /* @__PURE__ */ jsx84("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
3874
+ ]
3875
+ }
3876
+ );
3877
+ }
3878
+
3879
+ // src/components/icons/layout/index.tsx
3880
+ import { jsx as jsx85, jsxs as jsxs63 } from "react/jsx-runtime";
3881
+ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3882
+ return /* @__PURE__ */ jsxs63(
3883
+ "svg",
3884
+ {
3885
+ xmlns: "http://www.w3.org/2000/svg",
3886
+ width: size3,
3887
+ height: size3,
3888
+ viewBox: "0 0 24 24",
3889
+ fill: "none",
3890
+ stroke: "currentColor",
3891
+ strokeWidth,
3892
+ strokeLinecap: "round",
3893
+ strokeLinejoin: "round",
3894
+ "aria-hidden": "true",
3895
+ ...rest,
3896
+ children: [
3897
+ /* @__PURE__ */ jsx85("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
3898
+ /* @__PURE__ */ jsx85("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
3899
+ /* @__PURE__ */ jsx85("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
3900
+ /* @__PURE__ */ jsx85("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
3901
+ ]
3902
+ }
3903
+ );
3904
+ }
3905
+
3906
+ // src/components/icons/link/index.tsx
3907
+ import { jsx as jsx86, jsxs as jsxs64 } from "react/jsx-runtime";
3908
+ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3909
+ return /* @__PURE__ */ jsxs64(
3910
+ "svg",
3911
+ {
3912
+ xmlns: "http://www.w3.org/2000/svg",
3913
+ width: size3,
3914
+ height: size3,
3915
+ viewBox: "0 0 24 24",
3916
+ fill: "none",
3917
+ stroke: "currentColor",
3918
+ strokeWidth,
3919
+ strokeLinecap: "round",
3920
+ strokeLinejoin: "round",
3921
+ "aria-hidden": "true",
3922
+ ...rest,
3923
+ children: [
3924
+ /* @__PURE__ */ jsx86("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
3925
+ /* @__PURE__ */ jsx86("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
3926
+ ]
3927
+ }
3928
+ );
3929
+ }
3930
+
3931
+ // src/components/icons/list/index.tsx
3932
+ import { jsx as jsx87, jsxs as jsxs65 } from "react/jsx-runtime";
3933
+ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3934
+ return /* @__PURE__ */ jsxs65(
3935
+ "svg",
3936
+ {
3937
+ xmlns: "http://www.w3.org/2000/svg",
3938
+ width: size3,
3939
+ height: size3,
3940
+ viewBox: "0 0 24 24",
3941
+ fill: "none",
3942
+ stroke: "currentColor",
3943
+ strokeWidth,
3944
+ strokeLinecap: "round",
3945
+ strokeLinejoin: "round",
3946
+ "aria-hidden": "true",
3947
+ ...rest,
3948
+ children: [
3949
+ /* @__PURE__ */ jsx87("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
3950
+ /* @__PURE__ */ jsx87("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
3951
+ /* @__PURE__ */ jsx87("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
3952
+ /* @__PURE__ */ jsx87("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
3953
+ /* @__PURE__ */ jsx87("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
3954
+ /* @__PURE__ */ jsx87("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
3955
+ ]
3956
+ }
3957
+ );
3958
+ }
3959
+
3960
+ // src/components/icons/loader/index.tsx
3961
+ import { jsx as jsx88, jsxs as jsxs66 } from "react/jsx-runtime";
3962
+ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3963
+ return /* @__PURE__ */ jsxs66(
3964
+ "svg",
3965
+ {
3966
+ xmlns: "http://www.w3.org/2000/svg",
3967
+ width: size3,
3968
+ height: size3,
3969
+ viewBox: "0 0 24 24",
3970
+ fill: "none",
3971
+ stroke: "currentColor",
3972
+ strokeWidth,
3973
+ strokeLinecap: "round",
3974
+ strokeLinejoin: "round",
3975
+ "aria-hidden": "true",
3976
+ ...rest,
3977
+ children: [
3978
+ /* @__PURE__ */ jsx88("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
3979
+ /* @__PURE__ */ jsx88("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
3980
+ /* @__PURE__ */ jsx88("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
3981
+ /* @__PURE__ */ jsx88("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
3982
+ /* @__PURE__ */ jsx88("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
3983
+ /* @__PURE__ */ jsx88("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
3984
+ /* @__PURE__ */ jsx88("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
3985
+ /* @__PURE__ */ jsx88("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
3986
+ ]
3987
+ }
3988
+ );
3989
+ }
3990
+
3991
+ // src/components/icons/lock/index.tsx
3992
+ import { jsx as jsx89, jsxs as jsxs67 } from "react/jsx-runtime";
3993
+ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3994
+ return /* @__PURE__ */ jsxs67(
3995
+ "svg",
3996
+ {
3997
+ xmlns: "http://www.w3.org/2000/svg",
3998
+ width: size3,
3999
+ height: size3,
4000
+ viewBox: "0 0 24 24",
4001
+ fill: "none",
4002
+ stroke: "currentColor",
4003
+ strokeWidth,
4004
+ strokeLinecap: "round",
4005
+ strokeLinejoin: "round",
4006
+ "aria-hidden": "true",
4007
+ ...rest,
4008
+ children: [
4009
+ /* @__PURE__ */ jsx89("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
4010
+ /* @__PURE__ */ jsx89("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
4011
+ ]
4012
+ }
4013
+ );
4014
+ }
4015
+
4016
+ // src/components/icons/log-in/index.tsx
4017
+ import { jsx as jsx90, jsxs as jsxs68 } from "react/jsx-runtime";
4018
+ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4019
+ return /* @__PURE__ */ jsxs68(
4020
+ "svg",
4021
+ {
4022
+ xmlns: "http://www.w3.org/2000/svg",
4023
+ width: size3,
4024
+ height: size3,
4025
+ viewBox: "0 0 24 24",
4026
+ fill: "none",
4027
+ stroke: "currentColor",
4028
+ strokeWidth,
4029
+ strokeLinecap: "round",
4030
+ strokeLinejoin: "round",
4031
+ "aria-hidden": "true",
4032
+ ...rest,
4033
+ children: [
4034
+ /* @__PURE__ */ jsx90("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
4035
+ /* @__PURE__ */ jsx90("polyline", { points: "10 17 15 12 10 7" }),
4036
+ /* @__PURE__ */ jsx90("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
4037
+ ]
4038
+ }
4039
+ );
4040
+ }
4041
+
4042
+ // src/components/icons/log-out/index.tsx
4043
+ import { jsx as jsx91, jsxs as jsxs69 } from "react/jsx-runtime";
4044
+ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4045
+ return /* @__PURE__ */ jsxs69(
4046
+ "svg",
4047
+ {
4048
+ xmlns: "http://www.w3.org/2000/svg",
4049
+ width: size3,
4050
+ height: size3,
4051
+ viewBox: "0 0 24 24",
4052
+ fill: "none",
4053
+ stroke: "currentColor",
4054
+ strokeWidth,
4055
+ strokeLinecap: "round",
4056
+ strokeLinejoin: "round",
4057
+ "aria-hidden": "true",
4058
+ ...rest,
4059
+ children: [
4060
+ /* @__PURE__ */ jsx91("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
4061
+ /* @__PURE__ */ jsx91("polyline", { points: "16 17 21 12 16 7" }),
4062
+ /* @__PURE__ */ jsx91("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
4063
+ ]
4064
+ }
4065
+ );
4066
+ }
4067
+
4068
+ // src/components/icons/mail/index.tsx
4069
+ import { jsx as jsx92, jsxs as jsxs70 } from "react/jsx-runtime";
4070
+ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4071
+ return /* @__PURE__ */ jsxs70(
4072
+ "svg",
4073
+ {
4074
+ xmlns: "http://www.w3.org/2000/svg",
4075
+ width: size3,
4076
+ height: size3,
4077
+ viewBox: "0 0 24 24",
4078
+ fill: "none",
4079
+ stroke: "currentColor",
4080
+ strokeWidth,
4081
+ strokeLinecap: "round",
4082
+ strokeLinejoin: "round",
4083
+ "aria-hidden": "true",
4084
+ ...rest,
4085
+ children: [
4086
+ /* @__PURE__ */ jsx92("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
4087
+ /* @__PURE__ */ jsx92("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
4088
+ ]
4089
+ }
4090
+ );
4091
+ }
4092
+
4093
+ // src/components/icons/map-pin/index.tsx
4094
+ import { jsx as jsx93, jsxs as jsxs71 } from "react/jsx-runtime";
4095
+ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4096
+ return /* @__PURE__ */ jsxs71(
4097
+ "svg",
4098
+ {
4099
+ xmlns: "http://www.w3.org/2000/svg",
4100
+ width: size3,
4101
+ height: size3,
4102
+ viewBox: "0 0 24 24",
4103
+ fill: "none",
4104
+ stroke: "currentColor",
4105
+ strokeWidth,
4106
+ strokeLinecap: "round",
4107
+ strokeLinejoin: "round",
4108
+ "aria-hidden": "true",
4109
+ ...rest,
4110
+ children: [
4111
+ /* @__PURE__ */ jsx93("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
4112
+ /* @__PURE__ */ jsx93("circle", { cx: "12", cy: "10", r: "3" })
4113
+ ]
4114
+ }
4115
+ );
4116
+ }
4117
+
4118
+ // src/components/icons/maximize/index.tsx
4119
+ import { jsx as jsx94, jsxs as jsxs72 } from "react/jsx-runtime";
4120
+ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4121
+ return /* @__PURE__ */ jsxs72(
4122
+ "svg",
4123
+ {
4124
+ xmlns: "http://www.w3.org/2000/svg",
4125
+ width: size3,
4126
+ height: size3,
4127
+ viewBox: "0 0 24 24",
4128
+ fill: "none",
4129
+ stroke: "currentColor",
4130
+ strokeWidth,
4131
+ strokeLinecap: "round",
4132
+ strokeLinejoin: "round",
4133
+ "aria-hidden": "true",
4134
+ ...rest,
4135
+ children: [
4136
+ /* @__PURE__ */ jsx94("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
4137
+ /* @__PURE__ */ jsx94("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
4138
+ /* @__PURE__ */ jsx94("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
4139
+ /* @__PURE__ */ jsx94("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
4140
+ ]
4141
+ }
4142
+ );
4143
+ }
4144
+
4145
+ // src/components/icons/menu/index.tsx
4146
+ import { jsx as jsx95, jsxs as jsxs73 } from "react/jsx-runtime";
4147
+ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4148
+ return /* @__PURE__ */ jsxs73(
4149
+ "svg",
4150
+ {
4151
+ xmlns: "http://www.w3.org/2000/svg",
4152
+ width: size3,
4153
+ height: size3,
4154
+ viewBox: "0 0 24 24",
4155
+ fill: "none",
4156
+ stroke: "currentColor",
4157
+ strokeWidth,
4158
+ strokeLinecap: "round",
4159
+ strokeLinejoin: "round",
4160
+ "aria-hidden": "true",
4161
+ ...rest,
4162
+ children: [
4163
+ /* @__PURE__ */ jsx95("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
4164
+ /* @__PURE__ */ jsx95("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
4165
+ /* @__PURE__ */ jsx95("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
4166
+ ]
4167
+ }
4168
+ );
4169
+ }
4170
+
4171
+ // src/components/icons/message-circle/index.tsx
4172
+ import { jsx as jsx96 } from "react/jsx-runtime";
4173
+ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4174
+ return /* @__PURE__ */ jsx96(
4175
+ "svg",
4176
+ {
4177
+ xmlns: "http://www.w3.org/2000/svg",
4178
+ width: size3,
4179
+ height: size3,
4180
+ viewBox: "0 0 24 24",
4181
+ fill: "none",
4182
+ stroke: "currentColor",
4183
+ strokeWidth,
4184
+ strokeLinecap: "round",
4185
+ strokeLinejoin: "round",
4186
+ "aria-hidden": "true",
4187
+ ...rest,
4188
+ children: /* @__PURE__ */ jsx96("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
4189
+ }
4190
+ );
4191
+ }
4192
+
4193
+ // src/components/icons/message-square/index.tsx
4194
+ import { jsx as jsx97 } from "react/jsx-runtime";
4195
+ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4196
+ return /* @__PURE__ */ jsx97(
4197
+ "svg",
4198
+ {
4199
+ xmlns: "http://www.w3.org/2000/svg",
4200
+ width: size3,
4201
+ height: size3,
4202
+ viewBox: "0 0 24 24",
4203
+ fill: "none",
4204
+ stroke: "currentColor",
4205
+ strokeWidth,
4206
+ strokeLinecap: "round",
4207
+ strokeLinejoin: "round",
4208
+ "aria-hidden": "true",
4209
+ ...rest,
4210
+ children: /* @__PURE__ */ jsx97("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
4211
+ }
4212
+ );
4213
+ }
4214
+
4215
+ // src/components/icons/mic/index.tsx
4216
+ import { jsx as jsx98, jsxs as jsxs74 } from "react/jsx-runtime";
4217
+ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4218
+ return /* @__PURE__ */ jsxs74(
4219
+ "svg",
4220
+ {
4221
+ xmlns: "http://www.w3.org/2000/svg",
4222
+ width: size3,
4223
+ height: size3,
4224
+ viewBox: "0 0 24 24",
4225
+ fill: "none",
4226
+ stroke: "currentColor",
4227
+ strokeWidth,
4228
+ strokeLinecap: "round",
4229
+ strokeLinejoin: "round",
4230
+ "aria-hidden": "true",
4231
+ ...rest,
4232
+ children: [
4233
+ /* @__PURE__ */ jsx98("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
4234
+ /* @__PURE__ */ jsx98("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
4235
+ /* @__PURE__ */ jsx98("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
4236
+ ]
4237
+ }
4238
+ );
4239
+ }
4240
+
4241
+ // src/components/icons/minimize/index.tsx
4242
+ import { jsx as jsx99, jsxs as jsxs75 } from "react/jsx-runtime";
4243
+ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4244
+ return /* @__PURE__ */ jsxs75(
4245
+ "svg",
4246
+ {
4247
+ xmlns: "http://www.w3.org/2000/svg",
4248
+ width: size3,
4249
+ height: size3,
4250
+ viewBox: "0 0 24 24",
4251
+ fill: "none",
4252
+ stroke: "currentColor",
4253
+ strokeWidth,
4254
+ strokeLinecap: "round",
4255
+ strokeLinejoin: "round",
4256
+ "aria-hidden": "true",
4257
+ ...rest,
4258
+ children: [
4259
+ /* @__PURE__ */ jsx99("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
4260
+ /* @__PURE__ */ jsx99("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
4261
+ /* @__PURE__ */ jsx99("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
4262
+ /* @__PURE__ */ jsx99("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
4263
+ ]
4264
+ }
4265
+ );
4266
+ }
4267
+
4268
+ // src/components/icons/minus/index.tsx
4269
+ import { jsx as jsx100 } from "react/jsx-runtime";
4270
+ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4271
+ return /* @__PURE__ */ jsx100(
4272
+ "svg",
4273
+ {
4274
+ xmlns: "http://www.w3.org/2000/svg",
4275
+ width: size3,
4276
+ height: size3,
4277
+ viewBox: "0 0 24 24",
4278
+ fill: "none",
4279
+ stroke: "currentColor",
4280
+ strokeWidth,
4281
+ strokeLinecap: "round",
4282
+ strokeLinejoin: "round",
4283
+ "aria-hidden": "true",
4284
+ ...rest,
4285
+ children: /* @__PURE__ */ jsx100("path", { d: "M5 12h14" })
4286
+ }
4287
+ );
4288
+ }
4289
+
4290
+ // src/components/icons/moon/index.tsx
4291
+ import { jsx as jsx101 } from "react/jsx-runtime";
4292
+ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4293
+ return /* @__PURE__ */ jsx101(
4294
+ "svg",
4295
+ {
4296
+ xmlns: "http://www.w3.org/2000/svg",
4297
+ width: size3,
4298
+ height: size3,
4299
+ viewBox: "0 0 24 24",
4300
+ fill: "none",
4301
+ stroke: "currentColor",
4302
+ strokeWidth,
4303
+ strokeLinecap: "round",
4304
+ strokeLinejoin: "round",
4305
+ "aria-hidden": "true",
4306
+ ...rest,
4307
+ children: /* @__PURE__ */ jsx101("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
4308
+ }
4309
+ );
4310
+ }
4311
+
4312
+ // src/components/icons/more-horizontal/index.tsx
4313
+ import { jsx as jsx102, jsxs as jsxs76 } from "react/jsx-runtime";
4314
+ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4315
+ return /* @__PURE__ */ jsxs76(
4316
+ "svg",
4317
+ {
4318
+ xmlns: "http://www.w3.org/2000/svg",
4319
+ width: size3,
4320
+ height: size3,
4321
+ viewBox: "0 0 24 24",
4322
+ fill: "none",
4323
+ stroke: "currentColor",
4324
+ strokeWidth,
4325
+ strokeLinecap: "round",
4326
+ strokeLinejoin: "round",
4327
+ "aria-hidden": "true",
4328
+ ...rest,
4329
+ children: [
4330
+ /* @__PURE__ */ jsx102("circle", { cx: "12", cy: "12", r: "1" }),
4331
+ /* @__PURE__ */ jsx102("circle", { cx: "19", cy: "12", r: "1" }),
4332
+ /* @__PURE__ */ jsx102("circle", { cx: "5", cy: "12", r: "1" })
4333
+ ]
4334
+ }
4335
+ );
4336
+ }
4337
+
4338
+ // src/components/icons/more-vertical/index.tsx
4339
+ import { jsx as jsx103, jsxs as jsxs77 } from "react/jsx-runtime";
4340
+ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4341
+ return /* @__PURE__ */ jsxs77(
4342
+ "svg",
4343
+ {
4344
+ xmlns: "http://www.w3.org/2000/svg",
4345
+ width: size3,
4346
+ height: size3,
4347
+ viewBox: "0 0 24 24",
4348
+ fill: "none",
4349
+ stroke: "currentColor",
4350
+ strokeWidth,
4351
+ strokeLinecap: "round",
4352
+ strokeLinejoin: "round",
4353
+ "aria-hidden": "true",
4354
+ ...rest,
4355
+ children: [
4356
+ /* @__PURE__ */ jsx103("circle", { cx: "12", cy: "12", r: "1" }),
4357
+ /* @__PURE__ */ jsx103("circle", { cx: "12", cy: "5", r: "1" }),
4358
+ /* @__PURE__ */ jsx103("circle", { cx: "12", cy: "19", r: "1" })
4359
+ ]
4360
+ }
4361
+ );
4362
+ }
4363
+
4364
+ // src/components/icons/package/index.tsx
4365
+ import { jsx as jsx104, jsxs as jsxs78 } from "react/jsx-runtime";
4366
+ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4367
+ return /* @__PURE__ */ jsxs78(
4368
+ "svg",
4369
+ {
4370
+ xmlns: "http://www.w3.org/2000/svg",
4371
+ width: size3,
4372
+ height: size3,
4373
+ viewBox: "0 0 24 24",
4374
+ fill: "none",
4375
+ stroke: "currentColor",
4376
+ strokeWidth,
4377
+ strokeLinecap: "round",
4378
+ strokeLinejoin: "round",
4379
+ "aria-hidden": "true",
4380
+ ...rest,
4381
+ children: [
4382
+ /* @__PURE__ */ jsx104("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
4383
+ /* @__PURE__ */ jsx104("path", { d: "M3.3 7 12 12l8.7-5" }),
4384
+ /* @__PURE__ */ jsx104("path", { d: "M12 22V12" })
4385
+ ]
4386
+ }
4387
+ );
4388
+ }
4389
+
4390
+ // src/components/icons/paperclip/index.tsx
4391
+ import { jsx as jsx105 } from "react/jsx-runtime";
4392
+ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4393
+ return /* @__PURE__ */ jsx105(
4394
+ "svg",
4395
+ {
4396
+ xmlns: "http://www.w3.org/2000/svg",
4397
+ width: size3,
4398
+ height: size3,
4399
+ viewBox: "0 0 24 24",
4400
+ fill: "none",
4401
+ stroke: "currentColor",
4402
+ strokeWidth,
4403
+ strokeLinecap: "round",
4404
+ strokeLinejoin: "round",
4405
+ "aria-hidden": "true",
4406
+ ...rest,
4407
+ children: /* @__PURE__ */ jsx105("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
4408
+ }
4409
+ );
4410
+ }
4411
+
4412
+ // src/components/icons/pause/index.tsx
4413
+ import { jsx as jsx106, jsxs as jsxs79 } from "react/jsx-runtime";
4414
+ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4415
+ return /* @__PURE__ */ jsxs79(
4416
+ "svg",
4417
+ {
4418
+ xmlns: "http://www.w3.org/2000/svg",
4419
+ width: size3,
4420
+ height: size3,
4421
+ viewBox: "0 0 24 24",
4422
+ fill: "none",
4423
+ stroke: "currentColor",
4424
+ strokeWidth,
4425
+ strokeLinecap: "round",
4426
+ strokeLinejoin: "round",
4427
+ "aria-hidden": "true",
4428
+ ...rest,
4429
+ children: [
4430
+ /* @__PURE__ */ jsx106("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
4431
+ /* @__PURE__ */ jsx106("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
4432
+ ]
4433
+ }
4434
+ );
4435
+ }
4436
+
4437
+ // src/components/icons/pencil/index.tsx
4438
+ import { jsx as jsx107, jsxs as jsxs80 } from "react/jsx-runtime";
4439
+ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4440
+ return /* @__PURE__ */ jsxs80(
4441
+ "svg",
4442
+ {
4443
+ xmlns: "http://www.w3.org/2000/svg",
4444
+ width: size3,
4445
+ height: size3,
4446
+ viewBox: "0 0 24 24",
4447
+ fill: "none",
4448
+ stroke: "currentColor",
4449
+ strokeWidth,
4450
+ strokeLinecap: "round",
4451
+ strokeLinejoin: "round",
4452
+ "aria-hidden": "true",
4453
+ ...rest,
4454
+ children: [
4455
+ /* @__PURE__ */ jsx107("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
4456
+ /* @__PURE__ */ jsx107("path", { d: "m15 5 4 4" })
4457
+ ]
4458
+ }
4459
+ );
4460
+ }
4461
+
4462
+ // src/components/icons/phone/index.tsx
4463
+ import { jsx as jsx108 } from "react/jsx-runtime";
4464
+ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4465
+ return /* @__PURE__ */ jsx108(
4466
+ "svg",
4467
+ {
4468
+ xmlns: "http://www.w3.org/2000/svg",
4469
+ width: size3,
4470
+ height: size3,
4471
+ viewBox: "0 0 24 24",
4472
+ fill: "none",
4473
+ stroke: "currentColor",
4474
+ strokeWidth,
4475
+ strokeLinecap: "round",
4476
+ strokeLinejoin: "round",
4477
+ "aria-hidden": "true",
4478
+ ...rest,
4479
+ children: /* @__PURE__ */ jsx108("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
4480
+ }
4481
+ );
4482
+ }
4483
+
4484
+ // src/components/icons/play/index.tsx
4485
+ import { jsx as jsx109 } from "react/jsx-runtime";
4486
+ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4487
+ return /* @__PURE__ */ jsx109(
4488
+ "svg",
4489
+ {
4490
+ xmlns: "http://www.w3.org/2000/svg",
4491
+ width: size3,
4492
+ height: size3,
4493
+ viewBox: "0 0 24 24",
4494
+ fill: "none",
4495
+ stroke: "currentColor",
4496
+ strokeWidth,
4497
+ strokeLinecap: "round",
4498
+ strokeLinejoin: "round",
4499
+ "aria-hidden": "true",
4500
+ ...rest,
4501
+ children: /* @__PURE__ */ jsx109("polygon", { points: "6 3 20 12 6 21 6 3" })
4502
+ }
4503
+ );
4504
+ }
4505
+
4506
+ // src/components/icons/plus/index.tsx
4507
+ import { jsx as jsx110, jsxs as jsxs81 } from "react/jsx-runtime";
4508
+ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4509
+ return /* @__PURE__ */ jsxs81(
4510
+ "svg",
4511
+ {
4512
+ xmlns: "http://www.w3.org/2000/svg",
4513
+ width: size3,
4514
+ height: size3,
4515
+ viewBox: "0 0 24 24",
4516
+ fill: "none",
4517
+ stroke: "currentColor",
4518
+ strokeWidth,
4519
+ strokeLinecap: "round",
4520
+ strokeLinejoin: "round",
4521
+ "aria-hidden": "true",
4522
+ ...rest,
4523
+ children: [
4524
+ /* @__PURE__ */ jsx110("path", { d: "M5 12h14" }),
4525
+ /* @__PURE__ */ jsx110("path", { d: "M12 5v14" })
4526
+ ]
4527
+ }
4528
+ );
4529
+ }
4530
+
4531
+ // src/components/icons/printer/index.tsx
4532
+ import { jsx as jsx111, jsxs as jsxs82 } from "react/jsx-runtime";
4533
+ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4534
+ return /* @__PURE__ */ jsxs82(
4535
+ "svg",
4536
+ {
4537
+ xmlns: "http://www.w3.org/2000/svg",
4538
+ width: size3,
4539
+ height: size3,
4540
+ viewBox: "0 0 24 24",
4541
+ fill: "none",
4542
+ stroke: "currentColor",
4543
+ strokeWidth,
4544
+ strokeLinecap: "round",
4545
+ strokeLinejoin: "round",
4546
+ "aria-hidden": "true",
4547
+ ...rest,
4548
+ children: [
4549
+ /* @__PURE__ */ jsx111("polyline", { points: "6 9 6 2 18 2 18 9" }),
4550
+ /* @__PURE__ */ jsx111("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
4551
+ /* @__PURE__ */ jsx111("rect", { width: "12", height: "8", x: "6", y: "14" })
4552
+ ]
4553
+ }
4554
+ );
4555
+ }
4556
+
4557
+ // src/components/icons/redo/index.tsx
4558
+ import { jsx as jsx112, jsxs as jsxs83 } from "react/jsx-runtime";
4559
+ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4560
+ return /* @__PURE__ */ jsxs83(
4561
+ "svg",
4562
+ {
4563
+ xmlns: "http://www.w3.org/2000/svg",
4564
+ width: size3,
4565
+ height: size3,
4566
+ viewBox: "0 0 24 24",
4567
+ fill: "none",
4568
+ stroke: "currentColor",
4569
+ strokeWidth,
4570
+ strokeLinecap: "round",
4571
+ strokeLinejoin: "round",
4572
+ "aria-hidden": "true",
4573
+ ...rest,
4574
+ children: [
4575
+ /* @__PURE__ */ jsx112("path", { d: "M21 7v6h-6" }),
4576
+ /* @__PURE__ */ jsx112("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
4577
+ ]
4578
+ }
4579
+ );
4580
+ }
4581
+
4582
+ // src/components/icons/refresh-cw/index.tsx
4583
+ import { jsx as jsx113, jsxs as jsxs84 } from "react/jsx-runtime";
4584
+ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4585
+ return /* @__PURE__ */ jsxs84(
4586
+ "svg",
4587
+ {
4588
+ xmlns: "http://www.w3.org/2000/svg",
4589
+ width: size3,
4590
+ height: size3,
4591
+ viewBox: "0 0 24 24",
4592
+ fill: "none",
4593
+ stroke: "currentColor",
4594
+ strokeWidth,
4595
+ strokeLinecap: "round",
4596
+ strokeLinejoin: "round",
4597
+ "aria-hidden": "true",
4598
+ ...rest,
4599
+ children: [
4600
+ /* @__PURE__ */ jsx113("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
4601
+ /* @__PURE__ */ jsx113("path", { d: "M21 3v5h-5" }),
4602
+ /* @__PURE__ */ jsx113("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
4603
+ /* @__PURE__ */ jsx113("path", { d: "M3 21v-5h5" })
4604
+ ]
4605
+ }
4606
+ );
4607
+ }
4608
+
4609
+ // src/components/icons/save/index.tsx
4610
+ import { jsx as jsx114, jsxs as jsxs85 } from "react/jsx-runtime";
4611
+ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4612
+ return /* @__PURE__ */ jsxs85(
4613
+ "svg",
4614
+ {
4615
+ xmlns: "http://www.w3.org/2000/svg",
4616
+ width: size3,
4617
+ height: size3,
4618
+ viewBox: "0 0 24 24",
4619
+ fill: "none",
4620
+ stroke: "currentColor",
4621
+ strokeWidth,
4622
+ strokeLinecap: "round",
4623
+ strokeLinejoin: "round",
4624
+ "aria-hidden": "true",
4625
+ ...rest,
4626
+ children: [
4627
+ /* @__PURE__ */ jsx114("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
4628
+ /* @__PURE__ */ jsx114("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
4629
+ /* @__PURE__ */ jsx114("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
4630
+ ]
4631
+ }
4632
+ );
4633
+ }
4634
+
4635
+ // src/components/icons/search/index.tsx
4636
+ import { jsx as jsx115, jsxs as jsxs86 } from "react/jsx-runtime";
4637
+ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4638
+ return /* @__PURE__ */ jsxs86(
4639
+ "svg",
4640
+ {
4641
+ xmlns: "http://www.w3.org/2000/svg",
4642
+ width: size3,
4643
+ height: size3,
4644
+ viewBox: "0 0 24 24",
4645
+ fill: "none",
4646
+ stroke: "currentColor",
4647
+ strokeWidth,
4648
+ strokeLinecap: "round",
4649
+ strokeLinejoin: "round",
4650
+ "aria-hidden": "true",
4651
+ ...rest,
4652
+ children: [
4653
+ /* @__PURE__ */ jsx115("circle", { cx: "11", cy: "11", r: "8" }),
4654
+ /* @__PURE__ */ jsx115("path", { d: "m21 21-4.3-4.3" })
4655
+ ]
4656
+ }
4657
+ );
4658
+ }
4659
+
4660
+ // src/components/icons/send/index.tsx
4661
+ import { jsx as jsx116, jsxs as jsxs87 } from "react/jsx-runtime";
4662
+ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4663
+ return /* @__PURE__ */ jsxs87(
4664
+ "svg",
4665
+ {
4666
+ xmlns: "http://www.w3.org/2000/svg",
4667
+ width: size3,
4668
+ height: size3,
4669
+ viewBox: "0 0 24 24",
4670
+ fill: "none",
4671
+ stroke: "currentColor",
4672
+ strokeWidth,
4673
+ strokeLinecap: "round",
4674
+ strokeLinejoin: "round",
4675
+ "aria-hidden": "true",
4676
+ ...rest,
4677
+ children: [
4678
+ /* @__PURE__ */ jsx116("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
4679
+ /* @__PURE__ */ jsx116("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
4680
+ ]
4681
+ }
4682
+ );
4683
+ }
4684
+
4685
+ // src/components/icons/settings/index.tsx
4686
+ import { jsx as jsx117, jsxs as jsxs88 } from "react/jsx-runtime";
4687
+ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4688
+ return /* @__PURE__ */ jsxs88(
4689
+ "svg",
4690
+ {
4691
+ xmlns: "http://www.w3.org/2000/svg",
4692
+ width: size3,
4693
+ height: size3,
4694
+ viewBox: "0 0 24 24",
4695
+ fill: "none",
4696
+ stroke: "currentColor",
4697
+ strokeWidth,
4698
+ strokeLinecap: "round",
4699
+ strokeLinejoin: "round",
4700
+ "aria-hidden": "true",
4701
+ ...rest,
4702
+ children: [
4703
+ /* @__PURE__ */ jsx117("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
4704
+ /* @__PURE__ */ jsx117("circle", { cx: "12", cy: "12", r: "3" })
4705
+ ]
4706
+ }
4707
+ );
4708
+ }
4709
+
4710
+ // src/components/icons/share/index.tsx
4711
+ import { jsx as jsx118, jsxs as jsxs89 } from "react/jsx-runtime";
4712
+ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4713
+ return /* @__PURE__ */ jsxs89(
4714
+ "svg",
4715
+ {
4716
+ xmlns: "http://www.w3.org/2000/svg",
4717
+ width: size3,
4718
+ height: size3,
4719
+ viewBox: "0 0 24 24",
4720
+ fill: "none",
4721
+ stroke: "currentColor",
4722
+ strokeWidth,
4723
+ strokeLinecap: "round",
4724
+ strokeLinejoin: "round",
4725
+ "aria-hidden": "true",
4726
+ ...rest,
4727
+ children: [
4728
+ /* @__PURE__ */ jsx118("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
4729
+ /* @__PURE__ */ jsx118("polyline", { points: "16 6 12 2 8 6" }),
4730
+ /* @__PURE__ */ jsx118("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
4731
+ ]
4732
+ }
4733
+ );
4734
+ }
4735
+
4736
+ // src/components/icons/shield/index.tsx
4737
+ import { jsx as jsx119 } from "react/jsx-runtime";
4738
+ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4739
+ return /* @__PURE__ */ jsx119(
4740
+ "svg",
4741
+ {
4742
+ xmlns: "http://www.w3.org/2000/svg",
4743
+ width: size3,
4744
+ height: size3,
4745
+ viewBox: "0 0 24 24",
4746
+ fill: "none",
4747
+ stroke: "currentColor",
4748
+ strokeWidth,
4749
+ strokeLinecap: "round",
4750
+ strokeLinejoin: "round",
4751
+ "aria-hidden": "true",
4752
+ ...rest,
4753
+ children: /* @__PURE__ */ jsx119("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
4754
+ }
4755
+ );
4756
+ }
4757
+
4758
+ // src/components/icons/shield-check/index.tsx
4759
+ import { jsx as jsx120, jsxs as jsxs90 } from "react/jsx-runtime";
4760
+ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4761
+ return /* @__PURE__ */ jsxs90(
4762
+ "svg",
4763
+ {
4764
+ xmlns: "http://www.w3.org/2000/svg",
4765
+ width: size3,
4766
+ height: size3,
4767
+ viewBox: "0 0 24 24",
4768
+ fill: "none",
4769
+ stroke: "currentColor",
4770
+ strokeWidth,
4771
+ strokeLinecap: "round",
4772
+ strokeLinejoin: "round",
4773
+ "aria-hidden": "true",
4774
+ ...rest,
4775
+ children: [
4776
+ /* @__PURE__ */ jsx120("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
4777
+ /* @__PURE__ */ jsx120("path", { d: "m9 12 2 2 4-4" })
4778
+ ]
4779
+ }
4780
+ );
4781
+ }
4782
+
4783
+ // src/components/icons/shopping-bag/index.tsx
4784
+ import { jsx as jsx121, jsxs as jsxs91 } from "react/jsx-runtime";
4785
+ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4786
+ return /* @__PURE__ */ jsxs91(
4787
+ "svg",
4788
+ {
4789
+ xmlns: "http://www.w3.org/2000/svg",
4790
+ width: size3,
4791
+ height: size3,
4792
+ viewBox: "0 0 24 24",
4793
+ fill: "none",
4794
+ stroke: "currentColor",
4795
+ strokeWidth,
4796
+ strokeLinecap: "round",
4797
+ strokeLinejoin: "round",
4798
+ "aria-hidden": "true",
4799
+ ...rest,
4800
+ children: [
4801
+ /* @__PURE__ */ jsx121("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
4802
+ /* @__PURE__ */ jsx121("path", { d: "M3 6h18" }),
4803
+ /* @__PURE__ */ jsx121("path", { d: "M16 10a4 4 0 0 1-8 0" })
4804
+ ]
4805
+ }
4806
+ );
4807
+ }
4808
+
4809
+ // src/components/icons/shopping-cart/index.tsx
4810
+ import { jsx as jsx122, jsxs as jsxs92 } from "react/jsx-runtime";
4811
+ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4812
+ return /* @__PURE__ */ jsxs92(
4813
+ "svg",
4814
+ {
4815
+ xmlns: "http://www.w3.org/2000/svg",
4816
+ width: size3,
4817
+ height: size3,
4818
+ viewBox: "0 0 24 24",
4819
+ fill: "none",
4820
+ stroke: "currentColor",
4821
+ strokeWidth,
4822
+ strokeLinecap: "round",
4823
+ strokeLinejoin: "round",
4824
+ "aria-hidden": "true",
4825
+ ...rest,
4826
+ children: [
4827
+ /* @__PURE__ */ jsx122("circle", { cx: "8", cy: "21", r: "1" }),
4828
+ /* @__PURE__ */ jsx122("circle", { cx: "19", cy: "21", r: "1" }),
4829
+ /* @__PURE__ */ jsx122("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
4830
+ ]
4831
+ }
4832
+ );
4833
+ }
4834
+
4835
+ // src/components/icons/sidebar/index.tsx
4836
+ import { jsx as jsx123, jsxs as jsxs93 } from "react/jsx-runtime";
4837
+ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4838
+ return /* @__PURE__ */ jsxs93(
4839
+ "svg",
4840
+ {
4841
+ xmlns: "http://www.w3.org/2000/svg",
4842
+ width: size3,
4843
+ height: size3,
4844
+ viewBox: "0 0 24 24",
4845
+ fill: "none",
4846
+ stroke: "currentColor",
4847
+ strokeWidth,
4848
+ strokeLinecap: "round",
4849
+ strokeLinejoin: "round",
4850
+ "aria-hidden": "true",
4851
+ ...rest,
4852
+ children: [
4853
+ /* @__PURE__ */ jsx123("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
4854
+ /* @__PURE__ */ jsx123("path", { d: "M9 3v18" })
4855
+ ]
4856
+ }
4857
+ );
4858
+ }
4859
+
4860
+ // src/components/icons/skip-back/index.tsx
4861
+ import { jsx as jsx124, jsxs as jsxs94 } from "react/jsx-runtime";
4862
+ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4863
+ return /* @__PURE__ */ jsxs94(
4864
+ "svg",
4865
+ {
4866
+ xmlns: "http://www.w3.org/2000/svg",
4867
+ width: size3,
4868
+ height: size3,
4869
+ viewBox: "0 0 24 24",
4870
+ fill: "none",
4871
+ stroke: "currentColor",
4872
+ strokeWidth,
4873
+ strokeLinecap: "round",
4874
+ strokeLinejoin: "round",
4875
+ "aria-hidden": "true",
4876
+ ...rest,
4877
+ children: [
4878
+ /* @__PURE__ */ jsx124("polygon", { points: "19 20 9 12 19 4 19 20" }),
4879
+ /* @__PURE__ */ jsx124("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
4880
+ ]
4881
+ }
4882
+ );
4883
+ }
4884
+
4885
+ // src/components/icons/skip-forward/index.tsx
4886
+ import { jsx as jsx125, jsxs as jsxs95 } from "react/jsx-runtime";
4887
+ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4888
+ return /* @__PURE__ */ jsxs95(
4889
+ "svg",
4890
+ {
4891
+ xmlns: "http://www.w3.org/2000/svg",
4892
+ width: size3,
4893
+ height: size3,
4894
+ viewBox: "0 0 24 24",
4895
+ fill: "none",
4896
+ stroke: "currentColor",
4897
+ strokeWidth,
4898
+ strokeLinecap: "round",
4899
+ strokeLinejoin: "round",
4900
+ "aria-hidden": "true",
4901
+ ...rest,
4902
+ children: [
4903
+ /* @__PURE__ */ jsx125("polygon", { points: "5 4 15 12 5 20 5 4" }),
4904
+ /* @__PURE__ */ jsx125("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
4905
+ ]
4906
+ }
4907
+ );
4908
+ }
4909
+
4910
+ // src/components/icons/sliders/index.tsx
4911
+ import { jsx as jsx126, jsxs as jsxs96 } from "react/jsx-runtime";
4912
+ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4913
+ return /* @__PURE__ */ jsxs96(
4914
+ "svg",
4915
+ {
4916
+ xmlns: "http://www.w3.org/2000/svg",
4917
+ width: size3,
4918
+ height: size3,
4919
+ viewBox: "0 0 24 24",
4920
+ fill: "none",
4921
+ stroke: "currentColor",
4922
+ strokeWidth,
4923
+ strokeLinecap: "round",
4924
+ strokeLinejoin: "round",
4925
+ "aria-hidden": "true",
4926
+ ...rest,
4927
+ children: [
4928
+ /* @__PURE__ */ jsx126("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
4929
+ /* @__PURE__ */ jsx126("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
4930
+ /* @__PURE__ */ jsx126("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
4931
+ /* @__PURE__ */ jsx126("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
4932
+ /* @__PURE__ */ jsx126("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
4933
+ /* @__PURE__ */ jsx126("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
4934
+ /* @__PURE__ */ jsx126("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
4935
+ /* @__PURE__ */ jsx126("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
4936
+ /* @__PURE__ */ jsx126("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
4937
+ ]
4938
+ }
4939
+ );
4940
+ }
4941
+
4942
+ // src/components/icons/smile/index.tsx
4943
+ import { jsx as jsx127, jsxs as jsxs97 } from "react/jsx-runtime";
4944
+ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4945
+ return /* @__PURE__ */ jsxs97(
4946
+ "svg",
4947
+ {
4948
+ xmlns: "http://www.w3.org/2000/svg",
4949
+ width: size3,
4950
+ height: size3,
4951
+ viewBox: "0 0 24 24",
4952
+ fill: "none",
4953
+ stroke: "currentColor",
4954
+ strokeWidth,
4955
+ strokeLinecap: "round",
4956
+ strokeLinejoin: "round",
4957
+ "aria-hidden": "true",
4958
+ ...rest,
4959
+ children: [
4960
+ /* @__PURE__ */ jsx127("circle", { cx: "12", cy: "12", r: "10" }),
4961
+ /* @__PURE__ */ jsx127("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
4962
+ /* @__PURE__ */ jsx127("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
4963
+ /* @__PURE__ */ jsx127("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
4964
+ ]
4965
+ }
4966
+ );
4967
+ }
4968
+
4969
+ // src/components/icons/star/index.tsx
4970
+ import { jsx as jsx128 } from "react/jsx-runtime";
4971
+ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4972
+ return /* @__PURE__ */ jsx128(
4973
+ "svg",
4974
+ {
4975
+ xmlns: "http://www.w3.org/2000/svg",
4976
+ width: size3,
4977
+ height: size3,
4978
+ viewBox: "0 0 24 24",
4979
+ fill: "none",
4980
+ stroke: "currentColor",
4981
+ strokeWidth,
4982
+ strokeLinecap: "round",
4983
+ strokeLinejoin: "round",
4984
+ "aria-hidden": "true",
4985
+ ...rest,
4986
+ children: /* @__PURE__ */ jsx128("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
4987
+ }
4988
+ );
4989
+ }
4990
+
4991
+ // src/components/icons/sun/index.tsx
4992
+ import { jsx as jsx129, jsxs as jsxs98 } from "react/jsx-runtime";
4993
+ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4994
+ return /* @__PURE__ */ jsxs98(
4995
+ "svg",
4996
+ {
4997
+ xmlns: "http://www.w3.org/2000/svg",
4998
+ width: size3,
4999
+ height: size3,
5000
+ viewBox: "0 0 24 24",
5001
+ fill: "none",
5002
+ stroke: "currentColor",
5003
+ strokeWidth,
5004
+ strokeLinecap: "round",
5005
+ strokeLinejoin: "round",
5006
+ "aria-hidden": "true",
5007
+ ...rest,
5008
+ children: [
5009
+ /* @__PURE__ */ jsx129("circle", { cx: "12", cy: "12", r: "4" }),
5010
+ /* @__PURE__ */ jsx129("path", { d: "M12 2v2" }),
5011
+ /* @__PURE__ */ jsx129("path", { d: "M12 20v2" }),
5012
+ /* @__PURE__ */ jsx129("path", { d: "m4.93 4.93 1.41 1.41" }),
5013
+ /* @__PURE__ */ jsx129("path", { d: "m17.66 17.66 1.41 1.41" }),
5014
+ /* @__PURE__ */ jsx129("path", { d: "M2 12h2" }),
5015
+ /* @__PURE__ */ jsx129("path", { d: "M20 12h2" }),
5016
+ /* @__PURE__ */ jsx129("path", { d: "m6.34 17.66-1.41 1.41" }),
5017
+ /* @__PURE__ */ jsx129("path", { d: "m19.07 4.93-1.41 1.41" })
5018
+ ]
5019
+ }
5020
+ );
5021
+ }
5022
+
5023
+ // src/components/icons/tag/index.tsx
5024
+ import { jsx as jsx130, jsxs as jsxs99 } from "react/jsx-runtime";
5025
+ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5026
+ return /* @__PURE__ */ jsxs99(
5027
+ "svg",
5028
+ {
5029
+ xmlns: "http://www.w3.org/2000/svg",
5030
+ width: size3,
5031
+ height: size3,
5032
+ viewBox: "0 0 24 24",
5033
+ fill: "none",
5034
+ stroke: "currentColor",
5035
+ strokeWidth,
5036
+ strokeLinecap: "round",
5037
+ strokeLinejoin: "round",
5038
+ "aria-hidden": "true",
5039
+ ...rest,
5040
+ children: [
5041
+ /* @__PURE__ */ jsx130("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
5042
+ /* @__PURE__ */ jsx130("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
5043
+ ]
5044
+ }
5045
+ );
5046
+ }
5047
+
5048
+ // src/components/icons/thumbs-down/index.tsx
5049
+ import { jsx as jsx131, jsxs as jsxs100 } from "react/jsx-runtime";
5050
+ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5051
+ return /* @__PURE__ */ jsxs100(
5052
+ "svg",
5053
+ {
5054
+ xmlns: "http://www.w3.org/2000/svg",
5055
+ width: size3,
5056
+ height: size3,
5057
+ viewBox: "0 0 24 24",
5058
+ fill: "none",
5059
+ stroke: "currentColor",
5060
+ strokeWidth,
5061
+ strokeLinecap: "round",
5062
+ strokeLinejoin: "round",
5063
+ "aria-hidden": "true",
5064
+ ...rest,
5065
+ children: [
5066
+ /* @__PURE__ */ jsx131("path", { d: "M17 14V2" }),
5067
+ /* @__PURE__ */ jsx131("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
5068
+ ]
5069
+ }
5070
+ );
5071
+ }
5072
+
5073
+ // src/components/icons/thumbs-up/index.tsx
5074
+ import { jsx as jsx132, jsxs as jsxs101 } from "react/jsx-runtime";
5075
+ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5076
+ return /* @__PURE__ */ jsxs101(
5077
+ "svg",
5078
+ {
5079
+ xmlns: "http://www.w3.org/2000/svg",
5080
+ width: size3,
5081
+ height: size3,
5082
+ viewBox: "0 0 24 24",
5083
+ fill: "none",
5084
+ stroke: "currentColor",
5085
+ strokeWidth,
5086
+ strokeLinecap: "round",
5087
+ strokeLinejoin: "round",
5088
+ "aria-hidden": "true",
5089
+ ...rest,
5090
+ children: [
5091
+ /* @__PURE__ */ jsx132("path", { d: "M7 10v12" }),
5092
+ /* @__PURE__ */ jsx132("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
5093
+ ]
5094
+ }
5095
+ );
5096
+ }
5097
+
5098
+ // src/components/icons/trash/index.tsx
5099
+ import { jsx as jsx133, jsxs as jsxs102 } from "react/jsx-runtime";
5100
+ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5101
+ return /* @__PURE__ */ jsxs102(
5102
+ "svg",
5103
+ {
5104
+ xmlns: "http://www.w3.org/2000/svg",
5105
+ width: size3,
5106
+ height: size3,
5107
+ viewBox: "0 0 24 24",
5108
+ fill: "none",
5109
+ stroke: "currentColor",
5110
+ strokeWidth,
5111
+ strokeLinecap: "round",
5112
+ strokeLinejoin: "round",
5113
+ "aria-hidden": "true",
5114
+ ...rest,
5115
+ children: [
5116
+ /* @__PURE__ */ jsx133("path", { d: "M3 6h18" }),
5117
+ /* @__PURE__ */ jsx133("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
5118
+ /* @__PURE__ */ jsx133("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
5119
+ ]
5120
+ }
5121
+ );
5122
+ }
5123
+
5124
+ // src/components/icons/undo/index.tsx
5125
+ import { jsx as jsx134, jsxs as jsxs103 } from "react/jsx-runtime";
5126
+ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5127
+ return /* @__PURE__ */ jsxs103(
5128
+ "svg",
5129
+ {
5130
+ xmlns: "http://www.w3.org/2000/svg",
5131
+ width: size3,
5132
+ height: size3,
5133
+ viewBox: "0 0 24 24",
5134
+ fill: "none",
5135
+ stroke: "currentColor",
5136
+ strokeWidth,
5137
+ strokeLinecap: "round",
5138
+ strokeLinejoin: "round",
5139
+ "aria-hidden": "true",
5140
+ ...rest,
5141
+ children: [
5142
+ /* @__PURE__ */ jsx134("path", { d: "M3 7v6h6" }),
5143
+ /* @__PURE__ */ jsx134("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
5144
+ ]
5145
+ }
5146
+ );
5147
+ }
5148
+
5149
+ // src/components/icons/unlock/index.tsx
5150
+ import { jsx as jsx135, jsxs as jsxs104 } from "react/jsx-runtime";
5151
+ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5152
+ return /* @__PURE__ */ jsxs104(
5153
+ "svg",
5154
+ {
5155
+ xmlns: "http://www.w3.org/2000/svg",
5156
+ width: size3,
5157
+ height: size3,
5158
+ viewBox: "0 0 24 24",
5159
+ fill: "none",
5160
+ stroke: "currentColor",
5161
+ strokeWidth,
5162
+ strokeLinecap: "round",
5163
+ strokeLinejoin: "round",
5164
+ "aria-hidden": "true",
5165
+ ...rest,
5166
+ children: [
5167
+ /* @__PURE__ */ jsx135("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
5168
+ /* @__PURE__ */ jsx135("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
5169
+ ]
5170
+ }
5171
+ );
5172
+ }
5173
+
5174
+ // src/components/icons/upload/index.tsx
5175
+ import { jsx as jsx136, jsxs as jsxs105 } from "react/jsx-runtime";
5176
+ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5177
+ return /* @__PURE__ */ jsxs105(
5178
+ "svg",
5179
+ {
5180
+ xmlns: "http://www.w3.org/2000/svg",
5181
+ width: size3,
5182
+ height: size3,
5183
+ viewBox: "0 0 24 24",
5184
+ fill: "none",
5185
+ stroke: "currentColor",
5186
+ strokeWidth,
5187
+ strokeLinecap: "round",
5188
+ strokeLinejoin: "round",
5189
+ "aria-hidden": "true",
5190
+ ...rest,
5191
+ children: [
5192
+ /* @__PURE__ */ jsx136("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
5193
+ /* @__PURE__ */ jsx136("polyline", { points: "17 8 12 3 7 8" }),
5194
+ /* @__PURE__ */ jsx136("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
5195
+ ]
5196
+ }
5197
+ );
5198
+ }
5199
+
5200
+ // src/components/icons/user/index.tsx
5201
+ import { jsx as jsx137, jsxs as jsxs106 } from "react/jsx-runtime";
5202
+ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5203
+ return /* @__PURE__ */ jsxs106(
5204
+ "svg",
5205
+ {
5206
+ xmlns: "http://www.w3.org/2000/svg",
5207
+ width: size3,
5208
+ height: size3,
5209
+ viewBox: "0 0 24 24",
5210
+ fill: "none",
5211
+ stroke: "currentColor",
5212
+ strokeWidth,
5213
+ strokeLinecap: "round",
5214
+ strokeLinejoin: "round",
5215
+ "aria-hidden": "true",
5216
+ ...rest,
5217
+ children: [
5218
+ /* @__PURE__ */ jsx137("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
5219
+ /* @__PURE__ */ jsx137("circle", { cx: "12", cy: "7", r: "4" })
5220
+ ]
5221
+ }
5222
+ );
5223
+ }
5224
+
5225
+ // src/components/icons/user-check/index.tsx
5226
+ import { jsx as jsx138, jsxs as jsxs107 } from "react/jsx-runtime";
5227
+ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5228
+ return /* @__PURE__ */ jsxs107(
5229
+ "svg",
5230
+ {
5231
+ xmlns: "http://www.w3.org/2000/svg",
5232
+ width: size3,
5233
+ height: size3,
5234
+ viewBox: "0 0 24 24",
5235
+ fill: "none",
5236
+ stroke: "currentColor",
5237
+ strokeWidth,
5238
+ strokeLinecap: "round",
5239
+ strokeLinejoin: "round",
5240
+ "aria-hidden": "true",
5241
+ ...rest,
5242
+ children: [
5243
+ /* @__PURE__ */ jsx138("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5244
+ /* @__PURE__ */ jsx138("circle", { cx: "9", cy: "7", r: "4" }),
5245
+ /* @__PURE__ */ jsx138("polyline", { points: "16 11 18 13 22 9" })
5246
+ ]
5247
+ }
5248
+ );
5249
+ }
5250
+
5251
+ // src/components/icons/user-plus/index.tsx
5252
+ import { jsx as jsx139, jsxs as jsxs108 } from "react/jsx-runtime";
5253
+ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5254
+ return /* @__PURE__ */ jsxs108(
5255
+ "svg",
5256
+ {
5257
+ xmlns: "http://www.w3.org/2000/svg",
5258
+ width: size3,
5259
+ height: size3,
5260
+ viewBox: "0 0 24 24",
5261
+ fill: "none",
5262
+ stroke: "currentColor",
5263
+ strokeWidth,
5264
+ strokeLinecap: "round",
5265
+ strokeLinejoin: "round",
5266
+ "aria-hidden": "true",
5267
+ ...rest,
5268
+ children: [
5269
+ /* @__PURE__ */ jsx139("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5270
+ /* @__PURE__ */ jsx139("circle", { cx: "9", cy: "7", r: "4" }),
5271
+ /* @__PURE__ */ jsx139("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
5272
+ /* @__PURE__ */ jsx139("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
5273
+ ]
5274
+ }
5275
+ );
5276
+ }
5277
+
5278
+ // src/components/icons/users/index.tsx
5279
+ import { jsx as jsx140, jsxs as jsxs109 } from "react/jsx-runtime";
5280
+ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5281
+ return /* @__PURE__ */ jsxs109(
5282
+ "svg",
5283
+ {
5284
+ xmlns: "http://www.w3.org/2000/svg",
5285
+ width: size3,
5286
+ height: size3,
5287
+ viewBox: "0 0 24 24",
5288
+ fill: "none",
5289
+ stroke: "currentColor",
5290
+ strokeWidth,
5291
+ strokeLinecap: "round",
5292
+ strokeLinejoin: "round",
5293
+ "aria-hidden": "true",
5294
+ ...rest,
5295
+ children: [
5296
+ /* @__PURE__ */ jsx140("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5297
+ /* @__PURE__ */ jsx140("circle", { cx: "9", cy: "7", r: "4" }),
5298
+ /* @__PURE__ */ jsx140("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
5299
+ /* @__PURE__ */ jsx140("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
5300
+ ]
5301
+ }
5302
+ );
5303
+ }
5304
+
5305
+ // src/components/icons/volume-2/index.tsx
5306
+ import { jsx as jsx141, jsxs as jsxs110 } from "react/jsx-runtime";
5307
+ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5308
+ return /* @__PURE__ */ jsxs110(
5309
+ "svg",
5310
+ {
5311
+ xmlns: "http://www.w3.org/2000/svg",
5312
+ width: size3,
5313
+ height: size3,
5314
+ viewBox: "0 0 24 24",
5315
+ fill: "none",
5316
+ stroke: "currentColor",
5317
+ strokeWidth,
5318
+ strokeLinecap: "round",
5319
+ strokeLinejoin: "round",
5320
+ "aria-hidden": "true",
5321
+ ...rest,
5322
+ children: [
5323
+ /* @__PURE__ */ jsx141("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5324
+ /* @__PURE__ */ jsx141("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
5325
+ /* @__PURE__ */ jsx141("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
5326
+ ]
5327
+ }
5328
+ );
5329
+ }
5330
+
5331
+ // src/components/icons/volume-x/index.tsx
5332
+ import { jsx as jsx142, jsxs as jsxs111 } from "react/jsx-runtime";
5333
+ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5334
+ return /* @__PURE__ */ jsxs111(
5335
+ "svg",
5336
+ {
5337
+ xmlns: "http://www.w3.org/2000/svg",
5338
+ width: size3,
5339
+ height: size3,
5340
+ viewBox: "0 0 24 24",
5341
+ fill: "none",
5342
+ stroke: "currentColor",
5343
+ strokeWidth,
5344
+ strokeLinecap: "round",
5345
+ strokeLinejoin: "round",
5346
+ "aria-hidden": "true",
5347
+ ...rest,
5348
+ children: [
5349
+ /* @__PURE__ */ jsx142("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5350
+ /* @__PURE__ */ jsx142("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
5351
+ /* @__PURE__ */ jsx142("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
5352
+ ]
5353
+ }
5354
+ );
5355
+ }
5356
+
5357
+ // src/components/icons/wifi/index.tsx
5358
+ import { jsx as jsx143, jsxs as jsxs112 } from "react/jsx-runtime";
5359
+ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5360
+ return /* @__PURE__ */ jsxs112(
5361
+ "svg",
5362
+ {
5363
+ xmlns: "http://www.w3.org/2000/svg",
5364
+ width: size3,
5365
+ height: size3,
5366
+ viewBox: "0 0 24 24",
5367
+ fill: "none",
5368
+ stroke: "currentColor",
5369
+ strokeWidth,
5370
+ strokeLinecap: "round",
5371
+ strokeLinejoin: "round",
5372
+ "aria-hidden": "true",
5373
+ ...rest,
5374
+ children: [
5375
+ /* @__PURE__ */ jsx143("path", { d: "M12 20h.01" }),
5376
+ /* @__PURE__ */ jsx143("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
5377
+ /* @__PURE__ */ jsx143("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
5378
+ /* @__PURE__ */ jsx143("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
5379
+ ]
5380
+ }
5381
+ );
5382
+ }
5383
+
5384
+ // src/components/icons/zap/index.tsx
5385
+ import { jsx as jsx144 } from "react/jsx-runtime";
5386
+ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5387
+ return /* @__PURE__ */ jsx144(
5388
+ "svg",
5389
+ {
5390
+ xmlns: "http://www.w3.org/2000/svg",
5391
+ width: size3,
5392
+ height: size3,
5393
+ viewBox: "0 0 24 24",
5394
+ fill: "none",
5395
+ stroke: "currentColor",
5396
+ strokeWidth,
5397
+ strokeLinecap: "round",
5398
+ strokeLinejoin: "round",
5399
+ "aria-hidden": "true",
5400
+ ...rest,
5401
+ children: /* @__PURE__ */ jsx144("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
5402
+ }
5403
+ );
5404
+ }
5405
+
5406
+ // src/components/icons/index.ts
5407
+ var iconCatalog = [
5408
+ { name: "AlertCircleIcon", Icon: AlertCircleIcon },
5409
+ { name: "ArchiveIcon", Icon: ArchiveIcon },
5410
+ { name: "ArrowDownIcon", Icon: ArrowDownIcon },
5411
+ { name: "ArrowLeftIcon", Icon: ArrowLeftIcon },
5412
+ { name: "ArrowRightIcon", Icon: ArrowRightIcon },
5413
+ { name: "ArrowUpIcon", Icon: ArrowUpIcon },
5414
+ { name: "AtSignIcon", Icon: AtSignIcon },
5415
+ { name: "BellIcon", Icon: BellIcon },
5416
+ { name: "BellOffIcon", Icon: BellOffIcon },
5417
+ { name: "BookmarkIcon", Icon: BookmarkIcon },
5418
+ { name: "CalendarIcon", Icon: CalendarIcon },
5419
+ { name: "CameraIcon", Icon: CameraIcon },
5420
+ { name: "CheckIcon", Icon: CheckIcon },
5421
+ { name: "ChevronDownIcon", Icon: ChevronDownIcon },
5422
+ { name: "ChevronLeftIcon", Icon: ChevronLeftIcon },
5423
+ { name: "ChevronRightIcon", Icon: ChevronRightIcon },
5424
+ { name: "ChevronsLeftIcon", Icon: ChevronsLeftIcon },
5425
+ { name: "ChevronsRightIcon", Icon: ChevronsRightIcon },
5426
+ { name: "ChevronUpIcon", Icon: ChevronUpIcon },
5427
+ { name: "CircleCheckIcon", Icon: CircleCheckIcon },
5428
+ { name: "CircleXIcon", Icon: CircleXIcon },
5429
+ { name: "ClipboardIcon", Icon: ClipboardIcon },
5430
+ { name: "ClockIcon", Icon: ClockIcon },
5431
+ { name: "CloudIcon", Icon: CloudIcon },
5432
+ { name: "CopyIcon", Icon: CopyIcon },
5433
+ { name: "CornerDownRightIcon", Icon: CornerDownRightIcon },
5434
+ { name: "CreditCardIcon", Icon: CreditCardIcon },
5435
+ { name: "DollarSignIcon", Icon: DollarSignIcon },
5436
+ { name: "DownloadIcon", Icon: DownloadIcon },
5437
+ { name: "ExternalLinkIcon", Icon: ExternalLinkIcon },
5438
+ { name: "EyeIcon", Icon: EyeIcon },
5439
+ { name: "EyeOffIcon", Icon: EyeOffIcon },
5440
+ { name: "FileIcon", Icon: FileIcon },
5441
+ { name: "FileTextIcon", Icon: FileTextIcon },
5442
+ { name: "FilterIcon", Icon: FilterIcon },
5443
+ { name: "FingerprintIcon", Icon: FingerprintIcon },
5444
+ { name: "FolderIcon", Icon: FolderIcon },
5445
+ { name: "FolderOpenIcon", Icon: FolderOpenIcon },
5446
+ { name: "GiftIcon", Icon: GiftIcon },
5447
+ { name: "GlobeIcon", Icon: GlobeIcon },
5448
+ { name: "GridIcon", Icon: GridIcon },
5449
+ { name: "HeartIcon", Icon: HeartIcon },
5450
+ { name: "HelpCircleIcon", Icon: HelpCircleIcon },
5451
+ { name: "HomeIcon", Icon: HomeIcon },
5452
+ { name: "ImageIcon", Icon: ImageIcon },
5453
+ { name: "InboxIcon", Icon: InboxIcon },
5454
+ { name: "InfoIcon", Icon: InfoIcon },
5455
+ { name: "KeyIcon", Icon: KeyIcon },
5456
+ { name: "LayoutIcon", Icon: LayoutIcon },
5457
+ { name: "LinkIcon", Icon: LinkIcon },
5458
+ { name: "ListIcon", Icon: ListIcon },
5459
+ { name: "LoaderIcon", Icon: LoaderIcon },
5460
+ { name: "LockIcon", Icon: LockIcon },
5461
+ { name: "LogInIcon", Icon: LogInIcon },
5462
+ { name: "LogOutIcon", Icon: LogOutIcon },
5463
+ { name: "MailIcon", Icon: MailIcon },
5464
+ { name: "MapPinIcon", Icon: MapPinIcon },
5465
+ { name: "MaximizeIcon", Icon: MaximizeIcon },
5466
+ { name: "MenuIcon", Icon: MenuIcon },
5467
+ { name: "MessageCircleIcon", Icon: MessageCircleIcon },
5468
+ { name: "MessageSquareIcon", Icon: MessageSquareIcon },
5469
+ { name: "MicIcon", Icon: MicIcon },
5470
+ { name: "MinimizeIcon", Icon: MinimizeIcon },
5471
+ { name: "MinusIcon", Icon: MinusIcon },
5472
+ { name: "MoonIcon", Icon: MoonIcon },
5473
+ { name: "MoreHorizontalIcon", Icon: MoreHorizontalIcon },
5474
+ { name: "MoreVerticalIcon", Icon: MoreVerticalIcon },
5475
+ { name: "PackageIcon", Icon: PackageIcon },
5476
+ { name: "PaperclipIcon", Icon: PaperclipIcon },
5477
+ { name: "PauseIcon", Icon: PauseIcon },
5478
+ { name: "PencilIcon", Icon: PencilIcon },
5479
+ { name: "PhoneIcon", Icon: PhoneIcon },
5480
+ { name: "PlayIcon", Icon: PlayIcon },
5481
+ { name: "PlusIcon", Icon: PlusIcon },
5482
+ { name: "PrinterIcon", Icon: PrinterIcon },
5483
+ { name: "RedoIcon", Icon: RedoIcon },
5484
+ { name: "RefreshCwIcon", Icon: RefreshCwIcon },
5485
+ { name: "SaveIcon", Icon: SaveIcon },
5486
+ { name: "SearchIcon", Icon: SearchIcon },
5487
+ { name: "SendIcon", Icon: SendIcon },
5488
+ { name: "SettingsIcon", Icon: SettingsIcon },
5489
+ { name: "ShareIcon", Icon: ShareIcon },
5490
+ { name: "ShieldCheckIcon", Icon: ShieldCheckIcon },
5491
+ { name: "ShieldIcon", Icon: ShieldIcon },
5492
+ { name: "ShoppingBagIcon", Icon: ShoppingBagIcon },
5493
+ { name: "ShoppingCartIcon", Icon: ShoppingCartIcon },
5494
+ { name: "SidebarIcon", Icon: SidebarIcon },
5495
+ { name: "SkipBackIcon", Icon: SkipBackIcon },
5496
+ { name: "SkipForwardIcon", Icon: SkipForwardIcon },
5497
+ { name: "SlidersIcon", Icon: SlidersIcon },
5498
+ { name: "SmileIcon", Icon: SmileIcon },
5499
+ { name: "StarIcon", Icon: StarIcon },
5500
+ { name: "SunIcon", Icon: SunIcon },
5501
+ { name: "TagIcon", Icon: TagIcon },
5502
+ { name: "ThumbsDownIcon", Icon: ThumbsDownIcon },
5503
+ { name: "ThumbsUpIcon", Icon: ThumbsUpIcon },
5504
+ { name: "TrashIcon", Icon: TrashIcon },
5505
+ { name: "TriangleAlertIcon", Icon: TriangleAlertIcon },
5506
+ { name: "UndoIcon", Icon: UndoIcon },
5507
+ { name: "UnlockIcon", Icon: UnlockIcon },
5508
+ { name: "UploadIcon", Icon: UploadIcon },
5509
+ { name: "UserCheckIcon", Icon: UserCheckIcon },
5510
+ { name: "UserIcon", Icon: UserIcon },
5511
+ { name: "UserPlusIcon", Icon: UserPlusIcon },
5512
+ { name: "UsersIcon", Icon: UsersIcon },
5513
+ { name: "Volume2Icon", Icon: Volume2Icon },
5514
+ { name: "VolumeXIcon", Icon: VolumeXIcon },
5515
+ { name: "WifiIcon", Icon: WifiIcon },
5516
+ { name: "XIcon", Icon: XIcon },
5517
+ { name: "ZapIcon", Icon: ZapIcon }
5518
+ ];
2806
5519
  export {
2807
5520
  Accordion,
2808
5521
  Alert,
5522
+ AlertCircleIcon,
2809
5523
  AppBar,
5524
+ ArchiveIcon,
5525
+ ArrowDownIcon,
5526
+ ArrowLeftIcon,
5527
+ ArrowRightIcon,
5528
+ ArrowUpIcon,
5529
+ AtSignIcon,
2810
5530
  Avatar,
2811
5531
  Badge,
5532
+ BellIcon,
5533
+ BellOffIcon,
5534
+ BookmarkIcon,
2812
5535
  Breadcrumbs,
2813
5536
  Button,
5537
+ CalendarIcon,
5538
+ CameraIcon,
2814
5539
  Card2 as Card,
2815
5540
  CheckIcon,
2816
5541
  Checkbox,
@@ -2818,42 +5543,125 @@ export {
2818
5543
  ChevronLeftIcon,
2819
5544
  ChevronRightIcon,
2820
5545
  ChevronUpIcon,
5546
+ ChevronsLeftIcon,
5547
+ ChevronsRightIcon,
2821
5548
  Chip,
2822
5549
  CircleCheckIcon,
2823
5550
  CircleXIcon,
5551
+ ClipboardIcon,
5552
+ ClockIcon,
5553
+ CloudIcon,
2824
5554
  Container,
5555
+ CopyIcon,
5556
+ CornerDownRightIcon,
5557
+ CreditCardIcon,
2825
5558
  Dialog,
2826
5559
  Divider,
5560
+ DollarSignIcon,
5561
+ DownloadIcon,
5562
+ ExternalLinkIcon,
2827
5563
  EyeIcon,
2828
5564
  EyeOffIcon,
5565
+ FileIcon,
5566
+ FileTextIcon,
5567
+ FilterIcon,
5568
+ FingerprintIcon,
5569
+ FolderIcon,
5570
+ FolderOpenIcon,
5571
+ GiftIcon,
5572
+ GlobeIcon,
5573
+ GridIcon,
5574
+ HeartIcon,
5575
+ HelpCircleIcon,
5576
+ HomeIcon,
2829
5577
  IconButton,
5578
+ ImageIcon,
5579
+ InboxIcon,
2830
5580
  InfoIcon,
5581
+ KeyIcon,
5582
+ LayoutIcon,
5583
+ LinkIcon,
5584
+ ListIcon,
2831
5585
  ListItem,
5586
+ LoaderIcon,
5587
+ LockIcon,
5588
+ LogInIcon,
5589
+ LogOutIcon,
5590
+ MailIcon,
5591
+ MapPinIcon,
5592
+ MaximizeIcon,
2832
5593
  Menu,
5594
+ MenuIcon,
5595
+ MessageCircleIcon,
5596
+ MessageSquareIcon,
5597
+ MicIcon,
5598
+ MinimizeIcon,
2833
5599
  MinusIcon,
2834
5600
  MoneyField,
5601
+ MoonIcon,
2835
5602
  MoreHorizontalIcon,
5603
+ MoreVerticalIcon,
5604
+ PackageIcon,
2836
5605
  Pagination,
5606
+ PaperclipIcon,
2837
5607
  PasswordField,
5608
+ PauseIcon,
5609
+ PencilIcon,
5610
+ PhoneIcon,
5611
+ PlayIcon,
2838
5612
  PlusIcon,
5613
+ PrinterIcon,
2839
5614
  Progress,
2840
5615
  Radio,
5616
+ RedoIcon,
5617
+ RefreshCwIcon,
5618
+ SaveIcon,
2841
5619
  SearchIcon,
2842
5620
  Select,
5621
+ SendIcon,
5622
+ SettingsIcon,
5623
+ ShareIcon,
5624
+ ShieldCheckIcon,
5625
+ ShieldIcon,
5626
+ ShoppingBagIcon,
5627
+ ShoppingCartIcon,
5628
+ SidebarIcon,
5629
+ SkipBackIcon,
5630
+ SkipForwardIcon,
2843
5631
  Slider,
5632
+ SlidersIcon,
5633
+ SmileIcon,
2844
5634
  Snackbar,
5635
+ StarIcon,
2845
5636
  Stepper,
5637
+ SunIcon,
2846
5638
  Switch,
2847
5639
  Table,
2848
5640
  Tabs,
5641
+ TagIcon,
2849
5642
  TestIdProvider,
2850
5643
  TextField,
2851
5644
  ThemeProvider,
5645
+ ThumbsDownIcon,
5646
+ ThumbsUpIcon,
2852
5647
  Tooltip,
5648
+ TrashIcon,
2853
5649
  TriangleAlertIcon,
2854
5650
  Typography,
5651
+ UndoIcon,
5652
+ UnlockIcon,
5653
+ UploadIcon,
5654
+ UserCheckIcon,
5655
+ UserIcon,
5656
+ UserPlusIcon,
5657
+ UsersIcon,
5658
+ Volume2Icon,
5659
+ VolumeXIcon,
5660
+ WifiIcon,
2855
5661
  XIcon,
5662
+ ZapIcon,
2856
5663
  colorVars,
5664
+ iconCatalog,
2857
5665
  modeNames,
2858
5666
  schemaNames,
2859
5667
  text,