@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.js CHANGED
@@ -59,6 +59,10 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
59
59
  // src/index.tsx
60
60
  var src_exports = {};
61
61
  __export(src_exports, {
62
+ Accordion: () => Accordion,
63
+ AccordionContent: () => AccordionContent,
64
+ AccordionItem: () => AccordionItem,
65
+ AccordionTrigger: () => AccordionTrigger2,
62
66
  ActivityIcon: () => ActivityIcon,
63
67
  AlertCircleIcon: () => AlertCircleIcon,
64
68
  AlertDialog: () => AlertDialog,
@@ -70,10 +74,12 @@ __export(src_exports, {
70
74
  AlertDialogHeader: () => AlertDialogHeader,
71
75
  AlertDialogTitle: () => AlertDialogTitle,
72
76
  AlertDialogTrigger: () => AlertDialogTrigger,
77
+ ArrowCircleUpIcon: () => ArrowCircleUpIcon,
73
78
  ArrowDownIcon: () => ArrowDownIcon,
74
79
  ArrowLeftIcon: () => ArrowLeftIcon,
75
80
  ArrowRightIcon: () => ArrowRightIcon,
76
81
  ArrowUpIcon: () => ArrowUpIcon,
82
+ AttachmentIcon: () => AttachmentIcon,
77
83
  Badge: () => Badge,
78
84
  BellIcon: () => BellIcon,
79
85
  Button: () => Button,
@@ -97,9 +103,11 @@ __export(src_exports, {
97
103
  DialogHeader: () => DialogHeader,
98
104
  DialogTitle: () => DialogTitle,
99
105
  DialogTrigger: () => DialogTrigger,
106
+ DotsHorizontalIcon: () => DotsHorizontalIcon,
100
107
  DownloadIcon: () => DownloadIcon,
101
108
  EditIcon: () => EditIcon,
102
109
  ExpandIcon: () => ExpandIcon,
110
+ FilterLinesIcon: () => FilterLinesIcon,
103
111
  FlipBackwardIcon: () => FlipBackwardIcon,
104
112
  FlipForwardIcon: () => FlipForwardIcon,
105
113
  HelpCircleIcon: () => HelpCircleIcon,
@@ -109,6 +117,7 @@ __export(src_exports, {
109
117
  ImageXIcon: () => ImageXIcon,
110
118
  InfoCircleIcon: () => InfoCircleIcon,
111
119
  LightbulbIcon: () => LightbulbIcon,
120
+ LinkIcon: () => LinkIcon,
112
121
  LockIcon: () => LockIcon,
113
122
  LogInIcon: () => LogInIcon,
114
123
  MagicWandIcon: () => MagicWandIcon,
@@ -122,6 +131,7 @@ __export(src_exports, {
122
131
  MonitorIcon: () => MonitorIcon,
123
132
  NotificationBoxIcon: () => NotificationBoxIcon,
124
133
  PauseCircleIcon: () => PauseCircleIcon,
134
+ PhoneCallIcon: () => PhoneCallIcon,
125
135
  PhoneIcon: () => PhoneIcon,
126
136
  PieChartIcon: () => PieChartIcon,
127
137
  PlayCircleIcon: () => PlayCircleIcon,
@@ -141,10 +151,12 @@ __export(src_exports, {
141
151
  SearchMdIcon: () => SearchMdIcon,
142
152
  SendIcon: () => SendIcon,
143
153
  SettingsIcon: () => SettingsIcon,
154
+ ShareArrowIcon: () => ShareArrowIcon,
144
155
  ShareIcon: () => ShareIcon,
145
156
  SkipBackIcon: () => SkipBackIcon,
146
157
  SkipForwardIcon: () => SkipForwardIcon,
147
158
  StarsIcon: () => StarsIcon,
159
+ Switch: () => Switch,
148
160
  Tabs: () => Tabs,
149
161
  TabsContent: () => TabsContent,
150
162
  TabsList: () => TabsList,
@@ -170,9 +182,41 @@ __export(src_exports, {
170
182
  });
171
183
  module.exports = __toCommonJS(src_exports);
172
184
 
173
- // src/components/AlertDialog/AlertDialog.tsx
174
- var React2 = __toESM(require("react"));
175
- var AlertDialogPrimitive = __toESM(require("@radix-ui/react-alert-dialog"));
185
+ // src/components/Accordion/Accordion.tsx
186
+ var import_react2 = __toESM(require("react"));
187
+ var AccordionPrimitive = __toESM(require("@radix-ui/react-accordion"));
188
+
189
+ // src/icons/chevronDown.tsx
190
+ var import_react = require("react");
191
+ var import_jsx_runtime = require("react/jsx-runtime");
192
+ var ChevronDownIcon = (0, import_react.forwardRef)(
193
+ function ChevronDownIcon2(_a, ref) {
194
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
195
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
196
+ "svg",
197
+ __spreadProps(__spreadValues({
198
+ ref,
199
+ width: size,
200
+ height: size,
201
+ viewBox: "0 0 24 24",
202
+ fill: "none",
203
+ xmlns: "http://www.w3.org/2000/svg",
204
+ className
205
+ }, other), {
206
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
207
+ "path",
208
+ {
209
+ d: "M6 9L12 15L18 9",
210
+ stroke: "currentColor",
211
+ strokeWidth: "2",
212
+ strokeLinecap: "round",
213
+ strokeLinejoin: "round"
214
+ }
215
+ )
216
+ })
217
+ );
218
+ }
219
+ );
176
220
 
177
221
  // src/utils/cn.ts
178
222
  var import_clsx = require("clsx");
@@ -181,11 +225,66 @@ function cn(...inputs) {
181
225
  return (0, import_tailwind_merge.twMerge)((0, import_clsx.clsx)(inputs));
182
226
  }
183
227
 
228
+ // src/components/Accordion/Accordion.tsx
229
+ var import_jsx_runtime2 = require("react/jsx-runtime");
230
+ var AccordionItem = AccordionPrimitive.Item;
231
+ var Accordion = AccordionPrimitive.Root;
232
+ var AccordionTrigger2 = import_react2.default.forwardRef((_a, forwardedRef) => {
233
+ var _b = _a, { children, className, icon } = _b, props = __objRest(_b, ["children", "className", "icon"]);
234
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(AccordionPrimitive.Header, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
235
+ AccordionPrimitive.Trigger,
236
+ __spreadProps(__spreadValues({
237
+ className: cn(
238
+ "flex w-full rounded-lg items-center hover:bg-blue-100 group text-sm p-2 font-semibold text-gray-1000",
239
+ className
240
+ )
241
+ }, props), {
242
+ ref: forwardedRef,
243
+ children: [
244
+ icon && import_react2.default.cloneElement(icon, {
245
+ size: 18,
246
+ className: cn("flex-shrink-0 mr-2.5", icon.props.className)
247
+ }),
248
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className: "text-left truncate grow", children }),
249
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
250
+ ChevronDownIcon,
251
+ {
252
+ size: 16,
253
+ className: "flex-shrink-0 transition-transform text-gray-1000 group-data-[state=open]:rotate-180",
254
+ "aria-hidden": true
255
+ }
256
+ )
257
+ ]
258
+ })
259
+ ) });
260
+ });
261
+ AccordionTrigger2.displayName = AccordionPrimitive.AccordionTrigger.displayName;
262
+ var AccordionContent = import_react2.default.forwardRef((_a, forwardedRef) => {
263
+ var _b = _a, { children, className } = _b, props = __objRest(_b, ["children", "className"]);
264
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
265
+ AccordionPrimitive.Content,
266
+ __spreadProps(__spreadValues({
267
+ className: cn(
268
+ "overflow-hidden data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",
269
+ className
270
+ )
271
+ }, props), {
272
+ ref: forwardedRef,
273
+ children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("div", { className: "pb-2", children })
274
+ })
275
+ );
276
+ });
277
+ AccordionContent.displayName = AccordionPrimitive.Content.displayName;
278
+
279
+ // src/components/AlertDialog/AlertDialog.tsx
280
+ var React3 = __toESM(require("react"));
281
+ var AlertDialogPrimitive = __toESM(require("@radix-ui/react-alert-dialog"));
282
+
184
283
  // src/components/Button/Button.tsx
185
- var React = __toESM(require("react"));
284
+ var React2 = __toESM(require("react"));
186
285
  var import_react_slot = require("@radix-ui/react-slot");
187
286
  var import_class_variance_authority = require("class-variance-authority");
188
- var import_jsx_runtime = require("react/jsx-runtime");
287
+ var import_jsx_runtime3 = require("react/jsx-runtime");
189
288
  var buttonVariants = (0, import_class_variance_authority.cva)(
190
289
  "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",
191
290
  {
@@ -234,12 +333,12 @@ var iconButtonSizes = (0, import_class_variance_authority.cva)("", {
234
333
  size: "md"
235
334
  }
236
335
  });
237
- var Button = React.forwardRef(
336
+ var Button = React2.forwardRef(
238
337
  (_a, ref) => {
239
338
  var _b = _a, { className, variant, size, icon = false, asChild = false } = _b, props = __objRest(_b, ["className", "variant", "size", "icon", "asChild"]);
240
339
  const Comp = asChild ? import_react_slot.Slot : "button";
241
340
  const sizesStyle = icon ? iconButtonSizes : buttonSizes;
242
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
341
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
243
342
  Comp,
244
343
  __spreadValues({
245
344
  className: cn(
@@ -254,7 +353,7 @@ var Button = React.forwardRef(
254
353
  Button.displayName = "Button";
255
354
 
256
355
  // src/components/AlertDialog/AlertDialog.tsx
257
- var import_jsx_runtime2 = require("react/jsx-runtime");
356
+ var import_jsx_runtime4 = require("react/jsx-runtime");
258
357
  var AlertDialog = AlertDialogPrimitive.Root;
259
358
  var AlertDialogTrigger = AlertDialogPrimitive.Trigger;
260
359
  var AlertDialogPortal = (_a) => {
@@ -263,12 +362,12 @@ var AlertDialogPortal = (_a) => {
263
362
  } = _b, props = __objRest(_b, [
264
363
  "className"
265
364
  ]);
266
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(AlertDialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
365
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(AlertDialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
267
366
  };
268
367
  AlertDialogPortal.displayName = AlertDialogPrimitive.Portal.displayName;
269
- var AlertDialogOverlay = React2.forwardRef((_a, ref) => {
368
+ var AlertDialogOverlay = React3.forwardRef((_a, ref) => {
270
369
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
271
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
370
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
272
371
  AlertDialogPrimitive.Overlay,
273
372
  __spreadProps(__spreadValues({
274
373
  className: cn(
@@ -281,11 +380,11 @@ var AlertDialogOverlay = React2.forwardRef((_a, ref) => {
281
380
  );
282
381
  });
283
382
  AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
284
- var AlertDialogContent = React2.forwardRef((_a, ref) => {
383
+ var AlertDialogContent = React3.forwardRef((_a, ref) => {
285
384
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
286
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(AlertDialogPortal, { children: [
287
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(AlertDialogOverlay, {}),
288
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
385
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(AlertDialogPortal, { children: [
386
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(AlertDialogOverlay, {}),
387
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
289
388
  AlertDialogPrimitive.Content,
290
389
  __spreadValues({
291
390
  ref,
@@ -304,7 +403,7 @@ var AlertDialogHeader = (_a) => {
304
403
  } = _b, props = __objRest(_b, [
305
404
  "className"
306
405
  ]);
307
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
406
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
308
407
  "div",
309
408
  __spreadValues({
310
409
  className: cn(
@@ -321,7 +420,7 @@ var AlertDialogFooter = (_a) => {
321
420
  } = _b, props = __objRest(_b, [
322
421
  "className"
323
422
  ]);
324
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
423
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
325
424
  "div",
326
425
  __spreadValues({
327
426
  className: cn(
@@ -332,9 +431,9 @@ var AlertDialogFooter = (_a) => {
332
431
  );
333
432
  };
334
433
  AlertDialogFooter.displayName = "AlertDialogFooter";
335
- var AlertDialogTitle = React2.forwardRef((_a, ref) => {
434
+ var AlertDialogTitle = React3.forwardRef((_a, ref) => {
336
435
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
337
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
436
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
338
437
  AlertDialogPrimitive.Title,
339
438
  __spreadValues({
340
439
  ref,
@@ -343,9 +442,9 @@ var AlertDialogTitle = React2.forwardRef((_a, ref) => {
343
442
  );
344
443
  });
345
444
  AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;
346
- var AlertDialogDescription = React2.forwardRef((_a, ref) => {
445
+ var AlertDialogDescription = React3.forwardRef((_a, ref) => {
347
446
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
348
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
447
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
349
448
  AlertDialogPrimitive.Description,
350
449
  __spreadValues({
351
450
  ref,
@@ -354,9 +453,9 @@ var AlertDialogDescription = React2.forwardRef((_a, ref) => {
354
453
  );
355
454
  });
356
455
  AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName;
357
- var AlertDialogAction = React2.forwardRef((_a, ref) => {
456
+ var AlertDialogAction = React3.forwardRef((_a, ref) => {
358
457
  var _b = _a, { className, variant = "primary" } = _b, props = __objRest(_b, ["className", "variant"]);
359
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
458
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
360
459
  AlertDialogPrimitive.Action,
361
460
  __spreadValues({
362
461
  ref,
@@ -369,9 +468,9 @@ var AlertDialogAction = React2.forwardRef((_a, ref) => {
369
468
  );
370
469
  });
371
470
  AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;
372
- var AlertDialogCancel = React2.forwardRef((_a, ref) => {
471
+ var AlertDialogCancel = React3.forwardRef((_a, ref) => {
373
472
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
374
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
473
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
375
474
  AlertDialogPrimitive.Cancel,
376
475
  __spreadValues({
377
476
  ref,
@@ -390,10 +489,10 @@ AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
390
489
  var import_class_variance_authority2 = require("class-variance-authority");
391
490
 
392
491
  // src/utils/getLabelFromChildren.ts
393
- var import_react = __toESM(require("react"));
492
+ var import_react3 = __toESM(require("react"));
394
493
  var getLabelFromChildren = (children) => {
395
494
  let label = "";
396
- import_react.default.Children.map(children, (child) => {
495
+ import_react3.default.Children.map(children, (child) => {
397
496
  if (typeof child === "string") {
398
497
  label += child;
399
498
  }
@@ -415,7 +514,7 @@ var randomPickFromArray = ({
415
514
  };
416
515
 
417
516
  // src/components/Badge/Badge.tsx
418
- var import_jsx_runtime3 = require("react/jsx-runtime");
517
+ var import_jsx_runtime5 = require("react/jsx-runtime");
419
518
  var colors = {
420
519
  gray: "text-gray-900",
421
520
  green: "text-green-700",
@@ -550,7 +649,7 @@ function Badge(_a) {
550
649
  array: colorsArray
551
650
  });
552
651
  }
553
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
652
+ return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
554
653
  "div",
555
654
  __spreadValues({
556
655
  className: cn(badgeVariants({ variant, color }), className)
@@ -562,12 +661,12 @@ function Badge(_a) {
562
661
  var import_react_day_picker = require("react-day-picker");
563
662
 
564
663
  // src/icons/activity.tsx
565
- var import_react2 = require("react");
566
- var import_jsx_runtime4 = require("react/jsx-runtime");
567
- var ActivityIcon = (0, import_react2.forwardRef)(
664
+ var import_react4 = require("react");
665
+ var import_jsx_runtime6 = require("react/jsx-runtime");
666
+ var ActivityIcon = (0, import_react4.forwardRef)(
568
667
  function ActivityIcon2(_a, ref) {
569
668
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
570
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
669
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
571
670
  "svg",
572
671
  __spreadProps(__spreadValues({
573
672
  ref,
@@ -578,7 +677,7 @@ var ActivityIcon = (0, import_react2.forwardRef)(
578
677
  xmlns: "http://www.w3.org/2000/svg",
579
678
  className
580
679
  }, other), {
581
- children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
680
+ children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
582
681
  "path",
583
682
  {
584
683
  d: "M22 12H18L15 21L9 3L6 12H2",
@@ -594,12 +693,12 @@ var ActivityIcon = (0, import_react2.forwardRef)(
594
693
  );
595
694
 
596
695
  // src/icons/alertCircle.tsx
597
- var import_react3 = require("react");
598
- var import_jsx_runtime5 = require("react/jsx-runtime");
599
- var AlertCircleIcon = (0, import_react3.forwardRef)(
696
+ var import_react5 = require("react");
697
+ var import_jsx_runtime7 = require("react/jsx-runtime");
698
+ var AlertCircleIcon = (0, import_react5.forwardRef)(
600
699
  function AlertCircleIcon2(_a, ref) {
601
700
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
602
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
701
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
603
702
  "svg",
604
703
  __spreadProps(__spreadValues({
605
704
  ref,
@@ -611,7 +710,7 @@ var AlertCircleIcon = (0, import_react3.forwardRef)(
611
710
  className
612
711
  }, other), {
613
712
  children: [
614
- duotone && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
713
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
615
714
  "path",
616
715
  {
617
716
  opacity: "0.12",
@@ -619,7 +718,7 @@ var AlertCircleIcon = (0, import_react3.forwardRef)(
619
718
  fill: "currentColor"
620
719
  }
621
720
  ),
622
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
721
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
623
722
  "path",
624
723
  {
625
724
  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",
@@ -635,13 +734,55 @@ var AlertCircleIcon = (0, import_react3.forwardRef)(
635
734
  }
636
735
  );
637
736
 
737
+ // src/icons/arrowCircleUp.tsx
738
+ var import_react6 = require("react");
739
+ var import_jsx_runtime8 = require("react/jsx-runtime");
740
+ var ArrowCircleUpIcon = (0, import_react6.forwardRef)(
741
+ function ArrowCircleUpIcon2(_a, ref) {
742
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
743
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
744
+ "svg",
745
+ __spreadProps(__spreadValues({
746
+ ref,
747
+ width: size,
748
+ height: size,
749
+ viewBox: "0 0 24 24",
750
+ fill: "none",
751
+ xmlns: "http://www.w3.org/2000/svg",
752
+ className
753
+ }, other), {
754
+ children: [
755
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
756
+ "path",
757
+ {
758
+ opacity: "0.12",
759
+ 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",
760
+ fill: "currentColor"
761
+ }
762
+ ),
763
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
764
+ "path",
765
+ {
766
+ 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",
767
+ stroke: "currentColor",
768
+ strokeWidth: "2",
769
+ strokeLinecap: "round",
770
+ strokeLinejoin: "round"
771
+ }
772
+ )
773
+ ]
774
+ })
775
+ );
776
+ }
777
+ );
778
+
638
779
  // src/icons/arrowDown.tsx
639
- var import_react4 = require("react");
640
- var import_jsx_runtime6 = require("react/jsx-runtime");
641
- var ArrowDownIcon = (0, import_react4.forwardRef)(
780
+ var import_react7 = require("react");
781
+ var import_jsx_runtime9 = require("react/jsx-runtime");
782
+ var ArrowDownIcon = (0, import_react7.forwardRef)(
642
783
  function ArrowDownIcon2(_a, ref) {
643
784
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
644
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
785
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
645
786
  "svg",
646
787
  __spreadProps(__spreadValues({
647
788
  ref,
@@ -652,7 +793,7 @@ var ArrowDownIcon = (0, import_react4.forwardRef)(
652
793
  xmlns: "http://www.w3.org/2000/svg",
653
794
  className
654
795
  }, other), {
655
- children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
796
+ children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
656
797
  "path",
657
798
  {
658
799
  d: "M12 5V19M12 19L19 12M12 19L5 12",
@@ -668,12 +809,12 @@ var ArrowDownIcon = (0, import_react4.forwardRef)(
668
809
  );
669
810
 
670
811
  // src/icons/arrowLeft.tsx
671
- var import_react5 = require("react");
672
- var import_jsx_runtime7 = require("react/jsx-runtime");
673
- var ArrowLeftIcon = (0, import_react5.forwardRef)(
812
+ var import_react8 = require("react");
813
+ var import_jsx_runtime10 = require("react/jsx-runtime");
814
+ var ArrowLeftIcon = (0, import_react8.forwardRef)(
674
815
  function ArrowLeftIcon2(_a, ref) {
675
816
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
676
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
817
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
677
818
  "svg",
678
819
  __spreadProps(__spreadValues({
679
820
  ref,
@@ -684,7 +825,7 @@ var ArrowLeftIcon = (0, import_react5.forwardRef)(
684
825
  xmlns: "http://www.w3.org/2000/svg",
685
826
  className
686
827
  }, other), {
687
- children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
828
+ children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
688
829
  "path",
689
830
  {
690
831
  d: "M19 12H5M5 12L12 19M5 12L12 5",
@@ -700,12 +841,12 @@ var ArrowLeftIcon = (0, import_react5.forwardRef)(
700
841
  );
701
842
 
702
843
  // src/icons/arrowRight.tsx
703
- var import_react6 = require("react");
704
- var import_jsx_runtime8 = require("react/jsx-runtime");
705
- var ArrowRightIcon = (0, import_react6.forwardRef)(
844
+ var import_react9 = require("react");
845
+ var import_jsx_runtime11 = require("react/jsx-runtime");
846
+ var ArrowRightIcon = (0, import_react9.forwardRef)(
706
847
  function ArrowRightIcon2(_a, ref) {
707
848
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
708
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
849
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
709
850
  "svg",
710
851
  __spreadProps(__spreadValues({
711
852
  ref,
@@ -716,7 +857,7 @@ var ArrowRightIcon = (0, import_react6.forwardRef)(
716
857
  xmlns: "http://www.w3.org/2000/svg",
717
858
  className
718
859
  }, other), {
719
- children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
860
+ children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
720
861
  "path",
721
862
  {
722
863
  d: "M5 12H19M19 12L12 5M19 12L12 19",
@@ -732,12 +873,12 @@ var ArrowRightIcon = (0, import_react6.forwardRef)(
732
873
  );
733
874
 
734
875
  // src/icons/arrowUp.tsx
735
- var import_react7 = require("react");
736
- var import_jsx_runtime9 = require("react/jsx-runtime");
737
- var ArrowUpIcon = (0, import_react7.forwardRef)(
876
+ var import_react10 = require("react");
877
+ var import_jsx_runtime12 = require("react/jsx-runtime");
878
+ var ArrowUpIcon = (0, import_react10.forwardRef)(
738
879
  function ArrowUpIcon2(_a, ref) {
739
880
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
740
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
881
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
741
882
  "svg",
742
883
  __spreadProps(__spreadValues({
743
884
  ref,
@@ -748,7 +889,7 @@ var ArrowUpIcon = (0, import_react7.forwardRef)(
748
889
  xmlns: "http://www.w3.org/2000/svg",
749
890
  className
750
891
  }, other), {
751
- children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
892
+ children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
752
893
  "path",
753
894
  {
754
895
  d: "M12 19V5M12 5L5 12M12 5L19 12",
@@ -763,12 +904,44 @@ var ArrowUpIcon = (0, import_react7.forwardRef)(
763
904
  }
764
905
  );
765
906
 
907
+ // src/icons/attachment.tsx
908
+ var import_react11 = require("react");
909
+ var import_jsx_runtime13 = require("react/jsx-runtime");
910
+ var AttachmentIcon = (0, import_react11.forwardRef)(
911
+ function AttachmentIcon2(_a, ref) {
912
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
913
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
914
+ "svg",
915
+ __spreadProps(__spreadValues({
916
+ ref,
917
+ width: size,
918
+ height: size,
919
+ viewBox: "0 0 24 24",
920
+ fill: "none",
921
+ xmlns: "http://www.w3.org/2000/svg",
922
+ className
923
+ }, other), {
924
+ children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
925
+ "path",
926
+ {
927
+ 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",
928
+ stroke: "currentColor",
929
+ strokeWidth: "2",
930
+ strokeLinecap: "round",
931
+ strokeLinejoin: "round"
932
+ }
933
+ )
934
+ })
935
+ );
936
+ }
937
+ );
938
+
766
939
  // src/icons/bell.tsx
767
- var import_react8 = require("react");
768
- var import_jsx_runtime10 = require("react/jsx-runtime");
769
- var BellIcon = (0, import_react8.forwardRef)(function BellIcon2(_a, ref) {
940
+ var import_react12 = require("react");
941
+ var import_jsx_runtime14 = require("react/jsx-runtime");
942
+ var BellIcon = (0, import_react12.forwardRef)(function BellIcon2(_a, ref) {
770
943
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
771
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
944
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
772
945
  "svg",
773
946
  __spreadProps(__spreadValues({
774
947
  ref,
@@ -780,7 +953,7 @@ var BellIcon = (0, import_react8.forwardRef)(function BellIcon2(_a, ref) {
780
953
  className
781
954
  }, other), {
782
955
  children: [
783
- duotone && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
956
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
784
957
  "path",
785
958
  {
786
959
  opacity: "0.12",
@@ -788,7 +961,7 @@ var BellIcon = (0, import_react8.forwardRef)(function BellIcon2(_a, ref) {
788
961
  fill: "currentColor"
789
962
  }
790
963
  ),
791
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
964
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
792
965
  "path",
793
966
  {
794
967
  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",
@@ -804,12 +977,12 @@ var BellIcon = (0, import_react8.forwardRef)(function BellIcon2(_a, ref) {
804
977
  });
805
978
 
806
979
  // src/icons/calendar.tsx
807
- var import_react9 = require("react");
808
- var import_jsx_runtime11 = require("react/jsx-runtime");
809
- var CalendarIcon = (0, import_react9.forwardRef)(
980
+ var import_react13 = require("react");
981
+ var import_jsx_runtime15 = require("react/jsx-runtime");
982
+ var CalendarIcon = (0, import_react13.forwardRef)(
810
983
  function CalendarIcon2(_a, ref) {
811
984
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
812
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
985
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
813
986
  "svg",
814
987
  __spreadProps(__spreadValues({
815
988
  ref,
@@ -821,7 +994,7 @@ var CalendarIcon = (0, import_react9.forwardRef)(
821
994
  className
822
995
  }, other), {
823
996
  children: [
824
- duotone && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
997
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
825
998
  "path",
826
999
  {
827
1000
  opacity: "0.12",
@@ -829,7 +1002,7 @@ var CalendarIcon = (0, import_react9.forwardRef)(
829
1002
  fill: "currentColor"
830
1003
  }
831
1004
  ),
832
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1005
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
833
1006
  "path",
834
1007
  {
835
1008
  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",
@@ -846,12 +1019,12 @@ var CalendarIcon = (0, import_react9.forwardRef)(
846
1019
  );
847
1020
 
848
1021
  // src/icons/calendarCheck.tsx
849
- var import_react10 = require("react");
850
- var import_jsx_runtime12 = require("react/jsx-runtime");
851
- var CalendarCheckIcon = (0, import_react10.forwardRef)(
1022
+ var import_react14 = require("react");
1023
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1024
+ var CalendarCheckIcon = (0, import_react14.forwardRef)(
852
1025
  function CalendarCheckIcon2(_a, ref) {
853
1026
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
854
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
1027
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
855
1028
  "svg",
856
1029
  __spreadProps(__spreadValues({
857
1030
  ref,
@@ -863,7 +1036,7 @@ var CalendarCheckIcon = (0, import_react10.forwardRef)(
863
1036
  className
864
1037
  }, other), {
865
1038
  children: [
866
- duotone && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1039
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
867
1040
  "path",
868
1041
  {
869
1042
  opacity: "0.12",
@@ -871,7 +1044,7 @@ var CalendarCheckIcon = (0, import_react10.forwardRef)(
871
1044
  fill: "currentColor"
872
1045
  }
873
1046
  ),
874
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1047
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
875
1048
  "path",
876
1049
  {
877
1050
  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",
@@ -888,12 +1061,12 @@ var CalendarCheckIcon = (0, import_react10.forwardRef)(
888
1061
  );
889
1062
 
890
1063
  // src/icons/calendarPlus.tsx
891
- var import_react11 = require("react");
892
- var import_jsx_runtime13 = require("react/jsx-runtime");
893
- var CalendarPlusIcon = (0, import_react11.forwardRef)(
1064
+ var import_react15 = require("react");
1065
+ var import_jsx_runtime17 = require("react/jsx-runtime");
1066
+ var CalendarPlusIcon = (0, import_react15.forwardRef)(
894
1067
  function CalendarPlusIcon2(_a, ref) {
895
1068
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
896
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
1069
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
897
1070
  "svg",
898
1071
  __spreadProps(__spreadValues({
899
1072
  ref,
@@ -905,7 +1078,7 @@ var CalendarPlusIcon = (0, import_react11.forwardRef)(
905
1078
  className
906
1079
  }, other), {
907
1080
  children: [
908
- duotone && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1081
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
909
1082
  "path",
910
1083
  {
911
1084
  opacity: "0.12",
@@ -913,7 +1086,7 @@ var CalendarPlusIcon = (0, import_react11.forwardRef)(
913
1086
  fill: "currentColor"
914
1087
  }
915
1088
  ),
916
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1089
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
917
1090
  "path",
918
1091
  {
919
1092
  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",
@@ -930,12 +1103,12 @@ var CalendarPlusIcon = (0, import_react11.forwardRef)(
930
1103
  );
931
1104
 
932
1105
  // src/icons/camera.tsx
933
- var import_react12 = require("react");
934
- var import_jsx_runtime14 = require("react/jsx-runtime");
935
- var CameraIcon = (0, import_react12.forwardRef)(
1106
+ var import_react16 = require("react");
1107
+ var import_jsx_runtime18 = require("react/jsx-runtime");
1108
+ var CameraIcon = (0, import_react16.forwardRef)(
936
1109
  function CameraIcon2(_a, ref) {
937
1110
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
938
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1111
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
939
1112
  "svg",
940
1113
  __spreadProps(__spreadValues({
941
1114
  ref,
@@ -947,7 +1120,7 @@ var CameraIcon = (0, import_react12.forwardRef)(
947
1120
  className
948
1121
  }, other), {
949
1122
  children: [
950
- duotone && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1123
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
951
1124
  "path",
952
1125
  {
953
1126
  opacity: "0.12",
@@ -955,7 +1128,7 @@ var CameraIcon = (0, import_react12.forwardRef)(
955
1128
  fill: "currentColor"
956
1129
  }
957
1130
  ),
958
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1131
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
959
1132
  "path",
960
1133
  {
961
1134
  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",
@@ -966,7 +1139,7 @@ var CameraIcon = (0, import_react12.forwardRef)(
966
1139
  }
967
1140
  ),
968
1141
  ",",
969
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1142
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
970
1143
  "path",
971
1144
  {
972
1145
  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",
@@ -983,12 +1156,12 @@ var CameraIcon = (0, import_react12.forwardRef)(
983
1156
  );
984
1157
 
985
1158
  // src/icons/cameraOff.tsx
986
- var import_react13 = require("react");
987
- var import_jsx_runtime15 = require("react/jsx-runtime");
988
- var CameraOffIcon = (0, import_react13.forwardRef)(
1159
+ var import_react17 = require("react");
1160
+ var import_jsx_runtime19 = require("react/jsx-runtime");
1161
+ var CameraOffIcon = (0, import_react17.forwardRef)(
989
1162
  function CameraOffIcon2(_a, ref) {
990
1163
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
991
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
1164
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
992
1165
  "svg",
993
1166
  __spreadProps(__spreadValues({
994
1167
  ref,
@@ -1000,7 +1173,7 @@ var CameraOffIcon = (0, import_react13.forwardRef)(
1000
1173
  className
1001
1174
  }, other), {
1002
1175
  children: [
1003
- duotone && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1176
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1004
1177
  "path",
1005
1178
  {
1006
1179
  opacity: "0.12",
@@ -1008,7 +1181,7 @@ var CameraOffIcon = (0, import_react13.forwardRef)(
1008
1181
  fill: "currentColor"
1009
1182
  }
1010
1183
  ),
1011
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1184
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1012
1185
  "path",
1013
1186
  {
1014
1187
  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",
@@ -1025,12 +1198,12 @@ var CameraOffIcon = (0, import_react13.forwardRef)(
1025
1198
  );
1026
1199
 
1027
1200
  // src/icons/checkCircle.tsx
1028
- var import_react14 = require("react");
1029
- var import_jsx_runtime16 = require("react/jsx-runtime");
1030
- var CheckCircleIcon = (0, import_react14.forwardRef)(
1201
+ var import_react18 = require("react");
1202
+ var import_jsx_runtime20 = require("react/jsx-runtime");
1203
+ var CheckCircleIcon = (0, import_react18.forwardRef)(
1031
1204
  function CheckCircleIcon2(_a, ref) {
1032
1205
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1033
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
1206
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
1034
1207
  "svg",
1035
1208
  __spreadProps(__spreadValues({
1036
1209
  ref,
@@ -1042,7 +1215,7 @@ var CheckCircleIcon = (0, import_react14.forwardRef)(
1042
1215
  className
1043
1216
  }, other), {
1044
1217
  children: [
1045
- duotone && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1218
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1046
1219
  "path",
1047
1220
  {
1048
1221
  opacity: "0.12",
@@ -1050,7 +1223,7 @@ var CheckCircleIcon = (0, import_react14.forwardRef)(
1050
1223
  fill: "currentColor"
1051
1224
  }
1052
1225
  ),
1053
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1226
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1054
1227
  "path",
1055
1228
  {
1056
1229
  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",
@@ -1066,45 +1239,13 @@ var CheckCircleIcon = (0, import_react14.forwardRef)(
1066
1239
  }
1067
1240
  );
1068
1241
 
1069
- // src/icons/chevronDown.tsx
1070
- var import_react15 = require("react");
1071
- var import_jsx_runtime17 = require("react/jsx-runtime");
1072
- var ChevronDownIcon = (0, import_react15.forwardRef)(
1073
- function ChevronDownIcon2(_a, ref) {
1074
- var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1075
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1076
- "svg",
1077
- __spreadProps(__spreadValues({
1078
- ref,
1079
- width: size,
1080
- height: size,
1081
- viewBox: "0 0 24 24",
1082
- fill: "none",
1083
- xmlns: "http://www.w3.org/2000/svg",
1084
- className
1085
- }, other), {
1086
- children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1087
- "path",
1088
- {
1089
- d: "M6 9L12 15L18 9",
1090
- stroke: "currentColor",
1091
- strokeWidth: "2",
1092
- strokeLinecap: "round",
1093
- strokeLinejoin: "round"
1094
- }
1095
- )
1096
- })
1097
- );
1098
- }
1099
- );
1100
-
1101
1242
  // src/icons/chevronLeft.tsx
1102
- var import_react16 = require("react");
1103
- var import_jsx_runtime18 = require("react/jsx-runtime");
1104
- var ChevronLeftIcon = (0, import_react16.forwardRef)(
1243
+ var import_react19 = require("react");
1244
+ var import_jsx_runtime21 = require("react/jsx-runtime");
1245
+ var ChevronLeftIcon = (0, import_react19.forwardRef)(
1105
1246
  function ChevronLeftIcon2(_a, ref) {
1106
1247
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1107
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1248
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1108
1249
  "svg",
1109
1250
  __spreadProps(__spreadValues({
1110
1251
  ref,
@@ -1115,7 +1256,7 @@ var ChevronLeftIcon = (0, import_react16.forwardRef)(
1115
1256
  xmlns: "http://www.w3.org/2000/svg",
1116
1257
  className
1117
1258
  }, other), {
1118
- children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1259
+ children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1119
1260
  "path",
1120
1261
  {
1121
1262
  d: "M15 18L9 12L15 6",
@@ -1131,12 +1272,12 @@ var ChevronLeftIcon = (0, import_react16.forwardRef)(
1131
1272
  );
1132
1273
 
1133
1274
  // src/icons/chevronRight.tsx
1134
- var import_react17 = require("react");
1135
- var import_jsx_runtime19 = require("react/jsx-runtime");
1136
- var ChevronRightIcon = (0, import_react17.forwardRef)(
1275
+ var import_react20 = require("react");
1276
+ var import_jsx_runtime22 = require("react/jsx-runtime");
1277
+ var ChevronRightIcon = (0, import_react20.forwardRef)(
1137
1278
  function ChevronRightIcon2(_a, ref) {
1138
1279
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1139
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1280
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1140
1281
  "svg",
1141
1282
  __spreadProps(__spreadValues({
1142
1283
  ref,
@@ -1147,7 +1288,7 @@ var ChevronRightIcon = (0, import_react17.forwardRef)(
1147
1288
  xmlns: "http://www.w3.org/2000/svg",
1148
1289
  className
1149
1290
  }, other), {
1150
- children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1291
+ children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1151
1292
  "path",
1152
1293
  {
1153
1294
  d: "M9 18L15 12L9 6",
@@ -1163,12 +1304,12 @@ var ChevronRightIcon = (0, import_react17.forwardRef)(
1163
1304
  );
1164
1305
 
1165
1306
  // src/icons/chevronUp.tsx
1166
- var import_react18 = require("react");
1167
- var import_jsx_runtime20 = require("react/jsx-runtime");
1168
- var ChevronUpIcon = (0, import_react18.forwardRef)(
1307
+ var import_react21 = require("react");
1308
+ var import_jsx_runtime23 = require("react/jsx-runtime");
1309
+ var ChevronUpIcon = (0, import_react21.forwardRef)(
1169
1310
  function ChevronUpIcon2(_a, ref) {
1170
1311
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1171
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1312
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1172
1313
  "svg",
1173
1314
  __spreadProps(__spreadValues({
1174
1315
  ref,
@@ -1179,7 +1320,7 @@ var ChevronUpIcon = (0, import_react18.forwardRef)(
1179
1320
  xmlns: "http://www.w3.org/2000/svg",
1180
1321
  className
1181
1322
  }, other), {
1182
- children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1323
+ children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1183
1324
  "path",
1184
1325
  {
1185
1326
  d: "M18 15L12 9L6 15",
@@ -1195,11 +1336,11 @@ var ChevronUpIcon = (0, import_react18.forwardRef)(
1195
1336
  );
1196
1337
 
1197
1338
  // src/icons/copy.tsx
1198
- var import_react19 = require("react");
1199
- var import_jsx_runtime21 = require("react/jsx-runtime");
1200
- var CopyIcon = (0, import_react19.forwardRef)(function CopyIcon2(_a, ref) {
1339
+ var import_react22 = require("react");
1340
+ var import_jsx_runtime24 = require("react/jsx-runtime");
1341
+ var CopyIcon = (0, import_react22.forwardRef)(function CopyIcon2(_a, ref) {
1201
1342
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1202
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
1343
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
1203
1344
  "svg",
1204
1345
  __spreadProps(__spreadValues({
1205
1346
  ref,
@@ -1211,7 +1352,7 @@ var CopyIcon = (0, import_react19.forwardRef)(function CopyIcon2(_a, ref) {
1211
1352
  className
1212
1353
  }, other), {
1213
1354
  children: [
1214
- duotone && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1355
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1215
1356
  "path",
1216
1357
  {
1217
1358
  opacity: "0.12",
@@ -1219,7 +1360,7 @@ var CopyIcon = (0, import_react19.forwardRef)(function CopyIcon2(_a, ref) {
1219
1360
  fill: "currentColor"
1220
1361
  }
1221
1362
  ),
1222
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1363
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1223
1364
  "path",
1224
1365
  {
1225
1366
  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",
@@ -1235,12 +1376,12 @@ var CopyIcon = (0, import_react19.forwardRef)(function CopyIcon2(_a, ref) {
1235
1376
  });
1236
1377
 
1237
1378
  // src/icons/cursorClick.tsx
1238
- var import_react20 = require("react");
1239
- var import_jsx_runtime22 = require("react/jsx-runtime");
1240
- var CursorClickIcon = (0, import_react20.forwardRef)(
1379
+ var import_react23 = require("react");
1380
+ var import_jsx_runtime25 = require("react/jsx-runtime");
1381
+ var CursorClickIcon = (0, import_react23.forwardRef)(
1241
1382
  function CursorClickIcon2(_a, ref) {
1242
1383
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1243
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
1384
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
1244
1385
  "svg",
1245
1386
  __spreadProps(__spreadValues({
1246
1387
  ref,
@@ -1252,7 +1393,7 @@ var CursorClickIcon = (0, import_react20.forwardRef)(
1252
1393
  className
1253
1394
  }, other), {
1254
1395
  children: [
1255
- duotone && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1396
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1256
1397
  "path",
1257
1398
  {
1258
1399
  opacity: "0.12",
@@ -1260,7 +1401,7 @@ var CursorClickIcon = (0, import_react20.forwardRef)(
1260
1401
  fill: "currentColor"
1261
1402
  }
1262
1403
  ),
1263
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1404
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1264
1405
  "path",
1265
1406
  {
1266
1407
  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",
@@ -1276,13 +1417,67 @@ var CursorClickIcon = (0, import_react20.forwardRef)(
1276
1417
  }
1277
1418
  );
1278
1419
 
1420
+ // src/icons/dotsHorizontal.tsx
1421
+ var import_react24 = require("react");
1422
+ var import_jsx_runtime26 = require("react/jsx-runtime");
1423
+ var DotsHorizontalIcon = (0, import_react24.forwardRef)(
1424
+ function DotsHorizontalIcon2(_a, ref) {
1425
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1426
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
1427
+ "svg",
1428
+ __spreadProps(__spreadValues({
1429
+ ref,
1430
+ width: size,
1431
+ height: size,
1432
+ viewBox: "0 0 24 24",
1433
+ fill: "none",
1434
+ xmlns: "http://www.w3.org/2000/svg",
1435
+ className
1436
+ }, other), {
1437
+ children: [
1438
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1439
+ "path",
1440
+ {
1441
+ 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",
1442
+ stroke: "currentColor",
1443
+ strokeWidth: "2",
1444
+ strokeLinecap: "round",
1445
+ strokeLinejoin: "round"
1446
+ }
1447
+ ),
1448
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1449
+ "path",
1450
+ {
1451
+ 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",
1452
+ stroke: "currentColor",
1453
+ strokeWidth: "2",
1454
+ strokeLinecap: "round",
1455
+ strokeLinejoin: "round"
1456
+ }
1457
+ ),
1458
+ /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1459
+ "path",
1460
+ {
1461
+ 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",
1462
+ stroke: "currentColor",
1463
+ strokeWidth: "2",
1464
+ strokeLinecap: "round",
1465
+ strokeLinejoin: "round"
1466
+ }
1467
+ )
1468
+ ]
1469
+ })
1470
+ );
1471
+ }
1472
+ );
1473
+
1279
1474
  // src/icons/download.tsx
1280
- var import_react21 = require("react");
1281
- var import_jsx_runtime23 = require("react/jsx-runtime");
1282
- var DownloadIcon = (0, import_react21.forwardRef)(
1475
+ var import_react25 = require("react");
1476
+ var import_jsx_runtime27 = require("react/jsx-runtime");
1477
+ var DownloadIcon = (0, import_react25.forwardRef)(
1283
1478
  function DownloadIcon2(_a, ref) {
1284
1479
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1285
- return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
1480
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
1286
1481
  "svg",
1287
1482
  __spreadProps(__spreadValues({
1288
1483
  ref,
@@ -1294,7 +1489,7 @@ var DownloadIcon = (0, import_react21.forwardRef)(
1294
1489
  className
1295
1490
  }, other), {
1296
1491
  children: [
1297
- duotone && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1492
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1298
1493
  "path",
1299
1494
  {
1300
1495
  opacity: "0.12",
@@ -1302,7 +1497,7 @@ var DownloadIcon = (0, import_react21.forwardRef)(
1302
1497
  fill: "currentColor"
1303
1498
  }
1304
1499
  ),
1305
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1500
+ /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1306
1501
  "path",
1307
1502
  {
1308
1503
  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",
@@ -1319,11 +1514,11 @@ var DownloadIcon = (0, import_react21.forwardRef)(
1319
1514
  );
1320
1515
 
1321
1516
  // src/icons/edit.tsx
1322
- var import_react22 = require("react");
1323
- var import_jsx_runtime24 = require("react/jsx-runtime");
1324
- var EditIcon = (0, import_react22.forwardRef)(function EditIcon2(_a, ref) {
1517
+ var import_react26 = require("react");
1518
+ var import_jsx_runtime28 = require("react/jsx-runtime");
1519
+ var EditIcon = (0, import_react26.forwardRef)(function EditIcon2(_a, ref) {
1325
1520
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1326
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
1521
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
1327
1522
  "svg",
1328
1523
  __spreadProps(__spreadValues({
1329
1524
  ref,
@@ -1335,7 +1530,7 @@ var EditIcon = (0, import_react22.forwardRef)(function EditIcon2(_a, ref) {
1335
1530
  className
1336
1531
  }, other), {
1337
1532
  children: [
1338
- duotone && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1533
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1339
1534
  "path",
1340
1535
  {
1341
1536
  opacity: "0.12",
@@ -1343,7 +1538,7 @@ var EditIcon = (0, import_react22.forwardRef)(function EditIcon2(_a, ref) {
1343
1538
  fill: "currentColor"
1344
1539
  }
1345
1540
  ),
1346
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1541
+ /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1347
1542
  "path",
1348
1543
  {
1349
1544
  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",
@@ -1353,18 +1548,50 @@ var EditIcon = (0, import_react22.forwardRef)(function EditIcon2(_a, ref) {
1353
1548
  strokeLinejoin: "round"
1354
1549
  }
1355
1550
  )
1356
- ]
1357
- })
1358
- );
1359
- });
1551
+ ]
1552
+ })
1553
+ );
1554
+ });
1555
+
1556
+ // src/icons/expand.tsx
1557
+ var import_react27 = require("react");
1558
+ var import_jsx_runtime29 = require("react/jsx-runtime");
1559
+ var ExpandIcon = (0, import_react27.forwardRef)(
1560
+ function ExpandIcon2(_a, ref) {
1561
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1562
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1563
+ "svg",
1564
+ __spreadProps(__spreadValues({
1565
+ ref,
1566
+ width: size,
1567
+ height: size,
1568
+ viewBox: "0 0 24 24",
1569
+ fill: "none",
1570
+ xmlns: "http://www.w3.org/2000/svg",
1571
+ className
1572
+ }, other), {
1573
+ children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1574
+ "path",
1575
+ {
1576
+ d: "M16 8L21 3M21 3H16M21 3V8M8 8L3 3M3 3L3 8M3 3L8 3M8 16L3 21M3 21H8M3 21L3 16M16 16L21 21M21 21V16M21 21H16",
1577
+ stroke: "currentColor",
1578
+ strokeWidth: "2",
1579
+ strokeLinecap: "round",
1580
+ strokeLinejoin: "round"
1581
+ }
1582
+ )
1583
+ })
1584
+ );
1585
+ }
1586
+ );
1360
1587
 
1361
- // src/icons/expand.tsx
1362
- var import_react23 = require("react");
1363
- var import_jsx_runtime25 = require("react/jsx-runtime");
1364
- var ExpandIcon = (0, import_react23.forwardRef)(
1365
- function ExpandIcon2(_a, ref) {
1588
+ // src/icons/filterLines.tsx
1589
+ var import_react28 = require("react");
1590
+ var import_jsx_runtime30 = require("react/jsx-runtime");
1591
+ var FilterLinesIcon = (0, import_react28.forwardRef)(
1592
+ function FilterLinesIcon2(_a, ref) {
1366
1593
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1367
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1594
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1368
1595
  "svg",
1369
1596
  __spreadProps(__spreadValues({
1370
1597
  ref,
@@ -1375,10 +1602,10 @@ var ExpandIcon = (0, import_react23.forwardRef)(
1375
1602
  xmlns: "http://www.w3.org/2000/svg",
1376
1603
  className
1377
1604
  }, other), {
1378
- children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1605
+ children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1379
1606
  "path",
1380
1607
  {
1381
- d: "M16 8L21 3M21 3H16M21 3V8M8 8L3 3M3 3L3 8M3 3L8 3M8 16L3 21M3 21H8M3 21L3 16M16 16L21 21M21 21V16M21 21H16",
1608
+ d: "M6 12H18M3 6H21M9 18H15",
1382
1609
  stroke: "currentColor",
1383
1610
  strokeWidth: "2",
1384
1611
  strokeLinecap: "round",
@@ -1391,12 +1618,12 @@ var ExpandIcon = (0, import_react23.forwardRef)(
1391
1618
  );
1392
1619
 
1393
1620
  // src/icons/flipBackward.tsx
1394
- var import_react24 = require("react");
1395
- var import_jsx_runtime26 = require("react/jsx-runtime");
1396
- var FlipBackwardIcon = (0, import_react24.forwardRef)(
1621
+ var import_react29 = require("react");
1622
+ var import_jsx_runtime31 = require("react/jsx-runtime");
1623
+ var FlipBackwardIcon = (0, import_react29.forwardRef)(
1397
1624
  function FlipBackwardIcon2(_a, ref) {
1398
1625
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1399
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1626
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1400
1627
  "svg",
1401
1628
  __spreadProps(__spreadValues({
1402
1629
  ref,
@@ -1407,7 +1634,7 @@ var FlipBackwardIcon = (0, import_react24.forwardRef)(
1407
1634
  xmlns: "http://www.w3.org/2000/svg",
1408
1635
  className
1409
1636
  }, other), {
1410
- children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1637
+ children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1411
1638
  "path",
1412
1639
  {
1413
1640
  d: "M3 9H16.5C18.9853 9 21 11.0147 21 13.5C21 15.9853 18.9853 18 16.5 18H12M3 9L7 5M3 9L7 13",
@@ -1423,12 +1650,12 @@ var FlipBackwardIcon = (0, import_react24.forwardRef)(
1423
1650
  );
1424
1651
 
1425
1652
  // src/icons/flipForward.tsx
1426
- var import_react25 = require("react");
1427
- var import_jsx_runtime27 = require("react/jsx-runtime");
1428
- var FlipForwardIcon = (0, import_react25.forwardRef)(
1653
+ var import_react30 = require("react");
1654
+ var import_jsx_runtime32 = require("react/jsx-runtime");
1655
+ var FlipForwardIcon = (0, import_react30.forwardRef)(
1429
1656
  function FlipForwardIcon2(_a, ref) {
1430
1657
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1431
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1658
+ return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1432
1659
  "svg",
1433
1660
  __spreadProps(__spreadValues({
1434
1661
  ref,
@@ -1439,7 +1666,7 @@ var FlipForwardIcon = (0, import_react25.forwardRef)(
1439
1666
  xmlns: "http://www.w3.org/2000/svg",
1440
1667
  className
1441
1668
  }, other), {
1442
- children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1669
+ children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1443
1670
  "path",
1444
1671
  {
1445
1672
  d: "M21 9H7.5C5.01472 9 3 11.0147 3 13.5C3 15.9853 5.01472 18 7.5 18H12M21 9L17 5M21 9L17 13",
@@ -1455,12 +1682,12 @@ var FlipForwardIcon = (0, import_react25.forwardRef)(
1455
1682
  );
1456
1683
 
1457
1684
  // src/icons/helpCircle.tsx
1458
- var import_react26 = require("react");
1459
- var import_jsx_runtime28 = require("react/jsx-runtime");
1460
- var HelpCircleIcon = (0, import_react26.forwardRef)(
1685
+ var import_react31 = require("react");
1686
+ var import_jsx_runtime33 = require("react/jsx-runtime");
1687
+ var HelpCircleIcon = (0, import_react31.forwardRef)(
1461
1688
  function HelpCircleIcon2(_a, ref) {
1462
1689
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1463
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
1690
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
1464
1691
  "svg",
1465
1692
  __spreadProps(__spreadValues({
1466
1693
  ref,
@@ -1472,7 +1699,7 @@ var HelpCircleIcon = (0, import_react26.forwardRef)(
1472
1699
  className
1473
1700
  }, other), {
1474
1701
  children: [
1475
- duotone && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1702
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1476
1703
  "path",
1477
1704
  {
1478
1705
  opacity: "0.12",
@@ -1480,7 +1707,7 @@ var HelpCircleIcon = (0, import_react26.forwardRef)(
1480
1707
  fill: "currentColor"
1481
1708
  }
1482
1709
  ),
1483
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1710
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1484
1711
  "path",
1485
1712
  {
1486
1713
  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",
@@ -1497,11 +1724,11 @@ var HelpCircleIcon = (0, import_react26.forwardRef)(
1497
1724
  );
1498
1725
 
1499
1726
  // src/icons/home.tsx
1500
- var import_react27 = require("react");
1501
- var import_jsx_runtime29 = require("react/jsx-runtime");
1502
- var HomeIcon = (0, import_react27.forwardRef)(function HomeIcon2(_a, ref) {
1727
+ var import_react32 = require("react");
1728
+ var import_jsx_runtime34 = require("react/jsx-runtime");
1729
+ var HomeIcon = (0, import_react32.forwardRef)(function HomeIcon2(_a, ref) {
1503
1730
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1504
- return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
1731
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
1505
1732
  "svg",
1506
1733
  __spreadProps(__spreadValues({
1507
1734
  ref,
@@ -1513,8 +1740,8 @@ var HomeIcon = (0, import_react27.forwardRef)(function HomeIcon2(_a, ref) {
1513
1740
  className
1514
1741
  }, other), {
1515
1742
  children: [
1516
- duotone && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
1517
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1743
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
1744
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1518
1745
  "path",
1519
1746
  {
1520
1747
  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",
@@ -1530,12 +1757,12 @@ var HomeIcon = (0, import_react27.forwardRef)(function HomeIcon2(_a, ref) {
1530
1757
  });
1531
1758
 
1532
1759
  // src/icons/image.tsx
1533
- var import_react28 = require("react");
1534
- var import_jsx_runtime30 = require("react/jsx-runtime");
1535
- var ImageIcon = (0, import_react28.forwardRef)(
1760
+ var import_react33 = require("react");
1761
+ var import_jsx_runtime35 = require("react/jsx-runtime");
1762
+ var ImageIcon = (0, import_react33.forwardRef)(
1536
1763
  function ImageIcon2(_a, ref) {
1537
1764
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1538
- return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
1765
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
1539
1766
  "svg",
1540
1767
  __spreadProps(__spreadValues({
1541
1768
  ref,
@@ -1547,15 +1774,15 @@ var ImageIcon = (0, import_react28.forwardRef)(
1547
1774
  className
1548
1775
  }, other), {
1549
1776
  children: [
1550
- duotone && /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("g", { opacity: "0.12", children: [
1551
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1777
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("g", { opacity: "0.12", children: [
1778
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1552
1779
  "path",
1553
1780
  {
1554
1781
  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",
1555
1782
  fill: "currentColor"
1556
1783
  }
1557
1784
  ),
1558
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1785
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1559
1786
  "path",
1560
1787
  {
1561
1788
  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",
@@ -1563,7 +1790,7 @@ var ImageIcon = (0, import_react28.forwardRef)(
1563
1790
  }
1564
1791
  )
1565
1792
  ] }),
1566
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1793
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1567
1794
  "path",
1568
1795
  {
1569
1796
  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",
@@ -1580,12 +1807,12 @@ var ImageIcon = (0, import_react28.forwardRef)(
1580
1807
  );
1581
1808
 
1582
1809
  // src/icons/imageDown.tsx
1583
- var import_react29 = require("react");
1584
- var import_jsx_runtime31 = require("react/jsx-runtime");
1585
- var ImageDownIcon = (0, import_react29.forwardRef)(
1810
+ var import_react34 = require("react");
1811
+ var import_jsx_runtime36 = require("react/jsx-runtime");
1812
+ var ImageDownIcon = (0, import_react34.forwardRef)(
1586
1813
  function ImageDownIcon2(_a, ref) {
1587
1814
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1588
- return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
1815
+ return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
1589
1816
  "svg",
1590
1817
  __spreadProps(__spreadValues({
1591
1818
  ref,
@@ -1597,15 +1824,15 @@ var ImageDownIcon = (0, import_react29.forwardRef)(
1597
1824
  className
1598
1825
  }, other), {
1599
1826
  children: [
1600
- duotone && /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("g", { opacity: "0.12", children: [
1601
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1827
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("g", { opacity: "0.12", children: [
1828
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
1602
1829
  "path",
1603
1830
  {
1604
1831
  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",
1605
1832
  fill: "currentColor"
1606
1833
  }
1607
1834
  ),
1608
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1835
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
1609
1836
  "path",
1610
1837
  {
1611
1838
  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",
@@ -1613,7 +1840,7 @@ var ImageDownIcon = (0, import_react29.forwardRef)(
1613
1840
  }
1614
1841
  )
1615
1842
  ] }),
1616
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1843
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
1617
1844
  "path",
1618
1845
  {
1619
1846
  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",
@@ -1630,12 +1857,12 @@ var ImageDownIcon = (0, import_react29.forwardRef)(
1630
1857
  );
1631
1858
 
1632
1859
  // src/icons/imageX.tsx
1633
- var import_react30 = require("react");
1634
- var import_jsx_runtime32 = require("react/jsx-runtime");
1635
- var ImageXIcon = (0, import_react30.forwardRef)(
1860
+ var import_react35 = require("react");
1861
+ var import_jsx_runtime37 = require("react/jsx-runtime");
1862
+ var ImageXIcon = (0, import_react35.forwardRef)(
1636
1863
  function ImageXIcon2(_a, ref) {
1637
1864
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1638
- return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
1865
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
1639
1866
  "svg",
1640
1867
  __spreadProps(__spreadValues({
1641
1868
  ref,
@@ -1647,15 +1874,15 @@ var ImageXIcon = (0, import_react30.forwardRef)(
1647
1874
  className
1648
1875
  }, other), {
1649
1876
  children: [
1650
- duotone && /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("g", { opacity: "0.12", children: [
1651
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1877
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("g", { opacity: "0.12", children: [
1878
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1652
1879
  "path",
1653
1880
  {
1654
1881
  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",
1655
1882
  fill: "currentColor"
1656
1883
  }
1657
1884
  ),
1658
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1885
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1659
1886
  "path",
1660
1887
  {
1661
1888
  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",
@@ -1663,7 +1890,7 @@ var ImageXIcon = (0, import_react30.forwardRef)(
1663
1890
  }
1664
1891
  )
1665
1892
  ] }),
1666
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1893
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1667
1894
  "path",
1668
1895
  {
1669
1896
  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",
@@ -1680,12 +1907,12 @@ var ImageXIcon = (0, import_react30.forwardRef)(
1680
1907
  );
1681
1908
 
1682
1909
  // src/icons/infoCircle.tsx
1683
- var import_react31 = require("react");
1684
- var import_jsx_runtime33 = require("react/jsx-runtime");
1685
- var InfoCircleIcon = (0, import_react31.forwardRef)(
1910
+ var import_react36 = require("react");
1911
+ var import_jsx_runtime38 = require("react/jsx-runtime");
1912
+ var InfoCircleIcon = (0, import_react36.forwardRef)(
1686
1913
  function InfoCircleIcon2(_a, ref) {
1687
1914
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1688
- return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
1915
+ return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
1689
1916
  "svg",
1690
1917
  __spreadProps(__spreadValues({
1691
1918
  ref,
@@ -1697,7 +1924,7 @@ var InfoCircleIcon = (0, import_react31.forwardRef)(
1697
1924
  className
1698
1925
  }, other), {
1699
1926
  children: [
1700
- duotone && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1927
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
1701
1928
  "path",
1702
1929
  {
1703
1930
  opacity: "0.12",
@@ -1705,7 +1932,7 @@ var InfoCircleIcon = (0, import_react31.forwardRef)(
1705
1932
  fill: "currentColor"
1706
1933
  }
1707
1934
  ),
1708
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1935
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
1709
1936
  "path",
1710
1937
  {
1711
1938
  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",
@@ -1722,12 +1949,12 @@ var InfoCircleIcon = (0, import_react31.forwardRef)(
1722
1949
  );
1723
1950
 
1724
1951
  // src/icons/lightbulb.tsx
1725
- var import_react32 = require("react");
1726
- var import_jsx_runtime34 = require("react/jsx-runtime");
1727
- var LightbulbIcon = (0, import_react32.forwardRef)(
1952
+ var import_react37 = require("react");
1953
+ var import_jsx_runtime39 = require("react/jsx-runtime");
1954
+ var LightbulbIcon = (0, import_react37.forwardRef)(
1728
1955
  function LightbulbIcon2(_a, ref) {
1729
1956
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1730
- return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
1957
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
1731
1958
  "svg",
1732
1959
  __spreadProps(__spreadValues({
1733
1960
  ref,
@@ -1739,7 +1966,7 @@ var LightbulbIcon = (0, import_react32.forwardRef)(
1739
1966
  className
1740
1967
  }, other), {
1741
1968
  children: [
1742
- duotone && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1969
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
1743
1970
  "path",
1744
1971
  {
1745
1972
  opacity: "0.12",
@@ -1747,7 +1974,7 @@ var LightbulbIcon = (0, import_react32.forwardRef)(
1747
1974
  fill: "currentColor"
1748
1975
  }
1749
1976
  ),
1750
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1977
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
1751
1978
  "path",
1752
1979
  {
1753
1980
  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",
@@ -1763,12 +1990,42 @@ var LightbulbIcon = (0, import_react32.forwardRef)(
1763
1990
  }
1764
1991
  );
1765
1992
 
1993
+ // src/icons/link.tsx
1994
+ var import_react38 = require("react");
1995
+ var import_jsx_runtime40 = require("react/jsx-runtime");
1996
+ var LinkIcon = (0, import_react38.forwardRef)(function LinkIcon2(_a, ref) {
1997
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1998
+ return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
1999
+ "svg",
2000
+ __spreadProps(__spreadValues({
2001
+ ref,
2002
+ width: size,
2003
+ height: size,
2004
+ viewBox: "0 0 24 24",
2005
+ fill: "none",
2006
+ xmlns: "http://www.w3.org/2000/svg",
2007
+ className
2008
+ }, other), {
2009
+ children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2010
+ "path",
2011
+ {
2012
+ 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",
2013
+ stroke: "currentColor",
2014
+ strokeWidth: "2",
2015
+ strokeLinecap: "round",
2016
+ strokeLinejoin: "round"
2017
+ }
2018
+ )
2019
+ })
2020
+ );
2021
+ });
2022
+
1766
2023
  // src/icons/lock.tsx
1767
- var import_react33 = require("react");
1768
- var import_jsx_runtime35 = require("react/jsx-runtime");
1769
- var LockIcon = (0, import_react33.forwardRef)(function LockIcon2(_a, ref) {
2024
+ var import_react39 = require("react");
2025
+ var import_jsx_runtime41 = require("react/jsx-runtime");
2026
+ var LockIcon = (0, import_react39.forwardRef)(function LockIcon2(_a, ref) {
1770
2027
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1771
- return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
2028
+ return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
1772
2029
  "svg",
1773
2030
  __spreadProps(__spreadValues({
1774
2031
  ref,
@@ -1780,7 +2037,7 @@ var LockIcon = (0, import_react33.forwardRef)(function LockIcon2(_a, ref) {
1780
2037
  className
1781
2038
  }, other), {
1782
2039
  children: [
1783
- duotone && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2040
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
1784
2041
  "path",
1785
2042
  {
1786
2043
  opacity: "0.12",
@@ -1788,7 +2045,7 @@ var LockIcon = (0, import_react33.forwardRef)(function LockIcon2(_a, ref) {
1788
2045
  fill: "currentColor"
1789
2046
  }
1790
2047
  ),
1791
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2048
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
1792
2049
  "path",
1793
2050
  {
1794
2051
  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",
@@ -1804,12 +2061,12 @@ var LockIcon = (0, import_react33.forwardRef)(function LockIcon2(_a, ref) {
1804
2061
  });
1805
2062
 
1806
2063
  // src/icons/logIn.tsx
1807
- var import_react34 = require("react");
1808
- var import_jsx_runtime36 = require("react/jsx-runtime");
1809
- var LogInIcon = (0, import_react34.forwardRef)(
2064
+ var import_react40 = require("react");
2065
+ var import_jsx_runtime42 = require("react/jsx-runtime");
2066
+ var LogInIcon = (0, import_react40.forwardRef)(
1810
2067
  function LogInIcon2(_a, ref) {
1811
2068
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1812
- return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
2069
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
1813
2070
  "svg",
1814
2071
  __spreadProps(__spreadValues({
1815
2072
  ref,
@@ -1821,7 +2078,7 @@ var LogInIcon = (0, import_react34.forwardRef)(
1821
2078
  className
1822
2079
  }, other), {
1823
2080
  children: [
1824
- duotone && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2081
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
1825
2082
  "path",
1826
2083
  {
1827
2084
  opacity: "0.12",
@@ -1829,7 +2086,7 @@ var LogInIcon = (0, import_react34.forwardRef)(
1829
2086
  fill: "currentColor"
1830
2087
  }
1831
2088
  ),
1832
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
2089
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
1833
2090
  "path",
1834
2091
  {
1835
2092
  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",
@@ -1846,12 +2103,12 @@ var LogInIcon = (0, import_react34.forwardRef)(
1846
2103
  );
1847
2104
 
1848
2105
  // src/icons/magicWand.tsx
1849
- var import_react35 = require("react");
1850
- var import_jsx_runtime37 = require("react/jsx-runtime");
1851
- var MagicWandIcon = (0, import_react35.forwardRef)(
2106
+ var import_react41 = require("react");
2107
+ var import_jsx_runtime43 = require("react/jsx-runtime");
2108
+ var MagicWandIcon = (0, import_react41.forwardRef)(
1852
2109
  function MagicWandIcon2(_a, ref) {
1853
2110
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1854
- return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
2111
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
1855
2112
  "svg",
1856
2113
  __spreadProps(__spreadValues({
1857
2114
  ref,
@@ -1863,7 +2120,7 @@ var MagicWandIcon = (0, import_react35.forwardRef)(
1863
2120
  className
1864
2121
  }, other), {
1865
2122
  children: [
1866
- duotone && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2123
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
1867
2124
  "path",
1868
2125
  {
1869
2126
  opacity: "0.12",
@@ -1871,7 +2128,7 @@ var MagicWandIcon = (0, import_react35.forwardRef)(
1871
2128
  fill: "currentColor"
1872
2129
  }
1873
2130
  ),
1874
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
2131
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
1875
2132
  "path",
1876
2133
  {
1877
2134
  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",
@@ -1888,11 +2145,11 @@ var MagicWandIcon = (0, import_react35.forwardRef)(
1888
2145
  );
1889
2146
 
1890
2147
  // src/icons/mail.tsx
1891
- var import_react36 = require("react");
1892
- var import_jsx_runtime38 = require("react/jsx-runtime");
1893
- var MailIcon = (0, import_react36.forwardRef)(function MailIcon2(_a, ref) {
2148
+ var import_react42 = require("react");
2149
+ var import_jsx_runtime44 = require("react/jsx-runtime");
2150
+ var MailIcon = (0, import_react42.forwardRef)(function MailIcon2(_a, ref) {
1894
2151
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1895
- return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
2152
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
1896
2153
  "svg",
1897
2154
  __spreadProps(__spreadValues({
1898
2155
  ref,
@@ -1904,7 +2161,7 @@ var MailIcon = (0, import_react36.forwardRef)(function MailIcon2(_a, ref) {
1904
2161
  className
1905
2162
  }, other), {
1906
2163
  children: [
1907
- duotone && /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
2164
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
1908
2165
  "path",
1909
2166
  {
1910
2167
  opacity: "0.12",
@@ -1912,7 +2169,7 @@ var MailIcon = (0, import_react36.forwardRef)(function MailIcon2(_a, ref) {
1912
2169
  fill: "currentColor"
1913
2170
  }
1914
2171
  ),
1915
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
2172
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
1916
2173
  "path",
1917
2174
  {
1918
2175
  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",
@@ -1928,11 +2185,11 @@ var MailIcon = (0, import_react36.forwardRef)(function MailIcon2(_a, ref) {
1928
2185
  });
1929
2186
 
1930
2187
  // src/icons/menu.tsx
1931
- var import_react37 = require("react");
1932
- var import_jsx_runtime39 = require("react/jsx-runtime");
1933
- var MenuIcon = (0, import_react37.forwardRef)(function MenuIcon2(_a, ref) {
2188
+ var import_react43 = require("react");
2189
+ var import_jsx_runtime45 = require("react/jsx-runtime");
2190
+ var MenuIcon = (0, import_react43.forwardRef)(function MenuIcon2(_a, ref) {
1934
2191
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1935
- return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2192
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
1936
2193
  "svg",
1937
2194
  __spreadProps(__spreadValues({
1938
2195
  ref,
@@ -1943,7 +2200,7 @@ var MenuIcon = (0, import_react37.forwardRef)(function MenuIcon2(_a, ref) {
1943
2200
  xmlns: "http://www.w3.org/2000/svg",
1944
2201
  className
1945
2202
  }, other), {
1946
- children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2203
+ children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
1947
2204
  "path",
1948
2205
  {
1949
2206
  d: "M3 12H21M3 6H21M3 18H21",
@@ -1958,12 +2215,12 @@ var MenuIcon = (0, import_react37.forwardRef)(function MenuIcon2(_a, ref) {
1958
2215
  });
1959
2216
 
1960
2217
  // src/icons/messageChatSquare.tsx
1961
- var import_react38 = require("react");
1962
- var import_jsx_runtime40 = require("react/jsx-runtime");
1963
- var MessageChatSquareIcon = (0, import_react38.forwardRef)(
2218
+ var import_react44 = require("react");
2219
+ var import_jsx_runtime46 = require("react/jsx-runtime");
2220
+ var MessageChatSquareIcon = (0, import_react44.forwardRef)(
1964
2221
  function MessageChatSquareIcon2(_a, ref) {
1965
2222
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1966
- return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
2223
+ return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
1967
2224
  "svg",
1968
2225
  __spreadProps(__spreadValues({
1969
2226
  ref,
@@ -1975,7 +2232,7 @@ var MessageChatSquareIcon = (0, import_react38.forwardRef)(
1975
2232
  className
1976
2233
  }, other), {
1977
2234
  children: [
1978
- duotone && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2235
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
1979
2236
  "path",
1980
2237
  {
1981
2238
  opacity: "0.12",
@@ -1983,7 +2240,7 @@ var MessageChatSquareIcon = (0, import_react38.forwardRef)(
1983
2240
  fill: "currentColor"
1984
2241
  }
1985
2242
  ),
1986
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2243
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
1987
2244
  "path",
1988
2245
  {
1989
2246
  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",
@@ -2000,12 +2257,12 @@ var MessageChatSquareIcon = (0, import_react38.forwardRef)(
2000
2257
  );
2001
2258
 
2002
2259
  // src/icons/messagePlusSquare.tsx
2003
- var import_react39 = require("react");
2004
- var import_jsx_runtime41 = require("react/jsx-runtime");
2005
- var MessagePlusSquareIcon = (0, import_react39.forwardRef)(
2260
+ var import_react45 = require("react");
2261
+ var import_jsx_runtime47 = require("react/jsx-runtime");
2262
+ var MessagePlusSquareIcon = (0, import_react45.forwardRef)(
2006
2263
  function MessagePlusSquareIcon2(_a, ref) {
2007
2264
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2008
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
2265
+ return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
2009
2266
  "svg",
2010
2267
  __spreadProps(__spreadValues({
2011
2268
  ref,
@@ -2017,7 +2274,7 @@ var MessagePlusSquareIcon = (0, import_react39.forwardRef)(
2017
2274
  className
2018
2275
  }, other), {
2019
2276
  children: [
2020
- duotone && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
2277
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2021
2278
  "path",
2022
2279
  {
2023
2280
  opacity: "0.12",
@@ -2025,7 +2282,7 @@ var MessagePlusSquareIcon = (0, import_react39.forwardRef)(
2025
2282
  fill: "currentColor"
2026
2283
  }
2027
2284
  ),
2028
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
2285
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2029
2286
  "path",
2030
2287
  {
2031
2288
  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",
@@ -2042,12 +2299,12 @@ var MessagePlusSquareIcon = (0, import_react39.forwardRef)(
2042
2299
  );
2043
2300
 
2044
2301
  // src/icons/messageTextSquare.tsx
2045
- var import_react40 = require("react");
2046
- var import_jsx_runtime42 = require("react/jsx-runtime");
2047
- var MessageTextSquareIcon = (0, import_react40.forwardRef)(
2302
+ var import_react46 = require("react");
2303
+ var import_jsx_runtime48 = require("react/jsx-runtime");
2304
+ var MessageTextSquareIcon = (0, import_react46.forwardRef)(
2048
2305
  function MessageTextSquareIcon2(_a, ref) {
2049
2306
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2050
- return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
2307
+ return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
2051
2308
  "svg",
2052
2309
  __spreadProps(__spreadValues({
2053
2310
  ref,
@@ -2059,7 +2316,7 @@ var MessageTextSquareIcon = (0, import_react40.forwardRef)(
2059
2316
  className
2060
2317
  }, other), {
2061
2318
  children: [
2062
- duotone && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2319
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2063
2320
  "path",
2064
2321
  {
2065
2322
  opacity: "0.12",
@@ -2067,7 +2324,7 @@ var MessageTextSquareIcon = (0, import_react40.forwardRef)(
2067
2324
  fill: "currentColor"
2068
2325
  }
2069
2326
  ),
2070
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2327
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2071
2328
  "path",
2072
2329
  {
2073
2330
  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",
@@ -2084,12 +2341,12 @@ var MessageTextSquareIcon = (0, import_react40.forwardRef)(
2084
2341
  );
2085
2342
 
2086
2343
  // src/icons/microphone.tsx
2087
- var import_react41 = require("react");
2088
- var import_jsx_runtime43 = require("react/jsx-runtime");
2089
- var MicrophoneIcon = (0, import_react41.forwardRef)(
2344
+ var import_react47 = require("react");
2345
+ var import_jsx_runtime49 = require("react/jsx-runtime");
2346
+ var MicrophoneIcon = (0, import_react47.forwardRef)(
2090
2347
  function MicrophoneIcon2(_a, ref) {
2091
2348
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2092
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
2349
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
2093
2350
  "svg",
2094
2351
  __spreadProps(__spreadValues({
2095
2352
  ref,
@@ -2101,7 +2358,7 @@ var MicrophoneIcon = (0, import_react41.forwardRef)(
2101
2358
  className
2102
2359
  }, other), {
2103
2360
  children: [
2104
- duotone && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
2361
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2105
2362
  "path",
2106
2363
  {
2107
2364
  opacity: "0.12",
@@ -2109,7 +2366,7 @@ var MicrophoneIcon = (0, import_react41.forwardRef)(
2109
2366
  fill: "currentColor"
2110
2367
  }
2111
2368
  ),
2112
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
2369
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2113
2370
  "path",
2114
2371
  {
2115
2372
  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",
@@ -2126,12 +2383,12 @@ var MicrophoneIcon = (0, import_react41.forwardRef)(
2126
2383
  );
2127
2384
 
2128
2385
  // src/icons/microphoneOff.tsx
2129
- var import_react42 = require("react");
2130
- var import_jsx_runtime44 = require("react/jsx-runtime");
2131
- var MicrophoneOffIcon = (0, import_react42.forwardRef)(
2386
+ var import_react48 = require("react");
2387
+ var import_jsx_runtime50 = require("react/jsx-runtime");
2388
+ var MicrophoneOffIcon = (0, import_react48.forwardRef)(
2132
2389
  function MicrophoneOffIcon2(_a, ref) {
2133
2390
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2134
- return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
2391
+ return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
2135
2392
  "svg",
2136
2393
  __spreadProps(__spreadValues({
2137
2394
  ref,
@@ -2143,7 +2400,7 @@ var MicrophoneOffIcon = (0, import_react42.forwardRef)(
2143
2400
  className
2144
2401
  }, other), {
2145
2402
  children: [
2146
- duotone && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
2403
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2147
2404
  "path",
2148
2405
  {
2149
2406
  opacity: "0.12",
@@ -2151,7 +2408,7 @@ var MicrophoneOffIcon = (0, import_react42.forwardRef)(
2151
2408
  fill: "currentColor"
2152
2409
  }
2153
2410
  ),
2154
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
2411
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2155
2412
  "path",
2156
2413
  {
2157
2414
  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",
@@ -2168,12 +2425,12 @@ var MicrophoneOffIcon = (0, import_react42.forwardRef)(
2168
2425
  );
2169
2426
 
2170
2427
  // src/icons/monitor.tsx
2171
- var import_react43 = require("react");
2172
- var import_jsx_runtime45 = require("react/jsx-runtime");
2173
- var MonitorIcon = (0, import_react43.forwardRef)(
2428
+ var import_react49 = require("react");
2429
+ var import_jsx_runtime51 = require("react/jsx-runtime");
2430
+ var MonitorIcon = (0, import_react49.forwardRef)(
2174
2431
  function MonitorIcon2(_a, ref) {
2175
2432
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2176
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
2433
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
2177
2434
  "svg",
2178
2435
  __spreadProps(__spreadValues({
2179
2436
  ref,
@@ -2185,7 +2442,7 @@ var MonitorIcon = (0, import_react43.forwardRef)(
2185
2442
  className
2186
2443
  }, other), {
2187
2444
  children: [
2188
- duotone && /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2445
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
2189
2446
  "path",
2190
2447
  {
2191
2448
  opacity: "0.12",
@@ -2193,7 +2450,7 @@ var MonitorIcon = (0, import_react43.forwardRef)(
2193
2450
  fill: "currentColor"
2194
2451
  }
2195
2452
  ),
2196
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2453
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
2197
2454
  "path",
2198
2455
  {
2199
2456
  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",
@@ -2210,12 +2467,12 @@ var MonitorIcon = (0, import_react43.forwardRef)(
2210
2467
  );
2211
2468
 
2212
2469
  // src/icons/notificationBox.tsx
2213
- var import_react44 = require("react");
2214
- var import_jsx_runtime46 = require("react/jsx-runtime");
2215
- var NotificationBoxIcon = (0, import_react44.forwardRef)(
2470
+ var import_react50 = require("react");
2471
+ var import_jsx_runtime52 = require("react/jsx-runtime");
2472
+ var NotificationBoxIcon = (0, import_react50.forwardRef)(
2216
2473
  function NotificationBoxIcon2(_a, ref) {
2217
2474
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2218
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
2475
+ return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
2219
2476
  "svg",
2220
2477
  __spreadProps(__spreadValues({
2221
2478
  ref,
@@ -2227,7 +2484,7 @@ var NotificationBoxIcon = (0, import_react44.forwardRef)(
2227
2484
  className
2228
2485
  }, other), {
2229
2486
  children: [
2230
- duotone && /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2487
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2231
2488
  "path",
2232
2489
  {
2233
2490
  opacity: "0.12",
@@ -2235,7 +2492,7 @@ var NotificationBoxIcon = (0, import_react44.forwardRef)(
2235
2492
  fill: "currentColor"
2236
2493
  }
2237
2494
  ),
2238
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2495
+ /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2239
2496
  "path",
2240
2497
  {
2241
2498
  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",
@@ -2252,12 +2509,12 @@ var NotificationBoxIcon = (0, import_react44.forwardRef)(
2252
2509
  );
2253
2510
 
2254
2511
  // src/icons/pauseCircle.tsx
2255
- var import_react45 = require("react");
2256
- var import_jsx_runtime47 = require("react/jsx-runtime");
2257
- var PauseCircleIcon = (0, import_react45.forwardRef)(
2512
+ var import_react51 = require("react");
2513
+ var import_jsx_runtime53 = require("react/jsx-runtime");
2514
+ var PauseCircleIcon = (0, import_react51.forwardRef)(
2258
2515
  function PauseCircleIcon2(_a, ref) {
2259
2516
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2260
- return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
2517
+ return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
2261
2518
  "svg",
2262
2519
  __spreadProps(__spreadValues({
2263
2520
  ref,
@@ -2269,7 +2526,7 @@ var PauseCircleIcon = (0, import_react45.forwardRef)(
2269
2526
  className
2270
2527
  }, other), {
2271
2528
  children: [
2272
- duotone && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2529
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2273
2530
  "path",
2274
2531
  {
2275
2532
  opacity: "0.12",
@@ -2277,7 +2534,7 @@ var PauseCircleIcon = (0, import_react45.forwardRef)(
2277
2534
  fill: "currentColor"
2278
2535
  }
2279
2536
  ),
2280
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2537
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2281
2538
  "path",
2282
2539
  {
2283
2540
  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",
@@ -2294,12 +2551,12 @@ var PauseCircleIcon = (0, import_react45.forwardRef)(
2294
2551
  );
2295
2552
 
2296
2553
  // src/icons/phone.tsx
2297
- var import_react46 = require("react");
2298
- var import_jsx_runtime48 = require("react/jsx-runtime");
2299
- var PhoneIcon = (0, import_react46.forwardRef)(
2554
+ var import_react52 = require("react");
2555
+ var import_jsx_runtime54 = require("react/jsx-runtime");
2556
+ var PhoneIcon = (0, import_react52.forwardRef)(
2300
2557
  function PhoneIcon2(_a, ref) {
2301
2558
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2302
- return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
2559
+ return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
2303
2560
  "svg",
2304
2561
  __spreadProps(__spreadValues({
2305
2562
  ref,
@@ -2311,7 +2568,7 @@ var PhoneIcon = (0, import_react46.forwardRef)(
2311
2568
  className
2312
2569
  }, other), {
2313
2570
  children: [
2314
- duotone && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2571
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2315
2572
  "path",
2316
2573
  {
2317
2574
  opacity: "0.12",
@@ -2319,7 +2576,7 @@ var PhoneIcon = (0, import_react46.forwardRef)(
2319
2576
  fill: "currentColor"
2320
2577
  }
2321
2578
  ),
2322
- /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2579
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2323
2580
  "path",
2324
2581
  {
2325
2582
  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",
@@ -2335,13 +2592,55 @@ var PhoneIcon = (0, import_react46.forwardRef)(
2335
2592
  }
2336
2593
  );
2337
2594
 
2595
+ // src/icons/phoneCall.tsx
2596
+ var import_react53 = require("react");
2597
+ var import_jsx_runtime55 = require("react/jsx-runtime");
2598
+ var PhoneCallIcon = (0, import_react53.forwardRef)(
2599
+ function PhoneCallIcon2(_a, ref) {
2600
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2601
+ return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
2602
+ "svg",
2603
+ __spreadProps(__spreadValues({
2604
+ ref,
2605
+ width: size,
2606
+ height: size,
2607
+ viewBox: "0 0 24 24",
2608
+ fill: "none",
2609
+ xmlns: "http://www.w3.org/2000/svg",
2610
+ className
2611
+ }, other), {
2612
+ children: [
2613
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2614
+ "path",
2615
+ {
2616
+ opacity: "0.12",
2617
+ 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",
2618
+ fill: "currentColor"
2619
+ }
2620
+ ),
2621
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2622
+ "path",
2623
+ {
2624
+ 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",
2625
+ stroke: "currentColor",
2626
+ strokeWidth: "2",
2627
+ strokeLinecap: "round",
2628
+ strokeLinejoin: "round"
2629
+ }
2630
+ )
2631
+ ]
2632
+ })
2633
+ );
2634
+ }
2635
+ );
2636
+
2338
2637
  // src/icons/pieChart.tsx
2339
- var import_react47 = require("react");
2340
- var import_jsx_runtime49 = require("react/jsx-runtime");
2341
- var PieChartIcon = (0, import_react47.forwardRef)(
2638
+ var import_react54 = require("react");
2639
+ var import_jsx_runtime56 = require("react/jsx-runtime");
2640
+ var PieChartIcon = (0, import_react54.forwardRef)(
2342
2641
  function PieChartIcon2(_a, ref) {
2343
2642
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2344
- return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
2643
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
2345
2644
  "svg",
2346
2645
  __spreadProps(__spreadValues({
2347
2646
  ref,
@@ -2353,7 +2652,7 @@ var PieChartIcon = (0, import_react47.forwardRef)(
2353
2652
  className
2354
2653
  }, other), {
2355
2654
  children: [
2356
- duotone && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2655
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2357
2656
  "path",
2358
2657
  {
2359
2658
  opacity: "0.12",
@@ -2361,7 +2660,7 @@ var PieChartIcon = (0, import_react47.forwardRef)(
2361
2660
  fill: "currentColor"
2362
2661
  }
2363
2662
  ),
2364
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2663
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2365
2664
  "path",
2366
2665
  {
2367
2666
  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",
@@ -2372,7 +2671,7 @@ var PieChartIcon = (0, import_react47.forwardRef)(
2372
2671
  }
2373
2672
  ),
2374
2673
  ",",
2375
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2674
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2376
2675
  "path",
2377
2676
  {
2378
2677
  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",
@@ -2389,12 +2688,12 @@ var PieChartIcon = (0, import_react47.forwardRef)(
2389
2688
  );
2390
2689
 
2391
2690
  // src/icons/playCircle.tsx
2392
- var import_react48 = require("react");
2393
- var import_jsx_runtime50 = require("react/jsx-runtime");
2394
- var PlayCircleIcon = (0, import_react48.forwardRef)(
2691
+ var import_react55 = require("react");
2692
+ var import_jsx_runtime57 = require("react/jsx-runtime");
2693
+ var PlayCircleIcon = (0, import_react55.forwardRef)(
2395
2694
  function PlayCircleIcon2(_a, ref) {
2396
2695
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2397
- return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
2696
+ return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
2398
2697
  "svg",
2399
2698
  __spreadProps(__spreadValues({
2400
2699
  ref,
@@ -2406,7 +2705,7 @@ var PlayCircleIcon = (0, import_react48.forwardRef)(
2406
2705
  className
2407
2706
  }, other), {
2408
2707
  children: [
2409
- duotone && /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2708
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2410
2709
  "path",
2411
2710
  {
2412
2711
  opacity: "0.12",
@@ -2414,7 +2713,7 @@ var PlayCircleIcon = (0, import_react48.forwardRef)(
2414
2713
  fill: "currentColor"
2415
2714
  }
2416
2715
  ),
2417
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2716
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2418
2717
  "path",
2419
2718
  {
2420
2719
  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",
@@ -2425,7 +2724,7 @@ var PlayCircleIcon = (0, import_react48.forwardRef)(
2425
2724
  }
2426
2725
  ),
2427
2726
  ",",
2428
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2727
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2429
2728
  "path",
2430
2729
  {
2431
2730
  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",
@@ -2442,11 +2741,11 @@ var PlayCircleIcon = (0, import_react48.forwardRef)(
2442
2741
  );
2443
2742
 
2444
2743
  // src/icons/plus.tsx
2445
- var import_react49 = require("react");
2446
- var import_jsx_runtime51 = require("react/jsx-runtime");
2447
- var PlusIcon = (0, import_react49.forwardRef)(function PlusIcon2(_a, ref) {
2744
+ var import_react56 = require("react");
2745
+ var import_jsx_runtime58 = require("react/jsx-runtime");
2746
+ var PlusIcon = (0, import_react56.forwardRef)(function PlusIcon2(_a, ref) {
2448
2747
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2449
- return /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
2748
+ return /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2450
2749
  "svg",
2451
2750
  __spreadProps(__spreadValues({
2452
2751
  ref,
@@ -2457,7 +2756,7 @@ var PlusIcon = (0, import_react49.forwardRef)(function PlusIcon2(_a, ref) {
2457
2756
  xmlns: "http://www.w3.org/2000/svg",
2458
2757
  className
2459
2758
  }, other), {
2460
- children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
2759
+ children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2461
2760
  "path",
2462
2761
  {
2463
2762
  d: "M12 5V19M5 12H19",
@@ -2472,12 +2771,12 @@ var PlusIcon = (0, import_react49.forwardRef)(function PlusIcon2(_a, ref) {
2472
2771
  });
2473
2772
 
2474
2773
  // src/icons/plusCircle.tsx
2475
- var import_react50 = require("react");
2476
- var import_jsx_runtime52 = require("react/jsx-runtime");
2477
- var PlusCircleIcon = (0, import_react50.forwardRef)(
2774
+ var import_react57 = require("react");
2775
+ var import_jsx_runtime59 = require("react/jsx-runtime");
2776
+ var PlusCircleIcon = (0, import_react57.forwardRef)(
2478
2777
  function PlusCircleIcon2(_a, ref) {
2479
2778
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2480
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
2779
+ return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(
2481
2780
  "svg",
2482
2781
  __spreadProps(__spreadValues({
2483
2782
  ref,
@@ -2489,7 +2788,7 @@ var PlusCircleIcon = (0, import_react50.forwardRef)(
2489
2788
  className
2490
2789
  }, other), {
2491
2790
  children: [
2492
- duotone && /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2791
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2493
2792
  "path",
2494
2793
  {
2495
2794
  opacity: "0.12",
@@ -2497,7 +2796,7 @@ var PlusCircleIcon = (0, import_react50.forwardRef)(
2497
2796
  fill: "currentColor"
2498
2797
  }
2499
2798
  ),
2500
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2799
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2501
2800
  "path",
2502
2801
  {
2503
2802
  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",
@@ -2514,12 +2813,12 @@ var PlusCircleIcon = (0, import_react50.forwardRef)(
2514
2813
  );
2515
2814
 
2516
2815
  // src/icons/puzzlePiece.tsx
2517
- var import_react51 = require("react");
2518
- var import_jsx_runtime53 = require("react/jsx-runtime");
2519
- var PuzzlePieceIcon = (0, import_react51.forwardRef)(
2816
+ var import_react58 = require("react");
2817
+ var import_jsx_runtime60 = require("react/jsx-runtime");
2818
+ var PuzzlePieceIcon = (0, import_react58.forwardRef)(
2520
2819
  function PuzzlePieceIcon2(_a, ref) {
2521
2820
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2522
- return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
2821
+ return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
2523
2822
  "svg",
2524
2823
  __spreadProps(__spreadValues({
2525
2824
  ref,
@@ -2531,7 +2830,7 @@ var PuzzlePieceIcon = (0, import_react51.forwardRef)(
2531
2830
  className
2532
2831
  }, other), {
2533
2832
  children: [
2534
- duotone && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2833
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2535
2834
  "path",
2536
2835
  {
2537
2836
  opacity: "0.12",
@@ -2539,7 +2838,7 @@ var PuzzlePieceIcon = (0, import_react51.forwardRef)(
2539
2838
  fill: "currentColor"
2540
2839
  }
2541
2840
  ),
2542
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2841
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2543
2842
  "path",
2544
2843
  {
2545
2844
  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",
@@ -2556,12 +2855,12 @@ var PuzzlePieceIcon = (0, import_react51.forwardRef)(
2556
2855
  );
2557
2856
 
2558
2857
  // src/icons/qrCode.tsx
2559
- var import_react52 = require("react");
2560
- var import_jsx_runtime54 = require("react/jsx-runtime");
2561
- var QrCodeIcon = (0, import_react52.forwardRef)(
2858
+ var import_react59 = require("react");
2859
+ var import_jsx_runtime61 = require("react/jsx-runtime");
2860
+ var QrCodeIcon = (0, import_react59.forwardRef)(
2562
2861
  function QrCodeIcon2(_a, ref) {
2563
2862
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2564
- return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
2863
+ return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
2565
2864
  "svg",
2566
2865
  __spreadProps(__spreadValues({
2567
2866
  ref,
@@ -2573,7 +2872,7 @@ var QrCodeIcon = (0, import_react52.forwardRef)(
2573
2872
  className
2574
2873
  }, other), {
2575
2874
  children: [
2576
- duotone && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2875
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
2577
2876
  "path",
2578
2877
  {
2579
2878
  opacity: "0.4",
@@ -2584,7 +2883,7 @@ var QrCodeIcon = (0, import_react52.forwardRef)(
2584
2883
  strokeLinejoin: "round"
2585
2884
  }
2586
2885
  ),
2587
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2886
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
2588
2887
  "path",
2589
2888
  {
2590
2889
  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",
@@ -2601,12 +2900,12 @@ var QrCodeIcon = (0, import_react52.forwardRef)(
2601
2900
  );
2602
2901
 
2603
2902
  // src/icons/receiptCheck.tsx
2604
- var import_react53 = require("react");
2605
- var import_jsx_runtime55 = require("react/jsx-runtime");
2606
- var ReceiptCheckIcon = (0, import_react53.forwardRef)(
2903
+ var import_react60 = require("react");
2904
+ var import_jsx_runtime62 = require("react/jsx-runtime");
2905
+ var ReceiptCheckIcon = (0, import_react60.forwardRef)(
2607
2906
  function ReceiptCheckIcon2(_a, ref) {
2608
2907
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2609
- return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
2908
+ return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
2610
2909
  "svg",
2611
2910
  __spreadProps(__spreadValues({
2612
2911
  ref,
@@ -2618,7 +2917,7 @@ var ReceiptCheckIcon = (0, import_react53.forwardRef)(
2618
2917
  className
2619
2918
  }, other), {
2620
2919
  children: [
2621
- duotone && /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2920
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
2622
2921
  "path",
2623
2922
  {
2624
2923
  opacity: "0.12",
@@ -2626,7 +2925,7 @@ var ReceiptCheckIcon = (0, import_react53.forwardRef)(
2626
2925
  fill: "currentColor"
2627
2926
  }
2628
2927
  ),
2629
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2928
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
2630
2929
  "path",
2631
2930
  {
2632
2931
  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",
@@ -2643,12 +2942,12 @@ var ReceiptCheckIcon = (0, import_react53.forwardRef)(
2643
2942
  );
2644
2943
 
2645
2944
  // src/icons/recording.tsx
2646
- var import_react54 = require("react");
2647
- var import_jsx_runtime56 = require("react/jsx-runtime");
2648
- var RecordingIcon = (0, import_react54.forwardRef)(
2945
+ var import_react61 = require("react");
2946
+ var import_jsx_runtime63 = require("react/jsx-runtime");
2947
+ var RecordingIcon = (0, import_react61.forwardRef)(
2649
2948
  function RecordingIcon2(_a, ref) {
2650
2949
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2651
- return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
2950
+ return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
2652
2951
  "svg",
2653
2952
  __spreadProps(__spreadValues({
2654
2953
  ref,
@@ -2660,7 +2959,7 @@ var RecordingIcon = (0, import_react54.forwardRef)(
2660
2959
  className
2661
2960
  }, other), {
2662
2961
  children: [
2663
- duotone && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2962
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
2664
2963
  "path",
2665
2964
  {
2666
2965
  opacity: "0.12",
@@ -2668,7 +2967,7 @@ var RecordingIcon = (0, import_react54.forwardRef)(
2668
2967
  fill: "currentColor"
2669
2968
  }
2670
2969
  ),
2671
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2970
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
2672
2971
  "path",
2673
2972
  {
2674
2973
  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",
@@ -2685,12 +2984,12 @@ var RecordingIcon = (0, import_react54.forwardRef)(
2685
2984
  );
2686
2985
 
2687
2986
  // src/icons/refreshCcw.tsx
2688
- var import_react55 = require("react");
2689
- var import_jsx_runtime57 = require("react/jsx-runtime");
2690
- var RefreshCcwIcon = (0, import_react55.forwardRef)(
2987
+ var import_react62 = require("react");
2988
+ var import_jsx_runtime64 = require("react/jsx-runtime");
2989
+ var RefreshCcwIcon = (0, import_react62.forwardRef)(
2691
2990
  function RefreshCcwIcon2(_a, ref) {
2692
2991
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2693
- return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2992
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2694
2993
  "svg",
2695
2994
  __spreadProps(__spreadValues({
2696
2995
  ref,
@@ -2701,7 +3000,7 @@ var RefreshCcwIcon = (0, import_react55.forwardRef)(
2701
3000
  xmlns: "http://www.w3.org/2000/svg",
2702
3001
  className
2703
3002
  }, other), {
2704
- children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
3003
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2705
3004
  "path",
2706
3005
  {
2707
3006
  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",
@@ -2717,12 +3016,12 @@ var RefreshCcwIcon = (0, import_react55.forwardRef)(
2717
3016
  );
2718
3017
 
2719
3018
  // src/icons/refreshCw.tsx
2720
- var import_react56 = require("react");
2721
- var import_jsx_runtime58 = require("react/jsx-runtime");
2722
- var RefreshCwIcon = (0, import_react56.forwardRef)(
3019
+ var import_react63 = require("react");
3020
+ var import_jsx_runtime65 = require("react/jsx-runtime");
3021
+ var RefreshCwIcon = (0, import_react63.forwardRef)(
2723
3022
  function RefreshCwIcon2(_a, ref) {
2724
3023
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2725
- return /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
3024
+ return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
2726
3025
  "svg",
2727
3026
  __spreadProps(__spreadValues({
2728
3027
  ref,
@@ -2733,7 +3032,7 @@ var RefreshCwIcon = (0, import_react56.forwardRef)(
2733
3032
  xmlns: "http://www.w3.org/2000/svg",
2734
3033
  className
2735
3034
  }, other), {
2736
- children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
3035
+ children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
2737
3036
  "path",
2738
3037
  {
2739
3038
  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",
@@ -2749,12 +3048,12 @@ var RefreshCwIcon = (0, import_react56.forwardRef)(
2749
3048
  );
2750
3049
 
2751
3050
  // src/icons/rocket.tsx
2752
- var import_react57 = require("react");
2753
- var import_jsx_runtime59 = require("react/jsx-runtime");
2754
- var RocketIcon = (0, import_react57.forwardRef)(
3051
+ var import_react64 = require("react");
3052
+ var import_jsx_runtime66 = require("react/jsx-runtime");
3053
+ var RocketIcon = (0, import_react64.forwardRef)(
2755
3054
  function RocketIcon2(_a, ref) {
2756
3055
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2757
- return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(
3056
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
2758
3057
  "svg",
2759
3058
  __spreadProps(__spreadValues({
2760
3059
  ref,
@@ -2766,7 +3065,7 @@ var RocketIcon = (0, import_react57.forwardRef)(
2766
3065
  className
2767
3066
  }, other), {
2768
3067
  children: [
2769
- duotone && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
3068
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
2770
3069
  "path",
2771
3070
  {
2772
3071
  opacity: "0.12",
@@ -2774,7 +3073,7 @@ var RocketIcon = (0, import_react57.forwardRef)(
2774
3073
  fill: "currentColor"
2775
3074
  }
2776
3075
  ),
2777
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
3076
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
2778
3077
  "path",
2779
3078
  {
2780
3079
  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",
@@ -2791,11 +3090,11 @@ var RocketIcon = (0, import_react57.forwardRef)(
2791
3090
  );
2792
3091
 
2793
3092
  // src/icons/save.tsx
2794
- var import_react58 = require("react");
2795
- var import_jsx_runtime60 = require("react/jsx-runtime");
2796
- var SaveIcon = (0, import_react58.forwardRef)(function SaveIcon2(_a, ref) {
3093
+ var import_react65 = require("react");
3094
+ var import_jsx_runtime67 = require("react/jsx-runtime");
3095
+ var SaveIcon = (0, import_react65.forwardRef)(function SaveIcon2(_a, ref) {
2797
3096
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2798
- return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
3097
+ return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
2799
3098
  "svg",
2800
3099
  __spreadProps(__spreadValues({
2801
3100
  ref,
@@ -2807,15 +3106,15 @@ var SaveIcon = (0, import_react58.forwardRef)(function SaveIcon2(_a, ref) {
2807
3106
  className
2808
3107
  }, other), {
2809
3108
  children: [
2810
- duotone && /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("g", { opacity: "0.12", children: [
2811
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
3109
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("g", { opacity: "0.12", children: [
3110
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
2812
3111
  "path",
2813
3112
  {
2814
3113
  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",
2815
3114
  fill: "currentColor"
2816
3115
  }
2817
3116
  ),
2818
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
3117
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
2819
3118
  "path",
2820
3119
  {
2821
3120
  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",
@@ -2823,7 +3122,7 @@ var SaveIcon = (0, import_react58.forwardRef)(function SaveIcon2(_a, ref) {
2823
3122
  }
2824
3123
  )
2825
3124
  ] }),
2826
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
3125
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
2827
3126
  "path",
2828
3127
  {
2829
3128
  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",
@@ -2839,12 +3138,12 @@ var SaveIcon = (0, import_react58.forwardRef)(function SaveIcon2(_a, ref) {
2839
3138
  });
2840
3139
 
2841
3140
  // src/icons/search.tsx
2842
- var import_react59 = require("react");
2843
- var import_jsx_runtime61 = require("react/jsx-runtime");
2844
- var SearchMdIcon = (0, import_react59.forwardRef)(
3141
+ var import_react66 = require("react");
3142
+ var import_jsx_runtime68 = require("react/jsx-runtime");
3143
+ var SearchMdIcon = (0, import_react66.forwardRef)(
2845
3144
  function SearchMdIcon2(_a, ref) {
2846
3145
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2847
- return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
3146
+ return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
2848
3147
  "svg",
2849
3148
  __spreadProps(__spreadValues({
2850
3149
  ref,
@@ -2856,7 +3155,7 @@ var SearchMdIcon = (0, import_react59.forwardRef)(
2856
3155
  className
2857
3156
  }, other), {
2858
3157
  children: [
2859
- duotone && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
3158
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
2860
3159
  "path",
2861
3160
  {
2862
3161
  opacity: "0.12",
@@ -2864,7 +3163,7 @@ var SearchMdIcon = (0, import_react59.forwardRef)(
2864
3163
  fill: "currentColor"
2865
3164
  }
2866
3165
  ),
2867
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
3166
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
2868
3167
  "path",
2869
3168
  {
2870
3169
  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",
@@ -2881,11 +3180,11 @@ var SearchMdIcon = (0, import_react59.forwardRef)(
2881
3180
  );
2882
3181
 
2883
3182
  // src/icons/send.tsx
2884
- var import_react60 = require("react");
2885
- var import_jsx_runtime62 = require("react/jsx-runtime");
2886
- var SendIcon = (0, import_react60.forwardRef)(function SendIcon2(_a, ref) {
3183
+ var import_react67 = require("react");
3184
+ var import_jsx_runtime69 = require("react/jsx-runtime");
3185
+ var SendIcon = (0, import_react67.forwardRef)(function SendIcon2(_a, ref) {
2887
3186
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2888
- return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
3187
+ return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
2889
3188
  "svg",
2890
3189
  __spreadProps(__spreadValues({
2891
3190
  ref,
@@ -2897,7 +3196,7 @@ var SendIcon = (0, import_react60.forwardRef)(function SendIcon2(_a, ref) {
2897
3196
  className
2898
3197
  }, other), {
2899
3198
  children: [
2900
- duotone && /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
3199
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
2901
3200
  "path",
2902
3201
  {
2903
3202
  opacity: "0.12",
@@ -2905,7 +3204,7 @@ var SendIcon = (0, import_react60.forwardRef)(function SendIcon2(_a, ref) {
2905
3204
  fill: "currentColor"
2906
3205
  }
2907
3206
  ),
2908
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
3207
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
2909
3208
  "path",
2910
3209
  {
2911
3210
  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",
@@ -2921,12 +3220,12 @@ var SendIcon = (0, import_react60.forwardRef)(function SendIcon2(_a, ref) {
2921
3220
  });
2922
3221
 
2923
3222
  // src/icons/settings.tsx
2924
- var import_react61 = require("react");
2925
- var import_jsx_runtime63 = require("react/jsx-runtime");
2926
- var SettingsIcon = (0, import_react61.forwardRef)(
3223
+ var import_react68 = require("react");
3224
+ var import_jsx_runtime70 = require("react/jsx-runtime");
3225
+ var SettingsIcon = (0, import_react68.forwardRef)(
2927
3226
  function SettingsIcon2(_a, ref) {
2928
3227
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2929
- return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
3228
+ return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
2930
3229
  "svg",
2931
3230
  __spreadProps(__spreadValues({
2932
3231
  ref,
@@ -2938,7 +3237,7 @@ var SettingsIcon = (0, import_react61.forwardRef)(
2938
3237
  className
2939
3238
  }, other), {
2940
3239
  children: [
2941
- duotone && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
3240
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
2942
3241
  "path",
2943
3242
  {
2944
3243
  opacity: "0.12",
@@ -2948,7 +3247,7 @@ var SettingsIcon = (0, import_react61.forwardRef)(
2948
3247
  fill: "currentColor"
2949
3248
  }
2950
3249
  ),
2951
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
3250
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
2952
3251
  "path",
2953
3252
  {
2954
3253
  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",
@@ -2959,7 +3258,7 @@ var SettingsIcon = (0, import_react61.forwardRef)(
2959
3258
  }
2960
3259
  ),
2961
3260
  ",",
2962
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
3261
+ /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
2963
3262
  "path",
2964
3263
  {
2965
3264
  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",
@@ -2976,12 +3275,12 @@ var SettingsIcon = (0, import_react61.forwardRef)(
2976
3275
  );
2977
3276
 
2978
3277
  // src/icons/share.tsx
2979
- var import_react62 = require("react");
2980
- var import_jsx_runtime64 = require("react/jsx-runtime");
2981
- var ShareIcon = (0, import_react62.forwardRef)(
3278
+ var import_react69 = require("react");
3279
+ var import_jsx_runtime71 = require("react/jsx-runtime");
3280
+ var ShareIcon = (0, import_react69.forwardRef)(
2982
3281
  function ShareIcon2(_a, ref) {
2983
3282
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2984
- return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
3283
+ return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
2985
3284
  "svg",
2986
3285
  __spreadProps(__spreadValues({
2987
3286
  ref,
@@ -2993,22 +3292,22 @@ var ShareIcon = (0, import_react62.forwardRef)(
2993
3292
  className
2994
3293
  }, other), {
2995
3294
  children: [
2996
- duotone && /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("g", { opacity: "0.12", children: [
2997
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3295
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("g", { opacity: "0.12", children: [
3296
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
2998
3297
  "path",
2999
3298
  {
3000
3299
  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",
3001
3300
  fill: "currentColor"
3002
3301
  }
3003
3302
  ),
3004
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3303
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3005
3304
  "path",
3006
3305
  {
3007
3306
  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",
3008
3307
  fill: "currentColor"
3009
3308
  }
3010
3309
  ),
3011
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3310
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3012
3311
  "path",
3013
3312
  {
3014
3313
  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",
@@ -3016,7 +3315,7 @@ var ShareIcon = (0, import_react62.forwardRef)(
3016
3315
  }
3017
3316
  )
3018
3317
  ] }),
3019
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3318
+ /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3020
3319
  "path",
3021
3320
  {
3022
3321
  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",
@@ -3032,13 +3331,55 @@ var ShareIcon = (0, import_react62.forwardRef)(
3032
3331
  }
3033
3332
  );
3034
3333
 
3334
+ // src/icons/shareArrow.tsx
3335
+ var import_react70 = require("react");
3336
+ var import_jsx_runtime72 = require("react/jsx-runtime");
3337
+ var ShareArrowIcon = (0, import_react70.forwardRef)(
3338
+ function ShareArrowIcon2(_a, ref) {
3339
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3340
+ return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
3341
+ "svg",
3342
+ __spreadProps(__spreadValues({
3343
+ ref,
3344
+ width: size,
3345
+ height: size,
3346
+ viewBox: "0 0 24 24",
3347
+ fill: "none",
3348
+ xmlns: "http://www.w3.org/2000/svg",
3349
+ className
3350
+ }, other), {
3351
+ children: [
3352
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3353
+ "path",
3354
+ {
3355
+ opacity: "0.12",
3356
+ 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",
3357
+ fill: "currentColor"
3358
+ }
3359
+ ),
3360
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3361
+ "path",
3362
+ {
3363
+ 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",
3364
+ stroke: "currentColor",
3365
+ strokeWidth: "2",
3366
+ strokeLinecap: "round",
3367
+ strokeLinejoin: "round"
3368
+ }
3369
+ )
3370
+ ]
3371
+ })
3372
+ );
3373
+ }
3374
+ );
3375
+
3035
3376
  // src/icons/skipBack.tsx
3036
- var import_react63 = require("react");
3037
- var import_jsx_runtime65 = require("react/jsx-runtime");
3038
- var SkipBackIcon = (0, import_react63.forwardRef)(
3377
+ var import_react71 = require("react");
3378
+ var import_jsx_runtime73 = require("react/jsx-runtime");
3379
+ var SkipBackIcon = (0, import_react71.forwardRef)(
3039
3380
  function SkipBackIcon2(_a, ref) {
3040
3381
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3041
- return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
3382
+ return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
3042
3383
  "svg",
3043
3384
  __spreadProps(__spreadValues({
3044
3385
  ref,
@@ -3050,7 +3391,7 @@ var SkipBackIcon = (0, import_react63.forwardRef)(
3050
3391
  className
3051
3392
  }, other), {
3052
3393
  children: [
3053
- duotone && /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
3394
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3054
3395
  "path",
3055
3396
  {
3056
3397
  opacity: "0.12",
@@ -3058,7 +3399,7 @@ var SkipBackIcon = (0, import_react63.forwardRef)(
3058
3399
  fill: "currentColor"
3059
3400
  }
3060
3401
  ),
3061
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
3402
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3062
3403
  "path",
3063
3404
  {
3064
3405
  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",
@@ -3075,12 +3416,12 @@ var SkipBackIcon = (0, import_react63.forwardRef)(
3075
3416
  );
3076
3417
 
3077
3418
  // src/icons/skipForward.tsx
3078
- var import_react64 = require("react");
3079
- var import_jsx_runtime66 = require("react/jsx-runtime");
3080
- var SkipForwardIcon = (0, import_react64.forwardRef)(
3419
+ var import_react72 = require("react");
3420
+ var import_jsx_runtime74 = require("react/jsx-runtime");
3421
+ var SkipForwardIcon = (0, import_react72.forwardRef)(
3081
3422
  function SkipForwardIcon2(_a, ref) {
3082
3423
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3083
- return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
3424
+ return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
3084
3425
  "svg",
3085
3426
  __spreadProps(__spreadValues({
3086
3427
  ref,
@@ -3092,7 +3433,7 @@ var SkipForwardIcon = (0, import_react64.forwardRef)(
3092
3433
  className
3093
3434
  }, other), {
3094
3435
  children: [
3095
- duotone && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
3436
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
3096
3437
  "path",
3097
3438
  {
3098
3439
  opacity: "0.12",
@@ -3100,7 +3441,7 @@ var SkipForwardIcon = (0, import_react64.forwardRef)(
3100
3441
  fill: "currentColor"
3101
3442
  }
3102
3443
  ),
3103
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
3444
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
3104
3445
  "path",
3105
3446
  {
3106
3447
  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",
@@ -3117,12 +3458,12 @@ var SkipForwardIcon = (0, import_react64.forwardRef)(
3117
3458
  );
3118
3459
 
3119
3460
  // src/icons/stars.tsx
3120
- var import_react65 = require("react");
3121
- var import_jsx_runtime67 = require("react/jsx-runtime");
3122
- var StarsIcon = (0, import_react65.forwardRef)(
3461
+ var import_react73 = require("react");
3462
+ var import_jsx_runtime75 = require("react/jsx-runtime");
3463
+ var StarsIcon = (0, import_react73.forwardRef)(
3123
3464
  function StarsIcon2(_a, ref) {
3124
3465
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3125
- return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
3466
+ return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
3126
3467
  "svg",
3127
3468
  __spreadProps(__spreadValues({
3128
3469
  ref,
@@ -3134,7 +3475,7 @@ var StarsIcon = (0, import_react65.forwardRef)(
3134
3475
  className
3135
3476
  }, other), {
3136
3477
  children: [
3137
- duotone && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
3478
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
3138
3479
  "path",
3139
3480
  {
3140
3481
  opacity: "0.12",
@@ -3142,7 +3483,7 @@ var StarsIcon = (0, import_react65.forwardRef)(
3142
3483
  fill: "currentColor"
3143
3484
  }
3144
3485
  ),
3145
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
3486
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
3146
3487
  "path",
3147
3488
  {
3148
3489
  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",
@@ -3159,12 +3500,12 @@ var StarsIcon = (0, import_react65.forwardRef)(
3159
3500
  );
3160
3501
 
3161
3502
  // src/icons/trash.tsx
3162
- var import_react66 = require("react");
3163
- var import_jsx_runtime68 = require("react/jsx-runtime");
3164
- var TrashIcon = (0, import_react66.forwardRef)(
3503
+ var import_react74 = require("react");
3504
+ var import_jsx_runtime76 = require("react/jsx-runtime");
3505
+ var TrashIcon = (0, import_react74.forwardRef)(
3165
3506
  function TrashIcon2(_a, ref) {
3166
3507
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3167
- return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
3508
+ return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
3168
3509
  "svg",
3169
3510
  __spreadProps(__spreadValues({
3170
3511
  ref,
@@ -3176,7 +3517,7 @@ var TrashIcon = (0, import_react66.forwardRef)(
3176
3517
  className
3177
3518
  }, other), {
3178
3519
  children: [
3179
- duotone && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
3520
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
3180
3521
  "path",
3181
3522
  {
3182
3523
  opacity: "0.12",
@@ -3184,7 +3525,7 @@ var TrashIcon = (0, import_react66.forwardRef)(
3184
3525
  fill: "currentColor"
3185
3526
  }
3186
3527
  ),
3187
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
3528
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
3188
3529
  "path",
3189
3530
  {
3190
3531
  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",
@@ -3201,12 +3542,12 @@ var TrashIcon = (0, import_react66.forwardRef)(
3201
3542
  );
3202
3543
 
3203
3544
  // src/icons/trendDown.tsx
3204
- var import_react67 = require("react");
3205
- var import_jsx_runtime69 = require("react/jsx-runtime");
3206
- var TrendDownIcon = (0, import_react67.forwardRef)(
3545
+ var import_react75 = require("react");
3546
+ var import_jsx_runtime77 = require("react/jsx-runtime");
3547
+ var TrendDownIcon = (0, import_react75.forwardRef)(
3207
3548
  function TrendDownIcon2(_a, ref) {
3208
3549
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3209
- return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3550
+ return /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
3210
3551
  "svg",
3211
3552
  __spreadProps(__spreadValues({
3212
3553
  ref,
@@ -3217,7 +3558,7 @@ var TrendDownIcon = (0, import_react67.forwardRef)(
3217
3558
  xmlns: "http://www.w3.org/2000/svg",
3218
3559
  className
3219
3560
  }, other), {
3220
- children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3561
+ children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
3221
3562
  "path",
3222
3563
  {
3223
3564
  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",
@@ -3233,12 +3574,12 @@ var TrendDownIcon = (0, import_react67.forwardRef)(
3233
3574
  );
3234
3575
 
3235
3576
  // src/icons/trendUp.tsx
3236
- var import_react68 = require("react");
3237
- var import_jsx_runtime70 = require("react/jsx-runtime");
3238
- var TrendUpIcon = (0, import_react68.forwardRef)(
3577
+ var import_react76 = require("react");
3578
+ var import_jsx_runtime78 = require("react/jsx-runtime");
3579
+ var TrendUpIcon = (0, import_react76.forwardRef)(
3239
3580
  function TrendUpIcon2(_a, ref) {
3240
3581
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3241
- return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3582
+ return /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
3242
3583
  "svg",
3243
3584
  __spreadProps(__spreadValues({
3244
3585
  ref,
@@ -3249,7 +3590,7 @@ var TrendUpIcon = (0, import_react68.forwardRef)(
3249
3590
  xmlns: "http://www.w3.org/2000/svg",
3250
3591
  className
3251
3592
  }, other), {
3252
- children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3593
+ children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
3253
3594
  "path",
3254
3595
  {
3255
3596
  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",
@@ -3265,11 +3606,11 @@ var TrendUpIcon = (0, import_react68.forwardRef)(
3265
3606
  );
3266
3607
 
3267
3608
  // src/icons/user.tsx
3268
- var import_react69 = require("react");
3269
- var import_jsx_runtime71 = require("react/jsx-runtime");
3270
- var UserIcon = (0, import_react69.forwardRef)(function UserIcon2(_a, ref) {
3609
+ var import_react77 = require("react");
3610
+ var import_jsx_runtime79 = require("react/jsx-runtime");
3611
+ var UserIcon = (0, import_react77.forwardRef)(function UserIcon2(_a, ref) {
3271
3612
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3272
- return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
3613
+ return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
3273
3614
  "svg",
3274
3615
  __spreadProps(__spreadValues({
3275
3616
  ref,
@@ -3281,7 +3622,7 @@ var UserIcon = (0, import_react69.forwardRef)(function UserIcon2(_a, ref) {
3281
3622
  className
3282
3623
  }, other), {
3283
3624
  children: [
3284
- duotone && /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3625
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
3285
3626
  "path",
3286
3627
  {
3287
3628
  opacity: "0.12",
@@ -3289,7 +3630,7 @@ var UserIcon = (0, import_react69.forwardRef)(function UserIcon2(_a, ref) {
3289
3630
  fill: "currentColor"
3290
3631
  }
3291
3632
  ),
3292
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3633
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
3293
3634
  "path",
3294
3635
  {
3295
3636
  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",
@@ -3305,12 +3646,12 @@ var UserIcon = (0, import_react69.forwardRef)(function UserIcon2(_a, ref) {
3305
3646
  });
3306
3647
 
3307
3648
  // src/icons/userPlus.tsx
3308
- var import_react70 = require("react");
3309
- var import_jsx_runtime72 = require("react/jsx-runtime");
3310
- var UserPlusIcon = (0, import_react70.forwardRef)(
3649
+ var import_react78 = require("react");
3650
+ var import_jsx_runtime80 = require("react/jsx-runtime");
3651
+ var UserPlusIcon = (0, import_react78.forwardRef)(
3311
3652
  function UserPlusIcon2(_a, ref) {
3312
3653
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3313
- return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
3654
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
3314
3655
  "svg",
3315
3656
  __spreadProps(__spreadValues({
3316
3657
  ref,
@@ -3322,7 +3663,7 @@ var UserPlusIcon = (0, import_react70.forwardRef)(
3322
3663
  className
3323
3664
  }, other), {
3324
3665
  children: [
3325
- duotone && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3666
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
3326
3667
  "path",
3327
3668
  {
3328
3669
  opacity: "0.12",
@@ -3330,7 +3671,7 @@ var UserPlusIcon = (0, import_react70.forwardRef)(
3330
3671
  fill: "currentColor"
3331
3672
  }
3332
3673
  ),
3333
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3674
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
3334
3675
  "path",
3335
3676
  {
3336
3677
  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",
@@ -3347,12 +3688,12 @@ var UserPlusIcon = (0, import_react70.forwardRef)(
3347
3688
  );
3348
3689
 
3349
3690
  // src/icons/userX.tsx
3350
- var import_react71 = require("react");
3351
- var import_jsx_runtime73 = require("react/jsx-runtime");
3352
- var UserXIcon = (0, import_react71.forwardRef)(
3691
+ var import_react79 = require("react");
3692
+ var import_jsx_runtime81 = require("react/jsx-runtime");
3693
+ var UserXIcon = (0, import_react79.forwardRef)(
3353
3694
  function UserXIcon2(_a, ref) {
3354
3695
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3355
- return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
3696
+ return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
3356
3697
  "svg",
3357
3698
  __spreadProps(__spreadValues({
3358
3699
  ref,
@@ -3364,7 +3705,7 @@ var UserXIcon = (0, import_react71.forwardRef)(
3364
3705
  className
3365
3706
  }, other), {
3366
3707
  children: [
3367
- duotone && /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3708
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
3368
3709
  "path",
3369
3710
  {
3370
3711
  opacity: "0.12",
@@ -3372,7 +3713,7 @@ var UserXIcon = (0, import_react71.forwardRef)(
3372
3713
  fill: "currentColor"
3373
3714
  }
3374
3715
  ),
3375
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3716
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
3376
3717
  "path",
3377
3718
  {
3378
3719
  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",
@@ -3389,12 +3730,12 @@ var UserXIcon = (0, import_react71.forwardRef)(
3389
3730
  );
3390
3731
 
3391
3732
  // src/icons/users.tsx
3392
- var import_react72 = require("react");
3393
- var import_jsx_runtime74 = require("react/jsx-runtime");
3394
- var UsersIcon = (0, import_react72.forwardRef)(
3733
+ var import_react80 = require("react");
3734
+ var import_jsx_runtime82 = require("react/jsx-runtime");
3735
+ var UsersIcon = (0, import_react80.forwardRef)(
3395
3736
  function UsersIcon2(_a, ref) {
3396
3737
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3397
- return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
3738
+ return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(
3398
3739
  "svg",
3399
3740
  __spreadProps(__spreadValues({
3400
3741
  ref,
@@ -3406,7 +3747,7 @@ var UsersIcon = (0, import_react72.forwardRef)(
3406
3747
  className
3407
3748
  }, other), {
3408
3749
  children: [
3409
- duotone && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
3750
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
3410
3751
  "path",
3411
3752
  {
3412
3753
  opacity: "0.12",
@@ -3414,7 +3755,7 @@ var UsersIcon = (0, import_react72.forwardRef)(
3414
3755
  fill: "currentColor"
3415
3756
  }
3416
3757
  ),
3417
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
3758
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
3418
3759
  "path",
3419
3760
  {
3420
3761
  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",
@@ -3431,12 +3772,12 @@ var UsersIcon = (0, import_react72.forwardRef)(
3431
3772
  );
3432
3773
 
3433
3774
  // src/icons/usersPlus.tsx
3434
- var import_react73 = require("react");
3435
- var import_jsx_runtime75 = require("react/jsx-runtime");
3436
- var UsersPlusIcon = (0, import_react73.forwardRef)(
3775
+ var import_react81 = require("react");
3776
+ var import_jsx_runtime83 = require("react/jsx-runtime");
3777
+ var UsersPlusIcon = (0, import_react81.forwardRef)(
3437
3778
  function UsersPlusIcon2(_a, ref) {
3438
3779
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3439
- return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
3780
+ return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
3440
3781
  "svg",
3441
3782
  __spreadProps(__spreadValues({
3442
3783
  ref,
@@ -3448,7 +3789,7 @@ var UsersPlusIcon = (0, import_react73.forwardRef)(
3448
3789
  className
3449
3790
  }, other), {
3450
3791
  children: [
3451
- duotone && /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
3792
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
3452
3793
  "path",
3453
3794
  {
3454
3795
  opacity: "0.12",
@@ -3456,7 +3797,7 @@ var UsersPlusIcon = (0, import_react73.forwardRef)(
3456
3797
  fill: "currentColor"
3457
3798
  }
3458
3799
  ),
3459
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
3800
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
3460
3801
  "path",
3461
3802
  {
3462
3803
  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",
@@ -3473,12 +3814,12 @@ var UsersPlusIcon = (0, import_react73.forwardRef)(
3473
3814
  );
3474
3815
 
3475
3816
  // src/icons/usersX.tsx
3476
- var import_react74 = require("react");
3477
- var import_jsx_runtime76 = require("react/jsx-runtime");
3478
- var UsersXIcon = (0, import_react74.forwardRef)(
3817
+ var import_react82 = require("react");
3818
+ var import_jsx_runtime84 = require("react/jsx-runtime");
3819
+ var UsersXIcon = (0, import_react82.forwardRef)(
3479
3820
  function UsersXIcon2(_a, ref) {
3480
3821
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3481
- return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
3822
+ return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
3482
3823
  "svg",
3483
3824
  __spreadProps(__spreadValues({
3484
3825
  ref,
@@ -3490,7 +3831,7 @@ var UsersXIcon = (0, import_react74.forwardRef)(
3490
3831
  className
3491
3832
  }, other), {
3492
3833
  children: [
3493
- duotone && /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
3834
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
3494
3835
  "path",
3495
3836
  {
3496
3837
  opacity: "0.12",
@@ -3498,7 +3839,7 @@ var UsersXIcon = (0, import_react74.forwardRef)(
3498
3839
  fill: "currentColor"
3499
3840
  }
3500
3841
  ),
3501
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
3842
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
3502
3843
  "path",
3503
3844
  {
3504
3845
  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",
@@ -3515,12 +3856,12 @@ var UsersXIcon = (0, import_react74.forwardRef)(
3515
3856
  );
3516
3857
 
3517
3858
  // src/icons/videoRecorder.tsx
3518
- var import_react75 = require("react");
3519
- var import_jsx_runtime77 = require("react/jsx-runtime");
3520
- var VideoRecorderIcon = (0, import_react75.forwardRef)(
3859
+ var import_react83 = require("react");
3860
+ var import_jsx_runtime85 = require("react/jsx-runtime");
3861
+ var VideoRecorderIcon = (0, import_react83.forwardRef)(
3521
3862
  function VideoRecorderIcon2(_a, ref) {
3522
3863
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3523
- return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
3864
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
3524
3865
  "svg",
3525
3866
  __spreadProps(__spreadValues({
3526
3867
  ref,
@@ -3532,7 +3873,7 @@ var VideoRecorderIcon = (0, import_react75.forwardRef)(
3532
3873
  className
3533
3874
  }, other), {
3534
3875
  children: [
3535
- duotone && /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
3876
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
3536
3877
  "path",
3537
3878
  {
3538
3879
  opacity: "0.12",
@@ -3544,7 +3885,7 @@ var VideoRecorderIcon = (0, import_react75.forwardRef)(
3544
3885
  strokeLinejoin: "round"
3545
3886
  }
3546
3887
  ),
3547
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
3888
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
3548
3889
  "path",
3549
3890
  {
3550
3891
  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",
@@ -3555,7 +3896,7 @@ var VideoRecorderIcon = (0, import_react75.forwardRef)(
3555
3896
  }
3556
3897
  ),
3557
3898
  ",",
3558
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
3899
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
3559
3900
  "path",
3560
3901
  {
3561
3902
  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",
@@ -3572,12 +3913,12 @@ var VideoRecorderIcon = (0, import_react75.forwardRef)(
3572
3913
  );
3573
3914
 
3574
3915
  // src/icons/videoRecorderOff.tsx
3575
- var import_react76 = require("react");
3576
- var import_jsx_runtime78 = require("react/jsx-runtime");
3577
- var VideoRecorderOffIcon = (0, import_react76.forwardRef)(
3916
+ var import_react84 = require("react");
3917
+ var import_jsx_runtime86 = require("react/jsx-runtime");
3918
+ var VideoRecorderOffIcon = (0, import_react84.forwardRef)(
3578
3919
  function VideoRecorderOffIcon2(_a, ref) {
3579
3920
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3580
- return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
3921
+ return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
3581
3922
  "svg",
3582
3923
  __spreadProps(__spreadValues({
3583
3924
  ref,
@@ -3589,7 +3930,7 @@ var VideoRecorderOffIcon = (0, import_react76.forwardRef)(
3589
3930
  className
3590
3931
  }, other), {
3591
3932
  children: [
3592
- duotone && /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
3933
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
3593
3934
  "path",
3594
3935
  {
3595
3936
  opacity: "0.12",
@@ -3601,7 +3942,7 @@ var VideoRecorderOffIcon = (0, import_react76.forwardRef)(
3601
3942
  strokeLinejoin: "round"
3602
3943
  }
3603
3944
  ),
3604
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
3945
+ /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
3605
3946
  "path",
3606
3947
  {
3607
3948
  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",
@@ -3618,12 +3959,12 @@ var VideoRecorderOffIcon = (0, import_react76.forwardRef)(
3618
3959
  );
3619
3960
 
3620
3961
  // src/icons/volumeMax.tsx
3621
- var import_react77 = require("react");
3622
- var import_jsx_runtime79 = require("react/jsx-runtime");
3623
- var VolumeMaxIcon = (0, import_react77.forwardRef)(
3962
+ var import_react85 = require("react");
3963
+ var import_jsx_runtime87 = require("react/jsx-runtime");
3964
+ var VolumeMaxIcon = (0, import_react85.forwardRef)(
3624
3965
  function VolumeMaxIcon2(_a, ref) {
3625
3966
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3626
- return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
3967
+ return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
3627
3968
  "svg",
3628
3969
  __spreadProps(__spreadValues({
3629
3970
  ref,
@@ -3635,7 +3976,7 @@ var VolumeMaxIcon = (0, import_react77.forwardRef)(
3635
3976
  className
3636
3977
  }, other), {
3637
3978
  children: [
3638
- duotone && /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
3979
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
3639
3980
  "path",
3640
3981
  {
3641
3982
  opacity: "0.12",
@@ -3643,7 +3984,7 @@ var VolumeMaxIcon = (0, import_react77.forwardRef)(
3643
3984
  fill: "currentColor"
3644
3985
  }
3645
3986
  ),
3646
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
3987
+ /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
3647
3988
  "path",
3648
3989
  {
3649
3990
  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",
@@ -3660,12 +4001,12 @@ var VolumeMaxIcon = (0, import_react77.forwardRef)(
3660
4001
  );
3661
4002
 
3662
4003
  // src/icons/volumeX.tsx
3663
- var import_react78 = require("react");
3664
- var import_jsx_runtime80 = require("react/jsx-runtime");
3665
- var VolumeXIcon = (0, import_react78.forwardRef)(
4004
+ var import_react86 = require("react");
4005
+ var import_jsx_runtime88 = require("react/jsx-runtime");
4006
+ var VolumeXIcon = (0, import_react86.forwardRef)(
3666
4007
  function VolumeXIcon2(_a, ref) {
3667
4008
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3668
- return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
4009
+ return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
3669
4010
  "svg",
3670
4011
  __spreadProps(__spreadValues({
3671
4012
  ref,
@@ -3677,7 +4018,7 @@ var VolumeXIcon = (0, import_react78.forwardRef)(
3677
4018
  className
3678
4019
  }, other), {
3679
4020
  children: [
3680
- duotone && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
4021
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
3681
4022
  "path",
3682
4023
  {
3683
4024
  opacity: "0.12",
@@ -3685,7 +4026,7 @@ var VolumeXIcon = (0, import_react78.forwardRef)(
3685
4026
  fill: "currentColor"
3686
4027
  }
3687
4028
  ),
3688
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
4029
+ /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
3689
4030
  "path",
3690
4031
  {
3691
4032
  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",
@@ -3702,12 +4043,12 @@ var VolumeXIcon = (0, import_react78.forwardRef)(
3702
4043
  );
3703
4044
 
3704
4045
  // src/icons/xCircle.tsx
3705
- var import_react79 = require("react");
3706
- var import_jsx_runtime81 = require("react/jsx-runtime");
3707
- var XCircleIcon = (0, import_react79.forwardRef)(
4046
+ var import_react87 = require("react");
4047
+ var import_jsx_runtime89 = require("react/jsx-runtime");
4048
+ var XCircleIcon = (0, import_react87.forwardRef)(
3708
4049
  function XCircleIcon2(_a, ref) {
3709
4050
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3710
- return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
4051
+ return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
3711
4052
  "svg",
3712
4053
  __spreadProps(__spreadValues({
3713
4054
  ref,
@@ -3719,7 +4060,7 @@ var XCircleIcon = (0, import_react79.forwardRef)(
3719
4060
  className
3720
4061
  }, other), {
3721
4062
  children: [
3722
- duotone && /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
4063
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
3723
4064
  "path",
3724
4065
  {
3725
4066
  opacity: "0.12",
@@ -3727,7 +4068,7 @@ var XCircleIcon = (0, import_react79.forwardRef)(
3727
4068
  fill: "currentColor"
3728
4069
  }
3729
4070
  ),
3730
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
4071
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
3731
4072
  "path",
3732
4073
  {
3733
4074
  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",
@@ -3744,12 +4085,12 @@ var XCircleIcon = (0, import_react79.forwardRef)(
3744
4085
  );
3745
4086
 
3746
4087
  // src/icons/xClose.tsx
3747
- var import_react80 = require("react");
3748
- var import_jsx_runtime82 = require("react/jsx-runtime");
3749
- var XCloseIcon = (0, import_react80.forwardRef)(
4088
+ var import_react88 = require("react");
4089
+ var import_jsx_runtime90 = require("react/jsx-runtime");
4090
+ var XCloseIcon = (0, import_react88.forwardRef)(
3750
4091
  function XCloseIcon2(_a, ref) {
3751
4092
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3752
- return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
4093
+ return /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
3753
4094
  "svg",
3754
4095
  __spreadProps(__spreadValues({
3755
4096
  ref,
@@ -3760,7 +4101,7 @@ var XCloseIcon = (0, import_react80.forwardRef)(
3760
4101
  xmlns: "http://www.w3.org/2000/svg",
3761
4102
  className
3762
4103
  }, other), {
3763
- children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
4104
+ children: /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
3764
4105
  "path",
3765
4106
  {
3766
4107
  d: "M18 6L6 18M6 6L18 18",
@@ -3776,7 +4117,7 @@ var XCloseIcon = (0, import_react80.forwardRef)(
3776
4117
  );
3777
4118
 
3778
4119
  // src/components/Calendar/Calendar.tsx
3779
- var import_jsx_runtime83 = require("react/jsx-runtime");
4120
+ var import_jsx_runtime91 = require("react/jsx-runtime");
3780
4121
  function Calendar(_a) {
3781
4122
  var _b = _a, {
3782
4123
  className,
@@ -3787,7 +4128,7 @@ function Calendar(_a) {
3787
4128
  "classNames",
3788
4129
  "showOutsideDays"
3789
4130
  ]);
3790
- return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
4131
+ return /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
3791
4132
  import_react_day_picker.DayPicker,
3792
4133
  __spreadValues({
3793
4134
  showOutsideDays,
@@ -3819,11 +4160,11 @@ function Calendar(_a) {
3819
4160
  components: {
3820
4161
  IconLeft: (_a2) => {
3821
4162
  var props2 = __objRest(_a2, []);
3822
- return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(ChevronLeftIcon, { className: "h-3 w-3" });
4163
+ return /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(ChevronLeftIcon, { className: "h-3 w-3" });
3823
4164
  },
3824
4165
  IconRight: (_b2) => {
3825
4166
  var props2 = __objRest(_b2, []);
3826
- return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(ChevronRightIcon, { className: "h-3 w-3" });
4167
+ return /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(ChevronRightIcon, { className: "h-3 w-3" });
3827
4168
  }
3828
4169
  }
3829
4170
  }, props)
@@ -3832,9 +4173,9 @@ function Calendar(_a) {
3832
4173
  Calendar.displayName = "Calendar";
3833
4174
 
3834
4175
  // src/components/Dialog/Dialog.tsx
3835
- var React4 = __toESM(require("react"));
4176
+ var React5 = __toESM(require("react"));
3836
4177
  var DialogPrimitive = __toESM(require("@radix-ui/react-dialog"));
3837
- var import_jsx_runtime84 = require("react/jsx-runtime");
4178
+ var import_jsx_runtime92 = require("react/jsx-runtime");
3838
4179
  var Dialog = DialogPrimitive.Root;
3839
4180
  var DialogTrigger = DialogPrimitive.Trigger;
3840
4181
  var DialogPortal = (_a) => {
@@ -3843,12 +4184,12 @@ var DialogPortal = (_a) => {
3843
4184
  } = _b, props = __objRest(_b, [
3844
4185
  "className"
3845
4186
  ]);
3846
- return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
4187
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
3847
4188
  };
3848
4189
  DialogPortal.displayName = DialogPrimitive.Portal.displayName;
3849
- var DialogOverlay = React4.forwardRef((_a, ref) => {
4190
+ var DialogOverlay = React5.forwardRef((_a, ref) => {
3850
4191
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3851
- return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
4192
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
3852
4193
  DialogPrimitive.Overlay,
3853
4194
  __spreadValues({
3854
4195
  ref,
@@ -3860,11 +4201,11 @@ var DialogOverlay = React4.forwardRef((_a, ref) => {
3860
4201
  );
3861
4202
  });
3862
4203
  DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
3863
- var DialogContent = React4.forwardRef((_a, ref) => {
4204
+ var DialogContent = React5.forwardRef((_a, ref) => {
3864
4205
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
3865
- return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(DialogPortal, { children: [
3866
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(DialogOverlay, {}),
3867
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
4206
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(DialogPortal, { children: [
4207
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(DialogOverlay, {}),
4208
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
3868
4209
  DialogPrimitive.Content,
3869
4210
  __spreadProps(__spreadValues({
3870
4211
  ref,
@@ -3875,7 +4216,7 @@ var DialogContent = React4.forwardRef((_a, ref) => {
3875
4216
  }, props), {
3876
4217
  children: [
3877
4218
  children,
3878
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
4219
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
3879
4220
  DialogPrimitive.Close,
3880
4221
  {
3881
4222
  className: cn(
@@ -3884,8 +4225,8 @@ var DialogContent = React4.forwardRef((_a, ref) => {
3884
4225
  "absolute right-6 top-6"
3885
4226
  ),
3886
4227
  children: [
3887
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(XCloseIcon, { className: "h-3 w-3" }),
3888
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { className: "sr-only", children: "Close" })
4228
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(XCloseIcon, { className: "h-3 w-3" }),
4229
+ /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("span", { className: "sr-only", children: "Close" })
3889
4230
  ]
3890
4231
  }
3891
4232
  )
@@ -3901,7 +4242,7 @@ var DialogHeader = (_a) => {
3901
4242
  } = _b, props = __objRest(_b, [
3902
4243
  "className"
3903
4244
  ]);
3904
- return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
4245
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
3905
4246
  "div",
3906
4247
  __spreadValues({
3907
4248
  className: cn(
@@ -3918,7 +4259,7 @@ var DialogFooter = (_a) => {
3918
4259
  } = _b, props = __objRest(_b, [
3919
4260
  "className"
3920
4261
  ]);
3921
- return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
4262
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
3922
4263
  "div",
3923
4264
  __spreadValues({
3924
4265
  className: cn(
@@ -3929,9 +4270,9 @@ var DialogFooter = (_a) => {
3929
4270
  );
3930
4271
  };
3931
4272
  DialogFooter.displayName = "DialogFooter";
3932
- var DialogTitle = React4.forwardRef((_a, ref) => {
4273
+ var DialogTitle = React5.forwardRef((_a, ref) => {
3933
4274
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3934
- return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
4275
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
3935
4276
  DialogPrimitive.Title,
3936
4277
  __spreadValues({
3937
4278
  ref,
@@ -3940,9 +4281,9 @@ var DialogTitle = React4.forwardRef((_a, ref) => {
3940
4281
  );
3941
4282
  });
3942
4283
  DialogTitle.displayName = DialogPrimitive.Title.displayName;
3943
- var DialogDescription = React4.forwardRef((_a, ref) => {
4284
+ var DialogDescription = React5.forwardRef((_a, ref) => {
3944
4285
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3945
- return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
4286
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
3946
4287
  DialogPrimitive.Description,
3947
4288
  __spreadValues({
3948
4289
  ref,
@@ -3953,14 +4294,14 @@ var DialogDescription = React4.forwardRef((_a, ref) => {
3953
4294
  DialogDescription.displayName = DialogPrimitive.Description.displayName;
3954
4295
 
3955
4296
  // src/components/Popover/Popover.tsx
3956
- var React5 = __toESM(require("react"));
4297
+ var React6 = __toESM(require("react"));
3957
4298
  var PopoverPrimitive = __toESM(require("@radix-ui/react-popover"));
3958
- var import_jsx_runtime85 = require("react/jsx-runtime");
4299
+ var import_jsx_runtime93 = require("react/jsx-runtime");
3959
4300
  var Popover = PopoverPrimitive.Root;
3960
4301
  var PopoverTrigger = PopoverPrimitive.Trigger;
3961
- var PopoverContent = React5.forwardRef((_a, ref) => {
4302
+ var PopoverContent = React6.forwardRef((_a, ref) => {
3962
4303
  var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
3963
- return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(PopoverPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
4304
+ return /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(PopoverPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
3964
4305
  PopoverPrimitive.Content,
3965
4306
  __spreadValues({
3966
4307
  ref,
@@ -3975,14 +4316,35 @@ var PopoverContent = React5.forwardRef((_a, ref) => {
3975
4316
  });
3976
4317
  PopoverContent.displayName = PopoverPrimitive.Content.displayName;
3977
4318
 
4319
+ // src/components/Switch/Switch.tsx
4320
+ var React7 = __toESM(require("react"));
4321
+ var SwitchPrimitive = __toESM(require("@radix-ui/react-switch"));
4322
+ var import_jsx_runtime94 = require("react/jsx-runtime");
4323
+ var Switch = React7.forwardRef((_a, ref) => {
4324
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4325
+ return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
4326
+ SwitchPrimitive.Root,
4327
+ __spreadProps(__spreadValues({
4328
+ className: cn(
4329
+ "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",
4330
+ className
4331
+ )
4332
+ }, props), {
4333
+ ref,
4334
+ children: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(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" })
4335
+ })
4336
+ );
4337
+ });
4338
+ Switch.displayName = SwitchPrimitive.Root.displayName;
4339
+
3978
4340
  // src/components/Tabs/Tabs.tsx
3979
- var React6 = __toESM(require("react"));
4341
+ var React8 = __toESM(require("react"));
3980
4342
  var TabsPrimitive = __toESM(require("@radix-ui/react-tabs"));
3981
- var import_jsx_runtime86 = require("react/jsx-runtime");
4343
+ var import_jsx_runtime95 = require("react/jsx-runtime");
3982
4344
  var Tabs = TabsPrimitive.Root;
3983
- var TabsList = React6.forwardRef((_a, ref) => {
4345
+ var TabsList = React8.forwardRef((_a, ref) => {
3984
4346
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3985
- return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4347
+ return /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
3986
4348
  TabsPrimitive.List,
3987
4349
  __spreadValues({
3988
4350
  ref,
@@ -3994,9 +4356,9 @@ var TabsList = React6.forwardRef((_a, ref) => {
3994
4356
  );
3995
4357
  });
3996
4358
  TabsList.displayName = TabsPrimitive.List.displayName;
3997
- var TabsTrigger = React6.forwardRef((_a, ref) => {
4359
+ var TabsTrigger = React8.forwardRef((_a, ref) => {
3998
4360
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3999
- return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4361
+ return /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
4000
4362
  TabsPrimitive.Trigger,
4001
4363
  __spreadValues({
4002
4364
  ref,
@@ -4011,9 +4373,9 @@ var TabsTrigger = React6.forwardRef((_a, ref) => {
4011
4373
  );
4012
4374
  });
4013
4375
  TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
4014
- var TabsContent = React6.forwardRef((_a, ref) => {
4376
+ var TabsContent = React8.forwardRef((_a, ref) => {
4015
4377
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4016
- return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4378
+ return /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
4017
4379
  TabsPrimitive.Content,
4018
4380
  __spreadValues({
4019
4381
  ref,
@@ -4027,6 +4389,10 @@ var TabsContent = React6.forwardRef((_a, ref) => {
4027
4389
  TabsContent.displayName = TabsPrimitive.Content.displayName;
4028
4390
  // Annotate the CommonJS export names for ESM import in node:
4029
4391
  0 && (module.exports = {
4392
+ Accordion,
4393
+ AccordionContent,
4394
+ AccordionItem,
4395
+ AccordionTrigger,
4030
4396
  ActivityIcon,
4031
4397
  AlertCircleIcon,
4032
4398
  AlertDialog,
@@ -4038,10 +4404,12 @@ TabsContent.displayName = TabsPrimitive.Content.displayName;
4038
4404
  AlertDialogHeader,
4039
4405
  AlertDialogTitle,
4040
4406
  AlertDialogTrigger,
4407
+ ArrowCircleUpIcon,
4041
4408
  ArrowDownIcon,
4042
4409
  ArrowLeftIcon,
4043
4410
  ArrowRightIcon,
4044
4411
  ArrowUpIcon,
4412
+ AttachmentIcon,
4045
4413
  Badge,
4046
4414
  BellIcon,
4047
4415
  Button,
@@ -4065,9 +4433,11 @@ TabsContent.displayName = TabsPrimitive.Content.displayName;
4065
4433
  DialogHeader,
4066
4434
  DialogTitle,
4067
4435
  DialogTrigger,
4436
+ DotsHorizontalIcon,
4068
4437
  DownloadIcon,
4069
4438
  EditIcon,
4070
4439
  ExpandIcon,
4440
+ FilterLinesIcon,
4071
4441
  FlipBackwardIcon,
4072
4442
  FlipForwardIcon,
4073
4443
  HelpCircleIcon,
@@ -4077,6 +4447,7 @@ TabsContent.displayName = TabsPrimitive.Content.displayName;
4077
4447
  ImageXIcon,
4078
4448
  InfoCircleIcon,
4079
4449
  LightbulbIcon,
4450
+ LinkIcon,
4080
4451
  LockIcon,
4081
4452
  LogInIcon,
4082
4453
  MagicWandIcon,
@@ -4090,6 +4461,7 @@ TabsContent.displayName = TabsPrimitive.Content.displayName;
4090
4461
  MonitorIcon,
4091
4462
  NotificationBoxIcon,
4092
4463
  PauseCircleIcon,
4464
+ PhoneCallIcon,
4093
4465
  PhoneIcon,
4094
4466
  PieChartIcon,
4095
4467
  PlayCircleIcon,
@@ -4109,10 +4481,12 @@ TabsContent.displayName = TabsPrimitive.Content.displayName;
4109
4481
  SearchMdIcon,
4110
4482
  SendIcon,
4111
4483
  SettingsIcon,
4484
+ ShareArrowIcon,
4112
4485
  ShareIcon,
4113
4486
  SkipBackIcon,
4114
4487
  SkipForwardIcon,
4115
4488
  StarsIcon,
4489
+ Switch,
4116
4490
  Tabs,
4117
4491
  TabsContent,
4118
4492
  TabsList,