@snapcall/design-system 1.1.1 → 1.3.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,8 +59,21 @@ 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,
68
+ AlertDialog: () => AlertDialog,
69
+ AlertDialogAction: () => AlertDialogAction,
70
+ AlertDialogCancel: () => AlertDialogCancel,
71
+ AlertDialogContent: () => AlertDialogContent,
72
+ AlertDialogDescription: () => AlertDialogDescription,
73
+ AlertDialogFooter: () => AlertDialogFooter,
74
+ AlertDialogHeader: () => AlertDialogHeader,
75
+ AlertDialogTitle: () => AlertDialogTitle,
76
+ AlertDialogTrigger: () => AlertDialogTrigger,
64
77
  ArrowDownIcon: () => ArrowDownIcon,
65
78
  ArrowLeftIcon: () => ArrowLeftIcon,
66
79
  ArrowRightIcon: () => ArrowRightIcon,
@@ -68,6 +81,7 @@ __export(src_exports, {
68
81
  Badge: () => Badge,
69
82
  BellIcon: () => BellIcon,
70
83
  Button: () => Button,
84
+ Calendar: () => Calendar,
71
85
  CalendarCheckIcon: () => CalendarCheckIcon,
72
86
  CalendarIcon: () => CalendarIcon,
73
87
  CalendarPlusIcon: () => CalendarPlusIcon,
@@ -80,6 +94,13 @@ __export(src_exports, {
80
94
  ChevronUpIcon: () => ChevronUpIcon,
81
95
  CopyIcon: () => CopyIcon,
82
96
  CursorClickIcon: () => CursorClickIcon,
97
+ Dialog: () => Dialog,
98
+ DialogContent: () => DialogContent,
99
+ DialogDescription: () => DialogDescription,
100
+ DialogFooter: () => DialogFooter,
101
+ DialogHeader: () => DialogHeader,
102
+ DialogTitle: () => DialogTitle,
103
+ DialogTrigger: () => DialogTrigger,
83
104
  DownloadIcon: () => DownloadIcon,
84
105
  EditIcon: () => EditIcon,
85
106
  ExpandIcon: () => ExpandIcon,
@@ -110,6 +131,9 @@ __export(src_exports, {
110
131
  PlayCircleIcon: () => PlayCircleIcon,
111
132
  PlusCircleIcon: () => PlusCircleIcon,
112
133
  PlusIcon: () => PlusIcon,
134
+ Popover: () => Popover,
135
+ PopoverContent: () => PopoverContent,
136
+ PopoverTrigger: () => PopoverTrigger,
113
137
  PuzzlePieceIcon: () => PuzzlePieceIcon,
114
138
  QrCodeIcon: () => QrCodeIcon,
115
139
  ReceiptCheckIcon: () => ReceiptCheckIcon,
@@ -125,6 +149,7 @@ __export(src_exports, {
125
149
  SkipBackIcon: () => SkipBackIcon,
126
150
  SkipForwardIcon: () => SkipForwardIcon,
127
151
  StarsIcon: () => StarsIcon,
152
+ Switch: () => Switch,
128
153
  Tabs: () => Tabs,
129
154
  TabsContent: () => TabsContent,
130
155
  TabsList: () => TabsList,
@@ -143,14 +168,48 @@ __export(src_exports, {
143
168
  VolumeMaxIcon: () => VolumeMaxIcon,
144
169
  VolumeXIcon: () => VolumeXIcon,
145
170
  XCircleIcon: () => XCircleIcon,
146
- XCloseIcon: () => XCloseIcon
171
+ XCloseIcon: () => XCloseIcon,
172
+ buttonSizes: () => buttonSizes,
173
+ buttonVariants: () => buttonVariants,
174
+ iconButtonSizes: () => iconButtonSizes
147
175
  });
148
176
  module.exports = __toCommonJS(src_exports);
149
177
 
150
- // src/components/Button/Button.tsx
151
- var React = __toESM(require("react"));
152
- var import_react_slot = require("@radix-ui/react-slot");
153
- var import_class_variance_authority = require("class-variance-authority");
178
+ // src/components/Accordion/Accordion.tsx
179
+ var import_react2 = __toESM(require("react"));
180
+ var AccordionPrimitive = __toESM(require("@radix-ui/react-accordion"));
181
+
182
+ // src/icons/chevronDown.tsx
183
+ var import_react = require("react");
184
+ var import_jsx_runtime = require("react/jsx-runtime");
185
+ var ChevronDownIcon = (0, import_react.forwardRef)(
186
+ function ChevronDownIcon2(_a, ref) {
187
+ var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
188
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
189
+ "svg",
190
+ __spreadProps(__spreadValues({
191
+ ref,
192
+ width: size,
193
+ height: size,
194
+ viewBox: "0 0 24 24",
195
+ fill: "none",
196
+ xmlns: "http://www.w3.org/2000/svg",
197
+ className
198
+ }, other), {
199
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
200
+ "path",
201
+ {
202
+ d: "M6 9L12 15L18 9",
203
+ stroke: "currentColor",
204
+ strokeWidth: "2",
205
+ strokeLinecap: "round",
206
+ strokeLinejoin: "round"
207
+ }
208
+ )
209
+ })
210
+ );
211
+ }
212
+ );
154
213
 
155
214
  // src/utils/cn.ts
156
215
  var import_clsx = require("clsx");
@@ -159,8 +218,66 @@ function cn(...inputs) {
159
218
  return (0, import_tailwind_merge.twMerge)((0, import_clsx.clsx)(inputs));
160
219
  }
161
220
 
221
+ // src/components/Accordion/Accordion.tsx
222
+ var import_jsx_runtime2 = require("react/jsx-runtime");
223
+ var AccordionItem = AccordionPrimitive.Item;
224
+ var Accordion = AccordionPrimitive.Root;
225
+ var AccordionTrigger2 = import_react2.default.forwardRef((_a, forwardedRef) => {
226
+ var _b = _a, { children, className, icon } = _b, props = __objRest(_b, ["children", "className", "icon"]);
227
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(AccordionPrimitive.Header, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
228
+ AccordionPrimitive.Trigger,
229
+ __spreadProps(__spreadValues({
230
+ className: cn(
231
+ "flex w-full rounded-lg items-center hover:bg-blue-100 group text-sm p-2 font-semibold text-gray-1000",
232
+ className
233
+ )
234
+ }, props), {
235
+ ref: forwardedRef,
236
+ children: [
237
+ icon && import_react2.default.cloneElement(icon, {
238
+ size: 18,
239
+ className: cn("flex-shrink-0 mr-2.5", icon.props.className)
240
+ }),
241
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className: "text-left truncate grow", children }),
242
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
243
+ ChevronDownIcon,
244
+ {
245
+ size: 16,
246
+ className: "flex-shrink-0 transition-transform text-gray-1000 group-data-[state=open]:rotate-180",
247
+ "aria-hidden": true
248
+ }
249
+ )
250
+ ]
251
+ })
252
+ ) });
253
+ });
254
+ AccordionTrigger2.displayName = AccordionPrimitive.AccordionTrigger.displayName;
255
+ var AccordionContent = import_react2.default.forwardRef((_a, forwardedRef) => {
256
+ var _b = _a, { children, className } = _b, props = __objRest(_b, ["children", "className"]);
257
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
258
+ AccordionPrimitive.Content,
259
+ __spreadProps(__spreadValues({
260
+ className: cn(
261
+ "overflow-hidden data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",
262
+ className
263
+ )
264
+ }, props), {
265
+ ref: forwardedRef,
266
+ children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("div", { className: "pb-2", children })
267
+ })
268
+ );
269
+ });
270
+ AccordionContent.displayName = AccordionPrimitive.Content.displayName;
271
+
272
+ // src/components/AlertDialog/AlertDialog.tsx
273
+ var React3 = __toESM(require("react"));
274
+ var AlertDialogPrimitive = __toESM(require("@radix-ui/react-alert-dialog"));
275
+
162
276
  // src/components/Button/Button.tsx
163
- var import_jsx_runtime = require("react/jsx-runtime");
277
+ var React2 = __toESM(require("react"));
278
+ var import_react_slot = require("@radix-ui/react-slot");
279
+ var import_class_variance_authority = require("class-variance-authority");
280
+ var import_jsx_runtime3 = require("react/jsx-runtime");
164
281
  var buttonVariants = (0, import_class_variance_authority.cva)(
165
282
  "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",
166
283
  {
@@ -209,12 +326,12 @@ var iconButtonSizes = (0, import_class_variance_authority.cva)("", {
209
326
  size: "md"
210
327
  }
211
328
  });
212
- var Button = React.forwardRef(
329
+ var Button = React2.forwardRef(
213
330
  (_a, ref) => {
214
331
  var _b = _a, { className, variant, size, icon = false, asChild = false } = _b, props = __objRest(_b, ["className", "variant", "size", "icon", "asChild"]);
215
332
  const Comp = asChild ? import_react_slot.Slot : "button";
216
333
  const sizesStyle = icon ? iconButtonSizes : buttonSizes;
217
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
334
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
218
335
  Comp,
219
336
  __spreadValues({
220
337
  className: cn(
@@ -228,14 +345,147 @@ var Button = React.forwardRef(
228
345
  );
229
346
  Button.displayName = "Button";
230
347
 
348
+ // src/components/AlertDialog/AlertDialog.tsx
349
+ var import_jsx_runtime4 = require("react/jsx-runtime");
350
+ var AlertDialog = AlertDialogPrimitive.Root;
351
+ var AlertDialogTrigger = AlertDialogPrimitive.Trigger;
352
+ var AlertDialogPortal = (_a) => {
353
+ var _b = _a, {
354
+ className
355
+ } = _b, props = __objRest(_b, [
356
+ "className"
357
+ ]);
358
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(AlertDialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
359
+ };
360
+ AlertDialogPortal.displayName = AlertDialogPrimitive.Portal.displayName;
361
+ var AlertDialogOverlay = React3.forwardRef((_a, ref) => {
362
+ var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
363
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
364
+ AlertDialogPrimitive.Overlay,
365
+ __spreadProps(__spreadValues({
366
+ className: cn(
367
+ "fixed inset-0 z-50 bg-black/25 backdrop-blur-sm data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
368
+ className
369
+ )
370
+ }, props), {
371
+ ref
372
+ })
373
+ );
374
+ });
375
+ AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
376
+ var AlertDialogContent = React3.forwardRef((_a, ref) => {
377
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
378
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(AlertDialogPortal, { children: [
379
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(AlertDialogOverlay, {}),
380
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
381
+ AlertDialogPrimitive.Content,
382
+ __spreadValues({
383
+ ref,
384
+ className: cn(
385
+ "fixed left-[50%] top-[50%] z-50 grid w-full max-w-[400px] translate-x-[-50%] translate-y-[-50%] gap-6 border bg-white p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-xl md:w-full",
386
+ className
387
+ )
388
+ }, props)
389
+ )
390
+ ] });
391
+ });
392
+ AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName;
393
+ var AlertDialogHeader = (_a) => {
394
+ var _b = _a, {
395
+ className
396
+ } = _b, props = __objRest(_b, [
397
+ "className"
398
+ ]);
399
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
400
+ "div",
401
+ __spreadValues({
402
+ className: cn(
403
+ "flex flex-col space-y-5 text-center sm:text-left",
404
+ className
405
+ )
406
+ }, props)
407
+ );
408
+ };
409
+ AlertDialogHeader.displayName = "AlertDialogHeader";
410
+ var AlertDialogFooter = (_a) => {
411
+ var _b = _a, {
412
+ className
413
+ } = _b, props = __objRest(_b, [
414
+ "className"
415
+ ]);
416
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
417
+ "div",
418
+ __spreadValues({
419
+ className: cn(
420
+ "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
421
+ className
422
+ )
423
+ }, props)
424
+ );
425
+ };
426
+ AlertDialogFooter.displayName = "AlertDialogFooter";
427
+ var AlertDialogTitle = React3.forwardRef((_a, ref) => {
428
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
429
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
430
+ AlertDialogPrimitive.Title,
431
+ __spreadValues({
432
+ ref,
433
+ className: cn("text-lg text-gray-1000 font-semibold", className)
434
+ }, props)
435
+ );
436
+ });
437
+ AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;
438
+ var AlertDialogDescription = React3.forwardRef((_a, ref) => {
439
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
440
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
441
+ AlertDialogPrimitive.Description,
442
+ __spreadValues({
443
+ ref,
444
+ className: cn("text-sm text-gray-700", className)
445
+ }, props)
446
+ );
447
+ });
448
+ AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName;
449
+ var AlertDialogAction = React3.forwardRef((_a, ref) => {
450
+ var _b = _a, { className, variant = "primary" } = _b, props = __objRest(_b, ["className", "variant"]);
451
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
452
+ AlertDialogPrimitive.Action,
453
+ __spreadValues({
454
+ ref,
455
+ className: cn(
456
+ buttonVariants({ variant }),
457
+ buttonSizes({ size: "md" }),
458
+ className
459
+ )
460
+ }, props)
461
+ );
462
+ });
463
+ AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;
464
+ var AlertDialogCancel = React3.forwardRef((_a, ref) => {
465
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
466
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
467
+ AlertDialogPrimitive.Cancel,
468
+ __spreadValues({
469
+ ref,
470
+ className: cn(
471
+ buttonVariants({ variant: "outline" }),
472
+ buttonSizes({ size: "md" }),
473
+ "mt-2 sm:mt-0",
474
+ className
475
+ )
476
+ }, props)
477
+ );
478
+ });
479
+ AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
480
+
231
481
  // src/components/Badge/Badge.tsx
232
482
  var import_class_variance_authority2 = require("class-variance-authority");
233
483
 
234
484
  // src/utils/getLabelFromChildren.ts
