@snapcall/design-system 1.2.0 → 1.4.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.mjs CHANGED
@@ -30,9 +30,41 @@ var __objRest = (source, exclude) => {
30
30
  return target;
31
31
  };
32
32
 
33
- // src/components/AlertDialog/AlertDialog.tsx
34
- import * as React2 from "react";
35
- import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
33
+ // src/components/Accordion/Accordion.tsx
34
+ import React from "react";
35
+ import * as AccordionPrimitive from "@radix-ui/react-accordion";
36
+
37
+ // src/icons/chevronDown.tsx
38
+ import { forwardRef } from "react";
39
+ import { jsx } from "react/jsx-runtime";
40
+ var ChevronDownIcon = forwardRef(
41
+ function ChevronDownIcon2(_a, ref) {
42
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
43
+ return /* @__PURE__ */ jsx(
44
+ "svg",
45
+ __spreadProps(__spreadValues({
46
+ ref,
47
+ width: size,
48
+ height: size,
49
+ viewBox: "0 0 24 24",
50
+ fill: "none",
51
+ xmlns: "http://www.w3.org/2000/svg",
52
+ className
53
+ }, other), {
54
+ children: /* @__PURE__ */ jsx(
55
+ "path",
56
+ {
57
+ d: "M6 9L12 15L18 9",
58
+ stroke: "currentColor",
59
+ strokeWidth: "2",
60
+ strokeLinecap: "round",
61
+ strokeLinejoin: "round"
62
+ }
63
+ )
64
+ })
65
+ );
66
+ }
67
+ );
36
68
 
37
69
  // src/utils/cn.ts
38
70
  import { clsx } from "clsx";
@@ -41,11 +73,66 @@ function cn(...inputs) {
41
73
  return twMerge(clsx(inputs));
42
74
  }
43
75
 
76
+ // src/components/Accordion/Accordion.tsx
77
+ import { jsx as jsx2, jsxs } from "react/jsx-runtime";
78
+ var AccordionItem = AccordionPrimitive.Item;
79
+ var Accordion = AccordionPrimitive.Root;
80
+ var AccordionTrigger2 = React.forwardRef((_a, forwardedRef) => {
81
+ var _b = _a, { children, className, icon } = _b, props = __objRest(_b, ["children", "className", "icon"]);
82
+ return /* @__PURE__ */ jsx2(AccordionPrimitive.Header, { children: /* @__PURE__ */ jsxs(
83
+ AccordionPrimitive.Trigger,
84
+ __spreadProps(__spreadValues({
85
+ className: cn(
86
+ "flex w-full rounded-lg items-center hover:bg-blue-100 group text-sm p-2 font-semibold text-gray-1000",
87
+ className
88
+ )
89
+ }, props), {
90
+ ref: forwardedRef,
91
+ children: [
92
+ icon && React.cloneElement(icon, {
93
+ size: 18,
94
+ className: cn("flex-shrink-0 mr-2.5", icon.props.className)
95
+ }),
96
+ /* @__PURE__ */ jsx2("span", { className: "text-left truncate grow", children }),
97
+ /* @__PURE__ */ jsx2(
98
+ ChevronDownIcon,
99
+ {
100
+ size: 16,
101
+ className: "flex-shrink-0 transition-transform text-gray-1000 group-data-[state=open]:rotate-180",
102
+ "aria-hidden": true
103
+ }
104
+ )
105
+ ]
106
+ })
107
+ ) });
108
+ });
109
+ AccordionTrigger2.displayName = AccordionPrimitive.AccordionTrigger.displayName;
110
+ var AccordionContent = React.forwardRef((_a, forwardedRef) => {
111
+ var _b = _a, { children, className } = _b, props = __objRest(_b, ["children", "className"]);
112
+ return /* @__PURE__ */ jsx2(
113
+ AccordionPrimitive.Content,
114
+ __spreadProps(__spreadValues({
115
+ className: cn(
116
+ "overflow-hidden data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",
117
+ className
118
+ )
119
+ }, props), {
120
+ ref: forwardedRef,
121
+ children: /* @__PURE__ */ jsx2("div", { className: "pb-2", children })
122
+ })
123
+ );
124
+ });
125
+ AccordionContent.displayName = AccordionPrimitive.Content.displayName;
126
+
127
+ // src/components/AlertDialog/AlertDialog.tsx
128
+ import * as React3 from "react";
129
+ import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
130
+
44
131
  // src/components/Button/Button.tsx
45
- import * as React from "react";
132
+ import * as React2 from "react";
46
133
  import { Slot } from "@radix-ui/react-slot";
47
134
  import { cva } from "class-variance-authority";
