@snapcall/design-system 1.5.0 → 1.7.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.d.mts +282 -169
- package/dist/index.d.ts +282 -169
- package/dist/index.js +1430 -657
- package/dist/index.mjs +1404 -656
- package/dist/tailwind.css +1 -1
- package/package.json +6 -2
package/dist/index.mjs
CHANGED
|
@@ -141,7 +141,7 @@ var buttonVariants = cva(
|
|
|
141
141
|
primary: "bg-blue-700 text-white hover:bg-blue-800 active:bg-blue-900 focus-visible:ring-blue-1000",
|
|
142
142
|
secondary: "bg-gray-50 text-gray-1000 hover:bg-gray-100 active:bg-gray-500 focus-visible:ring-gray-1000",
|
|
143
143
|
tertiary: "bg-gray-50 text-blue-700 hover:bg-blue-100 active:bg-blue-200 focus-visible:ring-blue-700",
|
|
144
|
-
outline: "bg-
|
|
144
|
+
outline: "bg-white ring-1 ring-offset-0 ring-gray-200 text-gray-1000 hover:bg-gray-50 active:bg-gray-200 focus-visible:ring-gray-1000",
|
|
145
145
|
outlineBlue: "bg-transparent ring-1 ring-offset-0 ring-blue-700 text-blue-700 hover:bg-blue-50 active:bg-blue-200 focus-visible:ring-blue-700",
|
|
146
146
|
destructive: "bg-red-700 text-white hover:bg-red-800 active:bg-red-900 focus-visible:ring-red-1000",
|
|
147
147
|
ghostBlue: "bg-transparent text-blue-700 hover:bg-blue-100 active:bg-blue-200 focus-visible:ring-blue-700",
|
|
@@ -333,8 +333,93 @@ var AlertDialogCancel = React3.forwardRef((_a, ref) => {
|
|
|
333
333
|
});
|
|
334
334
|
AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
|
|
335
335
|
|
|
336
|
-
// src/components/
|
|
336
|
+
// src/components/Avatar/Avatar.tsx
|
|
337
|
+
import { forwardRef as forwardRef4 } from "react";
|
|
337
338
|
import { cva as cva2 } from "class-variance-authority";
|
|
339
|
+
import { jsx as jsx5, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
340
|
+
var avatarSizes = cva2("", {
|
|
341
|
+
variants: {
|
|
342
|
+
size: {
|
|
343
|
+
xs: "w-[16px] h-[16px] rounded-[3px] text-[10px]",
|
|
344
|
+
sm: "w-[24px] h-[24px] rounded-[4px] text-md",
|
|
345
|
+
md: "w-[36px] h-[36px] rounded-[6px] text-md",
|
|
346
|
+
lg: "w-[45px] h-[45px] rounded-[8px] text-md",
|
|
347
|
+
xl: "w-[72px] h-[72px] rounded-[10px] text-[30px]"
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
defaultVariants: {
|
|
351
|
+
size: "md"
|
|
352
|
+
}
|
|
353
|
+
});
|
|
354
|
+
var avatarColors = {
|
|
355
|
+
amber: "bg-amber-200 text-amber-700",
|
|
356
|
+
red: "bg-red-300 text-red-700",
|
|
357
|
+
green: "bg-green-300 text-green-700",
|
|
358
|
+
plum: "bg-plum-300 text-plum-700",
|
|
359
|
+
crimson: "bg-crimson-300 text-crimson-700",
|
|
360
|
+
blue: "bg-blue-300 text-blue-700",
|
|
361
|
+
purple: "bg-purple-300 text-purple-700",
|
|
362
|
+
violet: "bg-violet-300 text-violet-700",
|
|
363
|
+
indigo: "bg-indigo-300 text-indigo-700",
|
|
364
|
+
cyan: "bg-cyan-300 text-cyan-700",
|
|
365
|
+
teal: "bg-teal-300 text-teal-700",
|
|
366
|
+
grass: "bg-grass-300 text-grass-700",
|
|
367
|
+
brown: "bg-brown-300 text-brown-700",
|
|
368
|
+
lime: "bg-lime-300 text-lime-700",
|
|
369
|
+
yellow: "bg-yellow-300 text-yellow-700",
|
|
370
|
+
gold: "bg-gold-300 text-gold-700",
|
|
371
|
+
bronze: "bg-bronze-300 text-bronze-700",
|
|
372
|
+
gray: "bg-gray-300 text-gray-700"
|
|
373
|
+
};
|
|
374
|
+
var avatarVariants = cva2("", {
|
|
375
|
+
variants: {
|
|
376
|
+
variant: avatarColors
|
|
377
|
+
},
|
|
378
|
+
defaultVariants: {
|
|
379
|
+
variant: "blue"
|
|
380
|
+
}
|
|
381
|
+
});
|
|
382
|
+
var getNameInitials = (name) => {
|
|
383
|
+
const initial = name[0].toUpperCase();
|
|
384
|
+
return initial;
|
|
385
|
+
};
|
|
386
|
+
var getColorFromName = (name) => {
|
|
387
|
+
const nameValue = Array.from(name).reduce(
|
|
388
|
+
(total, current) => current.charCodeAt(0) + total,
|
|
389
|
+
0
|
|
390
|
+
);
|
|
391
|
+
const colorIndex = nameValue % Object.keys(avatarColors).length;
|
|
392
|
+
return Object.keys(avatarColors)[colorIndex];
|
|
393
|
+
};
|
|
394
|
+
var Avatar = forwardRef4(function Avatar2(_a, forwardedRef) {
|
|
395
|
+
var _b = _a, { size, className, icon, name, variant, image } = _b, other = __objRest(_b, ["size", "className", "icon", "name", "variant", "image"]);
|
|
396
|
+
const color = getColorFromName(name);
|
|
397
|
+
return /* @__PURE__ */ jsxs3(
|
|
398
|
+
"div",
|
|
399
|
+
__spreadProps(__spreadValues({
|
|
400
|
+
ref: forwardedRef,
|
|
401
|
+
className: cn(
|
|
402
|
+
"flex items-center justify-center font-semibold relative overflow-hidden shrink-0",
|
|
403
|
+
variant ? avatarVariants({ variant }) : avatarVariants({
|
|
404
|
+
variant: color
|
|
405
|
+
}),
|
|
406
|
+
avatarSizes({ size }),
|
|
407
|
+
{
|
|
408
|
+
relative: Boolean(icon)
|
|
409
|
+
},
|
|
410
|
+
className
|
|
411
|
+
)
|
|
412
|
+
}, other), {
|
|
413
|
+
children: [
|
|
414
|
+
image ? image : name ? getNameInitials(name) : null,
|
|
415
|
+
icon && /* @__PURE__ */ jsx5("span", { className: "absolute bottom-0 right-0", children: icon })
|
|
416
|
+
]
|
|
417
|
+
})
|
|
418
|
+
);
|
|
419
|
+
});
|
|
420
|
+
|
|
421
|
+
// src/components/Badge/Badge.tsx
|
|
422
|
+
import { cva as cva3 } from "class-variance-authority";
|
|
338
423
|
|
|
339
424
|
// src/utils/getLabelFromChildren.ts
|
|
340
425
|
import React4 from "react";
|
|
@@ -362,7 +447,7 @@ var randomPickFromArray = ({
|
|
|
362
447
|
};
|
|
363
448
|
|
|
364
449
|
// src/components/Badge/Badge.tsx
|
|
365
|
-
import { jsx as
|
|
450
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
366
451
|
var colors = {
|
|
367
452
|
gray: "text-gray-900",
|
|
368
453
|
green: "text-green-700",
|
|
@@ -377,7 +462,7 @@ var colors = {
|
|
|
377
462
|
orange: "text-orange-700"
|
|
378
463
|
};
|
|
379
464
|
var colorsArray = Object.keys(colors);
|
|
380
|
-
var badgeVariants =
|
|
465
|
+
var badgeVariants = cva3(
|
|
381
466
|
"inline-flex items-center justify-center gap-1 rounded-md px-2 py-0.5 text-xs font-semibold transition-colors",
|
|
382
467
|
{
|
|
383
468
|
variants: {
|
|
@@ -497,7 +582,7 @@ function Badge(_a) {
|
|
|
497
582
|
array: colorsArray
|
|
498
583
|
});
|
|
499
584
|
}
|
|
500
|
-
return /* @__PURE__ */
|
|
585
|
+
return /* @__PURE__ */ jsx6(
|
|
501
586
|
"div",
|
|
502
587
|
__spreadValues({
|
|
503
588
|
className: cn(badgeVariants({ variant, color }), className)
|
|
@@ -509,12 +594,12 @@ function Badge(_a) {
|
|
|
509
594
|
import { DayPicker } from "react-day-picker";
|
|
510
595
|
|
|
511
596
|
// src/icons/activity.tsx
|
|
512
|
-
import { forwardRef as
|
|
513
|
-
import { jsx as
|
|
514
|
-
var ActivityIcon =
|
|
597
|
+
import { forwardRef as forwardRef5 } from "react";
|
|
598
|
+
import { jsx as jsx7 } from "react/jsx-runtime";
|
|
599
|
+
var ActivityIcon = forwardRef5(
|
|
515
600
|
function ActivityIcon2(_a, ref) {
|
|
516
601
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
517
|
-
return /* @__PURE__ */
|
|
602
|
+
return /* @__PURE__ */ jsx7(
|
|
518
603
|
"svg",
|
|
519
604
|
__spreadProps(__spreadValues({
|
|
520
605
|
ref,
|
|
@@ -525,7 +610,7 @@ var ActivityIcon = forwardRef4(
|
|
|
525
610
|
xmlns: "http://www.w3.org/2000/svg",
|
|
526
611
|
className
|
|
527
612
|
}, other), {
|
|
528
|
-
children: /* @__PURE__ */
|
|
613
|
+
children: /* @__PURE__ */ jsx7(
|
|
529
614
|
"path",
|
|
530
615
|
{
|
|
531
616
|
d: "M22 12H18L15 21L9 3L6 12H2",
|
|
@@ -541,12 +626,12 @@ var ActivityIcon = forwardRef4(
|
|
|
541
626
|
);
|
|
542
627
|
|
|
543
628
|
// src/icons/alertCircle.tsx
|
|
544
|
-
import { forwardRef as
|
|
545
|
-
import { jsx as
|
|
546
|
-
var AlertCircleIcon =
|
|
629
|
+
import { forwardRef as forwardRef6 } from "react";
|
|
630
|
+
import { jsx as jsx8, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
631
|
+
var AlertCircleIcon = forwardRef6(
|
|
547
632
|
function AlertCircleIcon2(_a, ref) {
|
|
548
633
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
549
|
-
return /* @__PURE__ */
|
|
634
|
+
return /* @__PURE__ */ jsxs4(
|
|
550
635
|
"svg",
|
|
551
636
|
__spreadProps(__spreadValues({
|
|
552
637
|
ref,
|
|
@@ -558,7 +643,7 @@ var AlertCircleIcon = forwardRef5(
|
|
|
558
643
|
className
|
|
559
644
|
}, other), {
|
|
560
645
|
children: [
|
|
561
|
-
duotone && /* @__PURE__ */
|
|
646
|
+
duotone && /* @__PURE__ */ jsx8(
|
|
562
647
|
"path",
|
|
563
648
|
{
|
|
564
649
|
opacity: "0.12",
|
|
@@ -566,7 +651,7 @@ var AlertCircleIcon = forwardRef5(
|
|
|
566
651
|
fill: "currentColor"
|
|
567
652
|
}
|
|
568
653
|
),
|
|
569
|
-
/* @__PURE__ */
|
|
654
|
+
/* @__PURE__ */ jsx8(
|
|
570
655
|
"path",
|
|
571
656
|
{
|
|
572
657
|
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",
|
|
@@ -583,12 +668,12 @@ var AlertCircleIcon = forwardRef5(
|
|
|
583
668
|
);
|
|
584
669
|
|
|
585
670
|
// src/icons/arrowCircleUp.tsx
|
|
586
|
-
import { forwardRef as
|
|
587
|
-
import { jsx as
|
|
588
|
-
var ArrowCircleUpIcon =
|
|
671
|
+
import { forwardRef as forwardRef7 } from "react";
|
|
672
|
+
import { jsx as jsx9, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
673
|
+
var ArrowCircleUpIcon = forwardRef7(
|
|
589
674
|
function ArrowCircleUpIcon2(_a, ref) {
|
|
590
675
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
591
|
-
return /* @__PURE__ */
|
|
676
|
+
return /* @__PURE__ */ jsxs5(
|
|
592
677
|
"svg",
|
|
593
678
|
__spreadProps(__spreadValues({
|
|
594
679
|
ref,
|
|
@@ -600,7 +685,7 @@ var ArrowCircleUpIcon = forwardRef6(
|
|
|
600
685
|
className
|
|
601
686
|
}, other), {
|
|
602
687
|
children: [
|
|
603
|
-
duotone && /* @__PURE__ */
|
|
688
|
+
duotone && /* @__PURE__ */ jsx9(
|
|
604
689
|
"path",
|
|
605
690
|
{
|
|
606
691
|
opacity: "0.12",
|
|
@@ -608,7 +693,7 @@ var ArrowCircleUpIcon = forwardRef6(
|
|
|
608
693
|
fill: "currentColor"
|
|
609
694
|
}
|
|
610
695
|
),
|
|
611
|
-
/* @__PURE__ */
|
|
696
|
+
/* @__PURE__ */ jsx9(
|
|
612
697
|
"path",
|
|
613
698
|
{
|
|
614
699
|
d: "M16 12L12 8M12 8L8 12M12 8V16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -625,12 +710,12 @@ var ArrowCircleUpIcon = forwardRef6(
|
|
|
625
710
|
);
|
|
626
711
|
|
|
627
712
|
// src/icons/arrowDown.tsx
|
|
628
|
-
import { forwardRef as
|
|
629
|
-
import { jsx as
|
|
630
|
-
var ArrowDownIcon =
|
|
713
|
+
import { forwardRef as forwardRef8 } from "react";
|
|
714
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
715
|
+
var ArrowDownIcon = forwardRef8(
|
|
631
716
|
function ArrowDownIcon2(_a, ref) {
|
|
632
717
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
633
|
-
return /* @__PURE__ */
|
|
718
|
+
return /* @__PURE__ */ jsx10(
|
|
634
719
|
"svg",
|
|
635
720
|
__spreadProps(__spreadValues({
|
|
636
721
|
ref,
|
|
@@ -641,7 +726,7 @@ var ArrowDownIcon = forwardRef7(
|
|
|
641
726
|
xmlns: "http://www.w3.org/2000/svg",
|
|
642
727
|
className
|
|
643
728
|
}, other), {
|
|
644
|
-
children: /* @__PURE__ */
|
|
729
|
+
children: /* @__PURE__ */ jsx10(
|
|
645
730
|
"path",
|
|
646
731
|
{
|
|
647
732
|
d: "M12 5V19M12 19L19 12M12 19L5 12",
|
|
@@ -657,12 +742,12 @@ var ArrowDownIcon = forwardRef7(
|
|
|
657
742
|
);
|
|
658
743
|
|
|
659
744
|
// src/icons/arrowLeft.tsx
|
|
660
|
-
import { forwardRef as
|
|
661
|
-
import { jsx as
|
|
662
|
-
var ArrowLeftIcon =
|
|
745
|
+
import { forwardRef as forwardRef9 } from "react";
|
|
746
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
747
|
+
var ArrowLeftIcon = forwardRef9(
|
|
663
748
|
function ArrowLeftIcon2(_a, ref) {
|
|
664
749
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
665
|
-
return /* @__PURE__ */
|
|
750
|
+
return /* @__PURE__ */ jsx11(
|
|
666
751
|
"svg",
|
|
667
752
|
__spreadProps(__spreadValues({
|
|
668
753
|
ref,
|
|
@@ -673,7 +758,7 @@ var ArrowLeftIcon = forwardRef8(
|
|
|
673
758
|
xmlns: "http://www.w3.org/2000/svg",
|
|
674
759
|
className
|
|
675
760
|
}, other), {
|
|
676
|
-
children: /* @__PURE__ */
|
|
761
|
+
children: /* @__PURE__ */ jsx11(
|
|
677
762
|
"path",
|
|
678
763
|
{
|
|
679
764
|
d: "M19 12H5M5 12L12 19M5 12L12 5",
|
|
@@ -689,12 +774,12 @@ var ArrowLeftIcon = forwardRef8(
|
|
|
689
774
|
);
|
|
690
775
|
|
|
691
776
|
// src/icons/arrowRight.tsx
|
|
692
|
-
import { forwardRef as
|
|
693
|
-
import { jsx as
|
|
694
|
-
var ArrowRightIcon =
|
|
777
|
+
import { forwardRef as forwardRef10 } from "react";
|
|
778
|
+
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
779
|
+
var ArrowRightIcon = forwardRef10(
|
|
695
780
|
function ArrowRightIcon2(_a, ref) {
|
|
696
781
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
697
|
-
return /* @__PURE__ */
|
|
782
|
+
return /* @__PURE__ */ jsx12(
|
|
698
783
|
"svg",
|
|
699
784
|
__spreadProps(__spreadValues({
|
|
700
785
|
ref,
|
|
@@ -705,7 +790,7 @@ var ArrowRightIcon = forwardRef9(
|
|
|
705
790
|
xmlns: "http://www.w3.org/2000/svg",
|
|
706
791
|
className
|
|
707
792
|
}, other), {
|
|
708
|
-
children: /* @__PURE__ */
|
|
793
|
+
children: /* @__PURE__ */ jsx12(
|
|
709
794
|
"path",
|
|
710
795
|
{
|
|
711
796
|
d: "M5 12H19M19 12L12 5M19 12L12 19",
|
|
@@ -721,12 +806,12 @@ var ArrowRightIcon = forwardRef9(
|
|
|
721
806
|
);
|
|
722
807
|
|
|
723
808
|
// src/icons/arrowUp.tsx
|
|
724
|
-
import { forwardRef as
|
|
725
|
-
import { jsx as
|
|
726
|
-
var ArrowUpIcon =
|
|
809
|
+
import { forwardRef as forwardRef11 } from "react";
|
|
810
|
+
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
811
|
+
var ArrowUpIcon = forwardRef11(
|
|
727
812
|
function ArrowUpIcon2(_a, ref) {
|
|
728
813
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
729
|
-
return /* @__PURE__ */
|
|
814
|
+
return /* @__PURE__ */ jsx13(
|
|
730
815
|
"svg",
|
|
731
816
|
__spreadProps(__spreadValues({
|
|
732
817
|
ref,
|
|
@@ -737,7 +822,7 @@ var ArrowUpIcon = forwardRef10(
|
|
|
737
822
|
xmlns: "http://www.w3.org/2000/svg",
|
|
738
823
|
className
|
|
739
824
|
}, other), {
|
|
740
|
-
children: /* @__PURE__ */
|
|
825
|
+
children: /* @__PURE__ */ jsx13(
|
|
741
826
|
"path",
|
|
742
827
|
{
|
|
743
828
|
d: "M12 19V5M12 5L5 12M12 5L19 12",
|
|
@@ -753,12 +838,12 @@ var ArrowUpIcon = forwardRef10(
|
|
|
753
838
|
);
|
|
754
839
|
|
|
755
840
|
// src/icons/attachment.tsx
|
|
756
|
-
import { forwardRef as
|
|
757
|
-
import { jsx as
|
|
758
|
-
var AttachmentIcon =
|
|
841
|
+
import { forwardRef as forwardRef12 } from "react";
|
|
842
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
843
|
+
var AttachmentIcon = forwardRef12(
|
|
759
844
|
function AttachmentIcon2(_a, ref) {
|
|
760
845
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
761
|
-
return /* @__PURE__ */
|
|
846
|
+
return /* @__PURE__ */ jsx14(
|
|
762
847
|
"svg",
|
|
763
848
|
__spreadProps(__spreadValues({
|
|
764
849
|
ref,
|
|
@@ -769,7 +854,7 @@ var AttachmentIcon = forwardRef11(
|
|
|
769
854
|
xmlns: "http://www.w3.org/2000/svg",
|
|
770
855
|
className
|
|
771
856
|
}, other), {
|
|
772
|
-
children: /* @__PURE__ */
|
|
857
|
+
children: /* @__PURE__ */ jsx14(
|
|
773
858
|
"path",
|
|
774
859
|
{
|
|
775
860
|
d: "M17.5 5.25581V16.5C17.5 19.5376 15.0376 22 12 22C8.96243 22 6.5 19.5376 6.5 16.5V5.66667C6.5 3.64162 8.14162 2 10.1667 2C12.1917 2 13.8333 3.64162 13.8333 5.66667V16.4457C13.8333 17.4583 13.0125 18.2791 12 18.2791C10.9875 18.2791 10.1667 17.4583 10.1667 16.4457V6.65116",
|
|
@@ -785,11 +870,11 @@ var AttachmentIcon = forwardRef11(
|
|
|
785
870
|
);
|
|
786
871
|
|
|
787
872
|
// src/icons/bell.tsx
|
|
788
|
-
import { forwardRef as
|
|
789
|
-
import { jsx as
|
|
790
|
-
var BellIcon =
|
|
873
|
+
import { forwardRef as forwardRef13 } from "react";
|
|
874
|
+
import { jsx as jsx15, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
875
|
+
var BellIcon = forwardRef13(function BellIcon2(_a, ref) {
|
|
791
876
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
792
|
-
return /* @__PURE__ */
|
|
877
|
+
return /* @__PURE__ */ jsxs6(
|
|
793
878
|
"svg",
|
|
794
879
|
__spreadProps(__spreadValues({
|
|
795
880
|
ref,
|
|
@@ -801,7 +886,7 @@ var BellIcon = forwardRef12(function BellIcon2(_a, ref) {
|
|
|
801
886
|
className
|
|
802
887
|
}, other), {
|
|
803
888
|
children: [
|
|
804
|
-
duotone && /* @__PURE__ */
|
|
889
|
+
duotone && /* @__PURE__ */ jsx15(
|
|
805
890
|
"path",
|
|
806
891
|
{
|
|
807
892
|
opacity: "0.12",
|
|
@@ -809,7 +894,7 @@ var BellIcon = forwardRef12(function BellIcon2(_a, ref) {
|
|
|
809
894
|
fill: "currentColor"
|
|
810
895
|
}
|
|
811
896
|
),
|
|
812
|
-
/* @__PURE__ */
|
|
897
|
+
/* @__PURE__ */ jsx15(
|
|
813
898
|
"path",
|
|
814
899
|
{
|
|
815
900
|
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",
|
|
@@ -825,12 +910,12 @@ var BellIcon = forwardRef12(function BellIcon2(_a, ref) {
|
|
|
825
910
|
});
|
|
826
911
|
|
|
827
912
|
// src/icons/calendar.tsx
|
|
828
|
-
import { forwardRef as
|
|
829
|
-
import { jsx as
|
|
830
|
-
var CalendarIcon =
|
|
913
|
+
import { forwardRef as forwardRef14 } from "react";
|
|
914
|
+
import { jsx as jsx16, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
915
|
+
var CalendarIcon = forwardRef14(
|
|
831
916
|
function CalendarIcon2(_a, ref) {
|
|
832
917
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
833
|
-
return /* @__PURE__ */
|
|
918
|
+
return /* @__PURE__ */ jsxs7(
|
|
834
919
|
"svg",
|
|
835
920
|
__spreadProps(__spreadValues({
|
|
836
921
|
ref,
|
|
@@ -842,7 +927,7 @@ var CalendarIcon = forwardRef13(
|
|
|
842
927
|
className
|
|
843
928
|
}, other), {
|
|
844
929
|
children: [
|
|
845
|
-
duotone && /* @__PURE__ */
|
|
930
|
+
duotone && /* @__PURE__ */ jsx16(
|
|
846
931
|
"path",
|
|
847
932
|
{
|
|
848
933
|
opacity: "0.12",
|
|
@@ -850,7 +935,7 @@ var CalendarIcon = forwardRef13(
|
|
|
850
935
|
fill: "currentColor"
|
|
851
936
|
}
|
|
852
937
|
),
|
|
853
|
-
/* @__PURE__ */
|
|
938
|
+
/* @__PURE__ */ jsx16(
|
|
854
939
|
"path",
|
|
855
940
|
{
|
|
856
941
|
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",
|
|
@@ -867,12 +952,12 @@ var CalendarIcon = forwardRef13(
|
|
|
867
952
|
);
|
|
868
953
|
|
|
869
954
|
// src/icons/calendarCheck.tsx
|
|
870
|
-
import { forwardRef as
|
|
871
|
-
import { jsx as
|
|
872
|
-
var CalendarCheckIcon =
|
|
955
|
+
import { forwardRef as forwardRef15 } from "react";
|
|
956
|
+
import { jsx as jsx17, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
957
|
+
var CalendarCheckIcon = forwardRef15(
|
|
873
958
|
function CalendarCheckIcon2(_a, ref) {
|
|
874
959
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
875
|
-
return /* @__PURE__ */
|
|
960
|
+
return /* @__PURE__ */ jsxs8(
|
|
876
961
|
"svg",
|
|
877
962
|
__spreadProps(__spreadValues({
|
|
878
963
|
ref,
|
|
@@ -884,7 +969,7 @@ var CalendarCheckIcon = forwardRef14(
|
|
|
884
969
|
className
|
|
885
970
|
}, other), {
|
|
886
971
|
children: [
|
|
887
|
-
duotone && /* @__PURE__ */
|
|
972
|
+
duotone && /* @__PURE__ */ jsx17(
|
|
888
973
|
"path",
|
|
889
974
|
{
|
|
890
975
|
opacity: "0.12",
|
|
@@ -892,7 +977,7 @@ var CalendarCheckIcon = forwardRef14(
|
|
|
892
977
|
fill: "currentColor"
|
|
893
978
|
}
|
|
894
979
|
),
|
|
895
|
-
/* @__PURE__ */
|
|
980
|
+
/* @__PURE__ */ jsx17(
|
|
896
981
|
"path",
|
|
897
982
|
{
|
|
898
983
|
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",
|
|
@@ -909,12 +994,12 @@ var CalendarCheckIcon = forwardRef14(
|
|
|
909
994
|
);
|
|
910
995
|
|
|
911
996
|
// src/icons/calendarPlus.tsx
|
|
912
|
-
import { forwardRef as
|
|
913
|
-
import { jsx as
|
|
914
|
-
var CalendarPlusIcon =
|
|
997
|
+
import { forwardRef as forwardRef16 } from "react";
|
|
998
|
+
import { jsx as jsx18, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
999
|
+
var CalendarPlusIcon = forwardRef16(
|
|
915
1000
|
function CalendarPlusIcon2(_a, ref) {
|
|
916
1001
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
917
|
-
return /* @__PURE__ */
|
|
1002
|
+
return /* @__PURE__ */ jsxs9(
|
|
918
1003
|
"svg",
|
|
919
1004
|
__spreadProps(__spreadValues({
|
|
920
1005
|
ref,
|
|
@@ -926,7 +1011,7 @@ var CalendarPlusIcon = forwardRef15(
|
|
|
926
1011
|
className
|
|
927
1012
|
}, other), {
|
|
928
1013
|
children: [
|
|
929
|
-
duotone && /* @__PURE__ */
|
|
1014
|
+
duotone && /* @__PURE__ */ jsx18(
|
|
930
1015
|
"path",
|
|
931
1016
|
{
|
|
932
1017
|
opacity: "0.12",
|
|
@@ -934,7 +1019,7 @@ var CalendarPlusIcon = forwardRef15(
|
|
|
934
1019
|
fill: "currentColor"
|
|
935
1020
|
}
|
|
936
1021
|
),
|
|
937
|
-
/* @__PURE__ */
|
|
1022
|
+
/* @__PURE__ */ jsx18(
|
|
938
1023
|
"path",
|
|
939
1024
|
{
|
|
940
1025
|
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",
|
|
@@ -951,12 +1036,12 @@ var CalendarPlusIcon = forwardRef15(
|
|
|
951
1036
|
);
|
|
952
1037
|
|
|
953
1038
|
// src/icons/camera.tsx
|
|
954
|
-
import { forwardRef as
|
|
955
|
-
import { jsx as
|
|
956
|
-
var CameraIcon =
|
|
1039
|
+
import { forwardRef as forwardRef17 } from "react";
|
|
1040
|
+
import { jsx as jsx19, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1041
|
+
var CameraIcon = forwardRef17(
|
|
957
1042
|
function CameraIcon2(_a, ref) {
|
|
958
1043
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
959
|
-
return /* @__PURE__ */
|
|
1044
|
+
return /* @__PURE__ */ jsxs10(
|
|
960
1045
|
"svg",
|
|
961
1046
|
__spreadProps(__spreadValues({
|
|
962
1047
|
ref,
|
|
@@ -968,7 +1053,7 @@ var CameraIcon = forwardRef16(
|
|
|
968
1053
|
className
|
|
969
1054
|
}, other), {
|
|
970
1055
|
children: [
|
|
971
|
-
duotone && /* @__PURE__ */
|
|
1056
|
+
duotone && /* @__PURE__ */ jsx19(
|
|
972
1057
|
"path",
|
|
973
1058
|
{
|
|
974
1059
|
opacity: "0.12",
|
|
@@ -976,7 +1061,7 @@ var CameraIcon = forwardRef16(
|
|
|
976
1061
|
fill: "currentColor"
|
|
977
1062
|
}
|
|
978
1063
|
),
|
|
979
|
-
/* @__PURE__ */
|
|
1064
|
+
/* @__PURE__ */ jsx19(
|
|
980
1065
|
"path",
|
|
981
1066
|
{
|
|
982
1067
|
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",
|
|
@@ -987,7 +1072,7 @@ var CameraIcon = forwardRef16(
|
|
|
987
1072
|
}
|
|
988
1073
|
),
|
|
989
1074
|
",",
|
|
990
|
-
/* @__PURE__ */
|
|
1075
|
+
/* @__PURE__ */ jsx19(
|
|
991
1076
|
"path",
|
|
992
1077
|
{
|
|
993
1078
|
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",
|
|
@@ -1004,12 +1089,12 @@ var CameraIcon = forwardRef16(
|
|
|
1004
1089
|
);
|
|
1005
1090
|
|
|
1006
1091
|
// src/icons/cameraOff.tsx
|
|
1007
|
-
import { forwardRef as
|
|
1008
|
-
import { jsx as
|
|
1009
|
-
var CameraOffIcon =
|
|
1092
|
+
import { forwardRef as forwardRef18 } from "react";
|
|
1093
|
+
import { jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1094
|
+
var CameraOffIcon = forwardRef18(
|
|
1010
1095
|
function CameraOffIcon2(_a, ref) {
|
|
1011
1096
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1012
|
-
return /* @__PURE__ */
|
|
1097
|
+
return /* @__PURE__ */ jsxs11(
|
|
1013
1098
|
"svg",
|
|
1014
1099
|
__spreadProps(__spreadValues({
|
|
1015
1100
|
ref,
|
|
@@ -1021,7 +1106,7 @@ var CameraOffIcon = forwardRef17(
|
|
|
1021
1106
|
className
|
|
1022
1107
|
}, other), {
|
|
1023
1108
|
children: [
|
|
1024
|
-
duotone && /* @__PURE__ */
|
|
1109
|
+
duotone && /* @__PURE__ */ jsx20(
|
|
1025
1110
|
"path",
|
|
1026
1111
|
{
|
|
1027
1112
|
opacity: "0.12",
|
|
@@ -1029,7 +1114,7 @@ var CameraOffIcon = forwardRef17(
|
|
|
1029
1114
|
fill: "currentColor"
|
|
1030
1115
|
}
|
|
1031
1116
|
),
|
|
1032
|
-
/* @__PURE__ */
|
|
1117
|
+
/* @__PURE__ */ jsx20(
|
|
1033
1118
|
"path",
|
|
1034
1119
|
{
|
|
1035
1120
|
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",
|
|
@@ -1046,12 +1131,12 @@ var CameraOffIcon = forwardRef17(
|
|
|
1046
1131
|
);
|
|
1047
1132
|
|
|
1048
1133
|
// src/icons/check.tsx
|
|
1049
|
-
import { forwardRef as
|
|
1050
|
-
import { jsx as
|
|
1051
|
-
var CheckIcon =
|
|
1134
|
+
import { forwardRef as forwardRef19 } from "react";
|
|
1135
|
+
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
1136
|
+
var CheckIcon = forwardRef19(
|
|
1052
1137
|
function CheckIcon2(_a, ref) {
|
|
1053
1138
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1054
|
-
return /* @__PURE__ */
|
|
1139
|
+
return /* @__PURE__ */ jsx21(
|
|
1055
1140
|
"svg",
|
|
1056
1141
|
__spreadProps(__spreadValues({
|
|
1057
1142
|
ref,
|
|
@@ -1062,7 +1147,7 @@ var CheckIcon = forwardRef18(
|
|
|
1062
1147
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1063
1148
|
className
|
|
1064
1149
|
}, other), {
|
|
1065
|
-
children: /* @__PURE__ */
|
|
1150
|
+
children: /* @__PURE__ */ jsx21(
|
|
1066
1151
|
"path",
|
|
1067
1152
|
{
|
|
1068
1153
|
d: "M20 6L9 17L4 12",
|
|
@@ -1078,12 +1163,12 @@ var CheckIcon = forwardRef18(
|
|
|
1078
1163
|
);
|
|
1079
1164
|
|
|
1080
1165
|
// src/icons/checkCircle.tsx
|
|
1081
|
-
import { forwardRef as
|
|
1082
|
-
import { jsx as
|
|
1083
|
-
var CheckCircleIcon =
|
|
1166
|
+
import { forwardRef as forwardRef20 } from "react";
|
|
1167
|
+
import { jsx as jsx22, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1168
|
+
var CheckCircleIcon = forwardRef20(
|
|
1084
1169
|
function CheckCircleIcon2(_a, ref) {
|
|
1085
1170
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1086
|
-
return /* @__PURE__ */
|
|
1171
|
+
return /* @__PURE__ */ jsxs12(
|
|
1087
1172
|
"svg",
|
|
1088
1173
|
__spreadProps(__spreadValues({
|
|
1089
1174
|
ref,
|
|
@@ -1095,7 +1180,7 @@ var CheckCircleIcon = forwardRef19(
|
|
|
1095
1180
|
className
|
|
1096
1181
|
}, other), {
|
|
1097
1182
|
children: [
|
|
1098
|
-
duotone && /* @__PURE__ */
|
|
1183
|
+
duotone && /* @__PURE__ */ jsx22(
|
|
1099
1184
|
"path",
|
|
1100
1185
|
{
|
|
1101
1186
|
opacity: "0.12",
|
|
@@ -1103,7 +1188,7 @@ var CheckCircleIcon = forwardRef19(
|
|
|
1103
1188
|
fill: "currentColor"
|
|
1104
1189
|
}
|
|
1105
1190
|
),
|
|
1106
|
-
/* @__PURE__ */
|
|
1191
|
+
/* @__PURE__ */ jsx22(
|
|
1107
1192
|
"path",
|
|
1108
1193
|
{
|
|
1109
1194
|
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",
|
|
@@ -1120,12 +1205,12 @@ var CheckCircleIcon = forwardRef19(
|
|
|
1120
1205
|
);
|
|
1121
1206
|
|
|
1122
1207
|
// src/icons/chevronLeft.tsx
|
|
1123
|
-
import { forwardRef as
|
|
1124
|
-
import { jsx as
|
|
1125
|
-
var ChevronLeftIcon =
|
|
1208
|
+
import { forwardRef as forwardRef21 } from "react";
|
|
1209
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
1210
|
+
var ChevronLeftIcon = forwardRef21(
|
|
1126
1211
|
function ChevronLeftIcon2(_a, ref) {
|
|
1127
1212
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1128
|
-
return /* @__PURE__ */
|
|
1213
|
+
return /* @__PURE__ */ jsx23(
|
|
1129
1214
|
"svg",
|
|
1130
1215
|
__spreadProps(__spreadValues({
|
|
1131
1216
|
ref,
|
|
@@ -1136,7 +1221,7 @@ var ChevronLeftIcon = forwardRef20(
|
|
|
1136
1221
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1137
1222
|
className
|
|
1138
1223
|
}, other), {
|
|
1139
|
-
children: /* @__PURE__ */
|
|
1224
|
+
children: /* @__PURE__ */ jsx23(
|
|
1140
1225
|
"path",
|
|
1141
1226
|
{
|
|
1142
1227
|
d: "M15 18L9 12L15 6",
|
|
@@ -1151,13 +1236,55 @@ var ChevronLeftIcon = forwardRef20(
|
|
|
1151
1236
|
}
|
|
1152
1237
|
);
|
|
1153
1238
|
|
|
1239
|
+
// src/icons/chevronLeftDouble.tsx
|
|
1240
|
+
import { forwardRef as forwardRef22 } from "react";
|
|
1241
|
+
import { jsx as jsx24, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1242
|
+
var ChevronLeftDoubleIcon = forwardRef22(
|
|
1243
|
+
function ChevronLeftDoubleIcon2(_a, ref) {
|
|
1244
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1245
|
+
return /* @__PURE__ */ jsxs13(
|
|
1246
|
+
"svg",
|
|
1247
|
+
__spreadProps(__spreadValues({
|
|
1248
|
+
ref,
|
|
1249
|
+
width: size,
|
|
1250
|
+
height: size,
|
|
1251
|
+
viewBox: "0 0 24 24",
|
|
1252
|
+
fill: "none",
|
|
1253
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1254
|
+
className
|
|
1255
|
+
}, other), {
|
|
1256
|
+
children: [
|
|
1257
|
+
/* @__PURE__ */ jsx24(
|
|
1258
|
+
"path",
|
|
1259
|
+
{
|
|
1260
|
+
fillRule: "evenodd",
|
|
1261
|
+
clipRule: "evenodd",
|
|
1262
|
+
d: "M18.7071 6.29289C19.0976 6.68342 19.0976 7.31658 18.7071 7.70711L14.4142 12L18.7071 16.2929C19.0976 16.6834 19.0976 17.3166 18.7071 17.7071C18.3166 18.0976 17.6834 18.0976 17.2929 17.7071L12.2929 12.7071C11.9024 12.3166 11.9024 11.6834 12.2929 11.2929L17.2929 6.29289C17.6834 5.90237 18.3166 5.90237 18.7071 6.29289Z",
|
|
1263
|
+
fill: "currentColor"
|
|
1264
|
+
}
|
|
1265
|
+
),
|
|
1266
|
+
/* @__PURE__ */ jsx24(
|
|
1267
|
+
"path",
|
|
1268
|
+
{
|
|
1269
|
+
fillRule: "evenodd",
|
|
1270
|
+
clipRule: "evenodd",
|
|
1271
|
+
d: "M11.7071 6.29289C12.0976 6.68342 12.0976 7.31658 11.7071 7.70711L7.41421 12L11.7071 16.2929C12.0976 16.6834 12.0976 17.3166 11.7071 17.7071C11.3166 18.0976 10.6834 18.0976 10.2929 17.7071L5.29289 12.7071C4.90237 12.3166 4.90237 11.6834 5.29289 11.2929L10.2929 6.29289C10.6834 5.90237 11.3166 5.90237 11.7071 6.29289Z",
|
|
1272
|
+
fill: "currentColor"
|
|
1273
|
+
}
|
|
1274
|
+
)
|
|
1275
|
+
]
|
|
1276
|
+
})
|
|
1277
|
+
);
|
|
1278
|
+
}
|
|
1279
|
+
);
|
|
1280
|
+
|
|
1154
1281
|
// src/icons/chevronRight.tsx
|
|
1155
|
-
import { forwardRef as
|
|
1156
|
-
import { jsx as
|
|
1157
|
-
var ChevronRightIcon =
|
|
1282
|
+
import { forwardRef as forwardRef23 } from "react";
|
|
1283
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
1284
|
+
var ChevronRightIcon = forwardRef23(
|
|
1158
1285
|
function ChevronRightIcon2(_a, ref) {
|
|
1159
1286
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1160
|
-
return /* @__PURE__ */
|
|
1287
|
+
return /* @__PURE__ */ jsx25(
|
|
1161
1288
|
"svg",
|
|
1162
1289
|
__spreadProps(__spreadValues({
|
|
1163
1290
|
ref,
|
|
@@ -1168,7 +1295,7 @@ var ChevronRightIcon = forwardRef21(
|
|
|
1168
1295
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1169
1296
|
className
|
|
1170
1297
|
}, other), {
|
|
1171
|
-
children: /* @__PURE__ */
|
|
1298
|
+
children: /* @__PURE__ */ jsx25(
|
|
1172
1299
|
"path",
|
|
1173
1300
|
{
|
|
1174
1301
|
d: "M9 18L15 12L9 6",
|
|
@@ -1183,13 +1310,55 @@ var ChevronRightIcon = forwardRef21(
|
|
|
1183
1310
|
}
|
|
1184
1311
|
);
|
|
1185
1312
|
|
|
1313
|
+
// src/icons/chevronRightDouble.tsx
|
|
1314
|
+
import { forwardRef as forwardRef24 } from "react";
|
|
1315
|
+
import { jsx as jsx26, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1316
|
+
var ChevronRightDoubleIcon = forwardRef24(
|
|
1317
|
+
function ChevronRightDoubleIcon2(_a, ref) {
|
|
1318
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1319
|
+
return /* @__PURE__ */ jsxs14(
|
|
1320
|
+
"svg",
|
|
1321
|
+
__spreadProps(__spreadValues({
|
|
1322
|
+
ref,
|
|
1323
|
+
width: size,
|
|
1324
|
+
height: size,
|
|
1325
|
+
viewBox: "0 0 24 24",
|
|
1326
|
+
fill: "none",
|
|
1327
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1328
|
+
className
|
|
1329
|
+
}, other), {
|
|
1330
|
+
children: [
|
|
1331
|
+
/* @__PURE__ */ jsx26(
|
|
1332
|
+
"path",
|
|
1333
|
+
{
|
|
1334
|
+
fillRule: "evenodd",
|
|
1335
|
+
clipRule: "evenodd",
|
|
1336
|
+
d: "M5.29289 6.29289C5.68342 5.90237 6.31658 5.90237 6.70711 6.29289L11.7071 11.2929C12.0976 11.6834 12.0976 12.3166 11.7071 12.7071L6.70711 17.7071C6.31658 18.0976 5.68342 18.0976 5.29289 17.7071C4.90237 17.3166 4.90237 16.6834 5.29289 16.2929L9.58579 12L5.29289 7.70711C4.90237 7.31658 4.90237 6.68342 5.29289 6.29289Z",
|
|
1337
|
+
fill: "currentColor"
|
|
1338
|
+
}
|
|
1339
|
+
),
|
|
1340
|
+
/* @__PURE__ */ jsx26(
|
|
1341
|
+
"path",
|
|
1342
|
+
{
|
|
1343
|
+
fillRule: "evenodd",
|
|
1344
|
+
clipRule: "evenodd",
|
|
1345
|
+
d: "M12.2929 6.29289C12.6834 5.90237 13.3166 5.90237 13.7071 6.29289L18.7071 11.2929C19.0976 11.6834 19.0976 12.3166 18.7071 12.7071L13.7071 17.7071C13.3166 18.0976 12.6834 18.0976 12.2929 17.7071C11.9024 17.3166 11.9024 16.6834 12.2929 16.2929L16.5858 12L12.2929 7.70711C11.9024 7.31658 11.9024 6.68342 12.2929 6.29289Z",
|
|
1346
|
+
fill: "currentColor"
|
|
1347
|
+
}
|
|
1348
|
+
)
|
|
1349
|
+
]
|
|
1350
|
+
})
|
|
1351
|
+
);
|
|
1352
|
+
}
|
|
1353
|
+
);
|
|
1354
|
+
|
|
1186
1355
|
// src/icons/chevronSelectorVertical.tsx
|
|
1187
|
-
import { forwardRef as
|
|
1188
|
-
import { jsx as
|
|
1189
|
-
var ChevronSelectorVerticalIcon =
|
|
1356
|
+
import { forwardRef as forwardRef25 } from "react";
|
|
1357
|
+
import { jsx as jsx27 } from "react/jsx-runtime";
|
|
1358
|
+
var ChevronSelectorVerticalIcon = forwardRef25(
|
|
1190
1359
|
function ChevronSelectorVerticalIcon2(_a, ref) {
|
|
1191
1360
|
var _b = _a, { size = 24, className = "text-gray-1000" } = _b, other = __objRest(_b, ["size", "className"]);
|
|
1192
|
-
return /* @__PURE__ */
|
|
1361
|
+
return /* @__PURE__ */ jsx27(
|
|
1193
1362
|
"svg",
|
|
1194
1363
|
__spreadProps(__spreadValues({
|
|
1195
1364
|
ref,
|
|
@@ -1200,7 +1369,7 @@ var ChevronSelectorVerticalIcon = forwardRef22(
|
|
|
1200
1369
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1201
1370
|
className
|
|
1202
1371
|
}, other), {
|
|
1203
|
-
children: /* @__PURE__ */
|
|
1372
|
+
children: /* @__PURE__ */ jsx27(
|
|
1204
1373
|
"path",
|
|
1205
1374
|
{
|
|
1206
1375
|
d: "M7 15L12 20L17 15M7 9L12 4L17 9",
|
|
@@ -1216,12 +1385,12 @@ var ChevronSelectorVerticalIcon = forwardRef22(
|
|
|
1216
1385
|
);
|
|
1217
1386
|
|
|
1218
1387
|
// src/icons/chevronUp.tsx
|
|
1219
|
-
import { forwardRef as
|
|
1220
|
-
import { jsx as
|
|
1221
|
-
var ChevronUpIcon =
|
|
1388
|
+
import { forwardRef as forwardRef26 } from "react";
|
|
1389
|
+
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
1390
|
+
var ChevronUpIcon = forwardRef26(
|
|
1222
1391
|
function ChevronUpIcon2(_a, ref) {
|
|
1223
1392
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1224
|
-
return /* @__PURE__ */
|
|
1393
|
+
return /* @__PURE__ */ jsx28(
|
|
1225
1394
|
"svg",
|
|
1226
1395
|
__spreadProps(__spreadValues({
|
|
1227
1396
|
ref,
|
|
@@ -1232,7 +1401,7 @@ var ChevronUpIcon = forwardRef23(
|
|
|
1232
1401
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1233
1402
|
className
|
|
1234
1403
|
}, other), {
|
|
1235
|
-
children: /* @__PURE__ */
|
|
1404
|
+
children: /* @__PURE__ */ jsx28(
|
|
1236
1405
|
"path",
|
|
1237
1406
|
{
|
|
1238
1407
|
d: "M18 15L12 9L6 15",
|
|
@@ -1247,12 +1416,44 @@ var ChevronUpIcon = forwardRef23(
|
|
|
1247
1416
|
}
|
|
1248
1417
|
);
|
|
1249
1418
|
|
|
1419
|
+
// src/icons/clock.tsx
|
|
1420
|
+
import { forwardRef as forwardRef27 } from "react";
|
|
1421
|
+
import { jsx as jsx29 } from "react/jsx-runtime";
|
|
1422
|
+
var ClockIcon = forwardRef27(
|
|
1423
|
+
function ClockIcon2(_a, ref) {
|
|
1424
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1425
|
+
return /* @__PURE__ */ jsx29(
|
|
1426
|
+
"svg",
|
|
1427
|
+
__spreadProps(__spreadValues({
|
|
1428
|
+
ref,
|
|
1429
|
+
width: size,
|
|
1430
|
+
height: size,
|
|
1431
|
+
viewBox: "0 0 24 24",
|
|
1432
|
+
fill: "none",
|
|
1433
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1434
|
+
className
|
|
1435
|
+
}, other), {
|
|
1436
|
+
children: /* @__PURE__ */ jsx29(
|
|
1437
|
+
"path",
|
|
1438
|
+
{
|
|
1439
|
+
d: "M12 6V12L16 14M22 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",
|
|
1440
|
+
stroke: "currentColor",
|
|
1441
|
+
strokeWidth: "2",
|
|
1442
|
+
strokeLinecap: "round",
|
|
1443
|
+
strokeLinejoin: "round"
|
|
1444
|
+
}
|
|
1445
|
+
)
|
|
1446
|
+
})
|
|
1447
|
+
);
|
|
1448
|
+
}
|
|
1449
|
+
);
|
|
1450
|
+
|
|
1250
1451
|
// src/icons/copy.tsx
|
|
1251
|
-
import { forwardRef as
|
|
1252
|
-
import { jsx as
|
|
1253
|
-
var CopyIcon =
|
|
1452
|
+
import { forwardRef as forwardRef28 } from "react";
|
|
1453
|
+
import { jsx as jsx30, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1454
|
+
var CopyIcon = forwardRef28(function CopyIcon2(_a, ref) {
|
|
1254
1455
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1255
|
-
return /* @__PURE__ */
|
|
1456
|
+
return /* @__PURE__ */ jsxs15(
|
|
1256
1457
|
"svg",
|
|
1257
1458
|
__spreadProps(__spreadValues({
|
|
1258
1459
|
ref,
|
|
@@ -1264,7 +1465,7 @@ var CopyIcon = forwardRef24(function CopyIcon2(_a, ref) {
|
|
|
1264
1465
|
className
|
|
1265
1466
|
}, other), {
|
|
1266
1467
|
children: [
|
|
1267
|
-
duotone && /* @__PURE__ */
|
|
1468
|
+
duotone && /* @__PURE__ */ jsx30(
|
|
1268
1469
|
"path",
|
|
1269
1470
|
{
|
|
1270
1471
|
opacity: "0.12",
|
|
@@ -1272,7 +1473,7 @@ var CopyIcon = forwardRef24(function CopyIcon2(_a, ref) {
|
|
|
1272
1473
|
fill: "currentColor"
|
|
1273
1474
|
}
|
|
1274
1475
|
),
|
|
1275
|
-
/* @__PURE__ */
|
|
1476
|
+
/* @__PURE__ */ jsx30(
|
|
1276
1477
|
"path",
|
|
1277
1478
|
{
|
|
1278
1479
|
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",
|
|
@@ -1288,12 +1489,12 @@ var CopyIcon = forwardRef24(function CopyIcon2(_a, ref) {
|
|
|
1288
1489
|
});
|
|
1289
1490
|
|
|
1290
1491
|
// src/icons/cursorClick.tsx
|
|
1291
|
-
import { forwardRef as
|
|
1292
|
-
import { jsx as
|
|
1293
|
-
var CursorClickIcon =
|
|
1492
|
+
import { forwardRef as forwardRef29 } from "react";
|
|
1493
|
+
import { jsx as jsx31, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1494
|
+
var CursorClickIcon = forwardRef29(
|
|
1294
1495
|
function CursorClickIcon2(_a, ref) {
|
|
1295
1496
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1296
|
-
return /* @__PURE__ */
|
|
1497
|
+
return /* @__PURE__ */ jsxs16(
|
|
1297
1498
|
"svg",
|
|
1298
1499
|
__spreadProps(__spreadValues({
|
|
1299
1500
|
ref,
|
|
@@ -1305,7 +1506,7 @@ var CursorClickIcon = forwardRef25(
|
|
|
1305
1506
|
className
|
|
1306
1507
|
}, other), {
|
|
1307
1508
|
children: [
|
|
1308
|
-
duotone && /* @__PURE__ */
|
|
1509
|
+
duotone && /* @__PURE__ */ jsx31(
|
|
1309
1510
|
"path",
|
|
1310
1511
|
{
|
|
1311
1512
|
opacity: "0.12",
|
|
@@ -1313,7 +1514,7 @@ var CursorClickIcon = forwardRef25(
|
|
|
1313
1514
|
fill: "currentColor"
|
|
1314
1515
|
}
|
|
1315
1516
|
),
|
|
1316
|
-
/* @__PURE__ */
|
|
1517
|
+
/* @__PURE__ */ jsx31(
|
|
1317
1518
|
"path",
|
|
1318
1519
|
{
|
|
1319
1520
|
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",
|
|
@@ -1330,12 +1531,12 @@ var CursorClickIcon = forwardRef25(
|
|
|
1330
1531
|
);
|
|
1331
1532
|
|
|
1332
1533
|
// src/icons/dotsHorizontal.tsx
|
|
1333
|
-
import { forwardRef as
|
|
1334
|
-
import { jsx as
|
|
1335
|
-
var DotsHorizontalIcon =
|
|
1534
|
+
import { forwardRef as forwardRef30 } from "react";
|
|
1535
|
+
import { jsx as jsx32, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1536
|
+
var DotsHorizontalIcon = forwardRef30(
|
|
1336
1537
|
function DotsHorizontalIcon2(_a, ref) {
|
|
1337
1538
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1338
|
-
return /* @__PURE__ */
|
|
1539
|
+
return /* @__PURE__ */ jsxs17(
|
|
1339
1540
|
"svg",
|
|
1340
1541
|
__spreadProps(__spreadValues({
|
|
1341
1542
|
ref,
|
|
@@ -1347,7 +1548,7 @@ var DotsHorizontalIcon = forwardRef26(
|
|
|
1347
1548
|
className
|
|
1348
1549
|
}, other), {
|
|
1349
1550
|
children: [
|
|
1350
|
-
/* @__PURE__ */
|
|
1551
|
+
/* @__PURE__ */ jsx32(
|
|
1351
1552
|
"path",
|
|
1352
1553
|
{
|
|
1353
1554
|
d: "M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z",
|
|
@@ -1357,7 +1558,7 @@ var DotsHorizontalIcon = forwardRef26(
|
|
|
1357
1558
|
strokeLinejoin: "round"
|
|
1358
1559
|
}
|
|
1359
1560
|
),
|
|
1360
|
-
/* @__PURE__ */
|
|
1561
|
+
/* @__PURE__ */ jsx32(
|
|
1361
1562
|
"path",
|
|
1362
1563
|
{
|
|
1363
1564
|
d: "M19 13C19.5523 13 20 12.5523 20 12C20 11.4477 19.5523 11 19 11C18.4477 11 18 11.4477 18 12C18 12.5523 18.4477 13 19 13Z",
|
|
@@ -1367,7 +1568,7 @@ var DotsHorizontalIcon = forwardRef26(
|
|
|
1367
1568
|
strokeLinejoin: "round"
|
|
1368
1569
|
}
|
|
1369
1570
|
),
|
|
1370
|
-
/* @__PURE__ */
|
|
1571
|
+
/* @__PURE__ */ jsx32(
|
|
1371
1572
|
"path",
|
|
1372
1573
|
{
|
|
1373
1574
|
d: "M5 13C5.55228 13 6 12.5523 6 12C6 11.4477 5.55228 11 5 11C4.44772 11 4 11.4477 4 12C4 12.5523 4.44772 13 5 13Z",
|
|
@@ -1383,13 +1584,125 @@ var DotsHorizontalIcon = forwardRef26(
|
|
|
1383
1584
|
}
|
|
1384
1585
|
);
|
|
1385
1586
|
|
|
1587
|
+
// src/icons/dotsGrid.tsx
|
|
1588
|
+
import { forwardRef as forwardRef31 } from "react";
|
|
1589
|
+
import { jsx as jsx33, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1590
|
+
var DotsGrid = forwardRef31(function DotsGrid2(_a, ref) {
|
|
1591
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1592
|
+
return /* @__PURE__ */ jsxs18(
|
|
1593
|
+
"svg",
|
|
1594
|
+
__spreadProps(__spreadValues({
|
|
1595
|
+
ref,
|
|
1596
|
+
width: size,
|
|
1597
|
+
height: size,
|
|
1598
|
+
viewBox: "0 0 24 24",
|
|
1599
|
+
fill: "none",
|
|
1600
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1601
|
+
className
|
|
1602
|
+
}, other), {
|
|
1603
|
+
children: [
|
|
1604
|
+
/* @__PURE__ */ jsx33(
|
|
1605
|
+
"path",
|
|
1606
|
+
{
|
|
1607
|
+
d: "M12 6C12.5523 6 13 5.55228 13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5C11 5.55228 11.4477 6 12 6Z",
|
|
1608
|
+
stroke: "currentColor",
|
|
1609
|
+
strokeWidth: "2",
|
|
1610
|
+
strokeLinecap: "round",
|
|
1611
|
+
strokeLinejoin: "round"
|
|
1612
|
+
}
|
|
1613
|
+
),
|
|
1614
|
+
/* @__PURE__ */ jsx33(
|
|
1615
|
+
"path",
|
|
1616
|
+
{
|
|
1617
|
+
d: "M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z",
|
|
1618
|
+
stroke: "currentColor",
|
|
1619
|
+
strokeWidth: "2",
|
|
1620
|
+
strokeLinecap: "round",
|
|
1621
|
+
strokeLinejoin: "round"
|
|
1622
|
+
}
|
|
1623
|
+
),
|
|
1624
|
+
/* @__PURE__ */ jsx33(
|
|
1625
|
+
"path",
|
|
1626
|
+
{
|
|
1627
|
+
d: "M12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20Z",
|
|
1628
|
+
stroke: "currentColor",
|
|
1629
|
+
strokeWidth: "2",
|
|
1630
|
+
strokeLinecap: "round",
|
|
1631
|
+
strokeLinejoin: "round"
|
|
1632
|
+
}
|
|
1633
|
+
),
|
|
1634
|
+
/* @__PURE__ */ jsx33(
|
|
1635
|
+
"path",
|
|
1636
|
+
{
|
|
1637
|
+
d: "M19 6C19.5523 6 20 5.55228 20 5C20 4.44772 19.5523 4 19 4C18.4477 4 18 4.44772 18 5C18 5.55228 18.4477 6 19 6Z",
|
|
1638
|
+
stroke: "currentColor",
|
|
1639
|
+
strokeWidth: "2",
|
|
1640
|
+
strokeLinecap: "round",
|
|
1641
|
+
strokeLinejoin: "round"
|
|
1642
|
+
}
|
|
1643
|
+
),
|
|
1644
|
+
/* @__PURE__ */ jsx33(
|
|
1645
|
+
"path",
|
|
1646
|
+
{
|
|
1647
|
+
d: "M19 13C19.5523 13 20 12.5523 20 12C20 11.4477 19.5523 11 19 11C18.4477 11 18 11.4477 18 12C18 12.5523 18.4477 13 19 13Z",
|
|
1648
|
+
stroke: "currentColor",
|
|
1649
|
+
strokeWidth: "2",
|
|
1650
|
+
strokeLinecap: "round",
|
|
1651
|
+
strokeLinejoin: "round"
|
|
1652
|
+
}
|
|
1653
|
+
),
|
|
1654
|
+
/* @__PURE__ */ jsx33(
|
|
1655
|
+
"path",
|
|
1656
|
+
{
|
|
1657
|
+
d: "M19 20C19.5523 20 20 19.5523 20 19C20 18.4477 19.5523 18 19 18C18.4477 18 18 18.4477 18 19C18 19.5523 18.4477 20 19 20Z",
|
|
1658
|
+
stroke: "currentColor",
|
|
1659
|
+
strokeWidth: "2",
|
|
1660
|
+
strokeLinecap: "round",
|
|
1661
|
+
strokeLinejoin: "round"
|
|
1662
|
+
}
|
|
1663
|
+
),
|
|
1664
|
+
/* @__PURE__ */ jsx33(
|
|
1665
|
+
"path",
|
|
1666
|
+
{
|
|
1667
|
+
d: "M5 6C5.55228 6 6 5.55228 6 5C6 4.44772 5.55228 4 5 4C4.44772 4 4 4.44772 4 5C4 5.55228 4.44772 6 5 6Z",
|
|
1668
|
+
stroke: "currentColor",
|
|
1669
|
+
strokeWidth: "2",
|
|
1670
|
+
strokeLinecap: "round",
|
|
1671
|
+
strokeLinejoin: "round"
|
|
1672
|
+
}
|
|
1673
|
+
),
|
|
1674
|
+
/* @__PURE__ */ jsx33(
|
|
1675
|
+
"path",
|
|
1676
|
+
{
|
|
1677
|
+
d: "M5 13C5.55228 13 6 12.5523 6 12C6 11.4477 5.55228 11 5 11C4.44772 11 4 11.4477 4 12C4 12.5523 4.44772 13 5 13Z",
|
|
1678
|
+
stroke: "currentColor",
|
|
1679
|
+
strokeWidth: "2",
|
|
1680
|
+
strokeLinecap: "round",
|
|
1681
|
+
strokeLinejoin: "round"
|
|
1682
|
+
}
|
|
1683
|
+
),
|
|
1684
|
+
/* @__PURE__ */ jsx33(
|
|
1685
|
+
"path",
|
|
1686
|
+
{
|
|
1687
|
+
d: "M5 20C5.55228 20 6 19.5523 6 19C6 18.4477 5.55228 18 5 18C4.44772 18 4 18.4477 4 19C4 19.5523 4.44772 20 5 20Z",
|
|
1688
|
+
stroke: "currentColor",
|
|
1689
|
+
strokeWidth: "2",
|
|
1690
|
+
strokeLinecap: "round",
|
|
1691
|
+
strokeLinejoin: "round"
|
|
1692
|
+
}
|
|
1693
|
+
)
|
|
1694
|
+
]
|
|
1695
|
+
})
|
|
1696
|
+
);
|
|
1697
|
+
});
|
|
1698
|
+
|
|
1386
1699
|
// src/icons/download.tsx
|
|
1387
|
-
import { forwardRef as
|
|
1388
|
-
import { jsx as
|
|
1389
|
-
var DownloadIcon =
|
|
1700
|
+
import { forwardRef as forwardRef32 } from "react";
|
|
1701
|
+
import { jsx as jsx34, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1702
|
+
var DownloadIcon = forwardRef32(
|
|
1390
1703
|
function DownloadIcon2(_a, ref) {
|
|
1391
1704
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1392
|
-
return /* @__PURE__ */
|
|
1705
|
+
return /* @__PURE__ */ jsxs19(
|
|
1393
1706
|
"svg",
|
|
1394
1707
|
__spreadProps(__spreadValues({
|
|
1395
1708
|
ref,
|
|
@@ -1401,7 +1714,7 @@ var DownloadIcon = forwardRef27(
|
|
|
1401
1714
|
className
|
|
1402
1715
|
}, other), {
|
|
1403
1716
|
children: [
|
|
1404
|
-
duotone && /* @__PURE__ */
|
|
1717
|
+
duotone && /* @__PURE__ */ jsx34(
|
|
1405
1718
|
"path",
|
|
1406
1719
|
{
|
|
1407
1720
|
opacity: "0.12",
|
|
@@ -1409,7 +1722,7 @@ var DownloadIcon = forwardRef27(
|
|
|
1409
1722
|
fill: "currentColor"
|
|
1410
1723
|
}
|
|
1411
1724
|
),
|
|
1412
|
-
/* @__PURE__ */
|
|
1725
|
+
/* @__PURE__ */ jsx34(
|
|
1413
1726
|
"path",
|
|
1414
1727
|
{
|
|
1415
1728
|
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",
|
|
@@ -1426,11 +1739,11 @@ var DownloadIcon = forwardRef27(
|
|
|
1426
1739
|
);
|
|
1427
1740
|
|
|
1428
1741
|
// src/icons/edit.tsx
|
|
1429
|
-
import { forwardRef as
|
|
1430
|
-
import { jsx as
|
|
1431
|
-
var EditIcon =
|
|
1742
|
+
import { forwardRef as forwardRef33 } from "react";
|
|
1743
|
+
import { jsx as jsx35, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1744
|
+
var EditIcon = forwardRef33(function EditIcon2(_a, ref) {
|
|
1432
1745
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1433
|
-
return /* @__PURE__ */
|
|
1746
|
+
return /* @__PURE__ */ jsxs20(
|
|
1434
1747
|
"svg",
|
|
1435
1748
|
__spreadProps(__spreadValues({
|
|
1436
1749
|
ref,
|
|
@@ -1442,7 +1755,7 @@ var EditIcon = forwardRef28(function EditIcon2(_a, ref) {
|
|
|
1442
1755
|
className
|
|
1443
1756
|
}, other), {
|
|
1444
1757
|
children: [
|
|
1445
|
-
duotone && /* @__PURE__ */
|
|
1758
|
+
duotone && /* @__PURE__ */ jsx35(
|
|
1446
1759
|
"path",
|
|
1447
1760
|
{
|
|
1448
1761
|
opacity: "0.12",
|
|
@@ -1450,7 +1763,7 @@ var EditIcon = forwardRef28(function EditIcon2(_a, ref) {
|
|
|
1450
1763
|
fill: "currentColor"
|
|
1451
1764
|
}
|
|
1452
1765
|
),
|
|
1453
|
-
/* @__PURE__ */
|
|
1766
|
+
/* @__PURE__ */ jsx35(
|
|
1454
1767
|
"path",
|
|
1455
1768
|
{
|
|
1456
1769
|
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",
|
|
@@ -1466,12 +1779,12 @@ var EditIcon = forwardRef28(function EditIcon2(_a, ref) {
|
|
|
1466
1779
|
});
|
|
1467
1780
|
|
|
1468
1781
|
// src/icons/expand.tsx
|
|
1469
|
-
import { forwardRef as
|
|
1470
|
-
import { jsx as
|
|
1471
|
-
var ExpandIcon =
|
|
1782
|
+
import { forwardRef as forwardRef34 } from "react";
|
|
1783
|
+
import { jsx as jsx36 } from "react/jsx-runtime";
|
|
1784
|
+
var ExpandIcon = forwardRef34(
|
|
1472
1785
|
function ExpandIcon2(_a, ref) {
|
|
1473
1786
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1474
|
-
return /* @__PURE__ */
|
|
1787
|
+
return /* @__PURE__ */ jsx36(
|
|
1475
1788
|
"svg",
|
|
1476
1789
|
__spreadProps(__spreadValues({
|
|
1477
1790
|
ref,
|
|
@@ -1482,7 +1795,7 @@ var ExpandIcon = forwardRef29(
|
|
|
1482
1795
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1483
1796
|
className
|
|
1484
1797
|
}, other), {
|
|
1485
|
-
children: /* @__PURE__ */
|
|
1798
|
+
children: /* @__PURE__ */ jsx36(
|
|
1486
1799
|
"path",
|
|
1487
1800
|
{
|
|
1488
1801
|
d: "M16 8L21 3M21 3H16M21 3V8M8 8L3 3M3 3L3 8M3 3L8 3M8 16L3 21M3 21H8M3 21L3 16M16 16L21 21M21 21V16M21 21H16",
|
|
@@ -1498,12 +1811,12 @@ var ExpandIcon = forwardRef29(
|
|
|
1498
1811
|
);
|
|
1499
1812
|
|
|
1500
1813
|
// src/icons/fileQuestion.tsx
|
|
1501
|
-
import { forwardRef as
|
|
1502
|
-
import { jsx as
|
|
1503
|
-
var FileQuestionIcon =
|
|
1814
|
+
import { forwardRef as forwardRef35 } from "react";
|
|
1815
|
+
import { jsx as jsx37, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1816
|
+
var FileQuestionIcon = forwardRef35(
|
|
1504
1817
|
function FileQuestionIcon2(_a, ref) {
|
|
1505
1818
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1506
|
-
return /* @__PURE__ */
|
|
1819
|
+
return /* @__PURE__ */ jsxs21(
|
|
1507
1820
|
"svg",
|
|
1508
1821
|
__spreadProps(__spreadValues({
|
|
1509
1822
|
ref,
|
|
@@ -1515,7 +1828,7 @@ var FileQuestionIcon = forwardRef30(
|
|
|
1515
1828
|
className
|
|
1516
1829
|
}, other), {
|
|
1517
1830
|
children: [
|
|
1518
|
-
duotone && /* @__PURE__ */
|
|
1831
|
+
duotone && /* @__PURE__ */ jsx37(
|
|
1519
1832
|
"path",
|
|
1520
1833
|
{
|
|
1521
1834
|
opacity: "0.12",
|
|
@@ -1523,7 +1836,7 @@ var FileQuestionIcon = forwardRef30(
|
|
|
1523
1836
|
fill: "currentColor"
|
|
1524
1837
|
}
|
|
1525
1838
|
),
|
|
1526
|
-
/* @__PURE__ */
|
|
1839
|
+
/* @__PURE__ */ jsx37(
|
|
1527
1840
|
"path",
|
|
1528
1841
|
{
|
|
1529
1842
|
d: "M20 9.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H14M14 11H8M10 15H8M16 7H8M16.5 15.0022C16.6762 14.5014 17.024 14.079 17.4817 13.81C17.9395 13.5409 18.4777 13.4426 19.001 13.5324C19.5243 13.6221 19.999 13.8942 20.3409 14.3004C20.6829 14.7066 20.87 15.2207 20.8692 15.7517C20.8692 17.2506 18.6209 18 18.6209 18M18.6499 21H18.6599",
|
|
@@ -1540,12 +1853,12 @@ var FileQuestionIcon = forwardRef30(
|
|
|
1540
1853
|
);
|
|
1541
1854
|
|
|
1542
1855
|
// src/icons/filterLines.tsx
|
|
1543
|
-
import { forwardRef as
|
|
1544
|
-
import { jsx as
|
|
1545
|
-
var FilterLinesIcon =
|
|
1856
|
+
import { forwardRef as forwardRef36 } from "react";
|
|
1857
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
1858
|
+
var FilterLinesIcon = forwardRef36(
|
|
1546
1859
|
function FilterLinesIcon2(_a, ref) {
|
|
1547
1860
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1548
|
-
return /* @__PURE__ */
|
|
1861
|
+
return /* @__PURE__ */ jsx38(
|
|
1549
1862
|
"svg",
|
|
1550
1863
|
__spreadProps(__spreadValues({
|
|
1551
1864
|
ref,
|
|
@@ -1556,7 +1869,7 @@ var FilterLinesIcon = forwardRef31(
|
|
|
1556
1869
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1557
1870
|
className
|
|
1558
1871
|
}, other), {
|
|
1559
|
-
children: /* @__PURE__ */
|
|
1872
|
+
children: /* @__PURE__ */ jsx38(
|
|
1560
1873
|
"path",
|
|
1561
1874
|
{
|
|
1562
1875
|
d: "M6 12H18M3 6H21M9 18H15",
|
|
@@ -1572,12 +1885,12 @@ var FilterLinesIcon = forwardRef31(
|
|
|
1572
1885
|
);
|
|
1573
1886
|
|
|
1574
1887
|
// src/icons/flipBackward.tsx
|
|
1575
|
-
import { forwardRef as
|
|
1576
|
-
import { jsx as
|
|
1577
|
-
var FlipBackwardIcon =
|
|
1888
|
+
import { forwardRef as forwardRef37 } from "react";
|
|
1889
|
+
import { jsx as jsx39 } from "react/jsx-runtime";
|
|
1890
|
+
var FlipBackwardIcon = forwardRef37(
|
|
1578
1891
|
function FlipBackwardIcon2(_a, ref) {
|
|
1579
1892
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1580
|
-
return /* @__PURE__ */
|
|
1893
|
+
return /* @__PURE__ */ jsx39(
|
|
1581
1894
|
"svg",
|
|
1582
1895
|
__spreadProps(__spreadValues({
|
|
1583
1896
|
ref,
|
|
@@ -1588,7 +1901,7 @@ var FlipBackwardIcon = forwardRef32(
|
|
|
1588
1901
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1589
1902
|
className
|
|
1590
1903
|
}, other), {
|
|
1591
|
-
children: /* @__PURE__ */
|
|
1904
|
+
children: /* @__PURE__ */ jsx39(
|
|
1592
1905
|
"path",
|
|
1593
1906
|
{
|
|
1594
1907
|
d: "M3 9H16.5C18.9853 9 21 11.0147 21 13.5C21 15.9853 18.9853 18 16.5 18H12M3 9L7 5M3 9L7 13",
|
|
@@ -1604,12 +1917,12 @@ var FlipBackwardIcon = forwardRef32(
|
|
|
1604
1917
|
);
|
|
1605
1918
|
|
|
1606
1919
|
// src/icons/flipForward.tsx
|
|
1607
|
-
import { forwardRef as
|
|
1608
|
-
import { jsx as
|
|
1609
|
-
var FlipForwardIcon =
|
|
1920
|
+
import { forwardRef as forwardRef38 } from "react";
|
|
1921
|
+
import { jsx as jsx40 } from "react/jsx-runtime";
|
|
1922
|
+
var FlipForwardIcon = forwardRef38(
|
|
1610
1923
|
function FlipForwardIcon2(_a, ref) {
|
|
1611
1924
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1612
|
-
return /* @__PURE__ */
|
|
1925
|
+
return /* @__PURE__ */ jsx40(
|
|
1613
1926
|
"svg",
|
|
1614
1927
|
__spreadProps(__spreadValues({
|
|
1615
1928
|
ref,
|
|
@@ -1620,7 +1933,7 @@ var FlipForwardIcon = forwardRef33(
|
|
|
1620
1933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1621
1934
|
className
|
|
1622
1935
|
}, other), {
|
|
1623
|
-
children: /* @__PURE__ */
|
|
1936
|
+
children: /* @__PURE__ */ jsx40(
|
|
1624
1937
|
"path",
|
|
1625
1938
|
{
|
|
1626
1939
|
d: "M21 9H7.5C5.01472 9 3 11.0147 3 13.5C3 15.9853 5.01472 18 7.5 18H12M21 9L17 5M21 9L17 13",
|
|
@@ -1636,12 +1949,12 @@ var FlipForwardIcon = forwardRef33(
|
|
|
1636
1949
|
);
|
|
1637
1950
|
|
|
1638
1951
|
// src/icons/helpCircle.tsx
|
|
1639
|
-
import { forwardRef as
|
|
1640
|
-
import { jsx as
|
|
1641
|
-
var HelpCircleIcon =
|
|
1952
|
+
import { forwardRef as forwardRef39 } from "react";
|
|
1953
|
+
import { jsx as jsx41, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1954
|
+
var HelpCircleIcon = forwardRef39(
|
|
1642
1955
|
function HelpCircleIcon2(_a, ref) {
|
|
1643
1956
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1644
|
-
return /* @__PURE__ */
|
|
1957
|
+
return /* @__PURE__ */ jsxs22(
|
|
1645
1958
|
"svg",
|
|
1646
1959
|
__spreadProps(__spreadValues({
|
|
1647
1960
|
ref,
|
|
@@ -1653,7 +1966,7 @@ var HelpCircleIcon = forwardRef34(
|
|
|
1653
1966
|
className
|
|
1654
1967
|
}, other), {
|
|
1655
1968
|
children: [
|
|
1656
|
-
duotone && /* @__PURE__ */
|
|
1969
|
+
duotone && /* @__PURE__ */ jsx41(
|
|
1657
1970
|
"path",
|
|
1658
1971
|
{
|
|
1659
1972
|
opacity: "0.12",
|
|
@@ -1661,7 +1974,7 @@ var HelpCircleIcon = forwardRef34(
|
|
|
1661
1974
|
fill: "currentColor"
|
|
1662
1975
|
}
|
|
1663
1976
|
),
|
|
1664
|
-
/* @__PURE__ */
|
|
1977
|
+
/* @__PURE__ */ jsx41(
|
|
1665
1978
|
"path",
|
|
1666
1979
|
{
|
|
1667
1980
|
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",
|
|
@@ -1678,11 +1991,11 @@ var HelpCircleIcon = forwardRef34(
|
|
|
1678
1991
|
);
|
|
1679
1992
|
|
|
1680
1993
|
// src/icons/home.tsx
|
|
1681
|
-
import { forwardRef as
|
|
1682
|
-
import { jsx as
|
|
1683
|
-
var HomeIcon =
|
|
1994
|
+
import { forwardRef as forwardRef40 } from "react";
|
|
1995
|
+
import { jsx as jsx42, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1996
|
+
var HomeIcon = forwardRef40(function HomeIcon2(_a, ref) {
|
|
1684
1997
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1685
|
-
return /* @__PURE__ */
|
|
1998
|
+
return /* @__PURE__ */ jsxs23(
|
|
1686
1999
|
"svg",
|
|
1687
2000
|
__spreadProps(__spreadValues({
|
|
1688
2001
|
ref,
|
|
@@ -1694,8 +2007,8 @@ var HomeIcon = forwardRef35(function HomeIcon2(_a, ref) {
|
|
|
1694
2007
|
className
|
|
1695
2008
|
}, other), {
|
|
1696
2009
|
children: [
|
|
1697
|
-
duotone && /* @__PURE__ */
|
|
1698
|
-
/* @__PURE__ */
|
|
2010
|
+
duotone && /* @__PURE__ */ jsx42("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
|
|
2011
|
+
/* @__PURE__ */ jsx42(
|
|
1699
2012
|
"path",
|
|
1700
2013
|
{
|
|
1701
2014
|
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",
|
|
@@ -1711,12 +2024,12 @@ var HomeIcon = forwardRef35(function HomeIcon2(_a, ref) {
|
|
|
1711
2024
|
});
|
|
1712
2025
|
|
|
1713
2026
|
// src/icons/image.tsx
|
|
1714
|
-
import { forwardRef as
|
|
1715
|
-
import { jsx as
|
|
1716
|
-
var ImageIcon =
|
|
2027
|
+
import { forwardRef as forwardRef41 } from "react";
|
|
2028
|
+
import { jsx as jsx43, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
2029
|
+
var ImageIcon = forwardRef41(
|
|
1717
2030
|
function ImageIcon2(_a, ref) {
|
|
1718
2031
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1719
|
-
return /* @__PURE__ */
|
|
2032
|
+
return /* @__PURE__ */ jsxs24(
|
|
1720
2033
|
"svg",
|
|
1721
2034
|
__spreadProps(__spreadValues({
|
|
1722
2035
|
ref,
|
|
@@ -1728,15 +2041,15 @@ var ImageIcon = forwardRef36(
|
|
|
1728
2041
|
className
|
|
1729
2042
|
}, other), {
|
|
1730
2043
|
children: [
|
|
1731
|
-
duotone && /* @__PURE__ */
|
|
1732
|
-
/* @__PURE__ */
|
|
2044
|
+
duotone && /* @__PURE__ */ jsxs24("g", { opacity: "0.12", children: [
|
|
2045
|
+
/* @__PURE__ */ jsx43(
|
|
1733
2046
|
"path",
|
|
1734
2047
|
{
|
|
1735
2048
|
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",
|
|
1736
2049
|
fill: "currentColor"
|
|
1737
2050
|
}
|
|
1738
2051
|
),
|
|
1739
|
-
/* @__PURE__ */
|
|
2052
|
+
/* @__PURE__ */ jsx43(
|
|
1740
2053
|
"path",
|
|
1741
2054
|
{
|
|
1742
2055
|
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",
|
|
@@ -1744,7 +2057,7 @@ var ImageIcon = forwardRef36(
|
|
|
1744
2057
|
}
|
|
1745
2058
|
)
|
|
1746
2059
|
] }),
|
|
1747
|
-
/* @__PURE__ */
|
|
2060
|
+
/* @__PURE__ */ jsx43(
|
|
1748
2061
|
"path",
|
|
1749
2062
|
{
|
|
1750
2063
|
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",
|
|
@@ -1761,12 +2074,12 @@ var ImageIcon = forwardRef36(
|
|
|
1761
2074
|
);
|
|
1762
2075
|
|
|
1763
2076
|
// src/icons/imageDown.tsx
|
|
1764
|
-
import { forwardRef as
|
|
1765
|
-
import { jsx as
|
|
1766
|
-
var ImageDownIcon =
|
|
2077
|
+
import { forwardRef as forwardRef42 } from "react";
|
|
2078
|
+
import { jsx as jsx44, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
2079
|
+
var ImageDownIcon = forwardRef42(
|
|
1767
2080
|
function ImageDownIcon2(_a, ref) {
|
|
1768
2081
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1769
|
-
return /* @__PURE__ */
|
|
2082
|
+
return /* @__PURE__ */ jsxs25(
|
|
1770
2083
|
"svg",
|
|
1771
2084
|
__spreadProps(__spreadValues({
|
|
1772
2085
|
ref,
|
|
@@ -1778,15 +2091,15 @@ var ImageDownIcon = forwardRef37(
|
|
|
1778
2091
|
className
|
|
1779
2092
|
}, other), {
|
|
1780
2093
|
children: [
|
|
1781
|
-
duotone && /* @__PURE__ */
|
|
1782
|
-
/* @__PURE__ */
|
|
2094
|
+
duotone && /* @__PURE__ */ jsxs25("g", { opacity: "0.12", children: [
|
|
2095
|
+
/* @__PURE__ */ jsx44(
|
|
1783
2096
|
"path",
|
|
1784
2097
|
{
|
|
1785
2098
|
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",
|
|
1786
2099
|
fill: "currentColor"
|
|
1787
2100
|
}
|
|
1788
2101
|
),
|
|
1789
|
-
/* @__PURE__ */
|
|
2102
|
+
/* @__PURE__ */ jsx44(
|
|
1790
2103
|
"path",
|
|
1791
2104
|
{
|
|
1792
2105
|
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",
|
|
@@ -1794,7 +2107,7 @@ var ImageDownIcon = forwardRef37(
|
|
|
1794
2107
|
}
|
|
1795
2108
|
)
|
|
1796
2109
|
] }),
|
|
1797
|
-
/* @__PURE__ */
|
|
2110
|
+
/* @__PURE__ */ jsx44(
|
|
1798
2111
|
"path",
|
|
1799
2112
|
{
|
|
1800
2113
|
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",
|
|
@@ -1811,12 +2124,12 @@ var ImageDownIcon = forwardRef37(
|
|
|
1811
2124
|
);
|
|
1812
2125
|
|
|
1813
2126
|
// src/icons/imageX.tsx
|
|
1814
|
-
import { forwardRef as
|
|
1815
|
-
import { jsx as
|
|
1816
|
-
var ImageXIcon =
|
|
2127
|
+
import { forwardRef as forwardRef43 } from "react";
|
|
2128
|
+
import { jsx as jsx45, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
2129
|
+
var ImageXIcon = forwardRef43(
|
|
1817
2130
|
function ImageXIcon2(_a, ref) {
|
|
1818
2131
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1819
|
-
return /* @__PURE__ */
|
|
2132
|
+
return /* @__PURE__ */ jsxs26(
|
|
1820
2133
|
"svg",
|
|
1821
2134
|
__spreadProps(__spreadValues({
|
|
1822
2135
|
ref,
|
|
@@ -1828,15 +2141,15 @@ var ImageXIcon = forwardRef38(
|
|
|
1828
2141
|
className
|
|
1829
2142
|
}, other), {
|
|
1830
2143
|
children: [
|
|
1831
|
-
duotone && /* @__PURE__ */
|
|
1832
|
-
/* @__PURE__ */
|
|
2144
|
+
duotone && /* @__PURE__ */ jsxs26("g", { opacity: "0.12", children: [
|
|
2145
|
+
/* @__PURE__ */ jsx45(
|
|
1833
2146
|
"path",
|
|
1834
2147
|
{
|
|
1835
2148
|
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",
|
|
1836
2149
|
fill: "currentColor"
|
|
1837
2150
|
}
|
|
1838
2151
|
),
|
|
1839
|
-
/* @__PURE__ */
|
|
2152
|
+
/* @__PURE__ */ jsx45(
|
|
1840
2153
|
"path",
|
|
1841
2154
|
{
|
|
1842
2155
|
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",
|
|
@@ -1844,7 +2157,7 @@ var ImageXIcon = forwardRef38(
|
|
|
1844
2157
|
}
|
|
1845
2158
|
)
|
|
1846
2159
|
] }),
|
|
1847
|
-
/* @__PURE__ */
|
|
2160
|
+
/* @__PURE__ */ jsx45(
|
|
1848
2161
|
"path",
|
|
1849
2162
|
{
|
|
1850
2163
|
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",
|
|
@@ -1861,12 +2174,12 @@ var ImageXIcon = forwardRef38(
|
|
|
1861
2174
|
);
|
|
1862
2175
|
|
|
1863
2176
|
// src/icons/infoCircle.tsx
|
|
1864
|
-
import { forwardRef as
|
|
1865
|
-
import { jsx as
|
|
1866
|
-
var InfoCircleIcon =
|
|
2177
|
+
import { forwardRef as forwardRef44 } from "react";
|
|
2178
|
+
import { jsx as jsx46, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
2179
|
+
var InfoCircleIcon = forwardRef44(
|
|
1867
2180
|
function InfoCircleIcon2(_a, ref) {
|
|
1868
2181
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1869
|
-
return /* @__PURE__ */
|
|
2182
|
+
return /* @__PURE__ */ jsxs27(
|
|
1870
2183
|
"svg",
|
|
1871
2184
|
__spreadProps(__spreadValues({
|
|
1872
2185
|
ref,
|
|
@@ -1878,7 +2191,7 @@ var InfoCircleIcon = forwardRef39(
|
|
|
1878
2191
|
className
|
|
1879
2192
|
}, other), {
|
|
1880
2193
|
children: [
|
|
1881
|
-
duotone && /* @__PURE__ */
|
|
2194
|
+
duotone && /* @__PURE__ */ jsx46(
|
|
1882
2195
|
"path",
|
|
1883
2196
|
{
|
|
1884
2197
|
opacity: "0.12",
|
|
@@ -1886,7 +2199,7 @@ var InfoCircleIcon = forwardRef39(
|
|
|
1886
2199
|
fill: "currentColor"
|
|
1887
2200
|
}
|
|
1888
2201
|
),
|
|
1889
|
-
/* @__PURE__ */
|
|
2202
|
+
/* @__PURE__ */ jsx46(
|
|
1890
2203
|
"path",
|
|
1891
2204
|
{
|
|
1892
2205
|
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",
|
|
@@ -1903,12 +2216,12 @@ var InfoCircleIcon = forwardRef39(
|
|
|
1903
2216
|
);
|
|
1904
2217
|
|
|
1905
2218
|
// src/icons/lightbulb.tsx
|
|
1906
|
-
import { forwardRef as
|
|
1907
|
-
import { jsx as
|
|
1908
|
-
var LightbulbIcon =
|
|
2219
|
+
import { forwardRef as forwardRef45 } from "react";
|
|
2220
|
+
import { jsx as jsx47, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
2221
|
+
var LightbulbIcon = forwardRef45(
|
|
1909
2222
|
function LightbulbIcon2(_a, ref) {
|
|
1910
2223
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1911
|
-
return /* @__PURE__ */
|
|
2224
|
+
return /* @__PURE__ */ jsxs28(
|
|
1912
2225
|
"svg",
|
|
1913
2226
|
__spreadProps(__spreadValues({
|
|
1914
2227
|
ref,
|
|
@@ -1920,7 +2233,7 @@ var LightbulbIcon = forwardRef40(
|
|
|
1920
2233
|
className
|
|
1921
2234
|
}, other), {
|
|
1922
2235
|
children: [
|
|
1923
|
-
duotone && /* @__PURE__ */
|
|
2236
|
+
duotone && /* @__PURE__ */ jsx47(
|
|
1924
2237
|
"path",
|
|
1925
2238
|
{
|
|
1926
2239
|
opacity: "0.12",
|
|
@@ -1928,7 +2241,7 @@ var LightbulbIcon = forwardRef40(
|
|
|
1928
2241
|
fill: "currentColor"
|
|
1929
2242
|
}
|
|
1930
2243
|
),
|
|
1931
|
-
/* @__PURE__ */
|
|
2244
|
+
/* @__PURE__ */ jsx47(
|
|
1932
2245
|
"path",
|
|
1933
2246
|
{
|
|
1934
2247
|
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",
|
|
@@ -1945,11 +2258,11 @@ var LightbulbIcon = forwardRef40(
|
|
|
1945
2258
|
);
|
|
1946
2259
|
|
|
1947
2260
|
// src/icons/link.tsx
|
|
1948
|
-
import { forwardRef as
|
|
1949
|
-
import { jsx as
|
|
1950
|
-
var LinkIcon =
|
|
2261
|
+
import { forwardRef as forwardRef46 } from "react";
|
|
2262
|
+
import { jsx as jsx48 } from "react/jsx-runtime";
|
|
2263
|
+
var LinkIcon = forwardRef46(function LinkIcon2(_a, ref) {
|
|
1951
2264
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1952
|
-
return /* @__PURE__ */
|
|
2265
|
+
return /* @__PURE__ */ jsx48(
|
|
1953
2266
|
"svg",
|
|
1954
2267
|
__spreadProps(__spreadValues({
|
|
1955
2268
|
ref,
|
|
@@ -1960,7 +2273,7 @@ var LinkIcon = forwardRef41(function LinkIcon2(_a, ref) {
|
|
|
1960
2273
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1961
2274
|
className
|
|
1962
2275
|
}, other), {
|
|
1963
|
-
children: /* @__PURE__ */
|
|
2276
|
+
children: /* @__PURE__ */ jsx48(
|
|
1964
2277
|
"path",
|
|
1965
2278
|
{
|
|
1966
2279
|
d: "M12.7076 18.3639L11.2933 19.7781C9.34072 21.7308 6.1749 21.7308 4.22228 19.7781C2.26966 17.8255 2.26966 14.6597 4.22228 12.7071L5.63649 11.2929M18.3644 12.7071L19.7786 11.2929C21.7312 9.34024 21.7312 6.17441 19.7786 4.22179C17.826 2.26917 14.6602 2.26917 12.7076 4.22179L11.2933 5.636M8.50045 15.4999L15.5005 8.49994",
|
|
@@ -1975,11 +2288,11 @@ var LinkIcon = forwardRef41(function LinkIcon2(_a, ref) {
|
|
|
1975
2288
|
});
|
|
1976
2289
|
|
|
1977
2290
|
// src/icons/lock.tsx
|
|
1978
|
-
import { forwardRef as
|
|
1979
|
-
import { jsx as
|
|
1980
|
-
var LockIcon =
|
|
2291
|
+
import { forwardRef as forwardRef47 } from "react";
|
|
2292
|
+
import { jsx as jsx49, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
2293
|
+
var LockIcon = forwardRef47(function LockIcon2(_a, ref) {
|
|
1981
2294
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1982
|
-
return /* @__PURE__ */
|
|
2295
|
+
return /* @__PURE__ */ jsxs29(
|
|
1983
2296
|
"svg",
|
|
1984
2297
|
__spreadProps(__spreadValues({
|
|
1985
2298
|
ref,
|
|
@@ -1991,7 +2304,7 @@ var LockIcon = forwardRef42(function LockIcon2(_a, ref) {
|
|
|
1991
2304
|
className
|
|
1992
2305
|
}, other), {
|
|
1993
2306
|
children: [
|
|
1994
|
-
duotone && /* @__PURE__ */
|
|
2307
|
+
duotone && /* @__PURE__ */ jsx49(
|
|
1995
2308
|
"path",
|
|
1996
2309
|
{
|
|
1997
2310
|
opacity: "0.12",
|
|
@@ -1999,7 +2312,7 @@ var LockIcon = forwardRef42(function LockIcon2(_a, ref) {
|
|
|
1999
2312
|
fill: "currentColor"
|
|
2000
2313
|
}
|
|
2001
2314
|
),
|
|
2002
|
-
/* @__PURE__ */
|
|
2315
|
+
/* @__PURE__ */ jsx49(
|
|
2003
2316
|
"path",
|
|
2004
2317
|
{
|
|
2005
2318
|
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",
|
|
@@ -2015,12 +2328,12 @@ var LockIcon = forwardRef42(function LockIcon2(_a, ref) {
|
|
|
2015
2328
|
});
|
|
2016
2329
|
|
|
2017
2330
|
// src/icons/logIn.tsx
|
|
2018
|
-
import { forwardRef as
|
|
2019
|
-
import { jsx as
|
|
2020
|
-
var LogInIcon =
|
|
2331
|
+
import { forwardRef as forwardRef48 } from "react";
|
|
2332
|
+
import { jsx as jsx50, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
2333
|
+
var LogInIcon = forwardRef48(
|
|
2021
2334
|
function LogInIcon2(_a, ref) {
|
|
2022
2335
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2023
|
-
return /* @__PURE__ */
|
|
2336
|
+
return /* @__PURE__ */ jsxs30(
|
|
2024
2337
|
"svg",
|
|
2025
2338
|
__spreadProps(__spreadValues({
|
|
2026
2339
|
ref,
|
|
@@ -2032,7 +2345,7 @@ var LogInIcon = forwardRef43(
|
|
|
2032
2345
|
className
|
|
2033
2346
|
}, other), {
|
|
2034
2347
|
children: [
|
|
2035
|
-
duotone && /* @__PURE__ */
|
|
2348
|
+
duotone && /* @__PURE__ */ jsx50(
|
|
2036
2349
|
"path",
|
|
2037
2350
|
{
|
|
2038
2351
|
opacity: "0.12",
|
|
@@ -2040,7 +2353,7 @@ var LogInIcon = forwardRef43(
|
|
|
2040
2353
|
fill: "currentColor"
|
|
2041
2354
|
}
|
|
2042
2355
|
),
|
|
2043
|
-
/* @__PURE__ */
|
|
2356
|
+
/* @__PURE__ */ jsx50(
|
|
2044
2357
|
"path",
|
|
2045
2358
|
{
|
|
2046
2359
|
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",
|
|
@@ -2057,12 +2370,12 @@ var LogInIcon = forwardRef43(
|
|
|
2057
2370
|
);
|
|
2058
2371
|
|
|
2059
2372
|
// src/icons/magicWand.tsx
|
|
2060
|
-
import { forwardRef as
|
|
2061
|
-
import { jsx as
|
|
2062
|
-
var MagicWandIcon =
|
|
2373
|
+
import { forwardRef as forwardRef49 } from "react";
|
|
2374
|
+
import { jsx as jsx51, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
2375
|
+
var MagicWandIcon = forwardRef49(
|
|
2063
2376
|
function MagicWandIcon2(_a, ref) {
|
|
2064
2377
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2065
|
-
return /* @__PURE__ */
|
|
2378
|
+
return /* @__PURE__ */ jsxs31(
|
|
2066
2379
|
"svg",
|
|
2067
2380
|
__spreadProps(__spreadValues({
|
|
2068
2381
|
ref,
|
|
@@ -2074,7 +2387,7 @@ var MagicWandIcon = forwardRef44(
|
|
|
2074
2387
|
className
|
|
2075
2388
|
}, other), {
|
|
2076
2389
|
children: [
|
|
2077
|
-
duotone && /* @__PURE__ */
|
|
2390
|
+
duotone && /* @__PURE__ */ jsx51(
|
|
2078
2391
|
"path",
|
|
2079
2392
|
{
|
|
2080
2393
|
opacity: "0.12",
|
|
@@ -2082,7 +2395,7 @@ var MagicWandIcon = forwardRef44(
|
|
|
2082
2395
|
fill: "currentColor"
|
|
2083
2396
|
}
|
|
2084
2397
|
),
|
|
2085
|
-
/* @__PURE__ */
|
|
2398
|
+
/* @__PURE__ */ jsx51(
|
|
2086
2399
|
"path",
|
|
2087
2400
|
{
|
|
2088
2401
|
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",
|
|
@@ -2099,11 +2412,11 @@ var MagicWandIcon = forwardRef44(
|
|
|
2099
2412
|
);
|
|
2100
2413
|
|
|
2101
2414
|
// src/icons/mail.tsx
|
|
2102
|
-
import { forwardRef as
|
|
2103
|
-
import { jsx as
|
|
2104
|
-
var MailIcon =
|
|
2415
|
+
import { forwardRef as forwardRef50 } from "react";
|
|
2416
|
+
import { jsx as jsx52, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
2417
|
+
var MailIcon = forwardRef50(function MailIcon2(_a, ref) {
|
|
2105
2418
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2106
|
-
return /* @__PURE__ */
|
|
2419
|
+
return /* @__PURE__ */ jsxs32(
|
|
2107
2420
|
"svg",
|
|
2108
2421
|
__spreadProps(__spreadValues({
|
|
2109
2422
|
ref,
|
|
@@ -2115,7 +2428,7 @@ var MailIcon = forwardRef45(function MailIcon2(_a, ref) {
|
|
|
2115
2428
|
className
|
|
2116
2429
|
}, other), {
|
|
2117
2430
|
children: [
|
|
2118
|
-
duotone && /* @__PURE__ */
|
|
2431
|
+
duotone && /* @__PURE__ */ jsx52(
|
|
2119
2432
|
"path",
|
|
2120
2433
|
{
|
|
2121
2434
|
opacity: "0.12",
|
|
@@ -2123,7 +2436,7 @@ var MailIcon = forwardRef45(function MailIcon2(_a, ref) {
|
|
|
2123
2436
|
fill: "currentColor"
|
|
2124
2437
|
}
|
|
2125
2438
|
),
|
|
2126
|
-
/* @__PURE__ */
|
|
2439
|
+
/* @__PURE__ */ jsx52(
|
|
2127
2440
|
"path",
|
|
2128
2441
|
{
|
|
2129
2442
|
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",
|
|
@@ -2139,11 +2452,11 @@ var MailIcon = forwardRef45(function MailIcon2(_a, ref) {
|
|
|
2139
2452
|
});
|
|
2140
2453
|
|
|
2141
2454
|
// src/icons/menu.tsx
|
|
2142
|
-
import { forwardRef as
|
|
2143
|
-
import { jsx as
|
|
2144
|
-
var MenuIcon =
|
|
2455
|
+
import { forwardRef as forwardRef51 } from "react";
|
|
2456
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
|
2457
|
+
var MenuIcon = forwardRef51(function MenuIcon2(_a, ref) {
|
|
2145
2458
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2146
|
-
return /* @__PURE__ */
|
|
2459
|
+
return /* @__PURE__ */ jsx53(
|
|
2147
2460
|
"svg",
|
|
2148
2461
|
__spreadProps(__spreadValues({
|
|
2149
2462
|
ref,
|
|
@@ -2154,7 +2467,7 @@ var MenuIcon = forwardRef46(function MenuIcon2(_a, ref) {
|
|
|
2154
2467
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2155
2468
|
className
|
|
2156
2469
|
}, other), {
|
|
2157
|
-
children: /* @__PURE__ */
|
|
2470
|
+
children: /* @__PURE__ */ jsx53(
|
|
2158
2471
|
"path",
|
|
2159
2472
|
{
|
|
2160
2473
|
d: "M3 12H21M3 6H21M3 18H21",
|
|
@@ -2168,13 +2481,13 @@ var MenuIcon = forwardRef46(function MenuIcon2(_a, ref) {
|
|
|
2168
2481
|
);
|
|
2169
2482
|
});
|
|
2170
2483
|
|
|
2171
|
-
// src/icons/messageChatSquare.tsx
|
|
2172
|
-
import { forwardRef as
|
|
2173
|
-
import { jsx as
|
|
2174
|
-
var MessageChatSquareIcon =
|
|
2484
|
+
// src/icons/messageChatSquare.tsx
|
|
2485
|
+
import { forwardRef as forwardRef52 } from "react";
|
|
2486
|
+
import { jsx as jsx54, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2487
|
+
var MessageChatSquareIcon = forwardRef52(
|
|
2175
2488
|
function MessageChatSquareIcon2(_a, ref) {
|
|
2176
2489
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2177
|
-
return /* @__PURE__ */
|
|
2490
|
+
return /* @__PURE__ */ jsxs33(
|
|
2178
2491
|
"svg",
|
|
2179
2492
|
__spreadProps(__spreadValues({
|
|
2180
2493
|
ref,
|
|
@@ -2186,7 +2499,7 @@ var MessageChatSquareIcon = forwardRef47(
|
|
|
2186
2499
|
className
|
|
2187
2500
|
}, other), {
|
|
2188
2501
|
children: [
|
|
2189
|
-
duotone && /* @__PURE__ */
|
|
2502
|
+
duotone && /* @__PURE__ */ jsx54(
|
|
2190
2503
|
"path",
|
|
2191
2504
|
{
|
|
2192
2505
|
opacity: "0.12",
|
|
@@ -2194,7 +2507,7 @@ var MessageChatSquareIcon = forwardRef47(
|
|
|
2194
2507
|
fill: "currentColor"
|
|
2195
2508
|
}
|
|
2196
2509
|
),
|
|
2197
|
-
/* @__PURE__ */
|
|
2510
|
+
/* @__PURE__ */ jsx54(
|
|
2198
2511
|
"path",
|
|
2199
2512
|
{
|
|
2200
2513
|
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",
|
|
@@ -2211,12 +2524,12 @@ var MessageChatSquareIcon = forwardRef47(
|
|
|
2211
2524
|
);
|
|
2212
2525
|
|
|
2213
2526
|
// src/icons/messagePlusSquare.tsx
|
|
2214
|
-
import { forwardRef as
|
|
2215
|
-
import { jsx as
|
|
2216
|
-
var MessagePlusSquareIcon =
|
|
2527
|
+
import { forwardRef as forwardRef53 } from "react";
|
|
2528
|
+
import { jsx as jsx55, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2529
|
+
var MessagePlusSquareIcon = forwardRef53(
|
|
2217
2530
|
function MessagePlusSquareIcon2(_a, ref) {
|
|
2218
2531
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2219
|
-
return /* @__PURE__ */
|
|
2532
|
+
return /* @__PURE__ */ jsxs34(
|
|
2220
2533
|
"svg",
|
|
2221
2534
|
__spreadProps(__spreadValues({
|
|
2222
2535
|
ref,
|
|
@@ -2228,7 +2541,7 @@ var MessagePlusSquareIcon = forwardRef48(
|
|
|
2228
2541
|
className
|
|
2229
2542
|
}, other), {
|
|
2230
2543
|
children: [
|
|
2231
|
-
duotone && /* @__PURE__ */
|
|
2544
|
+
duotone && /* @__PURE__ */ jsx55(
|
|
2232
2545
|
"path",
|
|
2233
2546
|
{
|
|
2234
2547
|
opacity: "0.12",
|
|
@@ -2236,7 +2549,7 @@ var MessagePlusSquareIcon = forwardRef48(
|
|
|
2236
2549
|
fill: "currentColor"
|
|
2237
2550
|
}
|
|
2238
2551
|
),
|
|
2239
|
-
/* @__PURE__ */
|
|
2552
|
+
/* @__PURE__ */ jsx55(
|
|
2240
2553
|
"path",
|
|
2241
2554
|
{
|
|
2242
2555
|
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",
|
|
@@ -2253,12 +2566,12 @@ var MessagePlusSquareIcon = forwardRef48(
|
|
|
2253
2566
|
);
|
|
2254
2567
|
|
|
2255
2568
|
// src/icons/messageTextSquare.tsx
|
|
2256
|
-
import { forwardRef as
|
|
2257
|
-
import { jsx as
|
|
2258
|
-
var MessageTextSquareIcon =
|
|
2569
|
+
import { forwardRef as forwardRef54 } from "react";
|
|
2570
|
+
import { jsx as jsx56, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
2571
|
+
var MessageTextSquareIcon = forwardRef54(
|
|
2259
2572
|
function MessageTextSquareIcon2(_a, ref) {
|
|
2260
2573
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2261
|
-
return /* @__PURE__ */
|
|
2574
|
+
return /* @__PURE__ */ jsxs35(
|
|
2262
2575
|
"svg",
|
|
2263
2576
|
__spreadProps(__spreadValues({
|
|
2264
2577
|
ref,
|
|
@@ -2270,7 +2583,7 @@ var MessageTextSquareIcon = forwardRef49(
|
|
|
2270
2583
|
className
|
|
2271
2584
|
}, other), {
|
|
2272
2585
|
children: [
|
|
2273
|
-
duotone && /* @__PURE__ */
|
|
2586
|
+
duotone && /* @__PURE__ */ jsx56(
|
|
2274
2587
|
"path",
|
|
2275
2588
|
{
|
|
2276
2589
|
opacity: "0.12",
|
|
@@ -2278,7 +2591,7 @@ var MessageTextSquareIcon = forwardRef49(
|
|
|
2278
2591
|
fill: "currentColor"
|
|
2279
2592
|
}
|
|
2280
2593
|
),
|
|
2281
|
-
/* @__PURE__ */
|
|
2594
|
+
/* @__PURE__ */ jsx56(
|
|
2282
2595
|
"path",
|
|
2283
2596
|
{
|
|
2284
2597
|
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",
|
|
@@ -2295,12 +2608,12 @@ var MessageTextSquareIcon = forwardRef49(
|
|
|
2295
2608
|
);
|
|
2296
2609
|
|
|
2297
2610
|
// src/icons/microphone.tsx
|
|
2298
|
-
import { forwardRef as
|
|
2299
|
-
import { jsx as
|
|
2300
|
-
var MicrophoneIcon =
|
|
2611
|
+
import { forwardRef as forwardRef55 } from "react";
|
|
2612
|
+
import { jsx as jsx57, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
2613
|
+
var MicrophoneIcon = forwardRef55(
|
|
2301
2614
|
function MicrophoneIcon2(_a, ref) {
|
|
2302
2615
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2303
|
-
return /* @__PURE__ */
|
|
2616
|
+
return /* @__PURE__ */ jsxs36(
|
|
2304
2617
|
"svg",
|
|
2305
2618
|
__spreadProps(__spreadValues({
|
|
2306
2619
|
ref,
|
|
@@ -2312,7 +2625,7 @@ var MicrophoneIcon = forwardRef50(
|
|
|
2312
2625
|
className
|
|
2313
2626
|
}, other), {
|
|
2314
2627
|
children: [
|
|
2315
|
-
duotone && /* @__PURE__ */
|
|
2628
|
+
duotone && /* @__PURE__ */ jsx57(
|
|
2316
2629
|
"path",
|
|
2317
2630
|
{
|
|
2318
2631
|
opacity: "0.12",
|
|
@@ -2320,7 +2633,7 @@ var MicrophoneIcon = forwardRef50(
|
|
|
2320
2633
|
fill: "currentColor"
|
|
2321
2634
|
}
|
|
2322
2635
|
),
|
|
2323
|
-
/* @__PURE__ */
|
|
2636
|
+
/* @__PURE__ */ jsx57(
|
|
2324
2637
|
"path",
|
|
2325
2638
|
{
|
|
2326
2639
|
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",
|
|
@@ -2337,12 +2650,12 @@ var MicrophoneIcon = forwardRef50(
|
|
|
2337
2650
|
);
|
|
2338
2651
|
|
|
2339
2652
|
// src/icons/microphoneOff.tsx
|
|
2340
|
-
import { forwardRef as
|
|
2341
|
-
import { jsx as
|
|
2342
|
-
var MicrophoneOffIcon =
|
|
2653
|
+
import { forwardRef as forwardRef56 } from "react";
|
|
2654
|
+
import { jsx as jsx58, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2655
|
+
var MicrophoneOffIcon = forwardRef56(
|
|
2343
2656
|
function MicrophoneOffIcon2(_a, ref) {
|
|
2344
2657
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2345
|
-
return /* @__PURE__ */
|
|
2658
|
+
return /* @__PURE__ */ jsxs37(
|
|
2346
2659
|
"svg",
|
|
2347
2660
|
__spreadProps(__spreadValues({
|
|
2348
2661
|
ref,
|
|
@@ -2354,7 +2667,7 @@ var MicrophoneOffIcon = forwardRef51(
|
|
|
2354
2667
|
className
|
|
2355
2668
|
}, other), {
|
|
2356
2669
|
children: [
|
|
2357
|
-
duotone && /* @__PURE__ */
|
|
2670
|
+
duotone && /* @__PURE__ */ jsx58(
|
|
2358
2671
|
"path",
|
|
2359
2672
|
{
|
|
2360
2673
|
opacity: "0.12",
|
|
@@ -2362,7 +2675,7 @@ var MicrophoneOffIcon = forwardRef51(
|
|
|
2362
2675
|
fill: "currentColor"
|
|
2363
2676
|
}
|
|
2364
2677
|
),
|
|
2365
|
-
/* @__PURE__ */
|
|
2678
|
+
/* @__PURE__ */ jsx58(
|
|
2366
2679
|
"path",
|
|
2367
2680
|
{
|
|
2368
2681
|
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",
|
|
@@ -2379,12 +2692,12 @@ var MicrophoneOffIcon = forwardRef51(
|
|
|
2379
2692
|
);
|
|
2380
2693
|
|
|
2381
2694
|
// src/icons/monitor.tsx
|
|
2382
|
-
import { forwardRef as
|
|
2383
|
-
import { jsx as
|
|
2384
|
-
var MonitorIcon =
|
|
2695
|
+
import { forwardRef as forwardRef57 } from "react";
|
|
2696
|
+
import { jsx as jsx59, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
2697
|
+
var MonitorIcon = forwardRef57(
|
|
2385
2698
|
function MonitorIcon2(_a, ref) {
|
|
2386
2699
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2387
|
-
return /* @__PURE__ */
|
|
2700
|
+
return /* @__PURE__ */ jsxs38(
|
|
2388
2701
|
"svg",
|
|
2389
2702
|
__spreadProps(__spreadValues({
|
|
2390
2703
|
ref,
|
|
@@ -2396,7 +2709,7 @@ var MonitorIcon = forwardRef52(
|
|
|
2396
2709
|
className
|
|
2397
2710
|
}, other), {
|
|
2398
2711
|
children: [
|
|
2399
|
-
duotone && /* @__PURE__ */
|
|
2712
|
+
duotone && /* @__PURE__ */ jsx59(
|
|
2400
2713
|
"path",
|
|
2401
2714
|
{
|
|
2402
2715
|
opacity: "0.12",
|
|
@@ -2404,7 +2717,7 @@ var MonitorIcon = forwardRef52(
|
|
|
2404
2717
|
fill: "currentColor"
|
|
2405
2718
|
}
|
|
2406
2719
|
),
|
|
2407
|
-
/* @__PURE__ */
|
|
2720
|
+
/* @__PURE__ */ jsx59(
|
|
2408
2721
|
"path",
|
|
2409
2722
|
{
|
|
2410
2723
|
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",
|
|
@@ -2421,12 +2734,12 @@ var MonitorIcon = forwardRef52(
|
|
|
2421
2734
|
);
|
|
2422
2735
|
|
|
2423
2736
|
// src/icons/notificationBox.tsx
|
|
2424
|
-
import { forwardRef as
|
|
2425
|
-
import { jsx as
|
|
2426
|
-
var NotificationBoxIcon =
|
|
2737
|
+
import { forwardRef as forwardRef58 } from "react";
|
|
2738
|
+
import { jsx as jsx60, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
2739
|
+
var NotificationBoxIcon = forwardRef58(
|
|
2427
2740
|
function NotificationBoxIcon2(_a, ref) {
|
|
2428
2741
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2429
|
-
return /* @__PURE__ */
|
|
2742
|
+
return /* @__PURE__ */ jsxs39(
|
|
2430
2743
|
"svg",
|
|
2431
2744
|
__spreadProps(__spreadValues({
|
|
2432
2745
|
ref,
|
|
@@ -2438,7 +2751,7 @@ var NotificationBoxIcon = forwardRef53(
|
|
|
2438
2751
|
className
|
|
2439
2752
|
}, other), {
|
|
2440
2753
|
children: [
|
|
2441
|
-
duotone && /* @__PURE__ */
|
|
2754
|
+
duotone && /* @__PURE__ */ jsx60(
|
|
2442
2755
|
"path",
|
|
2443
2756
|
{
|
|
2444
2757
|
opacity: "0.12",
|
|
@@ -2446,7 +2759,7 @@ var NotificationBoxIcon = forwardRef53(
|
|
|
2446
2759
|
fill: "currentColor"
|
|
2447
2760
|
}
|
|
2448
2761
|
),
|
|
2449
|
-
/* @__PURE__ */
|
|
2762
|
+
/* @__PURE__ */ jsx60(
|
|
2450
2763
|
"path",
|
|
2451
2764
|
{
|
|
2452
2765
|
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",
|
|
@@ -2463,12 +2776,12 @@ var NotificationBoxIcon = forwardRef53(
|
|
|
2463
2776
|
);
|
|
2464
2777
|
|
|
2465
2778
|
// src/icons/pauseCircle.tsx
|
|
2466
|
-
import { forwardRef as
|
|
2467
|
-
import { jsx as
|
|
2468
|
-
var PauseCircleIcon =
|
|
2779
|
+
import { forwardRef as forwardRef59 } from "react";
|
|
2780
|
+
import { jsx as jsx61, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
2781
|
+
var PauseCircleIcon = forwardRef59(
|
|
2469
2782
|
function PauseCircleIcon2(_a, ref) {
|
|
2470
2783
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2471
|
-
return /* @__PURE__ */
|
|
2784
|
+
return /* @__PURE__ */ jsxs40(
|
|
2472
2785
|
"svg",
|
|
2473
2786
|
__spreadProps(__spreadValues({
|
|
2474
2787
|
ref,
|
|
@@ -2480,7 +2793,7 @@ var PauseCircleIcon = forwardRef54(
|
|
|
2480
2793
|
className
|
|
2481
2794
|
}, other), {
|
|
2482
2795
|
children: [
|
|
2483
|
-
duotone && /* @__PURE__ */
|
|
2796
|
+
duotone && /* @__PURE__ */ jsx61(
|
|
2484
2797
|
"path",
|
|
2485
2798
|
{
|
|
2486
2799
|
opacity: "0.12",
|
|
@@ -2488,7 +2801,7 @@ var PauseCircleIcon = forwardRef54(
|
|
|
2488
2801
|
fill: "currentColor"
|
|
2489
2802
|
}
|
|
2490
2803
|
),
|
|
2491
|
-
/* @__PURE__ */
|
|
2804
|
+
/* @__PURE__ */ jsx61(
|
|
2492
2805
|
"path",
|
|
2493
2806
|
{
|
|
2494
2807
|
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",
|
|
@@ -2505,12 +2818,12 @@ var PauseCircleIcon = forwardRef54(
|
|
|
2505
2818
|
);
|
|
2506
2819
|
|
|
2507
2820
|
// src/icons/phone.tsx
|
|
2508
|
-
import { forwardRef as
|
|
2509
|
-
import { jsx as
|
|
2510
|
-
var PhoneIcon =
|
|
2821
|
+
import { forwardRef as forwardRef60 } from "react";
|
|
2822
|
+
import { jsx as jsx62, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
2823
|
+
var PhoneIcon = forwardRef60(
|
|
2511
2824
|
function PhoneIcon2(_a, ref) {
|
|
2512
2825
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2513
|
-
return /* @__PURE__ */
|
|
2826
|
+
return /* @__PURE__ */ jsxs41(
|
|
2514
2827
|
"svg",
|
|
2515
2828
|
__spreadProps(__spreadValues({
|
|
2516
2829
|
ref,
|
|
@@ -2522,7 +2835,7 @@ var PhoneIcon = forwardRef55(
|
|
|
2522
2835
|
className
|
|
2523
2836
|
}, other), {
|
|
2524
2837
|
children: [
|
|
2525
|
-
duotone && /* @__PURE__ */
|
|
2838
|
+
duotone && /* @__PURE__ */ jsx62(
|
|
2526
2839
|
"path",
|
|
2527
2840
|
{
|
|
2528
2841
|
opacity: "0.12",
|
|
@@ -2530,7 +2843,7 @@ var PhoneIcon = forwardRef55(
|
|
|
2530
2843
|
fill: "currentColor"
|
|
2531
2844
|
}
|
|
2532
2845
|
),
|
|
2533
|
-
/* @__PURE__ */
|
|
2846
|
+
/* @__PURE__ */ jsx62(
|
|
2534
2847
|
"path",
|
|
2535
2848
|
{
|
|
2536
2849
|
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",
|
|
@@ -2547,12 +2860,12 @@ var PhoneIcon = forwardRef55(
|
|
|
2547
2860
|
);
|
|
2548
2861
|
|
|
2549
2862
|
// src/icons/phoneCall.tsx
|
|
2550
|
-
import { forwardRef as
|
|
2551
|
-
import { jsx as
|
|
2552
|
-
var PhoneCallIcon =
|
|
2863
|
+
import { forwardRef as forwardRef61 } from "react";
|
|
2864
|
+
import { jsx as jsx63, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
2865
|
+
var PhoneCallIcon = forwardRef61(
|
|
2553
2866
|
function PhoneCallIcon2(_a, ref) {
|
|
2554
2867
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2555
|
-
return /* @__PURE__ */
|
|
2868
|
+
return /* @__PURE__ */ jsxs42(
|
|
2556
2869
|
"svg",
|
|
2557
2870
|
__spreadProps(__spreadValues({
|
|
2558
2871
|
ref,
|
|
@@ -2564,7 +2877,7 @@ var PhoneCallIcon = forwardRef56(
|
|
|
2564
2877
|
className
|
|
2565
2878
|
}, other), {
|
|
2566
2879
|
children: [
|
|
2567
|
-
duotone && /* @__PURE__ */
|
|
2880
|
+
duotone && /* @__PURE__ */ jsx63(
|
|
2568
2881
|
"path",
|
|
2569
2882
|
{
|
|
2570
2883
|
opacity: "0.12",
|
|
@@ -2572,7 +2885,7 @@ var PhoneCallIcon = forwardRef56(
|
|
|
2572
2885
|
fill: "currentColor"
|
|
2573
2886
|
}
|
|
2574
2887
|
),
|
|
2575
|
-
/* @__PURE__ */
|
|
2888
|
+
/* @__PURE__ */ jsx63(
|
|
2576
2889
|
"path",
|
|
2577
2890
|
{
|
|
2578
2891
|
d: "M14.05 6C15.0268 6.19057 15.9244 6.66826 16.6281 7.37194C17.3318 8.07561 17.8095 8.97326 18 9.95M14.05 2C16.0793 2.22544 17.9716 3.13417 19.4163 4.57701C20.8609 6.01984 21.772 7.91101 22 9.94M10.227 13.8631C9.02543 12.6615 8.07664 11.3028 7.38064 9.85323C7.32078 9.72854 7.29084 9.66619 7.26785 9.5873C7.18612 9.30695 7.24482 8.96269 7.41483 8.72526C7.46268 8.65845 7.51983 8.60129 7.63414 8.48698C7.98375 8.13737 8.15855 7.96257 8.27284 7.78679C8.70383 7.1239 8.70383 6.26932 8.27284 5.60643C8.15855 5.43065 7.98375 5.25585 7.63414 4.90624L7.43927 4.71137C6.90783 4.17993 6.64211 3.91421 6.35673 3.76987C5.78917 3.4828 5.1189 3.4828 4.55134 3.76987C4.26596 3.91421 4.00024 4.17993 3.4688 4.71137L3.31116 4.86901C2.78154 5.39863 2.51673 5.66344 2.31448 6.02348C2.09006 6.42298 1.9287 7.04347 1.93006 7.5017C1.93129 7.91464 2.01139 8.19687 2.1716 8.76131C3.03257 11.7947 4.65705 14.6571 7.04503 17.045C9.43301 19.433 12.2954 21.0575 15.3288 21.9185C15.8932 22.0787 16.1754 22.1588 16.5884 22.16C17.0466 22.1614 17.6671 22 18.0666 21.7756C18.4266 21.5733 18.6914 21.3085 19.2211 20.7789L19.3787 20.6213C19.9101 20.0898 20.1759 19.8241 20.3202 19.5387C20.6073 18.9712 20.6073 18.3009 20.3202 17.7333C20.1759 17.448 19.9101 17.1822 19.3787 16.6508L19.1838 16.4559C18.8342 16.1063 18.6594 15.9315 18.4836 15.8172C17.8208 15.3862 16.9662 15.3862 16.3033 15.8172C16.1275 15.9315 15.9527 16.1063 15.6031 16.4559C15.4888 16.5702 15.4316 16.6274 15.3648 16.6752C15.1274 16.8453 14.7831 16.904 14.5028 16.8222C14.4239 16.7992 14.3615 16.7693 14.2368 16.7094C12.7872 16.0134 11.4286 15.0646 10.227 13.8631Z",
|
|
@@ -2589,12 +2902,12 @@ var PhoneCallIcon = forwardRef56(
|
|
|
2589
2902
|
);
|
|
2590
2903
|
|
|
2591
2904
|
// src/icons/pieChart.tsx
|
|
2592
|
-
import { forwardRef as
|
|
2593
|
-
import { jsx as
|
|
2594
|
-
var PieChartIcon =
|
|
2905
|
+
import { forwardRef as forwardRef62 } from "react";
|
|
2906
|
+
import { jsx as jsx64, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
2907
|
+
var PieChartIcon = forwardRef62(
|
|
2595
2908
|
function PieChartIcon2(_a, ref) {
|
|
2596
2909
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2597
|
-
return /* @__PURE__ */
|
|
2910
|
+
return /* @__PURE__ */ jsxs43(
|
|
2598
2911
|
"svg",
|
|
2599
2912
|
__spreadProps(__spreadValues({
|
|
2600
2913
|
ref,
|
|
@@ -2606,7 +2919,7 @@ var PieChartIcon = forwardRef57(
|
|
|
2606
2919
|
className
|
|
2607
2920
|
}, other), {
|
|
2608
2921
|
children: [
|
|
2609
|
-
duotone && /* @__PURE__ */
|
|
2922
|
+
duotone && /* @__PURE__ */ jsx64(
|
|
2610
2923
|
"path",
|
|
2611
2924
|
{
|
|
2612
2925
|
opacity: "0.12",
|
|
@@ -2614,7 +2927,7 @@ var PieChartIcon = forwardRef57(
|
|
|
2614
2927
|
fill: "currentColor"
|
|
2615
2928
|
}
|
|
2616
2929
|
),
|
|
2617
|
-
/* @__PURE__ */
|
|
2930
|
+
/* @__PURE__ */ jsx64(
|
|
2618
2931
|
"path",
|
|
2619
2932
|
{
|
|
2620
2933
|
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",
|
|
@@ -2625,7 +2938,7 @@ var PieChartIcon = forwardRef57(
|
|
|
2625
2938
|
}
|
|
2626
2939
|
),
|
|
2627
2940
|
",",
|
|
2628
|
-
/* @__PURE__ */
|
|
2941
|
+
/* @__PURE__ */ jsx64(
|
|
2629
2942
|
"path",
|
|
2630
2943
|
{
|
|
2631
2944
|
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",
|
|
@@ -2641,13 +2954,42 @@ var PieChartIcon = forwardRef57(
|
|
|
2641
2954
|
}
|
|
2642
2955
|
);
|
|
2643
2956
|
|
|
2957
|
+
// src/icons/play.tsx
|
|
2958
|
+
import { forwardRef as forwardRef63 } from "react";
|
|
2959
|
+
import { jsx as jsx65 } from "react/jsx-runtime";
|
|
2960
|
+
var PlayIcon = forwardRef63(function PlayIcon2(_a, ref) {
|
|
2961
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2962
|
+
return /* @__PURE__ */ jsx65(
|
|
2963
|
+
"svg",
|
|
2964
|
+
__spreadProps(__spreadValues({
|
|
2965
|
+
ref,
|
|
2966
|
+
width: size,
|
|
2967
|
+
height: size,
|
|
2968
|
+
viewBox: "0 0 32 32",
|
|
2969
|
+
fill: "none",
|
|
2970
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2971
|
+
className
|
|
2972
|
+
}, other), {
|
|
2973
|
+
children: /* @__PURE__ */ jsx65(
|
|
2974
|
+
"path",
|
|
2975
|
+
{
|
|
2976
|
+
fillRule: "evenodd",
|
|
2977
|
+
clipRule: "evenodd",
|
|
2978
|
+
d: "M10.6752 3.73624C10.6911 3.74687 10.7071 3.75753 10.7231 3.76823L24.7881 13.1449C25.1951 13.4161 25.5724 13.6676 25.8622 13.9014C26.1647 14.1453 26.5212 14.4835 26.7264 14.9783C26.9976 15.6323 26.9976 16.3673 26.7264 17.0214C26.5212 17.5162 26.1647 17.8544 25.8622 18.0983C25.5724 18.332 25.1951 18.5835 24.7882 18.8547L10.6752 28.2634C10.1778 28.5951 9.73045 28.8933 9.35089 29.099C8.97108 29.3049 8.44973 29.5401 7.84123 29.5037C7.06289 29.4573 6.34389 29.0725 5.87347 28.4506C5.50571 27.9645 5.41223 27.4002 5.37281 26.97C5.33342 26.5401 5.33346 26.0025 5.3335 25.4047L5.3335 6.65267C5.3335 6.63339 5.3335 6.61417 5.3335 6.59501C5.33346 5.99715 5.33342 5.45955 5.37281 5.02966C5.41223 4.59945 5.50571 4.03519 5.87347 3.54904C6.34389 2.9272 7.06289 2.5424 7.84123 2.49593C8.44973 2.4596 8.97108 2.69481 9.3509 2.90065C9.73044 3.10634 10.1777 3.40458 10.6752 3.73624Z",
|
|
2979
|
+
fill: "currentColor"
|
|
2980
|
+
}
|
|
2981
|
+
)
|
|
2982
|
+
})
|
|
2983
|
+
);
|
|
2984
|
+
});
|
|
2985
|
+
|
|
2644
2986
|
// src/icons/playCircle.tsx
|
|
2645
|
-
import { forwardRef as
|
|
2646
|
-
import { jsx as
|
|
2647
|
-
var PlayCircleIcon =
|
|
2987
|
+
import { forwardRef as forwardRef64 } from "react";
|
|
2988
|
+
import { jsx as jsx66, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
2989
|
+
var PlayCircleIcon = forwardRef64(
|
|
2648
2990
|
function PlayCircleIcon2(_a, ref) {
|
|
2649
2991
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2650
|
-
return /* @__PURE__ */
|
|
2992
|
+
return /* @__PURE__ */ jsxs44(
|
|
2651
2993
|
"svg",
|
|
2652
2994
|
__spreadProps(__spreadValues({
|
|
2653
2995
|
ref,
|
|
@@ -2659,7 +3001,7 @@ var PlayCircleIcon = forwardRef58(
|
|
|
2659
3001
|
className
|
|
2660
3002
|
}, other), {
|
|
2661
3003
|
children: [
|
|
2662
|
-
duotone && /* @__PURE__ */
|
|
3004
|
+
duotone && /* @__PURE__ */ jsx66(
|
|
2663
3005
|
"path",
|
|
2664
3006
|
{
|
|
2665
3007
|
opacity: "0.12",
|
|
@@ -2667,7 +3009,7 @@ var PlayCircleIcon = forwardRef58(
|
|
|
2667
3009
|
fill: "currentColor"
|
|
2668
3010
|
}
|
|
2669
3011
|
),
|
|
2670
|
-
/* @__PURE__ */
|
|
3012
|
+
/* @__PURE__ */ jsx66(
|
|
2671
3013
|
"path",
|
|
2672
3014
|
{
|
|
2673
3015
|
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",
|
|
@@ -2678,7 +3020,7 @@ var PlayCircleIcon = forwardRef58(
|
|
|
2678
3020
|
}
|
|
2679
3021
|
),
|
|
2680
3022
|
",",
|
|
2681
|
-
/* @__PURE__ */
|
|
3023
|
+
/* @__PURE__ */ jsx66(
|
|
2682
3024
|
"path",
|
|
2683
3025
|
{
|
|
2684
3026
|
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",
|
|
@@ -2695,11 +3037,11 @@ var PlayCircleIcon = forwardRef58(
|
|
|
2695
3037
|
);
|
|
2696
3038
|
|
|
2697
3039
|
// src/icons/plus.tsx
|
|
2698
|
-
import { forwardRef as
|
|
2699
|
-
import { jsx as
|
|
2700
|
-
var PlusIcon =
|
|
3040
|
+
import { forwardRef as forwardRef65 } from "react";
|
|
3041
|
+
import { jsx as jsx67 } from "react/jsx-runtime";
|
|
3042
|
+
var PlusIcon = forwardRef65(function PlusIcon2(_a, ref) {
|
|
2701
3043
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2702
|
-
return /* @__PURE__ */
|
|
3044
|
+
return /* @__PURE__ */ jsx67(
|
|
2703
3045
|
"svg",
|
|
2704
3046
|
__spreadProps(__spreadValues({
|
|
2705
3047
|
ref,
|
|
@@ -2710,7 +3052,7 @@ var PlusIcon = forwardRef59(function PlusIcon2(_a, ref) {
|
|
|
2710
3052
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2711
3053
|
className
|
|
2712
3054
|
}, other), {
|
|
2713
|
-
children: /* @__PURE__ */
|
|
3055
|
+
children: /* @__PURE__ */ jsx67(
|
|
2714
3056
|
"path",
|
|
2715
3057
|
{
|
|
2716
3058
|
d: "M12 5V19M5 12H19",
|
|
@@ -2725,12 +3067,12 @@ var PlusIcon = forwardRef59(function PlusIcon2(_a, ref) {
|
|
|
2725
3067
|
});
|
|
2726
3068
|
|
|
2727
3069
|
// src/icons/plusCircle.tsx
|
|
2728
|
-
import { forwardRef as
|
|
2729
|
-
import { jsx as
|
|
2730
|
-
var PlusCircleIcon =
|
|
3070
|
+
import { forwardRef as forwardRef66 } from "react";
|
|
3071
|
+
import { jsx as jsx68, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3072
|
+
var PlusCircleIcon = forwardRef66(
|
|
2731
3073
|
function PlusCircleIcon2(_a, ref) {
|
|
2732
3074
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2733
|
-
return /* @__PURE__ */
|
|
3075
|
+
return /* @__PURE__ */ jsxs45(
|
|
2734
3076
|
"svg",
|
|
2735
3077
|
__spreadProps(__spreadValues({
|
|
2736
3078
|
ref,
|
|
@@ -2742,7 +3084,7 @@ var PlusCircleIcon = forwardRef60(
|
|
|
2742
3084
|
className
|
|
2743
3085
|
}, other), {
|
|
2744
3086
|
children: [
|
|
2745
|
-
duotone && /* @__PURE__ */
|
|
3087
|
+
duotone && /* @__PURE__ */ jsx68(
|
|
2746
3088
|
"path",
|
|
2747
3089
|
{
|
|
2748
3090
|
opacity: "0.12",
|
|
@@ -2750,7 +3092,7 @@ var PlusCircleIcon = forwardRef60(
|
|
|
2750
3092
|
fill: "currentColor"
|
|
2751
3093
|
}
|
|
2752
3094
|
),
|
|
2753
|
-
/* @__PURE__ */
|
|
3095
|
+
/* @__PURE__ */ jsx68(
|
|
2754
3096
|
"path",
|
|
2755
3097
|
{
|
|
2756
3098
|
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",
|
|
@@ -2767,12 +3109,12 @@ var PlusCircleIcon = forwardRef60(
|
|
|
2767
3109
|
);
|
|
2768
3110
|
|
|
2769
3111
|
// src/icons/puzzlePiece.tsx
|
|
2770
|
-
import { forwardRef as
|
|
2771
|
-
import { jsx as
|
|
2772
|
-
var PuzzlePieceIcon =
|
|
3112
|
+
import { forwardRef as forwardRef67 } from "react";
|
|
3113
|
+
import { jsx as jsx69, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3114
|
+
var PuzzlePieceIcon = forwardRef67(
|
|
2773
3115
|
function PuzzlePieceIcon2(_a, ref) {
|
|
2774
3116
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2775
|
-
return /* @__PURE__ */
|
|
3117
|
+
return /* @__PURE__ */ jsxs46(
|
|
2776
3118
|
"svg",
|
|
2777
3119
|
__spreadProps(__spreadValues({
|
|
2778
3120
|
ref,
|
|
@@ -2784,7 +3126,7 @@ var PuzzlePieceIcon = forwardRef61(
|
|
|
2784
3126
|
className
|
|
2785
3127
|
}, other), {
|
|
2786
3128
|
children: [
|
|
2787
|
-
duotone && /* @__PURE__ */
|
|
3129
|
+
duotone && /* @__PURE__ */ jsx69(
|
|
2788
3130
|
"path",
|
|
2789
3131
|
{
|
|
2790
3132
|
opacity: "0.12",
|
|
@@ -2792,7 +3134,7 @@ var PuzzlePieceIcon = forwardRef61(
|
|
|
2792
3134
|
fill: "currentColor"
|
|
2793
3135
|
}
|
|
2794
3136
|
),
|
|
2795
|
-
/* @__PURE__ */
|
|
3137
|
+
/* @__PURE__ */ jsx69(
|
|
2796
3138
|
"path",
|
|
2797
3139
|
{
|
|
2798
3140
|
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",
|
|
@@ -2809,12 +3151,12 @@ var PuzzlePieceIcon = forwardRef61(
|
|
|
2809
3151
|
);
|
|
2810
3152
|
|
|
2811
3153
|
// src/icons/qrCode.tsx
|
|
2812
|
-
import { forwardRef as
|
|
2813
|
-
import { jsx as
|
|
2814
|
-
var QrCodeIcon =
|
|
3154
|
+
import { forwardRef as forwardRef68 } from "react";
|
|
3155
|
+
import { jsx as jsx70, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
3156
|
+
var QrCodeIcon = forwardRef68(
|
|
2815
3157
|
function QrCodeIcon2(_a, ref) {
|
|
2816
3158
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2817
|
-
return /* @__PURE__ */
|
|
3159
|
+
return /* @__PURE__ */ jsxs47(
|
|
2818
3160
|
"svg",
|
|
2819
3161
|
__spreadProps(__spreadValues({
|
|
2820
3162
|
ref,
|
|
@@ -2826,7 +3168,7 @@ var QrCodeIcon = forwardRef62(
|
|
|
2826
3168
|
className
|
|
2827
3169
|
}, other), {
|
|
2828
3170
|
children: [
|
|
2829
|
-
duotone && /* @__PURE__ */
|
|
3171
|
+
duotone && /* @__PURE__ */ jsx70(
|
|
2830
3172
|
"path",
|
|
2831
3173
|
{
|
|
2832
3174
|
opacity: "0.4",
|
|
@@ -2837,7 +3179,7 @@ var QrCodeIcon = forwardRef62(
|
|
|
2837
3179
|
strokeLinejoin: "round"
|
|
2838
3180
|
}
|
|
2839
3181
|
),
|
|
2840
|
-
/* @__PURE__ */
|
|
3182
|
+
/* @__PURE__ */ jsx70(
|
|
2841
3183
|
"path",
|
|
2842
3184
|
{
|
|
2843
3185
|
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",
|
|
@@ -2854,12 +3196,12 @@ var QrCodeIcon = forwardRef62(
|
|
|
2854
3196
|
);
|
|
2855
3197
|
|
|
2856
3198
|
// src/icons/receiptCheck.tsx
|
|
2857
|
-
import { forwardRef as
|
|
2858
|
-
import { jsx as
|
|
2859
|
-
var ReceiptCheckIcon =
|
|
3199
|
+
import { forwardRef as forwardRef69 } from "react";
|
|
3200
|
+
import { jsx as jsx71, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
3201
|
+
var ReceiptCheckIcon = forwardRef69(
|
|
2860
3202
|
function ReceiptCheckIcon2(_a, ref) {
|
|
2861
3203
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2862
|
-
return /* @__PURE__ */
|
|
3204
|
+
return /* @__PURE__ */ jsxs48(
|
|
2863
3205
|
"svg",
|
|
2864
3206
|
__spreadProps(__spreadValues({
|
|
2865
3207
|
ref,
|
|
@@ -2871,7 +3213,7 @@ var ReceiptCheckIcon = forwardRef63(
|
|
|
2871
3213
|
className
|
|
2872
3214
|
}, other), {
|
|
2873
3215
|
children: [
|
|
2874
|
-
duotone && /* @__PURE__ */
|
|
3216
|
+
duotone && /* @__PURE__ */ jsx71(
|
|
2875
3217
|
"path",
|
|
2876
3218
|
{
|
|
2877
3219
|
opacity: "0.12",
|
|
@@ -2879,7 +3221,7 @@ var ReceiptCheckIcon = forwardRef63(
|
|
|
2879
3221
|
fill: "currentColor"
|
|
2880
3222
|
}
|
|
2881
3223
|
),
|
|
2882
|
-
/* @__PURE__ */
|
|
3224
|
+
/* @__PURE__ */ jsx71(
|
|
2883
3225
|
"path",
|
|
2884
3226
|
{
|
|
2885
3227
|
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",
|
|
@@ -2896,12 +3238,12 @@ var ReceiptCheckIcon = forwardRef63(
|
|
|
2896
3238
|
);
|
|
2897
3239
|
|
|
2898
3240
|
// src/icons/recording.tsx
|
|
2899
|
-
import { forwardRef as
|
|
2900
|
-
import { jsx as
|
|
2901
|
-
var RecordingIcon =
|
|
3241
|
+
import { forwardRef as forwardRef70 } from "react";
|
|
3242
|
+
import { jsx as jsx72, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
3243
|
+
var RecordingIcon = forwardRef70(
|
|
2902
3244
|
function RecordingIcon2(_a, ref) {
|
|
2903
3245
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2904
|
-
return /* @__PURE__ */
|
|
3246
|
+
return /* @__PURE__ */ jsxs49(
|
|
2905
3247
|
"svg",
|
|
2906
3248
|
__spreadProps(__spreadValues({
|
|
2907
3249
|
ref,
|
|
@@ -2913,7 +3255,7 @@ var RecordingIcon = forwardRef64(
|
|
|
2913
3255
|
className
|
|
2914
3256
|
}, other), {
|
|
2915
3257
|
children: [
|
|
2916
|
-
duotone && /* @__PURE__ */
|
|
3258
|
+
duotone && /* @__PURE__ */ jsx72(
|
|
2917
3259
|
"path",
|
|
2918
3260
|
{
|
|
2919
3261
|
opacity: "0.12",
|
|
@@ -2921,7 +3263,7 @@ var RecordingIcon = forwardRef64(
|
|
|
2921
3263
|
fill: "currentColor"
|
|
2922
3264
|
}
|
|
2923
3265
|
),
|
|
2924
|
-
/* @__PURE__ */
|
|
3266
|
+
/* @__PURE__ */ jsx72(
|
|
2925
3267
|
"path",
|
|
2926
3268
|
{
|
|
2927
3269
|
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",
|
|
@@ -2938,12 +3280,12 @@ var RecordingIcon = forwardRef64(
|
|
|
2938
3280
|
);
|
|
2939
3281
|
|
|
2940
3282
|
// src/icons/refreshCcw.tsx
|
|
2941
|
-
import { forwardRef as
|
|
2942
|
-
import { jsx as
|
|
2943
|
-
var RefreshCcwIcon =
|
|
3283
|
+
import { forwardRef as forwardRef71 } from "react";
|
|
3284
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3285
|
+
var RefreshCcwIcon = forwardRef71(
|
|
2944
3286
|
function RefreshCcwIcon2(_a, ref) {
|
|
2945
3287
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2946
|
-
return /* @__PURE__ */
|
|
3288
|
+
return /* @__PURE__ */ jsx73(
|
|
2947
3289
|
"svg",
|
|
2948
3290
|
__spreadProps(__spreadValues({
|
|
2949
3291
|
ref,
|
|
@@ -2954,7 +3296,7 @@ var RefreshCcwIcon = forwardRef65(
|
|
|
2954
3296
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2955
3297
|
className
|
|
2956
3298
|
}, other), {
|
|
2957
|
-
children: /* @__PURE__ */
|
|
3299
|
+
children: /* @__PURE__ */ jsx73(
|
|
2958
3300
|
"path",
|
|
2959
3301
|
{
|
|
2960
3302
|
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",
|
|
@@ -2970,12 +3312,12 @@ var RefreshCcwIcon = forwardRef65(
|
|
|
2970
3312
|
);
|
|
2971
3313
|
|
|
2972
3314
|
// src/icons/refreshCw.tsx
|
|
2973
|
-
import { forwardRef as
|
|
2974
|
-
import { jsx as
|
|
2975
|
-
var RefreshCwIcon =
|
|
3315
|
+
import { forwardRef as forwardRef72 } from "react";
|
|
3316
|
+
import { jsx as jsx74 } from "react/jsx-runtime";
|
|
3317
|
+
var RefreshCwIcon = forwardRef72(
|
|
2976
3318
|
function RefreshCwIcon2(_a, ref) {
|
|
2977
3319
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2978
|
-
return /* @__PURE__ */
|
|
3320
|
+
return /* @__PURE__ */ jsx74(
|
|
2979
3321
|
"svg",
|
|
2980
3322
|
__spreadProps(__spreadValues({
|
|
2981
3323
|
ref,
|
|
@@ -2986,7 +3328,7 @@ var RefreshCwIcon = forwardRef66(
|
|
|
2986
3328
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2987
3329
|
className
|
|
2988
3330
|
}, other), {
|
|
2989
|
-
children: /* @__PURE__ */
|
|
3331
|
+
children: /* @__PURE__ */ jsx74(
|
|
2990
3332
|
"path",
|
|
2991
3333
|
{
|
|
2992
3334
|
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",
|
|
@@ -3002,12 +3344,12 @@ var RefreshCwIcon = forwardRef66(
|
|
|
3002
3344
|
);
|
|
3003
3345
|
|
|
3004
3346
|
// src/icons/rocket.tsx
|
|
3005
|
-
import { forwardRef as
|
|
3006
|
-
import { jsx as
|
|
3007
|
-
var RocketIcon =
|
|
3347
|
+
import { forwardRef as forwardRef73 } from "react";
|
|
3348
|
+
import { jsx as jsx75, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
3349
|
+
var RocketIcon = forwardRef73(
|
|
3008
3350
|
function RocketIcon2(_a, ref) {
|
|
3009
3351
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3010
|
-
return /* @__PURE__ */
|
|
3352
|
+
return /* @__PURE__ */ jsxs50(
|
|
3011
3353
|
"svg",
|
|
3012
3354
|
__spreadProps(__spreadValues({
|
|
3013
3355
|
ref,
|
|
@@ -3019,7 +3361,7 @@ var RocketIcon = forwardRef67(
|
|
|
3019
3361
|
className
|
|
3020
3362
|
}, other), {
|
|
3021
3363
|
children: [
|
|
3022
|
-
duotone && /* @__PURE__ */
|
|
3364
|
+
duotone && /* @__PURE__ */ jsx75(
|
|
3023
3365
|
"path",
|
|
3024
3366
|
{
|
|
3025
3367
|
opacity: "0.12",
|
|
@@ -3027,7 +3369,7 @@ var RocketIcon = forwardRef67(
|
|
|
3027
3369
|
fill: "currentColor"
|
|
3028
3370
|
}
|
|
3029
3371
|
),
|
|
3030
|
-
/* @__PURE__ */
|
|
3372
|
+
/* @__PURE__ */ jsx75(
|
|
3031
3373
|
"path",
|
|
3032
3374
|
{
|
|
3033
3375
|
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",
|
|
@@ -3044,11 +3386,11 @@ var RocketIcon = forwardRef67(
|
|
|
3044
3386
|
);
|
|
3045
3387
|
|
|
3046
3388
|
// src/icons/save.tsx
|
|
3047
|
-
import { forwardRef as
|
|
3048
|
-
import { jsx as
|
|
3049
|
-
var SaveIcon =
|
|
3389
|
+
import { forwardRef as forwardRef74 } from "react";
|
|
3390
|
+
import { jsx as jsx76, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3391
|
+
var SaveIcon = forwardRef74(function SaveIcon2(_a, ref) {
|
|
3050
3392
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3051
|
-
return /* @__PURE__ */
|
|
3393
|
+
return /* @__PURE__ */ jsxs51(
|
|
3052
3394
|
"svg",
|
|
3053
3395
|
__spreadProps(__spreadValues({
|
|
3054
3396
|
ref,
|
|
@@ -3060,15 +3402,15 @@ var SaveIcon = forwardRef68(function SaveIcon2(_a, ref) {
|
|
|
3060
3402
|
className
|
|
3061
3403
|
}, other), {
|
|
3062
3404
|
children: [
|
|
3063
|
-
duotone && /* @__PURE__ */
|
|
3064
|
-
/* @__PURE__ */
|
|
3405
|
+
duotone && /* @__PURE__ */ jsxs51("g", { opacity: "0.12", children: [
|
|
3406
|
+
/* @__PURE__ */ jsx76(
|
|
3065
3407
|
"path",
|
|
3066
3408
|
{
|
|
3067
3409
|
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",
|
|
3068
3410
|
fill: "currentColor"
|
|
3069
3411
|
}
|
|
3070
3412
|
),
|
|
3071
|
-
/* @__PURE__ */
|
|
3413
|
+
/* @__PURE__ */ jsx76(
|
|
3072
3414
|
"path",
|
|
3073
3415
|
{
|
|
3074
3416
|
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",
|
|
@@ -3076,7 +3418,7 @@ var SaveIcon = forwardRef68(function SaveIcon2(_a, ref) {
|
|
|
3076
3418
|
}
|
|
3077
3419
|
)
|
|
3078
3420
|
] }),
|
|
3079
|
-
/* @__PURE__ */
|
|
3421
|
+
/* @__PURE__ */ jsx76(
|
|
3080
3422
|
"path",
|
|
3081
3423
|
{
|
|
3082
3424
|
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",
|
|
@@ -3092,12 +3434,12 @@ var SaveIcon = forwardRef68(function SaveIcon2(_a, ref) {
|
|
|
3092
3434
|
});
|
|
3093
3435
|
|
|
3094
3436
|
// src/icons/search.tsx
|
|
3095
|
-
import { forwardRef as
|
|
3096
|
-
import { jsx as
|
|
3097
|
-
var SearchMdIcon =
|
|
3437
|
+
import { forwardRef as forwardRef75 } from "react";
|
|
3438
|
+
import { jsx as jsx77, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3439
|
+
var SearchMdIcon = forwardRef75(
|
|
3098
3440
|
function SearchMdIcon2(_a, ref) {
|
|
3099
3441
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3100
|
-
return /* @__PURE__ */
|
|
3442
|
+
return /* @__PURE__ */ jsxs52(
|
|
3101
3443
|
"svg",
|
|
3102
3444
|
__spreadProps(__spreadValues({
|
|
3103
3445
|
ref,
|
|
@@ -3109,7 +3451,7 @@ var SearchMdIcon = forwardRef69(
|
|
|
3109
3451
|
className
|
|
3110
3452
|
}, other), {
|
|
3111
3453
|
children: [
|
|
3112
|
-
duotone && /* @__PURE__ */
|
|
3454
|
+
duotone && /* @__PURE__ */ jsx77(
|
|
3113
3455
|
"path",
|
|
3114
3456
|
{
|
|
3115
3457
|
opacity: "0.12",
|
|
@@ -3117,7 +3459,7 @@ var SearchMdIcon = forwardRef69(
|
|
|
3117
3459
|
fill: "currentColor"
|
|
3118
3460
|
}
|
|
3119
3461
|
),
|
|
3120
|
-
/* @__PURE__ */
|
|
3462
|
+
/* @__PURE__ */ jsx77(
|
|
3121
3463
|
"path",
|
|
3122
3464
|
{
|
|
3123
3465
|
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",
|
|
@@ -3134,11 +3476,11 @@ var SearchMdIcon = forwardRef69(
|
|
|
3134
3476
|
);
|
|
3135
3477
|
|
|
3136
3478
|
// src/icons/send.tsx
|
|
3137
|
-
import { forwardRef as
|
|
3138
|
-
import { jsx as
|
|
3139
|
-
var SendIcon =
|
|
3479
|
+
import { forwardRef as forwardRef76 } from "react";
|
|
3480
|
+
import { jsx as jsx78, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3481
|
+
var SendIcon = forwardRef76(function SendIcon2(_a, ref) {
|
|
3140
3482
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3141
|
-
return /* @__PURE__ */
|
|
3483
|
+
return /* @__PURE__ */ jsxs53(
|
|
3142
3484
|
"svg",
|
|
3143
3485
|
__spreadProps(__spreadValues({
|
|
3144
3486
|
ref,
|
|
@@ -3150,7 +3492,7 @@ var SendIcon = forwardRef70(function SendIcon2(_a, ref) {
|
|
|
3150
3492
|
className
|
|
3151
3493
|
}, other), {
|
|
3152
3494
|
children: [
|
|
3153
|
-
duotone && /* @__PURE__ */
|
|
3495
|
+
duotone && /* @__PURE__ */ jsx78(
|
|
3154
3496
|
"path",
|
|
3155
3497
|
{
|
|
3156
3498
|
opacity: "0.12",
|
|
@@ -3158,7 +3500,7 @@ var SendIcon = forwardRef70(function SendIcon2(_a, ref) {
|
|
|
3158
3500
|
fill: "currentColor"
|
|
3159
3501
|
}
|
|
3160
3502
|
),
|
|
3161
|
-
/* @__PURE__ */
|
|
3503
|
+
/* @__PURE__ */ jsx78(
|
|
3162
3504
|
"path",
|
|
3163
3505
|
{
|
|
3164
3506
|
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",
|
|
@@ -3174,12 +3516,12 @@ var SendIcon = forwardRef70(function SendIcon2(_a, ref) {
|
|
|
3174
3516
|
});
|
|
3175
3517
|
|
|
3176
3518
|
// src/icons/settings.tsx
|
|
3177
|
-
import { forwardRef as
|
|
3178
|
-
import { jsx as
|
|
3179
|
-
var SettingsIcon =
|
|
3519
|
+
import { forwardRef as forwardRef77 } from "react";
|
|
3520
|
+
import { jsx as jsx79, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3521
|
+
var SettingsIcon = forwardRef77(
|
|
3180
3522
|
function SettingsIcon2(_a, ref) {
|
|
3181
3523
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3182
|
-
return /* @__PURE__ */
|
|
3524
|
+
return /* @__PURE__ */ jsxs54(
|
|
3183
3525
|
"svg",
|
|
3184
3526
|
__spreadProps(__spreadValues({
|
|
3185
3527
|
ref,
|
|
@@ -3191,7 +3533,7 @@ var SettingsIcon = forwardRef71(
|
|
|
3191
3533
|
className
|
|
3192
3534
|
}, other), {
|
|
3193
3535
|
children: [
|
|
3194
|
-
duotone && /* @__PURE__ */
|
|
3536
|
+
duotone && /* @__PURE__ */ jsx79(
|
|
3195
3537
|
"path",
|
|
3196
3538
|
{
|
|
3197
3539
|
opacity: "0.12",
|
|
@@ -3201,7 +3543,7 @@ var SettingsIcon = forwardRef71(
|
|
|
3201
3543
|
fill: "currentColor"
|
|
3202
3544
|
}
|
|
3203
3545
|
),
|
|
3204
|
-
/* @__PURE__ */
|
|
3546
|
+
/* @__PURE__ */ jsx79(
|
|
3205
3547
|
"path",
|
|
3206
3548
|
{
|
|
3207
3549
|
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",
|
|
@@ -3212,7 +3554,7 @@ var SettingsIcon = forwardRef71(
|
|
|
3212
3554
|
}
|
|
3213
3555
|
),
|
|
3214
3556
|
",",
|
|
3215
|
-
/* @__PURE__ */
|
|
3557
|
+
/* @__PURE__ */ jsx79(
|
|
3216
3558
|
"path",
|
|
3217
3559
|
{
|
|
3218
3560
|
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",
|
|
@@ -3229,12 +3571,12 @@ var SettingsIcon = forwardRef71(
|
|
|
3229
3571
|
);
|
|
3230
3572
|
|
|
3231
3573
|
// src/icons/share.tsx
|
|
3232
|
-
import { forwardRef as
|
|
3233
|
-
import { jsx as
|
|
3234
|
-
var ShareIcon =
|
|
3574
|
+
import { forwardRef as forwardRef78 } from "react";
|
|
3575
|
+
import { jsx as jsx80, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3576
|
+
var ShareIcon = forwardRef78(
|
|
3235
3577
|
function ShareIcon2(_a, ref) {
|
|
3236
3578
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3237
|
-
return /* @__PURE__ */
|
|
3579
|
+
return /* @__PURE__ */ jsxs55(
|
|
3238
3580
|
"svg",
|
|
3239
3581
|
__spreadProps(__spreadValues({
|
|
3240
3582
|
ref,
|
|
@@ -3246,22 +3588,22 @@ var ShareIcon = forwardRef72(
|
|
|
3246
3588
|
className
|
|
3247
3589
|
}, other), {
|
|
3248
3590
|
children: [
|
|
3249
|
-
duotone && /* @__PURE__ */
|
|
3250
|
-
/* @__PURE__ */
|
|
3591
|
+
duotone && /* @__PURE__ */ jsxs55("g", { opacity: "0.12", children: [
|
|
3592
|
+
/* @__PURE__ */ jsx80(
|
|
3251
3593
|
"path",
|
|
3252
3594
|
{
|
|
3253
3595
|
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",
|
|
3254
3596
|
fill: "currentColor"
|
|
3255
3597
|
}
|
|
3256
3598
|
),
|
|
3257
|
-
/* @__PURE__ */
|
|
3599
|
+
/* @__PURE__ */ jsx80(
|
|
3258
3600
|
"path",
|
|
3259
3601
|
{
|
|
3260
3602
|
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",
|
|
3261
3603
|
fill: "currentColor"
|
|
3262
3604
|
}
|
|
3263
3605
|
),
|
|
3264
|
-
/* @__PURE__ */
|
|
3606
|
+
/* @__PURE__ */ jsx80(
|
|
3265
3607
|
"path",
|
|
3266
3608
|
{
|
|
3267
3609
|
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",
|
|
@@ -3269,7 +3611,7 @@ var ShareIcon = forwardRef72(
|
|
|
3269
3611
|
}
|
|
3270
3612
|
)
|
|
3271
3613
|
] }),
|
|
3272
|
-
/* @__PURE__ */
|
|
3614
|
+
/* @__PURE__ */ jsx80(
|
|
3273
3615
|
"path",
|
|
3274
3616
|
{
|
|
3275
3617
|
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",
|
|
@@ -3286,12 +3628,12 @@ var ShareIcon = forwardRef72(
|
|
|
3286
3628
|
);
|
|
3287
3629
|
|
|
3288
3630
|
// src/icons/shareArrow.tsx
|
|
3289
|
-
import { forwardRef as
|
|
3290
|
-
import { jsx as
|
|
3291
|
-
var ShareArrowIcon =
|
|
3631
|
+
import { forwardRef as forwardRef79 } from "react";
|
|
3632
|
+
import { jsx as jsx81, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3633
|
+
var ShareArrowIcon = forwardRef79(
|
|
3292
3634
|
function ShareArrowIcon2(_a, ref) {
|
|
3293
3635
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3294
|
-
return /* @__PURE__ */
|
|
3636
|
+
return /* @__PURE__ */ jsxs56(
|
|
3295
3637
|
"svg",
|
|
3296
3638
|
__spreadProps(__spreadValues({
|
|
3297
3639
|
ref,
|
|
@@ -3303,7 +3645,7 @@ var ShareArrowIcon = forwardRef73(
|
|
|
3303
3645
|
className
|
|
3304
3646
|
}, other), {
|
|
3305
3647
|
children: [
|
|
3306
|
-
duotone && /* @__PURE__ */
|
|
3648
|
+
duotone && /* @__PURE__ */ jsx81(
|
|
3307
3649
|
"path",
|
|
3308
3650
|
{
|
|
3309
3651
|
opacity: "0.12",
|
|
@@ -3311,7 +3653,7 @@ var ShareArrowIcon = forwardRef73(
|
|
|
3311
3653
|
fill: "currentColor"
|
|
3312
3654
|
}
|
|
3313
3655
|
),
|
|
3314
|
-
/* @__PURE__ */
|
|
3656
|
+
/* @__PURE__ */ jsx81(
|
|
3315
3657
|
"path",
|
|
3316
3658
|
{
|
|
3317
3659
|
d: "M21 9.00001L21 3.00001M21 3.00001H15M21 3.00001L12 12M10 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V14",
|
|
@@ -3328,12 +3670,12 @@ var ShareArrowIcon = forwardRef73(
|
|
|
3328
3670
|
);
|
|
3329
3671
|
|
|
3330
3672
|
// src/icons/skipBack.tsx
|
|
3331
|
-
import { forwardRef as
|
|
3332
|
-
import { jsx as
|
|
3333
|
-
var SkipBackIcon =
|
|
3673
|
+
import { forwardRef as forwardRef80 } from "react";
|
|
3674
|
+
import { jsx as jsx82, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
3675
|
+
var SkipBackIcon = forwardRef80(
|
|
3334
3676
|
function SkipBackIcon2(_a, ref) {
|
|
3335
3677
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3336
|
-
return /* @__PURE__ */
|
|
3678
|
+
return /* @__PURE__ */ jsxs57(
|
|
3337
3679
|
"svg",
|
|
3338
3680
|
__spreadProps(__spreadValues({
|
|
3339
3681
|
ref,
|
|
@@ -3345,7 +3687,7 @@ var SkipBackIcon = forwardRef74(
|
|
|
3345
3687
|
className
|
|
3346
3688
|
}, other), {
|
|
3347
3689
|
children: [
|
|
3348
|
-
duotone && /* @__PURE__ */
|
|
3690
|
+
duotone && /* @__PURE__ */ jsx82(
|
|
3349
3691
|
"path",
|
|
3350
3692
|
{
|
|
3351
3693
|
opacity: "0.12",
|
|
@@ -3353,7 +3695,7 @@ var SkipBackIcon = forwardRef74(
|
|
|
3353
3695
|
fill: "currentColor"
|
|
3354
3696
|
}
|
|
3355
3697
|
),
|
|
3356
|
-
/* @__PURE__ */
|
|
3698
|
+
/* @__PURE__ */ jsx82(
|
|
3357
3699
|
"path",
|
|
3358
3700
|
{
|
|
3359
3701
|
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",
|
|
@@ -3370,12 +3712,12 @@ var SkipBackIcon = forwardRef74(
|
|
|
3370
3712
|
);
|
|
3371
3713
|
|
|
3372
3714
|
// src/icons/skipForward.tsx
|
|
3373
|
-
import { forwardRef as
|
|
3374
|
-
import { jsx as
|
|
3375
|
-
var SkipForwardIcon =
|
|
3715
|
+
import { forwardRef as forwardRef81 } from "react";
|
|
3716
|
+
import { jsx as jsx83, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
3717
|
+
var SkipForwardIcon = forwardRef81(
|
|
3376
3718
|
function SkipForwardIcon2(_a, ref) {
|
|
3377
3719
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3378
|
-
return /* @__PURE__ */
|
|
3720
|
+
return /* @__PURE__ */ jsxs58(
|
|
3379
3721
|
"svg",
|
|
3380
3722
|
__spreadProps(__spreadValues({
|
|
3381
3723
|
ref,
|
|
@@ -3387,7 +3729,7 @@ var SkipForwardIcon = forwardRef75(
|
|
|
3387
3729
|
className
|
|
3388
3730
|
}, other), {
|
|
3389
3731
|
children: [
|
|
3390
|
-
duotone && /* @__PURE__ */
|
|
3732
|
+
duotone && /* @__PURE__ */ jsx83(
|
|
3391
3733
|
"path",
|
|
3392
3734
|
{
|
|
3393
3735
|
opacity: "0.12",
|
|
@@ -3395,7 +3737,7 @@ var SkipForwardIcon = forwardRef75(
|
|
|
3395
3737
|
fill: "currentColor"
|
|
3396
3738
|
}
|
|
3397
3739
|
),
|
|
3398
|
-
/* @__PURE__ */
|
|
3740
|
+
/* @__PURE__ */ jsx83(
|
|
3399
3741
|
"path",
|
|
3400
3742
|
{
|
|
3401
3743
|
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",
|
|
@@ -3411,13 +3753,52 @@ var SkipForwardIcon = forwardRef75(
|
|
|
3411
3753
|
}
|
|
3412
3754
|
);
|
|
3413
3755
|
|
|
3756
|
+
// src/icons/spinner.tsx
|
|
3757
|
+
import { forwardRef as forwardRef82 } from "react";
|
|
3758
|
+
import { jsx as jsx84, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
3759
|
+
var SpinnerIcon = forwardRef82(
|
|
3760
|
+
function SpinnerIcon2(_a, ref) {
|
|
3761
|
+
var _b = _a, { size = 24, className = "animate-spin text-gray-1000" } = _b, other = __objRest(_b, ["size", "className"]);
|
|
3762
|
+
return /* @__PURE__ */ jsxs59(
|
|
3763
|
+
"svg",
|
|
3764
|
+
__spreadProps(__spreadValues({
|
|
3765
|
+
ref,
|
|
3766
|
+
width: size,
|
|
3767
|
+
height: size,
|
|
3768
|
+
viewBox: "0 0 25 24",
|
|
3769
|
+
fill: "none",
|
|
3770
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3771
|
+
className
|
|
3772
|
+
}, other), {
|
|
3773
|
+
children: [
|
|
3774
|
+
/* @__PURE__ */ jsx84(
|
|
3775
|
+
"path",
|
|
3776
|
+
{
|
|
3777
|
+
opacity: "0.12",
|
|
3778
|
+
d: "M24.5 12C24.5 18.6274 19.1274 24 12.5 24C5.87258 24 0.5 18.6274 0.5 12C0.5 5.37258 5.87258 0 12.5 0C19.1274 0 24.5 5.37258 24.5 12ZM3.668 12C3.668 16.8778 7.62222 20.832 12.5 20.832C17.3778 20.832 21.332 16.8778 21.332 12C21.332 7.12222 17.3778 3.168 12.5 3.168C7.62222 3.168 3.668 7.12222 3.668 12Z",
|
|
3779
|
+
fill: "currentColor"
|
|
3780
|
+
}
|
|
3781
|
+
),
|
|
3782
|
+
/* @__PURE__ */ jsx84(
|
|
3783
|
+
"path",
|
|
3784
|
+
{
|
|
3785
|
+
d: "M22.916 12C23.7908 12 24.5108 12.7122 24.3956 13.5794C24.1641 15.323 23.5512 17.0011 22.5928 18.4912C21.3476 20.4272 19.5719 21.9643 17.4774 22.919C15.3829 23.8738 13.058 24.206 10.7799 23.8761C8.50179 23.5461 6.36667 22.5679 4.62912 21.0581C2.89158 19.5483 1.62494 17.5706 0.98025 15.3609C0.335563 13.1511 0.340035 10.8026 0.993131 8.5953C1.64623 6.38803 2.92039 4.41517 4.66367 2.91199C6.00545 1.75501 7.58156 0.913857 9.27571 0.441275C10.1184 0.206218 10.9241 0.819698 11.0462 1.68595C11.1683 2.55221 10.5575 3.33995 9.72694 3.61463C8.63201 3.97673 7.61359 4.55146 6.73246 5.31122C5.44941 6.41757 4.51162 7.86959 4.03094 9.49414C3.55027 11.1187 3.54697 12.8472 4.02146 14.4736C4.49595 16.1 5.4282 17.5555 6.70703 18.6668C7.98587 19.778 9.55732 20.4979 11.234 20.7408C12.9107 20.9836 14.6218 20.7391 16.1634 20.0364C17.7049 19.3337 19.0119 18.2024 19.9283 16.7775C20.5576 15.799 20.9846 14.7103 21.1903 13.5755C21.3464 12.7148 22.0412 12 22.916 12Z",
|
|
3786
|
+
fill: "currentColor"
|
|
3787
|
+
}
|
|
3788
|
+
)
|
|
3789
|
+
]
|
|
3790
|
+
})
|
|
3791
|
+
);
|
|
3792
|
+
}
|
|
3793
|
+
);
|
|
3794
|
+
|
|
3414
3795
|
// src/icons/stars.tsx
|
|
3415
|
-
import { forwardRef as
|
|
3416
|
-
import { jsx as
|
|
3417
|
-
var StarsIcon =
|
|
3796
|
+
import { forwardRef as forwardRef83 } from "react";
|
|
3797
|
+
import { jsx as jsx85, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
3798
|
+
var StarsIcon = forwardRef83(
|
|
3418
3799
|
function StarsIcon2(_a, ref) {
|
|
3419
3800
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3420
|
-
return /* @__PURE__ */
|
|
3801
|
+
return /* @__PURE__ */ jsxs60(
|
|
3421
3802
|
"svg",
|
|
3422
3803
|
__spreadProps(__spreadValues({
|
|
3423
3804
|
ref,
|
|
@@ -3429,7 +3810,7 @@ var StarsIcon = forwardRef76(
|
|
|
3429
3810
|
className
|
|
3430
3811
|
}, other), {
|
|
3431
3812
|
children: [
|
|
3432
|
-
duotone && /* @__PURE__ */
|
|
3813
|
+
duotone && /* @__PURE__ */ jsx85(
|
|
3433
3814
|
"path",
|
|
3434
3815
|
{
|
|
3435
3816
|
opacity: "0.12",
|
|
@@ -3437,7 +3818,7 @@ var StarsIcon = forwardRef76(
|
|
|
3437
3818
|
fill: "currentColor"
|
|
3438
3819
|
}
|
|
3439
3820
|
),
|
|
3440
|
-
/* @__PURE__ */
|
|
3821
|
+
/* @__PURE__ */ jsx85(
|
|
3441
3822
|
"path",
|
|
3442
3823
|
{
|
|
3443
3824
|
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",
|
|
@@ -3454,12 +3835,12 @@ var StarsIcon = forwardRef76(
|
|
|
3454
3835
|
);
|
|
3455
3836
|
|
|
3456
3837
|
// src/icons/trash.tsx
|
|
3457
|
-
import { forwardRef as
|
|
3458
|
-
import { jsx as
|
|
3459
|
-
var TrashIcon =
|
|
3838
|
+
import { forwardRef as forwardRef84 } from "react";
|
|
3839
|
+
import { jsx as jsx86, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
3840
|
+
var TrashIcon = forwardRef84(
|
|
3460
3841
|
function TrashIcon2(_a, ref) {
|
|
3461
3842
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3462
|
-
return /* @__PURE__ */
|
|
3843
|
+
return /* @__PURE__ */ jsxs61(
|
|
3463
3844
|
"svg",
|
|
3464
3845
|
__spreadProps(__spreadValues({
|
|
3465
3846
|
ref,
|
|
@@ -3471,7 +3852,7 @@ var TrashIcon = forwardRef77(
|
|
|
3471
3852
|
className
|
|
3472
3853
|
}, other), {
|
|
3473
3854
|
children: [
|
|
3474
|
-
duotone && /* @__PURE__ */
|
|
3855
|
+
duotone && /* @__PURE__ */ jsx86(
|
|
3475
3856
|
"path",
|
|
3476
3857
|
{
|
|
3477
3858
|
opacity: "0.12",
|
|
@@ -3479,7 +3860,7 @@ var TrashIcon = forwardRef77(
|
|
|
3479
3860
|
fill: "currentColor"
|
|
3480
3861
|
}
|
|
3481
3862
|
),
|
|
3482
|
-
/* @__PURE__ */
|
|
3863
|
+
/* @__PURE__ */ jsx86(
|
|
3483
3864
|
"path",
|
|
3484
3865
|
{
|
|
3485
3866
|
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",
|
|
@@ -3496,12 +3877,12 @@ var TrashIcon = forwardRef77(
|
|
|
3496
3877
|
);
|
|
3497
3878
|
|
|
3498
3879
|
// src/icons/trendDown.tsx
|
|
3499
|
-
import { forwardRef as
|
|
3500
|
-
import { jsx as
|
|
3501
|
-
var TrendDownIcon =
|
|
3880
|
+
import { forwardRef as forwardRef85 } from "react";
|
|
3881
|
+
import { jsx as jsx87 } from "react/jsx-runtime";
|
|
3882
|
+
var TrendDownIcon = forwardRef85(
|
|
3502
3883
|
function TrendDownIcon2(_a, ref) {
|
|
3503
3884
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3504
|
-
return /* @__PURE__ */
|
|
3885
|
+
return /* @__PURE__ */ jsx87(
|
|
3505
3886
|
"svg",
|
|
3506
3887
|
__spreadProps(__spreadValues({
|
|
3507
3888
|
ref,
|
|
@@ -3512,7 +3893,7 @@ var TrendDownIcon = forwardRef78(
|
|
|
3512
3893
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3513
3894
|
className
|
|
3514
3895
|
}, other), {
|
|
3515
|
-
children: /* @__PURE__ */
|
|
3896
|
+
children: /* @__PURE__ */ jsx87(
|
|
3516
3897
|
"path",
|
|
3517
3898
|
{
|
|
3518
3899
|
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",
|
|
@@ -3528,12 +3909,12 @@ var TrendDownIcon = forwardRef78(
|
|
|
3528
3909
|
);
|
|
3529
3910
|
|
|
3530
3911
|
// src/icons/trendUp.tsx
|
|
3531
|
-
import { forwardRef as
|
|
3532
|
-
import { jsx as
|
|
3533
|
-
var TrendUpIcon =
|
|
3912
|
+
import { forwardRef as forwardRef86 } from "react";
|
|
3913
|
+
import { jsx as jsx88 } from "react/jsx-runtime";
|
|
3914
|
+
var TrendUpIcon = forwardRef86(
|
|
3534
3915
|
function TrendUpIcon2(_a, ref) {
|
|
3535
3916
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3536
|
-
return /* @__PURE__ */
|
|
3917
|
+
return /* @__PURE__ */ jsx88(
|
|
3537
3918
|
"svg",
|
|
3538
3919
|
__spreadProps(__spreadValues({
|
|
3539
3920
|
ref,
|
|
@@ -3544,7 +3925,7 @@ var TrendUpIcon = forwardRef79(
|
|
|
3544
3925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3545
3926
|
className
|
|
3546
3927
|
}, other), {
|
|
3547
|
-
children: /* @__PURE__ */
|
|
3928
|
+
children: /* @__PURE__ */ jsx88(
|
|
3548
3929
|
"path",
|
|
3549
3930
|
{
|
|
3550
3931
|
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",
|
|
@@ -3560,11 +3941,11 @@ var TrendUpIcon = forwardRef79(
|
|
|
3560
3941
|
);
|
|
3561
3942
|
|
|
3562
3943
|
// src/icons/user.tsx
|
|
3563
|
-
import { forwardRef as
|
|
3564
|
-
import { jsx as
|
|
3565
|
-
var UserIcon =
|
|
3944
|
+
import { forwardRef as forwardRef87 } from "react";
|
|
3945
|
+
import { jsx as jsx89, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
3946
|
+
var UserIcon = forwardRef87(function UserIcon2(_a, ref) {
|
|
3566
3947
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3567
|
-
return /* @__PURE__ */
|
|
3948
|
+
return /* @__PURE__ */ jsxs62(
|
|
3568
3949
|
"svg",
|
|
3569
3950
|
__spreadProps(__spreadValues({
|
|
3570
3951
|
ref,
|
|
@@ -3576,7 +3957,7 @@ var UserIcon = forwardRef80(function UserIcon2(_a, ref) {
|
|
|
3576
3957
|
className
|
|
3577
3958
|
}, other), {
|
|
3578
3959
|
children: [
|
|
3579
|
-
duotone && /* @__PURE__ */
|
|
3960
|
+
duotone && /* @__PURE__ */ jsx89(
|
|
3580
3961
|
"path",
|
|
3581
3962
|
{
|
|
3582
3963
|
opacity: "0.12",
|
|
@@ -3584,7 +3965,7 @@ var UserIcon = forwardRef80(function UserIcon2(_a, ref) {
|
|
|
3584
3965
|
fill: "currentColor"
|
|
3585
3966
|
}
|
|
3586
3967
|
),
|
|
3587
|
-
/* @__PURE__ */
|
|
3968
|
+
/* @__PURE__ */ jsx89(
|
|
3588
3969
|
"path",
|
|
3589
3970
|
{
|
|
3590
3971
|
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",
|
|
@@ -3600,12 +3981,12 @@ var UserIcon = forwardRef80(function UserIcon2(_a, ref) {
|
|
|
3600
3981
|
});
|
|
3601
3982
|
|
|
3602
3983
|
// src/icons/userPlus.tsx
|
|
3603
|
-
import { forwardRef as
|
|
3604
|
-
import { jsx as
|
|
3605
|
-
var UserPlusIcon =
|
|
3984
|
+
import { forwardRef as forwardRef88 } from "react";
|
|
3985
|
+
import { jsx as jsx90, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
3986
|
+
var UserPlusIcon = forwardRef88(
|
|
3606
3987
|
function UserPlusIcon2(_a, ref) {
|
|
3607
3988
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3608
|
-
return /* @__PURE__ */
|
|
3989
|
+
return /* @__PURE__ */ jsxs63(
|
|
3609
3990
|
"svg",
|
|
3610
3991
|
__spreadProps(__spreadValues({
|
|
3611
3992
|
ref,
|
|
@@ -3617,7 +3998,7 @@ var UserPlusIcon = forwardRef81(
|
|
|
3617
3998
|
className
|
|
3618
3999
|
}, other), {
|
|
3619
4000
|
children: [
|
|
3620
|
-
duotone && /* @__PURE__ */
|
|
4001
|
+
duotone && /* @__PURE__ */ jsx90(
|
|
3621
4002
|
"path",
|
|
3622
4003
|
{
|
|
3623
4004
|
opacity: "0.12",
|
|
@@ -3625,7 +4006,7 @@ var UserPlusIcon = forwardRef81(
|
|
|
3625
4006
|
fill: "currentColor"
|
|
3626
4007
|
}
|
|
3627
4008
|
),
|
|
3628
|
-
/* @__PURE__ */
|
|
4009
|
+
/* @__PURE__ */ jsx90(
|
|
3629
4010
|
"path",
|
|
3630
4011
|
{
|
|
3631
4012
|
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",
|
|
@@ -3642,12 +4023,12 @@ var UserPlusIcon = forwardRef81(
|
|
|
3642
4023
|
);
|
|
3643
4024
|
|
|
3644
4025
|
// src/icons/userX.tsx
|
|
3645
|
-
import { forwardRef as
|
|
3646
|
-
import { jsx as
|
|
3647
|
-
var UserXIcon =
|
|
4026
|
+
import { forwardRef as forwardRef89 } from "react";
|
|
4027
|
+
import { jsx as jsx91, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
4028
|
+
var UserXIcon = forwardRef89(
|
|
3648
4029
|
function UserXIcon2(_a, ref) {
|
|
3649
4030
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3650
|
-
return /* @__PURE__ */
|
|
4031
|
+
return /* @__PURE__ */ jsxs64(
|
|
3651
4032
|
"svg",
|
|
3652
4033
|
__spreadProps(__spreadValues({
|
|
3653
4034
|
ref,
|
|
@@ -3659,7 +4040,7 @@ var UserXIcon = forwardRef82(
|
|
|
3659
4040
|
className
|
|
3660
4041
|
}, other), {
|
|
3661
4042
|
children: [
|
|
3662
|
-
duotone && /* @__PURE__ */
|
|
4043
|
+
duotone && /* @__PURE__ */ jsx91(
|
|
3663
4044
|
"path",
|
|
3664
4045
|
{
|
|
3665
4046
|
opacity: "0.12",
|
|
@@ -3667,7 +4048,7 @@ var UserXIcon = forwardRef82(
|
|
|
3667
4048
|
fill: "currentColor"
|
|
3668
4049
|
}
|
|
3669
4050
|
),
|
|
3670
|
-
/* @__PURE__ */
|
|
4051
|
+
/* @__PURE__ */ jsx91(
|
|
3671
4052
|
"path",
|
|
3672
4053
|
{
|
|
3673
4054
|
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",
|
|
@@ -3684,12 +4065,12 @@ var UserXIcon = forwardRef82(
|
|
|
3684
4065
|
);
|
|
3685
4066
|
|
|
3686
4067
|
// src/icons/users.tsx
|
|
3687
|
-
import { forwardRef as
|
|
3688
|
-
import { jsx as
|
|
3689
|
-
var UsersIcon =
|
|
4068
|
+
import { forwardRef as forwardRef90 } from "react";
|
|
4069
|
+
import { jsx as jsx92, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
4070
|
+
var UsersIcon = forwardRef90(
|
|
3690
4071
|
function UsersIcon2(_a, ref) {
|
|
3691
4072
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3692
|
-
return /* @__PURE__ */
|
|
4073
|
+
return /* @__PURE__ */ jsxs65(
|
|
3693
4074
|
"svg",
|
|
3694
4075
|
__spreadProps(__spreadValues({
|
|
3695
4076
|
ref,
|
|
@@ -3701,7 +4082,7 @@ var UsersIcon = forwardRef83(
|
|
|
3701
4082
|
className
|
|
3702
4083
|
}, other), {
|
|
3703
4084
|
children: [
|
|
3704
|
-
duotone && /* @__PURE__ */
|
|
4085
|
+
duotone && /* @__PURE__ */ jsx92(
|
|
3705
4086
|
"path",
|
|
3706
4087
|
{
|
|
3707
4088
|
opacity: "0.12",
|
|
@@ -3709,7 +4090,7 @@ var UsersIcon = forwardRef83(
|
|
|
3709
4090
|
fill: "currentColor"
|
|
3710
4091
|
}
|
|
3711
4092
|
),
|
|
3712
|
-
/* @__PURE__ */
|
|
4093
|
+
/* @__PURE__ */ jsx92(
|
|
3713
4094
|
"path",
|
|
3714
4095
|
{
|
|
3715
4096
|
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",
|
|
@@ -3726,12 +4107,12 @@ var UsersIcon = forwardRef83(
|
|
|
3726
4107
|
);
|
|
3727
4108
|
|
|
3728
4109
|
// src/icons/usersPlus.tsx
|
|
3729
|
-
import { forwardRef as
|
|
3730
|
-
import { jsx as
|
|
3731
|
-
var UsersPlusIcon =
|
|
4110
|
+
import { forwardRef as forwardRef91 } from "react";
|
|
4111
|
+
import { jsx as jsx93, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
4112
|
+
var UsersPlusIcon = forwardRef91(
|
|
3732
4113
|
function UsersPlusIcon2(_a, ref) {
|
|
3733
4114
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3734
|
-
return /* @__PURE__ */
|
|
4115
|
+
return /* @__PURE__ */ jsxs66(
|
|
3735
4116
|
"svg",
|
|
3736
4117
|
__spreadProps(__spreadValues({
|
|
3737
4118
|
ref,
|
|
@@ -3743,7 +4124,7 @@ var UsersPlusIcon = forwardRef84(
|
|
|
3743
4124
|
className
|
|
3744
4125
|
}, other), {
|
|
3745
4126
|
children: [
|
|
3746
|
-
duotone && /* @__PURE__ */
|
|
4127
|
+
duotone && /* @__PURE__ */ jsx93(
|
|
3747
4128
|
"path",
|
|
3748
4129
|
{
|
|
3749
4130
|
opacity: "0.12",
|
|
@@ -3751,7 +4132,7 @@ var UsersPlusIcon = forwardRef84(
|
|
|
3751
4132
|
fill: "currentColor"
|
|
3752
4133
|
}
|
|
3753
4134
|
),
|
|
3754
|
-
/* @__PURE__ */
|
|
4135
|
+
/* @__PURE__ */ jsx93(
|
|
3755
4136
|
"path",
|
|
3756
4137
|
{
|
|
3757
4138
|
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",
|
|
@@ -3768,12 +4149,12 @@ var UsersPlusIcon = forwardRef84(
|
|
|
3768
4149
|
);
|
|
3769
4150
|
|
|
3770
4151
|
// src/icons/usersX.tsx
|
|
3771
|
-
import { forwardRef as
|
|
3772
|
-
import { jsx as
|
|
3773
|
-
var UsersXIcon =
|
|
4152
|
+
import { forwardRef as forwardRef92 } from "react";
|
|
4153
|
+
import { jsx as jsx94, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
4154
|
+
var UsersXIcon = forwardRef92(
|
|
3774
4155
|
function UsersXIcon2(_a, ref) {
|
|
3775
4156
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3776
|
-
return /* @__PURE__ */
|
|
4157
|
+
return /* @__PURE__ */ jsxs67(
|
|
3777
4158
|
"svg",
|
|
3778
4159
|
__spreadProps(__spreadValues({
|
|
3779
4160
|
ref,
|
|
@@ -3785,7 +4166,7 @@ var UsersXIcon = forwardRef85(
|
|
|
3785
4166
|
className
|
|
3786
4167
|
}, other), {
|
|
3787
4168
|
children: [
|
|
3788
|
-
duotone && /* @__PURE__ */
|
|
4169
|
+
duotone && /* @__PURE__ */ jsx94(
|
|
3789
4170
|
"path",
|
|
3790
4171
|
{
|
|
3791
4172
|
opacity: "0.12",
|
|
@@ -3793,7 +4174,7 @@ var UsersXIcon = forwardRef85(
|
|
|
3793
4174
|
fill: "currentColor"
|
|
3794
4175
|
}
|
|
3795
4176
|
),
|
|
3796
|
-
/* @__PURE__ */
|
|
4177
|
+
/* @__PURE__ */ jsx94(
|
|
3797
4178
|
"path",
|
|
3798
4179
|
{
|
|
3799
4180
|
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",
|
|
@@ -3810,12 +4191,12 @@ var UsersXIcon = forwardRef85(
|
|
|
3810
4191
|
);
|
|
3811
4192
|
|
|
3812
4193
|
// src/icons/videoRecorder.tsx
|
|
3813
|
-
import { forwardRef as
|
|
3814
|
-
import { jsx as
|
|
3815
|
-
var VideoRecorderIcon =
|
|
4194
|
+
import { forwardRef as forwardRef93 } from "react";
|
|
4195
|
+
import { jsx as jsx95, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
4196
|
+
var VideoRecorderIcon = forwardRef93(
|
|
3816
4197
|
function VideoRecorderIcon2(_a, ref) {
|
|
3817
4198
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3818
|
-
return /* @__PURE__ */
|
|
4199
|
+
return /* @__PURE__ */ jsxs68(
|
|
3819
4200
|
"svg",
|
|
3820
4201
|
__spreadProps(__spreadValues({
|
|
3821
4202
|
ref,
|
|
@@ -3827,7 +4208,7 @@ var VideoRecorderIcon = forwardRef86(
|
|
|
3827
4208
|
className
|
|
3828
4209
|
}, other), {
|
|
3829
4210
|
children: [
|
|
3830
|
-
duotone && /* @__PURE__ */
|
|
4211
|
+
duotone && /* @__PURE__ */ jsx95(
|
|
3831
4212
|
"path",
|
|
3832
4213
|
{
|
|
3833
4214
|
opacity: "0.12",
|
|
@@ -3839,7 +4220,7 @@ var VideoRecorderIcon = forwardRef86(
|
|
|
3839
4220
|
strokeLinejoin: "round"
|
|
3840
4221
|
}
|
|
3841
4222
|
),
|
|
3842
|
-
/* @__PURE__ */
|
|
4223
|
+
/* @__PURE__ */ jsx95(
|
|
3843
4224
|
"path",
|
|
3844
4225
|
{
|
|
3845
4226
|
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",
|
|
@@ -3850,7 +4231,7 @@ var VideoRecorderIcon = forwardRef86(
|
|
|
3850
4231
|
}
|
|
3851
4232
|
),
|
|
3852
4233
|
",",
|
|
3853
|
-
/* @__PURE__ */
|
|
4234
|
+
/* @__PURE__ */ jsx95(
|
|
3854
4235
|
"path",
|
|
3855
4236
|
{
|
|
3856
4237
|
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",
|
|
@@ -3867,12 +4248,12 @@ var VideoRecorderIcon = forwardRef86(
|
|
|
3867
4248
|
);
|
|
3868
4249
|
|
|
3869
4250
|
// src/icons/videoRecorderOff.tsx
|
|
3870
|
-
import { forwardRef as
|
|
3871
|
-
import { jsx as
|
|
3872
|
-
var VideoRecorderOffIcon =
|
|
4251
|
+
import { forwardRef as forwardRef94 } from "react";
|
|
4252
|
+
import { jsx as jsx96, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4253
|
+
var VideoRecorderOffIcon = forwardRef94(
|
|
3873
4254
|
function VideoRecorderOffIcon2(_a, ref) {
|
|
3874
4255
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3875
|
-
return /* @__PURE__ */
|
|
4256
|
+
return /* @__PURE__ */ jsxs69(
|
|
3876
4257
|
"svg",
|
|
3877
4258
|
__spreadProps(__spreadValues({
|
|
3878
4259
|
ref,
|
|
@@ -3884,7 +4265,7 @@ var VideoRecorderOffIcon = forwardRef87(
|
|
|
3884
4265
|
className
|
|
3885
4266
|
}, other), {
|
|
3886
4267
|
children: [
|
|
3887
|
-
duotone && /* @__PURE__ */
|
|
4268
|
+
duotone && /* @__PURE__ */ jsx96(
|
|
3888
4269
|
"path",
|
|
3889
4270
|
{
|
|
3890
4271
|
opacity: "0.12",
|
|
@@ -3896,7 +4277,7 @@ var VideoRecorderOffIcon = forwardRef87(
|
|
|
3896
4277
|
strokeLinejoin: "round"
|
|
3897
4278
|
}
|
|
3898
4279
|
),
|
|
3899
|
-
/* @__PURE__ */
|
|
4280
|
+
/* @__PURE__ */ jsx96(
|
|
3900
4281
|
"path",
|
|
3901
4282
|
{
|
|
3902
4283
|
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",
|
|
@@ -3913,12 +4294,12 @@ var VideoRecorderOffIcon = forwardRef87(
|
|
|
3913
4294
|
);
|
|
3914
4295
|
|
|
3915
4296
|
// src/icons/volumeMax.tsx
|
|
3916
|
-
import { forwardRef as
|
|
3917
|
-
import { jsx as
|
|
3918
|
-
var VolumeMaxIcon =
|
|
4297
|
+
import { forwardRef as forwardRef95 } from "react";
|
|
4298
|
+
import { jsx as jsx97, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4299
|
+
var VolumeMaxIcon = forwardRef95(
|
|
3919
4300
|
function VolumeMaxIcon2(_a, ref) {
|
|
3920
4301
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3921
|
-
return /* @__PURE__ */
|
|
4302
|
+
return /* @__PURE__ */ jsxs70(
|
|
3922
4303
|
"svg",
|
|
3923
4304
|
__spreadProps(__spreadValues({
|
|
3924
4305
|
ref,
|
|
@@ -3930,7 +4311,7 @@ var VolumeMaxIcon = forwardRef88(
|
|
|
3930
4311
|
className
|
|
3931
4312
|
}, other), {
|
|
3932
4313
|
children: [
|
|
3933
|
-
duotone && /* @__PURE__ */
|
|
4314
|
+
duotone && /* @__PURE__ */ jsx97(
|
|
3934
4315
|
"path",
|
|
3935
4316
|
{
|
|
3936
4317
|
opacity: "0.12",
|
|
@@ -3938,7 +4319,7 @@ var VolumeMaxIcon = forwardRef88(
|
|
|
3938
4319
|
fill: "currentColor"
|
|
3939
4320
|
}
|
|
3940
4321
|
),
|
|
3941
|
-
/* @__PURE__ */
|
|
4322
|
+
/* @__PURE__ */ jsx97(
|
|
3942
4323
|
"path",
|
|
3943
4324
|
{
|
|
3944
4325
|
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",
|
|
@@ -3955,12 +4336,12 @@ var VolumeMaxIcon = forwardRef88(
|
|
|
3955
4336
|
);
|
|
3956
4337
|
|
|
3957
4338
|
// src/icons/volumeX.tsx
|
|
3958
|
-
import { forwardRef as
|
|
3959
|
-
import { jsx as
|
|
3960
|
-
var VolumeXIcon =
|
|
4339
|
+
import { forwardRef as forwardRef96 } from "react";
|
|
4340
|
+
import { jsx as jsx98, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4341
|
+
var VolumeXIcon = forwardRef96(
|
|
3961
4342
|
function VolumeXIcon2(_a, ref) {
|
|
3962
4343
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3963
|
-
return /* @__PURE__ */
|
|
4344
|
+
return /* @__PURE__ */ jsxs71(
|
|
3964
4345
|
"svg",
|
|
3965
4346
|
__spreadProps(__spreadValues({
|
|
3966
4347
|
ref,
|
|
@@ -3972,7 +4353,7 @@ var VolumeXIcon = forwardRef89(
|
|
|
3972
4353
|
className
|
|
3973
4354
|
}, other), {
|
|
3974
4355
|
children: [
|
|
3975
|
-
duotone && /* @__PURE__ */
|
|
4356
|
+
duotone && /* @__PURE__ */ jsx98(
|
|
3976
4357
|
"path",
|
|
3977
4358
|
{
|
|
3978
4359
|
opacity: "0.12",
|
|
@@ -3980,7 +4361,7 @@ var VolumeXIcon = forwardRef89(
|
|
|
3980
4361
|
fill: "currentColor"
|
|
3981
4362
|
}
|
|
3982
4363
|
),
|
|
3983
|
-
/* @__PURE__ */
|
|
4364
|
+
/* @__PURE__ */ jsx98(
|
|
3984
4365
|
"path",
|
|
3985
4366
|
{
|
|
3986
4367
|
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",
|
|
@@ -3997,12 +4378,12 @@ var VolumeXIcon = forwardRef89(
|
|
|
3997
4378
|
);
|
|
3998
4379
|
|
|
3999
4380
|
// src/icons/xCircle.tsx
|
|
4000
|
-
import { forwardRef as
|
|
4001
|
-
import { jsx as
|
|
4002
|
-
var XCircleIcon =
|
|
4381
|
+
import { forwardRef as forwardRef97 } from "react";
|
|
4382
|
+
import { jsx as jsx99, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
4383
|
+
var XCircleIcon = forwardRef97(
|
|
4003
4384
|
function XCircleIcon2(_a, ref) {
|
|
4004
4385
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4005
|
-
return /* @__PURE__ */
|
|
4386
|
+
return /* @__PURE__ */ jsxs72(
|
|
4006
4387
|
"svg",
|
|
4007
4388
|
__spreadProps(__spreadValues({
|
|
4008
4389
|
ref,
|
|
@@ -4014,7 +4395,7 @@ var XCircleIcon = forwardRef90(
|
|
|
4014
4395
|
className
|
|
4015
4396
|
}, other), {
|
|
4016
4397
|
children: [
|
|
4017
|
-
duotone && /* @__PURE__ */
|
|
4398
|
+
duotone && /* @__PURE__ */ jsx99(
|
|
4018
4399
|
"path",
|
|
4019
4400
|
{
|
|
4020
4401
|
opacity: "0.12",
|
|
@@ -4022,7 +4403,7 @@ var XCircleIcon = forwardRef90(
|
|
|
4022
4403
|
fill: "currentColor"
|
|
4023
4404
|
}
|
|
4024
4405
|
),
|
|
4025
|
-
/* @__PURE__ */
|
|
4406
|
+
/* @__PURE__ */ jsx99(
|
|
4026
4407
|
"path",
|
|
4027
4408
|
{
|
|
4028
4409
|
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",
|
|
@@ -4039,12 +4420,12 @@ var XCircleIcon = forwardRef90(
|
|
|
4039
4420
|
);
|
|
4040
4421
|
|
|
4041
4422
|
// src/icons/xClose.tsx
|
|
4042
|
-
import { forwardRef as
|
|
4043
|
-
import { jsx as
|
|
4044
|
-
var XCloseIcon =
|
|
4423
|
+
import { forwardRef as forwardRef98 } from "react";
|
|
4424
|
+
import { jsx as jsx100 } from "react/jsx-runtime";
|
|
4425
|
+
var XCloseIcon = forwardRef98(
|
|
4045
4426
|
function XCloseIcon2(_a, ref) {
|
|
4046
4427
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4047
|
-
return /* @__PURE__ */
|
|
4428
|
+
return /* @__PURE__ */ jsx100(
|
|
4048
4429
|
"svg",
|
|
4049
4430
|
__spreadProps(__spreadValues({
|
|
4050
4431
|
ref,
|
|
@@ -4055,7 +4436,7 @@ var XCloseIcon = forwardRef91(
|
|
|
4055
4436
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4056
4437
|
className
|
|
4057
4438
|
}, other), {
|
|
4058
|
-
children: /* @__PURE__ */
|
|
4439
|
+
children: /* @__PURE__ */ jsx100(
|
|
4059
4440
|
"path",
|
|
4060
4441
|
{
|
|
4061
4442
|
d: "M18 6L6 18M6 6L18 18",
|
|
@@ -4071,7 +4452,7 @@ var XCloseIcon = forwardRef91(
|
|
|
4071
4452
|
);
|
|
4072
4453
|
|
|
4073
4454
|
// src/components/Calendar/Calendar.tsx
|
|
4074
|
-
import { jsx as
|
|
4455
|
+
import { jsx as jsx101 } from "react/jsx-runtime";
|
|
4075
4456
|
function Calendar(_a) {
|
|
4076
4457
|
var _b = _a, {
|
|
4077
4458
|
className,
|
|
@@ -4082,7 +4463,7 @@ function Calendar(_a) {
|
|
|
4082
4463
|
"classNames",
|
|
4083
4464
|
"showOutsideDays"
|
|
4084
4465
|
]);
|
|
4085
|
-
return /* @__PURE__ */
|
|
4466
|
+
return /* @__PURE__ */ jsx101(
|
|
4086
4467
|
DayPicker,
|
|
4087
4468
|
__spreadValues({
|
|
4088
4469
|
showOutsideDays,
|
|
@@ -4112,8 +4493,8 @@ function Calendar(_a) {
|
|
|
4112
4493
|
day_hidden: "invisible"
|
|
4113
4494
|
}, classNames),
|
|
4114
4495
|
components: {
|
|
4115
|
-
IconLeft: () => /* @__PURE__ */
|
|
4116
|
-
IconRight: () => /* @__PURE__ */
|
|
4496
|
+
IconLeft: () => /* @__PURE__ */ jsx101(ChevronLeftIcon, { className: "w-3 h-3" }),
|
|
4497
|
+
IconRight: () => /* @__PURE__ */ jsx101(ChevronRightIcon, { className: "w-3 h-3" })
|
|
4117
4498
|
}
|
|
4118
4499
|
}, props)
|
|
4119
4500
|
);
|
|
@@ -4123,10 +4504,10 @@ Calendar.displayName = "Calendar";
|
|
|
4123
4504
|
// src/components/Checkbox/Checkbox.tsx
|
|
4124
4505
|
import * as React5 from "react";
|
|
4125
4506
|
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
|
|
4126
|
-
import { jsx as
|
|
4507
|
+
import { jsx as jsx102 } from "react/jsx-runtime";
|
|
4127
4508
|
var Checkbox = React5.forwardRef((_a, ref) => {
|
|
4128
4509
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4129
|
-
return /* @__PURE__ */
|
|
4510
|
+
return /* @__PURE__ */ jsx102(
|
|
4130
4511
|
CheckboxPrimitive.Root,
|
|
4131
4512
|
__spreadProps(__spreadValues({
|
|
4132
4513
|
className: cn(
|
|
@@ -4135,16 +4516,171 @@ var Checkbox = React5.forwardRef((_a, ref) => {
|
|
|
4135
4516
|
)
|
|
4136
4517
|
}, props), {
|
|
4137
4518
|
ref,
|
|
4138
|
-
children: /* @__PURE__ */
|
|
4519
|
+
children: /* @__PURE__ */ jsx102(CheckboxPrimitive.Indicator, { children: /* @__PURE__ */ jsx102(CheckIcon, { size: 10, className: "text-white" }) })
|
|
4139
4520
|
})
|
|
4140
4521
|
);
|
|
4141
4522
|
});
|
|
4142
4523
|
Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
4143
4524
|
|
|
4144
|
-
// src/components/
|
|
4525
|
+
// src/components/Command/Command.tsx
|
|
4145
4526
|
import * as React6 from "react";
|
|
4527
|
+
import { useState } from "react";
|
|
4528
|
+
import { Command as CommandPrimitive } from "cmdk";
|
|
4529
|
+
import { jsx as jsx103, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
4530
|
+
var Command = React6.forwardRef((_a, ref) => {
|
|
4531
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4532
|
+
return /* @__PURE__ */ jsx103(
|
|
4533
|
+
CommandPrimitive,
|
|
4534
|
+
__spreadValues({
|
|
4535
|
+
ref,
|
|
4536
|
+
className: cn(
|
|
4537
|
+
"flex h-full w-full flex-col overflow-hidden rounded-md bg-white",
|
|
4538
|
+
className
|
|
4539
|
+
)
|
|
4540
|
+
}, props)
|
|
4541
|
+
);
|
|
4542
|
+
});
|
|
4543
|
+
Command.displayName = CommandPrimitive.displayName;
|
|
4544
|
+
var CommandInput = React6.forwardRef((_a, ref) => {
|
|
4545
|
+
var _b = _a, { className, value, onValueChange } = _b, props = __objRest(_b, ["className", "value", "onValueChange"]);
|
|
4546
|
+
const [val, setVal] = useState(value);
|
|
4547
|
+
const clearInput = () => {
|
|
4548
|
+
setVal("");
|
|
4549
|
+
onValueChange && onValueChange("");
|
|
4550
|
+
};
|
|
4551
|
+
return /* @__PURE__ */ jsxs73(
|
|
4552
|
+
"div",
|
|
4553
|
+
{
|
|
4554
|
+
className: "flex items-center gap-2 px-3 border-b border-gray-200",
|
|
4555
|
+
"cmdk-input-wrapper": "",
|
|
4556
|
+
children: [
|
|
4557
|
+
/* @__PURE__ */ jsx103(SearchMdIcon, { size: 16, className: "text-gray-900 shrink-0" }),
|
|
4558
|
+
/* @__PURE__ */ jsx103(
|
|
4559
|
+
CommandPrimitive.Input,
|
|
4560
|
+
__spreadValues({
|
|
4561
|
+
ref,
|
|
4562
|
+
value: val,
|
|
4563
|
+
className: cn(
|
|
4564
|
+
"flex w-full py-2 rounded-md bg-transparent text-sm font-normal text-gray-1000 outline-none placeholder:text-gray-900 disabled:cursor-not-allowed disabled:opacity-50",
|
|
4565
|
+
className
|
|
4566
|
+
),
|
|
4567
|
+
onValueChange: (val2) => {
|
|
4568
|
+
setVal(val2);
|
|
4569
|
+
onValueChange && onValueChange(val2);
|
|
4570
|
+
}
|
|
4571
|
+
}, props)
|
|
4572
|
+
),
|
|
4573
|
+
value !== "" && /* @__PURE__ */ jsx103(Button, { variant: "ghostGray", size: "xs", icon: true, className: "-mr-2", children: /* @__PURE__ */ jsx103(
|
|
4574
|
+
XCloseIcon,
|
|
4575
|
+
{
|
|
4576
|
+
size: "16",
|
|
4577
|
+
className: "text-gray-700",
|
|
4578
|
+
onClick: () => {
|
|
4579
|
+
clearInput();
|
|
4580
|
+
}
|
|
4581
|
+
}
|
|
4582
|
+
) })
|
|
4583
|
+
]
|
|
4584
|
+
}
|
|
4585
|
+
);
|
|
4586
|
+
});
|
|
4587
|
+
CommandInput.displayName = CommandPrimitive.Input.displayName;
|
|
4588
|
+
var CommandList = React6.forwardRef((_a, ref) => {
|
|
4589
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4590
|
+
return /* @__PURE__ */ jsx103(
|
|
4591
|
+
CommandPrimitive.List,
|
|
4592
|
+
__spreadValues({
|
|
4593
|
+
ref,
|
|
4594
|
+
className: cn(
|
|
4595
|
+
"max-h-[300px] overflow-y-auto p-1 overflow-x-hidden",
|
|
4596
|
+
className
|
|
4597
|
+
)
|
|
4598
|
+
}, props)
|
|
4599
|
+
);
|
|
4600
|
+
});
|
|
4601
|
+
CommandList.displayName = CommandPrimitive.List.displayName;
|
|
4602
|
+
var CommandEmpty = React6.forwardRef((_a, ref) => {
|
|
4603
|
+
var _b = _a, { children, title, description } = _b, props = __objRest(_b, ["children", "title", "description"]);
|
|
4604
|
+
return /* @__PURE__ */ jsxs73(
|
|
4605
|
+
CommandPrimitive.Empty,
|
|
4606
|
+
__spreadProps(__spreadValues({
|
|
4607
|
+
ref,
|
|
4608
|
+
className: "flex flex-col gap-4 p-4 text-center"
|
|
4609
|
+
}, props), {
|
|
4610
|
+
children: [
|
|
4611
|
+
(title || description) && /* @__PURE__ */ jsxs73("div", { className: "flex flex-col gap-1", children: [
|
|
4612
|
+
title && /* @__PURE__ */ jsx103("span", { className: "text-sm font-medium text-gray-1000", children: title }),
|
|
4613
|
+
description && /* @__PURE__ */ jsx103("span", { className: "text-sm font-normal text-gray-700", children: description })
|
|
4614
|
+
] }),
|
|
4615
|
+
children && /* @__PURE__ */ jsx103("div", { children })
|
|
4616
|
+
]
|
|
4617
|
+
})
|
|
4618
|
+
);
|
|
4619
|
+
});
|
|
4620
|
+
CommandEmpty.displayName = CommandPrimitive.Empty.displayName;
|
|
4621
|
+
var CommandLoading = React6.forwardRef((_a, ref) => {
|
|
4622
|
+
var _b = _a, { children } = _b, props = __objRest(_b, ["children"]);
|
|
4623
|
+
return /* @__PURE__ */ jsx103(CommandPrimitive.Loading, __spreadProps(__spreadValues({ ref }, props), { children: /* @__PURE__ */ jsx103("div", { className: "flex justify-center p-4 text-center", children: /* @__PURE__ */ jsx103(SpinnerIcon, { className: "text-blue-700 animate-spin" }) }) }));
|
|
4624
|
+
});
|
|
4625
|
+
CommandLoading.displayName = CommandPrimitive.Loading.displayName;
|
|
4626
|
+
var CommandGroup = React6.forwardRef((_a, ref) => {
|
|
4627
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4628
|
+
return /* @__PURE__ */ jsx103(
|
|
4629
|
+
CommandPrimitive.Group,
|
|
4630
|
+
__spreadValues({
|
|
4631
|
+
ref,
|
|
4632
|
+
className: cn(
|
|
4633
|
+
"overflow-hidden [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-sm [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground",
|
|
4634
|
+
className
|
|
4635
|
+
)
|
|
4636
|
+
}, props)
|
|
4637
|
+
);
|
|
4638
|
+
});
|
|
4639
|
+
CommandGroup.displayName = CommandPrimitive.Group.displayName;
|
|
4640
|
+
var CommandSeparator = React6.forwardRef((_a, ref) => {
|
|
4641
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4642
|
+
return /* @__PURE__ */ jsx103(
|
|
4643
|
+
CommandPrimitive.Separator,
|
|
4644
|
+
__spreadValues({
|
|
4645
|
+
ref,
|
|
4646
|
+
className: cn("-mx-1 h-px bg-border", className)
|
|
4647
|
+
}, props)
|
|
4648
|
+
);
|
|
4649
|
+
});
|
|
4650
|
+
CommandSeparator.displayName = CommandPrimitive.Separator.displayName;
|
|
4651
|
+
var CommandItem = React6.forwardRef(
|
|
4652
|
+
(_a, ref) => {
|
|
4653
|
+
var _b = _a, { icon, checkbox, className, checked, children, description } = _b, props = __objRest(_b, ["icon", "checkbox", "className", "checked", "children", "description"]);
|
|
4654
|
+
return /* @__PURE__ */ jsxs73(
|
|
4655
|
+
CommandPrimitive.Item,
|
|
4656
|
+
__spreadProps(__spreadValues({
|
|
4657
|
+
ref,
|
|
4658
|
+
className: cn(
|
|
4659
|
+
"px-2 py-1.5 text-sm flex flex-col gap-1 text-gray-1000 rounded-md cursor-pointer focus-within:bg-gray-100 data-[disabled]:cursor-not-allowed data-[disabled]:opacity-50 hover:bg-gray-50 active:bg-gray-100 data-[state=checked]:bg-gray-50",
|
|
4660
|
+
className
|
|
4661
|
+
)
|
|
4662
|
+
}, props), {
|
|
4663
|
+
children: [
|
|
4664
|
+
/* @__PURE__ */ jsxs73("div", { className: "flex items-center gap-2", children: [
|
|
4665
|
+
checkbox && /* @__PURE__ */ jsx103(Checkbox, { checked }),
|
|
4666
|
+
icon && React6.cloneElement(icon, {
|
|
4667
|
+
size: 16,
|
|
4668
|
+
className: cn("flex-shrink-0", icon.props.className)
|
|
4669
|
+
}),
|
|
4670
|
+
children
|
|
4671
|
+
] }),
|
|
4672
|
+
description && /* @__PURE__ */ jsx103("div", { className: "text-xs text-gray-700", children: description })
|
|
4673
|
+
]
|
|
4674
|
+
})
|
|
4675
|
+
);
|
|
4676
|
+
}
|
|
4677
|
+
);
|
|
4678
|
+
CommandItem.displayName = CommandPrimitive.Item.displayName;
|
|
4679
|
+
|
|
4680
|
+
// src/components/Dialog/Dialog.tsx
|
|
4681
|
+
import * as React7 from "react";
|
|
4146
4682
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
4147
|
-
import { jsx as
|
|
4683
|
+
import { jsx as jsx104, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4148
4684
|
var Dialog = DialogPrimitive.Root;
|
|
4149
4685
|
var DialogTrigger = DialogPrimitive.Trigger;
|
|
4150
4686
|
var DialogPortal = (_a) => {
|
|
@@ -4153,12 +4689,12 @@ var DialogPortal = (_a) => {
|
|
|
4153
4689
|
} = _b, props = __objRest(_b, [
|
|
4154
4690
|
"className"
|
|
4155
4691
|
]);
|
|
4156
|
-
return /* @__PURE__ */
|
|
4692
|
+
return /* @__PURE__ */ jsx104(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
|
|
4157
4693
|
};
|
|
4158
4694
|
DialogPortal.displayName = DialogPrimitive.Portal.displayName;
|
|
4159
|
-
var DialogOverlay =
|
|
4695
|
+
var DialogOverlay = React7.forwardRef((_a, ref) => {
|
|
4160
4696
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4161
|
-
return /* @__PURE__ */
|
|
4697
|
+
return /* @__PURE__ */ jsx104(
|
|
4162
4698
|
DialogPrimitive.Overlay,
|
|
4163
4699
|
__spreadValues({
|
|
4164
4700
|
ref,
|
|
@@ -4170,11 +4706,11 @@ var DialogOverlay = React6.forwardRef((_a, ref) => {
|
|
|
4170
4706
|
);
|
|
4171
4707
|
});
|
|
4172
4708
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
4173
|
-
var DialogContent =
|
|
4709
|
+
var DialogContent = React7.forwardRef((_a, ref) => {
|
|
4174
4710
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4175
|
-
return /* @__PURE__ */
|
|
4176
|
-
/* @__PURE__ */
|
|
4177
|
-
/* @__PURE__ */
|
|
4711
|
+
return /* @__PURE__ */ jsxs74(DialogPortal, { children: [
|
|
4712
|
+
/* @__PURE__ */ jsx104(DialogOverlay, {}),
|
|
4713
|
+
/* @__PURE__ */ jsxs74(
|
|
4178
4714
|
DialogPrimitive.Content,
|
|
4179
4715
|
__spreadProps(__spreadValues({
|
|
4180
4716
|
ref,
|
|
@@ -4185,7 +4721,7 @@ var DialogContent = React6.forwardRef((_a, ref) => {
|
|
|
4185
4721
|
}, props), {
|
|
4186
4722
|
children: [
|
|
4187
4723
|
children,
|
|
4188
|
-
/* @__PURE__ */
|
|
4724
|
+
/* @__PURE__ */ jsxs74(
|
|
4189
4725
|
DialogPrimitive.Close,
|
|
4190
4726
|
{
|
|
4191
4727
|
className: cn(
|
|
@@ -4194,8 +4730,8 @@ var DialogContent = React6.forwardRef((_a, ref) => {
|
|
|
4194
4730
|
"absolute right-6 top-6"
|
|
4195
4731
|
),
|
|
4196
4732
|
children: [
|
|
4197
|
-
/* @__PURE__ */
|
|
4198
|
-
/* @__PURE__ */
|
|
4733
|
+
/* @__PURE__ */ jsx104(XCloseIcon, { className: "h-3 w-3" }),
|
|
4734
|
+
/* @__PURE__ */ jsx104("span", { className: "sr-only", children: "Close" })
|
|
4199
4735
|
]
|
|
4200
4736
|
}
|
|
4201
4737
|
)
|
|
@@ -4211,7 +4747,7 @@ var DialogHeader = (_a) => {
|
|
|
4211
4747
|
} = _b, props = __objRest(_b, [
|
|
4212
4748
|
"className"
|
|
4213
4749
|
]);
|
|
4214
|
-
return /* @__PURE__ */
|
|
4750
|
+
return /* @__PURE__ */ jsx104(
|
|
4215
4751
|
"div",
|
|
4216
4752
|
__spreadValues({
|
|
4217
4753
|
className: cn(
|
|
@@ -4228,7 +4764,7 @@ var DialogFooter = (_a) => {
|
|
|
4228
4764
|
} = _b, props = __objRest(_b, [
|
|
4229
4765
|
"className"
|
|
4230
4766
|
]);
|
|
4231
|
-
return /* @__PURE__ */
|
|
4767
|
+
return /* @__PURE__ */ jsx104(
|
|
4232
4768
|
"div",
|
|
4233
4769
|
__spreadValues({
|
|
4234
4770
|
className: cn(
|
|
@@ -4239,9 +4775,9 @@ var DialogFooter = (_a) => {
|
|
|
4239
4775
|
);
|
|
4240
4776
|
};
|
|
4241
4777
|
DialogFooter.displayName = "DialogFooter";
|
|
4242
|
-
var DialogTitle =
|
|
4778
|
+
var DialogTitle = React7.forwardRef((_a, ref) => {
|
|
4243
4779
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4244
|
-
return /* @__PURE__ */
|
|
4780
|
+
return /* @__PURE__ */ jsx104(
|
|
4245
4781
|
DialogPrimitive.Title,
|
|
4246
4782
|
__spreadValues({
|
|
4247
4783
|
ref,
|
|
@@ -4250,9 +4786,9 @@ var DialogTitle = React6.forwardRef((_a, ref) => {
|
|
|
4250
4786
|
);
|
|
4251
4787
|
});
|
|
4252
4788
|
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
4253
|
-
var DialogDescription =
|
|
4789
|
+
var DialogDescription = React7.forwardRef((_a, ref) => {
|
|
4254
4790
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4255
|
-
return /* @__PURE__ */
|
|
4791
|
+
return /* @__PURE__ */ jsx104(
|
|
4256
4792
|
DialogPrimitive.Description,
|
|
4257
4793
|
__spreadValues({
|
|
4258
4794
|
ref,
|
|
@@ -4263,9 +4799,9 @@ var DialogDescription = React6.forwardRef((_a, ref) => {
|
|
|
4263
4799
|
DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
|
4264
4800
|
|
|
4265
4801
|
// src/components/DropdownMenu/DropdownMenu.tsx
|
|
4802
|
+
import React8 from "react";
|
|
4266
4803
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
4267
|
-
import
|
|
4268
|
-
import { jsx as jsx97, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4804
|
+
import { jsx as jsx105, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4269
4805
|
var DropdownMenu = DropdownMenuPrimitive.Root;
|
|
4270
4806
|
var DropdownMenuItemBase = ({
|
|
4271
4807
|
icon,
|
|
@@ -4277,7 +4813,7 @@ var DropdownMenuItemBase = ({
|
|
|
4277
4813
|
description,
|
|
4278
4814
|
hasSubNav
|
|
4279
4815
|
}) => {
|
|
4280
|
-
return /* @__PURE__ */
|
|
4816
|
+
return /* @__PURE__ */ jsxs75(
|
|
4281
4817
|
"div",
|
|
4282
4818
|
{
|
|
4283
4819
|
className: cn(
|
|
@@ -4286,9 +4822,9 @@ var DropdownMenuItemBase = ({
|
|
|
4286
4822
|
className
|
|
4287
4823
|
),
|
|
4288
4824
|
children: [
|
|
4289
|
-
/* @__PURE__ */
|
|
4290
|
-
checkbox && /* @__PURE__ */
|
|
4291
|
-
icon &&
|
|
4825
|
+
/* @__PURE__ */ jsxs75("div", { className: "flex items-center gap-2", children: [
|
|
4826
|
+
checkbox && /* @__PURE__ */ jsx105(Checkbox, { checked }),
|
|
4827
|
+
icon && React8.cloneElement(icon, {
|
|
4292
4828
|
size: 16,
|
|
4293
4829
|
className: cn(
|
|
4294
4830
|
"flex-shrink-0",
|
|
@@ -4296,15 +4832,15 @@ var DropdownMenuItemBase = ({
|
|
|
4296
4832
|
icon.props.className
|
|
4297
4833
|
)
|
|
4298
4834
|
}),
|
|
4299
|
-
children,
|
|
4300
|
-
hasSubNav && /* @__PURE__ */
|
|
4835
|
+
/* @__PURE__ */ jsx105("span", { className: "flex gap-2 grow", children }),
|
|
4836
|
+
hasSubNav && /* @__PURE__ */ jsx105("div", { className: "inline-flex items-center justify-end", children: /* @__PURE__ */ jsx105(ChevronRightIcon, { size: 16, className: "text-gray-1000" }) })
|
|
4301
4837
|
] }),
|
|
4302
|
-
description && /* @__PURE__ */
|
|
4838
|
+
description && /* @__PURE__ */ jsx105("div", { className: "text-xs text-gray-700", children: description })
|
|
4303
4839
|
]
|
|
4304
4840
|
}
|
|
4305
4841
|
);
|
|
4306
4842
|
};
|
|
4307
|
-
var DropdownMenuCheckboxItem =
|
|
4843
|
+
var DropdownMenuCheckboxItem = React8.forwardRef(
|
|
4308
4844
|
(_a, forwardedRef) => {
|
|
4309
4845
|
var _b = _a, { className, children, checked, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "checked", "icon", "description", "destructive"]);
|
|
4310
4846
|
const extraProps = {
|
|
@@ -4314,20 +4850,20 @@ var DropdownMenuCheckboxItem = React7.forwardRef(
|
|
|
4314
4850
|
checked,
|
|
4315
4851
|
className
|
|
4316
4852
|
};
|
|
4317
|
-
return /* @__PURE__ */
|
|
4853
|
+
return /* @__PURE__ */ jsx105(
|
|
4318
4854
|
DropdownMenuPrimitive.CheckboxItem,
|
|
4319
4855
|
__spreadProps(__spreadValues({
|
|
4320
4856
|
checked
|
|
4321
4857
|
}, props), {
|
|
4322
4858
|
ref: forwardedRef,
|
|
4323
4859
|
className: "outline-none select-none group",
|
|
4324
|
-
children: /* @__PURE__ */
|
|
4860
|
+
children: /* @__PURE__ */ jsx105(DropdownMenuItemBase, __spreadProps(__spreadValues({ checkbox: true }, extraProps), { children }))
|
|
4325
4861
|
})
|
|
4326
4862
|
);
|
|
4327
4863
|
}
|
|
4328
4864
|
);
|
|
4329
4865
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
|
|
4330
|
-
var DropdownMenuContent =
|
|
4866
|
+
var DropdownMenuContent = React8.forwardRef(
|
|
4331
4867
|
(_a, forwardedRef) => {
|
|
4332
4868
|
var _b = _a, {
|
|
4333
4869
|
children,
|
|
@@ -4342,7 +4878,7 @@ var DropdownMenuContent = React7.forwardRef(
|
|
|
4342
4878
|
"sideOffset",
|
|
4343
4879
|
"align"
|
|
4344
4880
|
]);
|
|
4345
|
-
return /* @__PURE__ */
|
|
4881
|
+
return /* @__PURE__ */ jsx105(
|
|
4346
4882
|
DropdownMenuPrimitive.Content,
|
|
4347
4883
|
__spreadProps(__spreadValues({
|
|
4348
4884
|
className: cn(
|
|
@@ -4361,7 +4897,7 @@ var DropdownMenuContent = React7.forwardRef(
|
|
|
4361
4897
|
);
|
|
4362
4898
|
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
|
|
4363
4899
|
var DropdownMenuGroup = DropdownMenuPrimitive.Group;
|
|
4364
|
-
var DropdownMenuItem =
|
|
4900
|
+
var DropdownMenuItem = React8.forwardRef(
|
|
4365
4901
|
(_a, forwardedRef) => {
|
|
4366
4902
|
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4367
4903
|
const extraProps = {
|
|
@@ -4370,20 +4906,20 @@ var DropdownMenuItem = React7.forwardRef(
|
|
|
4370
4906
|
icon,
|
|
4371
4907
|
className
|
|
4372
4908
|
};
|
|
4373
|
-
return /* @__PURE__ */
|
|
4909
|
+
return /* @__PURE__ */ jsx105(
|
|
4374
4910
|
DropdownMenuPrimitive.Item,
|
|
4375
4911
|
__spreadProps(__spreadValues({}, props), {
|
|
4376
4912
|
ref: forwardedRef,
|
|
4377
4913
|
className: "outline-none select-none group",
|
|
4378
|
-
children: /* @__PURE__ */
|
|
4914
|
+
children: /* @__PURE__ */ jsx105(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
4379
4915
|
})
|
|
4380
4916
|
);
|
|
4381
4917
|
}
|
|
4382
4918
|
);
|
|
4383
4919
|
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
|
|
4384
|
-
var DropdownMenuLabel =
|
|
4920
|
+
var DropdownMenuLabel = React8.forwardRef((_a, forwardedRef) => {
|
|
4385
4921
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4386
|
-
return /* @__PURE__ */
|
|
4922
|
+
return /* @__PURE__ */ jsx105(
|
|
4387
4923
|
DropdownMenuPrimitive.Label,
|
|
4388
4924
|
__spreadProps(__spreadValues({
|
|
4389
4925
|
className: cn(
|
|
@@ -4398,7 +4934,7 @@ var DropdownMenuLabel = React7.forwardRef((_a, forwardedRef) => {
|
|
|
4398
4934
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
|
|
4399
4935
|
var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
|
|
4400
4936
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
|
|
4401
|
-
var DropdownMenuRadioItem =
|
|
4937
|
+
var DropdownMenuRadioItem = React8.forwardRef(
|
|
4402
4938
|
(_a, forwardedRef) => {
|
|
4403
4939
|
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4404
4940
|
const extraProps = {
|
|
@@ -4407,20 +4943,20 @@ var DropdownMenuRadioItem = React7.forwardRef(
|
|
|
4407
4943
|
icon,
|
|
4408
4944
|
className
|
|
4409
4945
|
};
|
|
4410
|
-
return /* @__PURE__ */
|
|
4946
|
+
return /* @__PURE__ */ jsx105(
|
|
4411
4947
|
DropdownMenuPrimitive.RadioItem,
|
|
4412
4948
|
__spreadProps(__spreadValues({}, props), {
|
|
4413
4949
|
ref: forwardedRef,
|
|
4414
4950
|
className: "outline-none select-none group",
|
|
4415
|
-
children: /* @__PURE__ */
|
|
4951
|
+
children: /* @__PURE__ */ jsx105(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
4416
4952
|
})
|
|
4417
4953
|
);
|
|
4418
4954
|
}
|
|
4419
4955
|
);
|
|
4420
4956
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
|
|
4421
|
-
var DropdownMenuSeparator =
|
|
4957
|
+
var DropdownMenuSeparator = React8.forwardRef((_a, forwardedRef) => {
|
|
4422
4958
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4423
|
-
return /* @__PURE__ */
|
|
4959
|
+
return /* @__PURE__ */ jsx105(
|
|
4424
4960
|
DropdownMenuPrimitive.Separator,
|
|
4425
4961
|
__spreadProps(__spreadValues({
|
|
4426
4962
|
className: cn("my-1 border-b border-gray-200", className)
|
|
@@ -4431,9 +4967,9 @@ var DropdownMenuSeparator = React7.forwardRef((_a, forwardedRef) => {
|
|
|
4431
4967
|
});
|
|
4432
4968
|
DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName;
|
|
4433
4969
|
var DropdownMenuSub = DropdownMenuPrimitive.Sub;
|
|
4434
|
-
var DropdownMenuSubContent =
|
|
4970
|
+
var DropdownMenuSubContent = React8.forwardRef((_a, forwardedRef) => {
|
|
4435
4971
|
var _b = _a, { children, className, sideOffset = 8 } = _b, props = __objRest(_b, ["children", "className", "sideOffset"]);
|
|
4436
|
-
return /* @__PURE__ */
|
|
4972
|
+
return /* @__PURE__ */ jsx105(
|
|
4437
4973
|
DropdownMenuPrimitive.SubContent,
|
|
4438
4974
|
__spreadProps(__spreadValues({
|
|
4439
4975
|
className: cn(
|
|
@@ -4448,7 +4984,7 @@ var DropdownMenuSubContent = React7.forwardRef((_a, forwardedRef) => {
|
|
|
4448
4984
|
);
|
|
4449
4985
|
});
|
|
4450
4986
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
|
|
4451
|
-
var DropdownMenuSubTrigger =
|
|
4987
|
+
var DropdownMenuSubTrigger = React8.forwardRef(
|
|
4452
4988
|
(_a, forwardedRef) => {
|
|
4453
4989
|
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4454
4990
|
const extraProps = {
|
|
@@ -4457,12 +4993,12 @@ var DropdownMenuSubTrigger = React7.forwardRef(
|
|
|
4457
4993
|
icon,
|
|
4458
4994
|
className
|
|
4459
4995
|
};
|
|
4460
|
-
return /* @__PURE__ */
|
|
4996
|
+
return /* @__PURE__ */ jsx105(
|
|
4461
4997
|
DropdownMenuPrimitive.SubTrigger,
|
|
4462
4998
|
__spreadProps(__spreadValues({}, props), {
|
|
4463
4999
|
ref: forwardedRef,
|
|
4464
5000
|
className: "outline-none select-none group",
|
|
4465
|
-
children: /* @__PURE__ */
|
|
5001
|
+
children: /* @__PURE__ */ jsx105(DropdownMenuItemBase, __spreadProps(__spreadValues({ hasSubNav: true }, extraProps), { children }))
|
|
4466
5002
|
})
|
|
4467
5003
|
);
|
|
4468
5004
|
}
|
|
@@ -4470,8 +5006,25 @@ var DropdownMenuSubTrigger = React7.forwardRef(
|
|
|
4470
5006
|
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
|
|
4471
5007
|
var DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
|
|
4472
5008
|
|
|
5009
|
+
// src/components/FilterButton/FilterButton.tsx
|
|
5010
|
+
import React9 from "react";
|
|
5011
|
+
import { Fragment, jsx as jsx106, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
5012
|
+
var FilterButton = React9.forwardRef(
|
|
5013
|
+
(_a, ref) => {
|
|
5014
|
+
var _b = _a, { selectedCount, children, size = "sm", variant = "outline" } = _b, props = __objRest(_b, ["selectedCount", "children", "size", "variant"]);
|
|
5015
|
+
return /* @__PURE__ */ jsxs76(Button, __spreadProps(__spreadValues({ ref, variant, size }, props), { children: [
|
|
5016
|
+
children,
|
|
5017
|
+
selectedCount !== void 0 && selectedCount > 0 && /* @__PURE__ */ jsxs76(Fragment, { children: [
|
|
5018
|
+
/* @__PURE__ */ jsx106("span", { className: "h-4 border-l border-gray-200" }),
|
|
5019
|
+
/* @__PURE__ */ jsx106(Badge, { variant: "fill", color: "blue", children: selectedCount })
|
|
5020
|
+
] })
|
|
5021
|
+
] }));
|
|
5022
|
+
}
|
|
5023
|
+
);
|
|
5024
|
+
FilterButton.displayName = "FilterButton";
|
|
5025
|
+
|
|
4473
5026
|
// src/components/Form/Form.tsx
|
|
4474
|
-
import * as
|
|
5027
|
+
import * as React11 from "react";
|
|
4475
5028
|
import { Slot as Slot2 } from "@radix-ui/react-slot";
|
|
4476
5029
|
import {
|
|
4477
5030
|
Controller,
|
|
@@ -4480,12 +5033,12 @@ import {
|
|
|
4480
5033
|
} from "react-hook-form";
|
|
4481
5034
|
|
|
4482
5035
|
// src/components/Label/Label.tsx
|
|
4483
|
-
import * as
|
|
5036
|
+
import * as React10 from "react";
|
|
4484
5037
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
4485
|
-
import { jsx as
|
|
4486
|
-
var Label2 =
|
|
5038
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
5039
|
+
var Label2 = React10.forwardRef((_a, ref) => {
|
|
4487
5040
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4488
|
-
return /* @__PURE__ */
|
|
5041
|
+
return /* @__PURE__ */ jsx107(
|
|
4489
5042
|
LabelPrimitive.Root,
|
|
4490
5043
|
__spreadValues({
|
|
4491
5044
|
ref,
|
|
@@ -4499,24 +5052,24 @@ var Label2 = React8.forwardRef((_a, ref) => {
|
|
|
4499
5052
|
Label2.displayName = LabelPrimitive.Root.displayName;
|
|
4500
5053
|
|
|
4501
5054
|
// src/components/Form/Form.tsx
|
|
4502
|
-
import { jsx as
|
|
5055
|
+
import { jsx as jsx108 } from "react/jsx-runtime";
|
|
4503
5056
|
var Form = FormProvider;
|
|
4504
|
-
var FormFieldContext =
|
|
5057
|
+
var FormFieldContext = React11.createContext(
|
|
4505
5058
|
{}
|
|
4506
5059
|
);
|
|
4507
5060
|
var FormField = (_a) => {
|
|
4508
5061
|
var props = __objRest(_a, []);
|
|
4509
|
-
return /* @__PURE__ */
|
|
5062
|
+
return /* @__PURE__ */ jsx108(
|
|
4510
5063
|
FormFieldContext.Provider,
|
|
4511
5064
|
{
|
|
4512
5065
|
value: { name: props.name, isDisabled: props.disabled },
|
|
4513
|
-
children: /* @__PURE__ */
|
|
5066
|
+
children: /* @__PURE__ */ jsx108(Controller, __spreadValues({}, props))
|
|
4514
5067
|
}
|
|
4515
5068
|
);
|
|
4516
5069
|
};
|
|
4517
5070
|
var useFormField = () => {
|
|
4518
|
-
const fieldContext =
|
|
4519
|
-
const itemContext =
|
|
5071
|
+
const fieldContext = React11.useContext(FormFieldContext);
|
|
5072
|
+
const itemContext = React11.useContext(FormItemContext);
|
|
4520
5073
|
const { getFieldState, formState } = useFormContext();
|
|
4521
5074
|
const fieldState = getFieldState(fieldContext.name, formState);
|
|
4522
5075
|
if (!fieldContext) {
|
|
@@ -4532,13 +5085,13 @@ var useFormField = () => {
|
|
|
4532
5085
|
formMessageId: `${id}-form-item-message`
|
|
4533
5086
|
}, fieldState);
|
|
4534
5087
|
};
|
|
4535
|
-
var FormItemContext =
|
|
5088
|
+
var FormItemContext = React11.createContext(
|
|
4536
5089
|
{}
|
|
4537
5090
|
);
|
|
4538
|
-
var FormItem =
|
|
5091
|
+
var FormItem = React11.forwardRef((_a, ref) => {
|
|
4539
5092
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4540
|
-
const id =
|
|
4541
|
-
return /* @__PURE__ */
|
|
5093
|
+
const id = React11.useId();
|
|
5094
|
+
return /* @__PURE__ */ jsx108(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ jsx108(
|
|
4542
5095
|
"div",
|
|
4543
5096
|
__spreadValues({
|
|
4544
5097
|
ref,
|
|
@@ -4547,10 +5100,10 @@ var FormItem = React9.forwardRef((_a, ref) => {
|
|
|
4547
5100
|
) });
|
|
4548
5101
|
});
|
|
4549
5102
|
FormItem.displayName = "FormItem";
|
|
4550
|
-
var FormLabel =
|
|
5103
|
+
var FormLabel = React11.forwardRef((_a, ref) => {
|
|
4551
5104
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4552
5105
|
const { isDisabled, formItemId } = useFormField();
|
|
4553
|
-
return /* @__PURE__ */
|
|
5106
|
+
return /* @__PURE__ */ jsx108(
|
|
4554
5107
|
Label2,
|
|
4555
5108
|
__spreadValues({
|
|
4556
5109
|
ref,
|
|
@@ -4560,10 +5113,10 @@ var FormLabel = React9.forwardRef((_a, ref) => {
|
|
|
4560
5113
|
);
|
|
4561
5114
|
});
|
|
4562
5115
|
FormLabel.displayName = "FormLabel";
|
|
4563
|
-
var FormControl =
|
|
5116
|
+
var FormControl = React11.forwardRef((_a, ref) => {
|
|
4564
5117
|
var props = __objRest(_a, []);
|
|
4565
5118
|
const { error, isDisabled, formItemId, formDescriptionId, formMessageId } = useFormField();
|
|
4566
|
-
return /* @__PURE__ */
|
|
5119
|
+
return /* @__PURE__ */ jsx108(
|
|
4567
5120
|
Slot2,
|
|
4568
5121
|
__spreadValues({
|
|
4569
5122
|
ref,
|
|
@@ -4576,10 +5129,10 @@ var FormControl = React9.forwardRef((_a, ref) => {
|
|
|
4576
5129
|
);
|
|
4577
5130
|
});
|
|
4578
5131
|
FormControl.displayName = "FormControl";
|
|
4579
|
-
var FormDescription =
|
|
5132
|
+
var FormDescription = React11.forwardRef((_a, ref) => {
|
|
4580
5133
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4581
5134
|
const { formDescriptionId, isDisabled } = useFormField();
|
|
4582
|
-
return /* @__PURE__ */
|
|
5135
|
+
return /* @__PURE__ */ jsx108(
|
|
4583
5136
|
"p",
|
|
4584
5137
|
__spreadValues({
|
|
4585
5138
|
ref,
|
|
@@ -4593,12 +5146,12 @@ var FormDescription = React9.forwardRef((_a, ref) => {
|
|
|
4593
5146
|
);
|
|
4594
5147
|
});
|
|
4595
5148
|
FormDescription.displayName = "FormDescription";
|
|
4596
|
-
var FormMessage =
|
|
5149
|
+
var FormMessage = React11.forwardRef((_a, ref) => {
|
|
4597
5150
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4598
5151
|
const { error, isDisabled, formMessageId } = useFormField();
|
|
4599
5152
|
const body = error ? String(error == null ? void 0 : error.message) : children;
|
|
4600
5153
|
const textColorClassName = error ? "text-red-700" : "text-gray-700";
|
|
4601
|
-
return /* @__PURE__ */
|
|
5154
|
+
return /* @__PURE__ */ jsx108(
|
|
4602
5155
|
"p",
|
|
4603
5156
|
__spreadProps(__spreadValues({
|
|
4604
5157
|
ref,
|
|
@@ -4617,10 +5170,10 @@ var FormMessage = React9.forwardRef((_a, ref) => {
|
|
|
4617
5170
|
FormMessage.displayName = "FormMessage";
|
|
4618
5171
|
|
|
4619
5172
|
// src/components/Input/Input.tsx
|
|
4620
|
-
import * as
|
|
5173
|
+
import * as React12 from "react";
|
|
4621
5174
|
import { Slot as Slot3 } from "@radix-ui/react-slot";
|
|
4622
|
-
import { jsx as
|
|
4623
|
-
var Input =
|
|
5175
|
+
import { jsx as jsx109, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
5176
|
+
var Input = React12.forwardRef(
|
|
4624
5177
|
(_a, ref) => {
|
|
4625
5178
|
var _b = _a, {
|
|
4626
5179
|
className,
|
|
@@ -4638,8 +5191,8 @@ var Input = React10.forwardRef(
|
|
|
4638
5191
|
"suffixEnchancer"
|
|
4639
5192
|
]);
|
|
4640
5193
|
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
4641
|
-
return /* @__PURE__ */
|
|
4642
|
-
/* @__PURE__ */
|
|
5194
|
+
return /* @__PURE__ */ jsxs77("div", { className: "flex gap-2", children: [
|
|
5195
|
+
/* @__PURE__ */ jsxs77(
|
|
4643
5196
|
"div",
|
|
4644
5197
|
{
|
|
4645
5198
|
className: cn(
|
|
@@ -4651,7 +5204,7 @@ var Input = React10.forwardRef(
|
|
|
4651
5204
|
className
|
|
4652
5205
|
),
|
|
4653
5206
|
children: [
|
|
4654
|
-
prefixEnchancer && /* @__PURE__ */
|
|
5207
|
+
prefixEnchancer && /* @__PURE__ */ jsx109(
|
|
4655
5208
|
Slot3,
|
|
4656
5209
|
{
|
|
4657
5210
|
className: cn(
|
|
@@ -4661,7 +5214,7 @@ var Input = React10.forwardRef(
|
|
|
4661
5214
|
children: prefixEnchancer
|
|
4662
5215
|
}
|
|
4663
5216
|
),
|
|
4664
|
-
/* @__PURE__ */
|
|
5217
|
+
/* @__PURE__ */ jsx109(
|
|
4665
5218
|
"input",
|
|
4666
5219
|
__spreadProps(__spreadValues({}, props), {
|
|
4667
5220
|
disabled: isDisabled,
|
|
@@ -4670,7 +5223,7 @@ var Input = React10.forwardRef(
|
|
|
4670
5223
|
ref
|
|
4671
5224
|
})
|
|
4672
5225
|
),
|
|
4673
|
-
suffixEnchancer && /* @__PURE__ */
|
|
5226
|
+
suffixEnchancer && /* @__PURE__ */ jsx109(
|
|
4674
5227
|
Slot3,
|
|
4675
5228
|
{
|
|
4676
5229
|
className: cn(
|
|
@@ -4683,7 +5236,7 @@ var Input = React10.forwardRef(
|
|
|
4683
5236
|
]
|
|
4684
5237
|
}
|
|
4685
5238
|
),
|
|
4686
|
-
button &&
|
|
5239
|
+
button && React12.cloneElement(button, {
|
|
4687
5240
|
size: "sm",
|
|
4688
5241
|
disabled: isDisabled,
|
|
4689
5242
|
className: cn("flex-shrink-0", button.props.className)
|
|
@@ -4693,15 +5246,86 @@ var Input = React10.forwardRef(
|
|
|
4693
5246
|
);
|
|
4694
5247
|
Input.displayName = "Input";
|
|
4695
5248
|
|
|
5249
|
+
// src/components/Pagination/Pagination.tsx
|
|
5250
|
+
import { jsx as jsx110, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
5251
|
+
var PaginationPageChoice = /* @__PURE__ */ ((PaginationPageChoice2) => {
|
|
5252
|
+
PaginationPageChoice2["FIRST"] = "FIRST";
|
|
5253
|
+
PaginationPageChoice2["PREVIOUS"] = "PREVIOUS";
|
|
5254
|
+
PaginationPageChoice2["NEXT"] = "NEXT";
|
|
5255
|
+
PaginationPageChoice2["LAST"] = "LAST";
|
|
5256
|
+
return PaginationPageChoice2;
|
|
5257
|
+
})(PaginationPageChoice || {});
|
|
5258
|
+
var Pagination = ({
|
|
5259
|
+
totalRowsCaption,
|
|
5260
|
+
nextPageAvailable,
|
|
5261
|
+
previousPageAvailable,
|
|
5262
|
+
currentPageCation,
|
|
5263
|
+
onPageChange,
|
|
5264
|
+
className
|
|
5265
|
+
}) => {
|
|
5266
|
+
return /* @__PURE__ */ jsxs78("div", { className: cn("flex items-center justify-between px-2", className), children: [
|
|
5267
|
+
totalRowsCaption && /* @__PURE__ */ jsx110("div", { className: "flex-1 text-sm text-gray-700", children: totalRowsCaption }),
|
|
5268
|
+
/* @__PURE__ */ jsxs78("div", { className: "flex items-center gap-4", children: [
|
|
5269
|
+
currentPageCation && /* @__PURE__ */ jsx110("div", { className: "flex items-center justify-center text-sm font-medium text-gray-1000", children: currentPageCation }),
|
|
5270
|
+
/* @__PURE__ */ jsxs78("div", { className: "flex items-center gap-2", children: [
|
|
5271
|
+
/* @__PURE__ */ jsx110(
|
|
5272
|
+
Button,
|
|
5273
|
+
{
|
|
5274
|
+
variant: "outline",
|
|
5275
|
+
icon: true,
|
|
5276
|
+
size: "sm",
|
|
5277
|
+
onClick: () => onPageChange("FIRST" /* FIRST */),
|
|
5278
|
+
disabled: !previousPageAvailable,
|
|
5279
|
+
children: /* @__PURE__ */ jsx110(ChevronLeftDoubleIcon, { size: "16" })
|
|
5280
|
+
}
|
|
5281
|
+
),
|
|
5282
|
+
/* @__PURE__ */ jsx110(
|
|
5283
|
+
Button,
|
|
5284
|
+
{
|
|
5285
|
+
variant: "outline",
|
|
5286
|
+
icon: true,
|
|
5287
|
+
size: "sm",
|
|
5288
|
+
onClick: () => onPageChange("PREVIOUS" /* PREVIOUS */),
|
|
5289
|
+
disabled: !previousPageAvailable,
|
|
5290
|
+
children: /* @__PURE__ */ jsx110(ChevronLeftIcon, { size: "16" })
|
|
5291
|
+
}
|
|
5292
|
+
),
|
|
5293
|
+
/* @__PURE__ */ jsx110(
|
|
5294
|
+
Button,
|
|
5295
|
+
{
|
|
5296
|
+
variant: "outline",
|
|
5297
|
+
icon: true,
|
|
5298
|
+
size: "sm",
|
|
5299
|
+
onClick: () => onPageChange("NEXT" /* NEXT */),
|
|
5300
|
+
disabled: !nextPageAvailable,
|
|
5301
|
+
children: /* @__PURE__ */ jsx110(ChevronRightIcon, { size: "16" })
|
|
5302
|
+
}
|
|
5303
|
+
),
|
|
5304
|
+
/* @__PURE__ */ jsx110(
|
|
5305
|
+
Button,
|
|
5306
|
+
{
|
|
5307
|
+
variant: "outline",
|
|
5308
|
+
icon: true,
|
|
5309
|
+
size: "sm",
|
|
5310
|
+
onClick: () => onPageChange("LAST" /* LAST */),
|
|
5311
|
+
disabled: !nextPageAvailable,
|
|
5312
|
+
children: /* @__PURE__ */ jsx110(ChevronRightDoubleIcon, { size: "16" })
|
|
5313
|
+
}
|
|
5314
|
+
)
|
|
5315
|
+
] })
|
|
5316
|
+
] })
|
|
5317
|
+
] });
|
|
5318
|
+
};
|
|
5319
|
+
|
|
4696
5320
|
// src/components/Popover/Popover.tsx
|
|
4697
|
-
import * as
|
|
5321
|
+
import * as React13 from "react";
|
|
4698
5322
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
4699
|
-
import { jsx as
|
|
5323
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
4700
5324
|
var Popover = PopoverPrimitive.Root;
|
|
4701
5325
|
var PopoverTrigger = PopoverPrimitive.Trigger;
|
|
4702
|
-
var PopoverContent =
|
|
5326
|
+
var PopoverContent = React13.forwardRef((_a, ref) => {
|
|
4703
5327
|
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
4704
|
-
return /* @__PURE__ */
|
|
5328
|
+
return /* @__PURE__ */ jsx111(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx111(
|
|
4705
5329
|
PopoverPrimitive.Content,
|
|
4706
5330
|
__spreadValues({
|
|
4707
5331
|
ref,
|
|
@@ -4717,16 +5341,16 @@ var PopoverContent = React11.forwardRef((_a, ref) => {
|
|
|
4717
5341
|
PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
4718
5342
|
|
|
4719
5343
|
// src/components/Select/Select.tsx
|
|
4720
|
-
import * as
|
|
5344
|
+
import * as React14 from "react";
|
|
4721
5345
|
import * as SelectPrimitive from "@radix-ui/react-select";
|
|
4722
|
-
import { jsx as
|
|
5346
|
+
import { jsx as jsx112, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
4723
5347
|
var Select = SelectPrimitive.Root;
|
|
4724
5348
|
var SelectGroup = SelectPrimitive.Group;
|
|
4725
5349
|
var SelectValue = SelectPrimitive.Value;
|
|
4726
|
-
var SelectTrigger =
|
|
5350
|
+
var SelectTrigger = React14.forwardRef((_a, ref) => {
|
|
4727
5351
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4728
5352
|
const isDisabled = props["data-is-disabled"];
|
|
4729
|
-
return /* @__PURE__ */
|
|
5353
|
+
return /* @__PURE__ */ jsxs79(
|
|
4730
5354
|
SelectPrimitive.Trigger,
|
|
4731
5355
|
__spreadProps(__spreadValues({
|
|
4732
5356
|
ref,
|
|
@@ -4743,15 +5367,15 @@ var SelectTrigger = React12.forwardRef((_a, ref) => {
|
|
|
4743
5367
|
}, props), {
|
|
4744
5368
|
children: [
|
|
4745
5369
|
children,
|
|
4746
|
-
/* @__PURE__ */
|
|
5370
|
+
/* @__PURE__ */ jsx112(SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ jsx112(ChevronSelectorVerticalIcon, { size: "16", className: "w-4 h-4 opacity-50" }) })
|
|
4747
5371
|
]
|
|
4748
5372
|
})
|
|
4749
5373
|
);
|
|
4750
5374
|
});
|
|
4751
5375
|
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
|
|
4752
|
-
var SelectContent =
|
|
5376
|
+
var SelectContent = React14.forwardRef((_a, ref) => {
|
|
4753
5377
|
var _b = _a, { className, children, position = "popper" } = _b, props = __objRest(_b, ["className", "children", "position"]);
|
|
4754
|
-
return /* @__PURE__ */
|
|
5378
|
+
return /* @__PURE__ */ jsx112(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsx112(
|
|
4755
5379
|
SelectPrimitive.Content,
|
|
4756
5380
|
__spreadProps(__spreadValues({
|
|
4757
5381
|
ref,
|
|
@@ -4762,7 +5386,7 @@ var SelectContent = React12.forwardRef((_a, ref) => {
|
|
|
4762
5386
|
),
|
|
4763
5387
|
position
|
|
4764
5388
|
}, props), {
|
|
4765
|
-
children: /* @__PURE__ */
|
|
5389
|
+
children: /* @__PURE__ */ jsx112(
|
|
4766
5390
|
SelectPrimitive.Viewport,
|
|
4767
5391
|
{
|
|
4768
5392
|
className: cn(
|
|
@@ -4776,9 +5400,9 @@ var SelectContent = React12.forwardRef((_a, ref) => {
|
|
|
4776
5400
|
) });
|
|
4777
5401
|
});
|
|
4778
5402
|
SelectContent.displayName = SelectPrimitive.Content.displayName;
|
|
4779
|
-
var SelectLabel =
|
|
5403
|
+
var SelectLabel = React14.forwardRef((_a, ref) => {
|
|
4780
5404
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4781
|
-
return /* @__PURE__ */
|
|
5405
|
+
return /* @__PURE__ */ jsx112(
|
|
4782
5406
|
SelectPrimitive.Label,
|
|
4783
5407
|
__spreadValues({
|
|
4784
5408
|
ref,
|
|
@@ -4787,9 +5411,9 @@ var SelectLabel = React12.forwardRef((_a, ref) => {
|
|
|
4787
5411
|
);
|
|
4788
5412
|
});
|
|
4789
5413
|
SelectLabel.displayName = SelectPrimitive.Label.displayName;
|
|
4790
|
-
var SelectItem =
|
|
5414
|
+
var SelectItem = React14.forwardRef((_a, ref) => {
|
|
4791
5415
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4792
|
-
return /* @__PURE__ */
|
|
5416
|
+
return /* @__PURE__ */ jsx112(
|
|
4793
5417
|
SelectPrimitive.Item,
|
|
4794
5418
|
__spreadProps(__spreadValues({
|
|
4795
5419
|
ref,
|
|
@@ -4798,14 +5422,14 @@ var SelectItem = React12.forwardRef((_a, ref) => {
|
|
|
4798
5422
|
className
|
|
4799
5423
|
)
|
|
4800
5424
|
}, props), {
|
|
4801
|
-
children: /* @__PURE__ */
|
|
5425
|
+
children: /* @__PURE__ */ jsx112(SelectPrimitive.ItemText, { children })
|
|
4802
5426
|
})
|
|
4803
5427
|
);
|
|
4804
5428
|
});
|
|
4805
5429
|
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
|
4806
|
-
var SelectSeparator =
|
|
5430
|
+
var SelectSeparator = React14.forwardRef((_a, ref) => {
|
|
4807
5431
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4808
|
-
return /* @__PURE__ */
|
|
5432
|
+
return /* @__PURE__ */ jsx112(
|
|
4809
5433
|
SelectPrimitive.Separator,
|
|
4810
5434
|
__spreadValues({
|
|
4811
5435
|
ref,
|
|
@@ -4816,12 +5440,12 @@ var SelectSeparator = React12.forwardRef((_a, ref) => {
|
|
|
4816
5440
|
SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
4817
5441
|
|
|
4818
5442
|
// src/components/Switch/Switch.tsx
|
|
4819
|
-
import * as
|
|
5443
|
+
import * as React15 from "react";
|
|
4820
5444
|
import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
4821
|
-
import { jsx as
|
|
4822
|
-
var Switch =
|
|
5445
|
+
import { jsx as jsx113 } from "react/jsx-runtime";
|
|
5446
|
+
var Switch = React15.forwardRef((_a, ref) => {
|
|
4823
5447
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4824
|
-
return /* @__PURE__ */
|
|
5448
|
+
return /* @__PURE__ */ jsx113(
|
|
4825
5449
|
SwitchPrimitive.Root,
|
|
4826
5450
|
__spreadProps(__spreadValues({
|
|
4827
5451
|
className: cn(
|
|
@@ -4830,20 +5454,119 @@ var Switch = React13.forwardRef((_a, ref) => {
|
|
|
4830
5454
|
)
|
|
4831
5455
|
}, props), {
|
|
4832
5456
|
ref,
|
|
4833
|
-
children: /* @__PURE__ */
|
|
5457
|
+
children: /* @__PURE__ */ jsx113(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" })
|
|
4834
5458
|
})
|
|
4835
5459
|
);
|
|
4836
5460
|
});
|
|
4837
5461
|
Switch.displayName = SwitchPrimitive.Root.displayName;
|
|
4838
5462
|
|
|
5463
|
+
// src/components/Table/Table.tsx
|
|
5464
|
+
import * as React16 from "react";
|
|
5465
|
+
import { jsx as jsx114, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
5466
|
+
var Table = React16.forwardRef((_a, ref) => {
|
|
5467
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5468
|
+
return /* @__PURE__ */ jsx114("div", { className: "w-full overflow-auto border rounded-lg", children: /* @__PURE__ */ jsx114(
|
|
5469
|
+
"table",
|
|
5470
|
+
__spreadValues({
|
|
5471
|
+
ref,
|
|
5472
|
+
className: cn("w-full caption-bottom text-xs", className)
|
|
5473
|
+
}, props)
|
|
5474
|
+
) });
|
|
5475
|
+
});
|
|
5476
|
+
Table.displayName = "Table";
|
|
5477
|
+
var TableHeader = React16.forwardRef((_a, ref) => {
|
|
5478
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5479
|
+
return /* @__PURE__ */ jsx114(
|
|
5480
|
+
"thead",
|
|
5481
|
+
__spreadValues({
|
|
5482
|
+
ref,
|
|
5483
|
+
className: cn("[&_tr]:border-b bg-gray-50 text-sm", className)
|
|
5484
|
+
}, props)
|
|
5485
|
+
);
|
|
5486
|
+
});
|
|
5487
|
+
TableHeader.displayName = "TableHeader";
|
|
5488
|
+
var TableBody = React16.forwardRef((_a, ref) => {
|
|
5489
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5490
|
+
return /* @__PURE__ */ jsx114(
|
|
5491
|
+
"tbody",
|
|
5492
|
+
__spreadValues({
|
|
5493
|
+
ref,
|
|
5494
|
+
className: cn(
|
|
5495
|
+
"[&_tr:last-child]:border-0 [&_tr:hover]:bg-gray-25 [&_tr:active]:bg-gray-50 [&_tr:hover:active]:bg-gray-50",
|
|
5496
|
+
className
|
|
5497
|
+
)
|
|
5498
|
+
}, props)
|
|
5499
|
+
);
|
|
5500
|
+
});
|
|
5501
|
+
TableBody.displayName = "TableBody";
|
|
5502
|
+
var TableRow = React16.forwardRef((_a, ref) => {
|
|
5503
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5504
|
+
return /* @__PURE__ */ jsx114(
|
|
5505
|
+
"tr",
|
|
5506
|
+
__spreadValues({
|
|
5507
|
+
ref,
|
|
5508
|
+
className: cn(
|
|
5509
|
+
"border-b transition-colors data-[state=selected]:bg-gray-50",
|
|
5510
|
+
className
|
|
5511
|
+
)
|
|
5512
|
+
}, props)
|
|
5513
|
+
);
|
|
5514
|
+
});
|
|
5515
|
+
TableRow.displayName = "TableRow";
|
|
5516
|
+
var TableHead = React16.forwardRef((_a, ref) => {
|
|
5517
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5518
|
+
return /* @__PURE__ */ jsx114(
|
|
5519
|
+
"th",
|
|
5520
|
+
__spreadValues({
|
|
5521
|
+
ref,
|
|
5522
|
+
className: cn(
|
|
5523
|
+
"h-14 p-4 text-left align-middle font-medium text-gray-900 [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
|
|
5524
|
+
className
|
|
5525
|
+
)
|
|
5526
|
+
}, props)
|
|
5527
|
+
);
|
|
5528
|
+
});
|
|
5529
|
+
TableHead.displayName = "TableHead";
|
|
5530
|
+
var TableCell = React16.forwardRef((_a, ref) => {
|
|
5531
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5532
|
+
return /* @__PURE__ */ jsx114(
|
|
5533
|
+
"td",
|
|
5534
|
+
__spreadValues({
|
|
5535
|
+
ref,
|
|
5536
|
+
className: cn(
|
|
5537
|
+
"p-4 align-middle [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
|
|
5538
|
+
className
|
|
5539
|
+
)
|
|
5540
|
+
}, props)
|
|
5541
|
+
);
|
|
5542
|
+
});
|
|
5543
|
+
TableCell.displayName = "TableCell";
|
|
5544
|
+
var TableEmpty = React16.forwardRef((_a, ref) => {
|
|
5545
|
+
var _b = _a, { className, title, description, children } = _b, props = __objRest(_b, ["className", "title", "description", "children"]);
|
|
5546
|
+
return /* @__PURE__ */ jsxs80(
|
|
5547
|
+
"div",
|
|
5548
|
+
__spreadProps(__spreadValues({
|
|
5549
|
+
ref,
|
|
5550
|
+
className: cn("flex flex-col gap-6 items-center py-12", className)
|
|
5551
|
+
}, props), {
|
|
5552
|
+
children: [
|
|
5553
|
+
title && /* @__PURE__ */ jsx114("span", { className: "text-lg font-semibold text-gray-1000", children: title }),
|
|
5554
|
+
description && /* @__PURE__ */ jsx114("span", { className: "text-sm font-normal text-gray-900", children: description }),
|
|
5555
|
+
/* @__PURE__ */ jsx114("div", { children })
|
|
5556
|
+
]
|
|
5557
|
+
})
|
|
5558
|
+
);
|
|
5559
|
+
});
|
|
5560
|
+
TableEmpty.displayName = "TableEmpty";
|
|
5561
|
+
|
|
4839
5562
|
// src/components/Tabs/Tabs.tsx
|
|
4840
|
-
import * as
|
|
5563
|
+
import * as React17 from "react";
|
|
4841
5564
|
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
4842
|
-
import { jsx as
|
|
5565
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
4843
5566
|
var Tabs = TabsPrimitive.Root;
|
|
4844
|
-
var TabsList =
|
|
5567
|
+
var TabsList = React17.forwardRef((_a, ref) => {
|
|
4845
5568
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4846
|
-
return /* @__PURE__ */
|
|
5569
|
+
return /* @__PURE__ */ jsx115(
|
|
4847
5570
|
TabsPrimitive.List,
|
|
4848
5571
|
__spreadValues({
|
|
4849
5572
|
ref,
|
|
@@ -4855,9 +5578,9 @@ var TabsList = React14.forwardRef((_a, ref) => {
|
|
|
4855
5578
|
);
|
|
4856
5579
|
});
|
|
4857
5580
|
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
4858
|
-
var TabsTrigger =
|
|
5581
|
+
var TabsTrigger = React17.forwardRef((_a, ref) => {
|
|
4859
5582
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4860
|
-
return /* @__PURE__ */
|
|
5583
|
+
return /* @__PURE__ */ jsx115(
|
|
4861
5584
|
TabsPrimitive.Trigger,
|
|
4862
5585
|
__spreadValues({
|
|
4863
5586
|
ref,
|
|
@@ -4872,9 +5595,9 @@ var TabsTrigger = React14.forwardRef((_a, ref) => {
|
|
|
4872
5595
|
);
|
|
4873
5596
|
});
|
|
4874
5597
|
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
4875
|
-
var TabsContent =
|
|
5598
|
+
var TabsContent = React17.forwardRef((_a, ref) => {
|
|
4876
5599
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4877
|
-
return /* @__PURE__ */
|
|
5600
|
+
return /* @__PURE__ */ jsx115(
|
|
4878
5601
|
TabsPrimitive.Content,
|
|
4879
5602
|
__spreadValues({
|
|
4880
5603
|
ref,
|
|
@@ -4888,13 +5611,13 @@ var TabsContent = React14.forwardRef((_a, ref) => {
|
|
|
4888
5611
|
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
4889
5612
|
|
|
4890
5613
|
// src/components/Textarea/Textarea.tsx
|
|
4891
|
-
import * as
|
|
4892
|
-
import { jsx as
|
|
4893
|
-
var Textarea =
|
|
5614
|
+
import * as React18 from "react";
|
|
5615
|
+
import { jsx as jsx116 } from "react/jsx-runtime";
|
|
5616
|
+
var Textarea = React18.forwardRef(
|
|
4894
5617
|
(_a, ref) => {
|
|
4895
5618
|
var _b = _a, { className, disabled } = _b, props = __objRest(_b, ["className", "disabled"]);
|
|
4896
5619
|
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
4897
|
-
return /* @__PURE__ */
|
|
5620
|
+
return /* @__PURE__ */ jsx116("div", { className: "flex gap-2", children: /* @__PURE__ */ jsx116(
|
|
4898
5621
|
"div",
|
|
4899
5622
|
{
|
|
4900
5623
|
className: cn(
|
|
@@ -4905,7 +5628,7 @@ var Textarea = React15.forwardRef(
|
|
|
4905
5628
|
},
|
|
4906
5629
|
className
|
|
4907
5630
|
),
|
|
4908
|
-
children: /* @__PURE__ */
|
|
5631
|
+
children: /* @__PURE__ */ jsx116(
|
|
4909
5632
|
"textarea",
|
|
4910
5633
|
__spreadProps(__spreadValues({}, props), {
|
|
4911
5634
|
disabled: isDisabled,
|
|
@@ -4920,22 +5643,22 @@ var Textarea = React15.forwardRef(
|
|
|
4920
5643
|
Textarea.displayName = "Textarea";
|
|
4921
5644
|
|
|
4922
5645
|
// src/components/Tooltip/Tooltip.tsx
|
|
4923
|
-
import * as
|
|
5646
|
+
import * as React19 from "react";
|
|
4924
5647
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
4925
|
-
import { jsx as
|
|
5648
|
+
import { jsx as jsx117 } from "react/jsx-runtime";
|
|
4926
5649
|
var TooltipProvider = (_a) => {
|
|
4927
5650
|
var _b = _a, {
|
|
4928
5651
|
delayDuration = 0
|
|
4929
5652
|
} = _b, props = __objRest(_b, [
|
|
4930
5653
|
"delayDuration"
|
|
4931
5654
|
]);
|
|
4932
|
-
return /* @__PURE__ */
|
|
5655
|
+
return /* @__PURE__ */ jsx117(TooltipPrimitive.Provider, __spreadValues({ delayDuration }, props));
|
|
4933
5656
|
};
|
|
4934
5657
|
var Tooltip = TooltipPrimitive.Root;
|
|
4935
5658
|
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
4936
|
-
var TooltipContent =
|
|
5659
|
+
var TooltipContent = React19.forwardRef((_a, ref) => {
|
|
4937
5660
|
var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
|
|
4938
|
-
return /* @__PURE__ */
|
|
5661
|
+
return /* @__PURE__ */ jsx117(
|
|
4939
5662
|
TooltipPrimitive.Content,
|
|
4940
5663
|
__spreadValues({
|
|
4941
5664
|
ref,
|
|
@@ -4970,6 +5693,7 @@ export {
|
|
|
4970
5693
|
ArrowRightIcon,
|
|
4971
5694
|
ArrowUpIcon,
|
|
4972
5695
|
AttachmentIcon,
|
|
5696
|
+
Avatar,
|
|
4973
5697
|
Badge,
|
|
4974
5698
|
BellIcon,
|
|
4975
5699
|
Button,
|
|
@@ -4983,10 +5707,21 @@ export {
|
|
|
4983
5707
|
CheckIcon,
|
|
4984
5708
|
Checkbox,
|
|
4985
5709
|
ChevronDownIcon,
|
|
5710
|
+
ChevronLeftDoubleIcon,
|
|
4986
5711
|
ChevronLeftIcon,
|
|
5712
|
+
ChevronRightDoubleIcon,
|
|
4987
5713
|
ChevronRightIcon,
|
|
4988
5714
|
ChevronSelectorVerticalIcon,
|
|
4989
5715
|
ChevronUpIcon,
|
|
5716
|
+
ClockIcon,
|
|
5717
|
+
Command,
|
|
5718
|
+
CommandEmpty,
|
|
5719
|
+
CommandGroup,
|
|
5720
|
+
CommandInput,
|
|
5721
|
+
CommandItem,
|
|
5722
|
+
CommandList,
|
|
5723
|
+
CommandLoading,
|
|
5724
|
+
CommandSeparator,
|
|
4990
5725
|
CopyIcon,
|
|
4991
5726
|
CursorClickIcon,
|
|
4992
5727
|
Dialog,
|
|
@@ -4996,6 +5731,7 @@ export {
|
|
|
4996
5731
|
DialogHeader,
|
|
4997
5732
|
DialogTitle,
|
|
4998
5733
|
DialogTrigger,
|
|
5734
|
+
DotsGrid,
|
|
4999
5735
|
DotsHorizontalIcon,
|
|
5000
5736
|
DownloadIcon,
|
|
5001
5737
|
DropdownMenu,
|
|
@@ -5015,6 +5751,7 @@ export {
|
|
|
5015
5751
|
EditIcon,
|
|
5016
5752
|
ExpandIcon,
|
|
5017
5753
|
FileQuestionIcon,
|
|
5754
|
+
FilterButton,
|
|
5018
5755
|
FilterLinesIcon,
|
|
5019
5756
|
FlipBackwardIcon,
|
|
5020
5757
|
FlipForwardIcon,
|
|
@@ -5047,11 +5784,14 @@ export {
|
|
|
5047
5784
|
MicrophoneOffIcon,
|
|
5048
5785
|
MonitorIcon,
|
|
5049
5786
|
NotificationBoxIcon,
|
|
5787
|
+
Pagination,
|
|
5788
|
+
PaginationPageChoice,
|
|
5050
5789
|
PauseCircleIcon,
|
|
5051
5790
|
PhoneCallIcon,
|
|
5052
5791
|
PhoneIcon,
|
|
5053
5792
|
PieChartIcon,
|
|
5054
5793
|
PlayCircleIcon,
|
|
5794
|
+
PlayIcon,
|
|
5055
5795
|
PlusCircleIcon,
|
|
5056
5796
|
PlusIcon,
|
|
5057
5797
|
Popover,
|
|
@@ -5080,8 +5820,16 @@ export {
|
|
|
5080
5820
|
ShareIcon,
|
|
5081
5821
|
SkipBackIcon,
|
|
5082
5822
|
SkipForwardIcon,
|
|
5823
|
+
SpinnerIcon,
|
|
5083
5824
|
StarsIcon,
|
|
5084
5825
|
Switch,
|
|
5826
|
+
Table,
|
|
5827
|
+
TableBody,
|
|
5828
|
+
TableCell,
|
|
5829
|
+
TableEmpty,
|
|
5830
|
+
TableHead,
|
|
5831
|
+
TableHeader,
|
|
5832
|
+
TableRow,
|
|
5085
5833
|
Tabs,
|
|
5086
5834
|
TabsContent,
|
|
5087
5835
|
TabsList,
|