235
- var import_react = __toESM(require("react"));
485
+ var import_react3 = __toESM(require("react"));
236
486
  var getLabelFromChildren = (children) => {
237
487
  let label = "";
238
- import_react.default.Children.map(children, (child) => {
488
+ import_react3.default.Children.map(children, (child) => {
239
489
  if (typeof child === "string") {
240
490
  label += child;
241
491
  }
@@ -257,7 +507,7 @@ var randomPickFromArray = ({
257
507
  };
258
508
 
259
509
  // src/components/Badge/Badge.tsx
260
- var import_jsx_runtime2 = require("react/jsx-runtime");
510
+ var import_jsx_runtime5 = require("react/jsx-runtime");
261
511
  var colors = {
262
512
  gray: "text-gray-900",
263
513
  green: "text-green-700",
@@ -392,7 +642,7 @@ function Badge(_a) {
392
642
  array: colorsArray
393
643
  });
394
644
  }
395
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
645
+ return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
396
646
  "div",
397
647
  __spreadValues({
398
648
  className: cn(badgeVariants({ variant, color }), className)
@@ -400,64 +650,16 @@ function Badge(_a) {
400
650
  );
401
651
  }
402
652
 
403
- // src/components/Tabs/Tabs.tsx
404
- var React3 = __toESM(require("react"));
405
- var TabsPrimitive = __toESM(require("@radix-ui/react-tabs"));
406
- var import_jsx_runtime3 = require("react/jsx-runtime");
407
- var Tabs = TabsPrimitive.Root;
408
- var TabsList = React3.forwardRef((_a, ref) => {
409
- var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
410
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
411
- TabsPrimitive.List,
412
- __spreadValues({
413
- ref,
414
- className: cn(
415
- "inline-flex items-center justify-center gap-2 rounded-lg p-1.5 bg-gray-50 text-gray-700",
416
- className
417
- )
418
- }, props)
419
- );
420
- });
421
- TabsList.displayName = TabsPrimitive.List.displayName;
422
- var TabsTrigger = React3.forwardRef((_a, ref) => {
423
- var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
424
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
425
- TabsPrimitive.Trigger,
426
- __spreadValues({
427
- ref,
428
- className: cn(
429
- "inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1.5 text-sm font-semibold ring-offset-white transition-all",
430
- "hover:bg-gray-100 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-700 focus-visible:ring-offset-2",
431
- "data-[state=active]:bg-white data-[state=active]:text-blue-700 data-[state=active]:shadow-sm",
432
- "disabled:pointer-events-none disabled:opacity-50",
433
- className
434
- )
435
- }, props)
436
- );
437
- });
438
- TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
439
- var TabsContent = React3.forwardRef((_a, ref) => {
440
- var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
441
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
442
- TabsPrimitive.Content,
443
- __spreadValues({
444
- ref,
445
- className: cn(
446
- "mt-2 ring-offset-white focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-700 focus-visible:ring-offset-2",
447
- className
448
- )
449
- }, props)
450
- );
451
- });
452
- TabsContent.displayName = TabsPrimitive.Content.displayName;
653
+ // src/components/Calendar/Calendar.tsx
654
+ var import_react_day_picker = require("react-day-picker");
453
655
 
454
656
  // src/icons/activity.tsx
455
- var import_react2 = require("react");
456
- var import_jsx_runtime4 = require("react/jsx-runtime");
457
- var ActivityIcon = (0, import_react2.forwardRef)(
657
+ var import_react4 = require("react");
658
+ var import_jsx_runtime6 = require("react/jsx-runtime");
659
+ var ActivityIcon = (0, import_react4.forwardRef)(
458
660
  function ActivityIcon2(_a, ref) {
459
661
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
460
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
662
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
461
663
  "svg",
462
664
  __spreadProps(__spreadValues({
463
665
  ref,
@@ -468,7 +670,7 @@ var ActivityIcon = (0, import_react2.forwardRef)(
468
670
  xmlns: "http://www.w3.org/2000/svg",
469
671
  className
470
672
  }, other), {
471
- children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
673
+ children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
472
674
  "path",
473
675
  {
474
676
  d: "M22 12H18L15 21L9 3L6 12H2",
@@ -484,12 +686,12 @@ var ActivityIcon = (0, import_react2.forwardRef)(
484
686
  );
485
687
 
486
688
  // src/icons/alertCircle.tsx
487
- var import_react3 = require("react");
488
- var import_jsx_runtime5 = require("react/jsx-runtime");
489
- var AlertCircleIcon = (0, import_react3.forwardRef)(
689
+ var import_react5 = require("react");
690
+ var import_jsx_runtime7 = require("react/jsx-runtime");
691
+ var AlertCircleIcon = (0, import_react5.forwardRef)(
490
692
  function AlertCircleIcon2(_a, ref) {
491
693
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
492
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
694
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
493
695
  "svg",
494
696
  __spreadProps(__spreadValues({
495
697
  ref,
@@ -501,7 +703,7 @@ var AlertCircleIcon = (0, import_react3.forwardRef)(
501
703
  className
502
704
  }, other), {
503
705
  children: [
504
- duotone && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
706
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
505
707
  "path",
506
708
  {
507
709
  opacity: "0.12",
@@ -509,7 +711,7 @@ var AlertCircleIcon = (0, import_react3.forwardRef)(
509
711
  fill: "currentColor"
510
712
  }
511
713
  ),
512
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
714
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
513
715
  "path",
514
716
  {
515
717
  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",
@@ -526,12 +728,12 @@ var AlertCircleIcon = (0, import_react3.forwardRef)(
526
728
  );
527
729
 
528
730
  // src/icons/arrowDown.tsx
529
- var import_react4 = require("react");
530
- var import_jsx_runtime6 = require("react/jsx-runtime");
531
- var ArrowDownIcon = (0, import_react4.forwardRef)(
731
+ var import_react6 = require("react");
732
+ var import_jsx_runtime8 = require("react/jsx-runtime");
733
+ var ArrowDownIcon = (0, import_react6.forwardRef)(
532
734
  function ArrowDownIcon2(_a, ref) {
533
735
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
534
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
736
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
535
737
  "svg",
536
738
  __spreadProps(__spreadValues({
537
739
  ref,
@@ -542,7 +744,7 @@ var ArrowDownIcon = (0, import_react4.forwardRef)(
542
744
  xmlns: "http://www.w3.org/2000/svg",
543
745
  className
544
746
  }, other), {
545
- children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
747
+ children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
546
748
  "path",
547
749
  {
548
750
  d: "M12 5V19M12 19L19 12M12 19L5 12",
@@ -558,12 +760,12 @@ var ArrowDownIcon = (0, import_react4.forwardRef)(
558
760
  );
559
761
 
560
762
  // src/icons/arrowLeft.tsx
561
- var import_react5 = require("react");
562
- var import_jsx_runtime7 = require("react/jsx-runtime");
563
- var ArrowLeftIcon = (0, import_react5.forwardRef)(
763
+ var import_react7 = require("react");
764
+ var import_jsx_runtime9 = require("react/jsx-runtime");
765
+ var ArrowLeftIcon = (0, import_react7.forwardRef)(
564
766
  function ArrowLeftIcon2(_a, ref) {
565
767
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
566
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
768
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
567
769
  "svg",
568
770
  __spreadProps(__spreadValues({
569
771
  ref,
@@ -574,7 +776,7 @@ var ArrowLeftIcon = (0, import_react5.forwardRef)(
574
776
  xmlns: "http://www.w3.org/2000/svg",
575
777
  className
576
778
  }, other), {
577
- children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
779
+ children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
578
780
  "path",
579
781
  {
580
782
  d: "M19 12H5M5 12L12 19M5 12L12 5",
@@ -590,12 +792,12 @@ var ArrowLeftIcon = (0, import_react5.forwardRef)(
590
792
  );
591
793
 
592
794
  // src/icons/arrowRight.tsx
593
- var import_react6 = require("react");
594
- var import_jsx_runtime8 = require("react/jsx-runtime");
595
- var ArrowRightIcon = (0, import_react6.forwardRef)(
795
+ var import_react8 = require("react");
796
+ var import_jsx_runtime10 = require("react/jsx-runtime");
797
+ var ArrowRightIcon = (0, import_react8.forwardRef)(
596
798
  function ArrowRightIcon2(_a, ref) {
597
799
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
598
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
800
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
599
801
  "svg",
600
802
  __spreadProps(__spreadValues({
601
803
  ref,
@@ -606,7 +808,7 @@ var ArrowRightIcon = (0, import_react6.forwardRef)(
606
808
  xmlns: "http://www.w3.org/2000/svg",
607
809
  className
608
810
  }, other), {
609
- children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
811
+ children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
610
812
  "path",
611
813
  {
612
814
  d: "M5 12H19M19 12L12 5M19 12L12 19",
@@ -622,12 +824,12 @@ var ArrowRightIcon = (0, import_react6.forwardRef)(
622
824
  );
623
825
 
624
826
  // src/icons/arrowUp.tsx
625
- var import_react7 = require("react");
626
- var import_jsx_runtime9 = require("react/jsx-runtime");
627
- var ArrowUpIcon = (0, import_react7.forwardRef)(
827
+ var import_react9 = require("react");
828
+ var import_jsx_runtime11 = require("react/jsx-runtime");
829
+ var ArrowUpIcon = (0, import_react9.forwardRef)(
628
830
  function ArrowUpIcon2(_a, ref) {
629
831
  var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
630
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
832
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
631
833
  "svg",
632
834
  __spreadProps(__spreadValues({
633
835
  ref,
@@ -638,7 +840,7 @@ var ArrowUpIcon = (0, import_react7.forwardRef)(
638
840
  xmlns: "http://www.w3.org/2000/svg",
639
841
  className
640
842
  }, other), {
641
- children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
843
+ children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
642
844
  "path",
643
845
  {
644
846
  d: "M12 19V5M12 5L5 12M12 5L19 12",
@@ -654,11 +856,11 @@ var ArrowUpIcon = (0, import_react7.forwardRef)(
654
856
  );
655
857
 
656
858
  // src/icons/bell.tsx
657
- var import_react8 = require("react");
658
- var import_jsx_runtime10 = require("react/jsx-runtime");
659
- var BellIcon = (0, import_react8.forwardRef)(function BellIcon2(_a, ref) {
859
+ var import_react10 = require("react");
860
+ var import_jsx_runtime12 = require("react/jsx-runtime");
861
+ var BellIcon = (0, import_react10.forwardRef)(function BellIcon2(_a, ref) {
660
862
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
661
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
863
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
662
864
  "svg",
663
865
  __spreadProps(__spreadValues({
664
866
  ref,
@@ -670,7 +872,7 @@ var BellIcon = (0, import_react8.forwardRef)(function BellIcon2(_a, ref) {
670
872
  className
671
873
  }, other), {
672
874
  children: [
673
- duotone && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
875
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
674
876
  "path",
675
877
  {
676
878
  opacity: "0.12",
@@ -678,7 +880,7 @@ var BellIcon = (0, import_react8.forwardRef)(function BellIcon2(_a, ref) {
678
880
  fill: "currentColor"
679
881
  }
680
882
  ),
681
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
883
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
682
884
  "path",
683
885
  {
684
886
  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",
@@ -694,12 +896,12 @@ var BellIcon = (0, import_react8.forwardRef)(function BellIcon2(_a, ref) {
694
896
  });
695
897
 
696
898
  // src/icons/calendar.tsx
697
- var import_react9 = require("react");
698
- var import_jsx_runtime11 = require("react/jsx-runtime");
699
- var CalendarIcon = (0, import_react9.forwardRef)(
899
+ var import_react11 = require("react");
900
+ var import_jsx_runtime13 = require("react/jsx-runtime");
901
+ var CalendarIcon = (0, import_react11.forwardRef)(
700
902
  function CalendarIcon2(_a, ref) {
701
903
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
702
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
904
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
703
905
  "svg",
704
906
  __spreadProps(__spreadValues({
705
907
  ref,
@@ -711,7 +913,7 @@ var CalendarIcon = (0, import_react9.forwardRef)(
711
913
  className
712
914
  }, other), {
713
915
  children: [
714
- duotone && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
916
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
715
917
  "path",
716
918
  {
717
919
  opacity: "0.12",
@@ -719,7 +921,7 @@ var CalendarIcon = (0, import_react9.forwardRef)(
719
921
  fill: "currentColor"
720
922
  }
721
923
  ),
722
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
924
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
723
925
  "path",
724
926
  {
725
927
  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",
@@ -736,12 +938,12 @@ var CalendarIcon = (0, import_react9.forwardRef)(
736
938
  );
737
939
 
738
940
  // src/icons/calendarCheck.tsx
739
- var import_react10 = require("react");
740
- var import_jsx_runtime12 = require("react/jsx-runtime");
741
- var CalendarCheckIcon = (0, import_react10.forwardRef)(
941
+ var import_react12 = require("react");
942
+ var import_jsx_runtime14 = require("react/jsx-runtime");
943
+ var CalendarCheckIcon = (0, import_react12.forwardRef)(
742
944
  function CalendarCheckIcon2(_a, ref) {
743
945
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
744
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
946
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
745
947
  "svg",
746
948
  __spreadProps(__spreadValues({
747
949
  ref,
@@ -753,7 +955,7 @@ var CalendarCheckIcon = (0, import_react10.forwardRef)(
753
955
  className
754
956
  }, other), {
755
957
  children: [
756
- duotone && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
958
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
757
959
  "path",
758
960
  {
759
961
  opacity: "0.12",
@@ -761,7 +963,7 @@ var CalendarCheckIcon = (0, import_react10.forwardRef)(
761
963
  fill: "currentColor"
762
964
  }
763
965
  ),
764
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
966
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
765
967
  "path",
766
968
  {
767
969
  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",
@@ -778,12 +980,12 @@ var CalendarCheckIcon = (0, import_react10.forwardRef)(
778
980
  );
779
981
 
780
982
  // src/icons/calendarPlus.tsx
781
- var import_react11 = require("react");
782
- var import_jsx_runtime13 = require("react/jsx-runtime");
783
- var CalendarPlusIcon = (0, import_react11.forwardRef)(
983
+ var import_react13 = require("react");
984
+ var import_jsx_runtime15 = require("react/jsx-runtime");
985
+ var CalendarPlusIcon = (0, import_react13.forwardRef)(
784
986
  function CalendarPlusIcon2(_a, ref) {
785
987
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
786
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
988
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
787
989
  "svg",
788
990
  __spreadProps(__spreadValues({
789
991
  ref,
@@ -795,7 +997,7 @@ var CalendarPlusIcon = (0, import_react11.forwardRef)(
795
997
  className
796
998
  }, other), {
797
999
  children: [
798
- duotone && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1000
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
799
1001
  "path",
800
1002
  {
801
1003
  opacity: "0.12",
@@ -803,7 +1005,7 @@ var CalendarPlusIcon = (0, import_react11.forwardRef)(
803
1005
  fill: "currentColor"
804
1006
  }
805
1007
  ),
806
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1008
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
807
1009
  "path",
808
1010
  {
809
1011
  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",
@@ -820,12 +1022,12 @@ var CalendarPlusIcon = (0, import_react11.forwardRef)(
820
1022
  );
821
1023
 
822
1024
  // src/icons/camera.tsx
823
- var import_react12 = require("react");
824
- var import_jsx_runtime14 = require("react/jsx-runtime");
825
- var CameraIcon = (0, import_react12.forwardRef)(
1025
+ var import_react14 = require("react");
1026
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1027
+ var CameraIcon = (0, import_react14.forwardRef)(
826
1028
  function CameraIcon2(_a, ref) {
827
1029
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
828
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1030
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
829
1031
  "svg",
830
1032
  __spreadProps(__spreadValues({
831
1033
  ref,
@@ -837,7 +1039,7 @@ var CameraIcon = (0, import_react12.forwardRef)(
837
1039
  className
838
1040
  }, other), {
839
1041
  children: [
840
- duotone && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1042
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
841
1043
  "path",
842
1044
  {
843
1045
  opacity: "0.12",
@@ -845,7 +1047,7 @@ var CameraIcon = (0, import_react12.forwardRef)(
845
1047
  fill: "currentColor"
846
1048
  }
847
1049
  ),
848
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1050
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
849
1051
  "path",
850
1052
  {
851
1053
  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",
@@ -856,7 +1058,7 @@ var CameraIcon = (0, import_react12.forwardRef)(
856
1058
  }
857
1059
  ),
858
1060
  ",",
859
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1061
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
860
1062
  "path",
861
1063
  {
862
1064
  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",
@@ -873,12 +1075,12 @@ var CameraIcon = (0, import_react12.forwardRef)(
873
1075
  );
874
1076
 
875
1077
  // src/icons/cameraOff.tsx
876
- var import_react13 = require("react");
877
- var import_jsx_runtime15 = require("react/jsx-runtime");
878
- var CameraOffIcon = (0, import_react13.forwardRef)(
1078
+ var import_react15 = require("react");
1079
+ var import_jsx_runtime17 = require("react/jsx-runtime");
1080
+ var CameraOffIcon = (0, import_react15.forwardRef)(
879
1081
  function CameraOffIcon2(_a, ref) {
880
1082
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
881
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
1083
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
882
1084
  "svg",
883
1085
  __spreadProps(__spreadValues({
884
1086
  ref,
@@ -890,7 +1092,7 @@ var CameraOffIcon = (0, import_react13.forwardRef)(
890
1092
  className
891
1093
  }, other), {
892
1094
  children: [
893
- duotone && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1095
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
894
1096
  "path",
895
1097
  {
896
1098
  opacity: "0.12",
@@ -898,7 +1100,7 @@ var CameraOffIcon = (0, import_react13.forwardRef)(
898
1100
  fill: "currentColor"
899
1101
  }
900
1102
  ),
901
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1103
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
902
1104
  "path",
903
1105
  {
904
1106
  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",
@@ -915,12 +1117,12 @@ var CameraOffIcon = (0, import_react13.forwardRef)(
915
1117
  );
916
1118
 
917
1119
  // src/icons/checkCircle.tsx
918
- var import_react14 = require("react");
919
- var import_jsx_runtime16 = require("react/jsx-runtime");
920
- var CheckCircleIcon = (0, import_react14.forwardRef)(
1120
+ var import_react16 = require("react");
1121
+ var import_jsx_runtime18 = require("react/jsx-runtime");
1122
+ var CheckCircleIcon = (0, import_react16.forwardRef)(
921
1123
  function CheckCircleIcon2(_a, ref) {
922
1124
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
923
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
1125
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
924
1126
  "svg",
925
1127
  __spreadProps(__spreadValues({
926
1128
  ref,
@@ -932,7 +1134,7 @@ var CheckCircleIcon = (0, import_react14.forwardRef)(
932
1134
  className
933
1135
  }, other), {
934
1136
  children: [
935
- duotone && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1137
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
936
1138
  "path",
937
1139
  {
938
1140
  opacity: "0.12",
@@ -940,7 +1142,7 @@ var CheckCircleIcon = (0, import_react14.forwardRef)(
940
1142
  fill: "currentColor"
941
1143
  }
942
1144
  ),
943
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1145
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
944
1146
  "path",
945
1147
  {
946
1148
  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",
@@ -956,45 +1158,13 @@ var CheckCircleIcon = (0, import_react14.forwardRef)(
956
1158
  }
957
1159
  );
958
1160
 
959
- // src/icons/chevronDown.tsx
960
- var import_react15 = require("react");
961
- var import_jsx_runtime17 = require("react/jsx-runtime");
962
- var ChevronDownIcon = (0, import_react15.forwardRef)(
963
- function ChevronDownIcon2(_a, ref) {
964
- var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
965
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
966
- "svg",
967
- __spreadProps(__spreadValues({
968
- ref,
969
- width: size,
970
- height: size,
971
- viewBox: "0 0 24 24",
972
- fill: "none",
973
- xmlns: "http://www.w3.org/2000/svg",
974
- className
975
- }, other), {
976
- children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
977
- "path",
978
- {
979
- d: "M6 9L12 15L18 9",
980
- stroke: "currentColor",
981
- strokeWidth: "2",
982
- strokeLinecap: "round",
983
- strokeLinejoin: "round"
984
- }
985
- )
986
- })
987
- );
988
- }
989
- );
990
-
991
1161
  // src/icons/chevronLeft.tsx
992
- var import_react16 = require("react");
993
- var import_jsx_runtime18 = require("react/jsx-runtime");
994
- var ChevronLeftIcon = (0, import_react16.forwardRef)(
1162
+ var import_react17 = require("react");
1163
+ var import_jsx_runtime19 = require("react/jsx-runtime");
1164
+ var ChevronLeftIcon = (0, import_react17.forwardRef)(
995
1165
  function ChevronLeftIcon2(_a, ref) {
996
1166
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
997
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1167
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
998
1168
  "svg",
999
1169
  __spreadProps(__spreadValues({
1000
1170
  ref,
@@ -1005,7 +1175,7 @@ var ChevronLeftIcon = (0, import_react16.forwardRef)(
1005
1175
  xmlns: "http://www.w3.org/2000/svg",
1006
1176
  className
1007
1177
  }, other), {
1008
- children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1178
+ children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1009
1179
  "path",
1010
1180
  {
1011
1181
  d: "M15 18L9 12L15 6",
@@ -1021,12 +1191,12 @@ var ChevronLeftIcon = (0, import_react16.forwardRef)(
1021
1191
  );
1022
1192
 
1023
1193
  // src/icons/chevronRight.tsx
1024
- var import_react17 = require("react");
1025
- var import_jsx_runtime19 = require("react/jsx-runtime");
1026
- var ChevronRightIcon = (0, import_react17.forwardRef)(
1194
+ var import_react18 = require("react");
1195
+ var import_jsx_runtime20 = require("react/jsx-runtime");
1196
+ var ChevronRightIcon = (0, import_react18.forwardRef)(
1027
1197
  function ChevronRightIcon2(_a, ref) {
1028
1198
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1029
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1199
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1030
1200
  "svg",
1031
1201
  __spreadProps(__spreadValues({
1032
1202
  ref,
@@ -1037,7 +1207,7 @@ var ChevronRightIcon = (0, import_react17.forwardRef)(
1037
1207
  xmlns: "http://www.w3.org/2000/svg",
1038
1208
  className
1039
1209
  }, other), {
1040
- children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1210
+ children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1041
1211
  "path",
1042
1212
  {
1043
1213
  d: "M9 18L15 12L9 6",
@@ -1053,12 +1223,12 @@ var ChevronRightIcon = (0, import_react17.forwardRef)(
1053
1223
  );
1054
1224
 
1055
1225
  // src/icons/chevronUp.tsx
1056
- var import_react18 = require("react");
1057
- var import_jsx_runtime20 = require("react/jsx-runtime");
1058
- var ChevronUpIcon = (0, import_react18.forwardRef)(
1226
+ var import_react19 = require("react");
1227
+ var import_jsx_runtime21 = require("react/jsx-runtime");
1228
+ var ChevronUpIcon = (0, import_react19.forwardRef)(
1059
1229
  function ChevronUpIcon2(_a, ref) {
1060
1230
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1061
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1231
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1062
1232
  "svg",
1063
1233
  __spreadProps(__spreadValues({
1064
1234
  ref,
@@ -1069,7 +1239,7 @@ var ChevronUpIcon = (0, import_react18.forwardRef)(
1069
1239
  xmlns: "http://www.w3.org/2000/svg",
1070
1240
  className
1071
1241
  }, other), {
1072
- children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
1242
+ children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1073
1243
  "path",
1074
1244
  {
1075
1245
  d: "M18 15L12 9L6 15",
@@ -1085,11 +1255,11 @@ var ChevronUpIcon = (0, import_react18.forwardRef)(
1085
1255
  );
1086
1256
 
1087
1257
  // src/icons/copy.tsx
1088
- var import_react19 = require("react");
1089
- var import_jsx_runtime21 = require("react/jsx-runtime");
1090
- var CopyIcon = (0, import_react19.forwardRef)(function CopyIcon2(_a, ref) {
1258
+ var import_react20 = require("react");
1259
+ var import_jsx_runtime22 = require("react/jsx-runtime");
1260
+ var CopyIcon = (0, import_react20.forwardRef)(function CopyIcon2(_a, ref) {
1091
1261
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1092
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
1262
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
1093
1263
  "svg",
1094
1264
  __spreadProps(__spreadValues({
1095
1265
  ref,
@@ -1101,7 +1271,7 @@ var CopyIcon = (0, import_react19.forwardRef)(function CopyIcon2(_a, ref) {
1101
1271
  className
1102
1272
  }, other), {
1103
1273
  children: [
1104
- duotone && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1274
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1105
1275
  "path",
1106
1276
  {
1107
1277
  opacity: "0.12",
@@ -1109,7 +1279,7 @@ var CopyIcon = (0, import_react19.forwardRef)(function CopyIcon2(_a, ref) {
1109
1279
  fill: "currentColor"
1110
1280
  }
1111
1281
  ),
1112
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
1282
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1113
1283
  "path",
1114
1284
  {
1115
1285
  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",
@@ -1125,12 +1295,12 @@ var CopyIcon = (0, import_react19.forwardRef)(function CopyIcon2(_a, ref) {
1125
1295
  });
1126
1296
 
1127
1297
  // src/icons/cursorClick.tsx
1128
- var import_react20 = require("react");
1129
- var import_jsx_runtime22 = require("react/jsx-runtime");
1130
- var CursorClickIcon = (0, import_react20.forwardRef)(
1298
+ var import_react21 = require("react");
1299
+ var import_jsx_runtime23 = require("react/jsx-runtime");
1300
+ var CursorClickIcon = (0, import_react21.forwardRef)(
1131
1301
  function CursorClickIcon2(_a, ref) {
1132
1302
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1133
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
1303
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
1134
1304
  "svg",
1135
1305
  __spreadProps(__spreadValues({
1136
1306
  ref,
@@ -1142,7 +1312,7 @@ var CursorClickIcon = (0, import_react20.forwardRef)(
1142
1312
  className
1143
1313
  }, other), {
1144
1314
  children: [
1145
- duotone && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1315
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1146
1316
  "path",
1147
1317
  {
1148
1318
  opacity: "0.12",
@@ -1150,7 +1320,7 @@ var CursorClickIcon = (0, import_react20.forwardRef)(
1150
1320
  fill: "currentColor"
1151
1321
  }
1152
1322
  ),
1153
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
1323
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1154
1324
  "path",
1155
1325
  {
1156
1326
  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",
@@ -1167,12 +1337,12 @@ var CursorClickIcon = (0, import_react20.forwardRef)(
1167
1337
  );
1168
1338
 
1169
1339
  // src/icons/download.tsx
1170
- var import_react21 = require("react");
1171
- var import_jsx_runtime23 = require("react/jsx-runtime");
1172
- var DownloadIcon = (0, import_react21.forwardRef)(
1340
+ var import_react22 = require("react");
1341
+ var import_jsx_runtime24 = require("react/jsx-runtime");
1342
+ var DownloadIcon = (0, import_react22.forwardRef)(
1173
1343
  function DownloadIcon2(_a, ref) {
1174
1344
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1175
- return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
1345
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
1176
1346
  "svg",
1177
1347
  __spreadProps(__spreadValues({
1178
1348
  ref,
@@ -1184,7 +1354,7 @@ var DownloadIcon = (0, import_react21.forwardRef)(
1184
1354
  className
1185
1355
  }, other), {
1186
1356
  children: [
1187
- duotone && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1357
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1188
1358
  "path",
1189
1359
  {
1190
1360
  opacity: "0.12",
@@ -1192,7 +1362,7 @@ var DownloadIcon = (0, import_react21.forwardRef)(
1192
1362
  fill: "currentColor"
1193
1363
  }
1194
1364
  ),
1195
- /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
1365
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1196
1366
  "path",
1197
1367
  {
1198
1368
  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",
@@ -1209,11 +1379,11 @@ var DownloadIcon = (0, import_react21.forwardRef)(
1209
1379
  );
1210
1380
 
1211
1381
  // src/icons/edit.tsx
1212
- var import_react22 = require("react");
1213
- var import_jsx_runtime24 = require("react/jsx-runtime");
1214
- var EditIcon = (0, import_react22.forwardRef)(function EditIcon2(_a, ref) {
1382
+ var import_react23 = require("react");
1383
+ var import_jsx_runtime25 = require("react/jsx-runtime");
1384
+ var EditIcon = (0, import_react23.forwardRef)(function EditIcon2(_a, ref) {
1215
1385
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1216
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
1386
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
1217
1387
  "svg",
1218
1388
  __spreadProps(__spreadValues({
1219
1389
  ref,
@@ -1225,7 +1395,7 @@ var EditIcon = (0, import_react22.forwardRef)(function EditIcon2(_a, ref) {
1225
1395
  className
1226
1396
  }, other), {
1227
1397
  children: [
1228
- duotone && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1398
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1229
1399
  "path",
1230
1400
  {
1231
1401
  opacity: "0.12",
@@ -1233,7 +1403,7 @@ var EditIcon = (0, import_react22.forwardRef)(function EditIcon2(_a, ref) {
1233
1403
  fill: "currentColor"
1234
1404
  }
1235
1405
  ),
1236
- /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
1406
+ /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1237
1407
  "path",
1238
1408
  {
1239
1409
  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",
@@ -1249,12 +1419,12 @@ var EditIcon = (0, import_react22.forwardRef)(function EditIcon2(_a, ref) {
1249
1419
  });
1250
1420
 
1251
1421
  // src/icons/expand.tsx
1252
- var import_react23 = require("react");
1253
- var import_jsx_runtime25 = require("react/jsx-runtime");
1254
- var ExpandIcon = (0, import_react23.forwardRef)(
1422
+ var import_react24 = require("react");
1423
+ var import_jsx_runtime26 = require("react/jsx-runtime");
1424
+ var ExpandIcon = (0, import_react24.forwardRef)(
1255
1425
  function ExpandIcon2(_a, ref) {
1256
1426
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1257
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1427
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1258
1428
  "svg",
1259
1429
  __spreadProps(__spreadValues({
1260
1430
  ref,
@@ -1265,7 +1435,7 @@ var ExpandIcon = (0, import_react23.forwardRef)(
1265
1435
  xmlns: "http://www.w3.org/2000/svg",
1266
1436
  className
1267
1437
  }, other), {
1268
- children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
1438
+ children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1269
1439
  "path",
1270
1440
  {
1271
1441
  d: "M16 8L21 3M21 3H16M21 3V8M8 8L3 3M3 3L3 8M3 3L8 3M8 16L3 21M3 21H8M3 21L3 16M16 16L21 21M21 21V16M21 21H16",
@@ -1281,12 +1451,12 @@ var ExpandIcon = (0, import_react23.forwardRef)(
1281
1451
  );
1282
1452
 
1283
1453
  // src/icons/flipBackward.tsx
1284
- var import_react24 = require("react");
1285
- var import_jsx_runtime26 = require("react/jsx-runtime");
1286
- var FlipBackwardIcon = (0, import_react24.forwardRef)(
1454
+ var import_react25 = require("react");
1455
+ var import_jsx_runtime27 = require("react/jsx-runtime");
1456
+ var FlipBackwardIcon = (0, import_react25.forwardRef)(
1287
1457
  function FlipBackwardIcon2(_a, ref) {
1288
1458
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1289
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1459
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1290
1460
  "svg",
1291
1461
  __spreadProps(__spreadValues({
1292
1462
  ref,
@@ -1297,7 +1467,7 @@ var FlipBackwardIcon = (0, import_react24.forwardRef)(
1297
1467
  xmlns: "http://www.w3.org/2000/svg",
1298
1468
  className
1299
1469
  }, other), {
1300
- children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
1470
+ children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1301
1471
  "path",
1302
1472
  {
1303
1473
  d: "M3 9H16.5C18.9853 9 21 11.0147 21 13.5C21 15.9853 18.9853 18 16.5 18H12M3 9L7 5M3 9L7 13",
@@ -1313,12 +1483,12 @@ var FlipBackwardIcon = (0, import_react24.forwardRef)(
1313
1483
  );
1314
1484
 
1315
1485
  // src/icons/flipForward.tsx
1316
- var import_react25 = require("react");
1317
- var import_jsx_runtime27 = require("react/jsx-runtime");
1318
- var FlipForwardIcon = (0, import_react25.forwardRef)(
1486
+ var import_react26 = require("react");
1487
+ var import_jsx_runtime28 = require("react/jsx-runtime");
1488
+ var FlipForwardIcon = (0, import_react26.forwardRef)(
1319
1489
  function FlipForwardIcon2(_a, ref) {
1320
1490
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1321
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1491
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1322
1492
  "svg",
1323
1493
  __spreadProps(__spreadValues({
1324
1494
  ref,
@@ -1329,7 +1499,7 @@ var FlipForwardIcon = (0, import_react25.forwardRef)(
1329
1499
  xmlns: "http://www.w3.org/2000/svg",
1330
1500
  className
1331
1501
  }, other), {
1332
- children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
1502
+ children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1333
1503
  "path",
1334
1504
  {
1335
1505
  d: "M21 9H7.5C5.01472 9 3 11.0147 3 13.5C3 15.9853 5.01472 18 7.5 18H12M21 9L17 5M21 9L17 13",
@@ -1345,12 +1515,12 @@ var FlipForwardIcon = (0, import_react25.forwardRef)(
1345
1515
  );
1346
1516
 
1347
1517
  // src/icons/helpCircle.tsx
1348
- var import_react26 = require("react");
1349
- var import_jsx_runtime28 = require("react/jsx-runtime");
1350
- var HelpCircleIcon = (0, import_react26.forwardRef)(
1518
+ var import_react27 = require("react");
1519
+ var import_jsx_runtime29 = require("react/jsx-runtime");
1520
+ var HelpCircleIcon = (0, import_react27.forwardRef)(
1351
1521
  function HelpCircleIcon2(_a, ref) {
1352
1522
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1353
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
1523
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
1354
1524
  "svg",
1355
1525
  __spreadProps(__spreadValues({
1356
1526
  ref,
@@ -1362,7 +1532,7 @@ var HelpCircleIcon = (0, import_react26.forwardRef)(
1362
1532
  className
1363
1533
  }, other), {
1364
1534
  children: [
1365
- duotone && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1535
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1366
1536
  "path",
1367
1537
  {
1368
1538
  opacity: "0.12",
@@ -1370,7 +1540,7 @@ var HelpCircleIcon = (0, import_react26.forwardRef)(
1370
1540
  fill: "currentColor"
1371
1541
  }
1372
1542
  ),
1373
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
1543
+ /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1374
1544
  "path",
1375
1545
  {
1376
1546
  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",
@@ -1387,11 +1557,11 @@ var HelpCircleIcon = (0, import_react26.forwardRef)(
1387
1557
  );
1388
1558
 
1389
1559
  // src/icons/home.tsx
1390
- var import_react27 = require("react");
1391
- var import_jsx_runtime29 = require("react/jsx-runtime");
1392
- var HomeIcon = (0, import_react27.forwardRef)(function HomeIcon2(_a, ref) {
1560
+ var import_react28 = require("react");
1561
+ var import_jsx_runtime30 = require("react/jsx-runtime");
1562
+ var HomeIcon = (0, import_react28.forwardRef)(function HomeIcon2(_a, ref) {
1393
1563
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1394
- return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
1564
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
1395
1565
  "svg",
1396
1566
  __spreadProps(__spreadValues({
1397
1567
  ref,
@@ -1403,8 +1573,8 @@ var HomeIcon = (0, import_react27.forwardRef)(function HomeIcon2(_a, ref) {
1403
1573
  className
1404
1574
  }, other), {
1405
1575
  children: [
1406
- duotone && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
1407
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
1576
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
1577
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1408
1578
  "path",
1409
1579
  {
1410
1580
  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",
@@ -1420,12 +1590,12 @@ var HomeIcon = (0, import_react27.forwardRef)(function HomeIcon2(_a, ref) {
1420
1590
  });
1421
1591
 
1422
1592
  // src/icons/image.tsx
1423
- var import_react28 = require("react");
1424
- var import_jsx_runtime30 = require("react/jsx-runtime");
1425
- var ImageIcon = (0, import_react28.forwardRef)(
1593
+ var import_react29 = require("react");
1594
+ var import_jsx_runtime31 = require("react/jsx-runtime");
1595
+ var ImageIcon = (0, import_react29.forwardRef)(
1426
1596
  function ImageIcon2(_a, ref) {
1427
1597
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1428
- return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
1598
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
1429
1599
  "svg",
1430
1600
  __spreadProps(__spreadValues({
1431
1601
  ref,
@@ -1437,15 +1607,15 @@ var ImageIcon = (0, import_react28.forwardRef)(
1437
1607
  className
1438
1608
  }, other), {
1439
1609
  children: [
1440
- duotone && /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("g", { opacity: "0.12", children: [
1441
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1610
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("g", { opacity: "0.12", children: [
1611
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1442
1612
  "path",
1443
1613
  {
1444
1614
  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",
1445
1615
  fill: "currentColor"
1446
1616
  }
1447
1617
  ),
1448
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1618
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1449
1619
  "path",
1450
1620
  {
1451
1621
  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",
@@ -1453,7 +1623,7 @@ var ImageIcon = (0, import_react28.forwardRef)(
1453
1623
  }
1454
1624
  )
1455
1625
  ] }),
1456
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
1626
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1457
1627
  "path",
1458
1628
  {
1459
1629
  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",
@@ -1470,12 +1640,12 @@ var ImageIcon = (0, import_react28.forwardRef)(
1470
1640
  );
1471
1641
 
1472
1642
  // src/icons/imageDown.tsx
1473
- var import_react29 = require("react");
1474
- var import_jsx_runtime31 = require("react/jsx-runtime");
1475
- var ImageDownIcon = (0, import_react29.forwardRef)(
1643
+ var import_react30 = require("react");
1644
+ var import_jsx_runtime32 = require("react/jsx-runtime");
1645
+ var ImageDownIcon = (0, import_react30.forwardRef)(
1476
1646
  function ImageDownIcon2(_a, ref) {
1477
1647
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1478
- return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
1648
+ return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
1479
1649
  "svg",
1480
1650
  __spreadProps(__spreadValues({
1481
1651
  ref,
@@ -1487,15 +1657,15 @@ var ImageDownIcon = (0, import_react29.forwardRef)(
1487
1657
  className
1488
1658
  }, other), {
1489
1659
  children: [
1490
- duotone && /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("g", { opacity: "0.12", children: [
1491
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1660
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("g", { opacity: "0.12", children: [
1661
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1492
1662
  "path",
1493
1663
  {
1494
1664
  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",
1495
1665
  fill: "currentColor"
1496
1666
  }
1497
1667
  ),
1498
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1668
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1499
1669
  "path",
1500
1670
  {
1501
1671
  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",
@@ -1503,7 +1673,7 @@ var ImageDownIcon = (0, import_react29.forwardRef)(
1503
1673
  }
1504
1674
  )
1505
1675
  ] }),
1506
- /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
1676
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1507
1677
  "path",
1508
1678
  {
1509
1679
  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",
@@ -1520,12 +1690,12 @@ var ImageDownIcon = (0, import_react29.forwardRef)(
1520
1690
  );
1521
1691
 
1522
1692
  // src/icons/imageX.tsx
1523
- var import_react30 = require("react");
1524
- var import_jsx_runtime32 = require("react/jsx-runtime");
1525
- var ImageXIcon = (0, import_react30.forwardRef)(
1693
+ var import_react31 = require("react");
1694
+ var import_jsx_runtime33 = require("react/jsx-runtime");
1695
+ var ImageXIcon = (0, import_react31.forwardRef)(
1526
1696
  function ImageXIcon2(_a, ref) {
1527
1697
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1528
- return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
1698
+ return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
1529
1699
  "svg",
1530
1700
  __spreadProps(__spreadValues({
1531
1701
  ref,
@@ -1537,15 +1707,15 @@ var ImageXIcon = (0, import_react30.forwardRef)(
1537
1707
  className
1538
1708
  }, other), {
1539
1709
  children: [
1540
- duotone && /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("g", { opacity: "0.12", children: [
1541
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1710
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("g", { opacity: "0.12", children: [
1711
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1542
1712
  "path",
1543
1713
  {
1544
1714
  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",
1545
1715
  fill: "currentColor"
1546
1716
  }
1547
1717
  ),
1548
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1718
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1549
1719
  "path",
1550
1720
  {
1551
1721
  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",
@@ -1553,7 +1723,7 @@ var ImageXIcon = (0, import_react30.forwardRef)(
1553
1723
  }
1554
1724
  )
1555
1725
  ] }),
1556
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
1726
+ /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1557
1727
  "path",
1558
1728
  {
1559
1729
  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",
@@ -1570,12 +1740,12 @@ var ImageXIcon = (0, import_react30.forwardRef)(
1570
1740
  );
1571
1741
 
1572
1742
  // src/icons/infoCircle.tsx
1573
- var import_react31 = require("react");
1574
- var import_jsx_runtime33 = require("react/jsx-runtime");
1575
- var InfoCircleIcon = (0, import_react31.forwardRef)(
1743
+ var import_react32 = require("react");
1744
+ var import_jsx_runtime34 = require("react/jsx-runtime");
1745
+ var InfoCircleIcon = (0, import_react32.forwardRef)(
1576
1746
  function InfoCircleIcon2(_a, ref) {
1577
1747
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1578
- return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
1748
+ return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
1579
1749
  "svg",
1580
1750
  __spreadProps(__spreadValues({
1581
1751
  ref,
@@ -1587,7 +1757,7 @@ var InfoCircleIcon = (0, import_react31.forwardRef)(
1587
1757
  className
1588
1758
  }, other), {
1589
1759
  children: [
1590
- duotone && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1760
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1591
1761
  "path",
1592
1762
  {
1593
1763
  opacity: "0.12",
@@ -1595,7 +1765,7 @@ var InfoCircleIcon = (0, import_react31.forwardRef)(
1595
1765
  fill: "currentColor"
1596
1766
  }
1597
1767
  ),
1598
- /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
1768
+ /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1599
1769
  "path",
1600
1770
  {
1601
1771
  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",
@@ -1612,12 +1782,12 @@ var InfoCircleIcon = (0, import_react31.forwardRef)(
1612
1782
  );
1613
1783
 
1614
1784
  // src/icons/lightbulb.tsx
1615
- var import_react32 = require("react");
1616
- var import_jsx_runtime34 = require("react/jsx-runtime");
1617
- var LightbulbIcon = (0, import_react32.forwardRef)(
1785
+ var import_react33 = require("react");
1786
+ var import_jsx_runtime35 = require("react/jsx-runtime");
1787
+ var LightbulbIcon = (0, import_react33.forwardRef)(
1618
1788
  function LightbulbIcon2(_a, ref) {
1619
1789
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1620
- return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
1790
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
1621
1791
  "svg",
1622
1792
  __spreadProps(__spreadValues({
1623
1793
  ref,
@@ -1629,7 +1799,7 @@ var LightbulbIcon = (0, import_react32.forwardRef)(
1629
1799
  className
1630
1800
  }, other), {
1631
1801
  children: [
1632
- duotone && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1802
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1633
1803
  "path",
1634
1804
  {
1635
1805
  opacity: "0.12",
@@ -1637,7 +1807,7 @@ var LightbulbIcon = (0, import_react32.forwardRef)(
1637
1807
  fill: "currentColor"
1638
1808
  }
1639
1809
  ),
1640
- /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
1810
+ /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1641
1811
  "path",
1642
1812
  {
1643
1813
  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",
@@ -1654,11 +1824,11 @@ var LightbulbIcon = (0, import_react32.forwardRef)(
1654
1824
  );
1655
1825
 
1656
1826
  // src/icons/lock.tsx
1657
- var import_react33 = require("react");
1658
- var import_jsx_runtime35 = require("react/jsx-runtime");
1659
- var LockIcon = (0, import_react33.forwardRef)(function LockIcon2(_a, ref) {
1827
+ var import_react34 = require("react");
1828
+ var import_jsx_runtime36 = require("react/jsx-runtime");
1829
+ var LockIcon = (0, import_react34.forwardRef)(function LockIcon2(_a, ref) {
1660
1830
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1661
- return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
1831
+ return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
1662
1832
  "svg",
1663
1833
  __spreadProps(__spreadValues({
1664
1834
  ref,
@@ -1670,7 +1840,7 @@ var LockIcon = (0, import_react33.forwardRef)(function LockIcon2(_a, ref) {
1670
1840
  className
1671
1841
  }, other), {
1672
1842
  children: [
1673
- duotone && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1843
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
1674
1844
  "path",
1675
1845
  {
1676
1846
  opacity: "0.12",
@@ -1678,7 +1848,7 @@ var LockIcon = (0, import_react33.forwardRef)(function LockIcon2(_a, ref) {
1678
1848
  fill: "currentColor"
1679
1849
  }
1680
1850
  ),
1681
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
1851
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
1682
1852
  "path",
1683
1853
  {
1684
1854
  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",
@@ -1694,12 +1864,12 @@ var LockIcon = (0, import_react33.forwardRef)(function LockIcon2(_a, ref) {
1694
1864
  });
1695
1865
 
1696
1866
  // src/icons/logIn.tsx
1697
- var import_react34 = require("react");
1698
- var import_jsx_runtime36 = require("react/jsx-runtime");
1699
- var LogInIcon = (0, import_react34.forwardRef)(
1867
+ var import_react35 = require("react");
1868
+ var import_jsx_runtime37 = require("react/jsx-runtime");
1869
+ var LogInIcon = (0, import_react35.forwardRef)(
1700
1870
  function LogInIcon2(_a, ref) {
1701
1871
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1702
- return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
1872
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
1703
1873
  "svg",
1704
1874
  __spreadProps(__spreadValues({
1705
1875
  ref,
@@ -1711,7 +1881,7 @@ var LogInIcon = (0, import_react34.forwardRef)(
1711
1881
  className
1712
1882
  }, other), {
1713
1883
  children: [
1714
- duotone && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
1884
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1715
1885
  "path",
1716
1886
  {
1717
1887
  opacity: "0.12",
@@ -1719,7 +1889,7 @@ var LogInIcon = (0, import_react34.forwardRef)(
1719
1889
  fill: "currentColor"
1720
1890
  }
1721
1891
  ),
1722
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
1892
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1723
1893
  "path",
1724
1894
  {
1725
1895
  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",
@@ -1736,12 +1906,12 @@ var LogInIcon = (0, import_react34.forwardRef)(
1736
1906
  );
1737
1907
 
1738
1908
  // src/icons/magicWand.tsx
1739
- var import_react35 = require("react");
1740
- var import_jsx_runtime37 = require("react/jsx-runtime");
1741
- var MagicWandIcon = (0, import_react35.forwardRef)(
1909
+ var import_react36 = require("react");
1910
+ var import_jsx_runtime38 = require("react/jsx-runtime");
1911
+ var MagicWandIcon = (0, import_react36.forwardRef)(
1742
1912
  function MagicWandIcon2(_a, ref) {
1743
1913
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1744
- return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
1914
+ return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
1745
1915
  "svg",
1746
1916
  __spreadProps(__spreadValues({
1747
1917
  ref,
@@ -1753,7 +1923,7 @@ var MagicWandIcon = (0, import_react35.forwardRef)(
1753
1923
  className
1754
1924
  }, other), {
1755
1925
  children: [
1756
- duotone && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1926
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
1757
1927
  "path",
1758
1928
  {
1759
1929
  opacity: "0.12",
@@ -1761,7 +1931,7 @@ var MagicWandIcon = (0, import_react35.forwardRef)(
1761
1931
  fill: "currentColor"
1762
1932
  }
1763
1933
  ),
1764
- /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
1934
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
1765
1935
  "path",
1766
1936
  {
1767
1937
  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",
@@ -1778,11 +1948,11 @@ var MagicWandIcon = (0, import_react35.forwardRef)(
1778
1948
  );
1779
1949
 
1780
1950
  // src/icons/mail.tsx
1781
- var import_react36 = require("react");
1782
- var import_jsx_runtime38 = require("react/jsx-runtime");
1783
- var MailIcon = (0, import_react36.forwardRef)(function MailIcon2(_a, ref) {
1951
+ var import_react37 = require("react");
1952
+ var import_jsx_runtime39 = require("react/jsx-runtime");
1953
+ var MailIcon = (0, import_react37.forwardRef)(function MailIcon2(_a, ref) {
1784
1954
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1785
- return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
1955
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
1786
1956
  "svg",
1787
1957
  __spreadProps(__spreadValues({
1788
1958
  ref,
@@ -1794,7 +1964,7 @@ var MailIcon = (0, import_react36.forwardRef)(function MailIcon2(_a, ref) {
1794
1964
  className
1795
1965
  }, other), {
1796
1966
  children: [
1797
- duotone && /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
1967
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
1798
1968
  "path",
1799
1969
  {
1800
1970
  opacity: "0.12",
@@ -1802,7 +1972,7 @@ var MailIcon = (0, import_react36.forwardRef)(function MailIcon2(_a, ref) {
1802
1972
  fill: "currentColor"
1803
1973
  }
1804
1974
  ),
1805
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
1975
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
1806
1976
  "path",
1807
1977
  {
1808
1978
  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",
@@ -1818,11 +1988,11 @@ var MailIcon = (0, import_react36.forwardRef)(function MailIcon2(_a, ref) {
1818
1988
  });
1819
1989
 
1820
1990
  // src/icons/menu.tsx
1821
- var import_react37 = require("react");
1822
- var import_jsx_runtime39 = require("react/jsx-runtime");
1823
- var MenuIcon = (0, import_react37.forwardRef)(function MenuIcon2(_a, ref) {
1991
+ var import_react38 = require("react");
1992
+ var import_jsx_runtime40 = require("react/jsx-runtime");
1993
+ var MenuIcon = (0, import_react38.forwardRef)(function MenuIcon2(_a, ref) {
1824
1994
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1825
- return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
1995
+ return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
1826
1996
  "svg",
1827
1997
  __spreadProps(__spreadValues({
1828
1998
  ref,
@@ -1833,7 +2003,7 @@ var MenuIcon = (0, import_react37.forwardRef)(function MenuIcon2(_a, ref) {
1833
2003
  xmlns: "http://www.w3.org/2000/svg",
1834
2004
  className
1835
2005
  }, other), {
1836
- children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
2006
+ children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
1837
2007
  "path",
1838
2008
  {
1839
2009
  d: "M3 12H21M3 6H21M3 18H21",
@@ -1848,12 +2018,12 @@ var MenuIcon = (0, import_react37.forwardRef)(function MenuIcon2(_a, ref) {
1848
2018
  });
1849
2019
 
1850
2020
  // src/icons/messageChatSquare.tsx
1851
- var import_react38 = require("react");
1852
- var import_jsx_runtime40 = require("react/jsx-runtime");
1853
- var MessageChatSquareIcon = (0, import_react38.forwardRef)(
2021
+ var import_react39 = require("react");
2022
+ var import_jsx_runtime41 = require("react/jsx-runtime");
2023
+ var MessageChatSquareIcon = (0, import_react39.forwardRef)(
1854
2024
  function MessageChatSquareIcon2(_a, ref) {
1855
2025
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1856
- return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
2026
+ return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
1857
2027
  "svg",
1858
2028
  __spreadProps(__spreadValues({
1859
2029
  ref,
@@ -1865,7 +2035,7 @@ var MessageChatSquareIcon = (0, import_react38.forwardRef)(
1865
2035
  className
1866
2036
  }, other), {
1867
2037
  children: [
1868
- duotone && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2038
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
1869
2039
  "path",
1870
2040
  {
1871
2041
  opacity: "0.12",
@@ -1873,7 +2043,7 @@ var MessageChatSquareIcon = (0, import_react38.forwardRef)(
1873
2043
  fill: "currentColor"
1874
2044
  }
1875
2045
  ),
1876
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
2046
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
1877
2047
  "path",
1878
2048
  {
1879
2049
  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",
@@ -1890,12 +2060,12 @@ var MessageChatSquareIcon = (0, import_react38.forwardRef)(
1890
2060
  );
1891
2061
 
1892
2062
  // src/icons/messagePlusSquare.tsx
1893
- var import_react39 = require("react");
1894
- var import_jsx_runtime41 = require("react/jsx-runtime");
1895
- var MessagePlusSquareIcon = (0, import_react39.forwardRef)(
2063
+ var import_react40 = require("react");
2064
+ var import_jsx_runtime42 = require("react/jsx-runtime");
2065
+ var MessagePlusSquareIcon = (0, import_react40.forwardRef)(
1896
2066
  function MessagePlusSquareIcon2(_a, ref) {
1897
2067
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1898
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
2068
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
1899
2069
  "svg",
1900
2070
  __spreadProps(__spreadValues({
1901
2071
  ref,
@@ -1907,7 +2077,7 @@ var MessagePlusSquareIcon = (0, import_react39.forwardRef)(
1907
2077
  className
1908
2078
  }, other), {
1909
2079
  children: [
1910
- duotone && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
2080
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
1911
2081
  "path",
1912
2082
  {
1913
2083
  opacity: "0.12",
@@ -1915,7 +2085,7 @@ var MessagePlusSquareIcon = (0, import_react39.forwardRef)(
1915
2085
  fill: "currentColor"
1916
2086
  }
1917
2087
  ),
1918
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
2088
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
1919
2089
  "path",
1920
2090
  {
1921
2091
  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",
@@ -1932,12 +2102,12 @@ var MessagePlusSquareIcon = (0, import_react39.forwardRef)(
1932
2102
  );
1933
2103
 
1934
2104
  // src/icons/messageTextSquare.tsx
1935
- var import_react40 = require("react");
1936
- var import_jsx_runtime42 = require("react/jsx-runtime");
1937
- var MessageTextSquareIcon = (0, import_react40.forwardRef)(
2105
+ var import_react41 = require("react");
2106
+ var import_jsx_runtime43 = require("react/jsx-runtime");
2107
+ var MessageTextSquareIcon = (0, import_react41.forwardRef)(
1938
2108
  function MessageTextSquareIcon2(_a, ref) {
1939
2109
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1940
- return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
2110
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
1941
2111
  "svg",
1942
2112
  __spreadProps(__spreadValues({
1943
2113
  ref,
@@ -1949,7 +2119,7 @@ var MessageTextSquareIcon = (0, import_react40.forwardRef)(
1949
2119
  className
1950
2120
  }, other), {
1951
2121
  children: [
1952
- duotone && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2122
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
1953
2123
  "path",
1954
2124
  {
1955
2125
  opacity: "0.12",
@@ -1957,7 +2127,7 @@ var MessageTextSquareIcon = (0, import_react40.forwardRef)(
1957
2127
  fill: "currentColor"
1958
2128
  }
1959
2129
  ),
1960
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
2130
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
1961
2131
  "path",
1962
2132
  {
1963
2133
  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",
@@ -1974,12 +2144,12 @@ var MessageTextSquareIcon = (0, import_react40.forwardRef)(
1974
2144
  );
1975
2145
 
1976
2146
  // src/icons/microphone.tsx
1977
- var import_react41 = require("react");
1978
- var import_jsx_runtime43 = require("react/jsx-runtime");
1979
- var MicrophoneIcon = (0, import_react41.forwardRef)(
2147
+ var import_react42 = require("react");
2148
+ var import_jsx_runtime44 = require("react/jsx-runtime");
2149
+ var MicrophoneIcon = (0, import_react42.forwardRef)(
1980
2150
  function MicrophoneIcon2(_a, ref) {
1981
2151
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
1982
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
2152
+ return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
1983
2153
  "svg",
1984
2154
  __spreadProps(__spreadValues({
1985
2155
  ref,
@@ -1991,7 +2161,7 @@ var MicrophoneIcon = (0, import_react41.forwardRef)(
1991
2161
  className
1992
2162
  }, other), {
1993
2163
  children: [
1994
- duotone && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
2164
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
1995
2165
  "path",
1996
2166
  {
1997
2167
  opacity: "0.12",
@@ -1999,7 +2169,7 @@ var MicrophoneIcon = (0, import_react41.forwardRef)(
1999
2169
  fill: "currentColor"
2000
2170
  }
2001
2171
  ),
2002
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
2172
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
2003
2173
  "path",
2004
2174
  {
2005
2175
  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",
@@ -2016,12 +2186,12 @@ var MicrophoneIcon = (0, import_react41.forwardRef)(
2016
2186
  );
2017
2187
 
2018
2188
  // src/icons/microphoneOff.tsx
2019
- var import_react42 = require("react");
2020
- var import_jsx_runtime44 = require("react/jsx-runtime");
2021
- var MicrophoneOffIcon = (0, import_react42.forwardRef)(
2189
+ var import_react43 = require("react");
2190
+ var import_jsx_runtime45 = require("react/jsx-runtime");
2191
+ var MicrophoneOffIcon = (0, import_react43.forwardRef)(
2022
2192
  function MicrophoneOffIcon2(_a, ref) {
2023
2193
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2024
- return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
2194
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
2025
2195
  "svg",
2026
2196
  __spreadProps(__spreadValues({
2027
2197
  ref,
@@ -2033,7 +2203,7 @@ var MicrophoneOffIcon = (0, import_react42.forwardRef)(
2033
2203
  className
2034
2204
  }, other), {
2035
2205
  children: [
2036
- duotone && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
2206
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2037
2207
  "path",
2038
2208
  {
2039
2209
  opacity: "0.12",
@@ -2041,7 +2211,7 @@ var MicrophoneOffIcon = (0, import_react42.forwardRef)(
2041
2211
  fill: "currentColor"
2042
2212
  }
2043
2213
  ),
2044
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
2214
+ /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2045
2215
  "path",
2046
2216
  {
2047
2217
  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",
@@ -2058,12 +2228,12 @@ var MicrophoneOffIcon = (0, import_react42.forwardRef)(
2058
2228
  );
2059
2229
 
2060
2230
  // src/icons/monitor.tsx
2061
- var import_react43 = require("react");
2062
- var import_jsx_runtime45 = require("react/jsx-runtime");
2063
- var MonitorIcon = (0, import_react43.forwardRef)(
2231
+ var import_react44 = require("react");
2232
+ var import_jsx_runtime46 = require("react/jsx-runtime");
2233
+ var MonitorIcon = (0, import_react44.forwardRef)(
2064
2234
  function MonitorIcon2(_a, ref) {
2065
2235
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2066
- return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
2236
+ return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
2067
2237
  "svg",
2068
2238
  __spreadProps(__spreadValues({
2069
2239
  ref,
@@ -2075,7 +2245,7 @@ var MonitorIcon = (0, import_react43.forwardRef)(
2075
2245
  className
2076
2246
  }, other), {
2077
2247
  children: [
2078
- duotone && /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2248
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2079
2249
  "path",
2080
2250
  {
2081
2251
  opacity: "0.12",
@@ -2083,7 +2253,7 @@ var MonitorIcon = (0, import_react43.forwardRef)(
2083
2253
  fill: "currentColor"
2084
2254
  }
2085
2255
  ),
2086
- /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
2256
+ /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2087
2257
  "path",
2088
2258
  {
2089
2259
  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",
@@ -2100,12 +2270,12 @@ var MonitorIcon = (0, import_react43.forwardRef)(
2100
2270
  );
2101
2271
 
2102
2272
  // src/icons/notificationBox.tsx
2103
- var import_react44 = require("react");
2104
- var import_jsx_runtime46 = require("react/jsx-runtime");
2105
- var NotificationBoxIcon = (0, import_react44.forwardRef)(
2273
+ var import_react45 = require("react");
2274
+ var import_jsx_runtime47 = require("react/jsx-runtime");
2275
+ var NotificationBoxIcon = (0, import_react45.forwardRef)(
2106
2276
  function NotificationBoxIcon2(_a, ref) {
2107
2277
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2108
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
2278
+ return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
2109
2279
  "svg",
2110
2280
  __spreadProps(__spreadValues({
2111
2281
  ref,
@@ -2117,7 +2287,7 @@ var NotificationBoxIcon = (0, import_react44.forwardRef)(
2117
2287
  className
2118
2288
  }, other), {
2119
2289
  children: [
2120
- duotone && /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2290
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2121
2291
  "path",
2122
2292
  {
2123
2293
  opacity: "0.12",
@@ -2125,7 +2295,7 @@ var NotificationBoxIcon = (0, import_react44.forwardRef)(
2125
2295
  fill: "currentColor"
2126
2296
  }
2127
2297
  ),
2128
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
2298
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2129
2299
  "path",
2130
2300
  {
2131
2301
  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",
@@ -2142,12 +2312,12 @@ var NotificationBoxIcon = (0, import_react44.forwardRef)(
2142
2312
  );
2143
2313
 
2144
2314
  // src/icons/pauseCircle.tsx
2145
- var import_react45 = require("react");
2146
- var import_jsx_runtime47 = require("react/jsx-runtime");
2147
- var PauseCircleIcon = (0, import_react45.forwardRef)(
2315
+ var import_react46 = require("react");
2316
+ var import_jsx_runtime48 = require("react/jsx-runtime");
2317
+ var PauseCircleIcon = (0, import_react46.forwardRef)(
2148
2318
  function PauseCircleIcon2(_a, ref) {
2149
2319
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2150
- return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
2320
+ return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
2151
2321
  "svg",
2152
2322
  __spreadProps(__spreadValues({
2153
2323
  ref,
@@ -2159,7 +2329,7 @@ var PauseCircleIcon = (0, import_react45.forwardRef)(
2159
2329
  className
2160
2330
  }, other), {
2161
2331
  children: [
2162
- duotone && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2332
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2163
2333
  "path",
2164
2334
  {
2165
2335
  opacity: "0.12",
@@ -2167,7 +2337,7 @@ var PauseCircleIcon = (0, import_react45.forwardRef)(
2167
2337
  fill: "currentColor"
2168
2338
  }
2169
2339
  ),
2170
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
2340
+ /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2171
2341
  "path",
2172
2342
  {
2173
2343
  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",
@@ -2184,12 +2354,12 @@ var PauseCircleIcon = (0, import_react45.forwardRef)(
2184
2354
  );
2185
2355
 
2186
2356
  // src/icons/phone.tsx
2187
- var import_react46 = require("react");
2188
- var import_jsx_runtime48 = require("react/jsx-runtime");
2189
- var PhoneIcon = (0, import_react46.forwardRef)(
2190
- function PhoneIcon2(_a, ref) {
2357
+ var import_react47 = require("react");
2358
+ var import_jsx_runtime49 = require("react/jsx-runtime");
2359
+ var PhoneIcon = (0, import_react47.forwardRef)(
2360
+ function PhoneIcon2(_a, ref) {
2191
2361
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2192
- return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
2362
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
2193
2363
  "svg",
2194
2364
  __spreadProps(__spreadValues({
2195
2365
  ref,
@@ -2201,7 +2371,7 @@ var PhoneIcon = (0, import_react46.forwardRef)(
2201
2371
  className
2202
2372
  }, other), {
2203
2373
  children: [
2204
- duotone && /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2374
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2205
2375
  "path",
2206
2376
  {
2207
2377
  opacity: "0.12",
@@ -2209,7 +2379,7 @@ var PhoneIcon = (0, import_react46.forwardRef)(
2209
2379
  fill: "currentColor"
2210
2380
  }
2211
2381
  ),
2212
- /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
2382
+ /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2213
2383
  "path",
2214
2384
  {
2215
2385
  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",
@@ -2226,12 +2396,12 @@ var PhoneIcon = (0, import_react46.forwardRef)(
2226
2396
  );
2227
2397
 
2228
2398
  // src/icons/pieChart.tsx
2229
- var import_react47 = require("react");
2230
- var import_jsx_runtime49 = require("react/jsx-runtime");
2231
- var PieChartIcon = (0, import_react47.forwardRef)(
2399
+ var import_react48 = require("react");
2400
+ var import_jsx_runtime50 = require("react/jsx-runtime");
2401
+ var PieChartIcon = (0, import_react48.forwardRef)(
2232
2402
  function PieChartIcon2(_a, ref) {
2233
2403
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2234
- return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
2404
+ return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
2235
2405
  "svg",
2236
2406
  __spreadProps(__spreadValues({
2237
2407
  ref,
@@ -2243,7 +2413,7 @@ var PieChartIcon = (0, import_react47.forwardRef)(
2243
2413
  className
2244
2414
  }, other), {
2245
2415
  children: [
2246
- duotone && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2416
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2247
2417
  "path",
2248
2418
  {
2249
2419
  opacity: "0.12",
@@ -2251,7 +2421,7 @@ var PieChartIcon = (0, import_react47.forwardRef)(
2251
2421
  fill: "currentColor"
2252
2422
  }
2253
2423
  ),
2254
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2424
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2255
2425
  "path",
2256
2426
  {
2257
2427
  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",
@@ -2262,7 +2432,7 @@ var PieChartIcon = (0, import_react47.forwardRef)(
2262
2432
  }
2263
2433
  ),
2264
2434
  ",",
2265
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
2435
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2266
2436
  "path",
2267
2437
  {
2268
2438
  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",
@@ -2279,12 +2449,12 @@ var PieChartIcon = (0, import_react47.forwardRef)(
2279
2449
  );
2280
2450
 
2281
2451
  // src/icons/playCircle.tsx
2282
- var import_react48 = require("react");
2283
- var import_jsx_runtime50 = require("react/jsx-runtime");
2284
- var PlayCircleIcon = (0, import_react48.forwardRef)(
2452
+ var import_react49 = require("react");
2453
+ var import_jsx_runtime51 = require("react/jsx-runtime");
2454
+ var PlayCircleIcon = (0, import_react49.forwardRef)(
2285
2455
  function PlayCircleIcon2(_a, ref) {
2286
2456
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2287
- return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
2457
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
2288
2458
  "svg",
2289
2459
  __spreadProps(__spreadValues({
2290
2460
  ref,
@@ -2296,7 +2466,7 @@ var PlayCircleIcon = (0, import_react48.forwardRef)(
2296
2466
  className
2297
2467
  }, other), {
2298
2468
  children: [
2299
- duotone && /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2469
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
2300
2470
  "path",
2301
2471
  {
2302
2472
  opacity: "0.12",
@@ -2304,7 +2474,7 @@ var PlayCircleIcon = (0, import_react48.forwardRef)(
2304
2474
  fill: "currentColor"
2305
2475
  }
2306
2476
  ),
2307
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2477
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
2308
2478
  "path",
2309
2479
  {
2310
2480
  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",
@@ -2315,7 +2485,7 @@ var PlayCircleIcon = (0, import_react48.forwardRef)(
2315
2485
  }
2316
2486
  ),
2317
2487
  ",",
2318
- /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
2488
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
2319
2489
  "path",
2320
2490
  {
2321
2491
  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",
@@ -2332,11 +2502,11 @@ var PlayCircleIcon = (0, import_react48.forwardRef)(
2332
2502
  );
2333
2503
 
2334
2504
  // src/icons/plus.tsx
2335
- var import_react49 = require("react");
2336
- var import_jsx_runtime51 = require("react/jsx-runtime");
2337
- var PlusIcon = (0, import_react49.forwardRef)(function PlusIcon2(_a, ref) {
2505
+ var import_react50 = require("react");
2506
+ var import_jsx_runtime52 = require("react/jsx-runtime");
2507
+ var PlusIcon = (0, import_react50.forwardRef)(function PlusIcon2(_a, ref) {
2338
2508
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2339
- return /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
2509
+ return /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2340
2510
  "svg",
2341
2511
  __spreadProps(__spreadValues({
2342
2512
  ref,
@@ -2347,7 +2517,7 @@ var PlusIcon = (0, import_react49.forwardRef)(function PlusIcon2(_a, ref) {
2347
2517
  xmlns: "http://www.w3.org/2000/svg",
2348
2518
  className
2349
2519
  }, other), {
2350
- children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
2520
+ children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2351
2521
  "path",
2352
2522
  {
2353
2523
  d: "M12 5V19M5 12H19",
@@ -2362,12 +2532,12 @@ var PlusIcon = (0, import_react49.forwardRef)(function PlusIcon2(_a, ref) {
2362
2532
  });
2363
2533
 
2364
2534
  // src/icons/plusCircle.tsx
2365
- var import_react50 = require("react");
2366
- var import_jsx_runtime52 = require("react/jsx-runtime");
2367
- var PlusCircleIcon = (0, import_react50.forwardRef)(
2535
+ var import_react51 = require("react");
2536
+ var import_jsx_runtime53 = require("react/jsx-runtime");
2537
+ var PlusCircleIcon = (0, import_react51.forwardRef)(
2368
2538
  function PlusCircleIcon2(_a, ref) {
2369
2539
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2370
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
2540
+ return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
2371
2541
  "svg",
2372
2542
  __spreadProps(__spreadValues({
2373
2543
  ref,
@@ -2379,7 +2549,7 @@ var PlusCircleIcon = (0, import_react50.forwardRef)(
2379
2549
  className
2380
2550
  }, other), {
2381
2551
  children: [
2382
- duotone && /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2552
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2383
2553
  "path",
2384
2554
  {
2385
2555
  opacity: "0.12",
@@ -2387,7 +2557,7 @@ var PlusCircleIcon = (0, import_react50.forwardRef)(
2387
2557
  fill: "currentColor"
2388
2558
  }
2389
2559
  ),
2390
- /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
2560
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2391
2561
  "path",
2392
2562
  {
2393
2563
  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",
@@ -2404,12 +2574,12 @@ var PlusCircleIcon = (0, import_react50.forwardRef)(
2404
2574
  );
2405
2575
 
2406
2576
  // src/icons/puzzlePiece.tsx
2407
- var import_react51 = require("react");
2408
- var import_jsx_runtime53 = require("react/jsx-runtime");
2409
- var PuzzlePieceIcon = (0, import_react51.forwardRef)(
2577
+ var import_react52 = require("react");
2578
+ var import_jsx_runtime54 = require("react/jsx-runtime");
2579
+ var PuzzlePieceIcon = (0, import_react52.forwardRef)(
2410
2580
  function PuzzlePieceIcon2(_a, ref) {
2411
2581
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2412
- return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
2582
+ return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
2413
2583
  "svg",
2414
2584
  __spreadProps(__spreadValues({
2415
2585
  ref,
@@ -2421,7 +2591,7 @@ var PuzzlePieceIcon = (0, import_react51.forwardRef)(
2421
2591
  className
2422
2592
  }, other), {
2423
2593
  children: [
2424
- duotone && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2594
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2425
2595
  "path",
2426
2596
  {
2427
2597
  opacity: "0.12",
@@ -2429,7 +2599,7 @@ var PuzzlePieceIcon = (0, import_react51.forwardRef)(
2429
2599
  fill: "currentColor"
2430
2600
  }
2431
2601
  ),
2432
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
2602
+ /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2433
2603
  "path",
2434
2604
  {
2435
2605
  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",
@@ -2446,12 +2616,12 @@ var PuzzlePieceIcon = (0, import_react51.forwardRef)(
2446
2616
  );
2447
2617
 
2448
2618
  // src/icons/qrCode.tsx
2449
- var import_react52 = require("react");
2450
- var import_jsx_runtime54 = require("react/jsx-runtime");
2451
- var QrCodeIcon = (0, import_react52.forwardRef)(
2619
+ var import_react53 = require("react");
2620
+ var import_jsx_runtime55 = require("react/jsx-runtime");
2621
+ var QrCodeIcon = (0, import_react53.forwardRef)(
2452
2622
  function QrCodeIcon2(_a, ref) {
2453
2623
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2454
- return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
2624
+ return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
2455
2625
  "svg",
2456
2626
  __spreadProps(__spreadValues({
2457
2627
  ref,
@@ -2463,7 +2633,7 @@ var QrCodeIcon = (0, import_react52.forwardRef)(
2463
2633
  className
2464
2634
  }, other), {
2465
2635
  children: [
2466
- duotone && /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2636
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2467
2637
  "path",
2468
2638
  {
2469
2639
  opacity: "0.4",
@@ -2474,7 +2644,7 @@ var QrCodeIcon = (0, import_react52.forwardRef)(
2474
2644
  strokeLinejoin: "round"
2475
2645
  }
2476
2646
  ),
2477
- /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
2647
+ /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2478
2648
  "path",
2479
2649
  {
2480
2650
  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",
@@ -2491,12 +2661,12 @@ var QrCodeIcon = (0, import_react52.forwardRef)(
2491
2661
  );
2492
2662
 
2493
2663
  // src/icons/receiptCheck.tsx
2494
- var import_react53 = require("react");
2495
- var import_jsx_runtime55 = require("react/jsx-runtime");
2496
- var ReceiptCheckIcon = (0, import_react53.forwardRef)(
2664
+ var import_react54 = require("react");
2665
+ var import_jsx_runtime56 = require("react/jsx-runtime");
2666
+ var ReceiptCheckIcon = (0, import_react54.forwardRef)(
2497
2667
  function ReceiptCheckIcon2(_a, ref) {
2498
2668
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2499
- return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
2669
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
2500
2670
  "svg",
2501
2671
  __spreadProps(__spreadValues({
2502
2672
  ref,
@@ -2508,7 +2678,7 @@ var ReceiptCheckIcon = (0, import_react53.forwardRef)(
2508
2678
  className
2509
2679
  }, other), {
2510
2680
  children: [
2511
- duotone && /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2681
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2512
2682
  "path",
2513
2683
  {
2514
2684
  opacity: "0.12",
@@ -2516,7 +2686,7 @@ var ReceiptCheckIcon = (0, import_react53.forwardRef)(
2516
2686
  fill: "currentColor"
2517
2687
  }
2518
2688
  ),
2519
- /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
2689
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2520
2690
  "path",
2521
2691
  {
2522
2692
  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",
@@ -2533,12 +2703,12 @@ var ReceiptCheckIcon = (0, import_react53.forwardRef)(
2533
2703
  );
2534
2704
 
2535
2705
  // src/icons/recording.tsx
2536
- var import_react54 = require("react");
2537
- var import_jsx_runtime56 = require("react/jsx-runtime");
2538
- var RecordingIcon = (0, import_react54.forwardRef)(
2706
+ var import_react55 = require("react");
2707
+ var import_jsx_runtime57 = require("react/jsx-runtime");
2708
+ var RecordingIcon = (0, import_react55.forwardRef)(
2539
2709
  function RecordingIcon2(_a, ref) {
2540
2710
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2541
- return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
2711
+ return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
2542
2712
  "svg",
2543
2713
  __spreadProps(__spreadValues({
2544
2714
  ref,
@@ -2550,7 +2720,7 @@ var RecordingIcon = (0, import_react54.forwardRef)(
2550
2720
  className
2551
2721
  }, other), {
2552
2722
  children: [
2553
- duotone && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2723
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2554
2724
  "path",
2555
2725
  {
2556
2726
  opacity: "0.12",
@@ -2558,7 +2728,7 @@ var RecordingIcon = (0, import_react54.forwardRef)(
2558
2728
  fill: "currentColor"
2559
2729
  }
2560
2730
  ),
2561
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
2731
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2562
2732
  "path",
2563
2733
  {
2564
2734
  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",
@@ -2575,12 +2745,12 @@ var RecordingIcon = (0, import_react54.forwardRef)(
2575
2745
  );
2576
2746
 
2577
2747
  // src/icons/refreshCcw.tsx
2578
- var import_react55 = require("react");
2579
- var import_jsx_runtime57 = require("react/jsx-runtime");
2580
- var RefreshCcwIcon = (0, import_react55.forwardRef)(
2748
+ var import_react56 = require("react");
2749
+ var import_jsx_runtime58 = require("react/jsx-runtime");
2750
+ var RefreshCcwIcon = (0, import_react56.forwardRef)(
2581
2751
  function RefreshCcwIcon2(_a, ref) {
2582
2752
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2583
- return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2753
+ return /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2584
2754
  "svg",
2585
2755
  __spreadProps(__spreadValues({
2586
2756
  ref,
@@ -2591,7 +2761,7 @@ var RefreshCcwIcon = (0, import_react55.forwardRef)(
2591
2761
  xmlns: "http://www.w3.org/2000/svg",
2592
2762
  className
2593
2763
  }, other), {
2594
- children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
2764
+ children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2595
2765
  "path",
2596
2766
  {
2597
2767
  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",
@@ -2607,12 +2777,12 @@ var RefreshCcwIcon = (0, import_react55.forwardRef)(
2607
2777
  );
2608
2778
 
2609
2779
  // src/icons/refreshCw.tsx
2610
- var import_react56 = require("react");
2611
- var import_jsx_runtime58 = require("react/jsx-runtime");
2612
- var RefreshCwIcon = (0, import_react56.forwardRef)(
2780
+ var import_react57 = require("react");
2781
+ var import_jsx_runtime59 = require("react/jsx-runtime");
2782
+ var RefreshCwIcon = (0, import_react57.forwardRef)(
2613
2783
  function RefreshCwIcon2(_a, ref) {
2614
2784
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2615
- return /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2785
+ return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2616
2786
  "svg",
2617
2787
  __spreadProps(__spreadValues({
2618
2788
  ref,
@@ -2623,7 +2793,7 @@ var RefreshCwIcon = (0, import_react56.forwardRef)(
2623
2793
  xmlns: "http://www.w3.org/2000/svg",
2624
2794
  className
2625
2795
  }, other), {
2626
- children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
2796
+ children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2627
2797
  "path",
2628
2798
  {
2629
2799
  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",
@@ -2639,12 +2809,12 @@ var RefreshCwIcon = (0, import_react56.forwardRef)(
2639
2809
  );
2640
2810
 
2641
2811
  // src/icons/rocket.tsx
2642
- var import_react57 = require("react");
2643
- var import_jsx_runtime59 = require("react/jsx-runtime");
2644
- var RocketIcon = (0, import_react57.forwardRef)(
2812
+ var import_react58 = require("react");
2813
+ var import_jsx_runtime60 = require("react/jsx-runtime");
2814
+ var RocketIcon = (0, import_react58.forwardRef)(
2645
2815
  function RocketIcon2(_a, ref) {
2646
2816
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2647
- return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(
2817
+ return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
2648
2818
  "svg",
2649
2819
  __spreadProps(__spreadValues({
2650
2820
  ref,
@@ -2656,7 +2826,7 @@ var RocketIcon = (0, import_react57.forwardRef)(
2656
2826
  className
2657
2827
  }, other), {
2658
2828
  children: [
2659
- duotone && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2829
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2660
2830
  "path",
2661
2831
  {
2662
2832
  opacity: "0.12",
@@ -2664,7 +2834,7 @@ var RocketIcon = (0, import_react57.forwardRef)(
2664
2834
  fill: "currentColor"
2665
2835
  }
2666
2836
  ),
2667
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
2837
+ /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2668
2838
  "path",
2669
2839
  {
2670
2840
  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",
@@ -2681,11 +2851,11 @@ var RocketIcon = (0, import_react57.forwardRef)(
2681
2851
  );
2682
2852
 
2683
2853
  // src/icons/save.tsx
2684
- var import_react58 = require("react");
2685
- var import_jsx_runtime60 = require("react/jsx-runtime");
2686
- var SaveIcon = (0, import_react58.forwardRef)(function SaveIcon2(_a, ref) {
2854
+ var import_react59 = require("react");
2855
+ var import_jsx_runtime61 = require("react/jsx-runtime");
2856
+ var SaveIcon = (0, import_react59.forwardRef)(function SaveIcon2(_a, ref) {
2687
2857
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2688
- return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
2858
+ return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
2689
2859
  "svg",
2690
2860
  __spreadProps(__spreadValues({
2691
2861
  ref,
@@ -2697,15 +2867,15 @@ var SaveIcon = (0, import_react58.forwardRef)(function SaveIcon2(_a, ref) {
2697
2867
  className
2698
2868
  }, other), {
2699
2869
  children: [
2700
- duotone && /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("g", { opacity: "0.12", children: [
2701
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2870
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("g", { opacity: "0.12", children: [
2871
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
2702
2872
  "path",
2703
2873
  {
2704
2874
  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",
2705
2875
  fill: "currentColor"
2706
2876
  }
2707
2877
  ),
2708
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2878
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
2709
2879
  "path",
2710
2880
  {
2711
2881
  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",
@@ -2713,7 +2883,7 @@ var SaveIcon = (0, import_react58.forwardRef)(function SaveIcon2(_a, ref) {
2713
2883
  }
2714
2884
  )
2715
2885
  ] }),
2716
- /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
2886
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
2717
2887
  "path",
2718
2888
  {
2719
2889
  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",
@@ -2729,12 +2899,12 @@ var SaveIcon = (0, import_react58.forwardRef)(function SaveIcon2(_a, ref) {
2729
2899
  });
2730
2900
 
2731
2901
  // src/icons/search.tsx
2732
- var import_react59 = require("react");
2733
- var import_jsx_runtime61 = require("react/jsx-runtime");
2734
- var SearchMdIcon = (0, import_react59.forwardRef)(
2902
+ var import_react60 = require("react");
2903
+ var import_jsx_runtime62 = require("react/jsx-runtime");
2904
+ var SearchMdIcon = (0, import_react60.forwardRef)(
2735
2905
  function SearchMdIcon2(_a, ref) {
2736
2906
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2737
- return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
2907
+ return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
2738
2908
  "svg",
2739
2909
  __spreadProps(__spreadValues({
2740
2910
  ref,
@@ -2746,7 +2916,7 @@ var SearchMdIcon = (0, import_react59.forwardRef)(
2746
2916
  className
2747
2917
  }, other), {
2748
2918
  children: [
2749
- duotone && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
2919
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
2750
2920
  "path",
2751
2921
  {
2752
2922
  opacity: "0.12",
@@ -2754,7 +2924,7 @@ var SearchMdIcon = (0, import_react59.forwardRef)(
2754
2924
  fill: "currentColor"
2755
2925
  }
2756
2926
  ),
2757
- /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
2927
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
2758
2928
  "path",
2759
2929
  {
2760
2930
  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",
@@ -2771,11 +2941,11 @@ var SearchMdIcon = (0, import_react59.forwardRef)(
2771
2941
  );
2772
2942
 
2773
2943
  // src/icons/send.tsx
2774
- var import_react60 = require("react");
2775
- var import_jsx_runtime62 = require("react/jsx-runtime");
2776
- var SendIcon = (0, import_react60.forwardRef)(function SendIcon2(_a, ref) {
2944
+ var import_react61 = require("react");
2945
+ var import_jsx_runtime63 = require("react/jsx-runtime");
2946
+ var SendIcon = (0, import_react61.forwardRef)(function SendIcon2(_a, ref) {
2777
2947
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2778
- return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
2948
+ return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
2779
2949
  "svg",
2780
2950
  __spreadProps(__spreadValues({
2781
2951
  ref,
@@ -2787,7 +2957,7 @@ var SendIcon = (0, import_react60.forwardRef)(function SendIcon2(_a, ref) {
2787
2957
  className
2788
2958
  }, other), {
2789
2959
  children: [
2790
- duotone && /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
2960
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
2791
2961
  "path",
2792
2962
  {
2793
2963
  opacity: "0.12",
@@ -2795,7 +2965,7 @@ var SendIcon = (0, import_react60.forwardRef)(function SendIcon2(_a, ref) {
2795
2965
  fill: "currentColor"
2796
2966
  }
2797
2967
  ),
2798
- /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
2968
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
2799
2969
  "path",
2800
2970
  {
2801
2971
  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",
@@ -2811,12 +2981,12 @@ var SendIcon = (0, import_react60.forwardRef)(function SendIcon2(_a, ref) {
2811
2981
  });
2812
2982
 
2813
2983
  // src/icons/settings.tsx
2814
- var import_react61 = require("react");
2815
- var import_jsx_runtime63 = require("react/jsx-runtime");
2816
- var SettingsIcon = (0, import_react61.forwardRef)(
2984
+ var import_react62 = require("react");
2985
+ var import_jsx_runtime64 = require("react/jsx-runtime");
2986
+ var SettingsIcon = (0, import_react62.forwardRef)(
2817
2987
  function SettingsIcon2(_a, ref) {
2818
2988
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2819
- return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
2989
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
2820
2990
  "svg",
2821
2991
  __spreadProps(__spreadValues({
2822
2992
  ref,
@@ -2828,7 +2998,7 @@ var SettingsIcon = (0, import_react61.forwardRef)(
2828
2998
  className
2829
2999
  }, other), {
2830
3000
  children: [
2831
- duotone && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
3001
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2832
3002
  "path",
2833
3003
  {
2834
3004
  opacity: "0.12",
@@ -2838,7 +3008,7 @@ var SettingsIcon = (0, import_react61.forwardRef)(
2838
3008
  fill: "currentColor"
2839
3009
  }
2840
3010
  ),
2841
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
3011
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2842
3012
  "path",
2843
3013
  {
2844
3014
  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",
@@ -2849,7 +3019,7 @@ var SettingsIcon = (0, import_react61.forwardRef)(
2849
3019
  }
2850
3020
  ),
2851
3021
  ",",
2852
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
3022
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
2853
3023
  "path",
2854
3024
  {
2855
3025
  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",
@@ -2866,12 +3036,12 @@ var SettingsIcon = (0, import_react61.forwardRef)(
2866
3036
  );
2867
3037
 
2868
3038
  // src/icons/share.tsx
2869
- var import_react62 = require("react");
2870
- var import_jsx_runtime64 = require("react/jsx-runtime");
2871
- var ShareIcon = (0, import_react62.forwardRef)(
3039
+ var import_react63 = require("react");
3040
+ var import_jsx_runtime65 = require("react/jsx-runtime");
3041
+ var ShareIcon = (0, import_react63.forwardRef)(
2872
3042
  function ShareIcon2(_a, ref) {
2873
3043
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2874
- return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
3044
+ return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
2875
3045
  "svg",
2876
3046
  __spreadProps(__spreadValues({
2877
3047
  ref,
@@ -2883,22 +3053,22 @@ var ShareIcon = (0, import_react62.forwardRef)(
2883
3053
  className
2884
3054
  }, other), {
2885
3055
  children: [
2886
- duotone && /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("g", { opacity: "0.12", children: [
2887
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3056
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("g", { opacity: "0.12", children: [
3057
+ /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
2888
3058
  "path",
2889
3059
  {
2890
3060
  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",
2891
3061
  fill: "currentColor"
2892
3062
  }
2893
3063
  ),
2894
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3064
+ /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
2895
3065
  "path",
2896
3066
  {
2897
3067
  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",
2898
3068
  fill: "currentColor"
2899
3069
  }
2900
3070
  ),
2901
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3071
+ /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
2902
3072
  "path",
2903
3073
  {
2904
3074
  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",
@@ -2906,7 +3076,7 @@ var ShareIcon = (0, import_react62.forwardRef)(
2906
3076
  }
2907
3077
  )
2908
3078
  ] }),
2909
- /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
3079
+ /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
2910
3080
  "path",
2911
3081
  {
2912
3082
  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",
@@ -2923,12 +3093,12 @@ var ShareIcon = (0, import_react62.forwardRef)(
2923
3093
  );
2924
3094
 
2925
3095
  // src/icons/skipBack.tsx
2926
- var import_react63 = require("react");
2927
- var import_jsx_runtime65 = require("react/jsx-runtime");
2928
- var SkipBackIcon = (0, import_react63.forwardRef)(
3096
+ var import_react64 = require("react");
3097
+ var import_jsx_runtime66 = require("react/jsx-runtime");
3098
+ var SkipBackIcon = (0, import_react64.forwardRef)(
2929
3099
  function SkipBackIcon2(_a, ref) {
2930
3100
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2931
- return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
3101
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
2932
3102
  "svg",
2933
3103
  __spreadProps(__spreadValues({
2934
3104
  ref,
@@ -2940,7 +3110,7 @@ var SkipBackIcon = (0, import_react63.forwardRef)(
2940
3110
  className
2941
3111
  }, other), {
2942
3112
  children: [
2943
- duotone && /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
3113
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
2944
3114
  "path",
2945
3115
  {
2946
3116
  opacity: "0.12",
@@ -2948,7 +3118,7 @@ var SkipBackIcon = (0, import_react63.forwardRef)(
2948
3118
  fill: "currentColor"
2949
3119
  }
2950
3120
  ),
2951
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
3121
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
2952
3122
  "path",
2953
3123
  {
2954
3124
  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",
@@ -2965,12 +3135,12 @@ var SkipBackIcon = (0, import_react63.forwardRef)(
2965
3135
  );
2966
3136
 
2967
3137
  // src/icons/skipForward.tsx
2968
- var import_react64 = require("react");
2969
- var import_jsx_runtime66 = require("react/jsx-runtime");
2970
- var SkipForwardIcon = (0, import_react64.forwardRef)(
3138
+ var import_react65 = require("react");
3139
+ var import_jsx_runtime67 = require("react/jsx-runtime");
3140
+ var SkipForwardIcon = (0, import_react65.forwardRef)(
2971
3141
  function SkipForwardIcon2(_a, ref) {
2972
3142
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
2973
- return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
3143
+ return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
2974
3144
  "svg",
2975
3145
  __spreadProps(__spreadValues({
2976
3146
  ref,
@@ -2982,7 +3152,7 @@ var SkipForwardIcon = (0, import_react64.forwardRef)(
2982
3152
  className
2983
3153
  }, other), {
2984
3154
  children: [
2985
- duotone && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
3155
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
2986
3156
  "path",
2987
3157
  {
2988
3158
  opacity: "0.12",
@@ -2990,7 +3160,7 @@ var SkipForwardIcon = (0, import_react64.forwardRef)(
2990
3160
  fill: "currentColor"
2991
3161
  }
2992
3162
  ),
2993
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
3163
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
2994
3164
  "path",
2995
3165
  {
2996
3166
  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",
@@ -3007,12 +3177,12 @@ var SkipForwardIcon = (0, import_react64.forwardRef)(
3007
3177
  );
3008
3178
 
3009
3179
  // src/icons/stars.tsx
3010
- var import_react65 = require("react");
3011
- var import_jsx_runtime67 = require("react/jsx-runtime");
3012
- var StarsIcon = (0, import_react65.forwardRef)(
3180
+ var import_react66 = require("react");
3181
+ var import_jsx_runtime68 = require("react/jsx-runtime");
3182
+ var StarsIcon = (0, import_react66.forwardRef)(
3013
3183
  function StarsIcon2(_a, ref) {
3014
3184
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3015
- return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
3185
+ return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
3016
3186
  "svg",
3017
3187
  __spreadProps(__spreadValues({
3018
3188
  ref,
@@ -3024,7 +3194,7 @@ var StarsIcon = (0, import_react65.forwardRef)(
3024
3194
  className
3025
3195
  }, other), {
3026
3196
  children: [
3027
- duotone && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
3197
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
3028
3198
  "path",
3029
3199
  {
3030
3200
  opacity: "0.12",
@@ -3032,7 +3202,7 @@ var StarsIcon = (0, import_react65.forwardRef)(
3032
3202
  fill: "currentColor"
3033
3203
  }
3034
3204
  ),
3035
- /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
3205
+ /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
3036
3206
  "path",
3037
3207
  {
3038
3208
  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",
@@ -3049,12 +3219,12 @@ var StarsIcon = (0, import_react65.forwardRef)(
3049
3219
  );
3050
3220
 
3051
3221
  // src/icons/trash.tsx
3052
- var import_react66 = require("react");
3053
- var import_jsx_runtime68 = require("react/jsx-runtime");
3054
- var TrashIcon = (0, import_react66.forwardRef)(
3222
+ var import_react67 = require("react");
3223
+ var import_jsx_runtime69 = require("react/jsx-runtime");
3224
+ var TrashIcon = (0, import_react67.forwardRef)(
3055
3225
  function TrashIcon2(_a, ref) {
3056
3226
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3057
- return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
3227
+ return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
3058
3228
  "svg",
3059
3229
  __spreadProps(__spreadValues({
3060
3230
  ref,
@@ -3066,7 +3236,7 @@ var TrashIcon = (0, import_react66.forwardRef)(
3066
3236
  className
3067
3237
  }, other), {
3068
3238
  children: [
3069
- duotone && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
3239
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3070
3240
  "path",
3071
3241
  {
3072
3242
  opacity: "0.12",
@@ -3074,7 +3244,7 @@ var TrashIcon = (0, import_react66.forwardRef)(
3074
3244
  fill: "currentColor"
3075
3245
  }
3076
3246
  ),
3077
- /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
3247
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3078
3248
  "path",
3079
3249
  {
3080
3250
  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",
@@ -3091,12 +3261,12 @@ var TrashIcon = (0, import_react66.forwardRef)(
3091
3261
  );
3092
3262
 
3093
3263
  // src/icons/trendDown.tsx
3094
- var import_react67 = require("react");
3095
- var import_jsx_runtime69 = require("react/jsx-runtime");
3096
- var TrendDownIcon = (0, import_react67.forwardRef)(
3264
+ var import_react68 = require("react");
3265
+ var import_jsx_runtime70 = require("react/jsx-runtime");
3266
+ var TrendDownIcon = (0, import_react68.forwardRef)(
3097
3267
  function TrendDownIcon2(_a, ref) {
3098
3268
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3099
- return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3269
+ return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3100
3270
  "svg",
3101
3271
  __spreadProps(__spreadValues({
3102
3272
  ref,
@@ -3107,7 +3277,7 @@ var TrendDownIcon = (0, import_react67.forwardRef)(
3107
3277
  xmlns: "http://www.w3.org/2000/svg",
3108
3278
  className
3109
3279
  }, other), {
3110
- children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
3280
+ children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3111
3281
  "path",
3112
3282
  {
3113
3283
  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",
@@ -3123,12 +3293,12 @@ var TrendDownIcon = (0, import_react67.forwardRef)(
3123
3293
  );
3124
3294
 
3125
3295
  // src/icons/trendUp.tsx
3126
- var import_react68 = require("react");
3127
- var import_jsx_runtime70 = require("react/jsx-runtime");
3128
- var TrendUpIcon = (0, import_react68.forwardRef)(
3296
+ var import_react69 = require("react");
3297
+ var import_jsx_runtime71 = require("react/jsx-runtime");
3298
+ var TrendUpIcon = (0, import_react69.forwardRef)(
3129
3299
  function TrendUpIcon2(_a, ref) {
3130
3300
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3131
- return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3301
+ return /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3132
3302
  "svg",
3133
3303
  __spreadProps(__spreadValues({
3134
3304
  ref,
@@ -3139,7 +3309,7 @@ var TrendUpIcon = (0, import_react68.forwardRef)(
3139
3309
  xmlns: "http://www.w3.org/2000/svg",
3140
3310
  className
3141
3311
  }, other), {
3142
- children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
3312
+ children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3143
3313
  "path",
3144
3314
  {
3145
3315
  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",
@@ -3155,11 +3325,11 @@ var TrendUpIcon = (0, import_react68.forwardRef)(
3155
3325
  );
3156
3326
 
3157
3327
  // src/icons/user.tsx
3158
- var import_react69 = require("react");
3159
- var import_jsx_runtime71 = require("react/jsx-runtime");
3160
- var UserIcon = (0, import_react69.forwardRef)(function UserIcon2(_a, ref) {
3328
+ var import_react70 = require("react");
3329
+ var import_jsx_runtime72 = require("react/jsx-runtime");
3330
+ var UserIcon = (0, import_react70.forwardRef)(function UserIcon2(_a, ref) {
3161
3331
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3162
- return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
3332
+ return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
3163
3333
  "svg",
3164
3334
  __spreadProps(__spreadValues({
3165
3335
  ref,
@@ -3171,7 +3341,7 @@ var UserIcon = (0, import_react69.forwardRef)(function UserIcon2(_a, ref) {
3171
3341
  className
3172
3342
  }, other), {
3173
3343
  children: [
3174
- duotone && /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3344
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3175
3345
  "path",
3176
3346
  {
3177
3347
  opacity: "0.12",
@@ -3179,7 +3349,7 @@ var UserIcon = (0, import_react69.forwardRef)(function UserIcon2(_a, ref) {
3179
3349
  fill: "currentColor"
3180
3350
  }
3181
3351
  ),
3182
- /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
3352
+ /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3183
3353
  "path",
3184
3354
  {
3185
3355
  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",
@@ -3195,12 +3365,12 @@ var UserIcon = (0, import_react69.forwardRef)(function UserIcon2(_a, ref) {
3195
3365
  });
3196
3366
 
3197
3367
  // src/icons/userPlus.tsx
3198
- var import_react70 = require("react");
3199
- var import_jsx_runtime72 = require("react/jsx-runtime");
3200
- var UserPlusIcon = (0, import_react70.forwardRef)(
3368
+ var import_react71 = require("react");
3369
+ var import_jsx_runtime73 = require("react/jsx-runtime");
3370
+ var UserPlusIcon = (0, import_react71.forwardRef)(
3201
3371
  function UserPlusIcon2(_a, ref) {
3202
3372
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3203
- return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
3373
+ return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
3204
3374
  "svg",
3205
3375
  __spreadProps(__spreadValues({
3206
3376
  ref,
@@ -3212,7 +3382,7 @@ var UserPlusIcon = (0, import_react70.forwardRef)(
3212
3382
  className
3213
3383
  }, other), {
3214
3384
  children: [
3215
- duotone && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3385
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3216
3386
  "path",
3217
3387
  {
3218
3388
  opacity: "0.12",
@@ -3220,7 +3390,7 @@ var UserPlusIcon = (0, import_react70.forwardRef)(
3220
3390
  fill: "currentColor"
3221
3391
  }
3222
3392
  ),
3223
- /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
3393
+ /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3224
3394
  "path",
3225
3395
  {
3226
3396
  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",
@@ -3237,12 +3407,12 @@ var UserPlusIcon = (0, import_react70.forwardRef)(
3237
3407
  );
3238
3408
 
3239
3409
  // src/icons/userX.tsx
3240
- var import_react71 = require("react");
3241
- var import_jsx_runtime73 = require("react/jsx-runtime");
3242
- var UserXIcon = (0, import_react71.forwardRef)(
3410
+ var import_react72 = require("react");
3411
+ var import_jsx_runtime74 = require("react/jsx-runtime");
3412
+ var UserXIcon = (0, import_react72.forwardRef)(
3243
3413
  function UserXIcon2(_a, ref) {
3244
3414
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3245
- return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
3415
+ return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
3246
3416
  "svg",
3247
3417
  __spreadProps(__spreadValues({
3248
3418
  ref,
@@ -3254,7 +3424,7 @@ var UserXIcon = (0, import_react71.forwardRef)(
3254
3424
  className
3255
3425
  }, other), {
3256
3426
  children: [
3257
- duotone && /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3427
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
3258
3428
  "path",
3259
3429
  {
3260
3430
  opacity: "0.12",
@@ -3262,7 +3432,7 @@ var UserXIcon = (0, import_react71.forwardRef)(
3262
3432
  fill: "currentColor"
3263
3433
  }
3264
3434
  ),
3265
- /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
3435
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
3266
3436
  "path",
3267
3437
  {
3268
3438
  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",
@@ -3279,12 +3449,12 @@ var UserXIcon = (0, import_react71.forwardRef)(
3279
3449
  );
3280
3450
 
3281
3451
  // src/icons/users.tsx
3282
- var import_react72 = require("react");
3283
- var import_jsx_runtime74 = require("react/jsx-runtime");
3284
- var UsersIcon = (0, import_react72.forwardRef)(
3452
+ var import_react73 = require("react");
3453
+ var import_jsx_runtime75 = require("react/jsx-runtime");
3454
+ var UsersIcon = (0, import_react73.forwardRef)(
3285
3455
  function UsersIcon2(_a, ref) {
3286
3456
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3287
- return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
3457
+ return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
3288
3458
  "svg",
3289
3459
  __spreadProps(__spreadValues({
3290
3460
  ref,
@@ -3296,7 +3466,7 @@ var UsersIcon = (0, import_react72.forwardRef)(
3296
3466
  className
3297
3467
  }, other), {
3298
3468
  children: [
3299
- duotone && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
3469
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
3300
3470
  "path",
3301
3471
  {
3302
3472
  opacity: "0.12",
@@ -3304,7 +3474,7 @@ var UsersIcon = (0, import_react72.forwardRef)(
3304
3474
  fill: "currentColor"
3305
3475
  }
3306
3476
  ),
3307
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
3477
+ /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
3308
3478
  "path",
3309
3479
  {
3310
3480
  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",
@@ -3321,12 +3491,12 @@ var UsersIcon = (0, import_react72.forwardRef)(
3321
3491
  );
3322
3492
 
3323
3493
  // src/icons/usersPlus.tsx
3324
- var import_react73 = require("react");
3325
- var import_jsx_runtime75 = require("react/jsx-runtime");
3326
- var UsersPlusIcon = (0, import_react73.forwardRef)(
3494
+ var import_react74 = require("react");
3495
+ var import_jsx_runtime76 = require("react/jsx-runtime");
3496
+ var UsersPlusIcon = (0, import_react74.forwardRef)(
3327
3497
  function UsersPlusIcon2(_a, ref) {
3328
3498
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3329
- return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
3499
+ return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
3330
3500
  "svg",
3331
3501
  __spreadProps(__spreadValues({
3332
3502
  ref,
@@ -3338,7 +3508,7 @@ var UsersPlusIcon = (0, import_react73.forwardRef)(
3338
3508
  className
3339
3509
  }, other), {
3340
3510
  children: [
3341
- duotone && /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
3511
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
3342
3512
  "path",
3343
3513
  {
3344
3514
  opacity: "0.12",
@@ -3346,7 +3516,7 @@ var UsersPlusIcon = (0, import_react73.forwardRef)(
3346
3516
  fill: "currentColor"
3347
3517
  }
3348
3518
  ),
3349
- /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
3519
+ /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
3350
3520
  "path",
3351
3521
  {
3352
3522
  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",
@@ -3363,12 +3533,12 @@ var UsersPlusIcon = (0, import_react73.forwardRef)(
3363
3533
  );
3364
3534
 
3365
3535
  // src/icons/usersX.tsx
3366
- var import_react74 = require("react");
3367
- var import_jsx_runtime76 = require("react/jsx-runtime");
3368
- var UsersXIcon = (0, import_react74.forwardRef)(
3536
+ var import_react75 = require("react");
3537
+ var import_jsx_runtime77 = require("react/jsx-runtime");
3538
+ var UsersXIcon = (0, import_react75.forwardRef)(
3369
3539
  function UsersXIcon2(_a, ref) {
3370
3540
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3371
- return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
3541
+ return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
3372
3542
  "svg",
3373
3543
  __spreadProps(__spreadValues({
3374
3544
  ref,
@@ -3380,7 +3550,7 @@ var UsersXIcon = (0, import_react74.forwardRef)(
3380
3550
  className
3381
3551
  }, other), {
3382
3552
  children: [
3383
- duotone && /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
3553
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
3384
3554
  "path",
3385
3555
  {
3386
3556
  opacity: "0.12",
@@ -3388,7 +3558,7 @@ var UsersXIcon = (0, import_react74.forwardRef)(
3388
3558
  fill: "currentColor"
3389
3559
  }
3390
3560
  ),
3391
- /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
3561
+ /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
3392
3562
  "path",
3393
3563
  {
3394
3564
  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",
@@ -3405,12 +3575,12 @@ var UsersXIcon = (0, import_react74.forwardRef)(
3405
3575
  );
3406
3576
 
3407
3577
  // src/icons/videoRecorder.tsx
3408
- var import_react75 = require("react");
3409
- var import_jsx_runtime77 = require("react/jsx-runtime");
3410
- var VideoRecorderIcon = (0, import_react75.forwardRef)(
3578
+ var import_react76 = require("react");
3579
+ var import_jsx_runtime78 = require("react/jsx-runtime");
3580
+ var VideoRecorderIcon = (0, import_react76.forwardRef)(
3411
3581
  function VideoRecorderIcon2(_a, ref) {
3412
3582
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3413
- return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
3583
+ return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
3414
3584
  "svg",
3415
3585
  __spreadProps(__spreadValues({
3416
3586
  ref,
@@ -3422,7 +3592,7 @@ var VideoRecorderIcon = (0, import_react75.forwardRef)(
3422
3592
  className
3423
3593
  }, other), {
3424
3594
  children: [
3425
- duotone && /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
3595
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
3426
3596
  "path",
3427
3597
  {
3428
3598
  opacity: "0.12",
@@ -3434,7 +3604,7 @@ var VideoRecorderIcon = (0, import_react75.forwardRef)(
3434
3604
  strokeLinejoin: "round"
3435
3605
  }
3436
3606
  ),
3437
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
3607
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
3438
3608
  "path",
3439
3609
  {
3440
3610
  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",
@@ -3445,7 +3615,7 @@ var VideoRecorderIcon = (0, import_react75.forwardRef)(
3445
3615
  }
3446
3616
  ),
3447
3617
  ",",
3448
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
3618
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
3449
3619
  "path",
3450
3620
  {
3451
3621
  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",
@@ -3462,12 +3632,12 @@ var VideoRecorderIcon = (0, import_react75.forwardRef)(
3462
3632
  );
3463
3633
 
3464
3634
  // src/icons/videoRecorderOff.tsx
3465
- var import_react76 = require("react");
3466
- var import_jsx_runtime78 = require("react/jsx-runtime");
3467
- var VideoRecorderOffIcon = (0, import_react76.forwardRef)(
3635
+ var import_react77 = require("react");
3636
+ var import_jsx_runtime79 = require("react/jsx-runtime");
3637
+ var VideoRecorderOffIcon = (0, import_react77.forwardRef)(
3468
3638
  function VideoRecorderOffIcon2(_a, ref) {
3469
3639
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3470
- return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
3640
+ return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
3471
3641
  "svg",
3472
3642
  __spreadProps(__spreadValues({
3473
3643
  ref,
@@ -3479,7 +3649,7 @@ var VideoRecorderOffIcon = (0, import_react76.forwardRef)(
3479
3649
  className
3480
3650
  }, other), {
3481
3651
  children: [
3482
- duotone && /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
3652
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
3483
3653
  "path",
3484
3654
  {
3485
3655
  opacity: "0.12",
@@ -3491,7 +3661,7 @@ var VideoRecorderOffIcon = (0, import_react76.forwardRef)(
3491
3661
  strokeLinejoin: "round"
3492
3662
  }
3493
3663
  ),
3494
- /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
3664
+ /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
3495
3665
  "path",
3496
3666
  {
3497
3667
  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",
@@ -3508,12 +3678,12 @@ var VideoRecorderOffIcon = (0, import_react76.forwardRef)(
3508
3678
  );
3509
3679
 
3510
3680
  // src/icons/volumeMax.tsx
3511
- var import_react77 = require("react");
3512
- var import_jsx_runtime79 = require("react/jsx-runtime");
3513
- var VolumeMaxIcon = (0, import_react77.forwardRef)(
3681
+ var import_react78 = require("react");
3682
+ var import_jsx_runtime80 = require("react/jsx-runtime");
3683
+ var VolumeMaxIcon = (0, import_react78.forwardRef)(
3514
3684
  function VolumeMaxIcon2(_a, ref) {
3515
3685
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3516
- return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
3686
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
3517
3687
  "svg",
3518
3688
  __spreadProps(__spreadValues({
3519
3689
  ref,
@@ -3525,7 +3695,7 @@ var VolumeMaxIcon = (0, import_react77.forwardRef)(
3525
3695
  className
3526
3696
  }, other), {
3527
3697
  children: [
3528
- duotone && /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
3698
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
3529
3699
  "path",
3530
3700
  {
3531
3701
  opacity: "0.12",
@@ -3533,7 +3703,7 @@ var VolumeMaxIcon = (0, import_react77.forwardRef)(
3533
3703
  fill: "currentColor"
3534
3704
  }
3535
3705
  ),
3536
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
3706
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
3537
3707
  "path",
3538
3708
  {
3539
3709
  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",
@@ -3550,12 +3720,12 @@ var VolumeMaxIcon = (0, import_react77.forwardRef)(
3550
3720
  );
3551
3721
 
3552
3722
  // src/icons/volumeX.tsx
3553
- var import_react78 = require("react");
3554
- var import_jsx_runtime80 = require("react/jsx-runtime");
3555
- var VolumeXIcon = (0, import_react78.forwardRef)(
3723
+ var import_react79 = require("react");
3724
+ var import_jsx_runtime81 = require("react/jsx-runtime");
3725
+ var VolumeXIcon = (0, import_react79.forwardRef)(
3556
3726
  function VolumeXIcon2(_a, ref) {
3557
3727
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3558
- return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
3728
+ return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
3559
3729
  "svg",
3560
3730
  __spreadProps(__spreadValues({
3561
3731
  ref,
@@ -3567,7 +3737,7 @@ var VolumeXIcon = (0, import_react78.forwardRef)(
3567
3737
  className
3568
3738
  }, other), {
3569
3739
  children: [
3570
- duotone && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
3740
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
3571
3741
  "path",
3572
3742
  {
3573
3743
  opacity: "0.12",
@@ -3575,7 +3745,7 @@ var VolumeXIcon = (0, import_react78.forwardRef)(
3575
3745
  fill: "currentColor"
3576
3746
  }
3577
3747
  ),
3578
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
3748
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
3579
3749
  "path",
3580
3750
  {
3581
3751
  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",
@@ -3592,12 +3762,12 @@ var VolumeXIcon = (0, import_react78.forwardRef)(
3592
3762
  );
3593
3763
 
3594
3764
  // src/icons/xCircle.tsx
3595
- var import_react79 = require("react");
3596
- var import_jsx_runtime81 = require("react/jsx-runtime");
3597
- var XCircleIcon = (0, import_react79.forwardRef)(
3765
+ var import_react80 = require("react");
3766
+ var import_jsx_runtime82 = require("react/jsx-runtime");
3767
+ var XCircleIcon = (0, import_react80.forwardRef)(
3598
3768
  function XCircleIcon2(_a, ref) {
3599
3769
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3600
- return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
3770
+ return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(
3601
3771
  "svg",
3602
3772
  __spreadProps(__spreadValues({
3603
3773
  ref,
@@ -3609,7 +3779,7 @@ var XCircleIcon = (0, import_react79.forwardRef)(
3609
3779
  className
3610
3780
  }, other), {
3611
3781
  children: [
3612
- duotone && /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
3782
+ duotone && /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
3613
3783
  "path",
3614
3784
  {
3615
3785
  opacity: "0.12",
@@ -3617,7 +3787,7 @@ var XCircleIcon = (0, import_react79.forwardRef)(
3617
3787
  fill: "currentColor"
3618
3788
  }
3619
3789
  ),
3620
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
3790
+ /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
3621
3791
  "path",
3622
3792
  {
3623
3793
  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",
@@ -3634,12 +3804,12 @@ var XCircleIcon = (0, import_react79.forwardRef)(
3634
3804
  );
3635
3805
 
3636
3806
  // src/icons/xClose.tsx
3637
- var import_react80 = require("react");
3638
- var import_jsx_runtime82 = require("react/jsx-runtime");
3639
- var XCloseIcon = (0, import_react80.forwardRef)(
3807
+ var import_react81 = require("react");
3808
+ var import_jsx_runtime83 = require("react/jsx-runtime");
3809
+ var XCloseIcon = (0, import_react81.forwardRef)(
3640
3810
  function XCloseIcon2(_a, ref) {
3641
3811
  var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
3642
- return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
3812
+ return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
3643
3813
  "svg",
3644
3814
  __spreadProps(__spreadValues({
3645
3815
  ref,
@@ -3650,7 +3820,7 @@ var XCloseIcon = (0, import_react80.forwardRef)(
3650
3820
  xmlns: "http://www.w3.org/2000/svg",
3651
3821
  className
3652
3822
  }, other), {
3653
- children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
3823
+ children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
3654
3824
  "path",
3655
3825
  {
3656
3826
  d: "M18 6L6 18M6 6L18 18",
@@ -3664,10 +3834,295 @@ var XCloseIcon = (0, import_react80.forwardRef)(
3664
3834
  );
3665
3835
  }
3666
3836
  );
3837
+
3838
+ // src/components/Calendar/Calendar.tsx
3839
+ var import_jsx_runtime84 = require("react/jsx-runtime");
3840
+ function Calendar(_a) {
3841
+ var _b = _a, {
3842
+ className,
3843
+ classNames,
3844
+ showOutsideDays = true
3845
+ } = _b, props = __objRest(_b, [
3846
+ "className",
3847
+ "classNames",
3848
+ "showOutsideDays"
3849
+ ]);
3850
+ return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
3851
+ import_react_day_picker.DayPicker,
3852
+ __spreadValues({
3853
+ showOutsideDays,
3854
+ className: cn("p-4", className),
3855
+ classNames: __spreadValues({
3856
+ months: "flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0",
3857
+ month: "space-y-4",
3858
+ caption: "flex justify-center pt-1 relative items-center",
3859
+ caption_label: "text-sm font-medium",
3860
+ nav: "space-x-1 flex items-center",
3861
+ nav_button: cn(
3862
+ buttonVariants({ variant: "outline" }),
3863
+ iconButtonSizes({ size: "xs" })
3864
+ ),
3865
+ nav_button_previous: "absolute left-1",
3866
+ nav_button_next: "absolute right-1",
3867
+ table: "w-full border-collapse space-y-1",
3868
+ head_row: "flex",
3869
+ head_cell: "text-xs text-gray-700 rounded-md w-8 font-normal",
3870
+ row: "flex w-full mt-2",
3871
+ cell: "text-center text-sm text-gray-1000 p-0 relative [&:has([aria-selected])]:bg-blue-100 first:[&:has([aria-selected])]:rounded-l-md last:[&:has([aria-selected])]:rounded-r-md focus-within:relative focus-within:z-20",
3872
+ day: "h-8 w-8 p-0 cursor-pointer rounded-md [&:not([aria-selected])]:hover:bg-gray-100 aria-selected:opacity-100",
3873
+ day_selected: "bg-blue-700 text-white hover:bg-blue-700 hover:text-white",
3874
+ day_outside: "text-gray-700 opacity-50",
3875
+ day_disabled: "text-gray-700 opacity-50",
3876
+ day_range_middle: "aria-selected:bg-blue-100 aria-selected:text-blue-700",
3877
+ day_hidden: "invisible"
3878
+ }, classNames),
3879
+ components: {
3880
+ IconLeft: (_a2) => {
3881
+ var props2 = __objRest(_a2, []);
3882
+ return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(ChevronLeftIcon, { className: "h-3 w-3" });
3883
+ },
3884
+ IconRight: (_b2) => {
3885
+ var props2 = __objRest(_b2, []);
3886
+ return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(ChevronRightIcon, { className: "h-3 w-3" });
3887
+ }
3888
+ }
3889
+ }, props)
3890
+ );
3891
+ }
3892
+ Calendar.displayName = "Calendar";
3893
+
3894
+ // src/components/Dialog/Dialog.tsx
3895
+ var React5 = __toESM(require("react"));
3896
+ var DialogPrimitive = __toESM(require("@radix-ui/react-dialog"));
3897
+ var import_jsx_runtime85 = require("react/jsx-runtime");
3898
+ var Dialog = DialogPrimitive.Root;
3899
+ var DialogTrigger = DialogPrimitive.Trigger;
3900
+ var DialogPortal = (_a) => {
3901
+ var _b = _a, {
3902
+ className
3903
+ } = _b, props = __objRest(_b, [
3904
+ "className"
3905
+ ]);
3906
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
3907
+ };
3908
+ DialogPortal.displayName = DialogPrimitive.Portal.displayName;
3909
+ var DialogOverlay = React5.forwardRef((_a, ref) => {
3910
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3911
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
3912
+ DialogPrimitive.Overlay,
3913
+ __spreadValues({
3914
+ ref,
3915
+ className: cn(
3916
+ "fixed inset-0 z-50 bg-gray-1000/25 backdrop-blur-sm data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
3917
+ className
3918
+ )
3919
+ }, props)
3920
+ );
3921
+ });
3922
+ DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
3923
+ var DialogContent = React5.forwardRef((_a, ref) => {
3924
+ var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
3925
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(DialogPortal, { children: [
3926
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(DialogOverlay, {}),
3927
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
3928
+ DialogPrimitive.Content,
3929
+ __spreadProps(__spreadValues({
3930
+ ref,
3931
+ className: cn(
3932
+ "fixed left-[50%] top-[50%] z-50 grid w-full max-w-[400px] translate-x-[-50%] translate-y-[-50%] gap-6 border bg-white p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg md:w-full",
3933
+ className
3934
+ )
3935
+ }, props), {
3936
+ children: [
3937
+ children,
3938
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
3939
+ DialogPrimitive.Close,
3940
+ {
3941
+ className: cn(
3942
+ buttonVariants({ variant: "secondary" }),
3943
+ iconButtonSizes({ size: "xs" }),
3944
+ "absolute right-6 top-6"
3945
+ ),
3946
+ children: [
3947
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(XCloseIcon, { className: "h-3 w-3" }),
3948
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("span", { className: "sr-only", children: "Close" })
3949
+ ]
3950
+ }
3951
+ )
3952
+ ]
3953
+ })
3954
+ )
3955
+ ] });
3956
+ });
3957
+ DialogContent.displayName = DialogPrimitive.Content.displayName;
3958
+ var DialogHeader = (_a) => {
3959
+ var _b = _a, {
3960
+ className
3961
+ } = _b, props = __objRest(_b, [
3962
+ "className"
3963
+ ]);
3964
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
3965
+ "div",
3966
+ __spreadValues({
3967
+ className: cn(
3968
+ "flex flex-col space-y-1.5 text-center sm:text-left",
3969
+ className
3970
+ )
3971
+ }, props)
3972
+ );
3973
+ };
3974
+ DialogHeader.displayName = "DialogHeader";
3975
+ var DialogFooter = (_a) => {
3976
+ var _b = _a, {
3977
+ className
3978
+ } = _b, props = __objRest(_b, [
3979
+ "className"
3980
+ ]);
3981
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
3982
+ "div",
3983
+ __spreadValues({
3984
+ className: cn(
3985
+ "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
3986
+ className
3987
+ )
3988
+ }, props)
3989
+ );
3990
+ };
3991
+ DialogFooter.displayName = "DialogFooter";
3992
+ var DialogTitle = React5.forwardRef((_a, ref) => {
3993
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3994
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
3995
+ DialogPrimitive.Title,
3996
+ __spreadValues({
3997
+ ref,
3998
+ className: cn("text-lg text-gray-1000 font-semibold", className)
3999
+ }, props)
4000
+ );
4001
+ });
4002
+ DialogTitle.displayName = DialogPrimitive.Title.displayName;
4003
+ var DialogDescription = React5.forwardRef((_a, ref) => {
4004
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4005
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
4006
+ DialogPrimitive.Description,
4007
+ __spreadValues({
4008
+ ref,
4009
+ className: cn("text-sm text-gray-700", className)
4010
+ }, props)
4011
+ );
4012
+ });
4013
+ DialogDescription.displayName = DialogPrimitive.Description.displayName;
4014
+
4015
+ // src/components/Popover/Popover.tsx
4016
+ var React6 = __toESM(require("react"));
4017
+ var PopoverPrimitive = __toESM(require("@radix-ui/react-popover"));
4018
+ var import_jsx_runtime86 = require("react/jsx-runtime");
4019
+ var Popover = PopoverPrimitive.Root;
4020
+ var PopoverTrigger = PopoverPrimitive.Trigger;
4021
+ var PopoverContent = React6.forwardRef((_a, ref) => {
4022
+ var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
4023
+ return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(PopoverPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4024
+ PopoverPrimitive.Content,
4025
+ __spreadValues({
4026
+ ref,
4027
+ align,
4028
+ sideOffset,
4029
+ className: cn(
4030
+ "z-50 w-72 rounded-md border bg-white p-4 text-gray-1000 shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
4031
+ className
4032
+ )
4033
+ }, props)
4034
+ ) });
4035
+ });
4036
+ PopoverContent.displayName = PopoverPrimitive.Content.displayName;
4037
+
4038
+ // src/components/Switch/Switch.tsx
4039
+ var React7 = __toESM(require("react"));
4040
+ var SwitchPrimitive = __toESM(require("@radix-ui/react-switch"));
4041
+ var import_jsx_runtime87 = require("react/jsx-runtime");
4042
+ var Switch = React7.forwardRef((_a, ref) => {
4043
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4044
+ return /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
4045
+ SwitchPrimitive.Root,
4046
+ __spreadProps(__spreadValues({
4047
+ className: cn(
4048
+ "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",
4049
+ className
4050
+ )
4051
+ }, props), {
4052
+ ref,
4053
+ children: /* @__PURE__ */ (0, import_jsx_runtime87.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" })
4054
+ })
4055
+ );
4056
+ });
4057
+ Switch.displayName = SwitchPrimitive.Root.displayName;
4058
+
4059
+ // src/components/Tabs/Tabs.tsx
4060
+ var React8 = __toESM(require("react"));
4061
+ var TabsPrimitive = __toESM(require("@radix-ui/react-tabs"));
4062
+ var import_jsx_runtime88 = require("react/jsx-runtime");
4063
+ var Tabs = TabsPrimitive.Root;
4064
+ var TabsList = React8.forwardRef((_a, ref) => {
4065
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4066
+ return /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
4067
+ TabsPrimitive.List,
4068
+ __spreadValues({
4069
+ ref,
4070
+ className: cn(
4071
+ "inline-flex items-center justify-center gap-2 rounded-lg p-1.5 bg-gray-50 text-gray-700",
4072
+ className
4073
+ )
4074
+ }, props)
4075
+ );
4076
+ });
4077
+ TabsList.displayName = TabsPrimitive.List.displayName;
4078
+ var TabsTrigger = React8.forwardRef((_a, ref) => {
4079
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4080
+ return /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
4081
+ TabsPrimitive.Trigger,
4082
+ __spreadValues({
4083
+ ref,
4084
+ className: cn(
4085
+ "inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1.5 text-sm font-semibold ring-offset-white transition-all",
4086
+ "hover:bg-gray-100 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-700 focus-visible:ring-offset-2",
4087
+ "data-[state=active]:bg-white data-[state=active]:text-blue-700 data-[state=active]:shadow-sm",
4088
+ "disabled:pointer-events-none disabled:opacity-50",
4089
+ className
4090
+ )
4091
+ }, props)
4092
+ );
4093
+ });
4094
+ TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
4095
+ var TabsContent = React8.forwardRef((_a, ref) => {
4096
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4097
+ return /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
4098
+ TabsPrimitive.Content,
4099
+ __spreadValues({
4100
+ ref,
4101
+ className: cn(
4102
+ "mt-2 ring-offset-white focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-700 focus-visible:ring-offset-2",
4103
+ className
4104
+ )
4105
+ }, props)
4106
+ );
4107
+ });
4108
+ TabsContent.displayName = TabsPrimitive.Content.displayName;
3667
4109
  // Annotate the CommonJS export names for ESM import in node:
3668
4110
  0 && (module.exports = {
4111
+ Accordion,
4112
+ AccordionContent,
4113
+ AccordionItem,
4114
+ AccordionTrigger,
3669
4115
  ActivityIcon,
3670
4116
  AlertCircleIcon,
4117
+ AlertDialog,
4118
+ AlertDialogAction,
4119
+ AlertDialogCancel,
4120
+ AlertDialogContent,
4121
+ AlertDialogDescription,
4122
+ AlertDialogFooter,
4123
+ AlertDialogHeader,
4124
+ AlertDialogTitle,
4125
+ AlertDialogTrigger,
3671
4126
  ArrowDownIcon,
3672
4127
  ArrowLeftIcon,
3673
4128
  ArrowRightIcon,
@@ -3675,6 +4130,7 @@ var XCloseIcon = (0, import_react80.forwardRef)(
3675
4130
  Badge,
3676
4131
  BellIcon,
3677
4132
  Button,
4133
+ Calendar,
3678
4134
  CalendarCheckIcon,
3679
4135
  CalendarIcon,
3680
4136
  CalendarPlusIcon,
@@ -3687,6 +4143,13 @@ var XCloseIcon = (0, import_react80.forwardRef)(
3687
4143
  ChevronUpIcon,
3688
4144
  CopyIcon,
3689
4145
  CursorClickIcon,
4146
+ Dialog,
4147
+ DialogContent,
4148
+ DialogDescription,
4149
+ DialogFooter,
4150
+ DialogHeader,
4151
+ DialogTitle,
4152
+ DialogTrigger,
3690
4153
  DownloadIcon,
3691
4154
  EditIcon,
3692
4155
  ExpandIcon,
@@ -3717,6 +4180,9 @@ var XCloseIcon = (0, import_react80.forwardRef)(
3717
4180
  PlayCircleIcon,
3718
4181
  PlusCircleIcon,
3719
4182
  PlusIcon,
4183
+ Popover,
4184
+ PopoverContent,
4185
+ PopoverTrigger,
3720
4186
  PuzzlePieceIcon,
3721
4187
  QrCodeIcon,
3722
4188
  ReceiptCheckIcon,
@@ -3732,6 +4198,7 @@ var XCloseIcon = (0, import_react80.forwardRef)(
3732
4198
  SkipBackIcon,
3733
4199
  SkipForwardIcon,
3734
4200
  StarsIcon,
4201
+ Switch,
3735
4202
  Tabs,
3736
4203
  TabsContent,
3737
4204
  TabsList,
@@ -3750,5 +4217,8 @@ var XCloseIcon = (0, import_react80.forwardRef)(
3750
4217
  VolumeMaxIcon,
3751
4218
  VolumeXIcon,
3752
4219
  XCircleIcon,
3753
- XCloseIcon
4220
+ XCloseIcon,
4221
+ buttonSizes,
4222
+ buttonVariants,
4223
+ iconButtonSizes
3754
4224
  });