48
- import { jsx } from "react/jsx-runtime";
135
+ import { jsx as jsx3 } from "react/jsx-runtime";
49
136
  var buttonVariants = cva(
50
137
  "inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 disabled:pointer-events-none disabled:opacity-40",
51
138
  {
@@ -94,12 +181,12 @@ var iconButtonSizes = cva("", {
94
181
  size: "md"
95
182
  }
96
183
  });
97
- var Button = React.forwardRef(
184
+ var Button = React2.forwardRef(
98
185
  (_a, ref) => {
99
186
  var _b = _a, { className, variant, size, icon = false, asChild = false } = _b, props = __objRest(_b, ["className", "variant", "size", "icon", "asChild"]);
100
187
  const Comp = asChild ? Slot : "button";
101
188
  const sizesStyle = icon ? iconButtonSizes : buttonSizes;
102
- return /* @__PURE__ */ jsx(
189
+ return /* @__PURE__ */ jsx3(
103
190
  Comp,
104
191
  __spreadValues({
105
192
  className: cn(
@@ -114,7 +201,7 @@ var Button = React.forwardRef(
114
201
  Button.displayName = "Button";
115
202
 
116
203
  // src/components/AlertDialog/AlertDialog.tsx
117
- import { jsx as jsx2, jsxs } from "react/jsx-runtime";
204
+ import { jsx as jsx4, jsxs as jsxs2 } from "react/jsx-runtime";
118
205
  var AlertDialog = AlertDialogPrimitive.Root;
119
206
  var AlertDialogTrigger = AlertDialogPrimitive.Trigger;
120
207
  var AlertDialogPortal = (_a) => {
@@ -123,12 +210,12 @@ var AlertDialogPortal = (_a) => {
123
210
  } = _b, props = __objRest(_b, [
124
211
  "className"
125
212
  ]);
126
- return /* @__PURE__ */ jsx2(AlertDialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
213
+ return /* @__PURE__ */ jsx4(AlertDialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
127
214
  };
128
215
  AlertDialogPortal.displayName = AlertDialogPrimitive.Portal.displayName;
129
- var AlertDialogOverlay = React2.forwardRef((_a, ref) => {
216
+ var AlertDialogOverlay = React3.forwardRef((_a, ref) => {
130
217
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
131
- return /* @__PURE__ */ jsx2(
218
+ return /* @__PURE__ */ jsx4(
132
219
  AlertDialogPrimitive.Overlay,
133
220
  __spreadProps(__spreadValues({
134
221
  className: cn(
@@ -141,11 +228,11 @@ var AlertDialogOverlay = React2.forwardRef((_a, ref) => {
141
228
  );
142
229
  });
143
230
  AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
144
- var AlertDialogContent = React2.forwardRef((_a, ref) => {
231
+ var AlertDialogContent = React3.forwardRef((_a, ref) => {
145
232
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
146
- return /* @__PURE__ */ jsxs(AlertDialogPortal, { children: [
147
- /* @__PURE__ */ jsx2(AlertDialogOverlay, {}),
148
- /* @__PURE__ */ jsx2(
233
+ return /* @__PURE__ */ jsxs2(AlertDialogPortal, { children: [
234
+ /* @__PURE__ */ jsx4(AlertDialogOverlay, {}),
235
+ /* @__PURE__ */ jsx4(
149
236
  AlertDialogPrimitive.Content,
150
237
  __spreadValues({
151
238
  ref,
@@ -164,7 +251,7 @@ var AlertDialogHeader = (_a) => {
164
251
  } = _b, props = __objRest(_b, [
165
252
  "className"
166
253
  ]);
167
- return /* @__PURE__ */ jsx2(
254
+ return /* @__PURE__ */ jsx4(
168
255
  "div",
169
256
  __spreadValues({
170
257
  className: cn(
@@ -181,7 +268,7 @@ var AlertDialogFooter = (_a) => {
181
268
  } = _b, props = __objRest(_b, [
182
269
  "className"
183
270
  ]);
184
- return /* @__PURE__ */ jsx2(
271
+ return /* @__PURE__ */ jsx4(
185
272
  "div",
186
273
  __spreadValues({
187
274
  className: cn(
@@ -192,9 +279,9 @@ var AlertDialogFooter = (_a) => {
192
279
  );
193
280
  };
194
281
  AlertDialogFooter.displayName = "AlertDialogFooter";
195
- var AlertDialogTitle = React2.forwardRef((_a, ref) => {
282
+ var AlertDialogTitle = React3.forwardRef((_a, ref) => {
196
283
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
197
- return /* @__PURE__ */ jsx2(
284
+ return /* @__PURE__ */ jsx4(
198
285
  AlertDialogPrimitive.Title,
199
286
  __spreadValues({
200
287
  ref,
@@ -203,9 +290,9 @@ var AlertDialogTitle = React2.forwardRef((_a, ref) => {
203
290
  );
204
291
  });
205
292
  AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;
206
- var AlertDialogDescription = React2.forwardRef((_a, ref) => {
293
+ var AlertDialogDescription = React3.forwardRef((_a, ref) => {
207
294
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
208
- return /* @__PURE__ */ jsx2(
295
+ return /* @__PURE__ */ jsx4(
209
296
  AlertDialogPrimitive.Description,
210
297
  __spreadValues({
211
298
  ref,
@@ -214,9 +301,9 @@ var AlertDialogDescription = React2.forwardRef((_a, ref) => {
214
301
  );
215
302
  });
216
303
  AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName;
217
- var AlertDialogAction = React2.forwardRef((_a, ref) => {
304
+ var AlertDialogAction = React3.forwardRef((_a, ref) => {
218
305
  var _b = _a, { className, variant = "primary" } = _b, props = __objRest(_b, ["className", "variant"]);
219
- return /* @__PURE__ */ jsx2(
306
+ return /* @__PURE__ */ jsx4(
220
307
  AlertDialogPrimitive.Action,
221
308
  __spreadValues({
222
309
  ref,
@@ -229,9 +316,9 @@ var AlertDialogAction = React2.forwardRef((_a, ref) => {
229
316
  );
230
317
  });
231
318
  AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;
232
- var AlertDialogCancel = React2.forwardRef((_a, ref) => {
319
+ var AlertDialogCancel = React3.forwardRef((_a, ref) => {
233
320
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
234
- return /* @__PURE__ */ jsx2(
321
+ return /* @__PURE__ */ jsx4(
235
322
  AlertDialogPrimitive.Cancel,
236
323
  __spreadValues({
237
324
  ref,
@@ -250,10 +337,10 @@ AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
250
337
  import { cva as cva2 } from "class-variance-authority";
251
338
 
252
339
  // src/utils/getLabelFromChildren.ts
253
- import React3 from "react";
340
+ import React4 from "react";
254
341
  var getLabelFromChildren = (children) => {
255
342
  let label = "";
256
- React3.Children.map(children, (child) => {
343
+ React4.Children.map(children, (child) => {
257
344
  if (typeof child === "string") {
258
345
  label += child;
259
346
  }
@@ -275,7 +362,7 @@ var randomPickFromArray = ({
275
362
  };
276
363
 
277
364
  // src/components/Badge/Badge.tsx
278
- import { jsx as jsx3 } from "react/jsx-runtime";
365
+ import { jsx as jsx5 } from "react/jsx-runtime";
279
366
  var colors = {
280
367
  gray: "text-gray-900",
281
368
  green: "text-green-700",
@@ -410,7 +497,7 @@ function Badge(_a) {
410
497
  array: colorsArray
411
498
  });
412
499
  }
413
- return /* @__PURE__ */ jsx3(
500
+ return /* @__PURE__ */ jsx5(
414
501
  "div",
415
502
  __spreadValues({
416
503
  className: cn(badgeVariants({ variant, color }), className)
@@ -422,12 +509,12 @@ function Badge(_a) {
422
509
  import { DayPicker } from "react-day-picker";
423
510
 
424
511
  // src/icons/activity.tsx
425
- import { forwardRef as forwardRef3 } from "react";
426
- import { jsx as jsx4 } from "react/jsx-runtime";
427
- var ActivityIcon = forwardRef3(
512
+ import { forwardRef as forwardRef4 } from "react";
513
+ import { jsx as jsx6 } from "react/jsx-runtime";
514
+ var ActivityIcon = forwardRef4(
428
515
  function ActivityIcon2(_a, ref) {
429
516
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
430
- return /* @__PURE__ */ jsx4(
517
+ return /* @__PURE__ */ jsx6(
431
518
  "svg",
432
519
  __spreadProps(__spreadValues({
433
520
  ref,
@@ -438,7 +525,7 @@ var ActivityIcon = forwardRef3(
438
525
  xmlns: "http://www.w3.org/2000/svg",
439
526
  className
440
527
  }, other), {
441
- children: /* @__PURE__ */ jsx4(
528
+ children: /* @__PURE__ */ jsx6(
442
529
  "path",
443
530
  {
444
531
  d: "M22 12H18L15 21L9 3L6 12H2",
@@ -454,12 +541,12 @@ var ActivityIcon = forwardRef3(
454
541
  );
455
542
 
456
543
  // src/icons/alertCircle.tsx
457
- import { forwardRef as forwardRef4 } from "react";
458
- import { jsx as jsx5, jsxs as jsxs2 } from "react/jsx-runtime";
459
- var AlertCircleIcon = forwardRef4(
544
+ import { forwardRef as forwardRef5 } from "react";
545
+ import { jsx as jsx7, jsxs as jsxs3 } from "react/jsx-runtime";
546
+ var AlertCircleIcon = forwardRef5(
460
547
  function AlertCircleIcon2(_a, ref) {
461
548
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
462
- return /* @__PURE__ */ jsxs2(
549
+ return /* @__PURE__ */ jsxs3(
463
550
  "svg",
464
551
  __spreadProps(__spreadValues({
465
552
  ref,
@@ -471,7 +558,7 @@ var AlertCircleIcon = forwardRef4(
471
558
  className
472
559
  }, other), {
473
560
  children: [
474
- duotone && /* @__PURE__ */ jsx5(
561
+ duotone && /* @__PURE__ */ jsx7(
475
562
  "path",
476
563
  {
477
564
  opacity: "0.12",
@@ -479,7 +566,7 @@ var AlertCircleIcon = forwardRef4(
479
566
  fill: "currentColor"
480
567
  }
481
568
  ),
482
- /* @__PURE__ */ jsx5(
569
+ /* @__PURE__ */ jsx7(
483
570
  "path",
484
571
  {
485
572
  d: "M12 8V12M12 16H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
@@ -495,13 +582,55 @@ var AlertCircleIcon = forwardRef4(
495
582
  }
496
583
  );
497
584
 
585
+ // src/icons/arrowCircleUp.tsx
586
+ import { forwardRef as forwardRef6 } from "react";
587
+ import { jsx as jsx8, jsxs as jsxs4 } from "react/jsx-runtime";
588
+ var ArrowCircleUpIcon = forwardRef6(
589
+ function ArrowCircleUpIcon2(_a, ref) {
590
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
591
+ return /* @__PURE__ */ jsxs4(
592
+ "svg",
593
+ __spreadProps(__spreadValues({
594
+ ref,
595
+ width: size,
596
+ height: size,
597
+ viewBox: "0 0 24 24",
598
+ fill: "none",
599
+ xmlns: "http://www.w3.org/2000/svg",
600
+ className
601
+ }, other), {
602
+ children: [
603
+ duotone && /* @__PURE__ */ jsx8(
604
+ "path",
605
+ {
606
+ opacity: "0.12",
607
+ d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
608
+ fill: "currentColor"
609
+ }
610
+ ),
611
+ /* @__PURE__ */ jsx8(
612
+ "path",
613
+ {
614
+ d: "M16 12L12 8M12 8L8 12M12 8V16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
615
+ stroke: "currentColor",
616
+ strokeWidth: "2",
617
+ strokeLinecap: "round",
618
+ strokeLinejoin: "round"
619
+ }
620
+ )
621
+ ]
622
+ })
623
+ );
624
+ }
625
+ );
626
+
498
627
  // src/icons/arrowDown.tsx
499
- import { forwardRef as forwardRef5 } from "react";
500
- import { jsx as jsx6 } from "react/jsx-runtime";
501
- var ArrowDownIcon = forwardRef5(
628
+ import { forwardRef as forwardRef7 } from "react";
629
+ import { jsx as jsx9 } from "react/jsx-runtime";
630
+ var ArrowDownIcon = forwardRef7(
502
631
  function ArrowDownIcon2(_a, ref) {
503
632
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
504
- return /* @__PURE__ */ jsx6(
633
+ return /* @__PURE__ */ jsx9(
505
634
  "svg",
506
635
  __spreadProps(__spreadValues({
507
636
  ref,
@@ -512,7 +641,7 @@ var ArrowDownIcon = forwardRef5(
512
641
  xmlns: "http://www.w3.org/2000/svg",
513
642
  className
514
643
  }, other), {
515
- children: /* @__PURE__ */ jsx6(
644
+ children: /* @__PURE__ */ jsx9(
516
645
  "path",
517
646
  {
518
647
  d: "M12 5V19M12 19L19 12M12 19L5 12",
@@ -528,12 +657,12 @@ var ArrowDownIcon = forwardRef5(
528
657
  );
529
658
 
530
659
  // src/icons/arrowLeft.tsx
531
- import { forwardRef as forwardRef6 } from "react";
532
- import { jsx as jsx7 } from "react/jsx-runtime";
533
- var ArrowLeftIcon = forwardRef6(
660
+ import { forwardRef as forwardRef8 } from "react";
661
+ import { jsx as jsx10 } from "react/jsx-runtime";
662
+ var ArrowLeftIcon = forwardRef8(
534
663
  function ArrowLeftIcon2(_a, ref) {
535
664
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
536
- return /* @__PURE__ */ jsx7(
665
+ return /* @__PURE__ */ jsx10(
537
666
  "svg",
538
667
  __spreadProps(__spreadValues({
539
668
  ref,
@@ -544,7 +673,7 @@ var ArrowLeftIcon = forwardRef6(
544
673
  xmlns: "http://www.w3.org/2000/svg",
545
674
  className
546
675
  }, other), {
547
- children: /* @__PURE__ */ jsx7(
676
+ children: /* @__PURE__ */ jsx10(
548
677
  "path",
549
678
  {
550
679
  d: "M19 12H5M5 12L12 19M5 12L12 5",
@@ -560,12 +689,12 @@ var ArrowLeftIcon = forwardRef6(
560
689
  );
561
690
 
562
691
  // src/icons/arrowRight.tsx
563
- import { forwardRef as forwardRef7 } from "react";
564
- import { jsx as jsx8 } from "react/jsx-runtime";
565
- var ArrowRightIcon = forwardRef7(
692
+ import { forwardRef as forwardRef9 } from "react";
693
+ import { jsx as jsx11 } from "react/jsx-runtime";
694
+ var ArrowRightIcon = forwardRef9(
566
695
  function ArrowRightIcon2(_a, ref) {
567
696
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
568
- return /* @__PURE__ */ jsx8(
697
+ return /* @__PURE__ */ jsx11(
569
698
  "svg",
570
699
  __spreadProps(__spreadValues({
571
700
  ref,
@@ -576,7 +705,7 @@ var ArrowRightIcon = forwardRef7(
576
705
  xmlns: "http://www.w3.org/2000/svg",
577
706
  className
578
707
  }, other), {
579
- children: /* @__PURE__ */ jsx8(
708
+ children: /* @__PURE__ */ jsx11(
580
709
  "path",
581
710
  {
582
711
  d: "M5 12H19M19 12L12 5M19 12L12 19",
@@ -592,12 +721,12 @@ var ArrowRightIcon = forwardRef7(
592
721
  );
593
722
 
594
723
  // src/icons/arrowUp.tsx
595
- import { forwardRef as forwardRef8 } from "react";
596
- import { jsx as jsx9 } from "react/jsx-runtime";
597
- var ArrowUpIcon = forwardRef8(
724
+ import { forwardRef as forwardRef10 } from "react";
725
+ import { jsx as jsx12 } from "react/jsx-runtime";
726
+ var ArrowUpIcon = forwardRef10(
598
727
  function ArrowUpIcon2(_a, ref) {
599
728
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
600
- return /* @__PURE__ */ jsx9(
729
+ return /* @__PURE__ */ jsx12(
601
730
  "svg",
602
731
  __spreadProps(__spreadValues({
603
732
  ref,
@@ -608,7 +737,7 @@ var ArrowUpIcon = forwardRef8(
608
737
  xmlns: "http://www.w3.org/2000/svg",
609
738
  className
610
739
  }, other), {
611
- children: /* @__PURE__ */ jsx9(
740
+ children: /* @__PURE__ */ jsx12(
612
741
  "path",
613
742
  {
614
743
  d: "M12 19V5M12 5L5 12M12 5L19 12",
@@ -623,12 +752,44 @@ var ArrowUpIcon = forwardRef8(
623
752
  }
624
753
  );
625
754
 
755
+ // src/icons/attachment.tsx
756
+ import { forwardRef as forwardRef11 } from "react";
757
+ import { jsx as jsx13 } from "react/jsx-runtime";
758
+ var AttachmentIcon = forwardRef11(
759
+ function AttachmentIcon2(_a, ref) {
760
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
761
+ return /* @__PURE__ */ jsx13(
762
+ "svg",
763
+ __spreadProps(__spreadValues({
764
+ ref,
765
+ width: size,
766
+ height: size,
767
+ viewBox: "0 0 24 24",
768
+ fill: "none",
769
+ xmlns: "http://www.w3.org/2000/svg",
770
+ className
771
+ }, other), {
772
+ children: /* @__PURE__ */ jsx13(
773
+ "path",
774
+ {
775
+ d: "M17.5 5.25581V16.5C17.5 19.5376 15.0376 22 12 22C8.96243 22 6.5 19.5376 6.5 16.5V5.66667C6.5 3.64162 8.14162 2 10.1667 2C12.1917 2 13.8333 3.64162 13.8333 5.66667V16.4457C13.8333 17.4583 13.0125 18.2791 12 18.2791C10.9875 18.2791 10.1667 17.4583 10.1667 16.4457V6.65116",
776
+ stroke: "currentColor",
777
+ strokeWidth: "2",
778
+ strokeLinecap: "round",
779
+ strokeLinejoin: "round"
780
+ }
781
+ )
782
+ })
783
+ );
784
+ }
785
+ );
786
+
626
787
  // src/icons/bell.tsx
627
- import { forwardRef as forwardRef9 } from "react";
628
- import { jsx as jsx10, jsxs as jsxs3 } from "react/jsx-runtime";
629
- var BellIcon = forwardRef9(function BellIcon2(_a, ref) {
788
+ import { forwardRef as forwardRef12 } from "react";
789
+ import { jsx as jsx14, jsxs as jsxs5 } from "react/jsx-runtime";
790
+ var BellIcon = forwardRef12(function BellIcon2(_a, ref) {
630
791
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
631
- return /* @__PURE__ */ jsxs3(
792
+ return /* @__PURE__ */ jsxs5(
632
793
  "svg",
633
794
  __spreadProps(__spreadValues({
634
795
  ref,
@@ -640,7 +801,7 @@ var BellIcon = forwardRef9(function BellIcon2(_a, ref) {
640
801
  className
641
802
  }, other), {
642
803
  children: [
643
- duotone && /* @__PURE__ */ jsx10(
804
+ duotone && /* @__PURE__ */ jsx14(
644
805
  "path",
645
806
  {
646
807
  opacity: "0.12",
@@ -648,7 +809,7 @@ var BellIcon = forwardRef9(function BellIcon2(_a, ref) {
648
809
  fill: "currentColor"
649
810
  }
650
811
  ),
651
- /* @__PURE__ */ jsx10(
812
+ /* @__PURE__ */ jsx14(
652
813
  "path",
653
814
  {
654
815
  d: "M9.35419 21C10.0593 21.6224 10.9856 22 12 22C13.0145 22 13.9407 21.6224 14.6458 21M18 8C18 6.4087 17.3679 4.88258 16.2427 3.75736C15.1174 2.63214 13.5913 2 12 2C10.4087 2 8.8826 2.63214 7.75738 3.75736C6.63216 4.88258 6.00002 6.4087 6.00002 8C6.00002 11.0902 5.22049 13.206 4.34968 14.6054C3.61515 15.7859 3.24788 16.3761 3.26134 16.5408C3.27626 16.7231 3.31488 16.7926 3.46179 16.9016C3.59448 17 4.19261 17 5.38887 17H18.6112C19.8074 17 20.4056 17 20.5382 16.9016C20.6852 16.7926 20.7238 16.7231 20.7387 16.5408C20.7522 16.3761 20.3849 15.7859 19.6504 14.6054C18.7795 13.206 18 11.0902 18 8Z",
@@ -664,12 +825,12 @@ var BellIcon = forwardRef9(function BellIcon2(_a, ref) {
664
825
  });
665
826
 
666
827
  // src/icons/calendar.tsx
667
- import { forwardRef as forwardRef10 } from "react";
668
- import { jsx as jsx11, jsxs as jsxs4 } from "react/jsx-runtime";
669
- var CalendarIcon = forwardRef10(
828
+ import { forwardRef as forwardRef13 } from "react";
829
+ import { jsx as jsx15, jsxs as jsxs6 } from "react/jsx-runtime";
830
+ var CalendarIcon = forwardRef13(
670
831
  function CalendarIcon2(_a, ref) {
671
832
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
672
- return /* @__PURE__ */ jsxs4(
833
+ return /* @__PURE__ */ jsxs6(
673
834
  "svg",
674
835
  __spreadProps(__spreadValues({
675
836
  ref,
@@ -681,7 +842,7 @@ var CalendarIcon = forwardRef10(
681
842
  className
682
843
  }, other), {
683
844
  children: [
684
- duotone && /* @__PURE__ */ jsx11(
845
+ duotone && /* @__PURE__ */ jsx15(
685
846
  "path",
686
847
  {
687
848
  opacity: "0.12",
@@ -689,7 +850,7 @@ var CalendarIcon = forwardRef10(
689
850
  fill: "currentColor"
690
851
  }
691
852
  ),
692
- /* @__PURE__ */ jsx11(
853
+ /* @__PURE__ */ jsx15(
693
854
  "path",
694
855
  {
695
856
  d: "M21 10H3M16 2V6M8 2V6M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z",
@@ -706,12 +867,12 @@ var CalendarIcon = forwardRef10(
706
867
  );
707
868
 
708
869
  // src/icons/calendarCheck.tsx
709
- import { forwardRef as forwardRef11 } from "react";
710
- import { jsx as jsx12, jsxs as jsxs5 } from "react/jsx-runtime";
711
- var CalendarCheckIcon = forwardRef11(
870
+ import { forwardRef as forwardRef14 } from "react";
871
+ import { jsx as jsx16, jsxs as jsxs7 } from "react/jsx-runtime";
872
+ var CalendarCheckIcon = forwardRef14(
712
873
  function CalendarCheckIcon2(_a, ref) {
713
874
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
714
- return /* @__PURE__ */ jsxs5(
875
+ return /* @__PURE__ */ jsxs7(
715
876
  "svg",
716
877
  __spreadProps(__spreadValues({
717
878
  ref,
@@ -723,7 +884,7 @@ var CalendarCheckIcon = forwardRef11(
723
884
  className
724
885
  }, other), {
725
886
  children: [
726
- duotone && /* @__PURE__ */ jsx12(
887
+ duotone && /* @__PURE__ */ jsx16(
727
888
  "path",
728
889
  {
729
890
  opacity: "0.12",
@@ -731,7 +892,7 @@ var CalendarCheckIcon = forwardRef11(
731
892
  fill: "currentColor"
732
893
  }
733
894
  ),
734
- /* @__PURE__ */ jsx12(
895
+ /* @__PURE__ */ jsx16(
735
896
  "path",
736
897
  {
737
898
  d: "M21 10H3M16 2V6M8 2V6M9 16L11 18L15.5 13.5M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z",
@@ -748,12 +909,12 @@ var CalendarCheckIcon = forwardRef11(
748
909
  );
749
910
 
750
911
  // src/icons/calendarPlus.tsx
751
- import { forwardRef as forwardRef12 } from "react";
752
- import { jsx as jsx13, jsxs as jsxs6 } from "react/jsx-runtime";
753
- var CalendarPlusIcon = forwardRef12(
912
+ import { forwardRef as forwardRef15 } from "react";
913
+ import { jsx as jsx17, jsxs as jsxs8 } from "react/jsx-runtime";
914
+ var CalendarPlusIcon = forwardRef15(
754
915
  function CalendarPlusIcon2(_a, ref) {
755
916
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
756
- return /* @__PURE__ */ jsxs6(
917
+ return /* @__PURE__ */ jsxs8(
757
918
  "svg",
758
919
  __spreadProps(__spreadValues({
759
920
  ref,
@@ -765,7 +926,7 @@ var CalendarPlusIcon = forwardRef12(
765
926
  className
766
927
  }, other), {
767
928
  children: [
768
- duotone && /* @__PURE__ */ jsx13(
929
+ duotone && /* @__PURE__ */ jsx17(
769
930
  "path",
770
931
  {
771
932
  opacity: "0.12",
@@ -773,7 +934,7 @@ var CalendarPlusIcon = forwardRef12(
773
934
  fill: "currentColor"
774
935
  }
775
936
  ),
776
- /* @__PURE__ */ jsx13(
937
+ /* @__PURE__ */ jsx17(
777
938
  "path",
778
939
  {
779
940
  d: "M21 8H3M16 2V5M8 2V5M12 18V12M9 15H15M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z",
@@ -790,12 +951,12 @@ var CalendarPlusIcon = forwardRef12(
790
951
  );
791
952
 
792
953
  // src/icons/camera.tsx
793
- import { forwardRef as forwardRef13 } from "react";
794
- import { jsx as jsx14, jsxs as jsxs7 } from "react/jsx-runtime";
795
- var CameraIcon = forwardRef13(
954
+ import { forwardRef as forwardRef16 } from "react";
955
+ import { jsx as jsx18, jsxs as jsxs9 } from "react/jsx-runtime";
956
+ var CameraIcon = forwardRef16(
796
957
  function CameraIcon2(_a, ref) {
797
958
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
798
- return /* @__PURE__ */ jsxs7(
959
+ return /* @__PURE__ */ jsxs9(
799
960
  "svg",
800
961
  __spreadProps(__spreadValues({
801
962
  ref,
@@ -807,7 +968,7 @@ var CameraIcon = forwardRef13(
807
968
  className
808
969
  }, other), {
809
970
  children: [
810
- duotone && /* @__PURE__ */ jsx14(
971
+ duotone && /* @__PURE__ */ jsx18(
811
972
  "path",
812
973
  {
813
974
  opacity: "0.12",
@@ -815,7 +976,7 @@ var CameraIcon = forwardRef13(
815
976
  fill: "currentColor"
816
977
  }
817
978
  ),
818
- /* @__PURE__ */ jsx14(
979
+ /* @__PURE__ */ jsx18(
819
980
  "path",
820
981
  {
821
982
  d: "M2 8.37722C2 8.0269 2 7.85174 2.01462 7.70421C2.1556 6.28127 3.28127 5.1556 4.70421 5.01462C4.85174 5 5.03636 5 5.40558 5C5.54785 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V8.37722Z",
@@ -826,7 +987,7 @@ var CameraIcon = forwardRef13(
826
987
  }
827
988
  ),
828
989
  ",",
829
- /* @__PURE__ */ jsx14(
990
+ /* @__PURE__ */ jsx18(
830
991
  "path",
831
992
  {
832
993
  d: "M12 16.5C14.2091 16.5 16 14.7091 16 12.5C16 10.2909 14.2091 8.5 12 8.5C9.79086 8.5 8 10.2909 8 12.5C8 14.7091 9.79086 16.5 12 16.5Z",
@@ -843,12 +1004,12 @@ var CameraIcon = forwardRef13(
843
1004
  );
844
1005
 
845
1006
  // src/icons/cameraOff.tsx
846
- import { forwardRef as forwardRef14 } from "react";
847
- import { jsx as jsx15, jsxs as jsxs8 } from "react/jsx-runtime";
848
- var CameraOffIcon = forwardRef14(
1007
+ import { forwardRef as forwardRef17 } from "react";
1008
+ import { jsx as jsx19, jsxs as jsxs10 } from "react/jsx-runtime";
1009
+ var CameraOffIcon = forwardRef17(
849
1010
  function CameraOffIcon2(_a, ref) {
850
1011
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
851
- return /* @__PURE__ */ jsxs8(
1012
+ return /* @__PURE__ */ jsxs10(
852
1013
  "svg",
853
1014
  __spreadProps(__spreadValues({
854
1015
  ref,
@@ -860,7 +1021,7 @@ var CameraOffIcon = forwardRef14(
860
1021
  className
861
1022
  }, other), {
862
1023
  children: [
863
- duotone && /* @__PURE__ */ jsx15(
1024
+ duotone && /* @__PURE__ */ jsx19(
864
1025
  "path",
865
1026
  {
866
1027
  opacity: "0.12",
@@ -868,7 +1029,7 @@ var CameraOffIcon = forwardRef14(
868
1029
  fill: "currentColor"
869
1030
  }
870
1031
  ),
871
- /* @__PURE__ */ jsx15(
1032
+ /* @__PURE__ */ jsx19(
872
1033
  "path",
873
1034
  {
874
1035
  d: "M5 5H5.41886C5.55228 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V18C22 19.0849 21.4241 20.0353 20.5613 20.5622M15.0641 15.0714C15.6482 14.3761 16 13.4791 16 12.5C16 10.2909 14.2091 8.5 12 8.5C11.0216 8.5 10.1252 8.8513 9.43012 9.43464M22 22L2 2M2 7.5V16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21H15.5M12 16.5C9.79086 16.5 8 14.7091 8 12.5",
@@ -885,12 +1046,12 @@ var CameraOffIcon = forwardRef14(
885
1046
  );
886
1047
 
887
1048
  // src/icons/checkCircle.tsx
888
- import { forwardRef as forwardRef15 } from "react";
889
- import { jsx as jsx16, jsxs as jsxs9 } from "react/jsx-runtime";
890
- var CheckCircleIcon = forwardRef15(
1049
+ import { forwardRef as forwardRef18 } from "react";
1050
+ import { jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
1051
+ var CheckCircleIcon = forwardRef18(
891
1052
  function CheckCircleIcon2(_a, ref) {
892
1053
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
893
- return /* @__PURE__ */ jsxs9(
1054
+ return /* @__PURE__ */ jsxs11(
894
1055
  "svg",
895
1056
  __spreadProps(__spreadValues({
896
1057
  ref,
@@ -902,7 +1063,7 @@ var CheckCircleIcon = forwardRef15(
902
1063
  className
903
1064
  }, other), {
904
1065
  children: [
905
- duotone && /* @__PURE__ */ jsx16(
1066
+ duotone && /* @__PURE__ */ jsx20(
906
1067
  "path",
907
1068
  {
908
1069
  opacity: "0.12",
@@ -910,7 +1071,7 @@ var CheckCircleIcon = forwardRef15(
910
1071
  fill: "currentColor"
911
1072
  }
912
1073
  ),
913
- /* @__PURE__ */ jsx16(
1074
+ /* @__PURE__ */ jsx20(
914
1075
  "path",
915
1076
  {
916
1077
  d: "M7.5 12L10.5 15L16.5 9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
@@ -926,45 +1087,13 @@ var CheckCircleIcon = forwardRef15(
926
1087
  }
927
1088
  );
928
1089
 
929
- // src/icons/chevronDown.tsx
930
- import { forwardRef as forwardRef16 } from "react";
931
- import { jsx as jsx17 } from "react/jsx-runtime";
932
- var ChevronDownIcon = forwardRef16(
933
- function ChevronDownIcon2(_a, ref) {
934
- var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
935
- return /* @__PURE__ */ jsx17(
936
- "svg",
937
- __spreadProps(__spreadValues({
938
- ref,
939
- width: size,
940
- height: size,
941
- viewBox: "0 0 24 24",
942
- fill: "none",
943
- xmlns: "http://www.w3.org/2000/svg",
944
- className
945
- }, other), {
946
- children: /* @__PURE__ */ jsx17(
947
- "path",
948
- {
949
- d: "M6 9L12 15L18 9",
950
- stroke: "currentColor",
951
- strokeWidth: "2",
952
- strokeLinecap: "round",
953
- strokeLinejoin: "round"
954
- }
955
- )
956
- })
957
- );
958
- }
959
- );
960
-
961
1090
  // src/icons/chevronLeft.tsx
962
- import { forwardRef as forwardRef17 } from "react";
963
- import { jsx as jsx18 } from "react/jsx-runtime";
964
- var ChevronLeftIcon = forwardRef17(
1091
+ import { forwardRef as forwardRef19 } from "react";
1092
+ import { jsx as jsx21 } from "react/jsx-runtime";
1093
+ var ChevronLeftIcon = forwardRef19(
965
1094
  function ChevronLeftIcon2(_a, ref) {
966
1095
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
967
- return /* @__PURE__ */ jsx18(
1096
+ return /* @__PURE__ */ jsx21(
968
1097
  "svg",
969
1098
  __spreadProps(__spreadValues({
970
1099
  ref,
@@ -975,7 +1104,7 @@ var ChevronLeftIcon = forwardRef17(
975
1104
  xmlns: "http://www.w3.org/2000/svg",
976
1105
  className
977
1106
  }, other), {
978
- children: /* @__PURE__ */ jsx18(
1107
+ children: /* @__PURE__ */ jsx21(
979
1108
  "path",
980
1109
  {
981
1110
  d: "M15 18L9 12L15 6",
@@ -991,12 +1120,12 @@ var ChevronLeftIcon = forwardRef17(
991
1120
  );
992
1121
 
993
1122
  // src/icons/chevronRight.tsx
994
- import { forwardRef as forwardRef18 } from "react";
995
- import { jsx as jsx19 } from "react/jsx-runtime";
996
- var ChevronRightIcon = forwardRef18(
1123
+ import { forwardRef as forwardRef20 } from "react";
1124
+ import { jsx as jsx22 } from "react/jsx-runtime";
1125
+ var ChevronRightIcon = forwardRef20(
997
1126
  function ChevronRightIcon2(_a, ref) {
998
1127
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
999
- return /* @__PURE__ */ jsx19(
1128
+ return /* @__PURE__ */ jsx22(
1000
1129
  "svg",
1001
1130
  __spreadProps(__spreadValues({
1002
1131
  ref,
@@ -1007,7 +1136,7 @@ var ChevronRightIcon = forwardRef18(
1007
1136
  xmlns: "http://www.w3.org/2000/svg",
1008
1137
  className
1009
1138
  }, other), {
1010
- children: /* @__PURE__ */ jsx19(
1139
+ children: /* @__PURE__ */ jsx22(
1011
1140
  "path",
1012
1141
  {
1013
1142
  d: "M9 18L15 12L9 6",
@@ -1023,12 +1152,12 @@ var ChevronRightIcon = forwardRef18(
1023
1152
  );
1024
1153
 
1025
1154
  // src/icons/chevronUp.tsx
1026
- import { forwardRef as forwardRef19 } from "react";
1027
- import { jsx as jsx20 } from "react/jsx-runtime";
1028
- var ChevronUpIcon = forwardRef19(
1155
+ import { forwardRef as forwardRef21 } from "react";
1156
+ import { jsx as jsx23 } from "react/jsx-runtime";
1157
+ var ChevronUpIcon = forwardRef21(
1029
1158
  function ChevronUpIcon2(_a, ref) {
1030
1159
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1031
- return /* @__PURE__ */ jsx20(
1160
+ return /* @__PURE__ */ jsx23(
1032
1161
  "svg",
1033
1162
  __spreadProps(__spreadValues({
1034
1163
  ref,
@@ -1039,7 +1168,7 @@ var ChevronUpIcon = forwardRef19(
1039
1168
  xmlns: "http://www.w3.org/2000/svg",
1040
1169
  className
1041
1170
  }, other), {
1042
- children: /* @__PURE__ */ jsx20(
1171
+ children: /* @__PURE__ */ jsx23(
1043
1172
  "path",
1044
1173
  {
1045
1174
  d: "M18 15L12 9L6 15",
@@ -1055,11 +1184,11 @@ var ChevronUpIcon = forwardRef19(
1055
1184
  );
1056
1185
 
1057
1186
  // src/icons/copy.tsx
1058
- import { forwardRef as forwardRef20 } from "react";
1059
- import { jsx as jsx21, jsxs as jsxs10 } from "react/jsx-runtime";
1060
- var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
1187
+ import { forwardRef as forwardRef22 } from "react";
1188
+ import { jsx as jsx24, jsxs as jsxs12 } from "react/jsx-runtime";
1189
+ var CopyIcon = forwardRef22(function CopyIcon2(_a, ref) {
1061
1190
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1062
- return /* @__PURE__ */ jsxs10(
1191
+ return /* @__PURE__ */ jsxs12(
1063
1192
  "svg",
1064
1193
  __spreadProps(__spreadValues({
1065
1194
  ref,
@@ -1071,7 +1200,7 @@ var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
1071
1200
  className
1072
1201
  }, other), {
1073
1202
  children: [
1074
- duotone && /* @__PURE__ */ jsx21(
1203
+ duotone && /* @__PURE__ */ jsx24(
1075
1204
  "path",
1076
1205
  {
1077
1206
  opacity: "0.12",
@@ -1079,7 +1208,7 @@ var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
1079
1208
  fill: "currentColor"
1080
1209
  }
1081
1210
  ),
1082
- /* @__PURE__ */ jsx21(
1211
+ /* @__PURE__ */ jsx24(
1083
1212
  "path",
1084
1213
  {
1085
1214
  d: "M8 16V18.8C8 19.9201 8 20.4802 8.21799 20.908C8.40973 21.2843 8.71569 21.5903 9.09202 21.782C9.51984 22 10.0799 22 11.2 22H18.8C19.9201 22 20.4802 22 20.908 21.782C21.2843 21.5903 21.5903 21.2843 21.782 20.908C22 20.4802 22 19.9201 22 18.8V11.2C22 10.0799 22 9.51984 21.782 9.09202C21.5903 8.71569 21.2843 8.40973 20.908 8.21799C20.4802 8 19.9201 8 18.8 8H16M5.2 16H12.8C13.9201 16 14.4802 16 14.908 15.782C15.2843 15.5903 15.5903 15.2843 15.782 14.908C16 14.4802 16 13.9201 16 12.8V5.2C16 4.0799 16 3.51984 15.782 3.09202C15.5903 2.71569 15.2843 2.40973 14.908 2.21799C14.4802 2 13.9201 2 12.8 2H5.2C4.0799 2 3.51984 2 3.09202 2.21799C2.71569 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.07989 2 5.2V12.8C2 13.9201 2 14.4802 2.21799 14.908C2.40973 15.2843 2.71569 15.5903 3.09202 15.782C3.51984 16 4.07989 16 5.2 16Z",
@@ -1095,12 +1224,12 @@ var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
1095
1224
  });
1096
1225
 
1097
1226
  // src/icons/cursorClick.tsx
1098
- import { forwardRef as forwardRef21 } from "react";
1099
- import { jsx as jsx22, jsxs as jsxs11 } from "react/jsx-runtime";
1100
- var CursorClickIcon = forwardRef21(
1227
+ import { forwardRef as forwardRef23 } from "react";
1228
+ import { jsx as jsx25, jsxs as jsxs13 } from "react/jsx-runtime";
1229
+ var CursorClickIcon = forwardRef23(
1101
1230
  function CursorClickIcon2(_a, ref) {
1102
1231
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1103
- return /* @__PURE__ */ jsxs11(
1232
+ return /* @__PURE__ */ jsxs13(
1104
1233
  "svg",
1105
1234
  __spreadProps(__spreadValues({
1106
1235
  ref,
@@ -1112,7 +1241,7 @@ var CursorClickIcon = forwardRef21(
1112
1241
  className
1113
1242
  }, other), {
1114
1243
  children: [
1115
- duotone && /* @__PURE__ */ jsx22(
1244
+ duotone && /* @__PURE__ */ jsx25(
1116
1245
  "path",
1117
1246
  {
1118
1247
  opacity: "0.12",
@@ -1120,7 +1249,7 @@ var CursorClickIcon = forwardRef21(
1120
1249
  fill: "currentColor"
1121
1250
  }
1122
1251
  ),
1123
- /* @__PURE__ */ jsx22(
1252
+ /* @__PURE__ */ jsx25(
1124
1253
  "path",
1125
1254
  {
1126
1255
  d: "M9 3.5V2M5.06066 5.06066L4 4M5.06066 13L4 14.0607M13 5.06066L14.0607 4M3.5 9H2M15.8645 16.1896L13.3727 20.817C13.0881 21.3457 12.9457 21.61 12.7745 21.6769C12.6259 21.7349 12.4585 21.7185 12.324 21.6328C12.1689 21.534 12.0806 21.2471 11.9038 20.6733L8.44519 9.44525C8.3008 8.97651 8.2286 8.74213 8.28669 8.58383C8.33729 8.44595 8.44595 8.33729 8.58383 8.2867C8.74213 8.22861 8.9765 8.3008 9.44525 8.44519L20.6732 11.9038C21.247 12.0806 21.5339 12.169 21.6327 12.324C21.7185 12.4586 21.7348 12.6259 21.6768 12.7745C21.61 12.9458 21.3456 13.0881 20.817 13.3728L16.1896 15.8645C16.111 15.9068 16.0717 15.9279 16.0374 15.9551C16.0068 15.9792 15.9792 16.0068 15.9551 16.0374C15.9279 16.0717 15.9068 16.111 15.8645 16.1896Z",
@@ -1136,13 +1265,67 @@ var CursorClickIcon = forwardRef21(
1136
1265
  }
1137
1266
  );
1138
1267
 
1268
+ // src/icons/dotsHorizontal.tsx
1269
+ import { forwardRef as forwardRef24 } from "react";
1270
+ import { jsx as jsx26, jsxs as jsxs14 } from "react/jsx-runtime";
1271
+ var DotsHorizontalIcon = forwardRef24(
1272
+ function DotsHorizontalIcon2(_a, ref) {
1273
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1274
+ return /* @__PURE__ */ jsxs14(
1275
+ "svg",
1276
+ __spreadProps(__spreadValues({
1277
+ ref,
1278
+ width: size,
1279
+ height: size,
1280
+ viewBox: "0 0 24 24",
1281
+ fill: "none",
1282
+ xmlns: "http://www.w3.org/2000/svg",
1283
+ className
1284
+ }, other), {
1285
+ children: [
1286
+ /* @__PURE__ */ jsx26(
1287
+ "path",
1288
+ {
1289
+ d: "M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z",
1290
+ stroke: "currentColor",
1291
+ strokeWidth: "2",
1292
+ strokeLinecap: "round",
1293
+ strokeLinejoin: "round"
1294
+ }
1295
+ ),
1296
+ /* @__PURE__ */ jsx26(
1297
+ "path",
1298
+ {
1299
+ d: "M19 13C19.5523 13 20 12.5523 20 12C20 11.4477 19.5523 11 19 11C18.4477 11 18 11.4477 18 12C18 12.5523 18.4477 13 19 13Z",
1300
+ stroke: "currentColor",
1301
+ strokeWidth: "2",
1302
+ strokeLinecap: "round",
1303
+ strokeLinejoin: "round"
1304
+ }
1305
+ ),
1306
+ /* @__PURE__ */ jsx26(
1307
+ "path",
1308
+ {
1309
+ d: "M5 13C5.55228 13 6 12.5523 6 12C6 11.4477 5.55228 11 5 11C4.44772 11 4 11.4477 4 12C4 12.5523 4.44772 13 5 13Z",
1310
+ stroke: "currentColor",
1311
+ strokeWidth: "2",
1312
+ strokeLinecap: "round",
1313
+ strokeLinejoin: "round"
1314
+ }
1315
+ )
1316
+ ]
1317
+ })
1318
+ );
1319
+ }
1320
+ );
1321
+
1139
1322
  // src/icons/download.tsx
1140
- import { forwardRef as forwardRef22 } from "react";
1141
- import { jsx as jsx23, jsxs as jsxs12 } from "react/jsx-runtime";
1142
- var DownloadIcon = forwardRef22(
1323
+ import { forwardRef as forwardRef25 } from "react";
1324
+ import { jsx as jsx27, jsxs as jsxs15 } from "react/jsx-runtime";
1325
+ var DownloadIcon = forwardRef25(
1143
1326
  function DownloadIcon2(_a, ref) {
1144
1327
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1145
- return /* @__PURE__ */ jsxs12(
1328
+ return /* @__PURE__ */ jsxs15(
1146
1329
  "svg",
1147
1330
  __spreadProps(__spreadValues({
1148
1331
  ref,
@@ -1154,7 +1337,7 @@ var DownloadIcon = forwardRef22(
1154
1337
  className
1155
1338
  }, other), {
1156
1339
  children: [
1157
- duotone && /* @__PURE__ */ jsx23(
1340
+ duotone && /* @__PURE__ */ jsx27(
1158
1341
  "path",
1159
1342
  {
1160
1343
  opacity: "0.12",
@@ -1162,7 +1345,7 @@ var DownloadIcon = forwardRef22(
1162
1345
  fill: "currentColor"
1163
1346
  }
1164
1347
  ),
1165
- /* @__PURE__ */ jsx23(
1348
+ /* @__PURE__ */ jsx27(
1166
1349
  "path",
1167
1350
  {
1168
1351
  d: "M8 12L12 16M12 16L16 12M12 16V8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
@@ -1179,11 +1362,11 @@ var DownloadIcon = forwardRef22(
1179
1362
  );
1180
1363
 
1181
1364
  // src/icons/edit.tsx
1182
- import { forwardRef as forwardRef23 } from "react";
1183
- import { jsx as jsx24, jsxs as jsxs13 } from "react/jsx-runtime";
1184
- var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
1365
+ import { forwardRef as forwardRef26 } from "react";
1366
+ import { jsx as jsx28, jsxs as jsxs16 } from "react/jsx-runtime";
1367
+ var EditIcon = forwardRef26(function EditIcon2(_a, ref) {
1185
1368
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1186
- return /* @__PURE__ */ jsxs13(
1369
+ return /* @__PURE__ */ jsxs16(
1187
1370
  "svg",
1188
1371
  __spreadProps(__spreadValues({
1189
1372
  ref,
@@ -1195,7 +1378,7 @@ var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
1195
1378
  className
1196
1379
  }, other), {
1197
1380
  children: [
1198
- duotone && /* @__PURE__ */ jsx24(
1381
+ duotone && /* @__PURE__ */ jsx28(
1199
1382
  "path",
1200
1383
  {
1201
1384
  opacity: "0.12",
@@ -1203,7 +1386,7 @@ var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
1203
1386
  fill: "currentColor"
1204
1387
  }
1205
1388
  ),
1206
- /* @__PURE__ */ jsx24(
1389
+ /* @__PURE__ */ jsx28(
1207
1390
  "path",
1208
1391
  {
1209
1392
  d: "M11 3.99998H6.8C5.11984 3.99998 4.27976 3.99998 3.63803 4.32696C3.07354 4.61458 2.6146 5.07353 2.32698 5.63801C2 6.27975 2 7.11983 2 8.79998V17.2C2 18.8801 2 19.7202 2.32698 20.362C2.6146 20.9264 3.07354 21.3854 3.63803 21.673C4.27976 22 5.11984 22 6.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9264 19.673 20.362C20 19.7202 20 18.8801 20 17.2V13M7.99997 16H9.67452C10.1637 16 10.4083 16 10.6385 15.9447C10.8425 15.8957 11.0376 15.8149 11.2166 15.7053C11.4184 15.5816 11.5914 15.4086 11.9373 15.0627L21.5 5.49998C22.3284 4.67156 22.3284 3.32841 21.5 2.49998C20.6716 1.67156 19.3284 1.67155 18.5 2.49998L8.93723 12.0627C8.59133 12.4086 8.41838 12.5816 8.29469 12.7834C8.18504 12.9624 8.10423 13.1574 8.05523 13.3615C7.99997 13.5917 7.99997 13.8363 7.99997 14.3255V16Z",
@@ -1219,12 +1402,12 @@ var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
1219
1402
  });
1220
1403
 
1221
1404
  // src/icons/expand.tsx
1222
- import { forwardRef as forwardRef24 } from "react";
1223
- import { jsx as jsx25 } from "react/jsx-runtime";
1224
- var ExpandIcon = forwardRef24(
1405
+ import { forwardRef as forwardRef27 } from "react";
1406
+ import { jsx as jsx29 } from "react/jsx-runtime";
1407
+ var ExpandIcon = forwardRef27(
1225
1408
  function ExpandIcon2(_a, ref) {
1226
1409
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1227
- return /* @__PURE__ */ jsx25(
1410
+ return /* @__PURE__ */ jsx29(
1228
1411
  "svg",
1229
1412
  __spreadProps(__spreadValues({
1230
1413
  ref,
@@ -1235,7 +1418,7 @@ var ExpandIcon = forwardRef24(
1235
1418
  xmlns: "http://www.w3.org/2000/svg",
1236
1419
  className
1237
1420
  }, other), {
1238
- children: /* @__PURE__ */ jsx25(
1421
+ children: /* @__PURE__ */ jsx29(
1239
1422
  "path",
1240
1423
  {
1241
1424
  d: "M16 8L21 3M21 3H16M21 3V8M8 8L3 3M3 3L3 8M3 3L8 3M8 16L3 21M3 21H8M3 21L3 16M16 16L21 21M21 21V16M21 21H16",
@@ -1250,13 +1433,45 @@ var ExpandIcon = forwardRef24(
1250
1433
  }
1251
1434
  );
1252
1435
 
1436
+ // src/icons/filterLines.tsx
1437
+ import { forwardRef as forwardRef28 } from "react";
1438
+ import { jsx as jsx30 } from "react/jsx-runtime";
1439
+ var FilterLinesIcon = forwardRef28(
1440
+ function FilterLinesIcon2(_a, ref) {
1441
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1442
+ return /* @__PURE__ */ jsx30(
1443
+ "svg",
1444
+ __spreadProps(__spreadValues({
1445
+ ref,
1446
+ width: size,
1447
+ height: size,
1448
+ viewBox: "0 0 24 24",
1449
+ fill: "none",
1450
+ xmlns: "http://www.w3.org/2000/svg",
1451
+ className
1452
+ }, other), {
1453
+ children: /* @__PURE__ */ jsx30(
1454
+ "path",
1455
+ {
1456
+ d: "M6 12H18M3 6H21M9 18H15",
1457
+ stroke: "currentColor",
1458
+ strokeWidth: "2",
1459
+ strokeLinecap: "round",
1460
+ strokeLinejoin: "round"
1461
+ }
1462
+ )
1463
+ })
1464
+ );
1465
+ }
1466
+ );
1467
+
1253
1468
  // src/icons/flipBackward.tsx
1254
- import { forwardRef as forwardRef25 } from "react";
1255
- import { jsx as jsx26 } from "react/jsx-runtime";
1256
- var FlipBackwardIcon = forwardRef25(
1469
+ import { forwardRef as forwardRef29 } from "react";
1470
+ import { jsx as jsx31 } from "react/jsx-runtime";
1471
+ var FlipBackwardIcon = forwardRef29(
1257
1472
  function FlipBackwardIcon2(_a, ref) {
1258
1473
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1259
- return /* @__PURE__ */ jsx26(
1474
+ return /* @__PURE__ */ jsx31(
1260
1475
  "svg",
1261
1476
  __spreadProps(__spreadValues({
1262
1477
  ref,
@@ -1267,7 +1482,7 @@ var FlipBackwardIcon = forwardRef25(
1267
1482
  xmlns: "http://www.w3.org/2000/svg",
1268
1483
  className
1269
1484
  }, other), {
1270
- children: /* @__PURE__ */ jsx26(
1485
+ children: /* @__PURE__ */ jsx31(
1271
1486
  "path",
1272
1487
  {
1273
1488
  d: "M3 9H16.5C18.9853 9 21 11.0147 21 13.5C21 15.9853 18.9853 18 16.5 18H12M3 9L7 5M3 9L7 13",
@@ -1283,12 +1498,12 @@ var FlipBackwardIcon = forwardRef25(
1283
1498
  );
1284
1499
 
1285
1500
  // src/icons/flipForward.tsx
1286
- import { forwardRef as forwardRef26 } from "react";
1287
- import { jsx as jsx27 } from "react/jsx-runtime";
1288
- var FlipForwardIcon = forwardRef26(
1501
+ import { forwardRef as forwardRef30 } from "react";
1502
+ import { jsx as jsx32 } from "react/jsx-runtime";
1503
+ var FlipForwardIcon = forwardRef30(
1289
1504
  function FlipForwardIcon2(_a, ref) {
1290
1505
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1291
- return /* @__PURE__ */ jsx27(
1506
+ return /* @__PURE__ */ jsx32(
1292
1507
  "svg",
1293
1508
  __spreadProps(__spreadValues({
1294
1509
  ref,
@@ -1299,7 +1514,7 @@ var FlipForwardIcon = forwardRef26(
1299
1514
  xmlns: "http://www.w3.org/2000/svg",
1300
1515
  className
1301
1516
  }, other), {
1302
- children: /* @__PURE__ */ jsx27(
1517
+ children: /* @__PURE__ */ jsx32(
1303
1518
  "path",
1304
1519
  {
1305
1520
  d: "M21 9H7.5C5.01472 9 3 11.0147 3 13.5C3 15.9853 5.01472 18 7.5 18H12M21 9L17 5M21 9L17 13",
@@ -1315,12 +1530,12 @@ var FlipForwardIcon = forwardRef26(
1315
1530
  );
1316
1531
 
1317
1532
  // src/icons/helpCircle.tsx
1318
- import { forwardRef as forwardRef27 } from "react";
1319
- import { jsx as jsx28, jsxs as jsxs14 } from "react/jsx-runtime";
1320
- var HelpCircleIcon = forwardRef27(
1533
+ import { forwardRef as forwardRef31 } from "react";
1534
+ import { jsx as jsx33, jsxs as jsxs17 } from "react/jsx-runtime";
1535
+ var HelpCircleIcon = forwardRef31(
1321
1536
  function HelpCircleIcon2(_a, ref) {
1322
1537
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1323
- return /* @__PURE__ */ jsxs14(
1538
+ return /* @__PURE__ */ jsxs17(
1324
1539
  "svg",
1325
1540
  __spreadProps(__spreadValues({
1326
1541
  ref,
@@ -1332,7 +1547,7 @@ var HelpCircleIcon = forwardRef27(
1332
1547
  className
1333
1548
  }, other), {
1334
1549
  children: [
1335
- duotone && /* @__PURE__ */ jsx28(
1550
+ duotone && /* @__PURE__ */ jsx33(
1336
1551
  "path",
1337
1552
  {
1338
1553
  opacity: "0.12",
@@ -1340,7 +1555,7 @@ var HelpCircleIcon = forwardRef27(
1340
1555
  fill: "currentColor"
1341
1556
  }
1342
1557
  ),
1343
- /* @__PURE__ */ jsx28(
1558
+ /* @__PURE__ */ jsx33(
1344
1559
  "path",
1345
1560
  {
1346
1561
  d: "M9.09 9C9.3251 8.33167 9.78915 7.76811 10.4 7.40913C11.0108 7.05016 11.7289 6.91894 12.4272 7.03871C13.1255 7.15849 13.7588 7.52152 14.2151 8.06353C14.6713 8.60553 14.9211 9.29152 14.92 10C14.92 12 11.92 13 11.92 13M12 17H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
@@ -1357,11 +1572,11 @@ var HelpCircleIcon = forwardRef27(
1357
1572
  );
1358
1573
 
1359
1574
  // src/icons/home.tsx
1360
- import { forwardRef as forwardRef28 } from "react";
1361
- import { jsx as jsx29, jsxs as jsxs15 } from "react/jsx-runtime";
1362
- var HomeIcon = forwardRef28(function HomeIcon2(_a, ref) {
1575
+ import { forwardRef as forwardRef32 } from "react";
1576
+ import { jsx as jsx34, jsxs as jsxs18 } from "react/jsx-runtime";
1577
+ var HomeIcon = forwardRef32(function HomeIcon2(_a, ref) {
1363
1578
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1364
- return /* @__PURE__ */ jsxs15(
1579
+ return /* @__PURE__ */ jsxs18(
1365
1580
  "svg",
1366
1581
  __spreadProps(__spreadValues({
1367
1582
  ref,
@@ -1373,8 +1588,8 @@ var HomeIcon = forwardRef28(function HomeIcon2(_a, ref) {
1373
1588
  className
1374
1589
  }, other), {
1375
1590
  children: [
1376
- duotone && /* @__PURE__ */ jsx29("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
1377
- /* @__PURE__ */ jsx29(
1591
+ duotone && /* @__PURE__ */ jsx34("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
1592
+ /* @__PURE__ */ jsx34(
1378
1593
  "path",
1379
1594
  {
1380
1595
  d: "M9 21V13.6C9 13.0399 9 12.7599 9.10899 12.546C9.20487 12.3578 9.35785 12.2049 9.54601 12.109C9.75992 12 10.0399 12 10.6 12H13.4C13.9601 12 14.2401 12 14.454 12.109C14.6422 12.2049 14.7951 12.3578 14.891 12.546C15 12.7599 15 13.0399 15 13.6V21M11.0177 2.764L4.23539 8.03912C3.78202 8.39175 3.55534 8.56806 3.39203 8.78886C3.24737 8.98444 3.1396 9.20478 3.07403 9.43905C3 9.70352 3 9.9907 3 10.5651V17.8C3 18.9201 3 19.4801 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.07989 21 6.2 21H17.8C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4801 21 18.9201 21 17.8V10.5651C21 9.9907 21 9.70352 20.926 9.43905C20.8604 9.20478 20.7526 8.98444 20.608 8.78886C20.4447 8.56806 20.218 8.39175 19.7646 8.03913L12.9823 2.764C12.631 2.49075 12.4553 2.35412 12.2613 2.3016C12.0902 2.25526 11.9098 2.25526 11.7387 2.3016C11.5447 2.35412 11.369 2.49075 11.0177 2.764Z",
@@ -1390,12 +1605,12 @@ var HomeIcon = forwardRef28(function HomeIcon2(_a, ref) {
1390
1605
  });
1391
1606
 
1392
1607
  // src/icons/image.tsx
1393
- import { forwardRef as forwardRef29 } from "react";
1394
- import { jsx as jsx30, jsxs as jsxs16 } from "react/jsx-runtime";
1395
- var ImageIcon = forwardRef29(
1608
+ import { forwardRef as forwardRef33 } from "react";
1609
+ import { jsx as jsx35, jsxs as jsxs19 } from "react/jsx-runtime";
1610
+ var ImageIcon = forwardRef33(
1396
1611
  function ImageIcon2(_a, ref) {
1397
1612
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1398
- return /* @__PURE__ */ jsxs16(
1613
+ return /* @__PURE__ */ jsxs19(
1399
1614
  "svg",
1400
1615
  __spreadProps(__spreadValues({
1401
1616
  ref,
@@ -1407,15 +1622,15 @@ var ImageIcon = forwardRef29(
1407
1622
  className
1408
1623
  }, other), {
1409
1624
  children: [
1410
- duotone && /* @__PURE__ */ jsxs16("g", { opacity: "0.12", children: [
1411
- /* @__PURE__ */ jsx30(
1625
+ duotone && /* @__PURE__ */ jsxs19("g", { opacity: "0.12", children: [
1626
+ /* @__PURE__ */ jsx35(
1412
1627
  "path",
1413
1628
  {
1414
1629
  d: "M6.36567 19.6343L14.8686 11.1314C15.2646 10.7354 15.4626 10.5373 15.691 10.4632C15.8918 10.3979 16.1082 10.3979 16.309 10.4632C16.5373 10.5373 16.7353 10.7354 17.1314 11.1314L21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9264 20.3854 19.362 20.673C18.7202 21 17.8801 21 16.2 21H6.93136C6.32554 21 6.02264 21 5.88237 20.8802C5.76067 20.7763 5.69608 20.6203 5.70864 20.4608C5.72311 20.2769 5.9373 20.0627 6.36567 19.6343Z",
1415
1630
  fill: "currentColor"
1416
1631
  }
1417
1632
  ),
1418
- /* @__PURE__ */ jsx30(
1633
+ /* @__PURE__ */ jsx35(
1419
1634
  "path",
1420
1635
  {
1421
1636
  d: "M8.49999 10.5C9.60456 10.5 10.5 9.60457 10.5 8.5C10.5 7.39543 9.60456 6.5 8.49999 6.5C7.39542 6.5 6.49999 7.39543 6.49999 8.5C6.49999 9.60457 7.39542 10.5 8.49999 10.5Z",
@@ -1423,7 +1638,7 @@ var ImageIcon = forwardRef29(
1423
1638
  }
1424
1639
  )
1425
1640
  ] }),
1426
- /* @__PURE__ */ jsx30(
1641
+ /* @__PURE__ */ jsx35(
1427
1642
  "path",
1428
1643
  {
1429
1644
  d: "M16.2 21H6.93137C6.32555 21 6.02265 21 5.88238 20.8802C5.76068 20.7763 5.69609 20.6203 5.70865 20.4608C5.72312 20.2769 5.93731 20.0627 6.36569 19.6343L14.8686 11.1314C15.2646 10.7354 15.4627 10.5373 15.691 10.4632C15.8918 10.3979 16.1082 10.3979 16.309 10.4632C16.5373 10.5373 16.7354 10.7354 17.1314 11.1314L21 15V16.2M16.2 21C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2M16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5Z",
@@ -1440,12 +1655,12 @@ var ImageIcon = forwardRef29(
1440
1655
  );
1441
1656
 
1442
1657
  // src/icons/imageDown.tsx
1443
- import { forwardRef as forwardRef30 } from "react";
1444
- import { jsx as jsx31, jsxs as jsxs17 } from "react/jsx-runtime";
1445
- var ImageDownIcon = forwardRef30(
1658
+ import { forwardRef as forwardRef34 } from "react";
1659
+ import { jsx as jsx36, jsxs as jsxs20 } from "react/jsx-runtime";
1660
+ var ImageDownIcon = forwardRef34(
1446
1661
  function ImageDownIcon2(_a, ref) {
1447
1662
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1448
- return /* @__PURE__ */ jsxs17(
1663
+ return /* @__PURE__ */ jsxs20(
1449
1664
  "svg",
1450
1665
  __spreadProps(__spreadValues({
1451
1666
  ref,
@@ -1457,15 +1672,15 @@ var ImageDownIcon = forwardRef30(
1457
1672
  className
1458
1673
  }, other), {
1459
1674
  children: [
1460
- duotone && /* @__PURE__ */ jsxs17("g", { opacity: "0.12", children: [
1461
- /* @__PURE__ */ jsx31(
1675
+ duotone && /* @__PURE__ */ jsxs20("g", { opacity: "0.12", children: [
1676
+ /* @__PURE__ */ jsx36(
1462
1677
  "path",
1463
1678
  {
1464
1679
  d: "M8.50004 10.5C9.60461 10.5 10.5 9.60457 10.5 8.5C10.5 7.39543 9.60461 6.5 8.50004 6.5C7.39547 6.5 6.50004 7.39543 6.50004 8.5C6.50004 9.60457 7.39547 10.5 8.50004 10.5Z",
1465
1680
  fill: "currentColor"
1466
1681
  }
1467
1682
  ),
1468
- /* @__PURE__ */ jsx31(
1683
+ /* @__PURE__ */ jsx36(
1469
1684
  "path",
1470
1685
  {
1471
1686
  d: "M6.53118 19.608L14.9901 11.9181C15.3487 11.5921 15.528 11.4291 15.7326 11.3627C15.9129 11.3041 16.1062 11.298 16.2898 11.3451C16.4982 11.3985 16.6874 11.5499 17.0659 11.8527L19.8631 14.0905C20.2412 14.3929 20.4303 14.5442 20.5733 14.7264C20.753 14.9554 20.8806 15.2208 20.9471 15.5042C21 15.7296 21 15.9717 21 16.456C21 17.8951 21 18.6147 20.7583 19.1799C20.4547 19.8894 19.8895 20.4547 19.18 20.7582C18.6148 21 17.8952 21 16.456 21H7.06932C6.42632 21 6.10481 21 5.96322 20.8755C5.84049 20.7676 5.77822 20.6066 5.79646 20.4442C5.81751 20.2568 6.0554 20.0406 6.53118 19.608Z",
@@ -1473,7 +1688,7 @@ var ImageDownIcon = forwardRef30(
1473
1688
  }
1474
1689
  )
1475
1690
  ] }),
1476
- /* @__PURE__ */ jsx31(
1691
+ /* @__PURE__ */ jsx36(
1477
1692
  "path",
1478
1693
  {
1479
1694
  d: "M16 5L19 8M19 8L22 5M19 8V2M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z",
@@ -1490,12 +1705,12 @@ var ImageDownIcon = forwardRef30(
1490
1705
  );
1491
1706
 
1492
1707
  // src/icons/imageX.tsx
1493
- import { forwardRef as forwardRef31 } from "react";
1494
- import { jsx as jsx32, jsxs as jsxs18 } from "react/jsx-runtime";
1495
- var ImageXIcon = forwardRef31(
1708
+ import { forwardRef as forwardRef35 } from "react";
1709
+ import { jsx as jsx37, jsxs as jsxs21 } from "react/jsx-runtime";
1710
+ var ImageXIcon = forwardRef35(
1496
1711
  function ImageXIcon2(_a, ref) {
1497
1712
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1498
- return /* @__PURE__ */ jsxs18(
1713
+ return /* @__PURE__ */ jsxs21(
1499
1714
  "svg",
1500
1715
  __spreadProps(__spreadValues({
1501
1716
  ref,
@@ -1507,15 +1722,15 @@ var ImageXIcon = forwardRef31(
1507
1722
  className
1508
1723
  }, other), {
1509
1724
  children: [
1510
- duotone && /* @__PURE__ */ jsxs18("g", { opacity: "0.12", children: [
1511
- /* @__PURE__ */ jsx32(
1725
+ duotone && /* @__PURE__ */ jsxs21("g", { opacity: "0.12", children: [
1726
+ /* @__PURE__ */ jsx37(
1512
1727
  "path",
1513
1728
  {
1514
1729
  d: "M8.50016 10.5C9.60473 10.5 10.5002 9.60457 10.5002 8.5C10.5002 7.39543 9.60473 6.5 8.50016 6.5C7.39559 6.5 6.50016 7.39543 6.50016 8.5C6.50016 9.60457 7.39559 10.5 8.50016 10.5Z",
1515
1730
  fill: "currentColor"
1516
1731
  }
1517
1732
  ),
1518
- /* @__PURE__ */ jsx32(
1733
+ /* @__PURE__ */ jsx37(
1519
1734
  "path",
1520
1735
  {
1521
1736
  d: "M6.53131 19.608L14.9902 11.9181C15.3488 11.5921 15.5281 11.4291 15.7327 11.3627C15.913 11.3041 16.1063 11.298 16.29 11.3451C16.4983 11.3985 16.6875 11.5499 17.066 11.8527L19.8632 14.0905C20.2413 14.3929 20.4304 14.5442 20.5734 14.7264C20.7531 14.9554 20.8807 15.2208 20.9472 15.5042C21.0002 15.7296 21.0002 15.9717 21.0002 16.456C21.0002 17.8951 21.0002 18.6147 20.7584 19.1799C20.4549 19.8894 19.8896 20.4547 19.1801 20.7582C18.6149 21 17.8953 21 16.4561 21H7.06944C6.42644 21 6.10494 21 5.96334 20.8755C5.84061 20.7676 5.77835 20.6066 5.79659 20.4442C5.81763 20.2568 6.05552 20.0406 6.53131 19.608Z",
@@ -1523,7 +1738,7 @@ var ImageXIcon = forwardRef31(
1523
1738
  }
1524
1739
  )
1525
1740
  ] }),
1526
- /* @__PURE__ */ jsx32(
1741
+ /* @__PURE__ */ jsx37(
1527
1742
  "path",
1528
1743
  {
1529
1744
  d: "M16.5 2.5L21.5 7.5M21.5 2.5L16.5 7.5M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z",
@@ -1540,12 +1755,12 @@ var ImageXIcon = forwardRef31(
1540
1755
  );
1541
1756
 
1542
1757
  // src/icons/infoCircle.tsx
1543
- import { forwardRef as forwardRef32 } from "react";
1544
- import { jsx as jsx33, jsxs as jsxs19 } from "react/jsx-runtime";
1545
- var InfoCircleIcon = forwardRef32(
1758
+ import { forwardRef as forwardRef36 } from "react";
1759
+ import { jsx as jsx38, jsxs as jsxs22 } from "react/jsx-runtime";
1760
+ var InfoCircleIcon = forwardRef36(
1546
1761
  function InfoCircleIcon2(_a, ref) {
1547
1762
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1548
- return /* @__PURE__ */ jsxs19(
1763
+ return /* @__PURE__ */ jsxs22(
1549
1764
  "svg",
1550
1765
  __spreadProps(__spreadValues({
1551
1766
  ref,
@@ -1557,7 +1772,7 @@ var InfoCircleIcon = forwardRef32(
1557
1772
  className
1558
1773
  }, other), {
1559
1774
  children: [
1560
- duotone && /* @__PURE__ */ jsx33(
1775
+ duotone && /* @__PURE__ */ jsx38(
1561
1776
  "path",
1562
1777
  {
1563
1778
  opacity: "0.12",
@@ -1565,7 +1780,7 @@ var InfoCircleIcon = forwardRef32(
1565
1780
  fill: "currentColor"
1566
1781
  }
1567
1782
  ),
1568
- /* @__PURE__ */ jsx33(
1783
+ /* @__PURE__ */ jsx38(
1569
1784
  "path",
1570
1785
  {
1571
1786
  d: "M12 16V12M12 8H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
@@ -1582,12 +1797,12 @@ var InfoCircleIcon = forwardRef32(
1582
1797
  );
1583
1798
 
1584
1799
  // src/icons/lightbulb.tsx
1585
- import { forwardRef as forwardRef33 } from "react";
1586
- import { jsx as jsx34, jsxs as jsxs20 } from "react/jsx-runtime";
1587
- var LightbulbIcon = forwardRef33(
1800
+ import { forwardRef as forwardRef37 } from "react";
1801
+ import { jsx as jsx39, jsxs as jsxs23 } from "react/jsx-runtime";
1802
+ var LightbulbIcon = forwardRef37(
1588
1803
  function LightbulbIcon2(_a, ref) {
1589
1804
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1590
- return /* @__PURE__ */ jsxs20(
1805
+ return /* @__PURE__ */ jsxs23(
1591
1806
  "svg",
1592
1807
  __spreadProps(__spreadValues({
1593
1808
  ref,
@@ -1599,7 +1814,7 @@ var LightbulbIcon = forwardRef33(
1599
1814
  className
1600
1815
  }, other), {
1601
1816
  children: [
1602
- duotone && /* @__PURE__ */ jsx34(
1817
+ duotone && /* @__PURE__ */ jsx39(
1603
1818
  "path",
1604
1819
  {
1605
1820
  opacity: "0.12",
@@ -1607,7 +1822,7 @@ var LightbulbIcon = forwardRef33(
1607
1822
  fill: "currentColor"
1608
1823
  }
1609
1824
  ),
1610
- /* @__PURE__ */ jsx34(
1825
+ /* @__PURE__ */ jsx39(
1611
1826
  "path",
1612
1827
  {
1613
1828
  d: "M9.5 22H14.5M10 10H14M12 10L12 16M15 15.3264C17.3649 14.2029 19 11.7924 19 9C19 5.13401 15.866 2 12 2C8.13401 2 5 5.13401 5 9C5 11.7924 6.63505 14.2029 9 15.3264V16C9 16.9319 9 17.3978 9.15224 17.7654C9.35523 18.2554 9.74458 18.6448 10.2346 18.8478C10.6022 19 11.0681 19 12 19C12.9319 19 13.3978 19 13.7654 18.8478C14.2554 18.6448 14.6448 18.2554 14.8478 17.7654C15 17.3978 15 16.9319 15 16V15.3264Z",
@@ -1623,12 +1838,42 @@ var LightbulbIcon = forwardRef33(
1623
1838
  }
1624
1839
  );
1625
1840
 
1841
+ // src/icons/link.tsx
1842
+ import { forwardRef as forwardRef38 } from "react";
1843
+ import { jsx as jsx40 } from "react/jsx-runtime";
1844
+ var LinkIcon = forwardRef38(function LinkIcon2(_a, ref) {
1845
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1846
+ return /* @__PURE__ */ jsx40(
1847
+ "svg",
1848
+ __spreadProps(__spreadValues({
1849
+ ref,
1850
+ width: size,
1851
+ height: size,
1852
+ viewBox: "0 0 24 24",
1853
+ fill: "none",
1854
+ xmlns: "http://www.w3.org/2000/svg",
1855
+ className
1856
+ }, other), {
1857
+ children: /* @__PURE__ */ jsx40(
1858
+ "path",
1859
+ {
1860
+ d: "M12.7076 18.3639L11.2933 19.7781C9.34072 21.7308 6.1749 21.7308 4.22228 19.7781C2.26966 17.8255 2.26966 14.6597 4.22228 12.7071L5.63649 11.2929M18.3644 12.7071L19.7786 11.2929C21.7312 9.34024 21.7312 6.17441 19.7786 4.22179C17.826 2.26917 14.6602 2.26917 12.7076 4.22179L11.2933 5.636M8.50045 15.4999L15.5005 8.49994",
1861
+ stroke: "currentColor",
1862
+ strokeWidth: "2",
1863
+ strokeLinecap: "round",
1864
+ strokeLinejoin: "round"
1865
+ }
1866
+ )
1867
+ })
1868
+ );
1869
+ });
1870
+
1626
1871
  // src/icons/lock.tsx
1627
- import { forwardRef as forwardRef34 } from "react";
1628
- import { jsx as jsx35, jsxs as jsxs21 } from "react/jsx-runtime";
1629
- var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
1872
+ import { forwardRef as forwardRef39 } from "react";
1873
+ import { jsx as jsx41, jsxs as jsxs24 } from "react/jsx-runtime";
1874
+ var LockIcon = forwardRef39(function LockIcon2(_a, ref) {
1630
1875
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1631
- return /* @__PURE__ */ jsxs21(
1876
+ return /* @__PURE__ */ jsxs24(
1632
1877
  "svg",
1633
1878
  __spreadProps(__spreadValues({
1634
1879
  ref,
@@ -1640,7 +1885,7 @@ var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
1640
1885
  className
1641
1886
  }, other), {
1642
1887
  children: [
1643
- duotone && /* @__PURE__ */ jsx35(
1888
+ duotone && /* @__PURE__ */ jsx41(
1644
1889
  "path",
1645
1890
  {
1646
1891
  opacity: "0.12",
@@ -1648,7 +1893,7 @@ var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
1648
1893
  fill: "currentColor"
1649
1894
  }
1650
1895
  ),
1651
- /* @__PURE__ */ jsx35(
1896
+ /* @__PURE__ */ jsx41(
1652
1897
  "path",
1653
1898
  {
1654
1899
  d: "M17 10V8C17 5.23858 14.7614 3 12 3C9.23858 3 7 5.23858 7 8V10M12 14.5V16.5M8.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V14.8C20 13.1198 20 12.2798 19.673 11.638C19.3854 11.0735 18.9265 10.6146 18.362 10.327C17.7202 10 16.8802 10 15.2 10H8.8C7.11984 10 6.27976 10 5.63803 10.327C5.07354 10.6146 4.6146 11.0735 4.32698 11.638C4 12.2798 4 13.1198 4 14.8V16.2C4 17.8802 4 18.7202 4.32698 19.362C4.6146 19.9265 5.07354 20.3854 5.63803 20.673C6.27976 21 7.11984 21 8.8 21Z",
@@ -1664,12 +1909,12 @@ var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
1664
1909
  });
1665
1910
 
1666
1911
  // src/icons/logIn.tsx
1667
- import { forwardRef as forwardRef35 } from "react";
1668
- import { jsx as jsx36, jsxs as jsxs22 } from "react/jsx-runtime";
1669
- var LogInIcon = forwardRef35(
1912
+ import { forwardRef as forwardRef40 } from "react";
1913
+ import { jsx as jsx42, jsxs as jsxs25 } from "react/jsx-runtime";
1914
+ var LogInIcon = forwardRef40(
1670
1915
  function LogInIcon2(_a, ref) {
1671
1916
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1672
- return /* @__PURE__ */ jsxs22(
1917
+ return /* @__PURE__ */ jsxs25(
1673
1918
  "svg",
1674
1919
  __spreadProps(__spreadValues({
1675
1920
  ref,
@@ -1681,7 +1926,7 @@ var LogInIcon = forwardRef35(
1681
1926
  className
1682
1927
  }, other), {
1683
1928
  children: [
1684
- duotone && /* @__PURE__ */ jsx36(
1929
+ duotone && /* @__PURE__ */ jsx42(
1685
1930
  "path",
1686
1931
  {
1687
1932
  opacity: "0.12",
@@ -1689,7 +1934,7 @@ var LogInIcon = forwardRef35(
1689
1934
  fill: "currentColor"
1690
1935
  }
1691
1936
  ),
1692
- /* @__PURE__ */ jsx36(
1937
+ /* @__PURE__ */ jsx42(
1693
1938
  "path",
1694
1939
  {
1695
1940
  d: "M6 17C6 17.93 6 18.395 6.10222 18.7765C6.37962 19.8117 7.18827 20.6204 8.22354 20.8978C8.60504 21 9.07003 21 10 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H10C9.07003 3 8.60504 3 8.22354 3.10222C7.18827 3.37962 6.37962 4.18827 6.10222 5.22354C6 5.60504 6 6.07003 6 7M12 8L16 12M16 12L12 16M16 12H3",
@@ -1706,12 +1951,12 @@ var LogInIcon = forwardRef35(
1706
1951
  );
1707
1952
 
1708
1953
  // src/icons/magicWand.tsx
1709
- import { forwardRef as forwardRef36 } from "react";
1710
- import { jsx as jsx37, jsxs as jsxs23 } from "react/jsx-runtime";
1711
- var MagicWandIcon = forwardRef36(
1954
+ import { forwardRef as forwardRef41 } from "react";
1955
+ import { jsx as jsx43, jsxs as jsxs26 } from "react/jsx-runtime";
1956
+ var MagicWandIcon = forwardRef41(
1712
1957
  function MagicWandIcon2(_a, ref) {
1713
1958
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1714
- return /* @__PURE__ */ jsxs23(
1959
+ return /* @__PURE__ */ jsxs26(
1715
1960
  "svg",
1716
1961
  __spreadProps(__spreadValues({
1717
1962
  ref,
@@ -1723,7 +1968,7 @@ var MagicWandIcon = forwardRef36(
1723
1968
  className
1724
1969
  }, other), {
1725
1970
  children: [
1726
- duotone && /* @__PURE__ */ jsx37(
1971
+ duotone && /* @__PURE__ */ jsx43(
1727
1972
  "path",
1728
1973
  {
1729
1974
  opacity: "0.12",
@@ -1731,7 +1976,7 @@ var MagicWandIcon = forwardRef36(
1731
1976
  fill: "currentColor"
1732
1977
  }
1733
1978
  ),
1734
- /* @__PURE__ */ jsx37(
1979
+ /* @__PURE__ */ jsx43(
1735
1980
  "path",
1736
1981
  {
1737
1982
  d: "M13 14L9.99997 11M15.0103 3.5V2M18.9497 5.06066L20.0103 4M18.9497 13L20.0103 14.0607M11.0103 5.06066L9.94966 4M20.5103 9H22.0103M6.13134 20.8686L15.3686 11.6314C15.7646 11.2354 15.9626 11.0373 16.0368 10.809C16.1021 10.6082 16.1021 10.3918 16.0368 10.191C15.9626 9.96265 15.7646 9.76465 15.3686 9.36863L14.6313 8.63137C14.2353 8.23535 14.0373 8.03735 13.809 7.96316C13.6081 7.8979 13.3918 7.8979 13.191 7.96316C12.9626 8.03735 12.7646 8.23535 12.3686 8.63137L3.13134 17.8686C2.73532 18.2646 2.53732 18.4627 2.46313 18.691C2.39787 18.8918 2.39787 19.1082 2.46313 19.309C2.53732 19.5373 2.73533 19.7354 3.13134 20.1314L3.8686 20.8686C4.26462 21.2646 4.46263 21.4627 4.69095 21.5368C4.8918 21.6021 5.10814 21.6021 5.30899 21.5368C5.53732 21.4627 5.73533 21.2646 6.13134 20.8686Z",
@@ -1748,11 +1993,11 @@ var MagicWandIcon = forwardRef36(
1748
1993
  );
1749
1994
 
1750
1995
  // src/icons/mail.tsx
1751
- import { forwardRef as forwardRef37 } from "react";
1752
- import { jsx as jsx38, jsxs as jsxs24 } from "react/jsx-runtime";
1753
- var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
1996
+ import { forwardRef as forwardRef42 } from "react";
1997
+ import { jsx as jsx44, jsxs as jsxs27 } from "react/jsx-runtime";
1998
+ var MailIcon = forwardRef42(function MailIcon2(_a, ref) {
1754
1999
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1755
- return /* @__PURE__ */ jsxs24(
2000
+ return /* @__PURE__ */ jsxs27(
1756
2001
  "svg",
1757
2002
  __spreadProps(__spreadValues({
1758
2003
  ref,
@@ -1764,7 +2009,7 @@ var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
1764
2009
  className
1765
2010
  }, other), {
1766
2011
  children: [
1767
- duotone && /* @__PURE__ */ jsx38(
2012
+ duotone && /* @__PURE__ */ jsx44(
1768
2013
  "path",
1769
2014
  {
1770
2015
  opacity: "0.12",
@@ -1772,7 +2017,7 @@ var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
1772
2017
  fill: "currentColor"
1773
2018
  }
1774
2019
  ),
1775
- /* @__PURE__ */ jsx38(
2020
+ /* @__PURE__ */ jsx44(
1776
2021
  "path",
1777
2022
  {
1778
2023
  d: "M2 7L10.1649 12.7154C10.8261 13.1783 11.1567 13.4097 11.5163 13.4993C11.8339 13.5785 12.1661 13.5785 12.4837 13.4993C12.8433 13.4097 13.1739 13.1783 13.8351 12.7154L22 7M6.8 20H17.2C18.8802 20 19.7202 20 20.362 19.673C20.9265 19.3854 21.3854 18.9265 21.673 18.362C22 17.7202 22 16.8802 22 15.2V8.8C22 7.11984 22 6.27976 21.673 5.63803C21.3854 5.07354 20.9265 4.6146 20.362 4.32698C19.7202 4 18.8802 4 17.2 4H6.8C5.11984 4 4.27976 4 3.63803 4.32698C3.07354 4.6146 2.6146 5.07354 2.32698 5.63803C2 6.27976 2 7.11984 2 8.8V15.2C2 16.8802 2 17.7202 2.32698 18.362C2.6146 18.9265 3.07354 19.3854 3.63803 19.673C4.27976 20 5.11984 20 6.8 20Z",
@@ -1788,11 +2033,11 @@ var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
1788
2033
  });
1789
2034
 
1790
2035
  // src/icons/menu.tsx
1791
- import { forwardRef as forwardRef38 } from "react";
1792
- import { jsx as jsx39 } from "react/jsx-runtime";
1793
- var MenuIcon = forwardRef38(function MenuIcon2(_a, ref) {
2036
+ import { forwardRef as forwardRef43 } from "react";
2037
+ import { jsx as jsx45 } from "react/jsx-runtime";
2038
+ var MenuIcon = forwardRef43(function MenuIcon2(_a, ref) {
1794
2039
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1795
- return /* @__PURE__ */ jsx39(
2040
+ return /* @__PURE__ */ jsx45(
1796
2041
  "svg",
1797
2042
  __spreadProps(__spreadValues({
1798
2043
  ref,
@@ -1803,7 +2048,7 @@ var MenuIcon = forwardRef38(function MenuIcon2(_a, ref) {
1803
2048
  xmlns: "http://www.w3.org/2000/svg",
1804
2049
  className
1805
2050
  }, other), {
1806
- children: /* @__PURE__ */ jsx39(
2051
+ children: /* @__PURE__ */ jsx45(
1807
2052
  "path",
1808
2053
  {
1809
2054
  d: "M3 12H21M3 6H21M3 18H21",
@@ -1818,12 +2063,12 @@ var MenuIcon = forwardRef38(function MenuIcon2(_a, ref) {
1818
2063
  });
1819
2064
 
1820
2065
  // src/icons/messageChatSquare.tsx
1821
- import { forwardRef as forwardRef39 } from "react";
1822
- import { jsx as jsx40, jsxs as jsxs25 } from "react/jsx-runtime";
1823
- var MessageChatSquareIcon = forwardRef39(
2066
+ import { forwardRef as forwardRef44 } from "react";
2067
+ import { jsx as jsx46, jsxs as jsxs28 } from "react/jsx-runtime";
2068
+ var MessageChatSquareIcon = forwardRef44(
1824
2069
  function MessageChatSquareIcon2(_a, ref) {
1825
2070
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1826
- return /* @__PURE__ */ jsxs25(
2071
+ return /* @__PURE__ */ jsxs28(
1827
2072
  "svg",
1828
2073
  __spreadProps(__spreadValues({
1829
2074
  ref,
@@ -1835,7 +2080,7 @@ var MessageChatSquareIcon = forwardRef39(
1835
2080
  className
1836
2081
  }, other), {
1837
2082
  children: [
1838
- duotone && /* @__PURE__ */ jsx40(
2083
+ duotone && /* @__PURE__ */ jsx46(
1839
2084
  "path",
1840
2085
  {
1841
2086
  opacity: "0.12",
@@ -1843,7 +2088,7 @@ var MessageChatSquareIcon = forwardRef39(
1843
2088
  fill: "currentColor"
1844
2089
  }
1845
2090
  ),
1846
- /* @__PURE__ */ jsx40(
2091
+ /* @__PURE__ */ jsx46(
1847
2092
  "path",
1848
2093
  {
1849
2094
  d: "M10 15L6.92474 18.1137C6.49579 18.548 6.28131 18.7652 6.09695 18.7805C5.93701 18.7938 5.78042 18.7295 5.67596 18.6076C5.55556 18.4672 5.55556 18.162 5.55556 17.5515V15.9916C5.55556 15.444 5.10707 15.0477 4.5652 14.9683V14.9683C3.25374 14.7762 2.22378 13.7463 2.03168 12.4348C2 12.2186 2 11.9605 2 11.4444V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H14.2C15.8802 2 16.7202 2 17.362 2.32698C17.9265 2.6146 18.3854 3.07354 18.673 3.63803C19 4.27976 19 5.11984 19 6.8V11M19 22L16.8236 20.4869C16.5177 20.2742 16.3647 20.1678 16.1982 20.0924C16.0504 20.0255 15.8951 19.9768 15.7356 19.9474C15.5558 19.9143 15.3695 19.9143 14.9969 19.9143H13.2C12.0799 19.9143 11.5198 19.9143 11.092 19.6963C10.7157 19.5046 10.4097 19.1986 10.218 18.8223C10 18.3944 10 17.8344 10 16.7143V14.2C10 13.0799 10 12.5198 10.218 12.092C10.4097 11.7157 10.7157 11.4097 11.092 11.218C11.5198 11 12.0799 11 13.2 11H18.8C19.9201 11 20.4802 11 20.908 11.218C21.2843 11.4097 21.5903 11.7157 21.782 12.092C22 12.5198 22 13.0799 22 14.2V16.9143C22 17.8462 22 18.3121 21.8478 18.6797C21.6448 19.1697 21.2554 19.5591 20.7654 19.762C20.3978 19.9143 19.9319 19.9143 19 19.9143V22Z",
@@ -1860,12 +2105,12 @@ var MessageChatSquareIcon = forwardRef39(
1860
2105
  );
1861
2106
 
1862
2107
  // src/icons/messagePlusSquare.tsx
1863
- import { forwardRef as forwardRef40 } from "react";
1864
- import { jsx as jsx41, jsxs as jsxs26 } from "react/jsx-runtime";
1865
- var MessagePlusSquareIcon = forwardRef40(
2108
+ import { forwardRef as forwardRef45 } from "react";
2109
+ import { jsx as jsx47, jsxs as jsxs29 } from "react/jsx-runtime";
2110
+ var MessagePlusSquareIcon = forwardRef45(
1866
2111
  function MessagePlusSquareIcon2(_a, ref) {
1867
2112
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1868
- return /* @__PURE__ */ jsxs26(
2113
+ return /* @__PURE__ */ jsxs29(
1869
2114
  "svg",
1870
2115
  __spreadProps(__spreadValues({
1871
2116
  ref,
@@ -1877,7 +2122,7 @@ var MessagePlusSquareIcon = forwardRef40(
1877
2122
  className
1878
2123
  }, other), {
1879
2124
  children: [
1880
- duotone && /* @__PURE__ */ jsx41(
2125
+ duotone && /* @__PURE__ */ jsx47(
1881
2126
  "path",
1882
2127
  {
1883
2128
  opacity: "0.12",
@@ -1885,7 +2130,7 @@ var MessagePlusSquareIcon = forwardRef40(
1885
2130
  fill: "currentColor"
1886
2131
  }
1887
2132
  ),
1888
- /* @__PURE__ */ jsx41(
2133
+ /* @__PURE__ */ jsx47(
1889
2134
  "path",
1890
2135
  {
1891
2136
  d: "M12 13.5V7.5M9 10.5H15M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z",
@@ -1902,12 +2147,12 @@ var MessagePlusSquareIcon = forwardRef40(
1902
2147
  );
1903
2148
 
1904
2149
  // src/icons/messageTextSquare.tsx
1905
- import { forwardRef as forwardRef41 } from "react";
1906
- import { jsx as jsx42, jsxs as jsxs27 } from "react/jsx-runtime";
1907
- var MessageTextSquareIcon = forwardRef41(
2150
+ import { forwardRef as forwardRef46 } from "react";
2151
+ import { jsx as jsx48, jsxs as jsxs30 } from "react/jsx-runtime";
2152
+ var MessageTextSquareIcon = forwardRef46(
1908
2153
  function MessageTextSquareIcon2(_a, ref) {
1909
2154
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1910
- return /* @__PURE__ */ jsxs27(
2155
+ return /* @__PURE__ */ jsxs30(
1911
2156
  "svg",
1912
2157
  __spreadProps(__spreadValues({
1913
2158
  ref,
@@ -1919,7 +2164,7 @@ var MessageTextSquareIcon = forwardRef41(
1919
2164
  className
1920
2165
  }, other), {
1921
2166
  children: [
1922
- duotone && /* @__PURE__ */ jsx42(
2167
+ duotone && /* @__PURE__ */ jsx48(
1923
2168
  "path",
1924
2169
  {
1925
2170
  opacity: "0.12",
@@ -1927,7 +2172,7 @@ var MessageTextSquareIcon = forwardRef41(
1927
2172
  fill: "currentColor"
1928
2173
  }
1929
2174
  ),
1930
- /* @__PURE__ */ jsx42(
2175
+ /* @__PURE__ */ jsx48(
1931
2176
  "path",
1932
2177
  {
1933
2178
  d: "M7 8.5H12M7 12H15M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z",
@@ -1944,12 +2189,12 @@ var MessageTextSquareIcon = forwardRef41(
1944
2189
  );
1945
2190
 
1946
2191
  // src/icons/microphone.tsx
1947
- import { forwardRef as forwardRef42 } from "react";
1948
- import { jsx as jsx43, jsxs as jsxs28 } from "react/jsx-runtime";
1949
- var MicrophoneIcon = forwardRef42(
2192
+ import { forwardRef as forwardRef47 } from "react";
2193
+ import { jsx as jsx49, jsxs as jsxs31 } from "react/jsx-runtime";
2194
+ var MicrophoneIcon = forwardRef47(
1950
2195
  function MicrophoneIcon2(_a, ref) {
1951
2196
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1952
- return /* @__PURE__ */ jsxs28(
2197
+ return /* @__PURE__ */ jsxs31(
1953
2198
  "svg",
1954
2199
  __spreadProps(__spreadValues({
1955
2200
  ref,
@@ -1961,7 +2206,7 @@ var MicrophoneIcon = forwardRef42(
1961
2206
  className
1962
2207
  }, other), {
1963
2208
  children: [
1964
- duotone && /* @__PURE__ */ jsx43(
2209
+ duotone && /* @__PURE__ */ jsx49(
1965
2210
  "path",
1966
2211
  {
1967
2212
  opacity: "0.12",
@@ -1969,7 +2214,7 @@ var MicrophoneIcon = forwardRef42(
1969
2214
  fill: "currentColor"
1970
2215
  }
1971
2216
  ),
1972
- /* @__PURE__ */ jsx43(
2217
+ /* @__PURE__ */ jsx49(
1973
2218
  "path",
1974
2219
  {
1975
2220
  d: "M19 10V12C19 15.866 15.866 19 12 19M5 10V12C5 15.866 8.13401 19 12 19M12 19V22M8 22H16M12 15C10.3431 15 9 13.6569 9 12V5C9 3.34315 10.3431 2 12 2C13.6569 2 15 3.34315 15 5V12C15 13.6569 13.6569 15 12 15Z",
@@ -1986,12 +2231,12 @@ var MicrophoneIcon = forwardRef42(
1986
2231
  );
1987
2232
 
1988
2233
  // src/icons/microphoneOff.tsx
1989
- import { forwardRef as forwardRef43 } from "react";
1990
- import { jsx as jsx44, jsxs as jsxs29 } from "react/jsx-runtime";
1991
- var MicrophoneOffIcon = forwardRef43(
2234
+ import { forwardRef as forwardRef48 } from "react";
2235
+ import { jsx as jsx50, jsxs as jsxs32 } from "react/jsx-runtime";
2236
+ var MicrophoneOffIcon = forwardRef48(
1992
2237
  function MicrophoneOffIcon2(_a, ref) {
1993
2238
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1994
- return /* @__PURE__ */ jsxs29(
2239
+ return /* @__PURE__ */ jsxs32(
1995
2240
  "svg",
1996
2241
  __spreadProps(__spreadValues({
1997
2242
  ref,
@@ -2003,7 +2248,7 @@ var MicrophoneOffIcon = forwardRef43(
2003
2248
  className
2004
2249
  }, other), {
2005
2250
  children: [
2006
- duotone && /* @__PURE__ */ jsx44(
2251
+ duotone && /* @__PURE__ */ jsx50(
2007
2252
  "path",
2008
2253
  {
2009
2254
  opacity: "0.12",
@@ -2011,7 +2256,7 @@ var MicrophoneOffIcon = forwardRef43(
2011
2256
  fill: "currentColor"
2012
2257
  }
2013
2258
  ),
2014
- /* @__PURE__ */ jsx44(
2259
+ /* @__PURE__ */ jsx50(
2015
2260
  "path",
2016
2261
  {
2017
2262
  d: "M15 9.4V5C15 3.34315 13.6569 2 12 2C10.8224 2 9.80325 2.67852 9.3122 3.66593M12 19V22M12 19C8.13401 19 5 15.866 5 12V10M12 19C15.866 19 19 15.866 19 12V10M8 22H16M2 2L22 22M12 15C10.3431 15 9 13.6569 9 12V9L14.1226 14.12C13.5796 14.6637 12.8291 15 12 15Z",
@@ -2028,12 +2273,12 @@ var MicrophoneOffIcon = forwardRef43(
2028
2273
  );
2029
2274
 
2030
2275
  // src/icons/monitor.tsx
2031
- import { forwardRef as forwardRef44 } from "react";
2032
- import { jsx as jsx45, jsxs as jsxs30 } from "react/jsx-runtime";
2033
- var MonitorIcon = forwardRef44(
2276
+ import { forwardRef as forwardRef49 } from "react";
2277
+ import { jsx as jsx51, jsxs as jsxs33 } from "react/jsx-runtime";
2278
+ var MonitorIcon = forwardRef49(
2034
2279
  function MonitorIcon2(_a, ref) {
2035
2280
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2036
- return /* @__PURE__ */ jsxs30(
2281
+ return /* @__PURE__ */ jsxs33(
2037
2282
  "svg",
2038
2283
  __spreadProps(__spreadValues({
2039
2284
  ref,
@@ -2045,7 +2290,7 @@ var MonitorIcon = forwardRef44(
2045
2290
  className
2046
2291
  }, other), {
2047
2292
  children: [
2048
- duotone && /* @__PURE__ */ jsx45(
2293
+ duotone && /* @__PURE__ */ jsx51(
2049
2294
  "path",
2050
2295
  {
2051
2296
  opacity: "0.12",
@@ -2053,7 +2298,7 @@ var MonitorIcon = forwardRef44(
2053
2298
  fill: "currentColor"
2054
2299
  }
2055
2300
  ),
2056
- /* @__PURE__ */ jsx45(
2301
+ /* @__PURE__ */ jsx51(
2057
2302
  "path",
2058
2303
  {
2059
2304
  d: "M7.57181 21C8.90661 20.3598 10.41 20 12 20C13.59 20 15.0934 20.3598 16.4282 21M6.8 17H17.2C18.8802 17 19.7202 17 20.362 16.673C20.9265 16.3854 21.3854 15.9265 21.673 15.362C22 14.7202 22 13.8802 22 12.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V12.2C2 13.8802 2 14.7202 2.32698 15.362C2.6146 15.9265 3.07354 16.3854 3.63803 16.673C4.27976 17 5.11984 17 6.8 17Z",
@@ -2070,12 +2315,12 @@ var MonitorIcon = forwardRef44(
2070
2315
  );
2071
2316
 
2072
2317
  // src/icons/notificationBox.tsx
2073
- import { forwardRef as forwardRef45 } from "react";
2074
- import { jsx as jsx46, jsxs as jsxs31 } from "react/jsx-runtime";
2075
- var NotificationBoxIcon = forwardRef45(
2318
+ import { forwardRef as forwardRef50 } from "react";
2319
+ import { jsx as jsx52, jsxs as jsxs34 } from "react/jsx-runtime";
2320
+ var NotificationBoxIcon = forwardRef50(
2076
2321
  function NotificationBoxIcon2(_a, ref) {
2077
2322
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2078
- return /* @__PURE__ */ jsxs31(
2323
+ return /* @__PURE__ */ jsxs34(
2079
2324
  "svg",
2080
2325
  __spreadProps(__spreadValues({
2081
2326
  ref,
@@ -2087,7 +2332,7 @@ var NotificationBoxIcon = forwardRef45(
2087
2332
  className
2088
2333
  }, other), {
2089
2334
  children: [
2090
- duotone && /* @__PURE__ */ jsx46(
2335
+ duotone && /* @__PURE__ */ jsx52(
2091
2336
  "path",
2092
2337
  {
2093
2338
  opacity: "0.12",
@@ -2095,10 +2340,52 @@ var NotificationBoxIcon = forwardRef45(
2095
2340
  fill: "currentColor"
2096
2341
  }
2097
2342
  ),
2098
- /* @__PURE__ */ jsx46(
2343
+ /* @__PURE__ */ jsx52(
2344
+ "path",
2345
+ {
2346
+ d: "M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V13M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z",
2347
+ stroke: "currentColor",
2348
+ strokeWidth: "2",
2349
+ strokeLinecap: "round",
2350
+ strokeLinejoin: "round"
2351
+ }
2352
+ )
2353
+ ]
2354
+ })
2355
+ );
2356
+ }
2357
+ );
2358
+
2359
+ // src/icons/pauseCircle.tsx
2360
+ import { forwardRef as forwardRef51 } from "react";
2361
+ import { jsx as jsx53, jsxs as jsxs35 } from "react/jsx-runtime";
2362
+ var PauseCircleIcon = forwardRef51(
2363
+ function PauseCircleIcon2(_a, ref) {
2364
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2365
+ return /* @__PURE__ */ jsxs35(
2366
+ "svg",
2367
+ __spreadProps(__spreadValues({
2368
+ ref,
2369
+ width: size,
2370
+ height: size,
2371
+ viewBox: "0 0 24 24",
2372
+ fill: "none",
2373
+ xmlns: "http://www.w3.org/2000/svg",
2374
+ className
2375
+ }, other), {
2376
+ children: [
2377
+ duotone && /* @__PURE__ */ jsx53(
2378
+ "path",
2379
+ {
2380
+ opacity: "0.12",
2381
+ d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
2382
+ fill: "currentColor"
2383
+ }
2384
+ ),
2385
+ /* @__PURE__ */ jsx53(
2099
2386
  "path",
2100
2387
  {
2101
- d: "M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V13M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z",
2388
+ d: "M9.5 15V9M14.5 15V9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
2102
2389
  stroke: "currentColor",
2103
2390
  strokeWidth: "2",
2104
2391
  strokeLinecap: "round",
@@ -2111,13 +2398,13 @@ var NotificationBoxIcon = forwardRef45(
2111
2398
  }
2112
2399
  );
2113
2400
 
2114
- // src/icons/pauseCircle.tsx
2115
- import { forwardRef as forwardRef46 } from "react";
2116
- import { jsx as jsx47, jsxs as jsxs32 } from "react/jsx-runtime";
2117
- var PauseCircleIcon = forwardRef46(
2118
- function PauseCircleIcon2(_a, ref) {
2401
+ // src/icons/phone.tsx
2402
+ import { forwardRef as forwardRef52 } from "react";
2403
+ import { jsx as jsx54, jsxs as jsxs36 } from "react/jsx-runtime";
2404
+ var PhoneIcon = forwardRef52(
2405
+ function PhoneIcon2(_a, ref) {
2119
2406
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2120
- return /* @__PURE__ */ jsxs32(
2407
+ return /* @__PURE__ */ jsxs36(
2121
2408
  "svg",
2122
2409
  __spreadProps(__spreadValues({
2123
2410
  ref,
@@ -2129,18 +2416,18 @@ var PauseCircleIcon = forwardRef46(
2129
2416
  className
2130
2417
  }, other), {
2131
2418
  children: [
2132
- duotone && /* @__PURE__ */ jsx47(
2419
+ duotone && /* @__PURE__ */ jsx54(
2133
2420
  "path",
2134
2421
  {
2135
2422
  opacity: "0.12",
2136
- d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
2423
+ d: "M5 5.2C5 4.0799 5 3.51984 5.21799 3.09202C5.40973 2.71569 5.71569 2.40973 6.09202 2.21799C6.51984 2 7.0799 2 8.2 2H15.8C16.9201 2 17.4802 2 17.908 2.21799C18.2843 2.40973 18.5903 2.71569 18.782 3.09202C19 3.51984 19 4.07989 19 5.2V18.8C19 19.9201 19 20.4802 18.782 20.908C18.5903 21.2843 18.2843 21.5903 17.908 21.782C17.4802 22 16.9201 22 15.8 22H8.2C7.0799 22 6.51984 22 6.09202 21.782C5.71569 21.5903 5.40973 21.2843 5.21799 20.908C5 20.4802 5 19.9201 5 18.8V5.2Z",
2137
2424
  fill: "currentColor"
2138
2425
  }
2139
2426
  ),
2140
- /* @__PURE__ */ jsx47(
2427
+ /* @__PURE__ */ jsx54(
2141
2428
  "path",
2142
2429
  {
2143
- d: "M9.5 15V9M14.5 15V9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
2430
+ d: "M12 17.5H12.01M8.2 22H15.8C16.9201 22 17.4802 22 17.908 21.782C18.2843 21.5903 18.5903 21.2843 18.782 20.908C19 20.4802 19 19.9201 19 18.8V5.2C19 4.07989 19 3.51984 18.782 3.09202C18.5903 2.71569 18.2843 2.40973 17.908 2.21799C17.4802 2 16.9201 2 15.8 2H8.2C7.0799 2 6.51984 2 6.09202 2.21799C5.71569 2.40973 5.40973 2.71569 5.21799 3.09202C5 3.51984 5 4.0799 5 5.2V18.8C5 19.9201 5 20.4802 5.21799 20.908C5.40973 21.2843 5.71569 21.5903 6.09202 21.782C6.51984 22 7.07989 22 8.2 22ZM12.5 17.5C12.5 17.7761 12.2761 18 12 18C11.7239 18 11.5 17.7761 11.5 17.5C11.5 17.2239 11.7239 17 12 17C12.2761 17 12.5 17.2239 12.5 17.5Z",
2144
2431
  stroke: "currentColor",
2145
2432
  strokeWidth: "2",
2146
2433
  strokeLinecap: "round",
@@ -2153,13 +2440,13 @@ var PauseCircleIcon = forwardRef46(
2153
2440
  }
2154
2441
  );
2155
2442
 
2156
- // src/icons/phone.tsx
2157
- import { forwardRef as forwardRef47 } from "react";
2158
- import { jsx as jsx48, jsxs as jsxs33 } from "react/jsx-runtime";
2159
- var PhoneIcon = forwardRef47(
2160
- function PhoneIcon2(_a, ref) {
2443
+ // src/icons/phoneCall.tsx
2444
+ import { forwardRef as forwardRef53 } from "react";
2445
+ import { jsx as jsx55, jsxs as jsxs37 } from "react/jsx-runtime";
2446
+ var PhoneCallIcon = forwardRef53(
2447
+ function PhoneCallIcon2(_a, ref) {
2161
2448
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2162
- return /* @__PURE__ */ jsxs33(
2449
+ return /* @__PURE__ */ jsxs37(
2163
2450
  "svg",
2164
2451
  __spreadProps(__spreadValues({
2165
2452
  ref,
@@ -2171,18 +2458,18 @@ var PhoneIcon = forwardRef47(
2171
2458
  className
2172
2459
  }, other), {
2173
2460
  children: [
2174
- duotone && /* @__PURE__ */ jsx48(
2461
+ duotone && /* @__PURE__ */ jsx55(
2175
2462
  "path",
2176
2463
  {
2177
2464
  opacity: "0.12",
2178
- d: "M5 5.2C5 4.0799 5 3.51984 5.21799 3.09202C5.40973 2.71569 5.71569 2.40973 6.09202 2.21799C6.51984 2 7.0799 2 8.2 2H15.8C16.9201 2 17.4802 2 17.908 2.21799C18.2843 2.40973 18.5903 2.71569 18.782 3.09202C19 3.51984 19 4.07989 19 5.2V18.8C19 19.9201 19 20.4802 18.782 20.908C18.5903 21.2843 18.2843 21.5903 17.908 21.782C17.4802 22 16.9201 22 15.8 22H8.2C7.0799 22 6.51984 22 6.09202 21.782C5.71569 21.5903 5.40973 21.2843 5.21799 20.908C5 20.4802 5 19.9201 5 18.8V5.2Z",
2465
+ d: "M7.38064 9.85323C8.07664 11.3028 9.02543 12.6615 10.227 13.8631C11.4286 15.0646 12.7872 16.0134 14.2368 16.7094C14.3615 16.7693 14.4239 16.7992 14.5028 16.8222C14.7831 16.904 15.1274 16.8453 15.3648 16.6752C15.4316 16.6274 15.4888 16.5702 15.6031 16.4559C15.9527 16.1063 16.1275 15.9315 16.3033 15.8172C16.9662 15.3862 17.8208 15.3862 18.4836 15.8172C18.6594 15.9315 18.8342 16.1063 19.1838 16.4559L19.3787 16.6508C19.9101 17.1822 20.1759 17.448 20.3202 17.7333C20.6073 18.3009 20.6073 18.9712 20.3202 19.5387C20.1759 19.8241 19.9101 20.0898 19.3787 20.6213L19.2211 20.7789C18.6914 21.3085 18.4266 21.5733 18.0666 21.7756C17.6671 22 17.0466 22.1614 16.5884 22.16C16.1754 22.1588 15.8932 22.0787 15.3288 21.9185C12.2954 21.0575 9.43301 19.433 7.04503 17.045C4.65705 14.6571 3.03257 11.7947 2.1716 8.76131C2.01139 8.19687 1.93129 7.91464 1.93006 7.5017C1.9287 7.04347 2.09006 6.42298 2.31448 6.02348C2.51673 5.66345 2.78154 5.39863 3.31116 4.86901L3.4688 4.71138C4.00024 4.17993 4.26596 3.91421 4.55134 3.76987C5.1189 3.4828 5.78917 3.4828 6.35673 3.76987C6.64211 3.91421 6.90783 4.17993 7.43927 4.71138L7.63414 4.90625C7.98375 5.25585 8.15855 5.43065 8.27284 5.60643C8.70383 6.26932 8.70383 7.1239 8.27284 7.78679C8.15855 7.96257 7.98375 8.13738 7.63414 8.48698C7.51983 8.60129 7.46268 8.65845 7.41483 8.72526C7.24482 8.96269 7.18612 9.30695 7.26785 9.5873C7.29084 9.6662 7.32078 9.72854 7.38064 9.85323Z",
2179
2466
  fill: "currentColor"
2180
2467
  }
2181
2468
  ),
2182
- /* @__PURE__ */ jsx48(
2469
+ /* @__PURE__ */ jsx55(
2183
2470
  "path",
2184
2471
  {
2185
- d: "M12 17.5H12.01M8.2 22H15.8C16.9201 22 17.4802 22 17.908 21.782C18.2843 21.5903 18.5903 21.2843 18.782 20.908C19 20.4802 19 19.9201 19 18.8V5.2C19 4.07989 19 3.51984 18.782 3.09202C18.5903 2.71569 18.2843 2.40973 17.908 2.21799C17.4802 2 16.9201 2 15.8 2H8.2C7.0799 2 6.51984 2 6.09202 2.21799C5.71569 2.40973 5.40973 2.71569 5.21799 3.09202C5 3.51984 5 4.0799 5 5.2V18.8C5 19.9201 5 20.4802 5.21799 20.908C5.40973 21.2843 5.71569 21.5903 6.09202 21.782C6.51984 22 7.07989 22 8.2 22ZM12.5 17.5C12.5 17.7761 12.2761 18 12 18C11.7239 18 11.5 17.7761 11.5 17.5C11.5 17.2239 11.7239 17 12 17C12.2761 17 12.5 17.2239 12.5 17.5Z",
2472
+ d: "M14.05 6C15.0268 6.19057 15.9244 6.66826 16.6281 7.37194C17.3318 8.07561 17.8095 8.97326 18 9.95M14.05 2C16.0793 2.22544 17.9716 3.13417 19.4163 4.57701C20.8609 6.01984 21.772 7.91101 22 9.94M10.227 13.8631C9.02543 12.6615 8.07664 11.3028 7.38064 9.85323C7.32078 9.72854 7.29084 9.66619 7.26785 9.5873C7.18612 9.30695 7.24482 8.96269 7.41483 8.72526C7.46268 8.65845 7.51983 8.60129 7.63414 8.48698C7.98375 8.13737 8.15855 7.96257 8.27284 7.78679C8.70383 7.1239 8.70383 6.26932 8.27284 5.60643C8.15855 5.43065 7.98375 5.25585 7.63414 4.90624L7.43927 4.71137C6.90783 4.17993 6.64211 3.91421 6.35673 3.76987C5.78917 3.4828 5.1189 3.4828 4.55134 3.76987C4.26596 3.91421 4.00024 4.17993 3.4688 4.71137L3.31116 4.86901C2.78154 5.39863 2.51673 5.66344 2.31448 6.02348C2.09006 6.42298 1.9287 7.04347 1.93006 7.5017C1.93129 7.91464 2.01139 8.19687 2.1716 8.76131C3.03257 11.7947 4.65705 14.6571 7.04503 17.045C9.43301 19.433 12.2954 21.0575 15.3288 21.9185C15.8932 22.0787 16.1754 22.1588 16.5884 22.16C17.0466 22.1614 17.6671 22 18.0666 21.7756C18.4266 21.5733 18.6914 21.3085 19.2211 20.7789L19.3787 20.6213C19.9101 20.0898 20.1759 19.8241 20.3202 19.5387C20.6073 18.9712 20.6073 18.3009 20.3202 17.7333C20.1759 17.448 19.9101 17.1822 19.3787 16.6508L19.1838 16.4559C18.8342 16.1063 18.6594 15.9315 18.4836 15.8172C17.8208 15.3862 16.9662 15.3862 16.3033 15.8172C16.1275 15.9315 15.9527 16.1063 15.6031 16.4559C15.4888 16.5702 15.4316 16.6274 15.3648 16.6752C15.1274 16.8453 14.7831 16.904 14.5028 16.8222C14.4239 16.7992 14.3615 16.7693 14.2368 16.7094C12.7872 16.0134 11.4286 15.0646 10.227 13.8631Z",
2186
2473
  stroke: "currentColor",
2187
2474
  strokeWidth: "2",
2188
2475
  strokeLinecap: "round",
@@ -2196,12 +2483,12 @@ var PhoneIcon = forwardRef47(
2196
2483
  );
2197
2484
 
2198
2485
  // src/icons/pieChart.tsx
2199
- import { forwardRef as forwardRef48 } from "react";
2200
- import { jsx as jsx49, jsxs as jsxs34 } from "react/jsx-runtime";
2201
- var PieChartIcon = forwardRef48(
2486
+ import { forwardRef as forwardRef54 } from "react";
2487
+ import { jsx as jsx56, jsxs as jsxs38 } from "react/jsx-runtime";
2488
+ var PieChartIcon = forwardRef54(
2202
2489
  function PieChartIcon2(_a, ref) {
2203
2490
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2204
- return /* @__PURE__ */ jsxs34(
2491
+ return /* @__PURE__ */ jsxs38(
2205
2492
  "svg",
2206
2493
  __spreadProps(__spreadValues({
2207
2494
  ref,
@@ -2213,7 +2500,7 @@ var PieChartIcon = forwardRef48(
2213
2500
  className
2214
2501
  }, other), {
2215
2502
  children: [
2216
- duotone && /* @__PURE__ */ jsx49(
2503
+ duotone && /* @__PURE__ */ jsx56(
2217
2504
  "path",
2218
2505
  {
2219
2506
  opacity: "0.12",
@@ -2221,7 +2508,7 @@ var PieChartIcon = forwardRef48(
2221
2508
  fill: "currentColor"
2222
2509
  }
2223
2510
  ),
2224
- /* @__PURE__ */ jsx49(
2511
+ /* @__PURE__ */ jsx56(
2225
2512
  "path",
2226
2513
  {
2227
2514
  d: "M17.2 14C17.477 14 17.6155 14 17.7278 14.0615C17.8204 14.1122 17.9065 14.2075 17.9478 14.3047C17.9978 14.4225 17.9852 14.5479 17.96 14.7987C17.8296 16.0987 17.3822 17.3514 16.6518 18.4445C15.7727 19.7601 14.5233 20.7855 13.0615 21.391C11.5997 21.9965 9.99113 22.155 8.43928 21.8463C6.88743 21.5376 5.46197 20.7757 4.34315 19.6568C3.22433 18.538 2.4624 17.1126 2.15372 15.5607C1.84504 14.0089 2.00347 12.4003 2.60897 10.9385C3.21447 9.47671 4.23985 8.22728 5.55544 7.34823C6.64856 6.61783 7.90125 6.17039 9.20131 6.03995C9.45207 6.01479 9.57745 6.00221 9.69528 6.0522C9.79249 6.09344 9.88776 6.17964 9.9385 6.27224C10 6.38449 10 6.52299 10 6.79999V13.2C10 13.48 10 13.62 10.0545 13.727C10.1024 13.8211 10.1789 13.8976 10.273 13.9455C10.38 14 10.52 14 10.8 14H17.2Z",
@@ -2232,7 +2519,7 @@ var PieChartIcon = forwardRef48(
2232
2519
  }
2233
2520
  ),
2234
2521
  ",",
2235
- /* @__PURE__ */ jsx49(
2522
+ /* @__PURE__ */ jsx56(
2236
2523
  "path",
2237
2524
  {
2238
2525
  d: "M14 2.79999C14 2.52298 14 2.38448 14.0615 2.27223C14.1122 2.17963 14.2075 2.09344 14.3047 2.0522C14.4225 2.0022 14.5479 2.01478 14.7987 2.03993C16.6271 2.22333 18.346 3.03229 19.6569 4.34313C20.9677 5.65398 21.7767 7.37289 21.9601 9.20129C21.9852 9.45206 21.9978 9.57744 21.9478 9.69527C21.9066 9.79248 21.8204 9.88774 21.7278 9.93848C21.6155 9.99998 21.477 9.99999 21.2 9.99999L14.8 9.99999C14.52 9.99999 14.38 9.99999 14.273 9.94549C14.1789 9.89755 14.1024 9.82106 14.0545 9.72698C14 9.62003 14 9.48001 14 9.19999V2.79999Z",
@@ -2249,12 +2536,12 @@ var PieChartIcon = forwardRef48(
2249
2536
  );
2250
2537
 
2251
2538
  // src/icons/playCircle.tsx
2252
- import { forwardRef as forwardRef49 } from "react";
2253
- import { jsx as jsx50, jsxs as jsxs35 } from "react/jsx-runtime";
2254
- var PlayCircleIcon = forwardRef49(
2539
+ import { forwardRef as forwardRef55 } from "react";
2540
+ import { jsx as jsx57, jsxs as jsxs39 } from "react/jsx-runtime";
2541
+ var PlayCircleIcon = forwardRef55(
2255
2542
  function PlayCircleIcon2(_a, ref) {
2256
2543
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2257
- return /* @__PURE__ */ jsxs35(
2544
+ return /* @__PURE__ */ jsxs39(
2258
2545
  "svg",
2259
2546
  __spreadProps(__spreadValues({
2260
2547
  ref,
@@ -2266,7 +2553,7 @@ var PlayCircleIcon = forwardRef49(
2266
2553
  className
2267
2554
  }, other), {
2268
2555
  children: [
2269
- duotone && /* @__PURE__ */ jsx50(
2556
+ duotone && /* @__PURE__ */ jsx57(
2270
2557
  "path",
2271
2558
  {
2272
2559
  opacity: "0.12",
@@ -2274,7 +2561,7 @@ var PlayCircleIcon = forwardRef49(
2274
2561
  fill: "currentColor"
2275
2562
  }
2276
2563
  ),
2277
- /* @__PURE__ */ jsx50(
2564
+ /* @__PURE__ */ jsx57(
2278
2565
  "path",
2279
2566
  {
2280
2567
  d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
@@ -2285,7 +2572,7 @@ var PlayCircleIcon = forwardRef49(
2285
2572
  }
2286
2573
  ),
2287
2574
  ",",
2288
- /* @__PURE__ */ jsx50(
2575
+ /* @__PURE__ */ jsx57(
2289
2576
  "path",
2290
2577
  {
2291
2578
  d: "M9.5 8.96533C9.5 8.48805 9.5 8.24941 9.59974 8.11618C9.68666 8.00007 9.81971 7.92744 9.96438 7.9171C10.1304 7.90525 10.3311 8.03429 10.7326 8.29239L15.4532 11.3271C15.8016 11.551 15.9758 11.663 16.0359 11.8054C16.0885 11.9298 16.0885 12.0702 16.0359 12.1946C15.9758 12.337 15.8016 12.449 15.4532 12.6729L10.7326 15.7076C10.3311 15.9657 10.1304 16.0948 9.96438 16.0829C9.81971 16.0726 9.68666 15.9999 9.59974 15.8838C9.5 15.7506 9.5 15.512 9.5 15.0347V8.96533Z",
@@ -2302,11 +2589,11 @@ var PlayCircleIcon = forwardRef49(
2302
2589
  );
2303
2590
 
2304
2591
  // src/icons/plus.tsx
2305
- import { forwardRef as forwardRef50 } from "react";
2306
- import { jsx as jsx51 } from "react/jsx-runtime";
2307
- var PlusIcon = forwardRef50(function PlusIcon2(_a, ref) {
2592
+ import { forwardRef as forwardRef56 } from "react";
2593
+ import { jsx as jsx58 } from "react/jsx-runtime";
2594
+ var PlusIcon = forwardRef56(function PlusIcon2(_a, ref) {
2308
2595
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2309
- return /* @__PURE__ */ jsx51(
2596
+ return /* @__PURE__ */ jsx58(
2310
2597
  "svg",
2311
2598
  __spreadProps(__spreadValues({
2312
2599
  ref,
@@ -2317,7 +2604,7 @@ var PlusIcon = forwardRef50(function PlusIcon2(_a, ref) {
2317
2604
  xmlns: "http://www.w3.org/2000/svg",
2318
2605
  className
2319
2606
  }, other), {
2320
- children: /* @__PURE__ */ jsx51(
2607
+ children: /* @__PURE__ */ jsx58(
2321
2608
  "path",
2322
2609
  {
2323
2610
  d: "M12 5V19M5 12H19",
@@ -2332,12 +2619,12 @@ var PlusIcon = forwardRef50(function PlusIcon2(_a, ref) {
2332
2619
  });
2333
2620
 
2334
2621
  // src/icons/plusCircle.tsx
2335
- import { forwardRef as forwardRef51 } from "react";
2336
- import { jsx as jsx52, jsxs as jsxs36 } from "react/jsx-runtime";
2337
- var PlusCircleIcon = forwardRef51(
2622
+ import { forwardRef as forwardRef57 } from "react";
2623
+ import { jsx as jsx59, jsxs as jsxs40 } from "react/jsx-runtime";
2624
+ var PlusCircleIcon = forwardRef57(
2338
2625
  function PlusCircleIcon2(_a, ref) {
2339
2626
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2340
- return /* @__PURE__ */ jsxs36(
2627
+ return /* @__PURE__ */ jsxs40(
2341
2628
  "svg",
2342
2629
  __spreadProps(__spreadValues({
2343
2630
  ref,
@@ -2349,7 +2636,7 @@ var PlusCircleIcon = forwardRef51(
2349
2636
  className
2350
2637
  }, other), {
2351
2638
  children: [
2352
- duotone && /* @__PURE__ */ jsx52(
2639
+ duotone && /* @__PURE__ */ jsx59(
2353
2640
  "path",
2354
2641
  {
2355
2642
  opacity: "0.12",
@@ -2357,7 +2644,7 @@ var PlusCircleIcon = forwardRef51(
2357
2644
  fill: "currentColor"
2358
2645
  }
2359
2646
  ),
2360
- /* @__PURE__ */ jsx52(
2647
+ /* @__PURE__ */ jsx59(
2361
2648
  "path",
2362
2649
  {
2363
2650
  d: "M12 8V16M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
@@ -2374,12 +2661,12 @@ var PlusCircleIcon = forwardRef51(
2374
2661
  );
2375
2662
 
2376
2663
  // src/icons/puzzlePiece.tsx
2377
- import { forwardRef as forwardRef52 } from "react";
2378
- import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
2379
- var PuzzlePieceIcon = forwardRef52(
2664
+ import { forwardRef as forwardRef58 } from "react";
2665
+ import { jsx as jsx60, jsxs as jsxs41 } from "react/jsx-runtime";
2666
+ var PuzzlePieceIcon = forwardRef58(
2380
2667
  function PuzzlePieceIcon2(_a, ref) {
2381
2668
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2382
- return /* @__PURE__ */ jsxs37(
2669
+ return /* @__PURE__ */ jsxs41(
2383
2670
  "svg",
2384
2671
  __spreadProps(__spreadValues({
2385
2672
  ref,
@@ -2391,7 +2678,7 @@ var PuzzlePieceIcon = forwardRef52(
2391
2678
  className
2392
2679
  }, other), {
2393
2680
  children: [
2394
- duotone && /* @__PURE__ */ jsx53(
2681
+ duotone && /* @__PURE__ */ jsx60(
2395
2682
  "path",
2396
2683
  {
2397
2684
  opacity: "0.12",
@@ -2399,7 +2686,7 @@ var PuzzlePieceIcon = forwardRef52(
2399
2686
  fill: "currentColor"
2400
2687
  }
2401
2688
  ),
2402
- /* @__PURE__ */ jsx53(
2689
+ /* @__PURE__ */ jsx60(
2403
2690
  "path",
2404
2691
  {
2405
2692
  d: "M7.5 4.5C7.5 3.11929 8.61929 2 10 2C11.3807 2 12.5 3.11929 12.5 4.5V6H13.5C14.8978 6 15.5967 6 16.1481 6.22836C16.8831 6.53284 17.4672 7.11687 17.7716 7.85195C18 8.40326 18 9.10218 18 10.5H19.5C20.8807 10.5 22 11.6193 22 13C22 14.3807 20.8807 15.5 19.5 15.5H18V17.2C18 18.8802 18 19.7202 17.673 20.362C17.3854 20.9265 16.9265 21.3854 16.362 21.673C15.7202 22 14.8802 22 13.2 22H12.5V20.25C12.5 19.0074 11.4926 18 10.25 18C9.00736 18 8 19.0074 8 20.25V22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V15.5H3.5C4.88071 15.5 6 14.3807 6 13C6 11.6193 4.88071 10.5 3.5 10.5H2C2 9.10218 2 8.40326 2.22836 7.85195C2.53284 7.11687 3.11687 6.53284 3.85195 6.22836C4.40326 6 5.10218 6 6.5 6H7.5V4.5Z",
@@ -2416,12 +2703,12 @@ var PuzzlePieceIcon = forwardRef52(
2416
2703
  );
2417
2704
 
2418
2705
  // src/icons/qrCode.tsx
2419
- import { forwardRef as forwardRef53 } from "react";
2420
- import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
2421
- var QrCodeIcon = forwardRef53(
2706
+ import { forwardRef as forwardRef59 } from "react";
2707
+ import { jsx as jsx61, jsxs as jsxs42 } from "react/jsx-runtime";
2708
+ var QrCodeIcon = forwardRef59(
2422
2709
  function QrCodeIcon2(_a, ref) {
2423
2710
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2424
- return /* @__PURE__ */ jsxs38(
2711
+ return /* @__PURE__ */ jsxs42(
2425
2712
  "svg",
2426
2713
  __spreadProps(__spreadValues({
2427
2714
  ref,
@@ -2433,7 +2720,7 @@ var QrCodeIcon = forwardRef53(
2433
2720
  className
2434
2721
  }, other), {
2435
2722
  children: [
2436
- duotone && /* @__PURE__ */ jsx54(
2723
+ duotone && /* @__PURE__ */ jsx61(
2437
2724
  "path",
2438
2725
  {
2439
2726
  opacity: "0.4",
@@ -2444,7 +2731,7 @@ var QrCodeIcon = forwardRef53(
2444
2731
  strokeLinejoin: "round"
2445
2732
  }
2446
2733
  ),
2447
- /* @__PURE__ */ jsx54(
2734
+ /* @__PURE__ */ jsx61(
2448
2735
  "path",
2449
2736
  {
2450
2737
  d: "M7 12H12V17M17.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V17.6C21 17.0399 21 16.7599 20.891 16.546C20.7951 16.3578 20.6422 16.2049 20.454 16.109C20.2401 16 19.9601 16 19.4 16H17.6C17.0399 16 16.7599 16 16.546 16.109C16.3578 16.2049 16.2049 16.3578 16.109 16.546C16 16.7599 16 17.0399 16 17.6V19.4C16 19.9601 16 20.2401 16.109 20.454C16.2049 20.6422 16.3578 20.7951 16.546 20.891C16.7599 21 17.0399 21 17.6 21ZM17.6 8H19.4C19.9601 8 20.2401 8 20.454 7.89101C20.6422 7.79513 20.7951 7.64215 20.891 7.45399C21 7.24008 21 6.96005 21 6.4V4.6C21 4.03995 21 3.75992 20.891 3.54601C20.7951 3.35785 20.6422 3.20487 20.454 3.10899C20.2401 3 19.9601 3 19.4 3H17.6C17.0399 3 16.7599 3 16.546 3.10899C16.3578 3.20487 16.2049 3.35785 16.109 3.54601C16 3.75992 16 4.03995 16 4.6V6.4C16 6.96005 16 7.24008 16.109 7.45399C16.2049 7.64215 16.3578 7.79513 16.546 7.89101C16.7599 8 17.0399 8 17.6 8ZM4.6 8H6.4C6.96005 8 7.24008 8 7.45399 7.89101C7.64215 7.79513 7.79513 7.64215 7.89101 7.45399C8 7.24008 8 6.96005 8 6.4V4.6C8 4.03995 8 3.75992 7.89101 3.54601C7.79513 3.35785 7.64215 3.20487 7.45399 3.10899C7.24008 3 6.96005 3 6.4 3H4.6C4.03995 3 3.75992 3 3.54601 3.10899C3.35785 3.20487 3.20487 3.35785 3.10899 3.54601C3 3.75992 3 4.03995 3 4.6V6.4C3 6.96005 3 7.24008 3.10899 7.45399C3.20487 7.64215 3.35785 7.79513 3.54601 7.89101C3.75992 8 4.03995 8 4.6 8Z",
@@ -2461,12 +2748,12 @@ var QrCodeIcon = forwardRef53(
2461
2748
  );
2462
2749
 
2463
2750
  // src/icons/receiptCheck.tsx
2464
- import { forwardRef as forwardRef54 } from "react";
2465
- import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
2466
- var ReceiptCheckIcon = forwardRef54(
2751
+ import { forwardRef as forwardRef60 } from "react";
2752
+ import { jsx as jsx62, jsxs as jsxs43 } from "react/jsx-runtime";
2753
+ var ReceiptCheckIcon = forwardRef60(
2467
2754
  function ReceiptCheckIcon2(_a, ref) {
2468
2755
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2469
- return /* @__PURE__ */ jsxs39(
2756
+ return /* @__PURE__ */ jsxs43(
2470
2757
  "svg",
2471
2758
  __spreadProps(__spreadValues({
2472
2759
  ref,
@@ -2478,7 +2765,7 @@ var ReceiptCheckIcon = forwardRef54(
2478
2765
  className
2479
2766
  }, other), {
2480
2767
  children: [
2481
- duotone && /* @__PURE__ */ jsx55(
2768
+ duotone && /* @__PURE__ */ jsx62(
2482
2769
  "path",
2483
2770
  {
2484
2771
  opacity: "0.12",
@@ -2486,7 +2773,7 @@ var ReceiptCheckIcon = forwardRef54(
2486
2773
  fill: "currentColor"
2487
2774
  }
2488
2775
  ),
2489
- /* @__PURE__ */ jsx55(
2776
+ /* @__PURE__ */ jsx62(
2490
2777
  "path",
2491
2778
  {
2492
2779
  d: "M9 10.5L11 12.5L15.5 8M20 21V7.8C20 6.11984 20 5.27976 19.673 4.63803C19.3854 4.07354 18.9265 3.6146 18.362 3.32698C17.7202 3 16.8802 3 15.2 3H8.8C7.11984 3 6.27976 3 5.63803 3.32698C5.07354 3.6146 4.6146 4.07354 4.32698 4.63803C4 5.27976 4 6.11984 4 7.8V21L6.75 19L9.25 21L12 19L14.75 21L17.25 19L20 21Z",
@@ -2503,12 +2790,12 @@ var ReceiptCheckIcon = forwardRef54(
2503
2790
  );
2504
2791
 
2505
2792
  // src/icons/recording.tsx
2506
- import { forwardRef as forwardRef55 } from "react";
2507
- import { jsx as jsx56, jsxs as jsxs40 } from "react/jsx-runtime";
2508
- var RecordingIcon = forwardRef55(
2793
+ import { forwardRef as forwardRef61 } from "react";
2794
+ import { jsx as jsx63, jsxs as jsxs44 } from "react/jsx-runtime";
2795
+ var RecordingIcon = forwardRef61(
2509
2796
  function RecordingIcon2(_a, ref) {
2510
2797
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2511
- return /* @__PURE__ */ jsxs40(
2798
+ return /* @__PURE__ */ jsxs44(
2512
2799
  "svg",
2513
2800
  __spreadProps(__spreadValues({
2514
2801
  ref,
@@ -2520,7 +2807,7 @@ var RecordingIcon = forwardRef55(
2520
2807
  className
2521
2808
  }, other), {
2522
2809
  children: [
2523
- duotone && /* @__PURE__ */ jsx56(
2810
+ duotone && /* @__PURE__ */ jsx63(
2524
2811
  "path",
2525
2812
  {
2526
2813
  opacity: "0.12",
@@ -2528,7 +2815,7 @@ var RecordingIcon = forwardRef55(
2528
2815
  fill: "currentColor"
2529
2816
  }
2530
2817
  ),
2531
- /* @__PURE__ */ jsx56(
2818
+ /* @__PURE__ */ jsx63(
2532
2819
  "path",
2533
2820
  {
2534
2821
  d: "M6 11V13M10 9V15M14 7V17M18 11V13M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
@@ -2545,12 +2832,12 @@ var RecordingIcon = forwardRef55(
2545
2832
  );
2546
2833
 
2547
2834
  // src/icons/refreshCcw.tsx
2548
- import { forwardRef as forwardRef56 } from "react";
2549
- import { jsx as jsx57 } from "react/jsx-runtime";
2550
- var RefreshCcwIcon = forwardRef56(
2835
+ import { forwardRef as forwardRef62 } from "react";
2836
+ import { jsx as jsx64 } from "react/jsx-runtime";
2837
+ var RefreshCcwIcon = forwardRef62(
2551
2838
  function RefreshCcwIcon2(_a, ref) {
2552
2839
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2553
- return /* @__PURE__ */ jsx57(
2840
+ return /* @__PURE__ */ jsx64(
2554
2841
  "svg",
2555
2842
  __spreadProps(__spreadValues({
2556
2843
  ref,
@@ -2561,7 +2848,7 @@ var RefreshCcwIcon = forwardRef56(
2561
2848
  xmlns: "http://www.w3.org/2000/svg",
2562
2849
  className
2563
2850
  }, other), {
2564
- children: /* @__PURE__ */ jsx57(
2851
+ children: /* @__PURE__ */ jsx64(
2565
2852
  "path",
2566
2853
  {
2567
2854
  d: "M2 10C2 10 4.00498 7.26822 5.63384 5.63824C7.26269 4.00827 9.5136 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.89691 21 4.43511 18.2543 3.35177 14.5M2 10V4M2 10H8",
@@ -2577,12 +2864,12 @@ var RefreshCcwIcon = forwardRef56(
2577
2864
  );
2578
2865
 
2579
2866
  // src/icons/refreshCw.tsx
2580
- import { forwardRef as forwardRef57 } from "react";
2581
- import { jsx as jsx58 } from "react/jsx-runtime";
2582
- var RefreshCwIcon = forwardRef57(
2867
+ import { forwardRef as forwardRef63 } from "react";
2868
+ import { jsx as jsx65 } from "react/jsx-runtime";
2869
+ var RefreshCwIcon = forwardRef63(
2583
2870
  function RefreshCwIcon2(_a, ref) {
2584
2871
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2585
- return /* @__PURE__ */ jsx58(
2872
+ return /* @__PURE__ */ jsx65(
2586
2873
  "svg",
2587
2874
  __spreadProps(__spreadValues({
2588
2875
  ref,
@@ -2593,7 +2880,7 @@ var RefreshCwIcon = forwardRef57(
2593
2880
  xmlns: "http://www.w3.org/2000/svg",
2594
2881
  className
2595
2882
  }, other), {
2596
- children: /* @__PURE__ */ jsx58(
2883
+ children: /* @__PURE__ */ jsx65(
2597
2884
  "path",
2598
2885
  {
2599
2886
  d: "M14 22C14 22 14.8492 21.8787 18.364 18.364C21.8787 14.8492 21.8787 9.15076 18.364 5.63604C17.1187 4.39077 15.5993 3.58669 14 3.22383M14 22H20M14 22L14 16M10 2.00019C10 2.00019 9.15076 2.12152 5.63604 5.63624C2.12132 9.15095 2.12132 14.8494 5.63604 18.3642C6.88131 19.6094 8.40072 20.4135 10 20.7764M10 2.00019L4 2M10 2.00019L10 8",
@@ -2609,12 +2896,12 @@ var RefreshCwIcon = forwardRef57(
2609
2896
  );
2610
2897
 
2611
2898
  // src/icons/rocket.tsx
2612
- import { forwardRef as forwardRef58 } from "react";
2613
- import { jsx as jsx59, jsxs as jsxs41 } from "react/jsx-runtime";
2614
- var RocketIcon = forwardRef58(
2899
+ import { forwardRef as forwardRef64 } from "react";
2900
+ import { jsx as jsx66, jsxs as jsxs45 } from "react/jsx-runtime";
2901
+ var RocketIcon = forwardRef64(
2615
2902
  function RocketIcon2(_a, ref) {
2616
2903
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2617
- return /* @__PURE__ */ jsxs41(
2904
+ return /* @__PURE__ */ jsxs45(
2618
2905
  "svg",
2619
2906
  __spreadProps(__spreadValues({
2620
2907
  ref,
@@ -2626,7 +2913,7 @@ var RocketIcon = forwardRef58(
2626
2913
  className
2627
2914
  }, other), {
2628
2915
  children: [
2629
- duotone && /* @__PURE__ */ jsx59(
2916
+ duotone && /* @__PURE__ */ jsx66(
2630
2917
  "path",
2631
2918
  {
2632
2919
  opacity: "0.12",
@@ -2634,7 +2921,7 @@ var RocketIcon = forwardRef58(
2634
2921
  fill: "currentColor"
2635
2922
  }
2636
2923
  ),
2637
- /* @__PURE__ */ jsx59(
2924
+ /* @__PURE__ */ jsx66(
2638
2925
  "path",
2639
2926
  {
2640
2927
  d: "M12 15L9 12M12 15C13.3968 14.4687 14.7369 13.7987 16 13M12 15V20C12 20 15.03 19.45 16 18C17.08 16.38 16 13 16 13M9 12C9.53214 10.6194 10.2022 9.29607 11 8.05C12.1652 6.18699 13.7876 4.65305 15.713 3.5941C17.6384 2.53514 19.8027 1.98637 22 2C22 4.72 21.22 9.5 16 13M9 12H4C4 12 4.55 8.97 6 8C7.62 6.92 11 8 11 8M4.5 16.5C3 17.76 2.5 21.5 2.5 21.5C2.5 21.5 6.24 21 7.5 19.5C8.21 18.66 8.2 17.37 7.41 16.59C7.02131 16.219 6.50929 16.0046 5.97223 15.988C5.43516 15.9714 4.91088 16.1537 4.5 16.5Z",
@@ -2651,11 +2938,11 @@ var RocketIcon = forwardRef58(
2651
2938
  );
2652
2939
 
2653
2940
  // src/icons/save.tsx
2654
- import { forwardRef as forwardRef59 } from "react";
2655
- import { jsx as jsx60, jsxs as jsxs42 } from "react/jsx-runtime";
2656
- var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
2941
+ import { forwardRef as forwardRef65 } from "react";
2942
+ import { jsx as jsx67, jsxs as jsxs46 } from "react/jsx-runtime";
2943
+ var SaveIcon = forwardRef65(function SaveIcon2(_a, ref) {
2657
2944
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2658
- return /* @__PURE__ */ jsxs42(
2945
+ return /* @__PURE__ */ jsxs46(
2659
2946
  "svg",
2660
2947
  __spreadProps(__spreadValues({
2661
2948
  ref,
@@ -2667,15 +2954,15 @@ var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
2667
2954
  className
2668
2955
  }, other), {
2669
2956
  children: [
2670
- duotone && /* @__PURE__ */ jsxs42("g", { opacity: "0.12", children: [
2671
- /* @__PURE__ */ jsx60(
2957
+ duotone && /* @__PURE__ */ jsxs46("g", { opacity: "0.12", children: [
2958
+ /* @__PURE__ */ jsx67(
2672
2959
  "path",
2673
2960
  {
2674
2961
  d: "M7 3H15.2929C15.7456 3 16.1799 3.17986 16.5 3.5C16.8201 3.82014 17 4.25435 17 4.70711V6.4C17 6.96005 17 7.24008 16.891 7.45399C16.7951 7.64215 16.6422 7.79513 16.454 7.89101C16.2401 8 15.9601 8 15.4 8H8.6C8.03995 8 7.75992 8 7.54601 7.89101C7.35785 7.79513 7.20487 7.64215 7.10899 7.45399C7 7.24008 7 6.96005 7 6.4V3Z",
2675
2962
  fill: "currentColor"
2676
2963
  }
2677
2964
  ),
2678
- /* @__PURE__ */ jsx60(
2965
+ /* @__PURE__ */ jsx67(
2679
2966
  "path",
2680
2967
  {
2681
2968
  d: "M7 14.6C7 14.0399 7 13.7599 7.10899 13.546C7.20487 13.3578 7.35785 13.2049 7.54601 13.109C7.75992 13 8.03995 13 8.6 13H15.4C15.9601 13 16.2401 13 16.454 13.109C16.6422 13.2049 16.7951 13.3578 16.891 13.546C17 13.7599 17 14.0399 17 14.6V21H7V14.6Z",
@@ -2683,7 +2970,7 @@ var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
2683
2970
  }
2684
2971
  )
2685
2972
  ] }),
2686
- /* @__PURE__ */ jsx60(
2973
+ /* @__PURE__ */ jsx67(
2687
2974
  "path",
2688
2975
  {
2689
2976
  d: "M7 3V6.4C7 6.96005 7 7.24008 7.10899 7.45399C7.20487 7.64215 7.35785 7.79513 7.54601 7.89101C7.75992 8 8.03995 8 8.6 8H15.4C15.9601 8 16.2401 8 16.454 7.89101C16.6422 7.79513 16.7951 7.64215 16.891 7.45399C17 7.24008 17 6.96005 17 6.4V4M17 21V14.6C17 14.0399 17 13.7599 16.891 13.546C16.7951 13.3578 16.6422 13.2049 16.454 13.109C16.2401 13 15.9601 13 15.4 13H8.6C8.03995 13 7.75992 13 7.54601 13.109C7.35785 13.2049 7.20487 13.3578 7.10899 13.546C7 13.7599 7 14.0399 7 14.6V21M21 9.32548V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H14.6745C15.1637 3 15.4083 3 15.6385 3.05526C15.8425 3.10425 16.0376 3.18506 16.2166 3.29472C16.4184 3.4184 16.5914 3.59135 16.9373 3.93726L20.0627 7.06274C20.4086 7.40865 20.5816 7.5816 20.7053 7.78343C20.8149 7.96237 20.8957 8.15746 20.9447 8.36154C21 8.59171 21 8.8363 21 9.32548Z",
@@ -2699,12 +2986,12 @@ var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
2699
2986
  });
2700
2987
 
2701
2988
  // src/icons/search.tsx
2702
- import { forwardRef as forwardRef60 } from "react";
2703
- import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
2704
- var SearchMdIcon = forwardRef60(
2989
+ import { forwardRef as forwardRef66 } from "react";
2990
+ import { jsx as jsx68, jsxs as jsxs47 } from "react/jsx-runtime";
2991
+ var SearchMdIcon = forwardRef66(
2705
2992
  function SearchMdIcon2(_a, ref) {
2706
2993
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2707
- return /* @__PURE__ */ jsxs43(
2994
+ return /* @__PURE__ */ jsxs47(
2708
2995
  "svg",
2709
2996
  __spreadProps(__spreadValues({
2710
2997
  ref,
@@ -2716,7 +3003,7 @@ var SearchMdIcon = forwardRef60(
2716
3003
  className
2717
3004
  }, other), {
2718
3005
  children: [
2719
- duotone && /* @__PURE__ */ jsx61(
3006
+ duotone && /* @__PURE__ */ jsx68(
2720
3007
  "path",
2721
3008
  {
2722
3009
  opacity: "0.12",
@@ -2724,7 +3011,7 @@ var SearchMdIcon = forwardRef60(
2724
3011
  fill: "currentColor"
2725
3012
  }
2726
3013
  ),
2727
- /* @__PURE__ */ jsx61(
3014
+ /* @__PURE__ */ jsx68(
2728
3015
  "path",
2729
3016
  {
2730
3017
  d: "M21 21L16.65 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z",
@@ -2741,11 +3028,11 @@ var SearchMdIcon = forwardRef60(
2741
3028
  );
2742
3029
 
2743
3030
  // src/icons/send.tsx
2744
- import { forwardRef as forwardRef61 } from "react";
2745
- import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
2746
- var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
3031
+ import { forwardRef as forwardRef67 } from "react";
3032
+ import { jsx as jsx69, jsxs as jsxs48 } from "react/jsx-runtime";
3033
+ var SendIcon = forwardRef67(function SendIcon2(_a, ref) {
2747
3034
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2748
- return /* @__PURE__ */ jsxs44(
3035
+ return /* @__PURE__ */ jsxs48(
2749
3036
  "svg",
2750
3037
  __spreadProps(__spreadValues({
2751
3038
  ref,
@@ -2757,7 +3044,7 @@ var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
2757
3044
  className
2758
3045
  }, other), {
2759
3046
  children: [
2760
- duotone && /* @__PURE__ */ jsx62(
3047
+ duotone && /* @__PURE__ */ jsx69(
2761
3048
  "path",
2762
3049
  {
2763
3050
  opacity: "0.12",
@@ -2765,7 +3052,7 @@ var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
2765
3052
  fill: "currentColor"
2766
3053
  }
2767
3054
  ),
2768
- /* @__PURE__ */ jsx62(
3055
+ /* @__PURE__ */ jsx69(
2769
3056
  "path",
2770
3057
  {
2771
3058
  d: "M10.5 12H5M4.91534 12.2915L2.58042 19.2662C2.39699 19.8141 2.30527 20.0881 2.37109 20.2568C2.42825 20.4033 2.55102 20.5144 2.7025 20.5567C2.87693 20.6054 3.1404 20.4868 3.66733 20.2497L20.3788 12.7295C20.8931 12.4981 21.1503 12.3823 21.2298 12.2216C21.2988 12.0819 21.2988 11.918 21.2298 11.7784C21.1503 11.6176 20.8931 11.5019 20.3788 11.2704L3.66151 3.7477C3.13616 3.51129 2.87349 3.39309 2.69923 3.44158C2.54789 3.48369 2.42514 3.59448 2.36778 3.74072C2.30174 3.90911 2.39247 4.18249 2.57395 4.72924L4.91599 11.7855C4.94716 11.8794 4.96275 11.9264 4.9689 11.9744C4.97436 12.017 4.9743 12.0601 4.96873 12.1027C4.96246 12.1507 4.94675 12.1976 4.91534 12.2915Z",
@@ -2781,12 +3068,12 @@ var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
2781
3068
  });
2782
3069
 
2783
3070
  // src/icons/settings.tsx
2784
- import { forwardRef as forwardRef62 } from "react";
2785
- import { jsx as jsx63, jsxs as jsxs45 } from "react/jsx-runtime";
2786
- var SettingsIcon = forwardRef62(
3071
+ import { forwardRef as forwardRef68 } from "react";
3072
+ import { jsx as jsx70, jsxs as jsxs49 } from "react/jsx-runtime";
3073
+ var SettingsIcon = forwardRef68(
2787
3074
  function SettingsIcon2(_a, ref) {
2788
3075
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2789
- return /* @__PURE__ */ jsxs45(
3076
+ return /* @__PURE__ */ jsxs49(
2790
3077
  "svg",
2791
3078
  __spreadProps(__spreadValues({
2792
3079
  ref,
@@ -2798,7 +3085,7 @@ var SettingsIcon = forwardRef62(
2798
3085
  className
2799
3086
  }, other), {
2800
3087
  children: [
2801
- duotone && /* @__PURE__ */ jsx63(
3088
+ duotone && /* @__PURE__ */ jsx70(
2802
3089
  "path",
2803
3090
  {
2804
3091
  opacity: "0.12",
@@ -2808,7 +3095,7 @@ var SettingsIcon = forwardRef62(
2808
3095
  fill: "currentColor"
2809
3096
  }
2810
3097
  ),
2811
- /* @__PURE__ */ jsx63(
3098
+ /* @__PURE__ */ jsx70(
2812
3099
  "path",
2813
3100
  {
2814
3101
  d: "M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
@@ -2819,7 +3106,7 @@ var SettingsIcon = forwardRef62(
2819
3106
  }
2820
3107
  ),
2821
3108
  ",",
2822
- /* @__PURE__ */ jsx63(
3109
+ /* @__PURE__ */ jsx70(
2823
3110
  "path",
2824
3111
  {
2825
3112
  d: "M18.7273 14.7273C18.6063 15.0015 18.5702 15.3056 18.6236 15.6005C18.6771 15.8954 18.8177 16.1676 19.0273 16.3818L19.0818 16.4364C19.2509 16.6052 19.385 16.8057 19.4765 17.0265C19.568 17.2472 19.6151 17.4838 19.6151 17.7227C19.6151 17.9617 19.568 18.1983 19.4765 18.419C19.385 18.6397 19.2509 18.8402 19.0818 19.0091C18.913 19.1781 18.7124 19.3122 18.4917 19.4037C18.271 19.4952 18.0344 19.5423 17.7955 19.5423C17.5565 19.5423 17.3199 19.4952 17.0992 19.4037C16.8785 19.3122 16.678 19.1781 16.5091 19.0091L16.4545 18.9545C16.2403 18.745 15.9682 18.6044 15.6733 18.5509C15.3784 18.4974 15.0742 18.5335 14.8 18.6545C14.5311 18.7698 14.3018 18.9611 14.1403 19.205C13.9788 19.4489 13.8921 19.7347 13.8909 20.0273V20.1818C13.8909 20.664 13.6994 21.1265 13.3584 21.4675C13.0174 21.8084 12.5549 22 12.0727 22C11.5905 22 11.1281 21.8084 10.7871 21.4675C10.4461 21.1265 10.2545 20.664 10.2545 20.1818V20.1C10.2475 19.7991 10.1501 19.5073 9.97501 19.2625C9.79991 19.0176 9.55521 18.8312 9.27273 18.7273C8.99853 18.6063 8.69437 18.5702 8.39947 18.6236C8.10456 18.6771 7.83244 18.8177 7.61818 19.0273L7.56364 19.0818C7.39478 19.2509 7.19425 19.385 6.97353 19.4765C6.7528 19.568 6.51621 19.6151 6.27727 19.6151C6.03834 19.6151 5.80174 19.568 5.58102 19.4765C5.36029 19.385 5.15977 19.2509 4.99091 19.0818C4.82186 18.913 4.68775 18.7124 4.59626 18.4917C4.50476 18.271 4.45766 18.0344 4.45766 17.7955C4.45766 17.5565 4.50476 17.3199 4.59626 17.0992C4.68775 16.8785 4.82186 16.678 4.99091 16.5091L5.04545 16.4545C5.25503 16.2403 5.39562 15.9682 5.4491 15.6733C5.50257 15.3784 5.46647 15.0742 5.34545 14.8C5.23022 14.5311 5.03887 14.3018 4.79497 14.1403C4.55107 13.9788 4.26526 13.8921 3.97273 13.8909H3.81818C3.33597 13.8909 2.87351 13.6994 2.53253 13.3584C2.19156 13.0174 2 12.5549 2 12.0727C2 11.5905 2.19156 11.1281 2.53253 10.7871C2.87351 10.4461 3.33597 10.2545 3.81818 10.2545H3.9C4.2009 10.2475 4.49273 10.1501 4.73754 9.97501C4.98236 9.79991 5.16883 9.55521 5.27273 9.27273C5.39374 8.99853 5.42984 8.69437 5.37637 8.39947C5.3229 8.10456 5.18231 7.83244 4.97273 7.61818L4.91818 7.56364C4.74913 7.39478 4.61503 7.19425 4.52353 6.97353C4.43203 6.7528 4.38493 6.51621 4.38493 6.27727C4.38493 6.03834 4.43203 5.80174 4.52353 5.58102C4.61503 5.36029 4.74913 5.15977 4.91818 4.99091C5.08704 4.82186 5.28757 4.68775 5.50829 4.59626C5.72901 4.50476 5.96561 4.45766 6.20455 4.45766C6.44348 4.45766 6.68008 4.50476 6.9008 4.59626C7.12152 4.68775 7.32205 4.82186 7.49091 4.99091L7.54545 5.04545C7.75971 5.25503 8.03183 5.39562 8.32674 5.4491C8.62164 5.50257 8.9258 5.46647 9.2 5.34545H9.27273C9.54161 5.23022 9.77093 5.03887 9.93245 4.79497C10.094 4.55107 10.1807 4.26526 10.1818 3.97273V3.81818C10.1818 3.33597 10.3734 2.87351 10.7144 2.53253C11.0553 2.19156 11.5178 2 12 2C12.4822 2 12.9447 2.19156 13.2856 2.53253C13.6266 2.87351 13.8182 3.33597 13.8182 3.81818V3.9C13.8193 4.19253 13.906 4.47834 14.0676 4.72224C14.2291 4.96614 14.4584 5.15749 14.7273 5.27273C15.0015 5.39374 15.3056 5.42984 15.6005 5.37637C15.8954 5.3229 16.1676 5.18231 16.3818 4.97273L16.4364 4.91818C16.6052 4.74913 16.8057 4.61503 17.0265 4.52353C17.2472 4.43203 17.4838 4.38493 17.7227 4.38493C17.9617 4.38493 18.1983 4.43203 18.419 4.52353C18.6397 4.61503 18.8402 4.74913 19.0091 4.91818C19.1781 5.08704 19.3122 5.28757 19.4037 5.50829C19.4952 5.72901 19.5423 5.96561 19.5423 6.20455C19.5423 6.44348 19.4952 6.68008 19.4037 6.9008C19.3122 7.12152 19.1781 7.32205 19.0091 7.49091L18.9545 7.54545C18.745 7.75971 18.6044 8.03183 18.5509 8.32674C18.4974 8.62164 18.5335 8.9258 18.6545 9.2V9.27273C18.7698 9.54161 18.9611 9.77093 19.205 9.93245C19.4489 10.094 19.7347 10.1807 20.0273 10.1818H20.1818C20.664 10.1818 21.1265 10.3734 21.4675 10.7144C21.8084 11.0553 22 11.5178 22 12C22 12.4822 21.8084 12.9447 21.4675 13.2856C21.1265 13.6266 20.664 13.8182 20.1818 13.8182H20.1C19.8075 13.8193 19.5217 13.906 19.2778 14.0676C19.0339 14.2291 18.8425 14.4584 18.7273 14.7273Z",
@@ -2836,12 +3123,12 @@ var SettingsIcon = forwardRef62(
2836
3123
  );
2837
3124
 
2838
3125
  // src/icons/share.tsx
2839
- import { forwardRef as forwardRef63 } from "react";
2840
- import { jsx as jsx64, jsxs as jsxs46 } from "react/jsx-runtime";
2841
- var ShareIcon = forwardRef63(
3126
+ import { forwardRef as forwardRef69 } from "react";
3127
+ import { jsx as jsx71, jsxs as jsxs50 } from "react/jsx-runtime";
3128
+ var ShareIcon = forwardRef69(
2842
3129
  function ShareIcon2(_a, ref) {
2843
3130
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2844
- return /* @__PURE__ */ jsxs46(
3131
+ return /* @__PURE__ */ jsxs50(
2845
3132
  "svg",
2846
3133
  __spreadProps(__spreadValues({
2847
3134
  ref,
@@ -2853,22 +3140,22 @@ var ShareIcon = forwardRef63(
2853
3140
  className
2854
3141
  }, other), {
2855
3142
  children: [
2856
- duotone && /* @__PURE__ */ jsxs46("g", { opacity: "0.12", children: [
2857
- /* @__PURE__ */ jsx64(
3143
+ duotone && /* @__PURE__ */ jsxs50("g", { opacity: "0.12", children: [
3144
+ /* @__PURE__ */ jsx71(
2858
3145
  "path",
2859
3146
  {
2860
3147
  d: "M18 8C19.6569 8 21 6.65685 21 5C21 3.34315 19.6569 2 18 2C16.3431 2 15 3.34315 15 5C15 6.65685 16.3431 8 18 8Z",
2861
3148
  fill: "currentColor"
2862
3149
  }
2863
3150
  ),
2864
- /* @__PURE__ */ jsx64(
3151
+ /* @__PURE__ */ jsx71(
2865
3152
  "path",
2866
3153
  {
2867
3154
  d: "M6 15C7.65685 15 9 13.6569 9 12C9 10.3431 7.65685 9 6 9C4.34315 9 3 10.3431 3 12C3 13.6569 4.34315 15 6 15Z",
2868
3155
  fill: "currentColor"
2869
3156
  }
2870
3157
  ),
2871
- /* @__PURE__ */ jsx64(
3158
+ /* @__PURE__ */ jsx71(
2872
3159
  "path",
2873
3160
  {
2874
3161
  d: "M18 22C19.6569 22 21 20.6569 21 19C21 17.3431 19.6569 16 18 16C16.3431 16 15 17.3431 15 19C15 20.6569 16.3431 22 18 22Z",
@@ -2876,7 +3163,7 @@ var ShareIcon = forwardRef63(
2876
3163
  }
2877
3164
  )
2878
3165
  ] }),
2879
- /* @__PURE__ */ jsx64(
3166
+ /* @__PURE__ */ jsx71(
2880
3167
  "path",
2881
3168
  {
2882
3169
  d: "M8.59 13.51L15.42 17.49M15.41 6.51L8.59 10.49M21 5C21 6.65685 19.6569 8 18 8C16.3431 8 15 6.65685 15 5C15 3.34315 16.3431 2 18 2C19.6569 2 21 3.34315 21 5ZM9 12C9 13.6569 7.65685 15 6 15C4.34315 15 3 13.6569 3 12C3 10.3431 4.34315 9 6 9C7.65685 9 9 10.3431 9 12ZM21 19C21 20.6569 19.6569 22 18 22C16.3431 22 15 20.6569 15 19C15 17.3431 16.3431 16 18 16C19.6569 16 21 17.3431 21 19Z",
@@ -2892,13 +3179,55 @@ var ShareIcon = forwardRef63(
2892
3179
  }
2893
3180
  );
2894
3181
 
3182
+ // src/icons/shareArrow.tsx
3183
+ import { forwardRef as forwardRef70 } from "react";
3184
+ import { jsx as jsx72, jsxs as jsxs51 } from "react/jsx-runtime";
3185
+ var ShareArrowIcon = forwardRef70(
3186
+ function ShareArrowIcon2(_a, ref) {
3187
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3188
+ return /* @__PURE__ */ jsxs51(
3189
+ "svg",
3190
+ __spreadProps(__spreadValues({
3191
+ ref,
3192
+ width: size,
3193
+ height: size,
3194
+ viewBox: "0 0 24 24",
3195
+ fill: "none",
3196
+ xmlns: "http://www.w3.org/2000/svg",
3197
+ className
3198
+ }, other), {
3199
+ children: [
3200
+ duotone && /* @__PURE__ */ jsx72(
3201
+ "path",
3202
+ {
3203
+ opacity: "0.12",
3204
+ d: "M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V14L10 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z",
3205
+ fill: "currentColor"
3206
+ }
3207
+ ),
3208
+ /* @__PURE__ */ jsx72(
3209
+ "path",
3210
+ {
3211
+ d: "M21 9.00001L21 3.00001M21 3.00001H15M21 3.00001L12 12M10 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V14",
3212
+ stroke: "currentColor",
3213
+ strokeWidth: "2",
3214
+ strokeLinecap: "round",
3215
+ strokeLinejoin: "round"
3216
+ }
3217
+ )
3218
+ ]
3219
+ })
3220
+ );
3221
+ }
3222
+ );
3223
+
2895
3224
  // src/icons/skipBack.tsx
2896
- import { forwardRef as forwardRef64 } from "react";
2897
- import { jsx as jsx65, jsxs as jsxs47 } from "react/jsx-runtime";
2898
- var SkipBackIcon = forwardRef64(
3225
+ import { forwardRef as forwardRef71 } from "react";
3226
+ import { jsx as jsx73, jsxs as jsxs52 } from "react/jsx-runtime";
3227
+ var SkipBackIcon = forwardRef71(
2899
3228
  function SkipBackIcon2(_a, ref) {
2900
3229
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2901
- return /* @__PURE__ */ jsxs47(
3230
+ return /* @__PURE__ */ jsxs52(
2902
3231
  "svg",
2903
3232
  __spreadProps(__spreadValues({
2904
3233
  ref,
@@ -2910,7 +3239,7 @@ var SkipBackIcon = forwardRef64(
2910
3239
  className
2911
3240
  }, other), {
2912
3241
  children: [
2913
- duotone && /* @__PURE__ */ jsx65(
3242
+ duotone && /* @__PURE__ */ jsx73(
2914
3243
  "path",
2915
3244
  {
2916
3245
  opacity: "0.12",
@@ -2918,7 +3247,7 @@ var SkipBackIcon = forwardRef64(
2918
3247
  fill: "currentColor"
2919
3248
  }
2920
3249
  ),
2921
- /* @__PURE__ */ jsx65(
3250
+ /* @__PURE__ */ jsx73(
2922
3251
  "path",
2923
3252
  {
2924
3253
  d: "M5 19V5M16.4005 6.07961L10.5617 10.7506C10.0279 11.1777 9.76097 11.3912 9.66433 11.6492C9.5796 11.8754 9.5796 12.1246 9.66433 12.3508C9.76097 12.6088 10.0279 12.8223 10.5617 13.2494L16.4005 17.9204C17.2327 18.5861 17.6487 18.919 17.9989 18.9194C18.3035 18.9197 18.5916 18.7812 18.7815 18.5432C19 18.2695 19 17.7367 19 16.671V7.329C19 6.2633 19 5.73045 18.7815 5.45677C18.5916 5.21876 18.3035 5.0803 17.9989 5.08063C17.6487 5.081 17.2327 5.41387 16.4005 6.07961Z",
@@ -2935,12 +3264,12 @@ var SkipBackIcon = forwardRef64(
2935
3264
  );
2936
3265
 
2937
3266
  // src/icons/skipForward.tsx
2938
- import { forwardRef as forwardRef65 } from "react";
2939
- import { jsx as jsx66, jsxs as jsxs48 } from "react/jsx-runtime";
2940
- var SkipForwardIcon = forwardRef65(
3267
+ import { forwardRef as forwardRef72 } from "react";
3268
+ import { jsx as jsx74, jsxs as jsxs53 } from "react/jsx-runtime";
3269
+ var SkipForwardIcon = forwardRef72(
2941
3270
  function SkipForwardIcon2(_a, ref) {
2942
3271
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2943
- return /* @__PURE__ */ jsxs48(
3272
+ return /* @__PURE__ */ jsxs53(
2944
3273
  "svg",
2945
3274
  __spreadProps(__spreadValues({
2946
3275
  ref,
@@ -2952,7 +3281,7 @@ var SkipForwardIcon = forwardRef65(
2952
3281
  className
2953
3282
  }, other), {
2954
3283
  children: [
2955
- duotone && /* @__PURE__ */ jsx66(
3284
+ duotone && /* @__PURE__ */ jsx74(
2956
3285
  "path",
2957
3286
  {
2958
3287
  opacity: "0.12",
@@ -2960,7 +3289,7 @@ var SkipForwardIcon = forwardRef65(
2960
3289
  fill: "currentColor"
2961
3290
  }
2962
3291
  ),
2963
- /* @__PURE__ */ jsx66(
3292
+ /* @__PURE__ */ jsx74(
2964
3293
  "path",
2965
3294
  {
2966
3295
  d: "M19 5V19M7.59951 17.9204L13.4383 13.2494C13.9721 12.8223 14.239 12.6088 14.3357 12.3508C14.4204 12.1246 14.4204 11.8754 14.3357 11.6492C14.239 11.3912 13.9721 11.1777 13.4383 10.7506L7.59951 6.07961C6.76734 5.41387 6.35125 5.081 6.00108 5.08063C5.69654 5.0803 5.40845 5.21876 5.21846 5.45677C5 5.73045 5 6.2633 5 7.329V16.671C5 17.7367 5 18.2695 5.21846 18.5432C5.40845 18.7812 5.69654 18.9197 6.00108 18.9194C6.35125 18.919 6.76734 18.5861 7.59951 17.9204Z",
@@ -2977,12 +3306,12 @@ var SkipForwardIcon = forwardRef65(
2977
3306
  );
2978
3307
 
2979
3308
  // src/icons/stars.tsx
2980
- import { forwardRef as forwardRef66 } from "react";
2981
- import { jsx as jsx67, jsxs as jsxs49 } from "react/jsx-runtime";
2982
- var StarsIcon = forwardRef66(
3309
+ import { forwardRef as forwardRef73 } from "react";
3310
+ import { jsx as jsx75, jsxs as jsxs54 } from "react/jsx-runtime";
3311
+ var StarsIcon = forwardRef73(
2983
3312
  function StarsIcon2(_a, ref) {
2984
3313
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2985
- return /* @__PURE__ */ jsxs49(
3314
+ return /* @__PURE__ */ jsxs54(
2986
3315
  "svg",
2987
3316
  __spreadProps(__spreadValues({
2988
3317
  ref,
@@ -2994,7 +3323,7 @@ var StarsIcon = forwardRef66(
2994
3323
  className
2995
3324
  }, other), {
2996
3325
  children: [
2997
- duotone && /* @__PURE__ */ jsx67(
3326
+ duotone && /* @__PURE__ */ jsx75(
2998
3327
  "path",
2999
3328
  {
3000
3329
  opacity: "0.12",
@@ -3002,7 +3331,7 @@ var StarsIcon = forwardRef66(
3002
3331
  fill: "currentColor"
3003
3332
  }
3004
3333
  ),
3005
- /* @__PURE__ */ jsx67(
3334
+ /* @__PURE__ */ jsx75(
3006
3335
  "path",
3007
3336
  {
3008
3337
  d: "M4.5 22V17M4.5 7V2M2 4.5H7M2 19.5H7M13 3L11.2658 7.50886C10.9838 8.24209 10.8428 8.60871 10.6235 8.91709C10.4292 9.1904 10.1904 9.42919 9.91709 9.62353C9.60871 9.8428 9.24209 9.98381 8.50886 10.2658L4 12L8.50886 13.7342C9.24209 14.0162 9.60871 14.1572 9.91709 14.3765C10.1904 14.5708 10.4292 14.8096 10.6235 15.0829C10.8428 15.3913 10.9838 15.7579 11.2658 16.4911L13 21L14.7342 16.4911C15.0162 15.7579 15.1572 15.3913 15.3765 15.0829C15.5708 14.8096 15.8096 14.5708 16.0829 14.3765C16.3913 14.1572 16.7579 14.0162 17.4911 13.7342L22 12L17.4911 10.2658C16.7579 9.98381 16.3913 9.8428 16.0829 9.62353C15.8096 9.42919 15.5708 9.1904 15.3765 8.91709C15.1572 8.60871 15.0162 8.24209 14.7342 7.50886L13 3Z",
@@ -3019,12 +3348,12 @@ var StarsIcon = forwardRef66(
3019
3348
  );
3020
3349
 
3021
3350
  // src/icons/trash.tsx
3022
- import { forwardRef as forwardRef67 } from "react";
3023
- import { jsx as jsx68, jsxs as jsxs50 } from "react/jsx-runtime";
3024
- var TrashIcon = forwardRef67(
3351
+ import { forwardRef as forwardRef74 } from "react";
3352
+ import { jsx as jsx76, jsxs as jsxs55 } from "react/jsx-runtime";
3353
+ var TrashIcon = forwardRef74(
3025
3354
  function TrashIcon2(_a, ref) {
3026
3355
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3027
- return /* @__PURE__ */ jsxs50(
3356
+ return /* @__PURE__ */ jsxs55(
3028
3357
  "svg",
3029
3358
  __spreadProps(__spreadValues({
3030
3359
  ref,
@@ -3036,7 +3365,7 @@ var TrashIcon = forwardRef67(
3036
3365
  className
3037
3366
  }, other), {
3038
3367
  children: [
3039
- duotone && /* @__PURE__ */ jsx68(
3368
+ duotone && /* @__PURE__ */ jsx76(
3040
3369
  "path",
3041
3370
  {
3042
3371
  opacity: "0.12",
@@ -3044,7 +3373,7 @@ var TrashIcon = forwardRef67(
3044
3373
  fill: "currentColor"
3045
3374
  }
3046
3375
  ),
3047
- /* @__PURE__ */ jsx68(
3376
+ /* @__PURE__ */ jsx76(
3048
3377
  "path",
3049
3378
  {
3050
3379
  d: "M9 3H15M3 6H21M19 6L18.2987 16.5193C18.1935 18.0975 18.1409 18.8867 17.8 19.485C17.4999 20.0118 17.0472 20.4353 16.5017 20.6997C15.882 21 15.0911 21 13.5093 21H10.4907C8.90891 21 8.11803 21 7.49834 20.6997C6.95276 20.4353 6.50009 20.0118 6.19998 19.485C5.85911 18.8867 5.8065 18.0975 5.70129 16.5193L5 6M10 10.5V15.5M14 10.5V15.5",
@@ -3061,12 +3390,12 @@ var TrashIcon = forwardRef67(
3061
3390
  );
3062
3391
 
3063
3392
  // src/icons/trendDown.tsx
3064
- import { forwardRef as forwardRef68 } from "react";
3065
- import { jsx as jsx69 } from "react/jsx-runtime";
3066
- var TrendDownIcon = forwardRef68(
3393
+ import { forwardRef as forwardRef75 } from "react";
3394
+ import { jsx as jsx77 } from "react/jsx-runtime";
3395
+ var TrendDownIcon = forwardRef75(
3067
3396
  function TrendDownIcon2(_a, ref) {
3068
3397
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3069
- return /* @__PURE__ */ jsx69(
3398
+ return /* @__PURE__ */ jsx77(
3070
3399
  "svg",
3071
3400
  __spreadProps(__spreadValues({
3072
3401
  ref,
@@ -3077,7 +3406,7 @@ var TrendDownIcon = forwardRef68(
3077
3406
  xmlns: "http://www.w3.org/2000/svg",
3078
3407
  className
3079
3408
  }, other), {
3080
- children: /* @__PURE__ */ jsx69(
3409
+ children: /* @__PURE__ */ jsx77(
3081
3410
  "path",
3082
3411
  {
3083
3412
  d: "M22 17L14.1314 9.13137C13.7354 8.73535 13.5373 8.53735 13.309 8.46316C13.1082 8.3979 12.8918 8.3979 12.691 8.46316C12.4627 8.53735 12.2646 8.73535 11.8686 9.13137L9.13137 11.8686C8.73535 12.2646 8.53735 12.4627 8.30902 12.5368C8.10817 12.6021 7.89183 12.6021 7.69098 12.5368C7.46265 12.4627 7.26465 12.2646 6.86863 11.8686L2 7M22 17H15M22 17V10",
@@ -3093,12 +3422,12 @@ var TrendDownIcon = forwardRef68(
3093
3422
  );
3094
3423
 
3095
3424
  // src/icons/trendUp.tsx
3096
- import { forwardRef as forwardRef69 } from "react";
3097
- import { jsx as jsx70 } from "react/jsx-runtime";
3098
- var TrendUpIcon = forwardRef69(
3425
+ import { forwardRef as forwardRef76 } from "react";
3426
+ import { jsx as jsx78 } from "react/jsx-runtime";
3427
+ var TrendUpIcon = forwardRef76(
3099
3428
  function TrendUpIcon2(_a, ref) {
3100
3429
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3101
- return /* @__PURE__ */ jsx70(
3430
+ return /* @__PURE__ */ jsx78(
3102
3431
  "svg",
3103
3432
  __spreadProps(__spreadValues({
3104
3433
  ref,
@@ -3109,7 +3438,7 @@ var TrendUpIcon = forwardRef69(
3109
3438
  xmlns: "http://www.w3.org/2000/svg",
3110
3439
  className
3111
3440
  }, other), {
3112
- children: /* @__PURE__ */ jsx70(
3441
+ children: /* @__PURE__ */ jsx78(
3113
3442
  "path",
3114
3443
  {
3115
3444
  d: "M22 7L14.1314 14.8686C13.7354 15.2646 13.5373 15.4627 13.309 15.5368C13.1082 15.6021 12.8918 15.6021 12.691 15.5368C12.4627 15.4627 12.2646 15.2646 11.8686 14.8686L9.13137 12.1314C8.73535 11.7354 8.53735 11.5373 8.30902 11.4632C8.10817 11.3979 7.89183 11.3979 7.69098 11.4632C7.46265 11.5373 7.26465 11.7354 6.86863 12.1314L2 17M22 7H15M22 7V14",
@@ -3125,11 +3454,11 @@ var TrendUpIcon = forwardRef69(
3125
3454
  );
3126
3455
 
3127
3456
  // src/icons/user.tsx
3128
- import { forwardRef as forwardRef70 } from "react";
3129
- import { jsx as jsx71, jsxs as jsxs51 } from "react/jsx-runtime";
3130
- var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
3457
+ import { forwardRef as forwardRef77 } from "react";
3458
+ import { jsx as jsx79, jsxs as jsxs56 } from "react/jsx-runtime";
3459
+ var UserIcon = forwardRef77(function UserIcon2(_a, ref) {
3131
3460
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3132
- return /* @__PURE__ */ jsxs51(
3461
+ return /* @__PURE__ */ jsxs56(
3133
3462
  "svg",
3134
3463
  __spreadProps(__spreadValues({
3135
3464
  ref,
@@ -3141,7 +3470,7 @@ var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
3141
3470
  className
3142
3471
  }, other), {
3143
3472
  children: [
3144
- duotone && /* @__PURE__ */ jsx71(
3473
+ duotone && /* @__PURE__ */ jsx79(
3145
3474
  "path",
3146
3475
  {
3147
3476
  opacity: "0.12",
@@ -3149,7 +3478,7 @@ var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
3149
3478
  fill: "currentColor"
3150
3479
  }
3151
3480
  ),
3152
- /* @__PURE__ */ jsx71(
3481
+ /* @__PURE__ */ jsx79(
3153
3482
  "path",
3154
3483
  {
3155
3484
  d: "M20 21C20 19.6044 20 18.9067 19.8278 18.3389C19.44 17.0605 18.4395 16.06 17.1611 15.6722C16.5933 15.5 15.8956 15.5 14.5 15.5H9.5C8.10444 15.5 7.40665 15.5 6.83886 15.6722C5.56045 16.06 4.56004 17.0605 4.17224 18.3389C4 18.9067 4 19.6044 4 21M16.5 7.5C16.5 9.98528 14.4853 12 12 12C9.51472 12 7.5 9.98528 7.5 7.5C7.5 5.01472 9.51472 3 12 3C14.4853 3 16.5 5.01472 16.5 7.5Z",
@@ -3165,12 +3494,12 @@ var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
3165
3494
  });
3166
3495
 
3167
3496
  // src/icons/userPlus.tsx
3168
- import { forwardRef as forwardRef71 } from "react";
3169
- import { jsx as jsx72, jsxs as jsxs52 } from "react/jsx-runtime";
3170
- var UserPlusIcon = forwardRef71(
3497
+ import { forwardRef as forwardRef78 } from "react";
3498
+ import { jsx as jsx80, jsxs as jsxs57 } from "react/jsx-runtime";
3499
+ var UserPlusIcon = forwardRef78(
3171
3500
  function UserPlusIcon2(_a, ref) {
3172
3501
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3173
- return /* @__PURE__ */ jsxs52(
3502
+ return /* @__PURE__ */ jsxs57(
3174
3503
  "svg",
3175
3504
  __spreadProps(__spreadValues({
3176
3505
  ref,
@@ -3182,7 +3511,7 @@ var UserPlusIcon = forwardRef71(
3182
3511
  className
3183
3512
  }, other), {
3184
3513
  children: [
3185
- duotone && /* @__PURE__ */ jsx72(
3514
+ duotone && /* @__PURE__ */ jsx80(
3186
3515
  "path",
3187
3516
  {
3188
3517
  opacity: "0.12",
@@ -3190,7 +3519,7 @@ var UserPlusIcon = forwardRef71(
3190
3519
  fill: "currentColor"
3191
3520
  }
3192
3521
  ),
3193
- /* @__PURE__ */ jsx72(
3522
+ /* @__PURE__ */ jsx80(
3194
3523
  "path",
3195
3524
  {
3196
3525
  d: "M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M19 21V15M16 18H22M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z",
@@ -3207,12 +3536,12 @@ var UserPlusIcon = forwardRef71(
3207
3536
  );
3208
3537
 
3209
3538
  // src/icons/userX.tsx
3210
- import { forwardRef as forwardRef72 } from "react";
3211
- import { jsx as jsx73, jsxs as jsxs53 } from "react/jsx-runtime";
3212
- var UserXIcon = forwardRef72(
3539
+ import { forwardRef as forwardRef79 } from "react";
3540
+ import { jsx as jsx81, jsxs as jsxs58 } from "react/jsx-runtime";
3541
+ var UserXIcon = forwardRef79(
3213
3542
  function UserXIcon2(_a, ref) {
3214
3543
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3215
- return /* @__PURE__ */ jsxs53(
3544
+ return /* @__PURE__ */ jsxs58(
3216
3545
  "svg",
3217
3546
  __spreadProps(__spreadValues({
3218
3547
  ref,
@@ -3224,7 +3553,7 @@ var UserXIcon = forwardRef72(
3224
3553
  className
3225
3554
  }, other), {
3226
3555
  children: [
3227
- duotone && /* @__PURE__ */ jsx73(
3556
+ duotone && /* @__PURE__ */ jsx81(
3228
3557
  "path",
3229
3558
  {
3230
3559
  opacity: "0.12",
@@ -3232,7 +3561,7 @@ var UserXIcon = forwardRef72(
3232
3561
  fill: "currentColor"
3233
3562
  }
3234
3563
  ),
3235
- /* @__PURE__ */ jsx73(
3564
+ /* @__PURE__ */ jsx81(
3236
3565
  "path",
3237
3566
  {
3238
3567
  d: "M16.5 16L21.5 21M21.5 16L16.5 21M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z",
@@ -3249,12 +3578,12 @@ var UserXIcon = forwardRef72(
3249
3578
  );
3250
3579
 
3251
3580
  // src/icons/users.tsx
3252
- import { forwardRef as forwardRef73 } from "react";
3253
- import { jsx as jsx74, jsxs as jsxs54 } from "react/jsx-runtime";
3254
- var UsersIcon = forwardRef73(
3581
+ import { forwardRef as forwardRef80 } from "react";
3582
+ import { jsx as jsx82, jsxs as jsxs59 } from "react/jsx-runtime";
3583
+ var UsersIcon = forwardRef80(
3255
3584
  function UsersIcon2(_a, ref) {
3256
3585
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3257
- return /* @__PURE__ */ jsxs54(
3586
+ return /* @__PURE__ */ jsxs59(
3258
3587
  "svg",
3259
3588
  __spreadProps(__spreadValues({
3260
3589
  ref,
@@ -3266,7 +3595,7 @@ var UsersIcon = forwardRef73(
3266
3595
  className
3267
3596
  }, other), {
3268
3597
  children: [
3269
- duotone && /* @__PURE__ */ jsx74(
3598
+ duotone && /* @__PURE__ */ jsx82(
3270
3599
  "path",
3271
3600
  {
3272
3601
  opacity: "0.12",
@@ -3274,7 +3603,7 @@ var UsersIcon = forwardRef73(
3274
3603
  fill: "currentColor"
3275
3604
  }
3276
3605
  ),
3277
- /* @__PURE__ */ jsx74(
3606
+ /* @__PURE__ */ jsx82(
3278
3607
  "path",
3279
3608
  {
3280
3609
  d: "M22 21V19C22 17.1362 20.7252 15.5701 19 15.126M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M17 21C17 19.1362 17 18.2044 16.6955 17.4693C16.2895 16.4892 15.5108 15.7105 14.5307 15.3045C13.7956 15 12.8638 15 11 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
@@ -3291,12 +3620,12 @@ var UsersIcon = forwardRef73(
3291
3620
  );
3292
3621
 
3293
3622
  // src/icons/usersPlus.tsx
3294
- import { forwardRef as forwardRef74 } from "react";
3295
- import { jsx as jsx75, jsxs as jsxs55 } from "react/jsx-runtime";
3296
- var UsersPlusIcon = forwardRef74(
3623
+ import { forwardRef as forwardRef81 } from "react";
3624
+ import { jsx as jsx83, jsxs as jsxs60 } from "react/jsx-runtime";
3625
+ var UsersPlusIcon = forwardRef81(
3297
3626
  function UsersPlusIcon2(_a, ref) {
3298
3627
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3299
- return /* @__PURE__ */ jsxs55(
3628
+ return /* @__PURE__ */ jsxs60(
3300
3629
  "svg",
3301
3630
  __spreadProps(__spreadValues({
3302
3631
  ref,
@@ -3308,7 +3637,7 @@ var UsersPlusIcon = forwardRef74(
3308
3637
  className
3309
3638
  }, other), {
3310
3639
  children: [
3311
- duotone && /* @__PURE__ */ jsx75(
3640
+ duotone && /* @__PURE__ */ jsx83(
3312
3641
  "path",
3313
3642
  {
3314
3643
  opacity: "0.12",
@@ -3316,7 +3645,7 @@ var UsersPlusIcon = forwardRef74(
3316
3645
  fill: "currentColor"
3317
3646
  }
3318
3647
  ),
3319
- /* @__PURE__ */ jsx75(
3648
+ /* @__PURE__ */ jsx83(
3320
3649
  "path",
3321
3650
  {
3322
3651
  d: "M19 21V15M16 18H22M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
@@ -3333,12 +3662,12 @@ var UsersPlusIcon = forwardRef74(
3333
3662
  );
3334
3663
 
3335
3664
  // src/icons/usersX.tsx
3336
- import { forwardRef as forwardRef75 } from "react";
3337
- import { jsx as jsx76, jsxs as jsxs56 } from "react/jsx-runtime";
3338
- var UsersXIcon = forwardRef75(
3665
+ import { forwardRef as forwardRef82 } from "react";
3666
+ import { jsx as jsx84, jsxs as jsxs61 } from "react/jsx-runtime";
3667
+ var UsersXIcon = forwardRef82(
3339
3668
  function UsersXIcon2(_a, ref) {
3340
3669
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3341
- return /* @__PURE__ */ jsxs56(
3670
+ return /* @__PURE__ */ jsxs61(
3342
3671
  "svg",
3343
3672
  __spreadProps(__spreadValues({
3344
3673
  ref,
@@ -3350,7 +3679,7 @@ var UsersXIcon = forwardRef75(
3350
3679
  className
3351
3680
  }, other), {
3352
3681
  children: [
3353
- duotone && /* @__PURE__ */ jsx76(
3682
+ duotone && /* @__PURE__ */ jsx84(
3354
3683
  "path",
3355
3684
  {
3356
3685
  opacity: "0.12",
@@ -3358,7 +3687,7 @@ var UsersXIcon = forwardRef75(
3358
3687
  fill: "currentColor"
3359
3688
  }
3360
3689
  ),
3361
- /* @__PURE__ */ jsx76(
3690
+ /* @__PURE__ */ jsx84(
3362
3691
  "path",
3363
3692
  {
3364
3693
  d: "M16.5 16L21.5 21M21.5 16L16.5 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
@@ -3375,12 +3704,12 @@ var UsersXIcon = forwardRef75(
3375
3704
  );
3376
3705
 
3377
3706
  // src/icons/videoRecorder.tsx
3378
- import { forwardRef as forwardRef76 } from "react";
3379
- import { jsx as jsx77, jsxs as jsxs57 } from "react/jsx-runtime";
3380
- var VideoRecorderIcon = forwardRef76(
3707
+ import { forwardRef as forwardRef83 } from "react";
3708
+ import { jsx as jsx85, jsxs as jsxs62 } from "react/jsx-runtime";
3709
+ var VideoRecorderIcon = forwardRef83(
3381
3710
  function VideoRecorderIcon2(_a, ref) {
3382
3711
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3383
- return /* @__PURE__ */ jsxs57(
3712
+ return /* @__PURE__ */ jsxs62(
3384
3713
  "svg",
3385
3714
  __spreadProps(__spreadValues({
3386
3715
  ref,
@@ -3392,7 +3721,7 @@ var VideoRecorderIcon = forwardRef76(
3392
3721
  className
3393
3722
  }, other), {
3394
3723
  children: [
3395
- duotone && /* @__PURE__ */ jsx77(
3724
+ duotone && /* @__PURE__ */ jsx85(
3396
3725
  "path",
3397
3726
  {
3398
3727
  opacity: "0.12",
@@ -3404,7 +3733,7 @@ var VideoRecorderIcon = forwardRef76(
3404
3733
  strokeLinejoin: "round"
3405
3734
  }
3406
3735
  ),
3407
- /* @__PURE__ */ jsx77(
3736
+ /* @__PURE__ */ jsx85(
3408
3737
  "path",
3409
3738
  {
3410
3739
  d: "M22 8.93137C22 8.32555 22 8.02265 21.8802 7.88238C21.7763 7.76068 21.6203 7.69609 21.4608 7.70865C21.2769 7.72312 21.0627 7.93731 20.6343 8.36569L17 12L20.6343 15.6343C21.0627 16.0627 21.2769 16.2769 21.4608 16.2914C21.6203 16.3039 21.7763 16.2393 21.8802 16.1176C22 15.9774 22 15.6744 22 15.0686V8.93137Z",
@@ -3415,7 +3744,7 @@ var VideoRecorderIcon = forwardRef76(
3415
3744
  }
3416
3745
  ),
3417
3746
  ",",
3418
- /* @__PURE__ */ jsx77(
3747
+ /* @__PURE__ */ jsx85(
3419
3748
  "path",
3420
3749
  {
3421
3750
  d: "M2 9.8C2 8.11984 2 7.27976 2.32698 6.63803C2.6146 6.07354 3.07354 5.6146 3.63803 5.32698C4.27976 5 5.11984 5 6.8 5H12.2C13.8802 5 14.7202 5 15.362 5.32698C15.9265 5.6146 16.3854 6.07354 16.673 6.63803C17 7.27976 17 8.11984 17 9.8V14.2C17 15.8802 17 16.7202 16.673 17.362C16.3854 17.9265 15.9265 18.3854 15.362 18.673C14.7202 19 13.8802 19 12.2 19H6.8C5.11984 19 4.27976 19 3.63803 18.673C3.07354 18.3854 2.6146 17.9265 2.32698 17.362C2 16.7202 2 15.8802 2 14.2V9.8Z",
@@ -3432,12 +3761,12 @@ var VideoRecorderIcon = forwardRef76(
3432
3761
  );
3433
3762
 
3434
3763
  // src/icons/videoRecorderOff.tsx
3435
- import { forwardRef as forwardRef77 } from "react";
3436
- import { jsx as jsx78, jsxs as jsxs58 } from "react/jsx-runtime";
3437
- var VideoRecorderOffIcon = forwardRef77(
3764
+ import { forwardRef as forwardRef84 } from "react";
3765
+ import { jsx as jsx86, jsxs as jsxs63 } from "react/jsx-runtime";
3766
+ var VideoRecorderOffIcon = forwardRef84(
3438
3767
  function VideoRecorderOffIcon2(_a, ref) {
3439
3768
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3440
- return /* @__PURE__ */ jsxs58(
3769
+ return /* @__PURE__ */ jsxs63(
3441
3770
  "svg",
3442
3771
  __spreadProps(__spreadValues({
3443
3772
  ref,
@@ -3449,7 +3778,7 @@ var VideoRecorderOffIcon = forwardRef77(
3449
3778
  className
3450
3779
  }, other), {
3451
3780
  children: [
3452
- duotone && /* @__PURE__ */ jsx78(
3781
+ duotone && /* @__PURE__ */ jsx86(
3453
3782
  "path",
3454
3783
  {
3455
3784
  opacity: "0.12",
@@ -3461,7 +3790,7 @@ var VideoRecorderOffIcon = forwardRef77(
3461
3790
  strokeLinejoin: "round"
3462
3791
  }
3463
3792
  ),
3464
- /* @__PURE__ */ jsx78(
3793
+ /* @__PURE__ */ jsx86(
3465
3794
  "path",
3466
3795
  {
3467
3796
  d: "M5 5C3.34315 5 2 6.34315 2 8V16C2 17.6569 3.34315 19 5 19H14C15.3527 19 16.4962 18.1048 16.8705 16.8745M17 12L20.6343 8.36569C21.0627 7.93731 21.2769 7.72312 21.4608 7.70865C21.6203 7.69609 21.7763 7.76068 21.8802 7.88238C22 8.02265 22 8.32556 22 8.93137V15.0686C22 15.6744 22 15.9774 21.8802 16.1176C21.7763 16.2393 21.6203 16.3039 21.4608 16.2914C21.2769 16.2769 21.0627 16.0627 20.6343 15.6343L17 12ZM17 12V9.8C17 8.11984 17 7.27976 16.673 6.63803C16.3854 6.07354 15.9265 5.6146 15.362 5.32698C14.7202 5 13.8802 5 12.2 5H9.5M2 2L22 22",
@@ -3478,12 +3807,12 @@ var VideoRecorderOffIcon = forwardRef77(
3478
3807
  );
3479
3808
 
3480
3809
  // src/icons/volumeMax.tsx
3481
- import { forwardRef as forwardRef78 } from "react";
3482
- import { jsx as jsx79, jsxs as jsxs59 } from "react/jsx-runtime";
3483
- var VolumeMaxIcon = forwardRef78(
3810
+ import { forwardRef as forwardRef85 } from "react";
3811
+ import { jsx as jsx87, jsxs as jsxs64 } from "react/jsx-runtime";
3812
+ var VolumeMaxIcon = forwardRef85(
3484
3813
  function VolumeMaxIcon2(_a, ref) {
3485
3814
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3486
- return /* @__PURE__ */ jsxs59(
3815
+ return /* @__PURE__ */ jsxs64(
3487
3816
  "svg",
3488
3817
  __spreadProps(__spreadValues({
3489
3818
  ref,
@@ -3495,7 +3824,7 @@ var VolumeMaxIcon = forwardRef78(
3495
3824
  className
3496
3825
  }, other), {
3497
3826
  children: [
3498
- duotone && /* @__PURE__ */ jsx79(
3827
+ duotone && /* @__PURE__ */ jsx87(
3499
3828
  "path",
3500
3829
  {
3501
3830
  opacity: "0.12",
@@ -3503,7 +3832,7 @@ var VolumeMaxIcon = forwardRef78(
3503
3832
  fill: "currentColor"
3504
3833
  }
3505
3834
  ),
3506
- /* @__PURE__ */ jsx79(
3835
+ /* @__PURE__ */ jsx87(
3507
3836
  "path",
3508
3837
  {
3509
3838
  d: "M19.7479 4.99999C21.1652 6.97023 22 9.38762 22 12C22 14.6124 21.1652 17.0298 19.7479 19M15.7453 7.99999C16.5362 9.13382 17 10.5127 17 12C17 13.4872 16.5362 14.8662 15.7453 16M9.63432 4.36567L6.46863 7.53136C6.29568 7.70431 6.2092 7.79079 6.10828 7.85263C6.01881 7.90746 5.92127 7.94786 5.81923 7.97236C5.70414 7.99999 5.58185 7.99999 5.33726 7.99999H3.6C3.03995 7.99999 2.75992 7.99999 2.54601 8.10898C2.35785 8.20485 2.20487 8.35784 2.10899 8.546C2 8.75991 2 9.03994 2 9.59999V14.4C2 14.96 2 15.2401 2.10899 15.454C2.20487 15.6421 2.35785 15.7951 2.54601 15.891C2.75992 16 3.03995 16 3.6 16H5.33726C5.58185 16 5.70414 16 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2092 6.29568 16.2957 6.46863 16.4686L9.63431 19.6343C10.0627 20.0627 10.2769 20.2769 10.4608 20.2913C10.6203 20.3039 10.7763 20.2393 10.8802 20.1176C11 19.9773 11 19.6744 11 19.0686V4.93136C11 4.32554 11 4.02264 10.8802 3.88237C10.7763 3.76067 10.6203 3.69608 10.4608 3.70864C10.2769 3.72311 10.0627 3.9373 9.63432 4.36567Z",
@@ -3520,12 +3849,12 @@ var VolumeMaxIcon = forwardRef78(
3520
3849
  );
3521
3850
 
3522
3851
  // src/icons/volumeX.tsx
3523
- import { forwardRef as forwardRef79 } from "react";
3524
- import { jsx as jsx80, jsxs as jsxs60 } from "react/jsx-runtime";
3525
- var VolumeXIcon = forwardRef79(
3852
+ import { forwardRef as forwardRef86 } from "react";
3853
+ import { jsx as jsx88, jsxs as jsxs65 } from "react/jsx-runtime";
3854
+ var VolumeXIcon = forwardRef86(
3526
3855
  function VolumeXIcon2(_a, ref) {
3527
3856
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3528
- return /* @__PURE__ */ jsxs60(
3857
+ return /* @__PURE__ */ jsxs65(
3529
3858
  "svg",
3530
3859
  __spreadProps(__spreadValues({
3531
3860
  ref,
@@ -3537,7 +3866,7 @@ var VolumeXIcon = forwardRef79(
3537
3866
  className
3538
3867
  }, other), {
3539
3868
  children: [
3540
- duotone && /* @__PURE__ */ jsx80(
3869
+ duotone && /* @__PURE__ */ jsx88(
3541
3870
  "path",
3542
3871
  {
3543
3872
  opacity: "0.12",
@@ -3545,7 +3874,7 @@ var VolumeXIcon = forwardRef79(
3545
3874
  fill: "currentColor"
3546
3875
  }
3547
3876
  ),
3548
- /* @__PURE__ */ jsx80(
3877
+ /* @__PURE__ */ jsx88(
3549
3878
  "path",
3550
3879
  {
3551
3880
  d: "M22 8.99999L16 15M16 8.99999L22 15M9.63432 4.36567L6.46863 7.53136C6.29568 7.70431 6.2092 7.79079 6.10828 7.85263C6.01881 7.90746 5.92127 7.94786 5.81923 7.97236C5.70414 7.99999 5.58185 7.99999 5.33726 7.99999H3.6C3.03995 7.99999 2.75992 7.99999 2.54601 8.10898C2.35785 8.20485 2.20487 8.35784 2.10899 8.546C2 8.75991 2 9.03994 2 9.59999V14.4C2 14.96 2 15.2401 2.10899 15.454C2.20487 15.6421 2.35785 15.7951 2.54601 15.891C2.75992 16 3.03995 16 3.6 16H5.33726C5.58185 16 5.70414 16 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2092 6.29568 16.2957 6.46863 16.4686L9.63431 19.6343C10.0627 20.0627 10.2769 20.2769 10.4608 20.2913C10.6203 20.3039 10.7763 20.2393 10.8802 20.1176C11 19.9773 11 19.6744 11 19.0686V4.93136C11 4.32554 11 4.02264 10.8802 3.88237C10.7763 3.76067 10.6203 3.69608 10.4608 3.70864C10.2769 3.72311 10.0627 3.9373 9.63432 4.36567Z",
@@ -3562,12 +3891,12 @@ var VolumeXIcon = forwardRef79(
3562
3891
  );
3563
3892
 
3564
3893
  // src/icons/xCircle.tsx
3565
- import { forwardRef as forwardRef80 } from "react";
3566
- import { jsx as jsx81, jsxs as jsxs61 } from "react/jsx-runtime";
3567
- var XCircleIcon = forwardRef80(
3894
+ import { forwardRef as forwardRef87 } from "react";
3895
+ import { jsx as jsx89, jsxs as jsxs66 } from "react/jsx-runtime";
3896
+ var XCircleIcon = forwardRef87(
3568
3897
  function XCircleIcon2(_a, ref) {
3569
3898
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3570
- return /* @__PURE__ */ jsxs61(
3899
+ return /* @__PURE__ */ jsxs66(
3571
3900
  "svg",
3572
3901
  __spreadProps(__spreadValues({
3573
3902
  ref,
@@ -3579,7 +3908,7 @@ var XCircleIcon = forwardRef80(
3579
3908
  className
3580
3909
  }, other), {
3581
3910
  children: [
3582
- duotone && /* @__PURE__ */ jsx81(
3911
+ duotone && /* @__PURE__ */ jsx89(
3583
3912
  "path",
3584
3913
  {
3585
3914
  opacity: "0.12",
@@ -3587,7 +3916,7 @@ var XCircleIcon = forwardRef80(
3587
3916
  fill: "currentColor"
3588
3917
  }
3589
3918
  ),
3590
- /* @__PURE__ */ jsx81(
3919
+ /* @__PURE__ */ jsx89(
3591
3920
  "path",
3592
3921
  {
3593
3922
  d: "M15 9L9 15M9 9L15 15M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
@@ -3604,12 +3933,12 @@ var XCircleIcon = forwardRef80(
3604
3933
  );
3605
3934
 
3606
3935
  // src/icons/xClose.tsx
3607
- import { forwardRef as forwardRef81 } from "react";
3608
- import { jsx as jsx82 } from "react/jsx-runtime";
3609
- var XCloseIcon = forwardRef81(
3936
+ import { forwardRef as forwardRef88 } from "react";
3937
+ import { jsx as jsx90 } from "react/jsx-runtime";
3938
+ var XCloseIcon = forwardRef88(
3610
3939
  function XCloseIcon2(_a, ref) {
3611
3940
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3612
- return /* @__PURE__ */ jsx82(
3941
+ return /* @__PURE__ */ jsx90(
3613
3942
  "svg",
3614
3943
  __spreadProps(__spreadValues({
3615
3944
  ref,
@@ -3620,7 +3949,7 @@ var XCloseIcon = forwardRef81(
3620
3949
  xmlns: "http://www.w3.org/2000/svg",
3621
3950
  className
3622
3951
  }, other), {
3623
- children: /* @__PURE__ */ jsx82(
3952
+ children: /* @__PURE__ */ jsx90(
3624
3953
  "path",
3625
3954
  {
3626
3955
  d: "M18 6L6 18M6 6L18 18",
@@ -3636,7 +3965,7 @@ var XCloseIcon = forwardRef81(
3636
3965
  );
3637
3966
 
3638
3967
  // src/components/Calendar/Calendar.tsx
3639
- import { jsx as jsx83 } from "react/jsx-runtime";
3968
+ import { jsx as jsx91 } from "react/jsx-runtime";
3640
3969
  function Calendar(_a) {
3641
3970
  var _b = _a, {
3642
3971
  className,
@@ -3647,7 +3976,7 @@ function Calendar(_a) {
3647
3976
  "classNames",
3648
3977
  "showOutsideDays"
3649
3978
  ]);
3650
- return /* @__PURE__ */ jsx83(
3979
+ return /* @__PURE__ */ jsx91(
3651
3980
  DayPicker,
3652
3981
  __spreadValues({
3653
3982
  showOutsideDays,
@@ -3679,11 +4008,11 @@ function Calendar(_a) {
3679
4008
  components: {
3680
4009
  IconLeft: (_a2) => {
3681
4010
  var props2 = __objRest(_a2, []);
3682
- return /* @__PURE__ */ jsx83(ChevronLeftIcon, { className: "h-3 w-3" });
4011
+ return /* @__PURE__ */ jsx91(ChevronLeftIcon, { className: "h-3 w-3" });
3683
4012
  },
3684
4013
  IconRight: (_b2) => {
3685
4014
  var props2 = __objRest(_b2, []);
3686
- return /* @__PURE__ */ jsx83(ChevronRightIcon, { className: "h-3 w-3" });
4015
+ return /* @__PURE__ */ jsx91(ChevronRightIcon, { className: "h-3 w-3" });
3687
4016
  }
3688
4017
  }
3689
4018
  }, props)
@@ -3692,9 +4021,9 @@ function Calendar(_a) {
3692
4021
  Calendar.displayName = "Calendar";
3693
4022
 
3694
4023
  // src/components/Dialog/Dialog.tsx
3695
- import * as React4 from "react";
4024
+ import * as React5 from "react";
3696
4025
  import * as DialogPrimitive from "@radix-ui/react-dialog";
3697
- import { jsx as jsx84, jsxs as jsxs62 } from "react/jsx-runtime";
4026
+ import { jsx as jsx92, jsxs as jsxs67 } from "react/jsx-runtime";
3698
4027
  var Dialog = DialogPrimitive.Root;
3699
4028
  var DialogTrigger = DialogPrimitive.Trigger;
3700
4029
  var DialogPortal = (_a) => {
@@ -3703,12 +4032,12 @@ var DialogPortal = (_a) => {
3703
4032
  } = _b, props = __objRest(_b, [
3704
4033
  "className"
3705
4034
  ]);
3706
- return /* @__PURE__ */ jsx84(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
4035
+ return /* @__PURE__ */ jsx92(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
3707
4036
  };
3708
4037
  DialogPortal.displayName = DialogPrimitive.Portal.displayName;
3709
- var DialogOverlay = React4.forwardRef((_a, ref) => {
4038
+ var DialogOverlay = React5.forwardRef((_a, ref) => {
3710
4039
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3711
- return /* @__PURE__ */ jsx84(
4040
+ return /* @__PURE__ */ jsx92(
3712
4041
  DialogPrimitive.Overlay,
3713
4042
  __spreadValues({
3714
4043
  ref,
@@ -3720,11 +4049,11 @@ var DialogOverlay = React4.forwardRef((_a, ref) => {
3720
4049
  );
3721
4050
  });
3722
4051
  DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
3723
- var DialogContent = React4.forwardRef((_a, ref) => {
4052
+ var DialogContent = React5.forwardRef((_a, ref) => {
3724
4053
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
3725
- return /* @__PURE__ */ jsxs62(DialogPortal, { children: [
3726
- /* @__PURE__ */ jsx84(DialogOverlay, {}),
3727
- /* @__PURE__ */ jsxs62(
4054
+ return /* @__PURE__ */ jsxs67(DialogPortal, { children: [
4055
+ /* @__PURE__ */ jsx92(DialogOverlay, {}),
4056
+ /* @__PURE__ */ jsxs67(
3728
4057
  DialogPrimitive.Content,
3729
4058
  __spreadProps(__spreadValues({
3730
4059
  ref,
@@ -3735,7 +4064,7 @@ var DialogContent = React4.forwardRef((_a, ref) => {
3735
4064
  }, props), {
3736
4065
  children: [
3737
4066
  children,
3738
- /* @__PURE__ */ jsxs62(
4067
+ /* @__PURE__ */ jsxs67(
3739
4068
  DialogPrimitive.Close,
3740
4069
  {
3741
4070
  className: cn(
@@ -3744,8 +4073,8 @@ var DialogContent = React4.forwardRef((_a, ref) => {
3744
4073
  "absolute right-6 top-6"
3745
4074
  ),
3746
4075
  children: [
3747
- /* @__PURE__ */ jsx84(XCloseIcon, { className: "h-3 w-3" }),
3748
- /* @__PURE__ */ jsx84("span", { className: "sr-only", children: "Close" })
4076
+ /* @__PURE__ */ jsx92(XCloseIcon, { className: "h-3 w-3" }),
4077
+ /* @__PURE__ */ jsx92("span", { className: "sr-only", children: "Close" })
3749
4078
  ]
3750
4079
  }
3751
4080
  )
@@ -3761,7 +4090,7 @@ var DialogHeader = (_a) => {
3761
4090
  } = _b, props = __objRest(_b, [
3762
4091
  "className"
3763
4092
  ]);
3764
- return /* @__PURE__ */ jsx84(
4093
+ return /* @__PURE__ */ jsx92(
3765
4094
  "div",
3766
4095
  __spreadValues({
3767
4096
  className: cn(
@@ -3778,7 +4107,7 @@ var DialogFooter = (_a) => {
3778
4107
  } = _b, props = __objRest(_b, [
3779
4108
  "className"
3780
4109
  ]);
3781
- return /* @__PURE__ */ jsx84(
4110
+ return /* @__PURE__ */ jsx92(
3782
4111
  "div",
3783
4112
  __spreadValues({
3784
4113
  className: cn(
@@ -3789,9 +4118,9 @@ var DialogFooter = (_a) => {
3789
4118
  );
3790
4119
  };
3791
4120
  DialogFooter.displayName = "DialogFooter";
3792
- var DialogTitle = React4.forwardRef((_a, ref) => {
4121
+ var DialogTitle = React5.forwardRef((_a, ref) => {
3793
4122
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3794
- return /* @__PURE__ */ jsx84(
4123
+ return /* @__PURE__ */ jsx92(
3795
4124
  DialogPrimitive.Title,
3796
4125
  __spreadValues({
3797
4126
  ref,
@@ -3800,9 +4129,9 @@ var DialogTitle = React4.forwardRef((_a, ref) => {
3800
4129
  );
3801
4130
  });
3802
4131
  DialogTitle.displayName = DialogPrimitive.Title.displayName;
3803
- var DialogDescription = React4.forwardRef((_a, ref) => {
4132
+ var DialogDescription = React5.forwardRef((_a, ref) => {
3804
4133
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3805
- return /* @__PURE__ */ jsx84(
4134
+ return /* @__PURE__ */ jsx92(
3806
4135
  DialogPrimitive.Description,
3807
4136
  __spreadValues({
3808
4137
  ref,
@@ -3813,14 +4142,14 @@ var DialogDescription = React4.forwardRef((_a, ref) => {
3813
4142
  DialogDescription.displayName = DialogPrimitive.Description.displayName;
3814
4143
 
3815
4144
  // src/components/Popover/Popover.tsx
3816
- import * as React5 from "react";
4145
+ import * as React6 from "react";
3817
4146
  import * as PopoverPrimitive from "@radix-ui/react-popover";
3818
- import { jsx as jsx85 } from "react/jsx-runtime";
4147
+ import { jsx as jsx93 } from "react/jsx-runtime";
3819
4148
  var Popover = PopoverPrimitive.Root;
3820
4149
  var PopoverTrigger = PopoverPrimitive.Trigger;
3821
- var PopoverContent = React5.forwardRef((_a, ref) => {
4150
+ var PopoverContent = React6.forwardRef((_a, ref) => {
3822
4151
  var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
3823
- return /* @__PURE__ */ jsx85(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx85(
4152
+ return /* @__PURE__ */ jsx93(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx93(
3824
4153
  PopoverPrimitive.Content,
3825
4154
  __spreadValues({
3826
4155
  ref,
@@ -3835,14 +4164,35 @@ var PopoverContent = React5.forwardRef((_a, ref) => {
3835
4164
  });
3836
4165
  PopoverContent.displayName = PopoverPrimitive.Content.displayName;
3837
4166
 
4167
+ // src/components/Switch/Switch.tsx
4168
+ import * as React7 from "react";
4169
+ import * as SwitchPrimitive from "@radix-ui/react-switch";
4170
+ import { jsx as jsx94 } from "react/jsx-runtime";
4171
+ var Switch = React7.forwardRef((_a, ref) => {
4172
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4173
+ return /* @__PURE__ */ jsx94(
4174
+ SwitchPrimitive.Root,
4175
+ __spreadProps(__spreadValues({
4176
+ className: cn(
4177
+ "box-border text-left relative w-[42px] h-6 bg-transparent border-2 border-gray-600 rounded-full data-[state=checked]:border-blue-700 data-[state=checked]:bg-blue-700 data-[disabled]:data-[state=unchecked]:bg-gray-300 data-[disabled]:opacity-50 data-[disabled]:cursor-not-allowed",
4178
+ className
4179
+ )
4180
+ }, props), {
4181
+ ref,
4182
+ children: /* @__PURE__ */ jsx94(SwitchPrimitive.Thumb, { className: "inline-block w-4 h-4 bg-gray-600 rounded-full translate-x-0.5 data-[state=checked]:translate-x-5 data-[state=checked]:bg-white transition-transform ease-linear will-change-transform" })
4183
+ })
4184
+ );
4185
+ });
4186
+ Switch.displayName = SwitchPrimitive.Root.displayName;
4187
+
3838
4188
  // src/components/Tabs/Tabs.tsx
3839
- import * as React6 from "react";
4189
+ import * as React8 from "react";
3840
4190
  import * as TabsPrimitive from "@radix-ui/react-tabs";
3841
- import { jsx as jsx86 } from "react/jsx-runtime";
4191
+ import { jsx as jsx95 } from "react/jsx-runtime";
3842
4192
  var Tabs = TabsPrimitive.Root;
3843
- var TabsList = React6.forwardRef((_a, ref) => {
4193
+ var TabsList = React8.forwardRef((_a, ref) => {
3844
4194
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3845
- return /* @__PURE__ */ jsx86(
4195
+ return /* @__PURE__ */ jsx95(
3846
4196
  TabsPrimitive.List,
3847
4197
  __spreadValues({
3848
4198
  ref,
@@ -3854,9 +4204,9 @@ var TabsList = React6.forwardRef((_a, ref) => {
3854
4204
  );
3855
4205
  });
3856
4206
  TabsList.displayName = TabsPrimitive.List.displayName;
3857
- var TabsTrigger = React6.forwardRef((_a, ref) => {
4207
+ var TabsTrigger = React8.forwardRef((_a, ref) => {
3858
4208
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3859
- return /* @__PURE__ */ jsx86(
4209
+ return /* @__PURE__ */ jsx95(
3860
4210
  TabsPrimitive.Trigger,
3861
4211
  __spreadValues({
3862
4212
  ref,
@@ -3871,9 +4221,9 @@ var TabsTrigger = React6.forwardRef((_a, ref) => {
3871
4221
  );
3872
4222
  });
3873
4223
  TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
3874
- var TabsContent = React6.forwardRef((_a, ref) => {
4224
+ var TabsContent = React8.forwardRef((_a, ref) => {
3875
4225
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3876
- return /* @__PURE__ */ jsx86(
4226
+ return /* @__PURE__ */ jsx95(
3877
4227
  TabsPrimitive.Content,
3878
4228
  __spreadValues({
3879
4229
  ref,
@@ -3886,6 +4236,10 @@ var TabsContent = React6.forwardRef((_a, ref) => {
3886
4236
  });
3887
4237
  TabsContent.displayName = TabsPrimitive.Content.displayName;
3888
4238
  export {
4239
+ Accordion,
4240
+ AccordionContent,
4241
+ AccordionItem,
4242
+ AccordionTrigger2 as AccordionTrigger,
3889
4243
  ActivityIcon,
3890
4244
  AlertCircleIcon,
3891
4245
  AlertDialog,
@@ -3897,10 +4251,12 @@ export {
3897
4251
  AlertDialogHeader,
3898
4252
  AlertDialogTitle,
3899
4253
  AlertDialogTrigger,
4254
+ ArrowCircleUpIcon,
3900
4255
  ArrowDownIcon,
3901
4256
  ArrowLeftIcon,
3902
4257
  ArrowRightIcon,
3903
4258
  ArrowUpIcon,
4259
+ AttachmentIcon,
3904
4260
  Badge,
3905
4261
  BellIcon,
3906
4262
  Button,
@@ -3924,9 +4280,11 @@ export {
3924
4280
  DialogHeader,
3925
4281
  DialogTitle,
3926
4282
  DialogTrigger,
4283
+ DotsHorizontalIcon,
3927
4284
  DownloadIcon,
3928
4285
  EditIcon,
3929
4286
  ExpandIcon,
4287
+ FilterLinesIcon,
3930
4288
  FlipBackwardIcon,
3931
4289
  FlipForwardIcon,
3932
4290
  HelpCircleIcon,
@@ -3936,6 +4294,7 @@ export {
3936
4294
  ImageXIcon,
3937
4295
  InfoCircleIcon,
3938
4296
  LightbulbIcon,
4297
+ LinkIcon,
3939
4298
  LockIcon,
3940
4299
  LogInIcon,
3941
4300
  MagicWandIcon,
@@ -3949,6 +4308,7 @@ export {
3949
4308
  MonitorIcon,
3950
4309
  NotificationBoxIcon,
3951
4310
  PauseCircleIcon,
4311
+ PhoneCallIcon,
3952
4312
  PhoneIcon,
3953
4313
  PieChartIcon,
3954
4314
  PlayCircleIcon,
@@ -3968,10 +4328,12 @@ export {
3968
4328
  SearchMdIcon,
3969
4329
  SendIcon,
3970
4330
  SettingsIcon,
4331
+ ShareArrowIcon,
3971
4332
  ShareIcon,
3972
4333
  SkipBackIcon,
3973
4334
  SkipForwardIcon,
3974
4335
  StarsIcon,
4336
+ Switch,
3975
4337
  Tabs,
3976
4338
  TabsContent,
3977
4339
  TabsList,