@snapcall/design-system 1.5.0 → 1.6.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 +280 -169
- package/dist/index.d.ts +280 -169
- package/dist/index.js +1396 -657
- package/dist/index.mjs +1370 -655
- 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",
|
|
@@ -1248,11 +1417,11 @@ var ChevronUpIcon = forwardRef23(
|
|
|
1248
1417
|
);
|
|
1249
1418
|
|
|
1250
1419
|
// src/icons/copy.tsx
|
|
1251
|
-
import { forwardRef as
|
|
1252
|
-
import { jsx as
|
|
1253
|
-
var CopyIcon =
|
|
1420
|
+
import { forwardRef as forwardRef27 } from "react";
|
|
1421
|
+
import { jsx as jsx29, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1422
|
+
var CopyIcon = forwardRef27(function CopyIcon2(_a, ref) {
|
|
1254
1423
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1255
|
-
return /* @__PURE__ */
|
|
1424
|
+
return /* @__PURE__ */ jsxs15(
|
|
1256
1425
|
"svg",
|
|
1257
1426
|
__spreadProps(__spreadValues({
|
|
1258
1427
|
ref,
|
|
@@ -1264,7 +1433,7 @@ var CopyIcon = forwardRef24(function CopyIcon2(_a, ref) {
|
|
|
1264
1433
|
className
|
|
1265
1434
|
}, other), {
|
|
1266
1435
|
children: [
|
|
1267
|
-
duotone && /* @__PURE__ */
|
|
1436
|
+
duotone && /* @__PURE__ */ jsx29(
|
|
1268
1437
|
"path",
|
|
1269
1438
|
{
|
|
1270
1439
|
opacity: "0.12",
|
|
@@ -1272,7 +1441,7 @@ var CopyIcon = forwardRef24(function CopyIcon2(_a, ref) {
|
|
|
1272
1441
|
fill: "currentColor"
|
|
1273
1442
|
}
|
|
1274
1443
|
),
|
|
1275
|
-
/* @__PURE__ */
|
|
1444
|
+
/* @__PURE__ */ jsx29(
|
|
1276
1445
|
"path",
|
|
1277
1446
|
{
|
|
1278
1447
|
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 +1457,12 @@ var CopyIcon = forwardRef24(function CopyIcon2(_a, ref) {
|
|
|
1288
1457
|
});
|
|
1289
1458
|
|
|
1290
1459
|
// src/icons/cursorClick.tsx
|
|
1291
|
-
import { forwardRef as
|
|
1292
|
-
import { jsx as
|
|
1293
|
-
var CursorClickIcon =
|
|
1460
|
+
import { forwardRef as forwardRef28 } from "react";
|
|
1461
|
+
import { jsx as jsx30, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1462
|
+
var CursorClickIcon = forwardRef28(
|
|
1294
1463
|
function CursorClickIcon2(_a, ref) {
|
|
1295
1464
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1296
|
-
return /* @__PURE__ */
|
|
1465
|
+
return /* @__PURE__ */ jsxs16(
|
|
1297
1466
|
"svg",
|
|
1298
1467
|
__spreadProps(__spreadValues({
|
|
1299
1468
|
ref,
|
|
@@ -1305,7 +1474,7 @@ var CursorClickIcon = forwardRef25(
|
|
|
1305
1474
|
className
|
|
1306
1475
|
}, other), {
|
|
1307
1476
|
children: [
|
|
1308
|
-
duotone && /* @__PURE__ */
|
|
1477
|
+
duotone && /* @__PURE__ */ jsx30(
|
|
1309
1478
|
"path",
|
|
1310
1479
|
{
|
|
1311
1480
|
opacity: "0.12",
|
|
@@ -1313,7 +1482,7 @@ var CursorClickIcon = forwardRef25(
|
|
|
1313
1482
|
fill: "currentColor"
|
|
1314
1483
|
}
|
|
1315
1484
|
),
|
|
1316
|
-
/* @__PURE__ */
|
|
1485
|
+
/* @__PURE__ */ jsx30(
|
|
1317
1486
|
"path",
|
|
1318
1487
|
{
|
|
1319
1488
|
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 +1499,12 @@ var CursorClickIcon = forwardRef25(
|
|
|
1330
1499
|
);
|
|
1331
1500
|
|
|
1332
1501
|
// src/icons/dotsHorizontal.tsx
|
|
1333
|
-
import { forwardRef as
|
|
1334
|
-
import { jsx as
|
|
1335
|
-
var DotsHorizontalIcon =
|
|
1502
|
+
import { forwardRef as forwardRef29 } from "react";
|
|
1503
|
+
import { jsx as jsx31, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1504
|
+
var DotsHorizontalIcon = forwardRef29(
|
|
1336
1505
|
function DotsHorizontalIcon2(_a, ref) {
|
|
1337
1506
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1338
|
-
return /* @__PURE__ */
|
|
1507
|
+
return /* @__PURE__ */ jsxs17(
|
|
1339
1508
|
"svg",
|
|
1340
1509
|
__spreadProps(__spreadValues({
|
|
1341
1510
|
ref,
|
|
@@ -1347,7 +1516,7 @@ var DotsHorizontalIcon = forwardRef26(
|
|
|
1347
1516
|
className
|
|
1348
1517
|
}, other), {
|
|
1349
1518
|
children: [
|
|
1350
|
-
/* @__PURE__ */
|
|
1519
|
+
/* @__PURE__ */ jsx31(
|
|
1351
1520
|
"path",
|
|
1352
1521
|
{
|
|
1353
1522
|
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 +1526,7 @@ var DotsHorizontalIcon = forwardRef26(
|
|
|
1357
1526
|
strokeLinejoin: "round"
|
|
1358
1527
|
}
|
|
1359
1528
|
),
|
|
1360
|
-
/* @__PURE__ */
|
|
1529
|
+
/* @__PURE__ */ jsx31(
|
|
1361
1530
|
"path",
|
|
1362
1531
|
{
|
|
1363
1532
|
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 +1536,7 @@ var DotsHorizontalIcon = forwardRef26(
|
|
|
1367
1536
|
strokeLinejoin: "round"
|
|
1368
1537
|
}
|
|
1369
1538
|
),
|
|
1370
|
-
/* @__PURE__ */
|
|
1539
|
+
/* @__PURE__ */ jsx31(
|
|
1371
1540
|
"path",
|
|
1372
1541
|
{
|
|
1373
1542
|
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 +1552,125 @@ var DotsHorizontalIcon = forwardRef26(
|
|
|
1383
1552
|
}
|
|
1384
1553
|
);
|
|
1385
1554
|
|
|
1555
|
+
// src/icons/dotsGrid.tsx
|
|
1556
|
+
import { forwardRef as forwardRef30 } from "react";
|
|
1557
|
+
import { jsx as jsx32, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1558
|
+
var DotsGrid = forwardRef30(function DotsGrid2(_a, ref) {
|
|
1559
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1560
|
+
return /* @__PURE__ */ jsxs18(
|
|
1561
|
+
"svg",
|
|
1562
|
+
__spreadProps(__spreadValues({
|
|
1563
|
+
ref,
|
|
1564
|
+
width: size,
|
|
1565
|
+
height: size,
|
|
1566
|
+
viewBox: "0 0 24 24",
|
|
1567
|
+
fill: "none",
|
|
1568
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1569
|
+
className
|
|
1570
|
+
}, other), {
|
|
1571
|
+
children: [
|
|
1572
|
+
/* @__PURE__ */ jsx32(
|
|
1573
|
+
"path",
|
|
1574
|
+
{
|
|
1575
|
+
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",
|
|
1576
|
+
stroke: "currentColor",
|
|
1577
|
+
strokeWidth: "2",
|
|
1578
|
+
strokeLinecap: "round",
|
|
1579
|
+
strokeLinejoin: "round"
|
|
1580
|
+
}
|
|
1581
|
+
),
|
|
1582
|
+
/* @__PURE__ */ jsx32(
|
|
1583
|
+
"path",
|
|
1584
|
+
{
|
|
1585
|
+
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",
|
|
1586
|
+
stroke: "currentColor",
|
|
1587
|
+
strokeWidth: "2",
|
|
1588
|
+
strokeLinecap: "round",
|
|
1589
|
+
strokeLinejoin: "round"
|
|
1590
|
+
}
|
|
1591
|
+
),
|
|
1592
|
+
/* @__PURE__ */ jsx32(
|
|
1593
|
+
"path",
|
|
1594
|
+
{
|
|
1595
|
+
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",
|
|
1596
|
+
stroke: "currentColor",
|
|
1597
|
+
strokeWidth: "2",
|
|
1598
|
+
strokeLinecap: "round",
|
|
1599
|
+
strokeLinejoin: "round"
|
|
1600
|
+
}
|
|
1601
|
+
),
|
|
1602
|
+
/* @__PURE__ */ jsx32(
|
|
1603
|
+
"path",
|
|
1604
|
+
{
|
|
1605
|
+
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",
|
|
1606
|
+
stroke: "currentColor",
|
|
1607
|
+
strokeWidth: "2",
|
|
1608
|
+
strokeLinecap: "round",
|
|
1609
|
+
strokeLinejoin: "round"
|
|
1610
|
+
}
|
|
1611
|
+
),
|
|
1612
|
+
/* @__PURE__ */ jsx32(
|
|
1613
|
+
"path",
|
|
1614
|
+
{
|
|
1615
|
+
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",
|
|
1616
|
+
stroke: "currentColor",
|
|
1617
|
+
strokeWidth: "2",
|
|
1618
|
+
strokeLinecap: "round",
|
|
1619
|
+
strokeLinejoin: "round"
|
|
1620
|
+
}
|
|
1621
|
+
),
|
|
1622
|
+
/* @__PURE__ */ jsx32(
|
|
1623
|
+
"path",
|
|
1624
|
+
{
|
|
1625
|
+
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",
|
|
1626
|
+
stroke: "currentColor",
|
|
1627
|
+
strokeWidth: "2",
|
|
1628
|
+
strokeLinecap: "round",
|
|
1629
|
+
strokeLinejoin: "round"
|
|
1630
|
+
}
|
|
1631
|
+
),
|
|
1632
|
+
/* @__PURE__ */ jsx32(
|
|
1633
|
+
"path",
|
|
1634
|
+
{
|
|
1635
|
+
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",
|
|
1636
|
+
stroke: "currentColor",
|
|
1637
|
+
strokeWidth: "2",
|
|
1638
|
+
strokeLinecap: "round",
|
|
1639
|
+
strokeLinejoin: "round"
|
|
1640
|
+
}
|
|
1641
|
+
),
|
|
1642
|
+
/* @__PURE__ */ jsx32(
|
|
1643
|
+
"path",
|
|
1644
|
+
{
|
|
1645
|
+
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",
|
|
1646
|
+
stroke: "currentColor",
|
|
1647
|
+
strokeWidth: "2",
|
|
1648
|
+
strokeLinecap: "round",
|
|
1649
|
+
strokeLinejoin: "round"
|
|
1650
|
+
}
|
|
1651
|
+
),
|
|
1652
|
+
/* @__PURE__ */ jsx32(
|
|
1653
|
+
"path",
|
|
1654
|
+
{
|
|
1655
|
+
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",
|
|
1656
|
+
stroke: "currentColor",
|
|
1657
|
+
strokeWidth: "2",
|
|
1658
|
+
strokeLinecap: "round",
|
|
1659
|
+
strokeLinejoin: "round"
|
|
1660
|
+
}
|
|
1661
|
+
)
|
|
1662
|
+
]
|
|
1663
|
+
})
|
|
1664
|
+
);
|
|
1665
|
+
});
|
|
1666
|
+
|
|
1386
1667
|
// src/icons/download.tsx
|
|
1387
|
-
import { forwardRef as
|
|
1388
|
-
import { jsx as
|
|
1389
|
-
var DownloadIcon =
|
|
1668
|
+
import { forwardRef as forwardRef31 } from "react";
|
|
1669
|
+
import { jsx as jsx33, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1670
|
+
var DownloadIcon = forwardRef31(
|
|
1390
1671
|
function DownloadIcon2(_a, ref) {
|
|
1391
1672
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1392
|
-
return /* @__PURE__ */
|
|
1673
|
+
return /* @__PURE__ */ jsxs19(
|
|
1393
1674
|
"svg",
|
|
1394
1675
|
__spreadProps(__spreadValues({
|
|
1395
1676
|
ref,
|
|
@@ -1401,7 +1682,7 @@ var DownloadIcon = forwardRef27(
|
|
|
1401
1682
|
className
|
|
1402
1683
|
}, other), {
|
|
1403
1684
|
children: [
|
|
1404
|
-
duotone && /* @__PURE__ */
|
|
1685
|
+
duotone && /* @__PURE__ */ jsx33(
|
|
1405
1686
|
"path",
|
|
1406
1687
|
{
|
|
1407
1688
|
opacity: "0.12",
|
|
@@ -1409,7 +1690,7 @@ var DownloadIcon = forwardRef27(
|
|
|
1409
1690
|
fill: "currentColor"
|
|
1410
1691
|
}
|
|
1411
1692
|
),
|
|
1412
|
-
/* @__PURE__ */
|
|
1693
|
+
/* @__PURE__ */ jsx33(
|
|
1413
1694
|
"path",
|
|
1414
1695
|
{
|
|
1415
1696
|
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 +1707,11 @@ var DownloadIcon = forwardRef27(
|
|
|
1426
1707
|
);
|
|
1427
1708
|
|
|
1428
1709
|
// src/icons/edit.tsx
|
|
1429
|
-
import { forwardRef as
|
|
1430
|
-
import { jsx as
|
|
1431
|
-
var EditIcon =
|
|
1710
|
+
import { forwardRef as forwardRef32 } from "react";
|
|
1711
|
+
import { jsx as jsx34, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1712
|
+
var EditIcon = forwardRef32(function EditIcon2(_a, ref) {
|
|
1432
1713
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1433
|
-
return /* @__PURE__ */
|
|
1714
|
+
return /* @__PURE__ */ jsxs20(
|
|
1434
1715
|
"svg",
|
|
1435
1716
|
__spreadProps(__spreadValues({
|
|
1436
1717
|
ref,
|
|
@@ -1442,7 +1723,7 @@ var EditIcon = forwardRef28(function EditIcon2(_a, ref) {
|
|
|
1442
1723
|
className
|
|
1443
1724
|
}, other), {
|
|
1444
1725
|
children: [
|
|
1445
|
-
duotone && /* @__PURE__ */
|
|
1726
|
+
duotone && /* @__PURE__ */ jsx34(
|
|
1446
1727
|
"path",
|
|
1447
1728
|
{
|
|
1448
1729
|
opacity: "0.12",
|
|
@@ -1450,7 +1731,7 @@ var EditIcon = forwardRef28(function EditIcon2(_a, ref) {
|
|
|
1450
1731
|
fill: "currentColor"
|
|
1451
1732
|
}
|
|
1452
1733
|
),
|
|
1453
|
-
/* @__PURE__ */
|
|
1734
|
+
/* @__PURE__ */ jsx34(
|
|
1454
1735
|
"path",
|
|
1455
1736
|
{
|
|
1456
1737
|
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 +1747,12 @@ var EditIcon = forwardRef28(function EditIcon2(_a, ref) {
|
|
|
1466
1747
|
});
|
|
1467
1748
|
|
|
1468
1749
|
// src/icons/expand.tsx
|
|
1469
|
-
import { forwardRef as
|
|
1470
|
-
import { jsx as
|
|
1471
|
-
var ExpandIcon =
|
|
1750
|
+
import { forwardRef as forwardRef33 } from "react";
|
|
1751
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
1752
|
+
var ExpandIcon = forwardRef33(
|
|
1472
1753
|
function ExpandIcon2(_a, ref) {
|
|
1473
1754
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1474
|
-
return /* @__PURE__ */
|
|
1755
|
+
return /* @__PURE__ */ jsx35(
|
|
1475
1756
|
"svg",
|
|
1476
1757
|
__spreadProps(__spreadValues({
|
|
1477
1758
|
ref,
|
|
@@ -1482,7 +1763,7 @@ var ExpandIcon = forwardRef29(
|
|
|
1482
1763
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1483
1764
|
className
|
|
1484
1765
|
}, other), {
|
|
1485
|
-
children: /* @__PURE__ */
|
|
1766
|
+
children: /* @__PURE__ */ jsx35(
|
|
1486
1767
|
"path",
|
|
1487
1768
|
{
|
|
1488
1769
|
d: "M16 8L21 3M21 3H16M21 3V8M8 8L3 3M3 3L3 8M3 3L8 3M8 16L3 21M3 21H8M3 21L3 16M16 16L21 21M21 21V16M21 21H16",
|
|
@@ -1498,12 +1779,12 @@ var ExpandIcon = forwardRef29(
|
|
|
1498
1779
|
);
|
|
1499
1780
|
|
|
1500
1781
|
// src/icons/fileQuestion.tsx
|
|
1501
|
-
import { forwardRef as
|
|
1502
|
-
import { jsx as
|
|
1503
|
-
var FileQuestionIcon =
|
|
1782
|
+
import { forwardRef as forwardRef34 } from "react";
|
|
1783
|
+
import { jsx as jsx36, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1784
|
+
var FileQuestionIcon = forwardRef34(
|
|
1504
1785
|
function FileQuestionIcon2(_a, ref) {
|
|
1505
1786
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1506
|
-
return /* @__PURE__ */
|
|
1787
|
+
return /* @__PURE__ */ jsxs21(
|
|
1507
1788
|
"svg",
|
|
1508
1789
|
__spreadProps(__spreadValues({
|
|
1509
1790
|
ref,
|
|
@@ -1515,7 +1796,7 @@ var FileQuestionIcon = forwardRef30(
|
|
|
1515
1796
|
className
|
|
1516
1797
|
}, other), {
|
|
1517
1798
|
children: [
|
|
1518
|
-
duotone && /* @__PURE__ */
|
|
1799
|
+
duotone && /* @__PURE__ */ jsx36(
|
|
1519
1800
|
"path",
|
|
1520
1801
|
{
|
|
1521
1802
|
opacity: "0.12",
|
|
@@ -1523,7 +1804,7 @@ var FileQuestionIcon = forwardRef30(
|
|
|
1523
1804
|
fill: "currentColor"
|
|
1524
1805
|
}
|
|
1525
1806
|
),
|
|
1526
|
-
/* @__PURE__ */
|
|
1807
|
+
/* @__PURE__ */ jsx36(
|
|
1527
1808
|
"path",
|
|
1528
1809
|
{
|
|
1529
1810
|
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 +1821,12 @@ var FileQuestionIcon = forwardRef30(
|
|
|
1540
1821
|
);
|
|
1541
1822
|
|
|
1542
1823
|
// src/icons/filterLines.tsx
|
|
1543
|
-
import { forwardRef as
|
|
1544
|
-
import { jsx as
|
|
1545
|
-
var FilterLinesIcon =
|
|
1824
|
+
import { forwardRef as forwardRef35 } from "react";
|
|
1825
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
1826
|
+
var FilterLinesIcon = forwardRef35(
|
|
1546
1827
|
function FilterLinesIcon2(_a, ref) {
|
|
1547
1828
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1548
|
-
return /* @__PURE__ */
|
|
1829
|
+
return /* @__PURE__ */ jsx37(
|
|
1549
1830
|
"svg",
|
|
1550
1831
|
__spreadProps(__spreadValues({
|
|
1551
1832
|
ref,
|
|
@@ -1556,7 +1837,7 @@ var FilterLinesIcon = forwardRef31(
|
|
|
1556
1837
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1557
1838
|
className
|
|
1558
1839
|
}, other), {
|
|
1559
|
-
children: /* @__PURE__ */
|
|
1840
|
+
children: /* @__PURE__ */ jsx37(
|
|
1560
1841
|
"path",
|
|
1561
1842
|
{
|
|
1562
1843
|
d: "M6 12H18M3 6H21M9 18H15",
|
|
@@ -1572,12 +1853,12 @@ var FilterLinesIcon = forwardRef31(
|
|
|
1572
1853
|
);
|
|
1573
1854
|
|
|
1574
1855
|
// src/icons/flipBackward.tsx
|
|
1575
|
-
import { forwardRef as
|
|
1576
|
-
import { jsx as
|
|
1577
|
-
var FlipBackwardIcon =
|
|
1856
|
+
import { forwardRef as forwardRef36 } from "react";
|
|
1857
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
1858
|
+
var FlipBackwardIcon = forwardRef36(
|
|
1578
1859
|
function FlipBackwardIcon2(_a, ref) {
|
|
1579
1860
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1580
|
-
return /* @__PURE__ */
|
|
1861
|
+
return /* @__PURE__ */ jsx38(
|
|
1581
1862
|
"svg",
|
|
1582
1863
|
__spreadProps(__spreadValues({
|
|
1583
1864
|
ref,
|
|
@@ -1588,7 +1869,7 @@ var FlipBackwardIcon = forwardRef32(
|
|
|
1588
1869
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1589
1870
|
className
|
|
1590
1871
|
}, other), {
|
|
1591
|
-
children: /* @__PURE__ */
|
|
1872
|
+
children: /* @__PURE__ */ jsx38(
|
|
1592
1873
|
"path",
|
|
1593
1874
|
{
|
|
1594
1875
|
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 +1885,12 @@ var FlipBackwardIcon = forwardRef32(
|
|
|
1604
1885
|
);
|
|
1605
1886
|
|
|
1606
1887
|
// src/icons/flipForward.tsx
|
|
1607
|
-
import { forwardRef as
|
|
1608
|
-
import { jsx as
|
|
1609
|
-
var FlipForwardIcon =
|
|
1888
|
+
import { forwardRef as forwardRef37 } from "react";
|
|
1889
|
+
import { jsx as jsx39 } from "react/jsx-runtime";
|
|
1890
|
+
var FlipForwardIcon = forwardRef37(
|
|
1610
1891
|
function FlipForwardIcon2(_a, ref) {
|
|
1611
1892
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1612
|
-
return /* @__PURE__ */
|
|
1893
|
+
return /* @__PURE__ */ jsx39(
|
|
1613
1894
|
"svg",
|
|
1614
1895
|
__spreadProps(__spreadValues({
|
|
1615
1896
|
ref,
|
|
@@ -1620,7 +1901,7 @@ var FlipForwardIcon = forwardRef33(
|
|
|
1620
1901
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1621
1902
|
className
|
|
1622
1903
|
}, other), {
|
|
1623
|
-
children: /* @__PURE__ */
|
|
1904
|
+
children: /* @__PURE__ */ jsx39(
|
|
1624
1905
|
"path",
|
|
1625
1906
|
{
|
|
1626
1907
|
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 +1917,12 @@ var FlipForwardIcon = forwardRef33(
|
|
|
1636
1917
|
);
|
|
1637
1918
|
|
|
1638
1919
|
// src/icons/helpCircle.tsx
|
|
1639
|
-
import { forwardRef as
|
|
1640
|
-
import { jsx as
|
|
1641
|
-
var HelpCircleIcon =
|
|
1920
|
+
import { forwardRef as forwardRef38 } from "react";
|
|
1921
|
+
import { jsx as jsx40, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1922
|
+
var HelpCircleIcon = forwardRef38(
|
|
1642
1923
|
function HelpCircleIcon2(_a, ref) {
|
|
1643
1924
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1644
|
-
return /* @__PURE__ */
|
|
1925
|
+
return /* @__PURE__ */ jsxs22(
|
|
1645
1926
|
"svg",
|
|
1646
1927
|
__spreadProps(__spreadValues({
|
|
1647
1928
|
ref,
|
|
@@ -1653,7 +1934,7 @@ var HelpCircleIcon = forwardRef34(
|
|
|
1653
1934
|
className
|
|
1654
1935
|
}, other), {
|
|
1655
1936
|
children: [
|
|
1656
|
-
duotone && /* @__PURE__ */
|
|
1937
|
+
duotone && /* @__PURE__ */ jsx40(
|
|
1657
1938
|
"path",
|
|
1658
1939
|
{
|
|
1659
1940
|
opacity: "0.12",
|
|
@@ -1661,7 +1942,7 @@ var HelpCircleIcon = forwardRef34(
|
|
|
1661
1942
|
fill: "currentColor"
|
|
1662
1943
|
}
|
|
1663
1944
|
),
|
|
1664
|
-
/* @__PURE__ */
|
|
1945
|
+
/* @__PURE__ */ jsx40(
|
|
1665
1946
|
"path",
|
|
1666
1947
|
{
|
|
1667
1948
|
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 +1959,11 @@ var HelpCircleIcon = forwardRef34(
|
|
|
1678
1959
|
);
|
|
1679
1960
|
|
|
1680
1961
|
// src/icons/home.tsx
|
|
1681
|
-
import { forwardRef as
|
|
1682
|
-
import { jsx as
|
|
1683
|
-
var HomeIcon =
|
|
1962
|
+
import { forwardRef as forwardRef39 } from "react";
|
|
1963
|
+
import { jsx as jsx41, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1964
|
+
var HomeIcon = forwardRef39(function HomeIcon2(_a, ref) {
|
|
1684
1965
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1685
|
-
return /* @__PURE__ */
|
|
1966
|
+
return /* @__PURE__ */ jsxs23(
|
|
1686
1967
|
"svg",
|
|
1687
1968
|
__spreadProps(__spreadValues({
|
|
1688
1969
|
ref,
|
|
@@ -1694,8 +1975,8 @@ var HomeIcon = forwardRef35(function HomeIcon2(_a, ref) {
|
|
|
1694
1975
|
className
|
|
1695
1976
|
}, other), {
|
|
1696
1977
|
children: [
|
|
1697
|
-
duotone && /* @__PURE__ */
|
|
1698
|
-
/* @__PURE__ */
|
|
1978
|
+
duotone && /* @__PURE__ */ jsx41("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
|
|
1979
|
+
/* @__PURE__ */ jsx41(
|
|
1699
1980
|
"path",
|
|
1700
1981
|
{
|
|
1701
1982
|
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 +1992,12 @@ var HomeIcon = forwardRef35(function HomeIcon2(_a, ref) {
|
|
|
1711
1992
|
});
|
|
1712
1993
|
|
|
1713
1994
|
// src/icons/image.tsx
|
|
1714
|
-
import { forwardRef as
|
|
1715
|
-
import { jsx as
|
|
1716
|
-
var ImageIcon =
|
|
1995
|
+
import { forwardRef as forwardRef40 } from "react";
|
|
1996
|
+
import { jsx as jsx42, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1997
|
+
var ImageIcon = forwardRef40(
|
|
1717
1998
|
function ImageIcon2(_a, ref) {
|
|
1718
1999
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1719
|
-
return /* @__PURE__ */
|
|
2000
|
+
return /* @__PURE__ */ jsxs24(
|
|
1720
2001
|
"svg",
|
|
1721
2002
|
__spreadProps(__spreadValues({
|
|
1722
2003
|
ref,
|
|
@@ -1728,15 +2009,15 @@ var ImageIcon = forwardRef36(
|
|
|
1728
2009
|
className
|
|
1729
2010
|
}, other), {
|
|
1730
2011
|
children: [
|
|
1731
|
-
duotone && /* @__PURE__ */
|
|
1732
|
-
/* @__PURE__ */
|
|
2012
|
+
duotone && /* @__PURE__ */ jsxs24("g", { opacity: "0.12", children: [
|
|
2013
|
+
/* @__PURE__ */ jsx42(
|
|
1733
2014
|
"path",
|
|
1734
2015
|
{
|
|
1735
2016
|
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
2017
|
fill: "currentColor"
|
|
1737
2018
|
}
|
|
1738
2019
|
),
|
|
1739
|
-
/* @__PURE__ */
|
|
2020
|
+
/* @__PURE__ */ jsx42(
|
|
1740
2021
|
"path",
|
|
1741
2022
|
{
|
|
1742
2023
|
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 +2025,7 @@ var ImageIcon = forwardRef36(
|
|
|
1744
2025
|
}
|
|
1745
2026
|
)
|
|
1746
2027
|
] }),
|
|
1747
|
-
/* @__PURE__ */
|
|
2028
|
+
/* @__PURE__ */ jsx42(
|
|
1748
2029
|
"path",
|
|
1749
2030
|
{
|
|
1750
2031
|
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 +2042,12 @@ var ImageIcon = forwardRef36(
|
|
|
1761
2042
|
);
|
|
1762
2043
|
|
|
1763
2044
|
// src/icons/imageDown.tsx
|
|
1764
|
-
import { forwardRef as
|
|
1765
|
-
import { jsx as
|
|
1766
|
-
var ImageDownIcon =
|
|
2045
|
+
import { forwardRef as forwardRef41 } from "react";
|
|
2046
|
+
import { jsx as jsx43, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
2047
|
+
var ImageDownIcon = forwardRef41(
|
|
1767
2048
|
function ImageDownIcon2(_a, ref) {
|
|
1768
2049
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1769
|
-
return /* @__PURE__ */
|
|
2050
|
+
return /* @__PURE__ */ jsxs25(
|
|
1770
2051
|
"svg",
|
|
1771
2052
|
__spreadProps(__spreadValues({
|
|
1772
2053
|
ref,
|
|
@@ -1778,15 +2059,15 @@ var ImageDownIcon = forwardRef37(
|
|
|
1778
2059
|
className
|
|
1779
2060
|
}, other), {
|
|
1780
2061
|
children: [
|
|
1781
|
-
duotone && /* @__PURE__ */
|
|
1782
|
-
/* @__PURE__ */
|
|
2062
|
+
duotone && /* @__PURE__ */ jsxs25("g", { opacity: "0.12", children: [
|
|
2063
|
+
/* @__PURE__ */ jsx43(
|
|
1783
2064
|
"path",
|
|
1784
2065
|
{
|
|
1785
2066
|
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
2067
|
fill: "currentColor"
|
|
1787
2068
|
}
|
|
1788
2069
|
),
|
|
1789
|
-
/* @__PURE__ */
|
|
2070
|
+
/* @__PURE__ */ jsx43(
|
|
1790
2071
|
"path",
|
|
1791
2072
|
{
|
|
1792
2073
|
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 +2075,7 @@ var ImageDownIcon = forwardRef37(
|
|
|
1794
2075
|
}
|
|
1795
2076
|
)
|
|
1796
2077
|
] }),
|
|
1797
|
-
/* @__PURE__ */
|
|
2078
|
+
/* @__PURE__ */ jsx43(
|
|
1798
2079
|
"path",
|
|
1799
2080
|
{
|
|
1800
2081
|
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 +2092,12 @@ var ImageDownIcon = forwardRef37(
|
|
|
1811
2092
|
);
|
|
1812
2093
|
|
|
1813
2094
|
// src/icons/imageX.tsx
|
|
1814
|
-
import { forwardRef as
|
|
1815
|
-
import { jsx as
|
|
1816
|
-
var ImageXIcon =
|
|
2095
|
+
import { forwardRef as forwardRef42 } from "react";
|
|
2096
|
+
import { jsx as jsx44, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
2097
|
+
var ImageXIcon = forwardRef42(
|
|
1817
2098
|
function ImageXIcon2(_a, ref) {
|
|
1818
2099
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1819
|
-
return /* @__PURE__ */
|
|
2100
|
+
return /* @__PURE__ */ jsxs26(
|
|
1820
2101
|
"svg",
|
|
1821
2102
|
__spreadProps(__spreadValues({
|
|
1822
2103
|
ref,
|
|
@@ -1828,15 +2109,15 @@ var ImageXIcon = forwardRef38(
|
|
|
1828
2109
|
className
|
|
1829
2110
|
}, other), {
|
|
1830
2111
|
children: [
|
|
1831
|
-
duotone && /* @__PURE__ */
|
|
1832
|
-
/* @__PURE__ */
|
|
2112
|
+
duotone && /* @__PURE__ */ jsxs26("g", { opacity: "0.12", children: [
|
|
2113
|
+
/* @__PURE__ */ jsx44(
|
|
1833
2114
|
"path",
|
|
1834
2115
|
{
|
|
1835
2116
|
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
2117
|
fill: "currentColor"
|
|
1837
2118
|
}
|
|
1838
2119
|
),
|
|
1839
|
-
/* @__PURE__ */
|
|
2120
|
+
/* @__PURE__ */ jsx44(
|
|
1840
2121
|
"path",
|
|
1841
2122
|
{
|
|
1842
2123
|
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 +2125,7 @@ var ImageXIcon = forwardRef38(
|
|
|
1844
2125
|
}
|
|
1845
2126
|
)
|
|
1846
2127
|
] }),
|
|
1847
|
-
/* @__PURE__ */
|
|
2128
|
+
/* @__PURE__ */ jsx44(
|
|
1848
2129
|
"path",
|
|
1849
2130
|
{
|
|
1850
2131
|
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 +2142,12 @@ var ImageXIcon = forwardRef38(
|
|
|
1861
2142
|
);
|
|
1862
2143
|
|
|
1863
2144
|
// src/icons/infoCircle.tsx
|
|
1864
|
-
import { forwardRef as
|
|
1865
|
-
import { jsx as
|
|
1866
|
-
var InfoCircleIcon =
|
|
2145
|
+
import { forwardRef as forwardRef43 } from "react";
|
|
2146
|
+
import { jsx as jsx45, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
2147
|
+
var InfoCircleIcon = forwardRef43(
|
|
1867
2148
|
function InfoCircleIcon2(_a, ref) {
|
|
1868
2149
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1869
|
-
return /* @__PURE__ */
|
|
2150
|
+
return /* @__PURE__ */ jsxs27(
|
|
1870
2151
|
"svg",
|
|
1871
2152
|
__spreadProps(__spreadValues({
|
|
1872
2153
|
ref,
|
|
@@ -1878,7 +2159,7 @@ var InfoCircleIcon = forwardRef39(
|
|
|
1878
2159
|
className
|
|
1879
2160
|
}, other), {
|
|
1880
2161
|
children: [
|
|
1881
|
-
duotone && /* @__PURE__ */
|
|
2162
|
+
duotone && /* @__PURE__ */ jsx45(
|
|
1882
2163
|
"path",
|
|
1883
2164
|
{
|
|
1884
2165
|
opacity: "0.12",
|
|
@@ -1886,7 +2167,7 @@ var InfoCircleIcon = forwardRef39(
|
|
|
1886
2167
|
fill: "currentColor"
|
|
1887
2168
|
}
|
|
1888
2169
|
),
|
|
1889
|
-
/* @__PURE__ */
|
|
2170
|
+
/* @__PURE__ */ jsx45(
|
|
1890
2171
|
"path",
|
|
1891
2172
|
{
|
|
1892
2173
|
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 +2184,12 @@ var InfoCircleIcon = forwardRef39(
|
|
|
1903
2184
|
);
|
|
1904
2185
|
|
|
1905
2186
|
// src/icons/lightbulb.tsx
|
|
1906
|
-
import { forwardRef as
|
|
1907
|
-
import { jsx as
|
|
1908
|
-
var LightbulbIcon =
|
|
2187
|
+
import { forwardRef as forwardRef44 } from "react";
|
|
2188
|
+
import { jsx as jsx46, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
2189
|
+
var LightbulbIcon = forwardRef44(
|
|
1909
2190
|
function LightbulbIcon2(_a, ref) {
|
|
1910
2191
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1911
|
-
return /* @__PURE__ */
|
|
2192
|
+
return /* @__PURE__ */ jsxs28(
|
|
1912
2193
|
"svg",
|
|
1913
2194
|
__spreadProps(__spreadValues({
|
|
1914
2195
|
ref,
|
|
@@ -1920,7 +2201,7 @@ var LightbulbIcon = forwardRef40(
|
|
|
1920
2201
|
className
|
|
1921
2202
|
}, other), {
|
|
1922
2203
|
children: [
|
|
1923
|
-
duotone && /* @__PURE__ */
|
|
2204
|
+
duotone && /* @__PURE__ */ jsx46(
|
|
1924
2205
|
"path",
|
|
1925
2206
|
{
|
|
1926
2207
|
opacity: "0.12",
|
|
@@ -1928,7 +2209,7 @@ var LightbulbIcon = forwardRef40(
|
|
|
1928
2209
|
fill: "currentColor"
|
|
1929
2210
|
}
|
|
1930
2211
|
),
|
|
1931
|
-
/* @__PURE__ */
|
|
2212
|
+
/* @__PURE__ */ jsx46(
|
|
1932
2213
|
"path",
|
|
1933
2214
|
{
|
|
1934
2215
|
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 +2226,11 @@ var LightbulbIcon = forwardRef40(
|
|
|
1945
2226
|
);
|
|
1946
2227
|
|
|
1947
2228
|
// src/icons/link.tsx
|
|
1948
|
-
import { forwardRef as
|
|
1949
|
-
import { jsx as
|
|
1950
|
-
var LinkIcon =
|
|
2229
|
+
import { forwardRef as forwardRef45 } from "react";
|
|
2230
|
+
import { jsx as jsx47 } from "react/jsx-runtime";
|
|
2231
|
+
var LinkIcon = forwardRef45(function LinkIcon2(_a, ref) {
|
|
1951
2232
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1952
|
-
return /* @__PURE__ */
|
|
2233
|
+
return /* @__PURE__ */ jsx47(
|
|
1953
2234
|
"svg",
|
|
1954
2235
|
__spreadProps(__spreadValues({
|
|
1955
2236
|
ref,
|
|
@@ -1960,7 +2241,7 @@ var LinkIcon = forwardRef41(function LinkIcon2(_a, ref) {
|
|
|
1960
2241
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1961
2242
|
className
|
|
1962
2243
|
}, other), {
|
|
1963
|
-
children: /* @__PURE__ */
|
|
2244
|
+
children: /* @__PURE__ */ jsx47(
|
|
1964
2245
|
"path",
|
|
1965
2246
|
{
|
|
1966
2247
|
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 +2256,11 @@ var LinkIcon = forwardRef41(function LinkIcon2(_a, ref) {
|
|
|
1975
2256
|
});
|
|
1976
2257
|
|
|
1977
2258
|
// src/icons/lock.tsx
|
|
1978
|
-
import { forwardRef as
|
|
1979
|
-
import { jsx as
|
|
1980
|
-
var LockIcon =
|
|
2259
|
+
import { forwardRef as forwardRef46 } from "react";
|
|
2260
|
+
import { jsx as jsx48, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
2261
|
+
var LockIcon = forwardRef46(function LockIcon2(_a, ref) {
|
|
1981
2262
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1982
|
-
return /* @__PURE__ */
|
|
2263
|
+
return /* @__PURE__ */ jsxs29(
|
|
1983
2264
|
"svg",
|
|
1984
2265
|
__spreadProps(__spreadValues({
|
|
1985
2266
|
ref,
|
|
@@ -1991,7 +2272,7 @@ var LockIcon = forwardRef42(function LockIcon2(_a, ref) {
|
|
|
1991
2272
|
className
|
|
1992
2273
|
}, other), {
|
|
1993
2274
|
children: [
|
|
1994
|
-
duotone && /* @__PURE__ */
|
|
2275
|
+
duotone && /* @__PURE__ */ jsx48(
|
|
1995
2276
|
"path",
|
|
1996
2277
|
{
|
|
1997
2278
|
opacity: "0.12",
|
|
@@ -1999,7 +2280,7 @@ var LockIcon = forwardRef42(function LockIcon2(_a, ref) {
|
|
|
1999
2280
|
fill: "currentColor"
|
|
2000
2281
|
}
|
|
2001
2282
|
),
|
|
2002
|
-
/* @__PURE__ */
|
|
2283
|
+
/* @__PURE__ */ jsx48(
|
|
2003
2284
|
"path",
|
|
2004
2285
|
{
|
|
2005
2286
|
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 +2296,12 @@ var LockIcon = forwardRef42(function LockIcon2(_a, ref) {
|
|
|
2015
2296
|
});
|
|
2016
2297
|
|
|
2017
2298
|
// src/icons/logIn.tsx
|
|
2018
|
-
import { forwardRef as
|
|
2019
|
-
import { jsx as
|
|
2020
|
-
var LogInIcon =
|
|
2299
|
+
import { forwardRef as forwardRef47 } from "react";
|
|
2300
|
+
import { jsx as jsx49, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
2301
|
+
var LogInIcon = forwardRef47(
|
|
2021
2302
|
function LogInIcon2(_a, ref) {
|
|
2022
2303
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2023
|
-
return /* @__PURE__ */
|
|
2304
|
+
return /* @__PURE__ */ jsxs30(
|
|
2024
2305
|
"svg",
|
|
2025
2306
|
__spreadProps(__spreadValues({
|
|
2026
2307
|
ref,
|
|
@@ -2032,7 +2313,7 @@ var LogInIcon = forwardRef43(
|
|
|
2032
2313
|
className
|
|
2033
2314
|
}, other), {
|
|
2034
2315
|
children: [
|
|
2035
|
-
duotone && /* @__PURE__ */
|
|
2316
|
+
duotone && /* @__PURE__ */ jsx49(
|
|
2036
2317
|
"path",
|
|
2037
2318
|
{
|
|
2038
2319
|
opacity: "0.12",
|
|
@@ -2040,7 +2321,7 @@ var LogInIcon = forwardRef43(
|
|
|
2040
2321
|
fill: "currentColor"
|
|
2041
2322
|
}
|
|
2042
2323
|
),
|
|
2043
|
-
/* @__PURE__ */
|
|
2324
|
+
/* @__PURE__ */ jsx49(
|
|
2044
2325
|
"path",
|
|
2045
2326
|
{
|
|
2046
2327
|
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 +2338,12 @@ var LogInIcon = forwardRef43(
|
|
|
2057
2338
|
);
|
|
2058
2339
|
|
|
2059
2340
|
// src/icons/magicWand.tsx
|
|
2060
|
-
import { forwardRef as
|
|
2061
|
-
import { jsx as
|
|
2062
|
-
var MagicWandIcon =
|
|
2341
|
+
import { forwardRef as forwardRef48 } from "react";
|
|
2342
|
+
import { jsx as jsx50, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
2343
|
+
var MagicWandIcon = forwardRef48(
|
|
2063
2344
|
function MagicWandIcon2(_a, ref) {
|
|
2064
2345
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2065
|
-
return /* @__PURE__ */
|
|
2346
|
+
return /* @__PURE__ */ jsxs31(
|
|
2066
2347
|
"svg",
|
|
2067
2348
|
__spreadProps(__spreadValues({
|
|
2068
2349
|
ref,
|
|
@@ -2074,7 +2355,7 @@ var MagicWandIcon = forwardRef44(
|
|
|
2074
2355
|
className
|
|
2075
2356
|
}, other), {
|
|
2076
2357
|
children: [
|
|
2077
|
-
duotone && /* @__PURE__ */
|
|
2358
|
+
duotone && /* @__PURE__ */ jsx50(
|
|
2078
2359
|
"path",
|
|
2079
2360
|
{
|
|
2080
2361
|
opacity: "0.12",
|
|
@@ -2082,7 +2363,7 @@ var MagicWandIcon = forwardRef44(
|
|
|
2082
2363
|
fill: "currentColor"
|
|
2083
2364
|
}
|
|
2084
2365
|
),
|
|
2085
|
-
/* @__PURE__ */
|
|
2366
|
+
/* @__PURE__ */ jsx50(
|
|
2086
2367
|
"path",
|
|
2087
2368
|
{
|
|
2088
2369
|
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 +2380,11 @@ var MagicWandIcon = forwardRef44(
|
|
|
2099
2380
|
);
|
|
2100
2381
|
|
|
2101
2382
|
// src/icons/mail.tsx
|
|
2102
|
-
import { forwardRef as
|
|
2103
|
-
import { jsx as
|
|
2104
|
-
var MailIcon =
|
|
2383
|
+
import { forwardRef as forwardRef49 } from "react";
|
|
2384
|
+
import { jsx as jsx51, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
2385
|
+
var MailIcon = forwardRef49(function MailIcon2(_a, ref) {
|
|
2105
2386
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2106
|
-
return /* @__PURE__ */
|
|
2387
|
+
return /* @__PURE__ */ jsxs32(
|
|
2107
2388
|
"svg",
|
|
2108
2389
|
__spreadProps(__spreadValues({
|
|
2109
2390
|
ref,
|
|
@@ -2115,7 +2396,7 @@ var MailIcon = forwardRef45(function MailIcon2(_a, ref) {
|
|
|
2115
2396
|
className
|
|
2116
2397
|
}, other), {
|
|
2117
2398
|
children: [
|
|
2118
|
-
duotone && /* @__PURE__ */
|
|
2399
|
+
duotone && /* @__PURE__ */ jsx51(
|
|
2119
2400
|
"path",
|
|
2120
2401
|
{
|
|
2121
2402
|
opacity: "0.12",
|
|
@@ -2123,7 +2404,7 @@ var MailIcon = forwardRef45(function MailIcon2(_a, ref) {
|
|
|
2123
2404
|
fill: "currentColor"
|
|
2124
2405
|
}
|
|
2125
2406
|
),
|
|
2126
|
-
/* @__PURE__ */
|
|
2407
|
+
/* @__PURE__ */ jsx51(
|
|
2127
2408
|
"path",
|
|
2128
2409
|
{
|
|
2129
2410
|
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 +2420,11 @@ var MailIcon = forwardRef45(function MailIcon2(_a, ref) {
|
|
|
2139
2420
|
});
|
|
2140
2421
|
|
|
2141
2422
|
// src/icons/menu.tsx
|
|
2142
|
-
import { forwardRef as
|
|
2143
|
-
import { jsx as
|
|
2144
|
-
var MenuIcon =
|
|
2423
|
+
import { forwardRef as forwardRef50 } from "react";
|
|
2424
|
+
import { jsx as jsx52 } from "react/jsx-runtime";
|
|
2425
|
+
var MenuIcon = forwardRef50(function MenuIcon2(_a, ref) {
|
|
2145
2426
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2146
|
-
return /* @__PURE__ */
|
|
2427
|
+
return /* @__PURE__ */ jsx52(
|
|
2147
2428
|
"svg",
|
|
2148
2429
|
__spreadProps(__spreadValues({
|
|
2149
2430
|
ref,
|
|
@@ -2154,7 +2435,7 @@ var MenuIcon = forwardRef46(function MenuIcon2(_a, ref) {
|
|
|
2154
2435
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2155
2436
|
className
|
|
2156
2437
|
}, other), {
|
|
2157
|
-
children: /* @__PURE__ */
|
|
2438
|
+
children: /* @__PURE__ */ jsx52(
|
|
2158
2439
|
"path",
|
|
2159
2440
|
{
|
|
2160
2441
|
d: "M3 12H21M3 6H21M3 18H21",
|
|
@@ -2169,12 +2450,12 @@ var MenuIcon = forwardRef46(function MenuIcon2(_a, ref) {
|
|
|
2169
2450
|
});
|
|
2170
2451
|
|
|
2171
2452
|
// src/icons/messageChatSquare.tsx
|
|
2172
|
-
import { forwardRef as
|
|
2173
|
-
import { jsx as
|
|
2174
|
-
var MessageChatSquareIcon =
|
|
2453
|
+
import { forwardRef as forwardRef51 } from "react";
|
|
2454
|
+
import { jsx as jsx53, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2455
|
+
var MessageChatSquareIcon = forwardRef51(
|
|
2175
2456
|
function MessageChatSquareIcon2(_a, ref) {
|
|
2176
2457
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2177
|
-
return /* @__PURE__ */
|
|
2458
|
+
return /* @__PURE__ */ jsxs33(
|
|
2178
2459
|
"svg",
|
|
2179
2460
|
__spreadProps(__spreadValues({
|
|
2180
2461
|
ref,
|
|
@@ -2186,7 +2467,7 @@ var MessageChatSquareIcon = forwardRef47(
|
|
|
2186
2467
|
className
|
|
2187
2468
|
}, other), {
|
|
2188
2469
|
children: [
|
|
2189
|
-
duotone && /* @__PURE__ */
|
|
2470
|
+
duotone && /* @__PURE__ */ jsx53(
|
|
2190
2471
|
"path",
|
|
2191
2472
|
{
|
|
2192
2473
|
opacity: "0.12",
|
|
@@ -2194,7 +2475,7 @@ var MessageChatSquareIcon = forwardRef47(
|
|
|
2194
2475
|
fill: "currentColor"
|
|
2195
2476
|
}
|
|
2196
2477
|
),
|
|
2197
|
-
/* @__PURE__ */
|
|
2478
|
+
/* @__PURE__ */ jsx53(
|
|
2198
2479
|
"path",
|
|
2199
2480
|
{
|
|
2200
2481
|
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 +2492,12 @@ var MessageChatSquareIcon = forwardRef47(
|
|
|
2211
2492
|
);
|
|
2212
2493
|
|
|
2213
2494
|
// src/icons/messagePlusSquare.tsx
|
|
2214
|
-
import { forwardRef as
|
|
2215
|
-
import { jsx as
|
|
2216
|
-
var MessagePlusSquareIcon =
|
|
2495
|
+
import { forwardRef as forwardRef52 } from "react";
|
|
2496
|
+
import { jsx as jsx54, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2497
|
+
var MessagePlusSquareIcon = forwardRef52(
|
|
2217
2498
|
function MessagePlusSquareIcon2(_a, ref) {
|
|
2218
2499
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2219
|
-
return /* @__PURE__ */
|
|
2500
|
+
return /* @__PURE__ */ jsxs34(
|
|
2220
2501
|
"svg",
|
|
2221
2502
|
__spreadProps(__spreadValues({
|
|
2222
2503
|
ref,
|
|
@@ -2228,7 +2509,7 @@ var MessagePlusSquareIcon = forwardRef48(
|
|
|
2228
2509
|
className
|
|
2229
2510
|
}, other), {
|
|
2230
2511
|
children: [
|
|
2231
|
-
duotone && /* @__PURE__ */
|
|
2512
|
+
duotone && /* @__PURE__ */ jsx54(
|
|
2232
2513
|
"path",
|
|
2233
2514
|
{
|
|
2234
2515
|
opacity: "0.12",
|
|
@@ -2236,7 +2517,7 @@ var MessagePlusSquareIcon = forwardRef48(
|
|
|
2236
2517
|
fill: "currentColor"
|
|
2237
2518
|
}
|
|
2238
2519
|
),
|
|
2239
|
-
/* @__PURE__ */
|
|
2520
|
+
/* @__PURE__ */ jsx54(
|
|
2240
2521
|
"path",
|
|
2241
2522
|
{
|
|
2242
2523
|
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 +2534,12 @@ var MessagePlusSquareIcon = forwardRef48(
|
|
|
2253
2534
|
);
|
|
2254
2535
|
|
|
2255
2536
|
// src/icons/messageTextSquare.tsx
|
|
2256
|
-
import { forwardRef as
|
|
2257
|
-
import { jsx as
|
|
2258
|
-
var MessageTextSquareIcon =
|
|
2537
|
+
import { forwardRef as forwardRef53 } from "react";
|
|
2538
|
+
import { jsx as jsx55, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
2539
|
+
var MessageTextSquareIcon = forwardRef53(
|
|
2259
2540
|
function MessageTextSquareIcon2(_a, ref) {
|
|
2260
2541
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2261
|
-
return /* @__PURE__ */
|
|
2542
|
+
return /* @__PURE__ */ jsxs35(
|
|
2262
2543
|
"svg",
|
|
2263
2544
|
__spreadProps(__spreadValues({
|
|
2264
2545
|
ref,
|
|
@@ -2270,7 +2551,7 @@ var MessageTextSquareIcon = forwardRef49(
|
|
|
2270
2551
|
className
|
|
2271
2552
|
}, other), {
|
|
2272
2553
|
children: [
|
|
2273
|
-
duotone && /* @__PURE__ */
|
|
2554
|
+
duotone && /* @__PURE__ */ jsx55(
|
|
2274
2555
|
"path",
|
|
2275
2556
|
{
|
|
2276
2557
|
opacity: "0.12",
|
|
@@ -2278,7 +2559,7 @@ var MessageTextSquareIcon = forwardRef49(
|
|
|
2278
2559
|
fill: "currentColor"
|
|
2279
2560
|
}
|
|
2280
2561
|
),
|
|
2281
|
-
/* @__PURE__ */
|
|
2562
|
+
/* @__PURE__ */ jsx55(
|
|
2282
2563
|
"path",
|
|
2283
2564
|
{
|
|
2284
2565
|
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 +2576,12 @@ var MessageTextSquareIcon = forwardRef49(
|
|
|
2295
2576
|
);
|
|
2296
2577
|
|
|
2297
2578
|
// src/icons/microphone.tsx
|
|
2298
|
-
import { forwardRef as
|
|
2299
|
-
import { jsx as
|
|
2300
|
-
var MicrophoneIcon =
|
|
2579
|
+
import { forwardRef as forwardRef54 } from "react";
|
|
2580
|
+
import { jsx as jsx56, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
2581
|
+
var MicrophoneIcon = forwardRef54(
|
|
2301
2582
|
function MicrophoneIcon2(_a, ref) {
|
|
2302
2583
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2303
|
-
return /* @__PURE__ */
|
|
2584
|
+
return /* @__PURE__ */ jsxs36(
|
|
2304
2585
|
"svg",
|
|
2305
2586
|
__spreadProps(__spreadValues({
|
|
2306
2587
|
ref,
|
|
@@ -2312,7 +2593,7 @@ var MicrophoneIcon = forwardRef50(
|
|
|
2312
2593
|
className
|
|
2313
2594
|
}, other), {
|
|
2314
2595
|
children: [
|
|
2315
|
-
duotone && /* @__PURE__ */
|
|
2596
|
+
duotone && /* @__PURE__ */ jsx56(
|
|
2316
2597
|
"path",
|
|
2317
2598
|
{
|
|
2318
2599
|
opacity: "0.12",
|
|
@@ -2320,7 +2601,7 @@ var MicrophoneIcon = forwardRef50(
|
|
|
2320
2601
|
fill: "currentColor"
|
|
2321
2602
|
}
|
|
2322
2603
|
),
|
|
2323
|
-
/* @__PURE__ */
|
|
2604
|
+
/* @__PURE__ */ jsx56(
|
|
2324
2605
|
"path",
|
|
2325
2606
|
{
|
|
2326
2607
|
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 +2618,12 @@ var MicrophoneIcon = forwardRef50(
|
|
|
2337
2618
|
);
|
|
2338
2619
|
|
|
2339
2620
|
// src/icons/microphoneOff.tsx
|
|
2340
|
-
import { forwardRef as
|
|
2341
|
-
import { jsx as
|
|
2342
|
-
var MicrophoneOffIcon =
|
|
2621
|
+
import { forwardRef as forwardRef55 } from "react";
|
|
2622
|
+
import { jsx as jsx57, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2623
|
+
var MicrophoneOffIcon = forwardRef55(
|
|
2343
2624
|
function MicrophoneOffIcon2(_a, ref) {
|
|
2344
2625
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2345
|
-
return /* @__PURE__ */
|
|
2626
|
+
return /* @__PURE__ */ jsxs37(
|
|
2346
2627
|
"svg",
|
|
2347
2628
|
__spreadProps(__spreadValues({
|
|
2348
2629
|
ref,
|
|
@@ -2354,7 +2635,7 @@ var MicrophoneOffIcon = forwardRef51(
|
|
|
2354
2635
|
className
|
|
2355
2636
|
}, other), {
|
|
2356
2637
|
children: [
|
|
2357
|
-
duotone && /* @__PURE__ */
|
|
2638
|
+
duotone && /* @__PURE__ */ jsx57(
|
|
2358
2639
|
"path",
|
|
2359
2640
|
{
|
|
2360
2641
|
opacity: "0.12",
|
|
@@ -2362,7 +2643,7 @@ var MicrophoneOffIcon = forwardRef51(
|
|
|
2362
2643
|
fill: "currentColor"
|
|
2363
2644
|
}
|
|
2364
2645
|
),
|
|
2365
|
-
/* @__PURE__ */
|
|
2646
|
+
/* @__PURE__ */ jsx57(
|
|
2366
2647
|
"path",
|
|
2367
2648
|
{
|
|
2368
2649
|
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 +2660,12 @@ var MicrophoneOffIcon = forwardRef51(
|
|
|
2379
2660
|
);
|
|
2380
2661
|
|
|
2381
2662
|
// src/icons/monitor.tsx
|
|
2382
|
-
import { forwardRef as
|
|
2383
|
-
import { jsx as
|
|
2384
|
-
var MonitorIcon =
|
|
2663
|
+
import { forwardRef as forwardRef56 } from "react";
|
|
2664
|
+
import { jsx as jsx58, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
2665
|
+
var MonitorIcon = forwardRef56(
|
|
2385
2666
|
function MonitorIcon2(_a, ref) {
|
|
2386
2667
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2387
|
-
return /* @__PURE__ */
|
|
2668
|
+
return /* @__PURE__ */ jsxs38(
|
|
2388
2669
|
"svg",
|
|
2389
2670
|
__spreadProps(__spreadValues({
|
|
2390
2671
|
ref,
|
|
@@ -2396,7 +2677,7 @@ var MonitorIcon = forwardRef52(
|
|
|
2396
2677
|
className
|
|
2397
2678
|
}, other), {
|
|
2398
2679
|
children: [
|
|
2399
|
-
duotone && /* @__PURE__ */
|
|
2680
|
+
duotone && /* @__PURE__ */ jsx58(
|
|
2400
2681
|
"path",
|
|
2401
2682
|
{
|
|
2402
2683
|
opacity: "0.12",
|
|
@@ -2404,7 +2685,7 @@ var MonitorIcon = forwardRef52(
|
|
|
2404
2685
|
fill: "currentColor"
|
|
2405
2686
|
}
|
|
2406
2687
|
),
|
|
2407
|
-
/* @__PURE__ */
|
|
2688
|
+
/* @__PURE__ */ jsx58(
|
|
2408
2689
|
"path",
|
|
2409
2690
|
{
|
|
2410
2691
|
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 +2702,12 @@ var MonitorIcon = forwardRef52(
|
|
|
2421
2702
|
);
|
|
2422
2703
|
|
|
2423
2704
|
// src/icons/notificationBox.tsx
|
|
2424
|
-
import { forwardRef as
|
|
2425
|
-
import { jsx as
|
|
2426
|
-
var NotificationBoxIcon =
|
|
2705
|
+
import { forwardRef as forwardRef57 } from "react";
|
|
2706
|
+
import { jsx as jsx59, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
2707
|
+
var NotificationBoxIcon = forwardRef57(
|
|
2427
2708
|
function NotificationBoxIcon2(_a, ref) {
|
|
2428
2709
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2429
|
-
return /* @__PURE__ */
|
|
2710
|
+
return /* @__PURE__ */ jsxs39(
|
|
2430
2711
|
"svg",
|
|
2431
2712
|
__spreadProps(__spreadValues({
|
|
2432
2713
|
ref,
|
|
@@ -2438,7 +2719,7 @@ var NotificationBoxIcon = forwardRef53(
|
|
|
2438
2719
|
className
|
|
2439
2720
|
}, other), {
|
|
2440
2721
|
children: [
|
|
2441
|
-
duotone && /* @__PURE__ */
|
|
2722
|
+
duotone && /* @__PURE__ */ jsx59(
|
|
2442
2723
|
"path",
|
|
2443
2724
|
{
|
|
2444
2725
|
opacity: "0.12",
|
|
@@ -2446,7 +2727,7 @@ var NotificationBoxIcon = forwardRef53(
|
|
|
2446
2727
|
fill: "currentColor"
|
|
2447
2728
|
}
|
|
2448
2729
|
),
|
|
2449
|
-
/* @__PURE__ */
|
|
2730
|
+
/* @__PURE__ */ jsx59(
|
|
2450
2731
|
"path",
|
|
2451
2732
|
{
|
|
2452
2733
|
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 +2744,12 @@ var NotificationBoxIcon = forwardRef53(
|
|
|
2463
2744
|
);
|
|
2464
2745
|
|
|
2465
2746
|
// src/icons/pauseCircle.tsx
|
|
2466
|
-
import { forwardRef as
|
|
2467
|
-
import { jsx as
|
|
2468
|
-
var PauseCircleIcon =
|
|
2747
|
+
import { forwardRef as forwardRef58 } from "react";
|
|
2748
|
+
import { jsx as jsx60, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
2749
|
+
var PauseCircleIcon = forwardRef58(
|
|
2469
2750
|
function PauseCircleIcon2(_a, ref) {
|
|
2470
2751
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2471
|
-
return /* @__PURE__ */
|
|
2752
|
+
return /* @__PURE__ */ jsxs40(
|
|
2472
2753
|
"svg",
|
|
2473
2754
|
__spreadProps(__spreadValues({
|
|
2474
2755
|
ref,
|
|
@@ -2480,7 +2761,7 @@ var PauseCircleIcon = forwardRef54(
|
|
|
2480
2761
|
className
|
|
2481
2762
|
}, other), {
|
|
2482
2763
|
children: [
|
|
2483
|
-
duotone && /* @__PURE__ */
|
|
2764
|
+
duotone && /* @__PURE__ */ jsx60(
|
|
2484
2765
|
"path",
|
|
2485
2766
|
{
|
|
2486
2767
|
opacity: "0.12",
|
|
@@ -2488,7 +2769,7 @@ var PauseCircleIcon = forwardRef54(
|
|
|
2488
2769
|
fill: "currentColor"
|
|
2489
2770
|
}
|
|
2490
2771
|
),
|
|
2491
|
-
/* @__PURE__ */
|
|
2772
|
+
/* @__PURE__ */ jsx60(
|
|
2492
2773
|
"path",
|
|
2493
2774
|
{
|
|
2494
2775
|
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 +2786,12 @@ var PauseCircleIcon = forwardRef54(
|
|
|
2505
2786
|
);
|
|
2506
2787
|
|
|
2507
2788
|
// src/icons/phone.tsx
|
|
2508
|
-
import { forwardRef as
|
|
2509
|
-
import { jsx as
|
|
2510
|
-
var PhoneIcon =
|
|
2789
|
+
import { forwardRef as forwardRef59 } from "react";
|
|
2790
|
+
import { jsx as jsx61, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
2791
|
+
var PhoneIcon = forwardRef59(
|
|
2511
2792
|
function PhoneIcon2(_a, ref) {
|
|
2512
2793
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2513
|
-
return /* @__PURE__ */
|
|
2794
|
+
return /* @__PURE__ */ jsxs41(
|
|
2514
2795
|
"svg",
|
|
2515
2796
|
__spreadProps(__spreadValues({
|
|
2516
2797
|
ref,
|
|
@@ -2522,7 +2803,7 @@ var PhoneIcon = forwardRef55(
|
|
|
2522
2803
|
className
|
|
2523
2804
|
}, other), {
|
|
2524
2805
|
children: [
|
|
2525
|
-
duotone && /* @__PURE__ */
|
|
2806
|
+
duotone && /* @__PURE__ */ jsx61(
|
|
2526
2807
|
"path",
|
|
2527
2808
|
{
|
|
2528
2809
|
opacity: "0.12",
|
|
@@ -2530,7 +2811,7 @@ var PhoneIcon = forwardRef55(
|
|
|
2530
2811
|
fill: "currentColor"
|
|
2531
2812
|
}
|
|
2532
2813
|
),
|
|
2533
|
-
/* @__PURE__ */
|
|
2814
|
+
/* @__PURE__ */ jsx61(
|
|
2534
2815
|
"path",
|
|
2535
2816
|
{
|
|
2536
2817
|
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 +2828,12 @@ var PhoneIcon = forwardRef55(
|
|
|
2547
2828
|
);
|
|
2548
2829
|
|
|
2549
2830
|
// src/icons/phoneCall.tsx
|
|
2550
|
-
import { forwardRef as
|
|
2551
|
-
import { jsx as
|
|
2552
|
-
var PhoneCallIcon =
|
|
2831
|
+
import { forwardRef as forwardRef60 } from "react";
|
|
2832
|
+
import { jsx as jsx62, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
2833
|
+
var PhoneCallIcon = forwardRef60(
|
|
2553
2834
|
function PhoneCallIcon2(_a, ref) {
|
|
2554
2835
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2555
|
-
return /* @__PURE__ */
|
|
2836
|
+
return /* @__PURE__ */ jsxs42(
|
|
2556
2837
|
"svg",
|
|
2557
2838
|
__spreadProps(__spreadValues({
|
|
2558
2839
|
ref,
|
|
@@ -2564,7 +2845,7 @@ var PhoneCallIcon = forwardRef56(
|
|
|
2564
2845
|
className
|
|
2565
2846
|
}, other), {
|
|
2566
2847
|
children: [
|
|
2567
|
-
duotone && /* @__PURE__ */
|
|
2848
|
+
duotone && /* @__PURE__ */ jsx62(
|
|
2568
2849
|
"path",
|
|
2569
2850
|
{
|
|
2570
2851
|
opacity: "0.12",
|
|
@@ -2572,7 +2853,7 @@ var PhoneCallIcon = forwardRef56(
|
|
|
2572
2853
|
fill: "currentColor"
|
|
2573
2854
|
}
|
|
2574
2855
|
),
|
|
2575
|
-
/* @__PURE__ */
|
|
2856
|
+
/* @__PURE__ */ jsx62(
|
|
2576
2857
|
"path",
|
|
2577
2858
|
{
|
|
2578
2859
|
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 +2870,12 @@ var PhoneCallIcon = forwardRef56(
|
|
|
2589
2870
|
);
|
|
2590
2871
|
|
|
2591
2872
|
// src/icons/pieChart.tsx
|
|
2592
|
-
import { forwardRef as
|
|
2593
|
-
import { jsx as
|
|
2594
|
-
var PieChartIcon =
|
|
2873
|
+
import { forwardRef as forwardRef61 } from "react";
|
|
2874
|
+
import { jsx as jsx63, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
2875
|
+
var PieChartIcon = forwardRef61(
|
|
2595
2876
|
function PieChartIcon2(_a, ref) {
|
|
2596
2877
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2597
|
-
return /* @__PURE__ */
|
|
2878
|
+
return /* @__PURE__ */ jsxs43(
|
|
2598
2879
|
"svg",
|
|
2599
2880
|
__spreadProps(__spreadValues({
|
|
2600
2881
|
ref,
|
|
@@ -2606,7 +2887,7 @@ var PieChartIcon = forwardRef57(
|
|
|
2606
2887
|
className
|
|
2607
2888
|
}, other), {
|
|
2608
2889
|
children: [
|
|
2609
|
-
duotone && /* @__PURE__ */
|
|
2890
|
+
duotone && /* @__PURE__ */ jsx63(
|
|
2610
2891
|
"path",
|
|
2611
2892
|
{
|
|
2612
2893
|
opacity: "0.12",
|
|
@@ -2614,7 +2895,7 @@ var PieChartIcon = forwardRef57(
|
|
|
2614
2895
|
fill: "currentColor"
|
|
2615
2896
|
}
|
|
2616
2897
|
),
|
|
2617
|
-
/* @__PURE__ */
|
|
2898
|
+
/* @__PURE__ */ jsx63(
|
|
2618
2899
|
"path",
|
|
2619
2900
|
{
|
|
2620
2901
|
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 +2906,7 @@ var PieChartIcon = forwardRef57(
|
|
|
2625
2906
|
}
|
|
2626
2907
|
),
|
|
2627
2908
|
",",
|
|
2628
|
-
/* @__PURE__ */
|
|
2909
|
+
/* @__PURE__ */ jsx63(
|
|
2629
2910
|
"path",
|
|
2630
2911
|
{
|
|
2631
2912
|
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 +2922,42 @@ var PieChartIcon = forwardRef57(
|
|
|
2641
2922
|
}
|
|
2642
2923
|
);
|
|
2643
2924
|
|
|
2925
|
+
// src/icons/play.tsx
|
|
2926
|
+
import { forwardRef as forwardRef62 } from "react";
|
|
2927
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
2928
|
+
var PlayIcon = forwardRef62(function PlayIcon2(_a, ref) {
|
|
2929
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2930
|
+
return /* @__PURE__ */ jsx64(
|
|
2931
|
+
"svg",
|
|
2932
|
+
__spreadProps(__spreadValues({
|
|
2933
|
+
ref,
|
|
2934
|
+
width: size,
|
|
2935
|
+
height: size,
|
|
2936
|
+
viewBox: "0 0 32 32",
|
|
2937
|
+
fill: "none",
|
|
2938
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2939
|
+
className
|
|
2940
|
+
}, other), {
|
|
2941
|
+
children: /* @__PURE__ */ jsx64(
|
|
2942
|
+
"path",
|
|
2943
|
+
{
|
|
2944
|
+
fillRule: "evenodd",
|
|
2945
|
+
clipRule: "evenodd",
|
|
2946
|
+
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",
|
|
2947
|
+
fill: "currentColor"
|
|
2948
|
+
}
|
|
2949
|
+
)
|
|
2950
|
+
})
|
|
2951
|
+
);
|
|
2952
|
+
});
|
|
2953
|
+
|
|
2644
2954
|
// src/icons/playCircle.tsx
|
|
2645
|
-
import { forwardRef as
|
|
2646
|
-
import { jsx as
|
|
2647
|
-
var PlayCircleIcon =
|
|
2955
|
+
import { forwardRef as forwardRef63 } from "react";
|
|
2956
|
+
import { jsx as jsx65, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
2957
|
+
var PlayCircleIcon = forwardRef63(
|
|
2648
2958
|
function PlayCircleIcon2(_a, ref) {
|
|
2649
2959
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2650
|
-
return /* @__PURE__ */
|
|
2960
|
+
return /* @__PURE__ */ jsxs44(
|
|
2651
2961
|
"svg",
|
|
2652
2962
|
__spreadProps(__spreadValues({
|
|
2653
2963
|
ref,
|
|
@@ -2659,7 +2969,7 @@ var PlayCircleIcon = forwardRef58(
|
|
|
2659
2969
|
className
|
|
2660
2970
|
}, other), {
|
|
2661
2971
|
children: [
|
|
2662
|
-
duotone && /* @__PURE__ */
|
|
2972
|
+
duotone && /* @__PURE__ */ jsx65(
|
|
2663
2973
|
"path",
|
|
2664
2974
|
{
|
|
2665
2975
|
opacity: "0.12",
|
|
@@ -2667,7 +2977,7 @@ var PlayCircleIcon = forwardRef58(
|
|
|
2667
2977
|
fill: "currentColor"
|
|
2668
2978
|
}
|
|
2669
2979
|
),
|
|
2670
|
-
/* @__PURE__ */
|
|
2980
|
+
/* @__PURE__ */ jsx65(
|
|
2671
2981
|
"path",
|
|
2672
2982
|
{
|
|
2673
2983
|
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 +2988,7 @@ var PlayCircleIcon = forwardRef58(
|
|
|
2678
2988
|
}
|
|
2679
2989
|
),
|
|
2680
2990
|
",",
|
|
2681
|
-
/* @__PURE__ */
|
|
2991
|
+
/* @__PURE__ */ jsx65(
|
|
2682
2992
|
"path",
|
|
2683
2993
|
{
|
|
2684
2994
|
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 +3005,11 @@ var PlayCircleIcon = forwardRef58(
|
|
|
2695
3005
|
);
|
|
2696
3006
|
|
|
2697
3007
|
// src/icons/plus.tsx
|
|
2698
|
-
import { forwardRef as
|
|
2699
|
-
import { jsx as
|
|
2700
|
-
var PlusIcon =
|
|
3008
|
+
import { forwardRef as forwardRef64 } from "react";
|
|
3009
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
3010
|
+
var PlusIcon = forwardRef64(function PlusIcon2(_a, ref) {
|
|
2701
3011
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2702
|
-
return /* @__PURE__ */
|
|
3012
|
+
return /* @__PURE__ */ jsx66(
|
|
2703
3013
|
"svg",
|
|
2704
3014
|
__spreadProps(__spreadValues({
|
|
2705
3015
|
ref,
|
|
@@ -2710,7 +3020,7 @@ var PlusIcon = forwardRef59(function PlusIcon2(_a, ref) {
|
|
|
2710
3020
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2711
3021
|
className
|
|
2712
3022
|
}, other), {
|
|
2713
|
-
children: /* @__PURE__ */
|
|
3023
|
+
children: /* @__PURE__ */ jsx66(
|
|
2714
3024
|
"path",
|
|
2715
3025
|
{
|
|
2716
3026
|
d: "M12 5V19M5 12H19",
|
|
@@ -2725,12 +3035,12 @@ var PlusIcon = forwardRef59(function PlusIcon2(_a, ref) {
|
|
|
2725
3035
|
});
|
|
2726
3036
|
|
|
2727
3037
|
// src/icons/plusCircle.tsx
|
|
2728
|
-
import { forwardRef as
|
|
2729
|
-
import { jsx as
|
|
2730
|
-
var PlusCircleIcon =
|
|
3038
|
+
import { forwardRef as forwardRef65 } from "react";
|
|
3039
|
+
import { jsx as jsx67, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
3040
|
+
var PlusCircleIcon = forwardRef65(
|
|
2731
3041
|
function PlusCircleIcon2(_a, ref) {
|
|
2732
3042
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2733
|
-
return /* @__PURE__ */
|
|
3043
|
+
return /* @__PURE__ */ jsxs45(
|
|
2734
3044
|
"svg",
|
|
2735
3045
|
__spreadProps(__spreadValues({
|
|
2736
3046
|
ref,
|
|
@@ -2742,7 +3052,7 @@ var PlusCircleIcon = forwardRef60(
|
|
|
2742
3052
|
className
|
|
2743
3053
|
}, other), {
|
|
2744
3054
|
children: [
|
|
2745
|
-
duotone && /* @__PURE__ */
|
|
3055
|
+
duotone && /* @__PURE__ */ jsx67(
|
|
2746
3056
|
"path",
|
|
2747
3057
|
{
|
|
2748
3058
|
opacity: "0.12",
|
|
@@ -2750,7 +3060,7 @@ var PlusCircleIcon = forwardRef60(
|
|
|
2750
3060
|
fill: "currentColor"
|
|
2751
3061
|
}
|
|
2752
3062
|
),
|
|
2753
|
-
/* @__PURE__ */
|
|
3063
|
+
/* @__PURE__ */ jsx67(
|
|
2754
3064
|
"path",
|
|
2755
3065
|
{
|
|
2756
3066
|
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 +3077,12 @@ var PlusCircleIcon = forwardRef60(
|
|
|
2767
3077
|
);
|
|
2768
3078
|
|
|
2769
3079
|
// src/icons/puzzlePiece.tsx
|
|
2770
|
-
import { forwardRef as
|
|
2771
|
-
import { jsx as
|
|
2772
|
-
var PuzzlePieceIcon =
|
|
3080
|
+
import { forwardRef as forwardRef66 } from "react";
|
|
3081
|
+
import { jsx as jsx68, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3082
|
+
var PuzzlePieceIcon = forwardRef66(
|
|
2773
3083
|
function PuzzlePieceIcon2(_a, ref) {
|
|
2774
3084
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2775
|
-
return /* @__PURE__ */
|
|
3085
|
+
return /* @__PURE__ */ jsxs46(
|
|
2776
3086
|
"svg",
|
|
2777
3087
|
__spreadProps(__spreadValues({
|
|
2778
3088
|
ref,
|
|
@@ -2784,7 +3094,7 @@ var PuzzlePieceIcon = forwardRef61(
|
|
|
2784
3094
|
className
|
|
2785
3095
|
}, other), {
|
|
2786
3096
|
children: [
|
|
2787
|
-
duotone && /* @__PURE__ */
|
|
3097
|
+
duotone && /* @__PURE__ */ jsx68(
|
|
2788
3098
|
"path",
|
|
2789
3099
|
{
|
|
2790
3100
|
opacity: "0.12",
|
|
@@ -2792,7 +3102,7 @@ var PuzzlePieceIcon = forwardRef61(
|
|
|
2792
3102
|
fill: "currentColor"
|
|
2793
3103
|
}
|
|
2794
3104
|
),
|
|
2795
|
-
/* @__PURE__ */
|
|
3105
|
+
/* @__PURE__ */ jsx68(
|
|
2796
3106
|
"path",
|
|
2797
3107
|
{
|
|
2798
3108
|
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 +3119,12 @@ var PuzzlePieceIcon = forwardRef61(
|
|
|
2809
3119
|
);
|
|
2810
3120
|
|
|
2811
3121
|
// src/icons/qrCode.tsx
|
|
2812
|
-
import { forwardRef as
|
|
2813
|
-
import { jsx as
|
|
2814
|
-
var QrCodeIcon =
|
|
3122
|
+
import { forwardRef as forwardRef67 } from "react";
|
|
3123
|
+
import { jsx as jsx69, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
3124
|
+
var QrCodeIcon = forwardRef67(
|
|
2815
3125
|
function QrCodeIcon2(_a, ref) {
|
|
2816
3126
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2817
|
-
return /* @__PURE__ */
|
|
3127
|
+
return /* @__PURE__ */ jsxs47(
|
|
2818
3128
|
"svg",
|
|
2819
3129
|
__spreadProps(__spreadValues({
|
|
2820
3130
|
ref,
|
|
@@ -2826,7 +3136,7 @@ var QrCodeIcon = forwardRef62(
|
|
|
2826
3136
|
className
|
|
2827
3137
|
}, other), {
|
|
2828
3138
|
children: [
|
|
2829
|
-
duotone && /* @__PURE__ */
|
|
3139
|
+
duotone && /* @__PURE__ */ jsx69(
|
|
2830
3140
|
"path",
|
|
2831
3141
|
{
|
|
2832
3142
|
opacity: "0.4",
|
|
@@ -2837,7 +3147,7 @@ var QrCodeIcon = forwardRef62(
|
|
|
2837
3147
|
strokeLinejoin: "round"
|
|
2838
3148
|
}
|
|
2839
3149
|
),
|
|
2840
|
-
/* @__PURE__ */
|
|
3150
|
+
/* @__PURE__ */ jsx69(
|
|
2841
3151
|
"path",
|
|
2842
3152
|
{
|
|
2843
3153
|
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 +3164,12 @@ var QrCodeIcon = forwardRef62(
|
|
|
2854
3164
|
);
|
|
2855
3165
|
|
|
2856
3166
|
// src/icons/receiptCheck.tsx
|
|
2857
|
-
import { forwardRef as
|
|
2858
|
-
import { jsx as
|
|
2859
|
-
var ReceiptCheckIcon =
|
|
3167
|
+
import { forwardRef as forwardRef68 } from "react";
|
|
3168
|
+
import { jsx as jsx70, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
3169
|
+
var ReceiptCheckIcon = forwardRef68(
|
|
2860
3170
|
function ReceiptCheckIcon2(_a, ref) {
|
|
2861
3171
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2862
|
-
return /* @__PURE__ */
|
|
3172
|
+
return /* @__PURE__ */ jsxs48(
|
|
2863
3173
|
"svg",
|
|
2864
3174
|
__spreadProps(__spreadValues({
|
|
2865
3175
|
ref,
|
|
@@ -2871,7 +3181,7 @@ var ReceiptCheckIcon = forwardRef63(
|
|
|
2871
3181
|
className
|
|
2872
3182
|
}, other), {
|
|
2873
3183
|
children: [
|
|
2874
|
-
duotone && /* @__PURE__ */
|
|
3184
|
+
duotone && /* @__PURE__ */ jsx70(
|
|
2875
3185
|
"path",
|
|
2876
3186
|
{
|
|
2877
3187
|
opacity: "0.12",
|
|
@@ -2879,7 +3189,7 @@ var ReceiptCheckIcon = forwardRef63(
|
|
|
2879
3189
|
fill: "currentColor"
|
|
2880
3190
|
}
|
|
2881
3191
|
),
|
|
2882
|
-
/* @__PURE__ */
|
|
3192
|
+
/* @__PURE__ */ jsx70(
|
|
2883
3193
|
"path",
|
|
2884
3194
|
{
|
|
2885
3195
|
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 +3206,12 @@ var ReceiptCheckIcon = forwardRef63(
|
|
|
2896
3206
|
);
|
|
2897
3207
|
|
|
2898
3208
|
// src/icons/recording.tsx
|
|
2899
|
-
import { forwardRef as
|
|
2900
|
-
import { jsx as
|
|
2901
|
-
var RecordingIcon =
|
|
3209
|
+
import { forwardRef as forwardRef69 } from "react";
|
|
3210
|
+
import { jsx as jsx71, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
3211
|
+
var RecordingIcon = forwardRef69(
|
|
2902
3212
|
function RecordingIcon2(_a, ref) {
|
|
2903
3213
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2904
|
-
return /* @__PURE__ */
|
|
3214
|
+
return /* @__PURE__ */ jsxs49(
|
|
2905
3215
|
"svg",
|
|
2906
3216
|
__spreadProps(__spreadValues({
|
|
2907
3217
|
ref,
|
|
@@ -2913,7 +3223,7 @@ var RecordingIcon = forwardRef64(
|
|
|
2913
3223
|
className
|
|
2914
3224
|
}, other), {
|
|
2915
3225
|
children: [
|
|
2916
|
-
duotone && /* @__PURE__ */
|
|
3226
|
+
duotone && /* @__PURE__ */ jsx71(
|
|
2917
3227
|
"path",
|
|
2918
3228
|
{
|
|
2919
3229
|
opacity: "0.12",
|
|
@@ -2921,7 +3231,7 @@ var RecordingIcon = forwardRef64(
|
|
|
2921
3231
|
fill: "currentColor"
|
|
2922
3232
|
}
|
|
2923
3233
|
),
|
|
2924
|
-
/* @__PURE__ */
|
|
3234
|
+
/* @__PURE__ */ jsx71(
|
|
2925
3235
|
"path",
|
|
2926
3236
|
{
|
|
2927
3237
|
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 +3248,12 @@ var RecordingIcon = forwardRef64(
|
|
|
2938
3248
|
);
|
|
2939
3249
|
|
|
2940
3250
|
// src/icons/refreshCcw.tsx
|
|
2941
|
-
import { forwardRef as
|
|
2942
|
-
import { jsx as
|
|
2943
|
-
var RefreshCcwIcon =
|
|
3251
|
+
import { forwardRef as forwardRef70 } from "react";
|
|
3252
|
+
import { jsx as jsx72 } from "react/jsx-runtime";
|
|
3253
|
+
var RefreshCcwIcon = forwardRef70(
|
|
2944
3254
|
function RefreshCcwIcon2(_a, ref) {
|
|
2945
3255
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2946
|
-
return /* @__PURE__ */
|
|
3256
|
+
return /* @__PURE__ */ jsx72(
|
|
2947
3257
|
"svg",
|
|
2948
3258
|
__spreadProps(__spreadValues({
|
|
2949
3259
|
ref,
|
|
@@ -2954,7 +3264,7 @@ var RefreshCcwIcon = forwardRef65(
|
|
|
2954
3264
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2955
3265
|
className
|
|
2956
3266
|
}, other), {
|
|
2957
|
-
children: /* @__PURE__ */
|
|
3267
|
+
children: /* @__PURE__ */ jsx72(
|
|
2958
3268
|
"path",
|
|
2959
3269
|
{
|
|
2960
3270
|
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 +3280,12 @@ var RefreshCcwIcon = forwardRef65(
|
|
|
2970
3280
|
);
|
|
2971
3281
|
|
|
2972
3282
|
// src/icons/refreshCw.tsx
|
|
2973
|
-
import { forwardRef as
|
|
2974
|
-
import { jsx as
|
|
2975
|
-
var RefreshCwIcon =
|
|
3283
|
+
import { forwardRef as forwardRef71 } from "react";
|
|
3284
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3285
|
+
var RefreshCwIcon = forwardRef71(
|
|
2976
3286
|
function RefreshCwIcon2(_a, ref) {
|
|
2977
3287
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2978
|
-
return /* @__PURE__ */
|
|
3288
|
+
return /* @__PURE__ */ jsx73(
|
|
2979
3289
|
"svg",
|
|
2980
3290
|
__spreadProps(__spreadValues({
|
|
2981
3291
|
ref,
|
|
@@ -2986,7 +3296,7 @@ var RefreshCwIcon = forwardRef66(
|
|
|
2986
3296
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2987
3297
|
className
|
|
2988
3298
|
}, other), {
|
|
2989
|
-
children: /* @__PURE__ */
|
|
3299
|
+
children: /* @__PURE__ */ jsx73(
|
|
2990
3300
|
"path",
|
|
2991
3301
|
{
|
|
2992
3302
|
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 +3312,12 @@ var RefreshCwIcon = forwardRef66(
|
|
|
3002
3312
|
);
|
|
3003
3313
|
|
|
3004
3314
|
// src/icons/rocket.tsx
|
|
3005
|
-
import { forwardRef as
|
|
3006
|
-
import { jsx as
|
|
3007
|
-
var RocketIcon =
|
|
3315
|
+
import { forwardRef as forwardRef72 } from "react";
|
|
3316
|
+
import { jsx as jsx74, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
3317
|
+
var RocketIcon = forwardRef72(
|
|
3008
3318
|
function RocketIcon2(_a, ref) {
|
|
3009
3319
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3010
|
-
return /* @__PURE__ */
|
|
3320
|
+
return /* @__PURE__ */ jsxs50(
|
|
3011
3321
|
"svg",
|
|
3012
3322
|
__spreadProps(__spreadValues({
|
|
3013
3323
|
ref,
|
|
@@ -3019,7 +3329,7 @@ var RocketIcon = forwardRef67(
|
|
|
3019
3329
|
className
|
|
3020
3330
|
}, other), {
|
|
3021
3331
|
children: [
|
|
3022
|
-
duotone && /* @__PURE__ */
|
|
3332
|
+
duotone && /* @__PURE__ */ jsx74(
|
|
3023
3333
|
"path",
|
|
3024
3334
|
{
|
|
3025
3335
|
opacity: "0.12",
|
|
@@ -3027,7 +3337,7 @@ var RocketIcon = forwardRef67(
|
|
|
3027
3337
|
fill: "currentColor"
|
|
3028
3338
|
}
|
|
3029
3339
|
),
|
|
3030
|
-
/* @__PURE__ */
|
|
3340
|
+
/* @__PURE__ */ jsx74(
|
|
3031
3341
|
"path",
|
|
3032
3342
|
{
|
|
3033
3343
|
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 +3354,11 @@ var RocketIcon = forwardRef67(
|
|
|
3044
3354
|
);
|
|
3045
3355
|
|
|
3046
3356
|
// src/icons/save.tsx
|
|
3047
|
-
import { forwardRef as
|
|
3048
|
-
import { jsx as
|
|
3049
|
-
var SaveIcon =
|
|
3357
|
+
import { forwardRef as forwardRef73 } from "react";
|
|
3358
|
+
import { jsx as jsx75, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3359
|
+
var SaveIcon = forwardRef73(function SaveIcon2(_a, ref) {
|
|
3050
3360
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3051
|
-
return /* @__PURE__ */
|
|
3361
|
+
return /* @__PURE__ */ jsxs51(
|
|
3052
3362
|
"svg",
|
|
3053
3363
|
__spreadProps(__spreadValues({
|
|
3054
3364
|
ref,
|
|
@@ -3060,15 +3370,15 @@ var SaveIcon = forwardRef68(function SaveIcon2(_a, ref) {
|
|
|
3060
3370
|
className
|
|
3061
3371
|
}, other), {
|
|
3062
3372
|
children: [
|
|
3063
|
-
duotone && /* @__PURE__ */
|
|
3064
|
-
/* @__PURE__ */
|
|
3373
|
+
duotone && /* @__PURE__ */ jsxs51("g", { opacity: "0.12", children: [
|
|
3374
|
+
/* @__PURE__ */ jsx75(
|
|
3065
3375
|
"path",
|
|
3066
3376
|
{
|
|
3067
3377
|
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
3378
|
fill: "currentColor"
|
|
3069
3379
|
}
|
|
3070
3380
|
),
|
|
3071
|
-
/* @__PURE__ */
|
|
3381
|
+
/* @__PURE__ */ jsx75(
|
|
3072
3382
|
"path",
|
|
3073
3383
|
{
|
|
3074
3384
|
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 +3386,7 @@ var SaveIcon = forwardRef68(function SaveIcon2(_a, ref) {
|
|
|
3076
3386
|
}
|
|
3077
3387
|
)
|
|
3078
3388
|
] }),
|
|
3079
|
-
/* @__PURE__ */
|
|
3389
|
+
/* @__PURE__ */ jsx75(
|
|
3080
3390
|
"path",
|
|
3081
3391
|
{
|
|
3082
3392
|
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 +3402,12 @@ var SaveIcon = forwardRef68(function SaveIcon2(_a, ref) {
|
|
|
3092
3402
|
});
|
|
3093
3403
|
|
|
3094
3404
|
// src/icons/search.tsx
|
|
3095
|
-
import { forwardRef as
|
|
3096
|
-
import { jsx as
|
|
3097
|
-
var SearchMdIcon =
|
|
3405
|
+
import { forwardRef as forwardRef74 } from "react";
|
|
3406
|
+
import { jsx as jsx76, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3407
|
+
var SearchMdIcon = forwardRef74(
|
|
3098
3408
|
function SearchMdIcon2(_a, ref) {
|
|
3099
3409
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3100
|
-
return /* @__PURE__ */
|
|
3410
|
+
return /* @__PURE__ */ jsxs52(
|
|
3101
3411
|
"svg",
|
|
3102
3412
|
__spreadProps(__spreadValues({
|
|
3103
3413
|
ref,
|
|
@@ -3109,7 +3419,7 @@ var SearchMdIcon = forwardRef69(
|
|
|
3109
3419
|
className
|
|
3110
3420
|
}, other), {
|
|
3111
3421
|
children: [
|
|
3112
|
-
duotone && /* @__PURE__ */
|
|
3422
|
+
duotone && /* @__PURE__ */ jsx76(
|
|
3113
3423
|
"path",
|
|
3114
3424
|
{
|
|
3115
3425
|
opacity: "0.12",
|
|
@@ -3117,7 +3427,7 @@ var SearchMdIcon = forwardRef69(
|
|
|
3117
3427
|
fill: "currentColor"
|
|
3118
3428
|
}
|
|
3119
3429
|
),
|
|
3120
|
-
/* @__PURE__ */
|
|
3430
|
+
/* @__PURE__ */ jsx76(
|
|
3121
3431
|
"path",
|
|
3122
3432
|
{
|
|
3123
3433
|
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 +3444,11 @@ var SearchMdIcon = forwardRef69(
|
|
|
3134
3444
|
);
|
|
3135
3445
|
|
|
3136
3446
|
// src/icons/send.tsx
|
|
3137
|
-
import { forwardRef as
|
|
3138
|
-
import { jsx as
|
|
3139
|
-
var SendIcon =
|
|
3447
|
+
import { forwardRef as forwardRef75 } from "react";
|
|
3448
|
+
import { jsx as jsx77, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3449
|
+
var SendIcon = forwardRef75(function SendIcon2(_a, ref) {
|
|
3140
3450
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3141
|
-
return /* @__PURE__ */
|
|
3451
|
+
return /* @__PURE__ */ jsxs53(
|
|
3142
3452
|
"svg",
|
|
3143
3453
|
__spreadProps(__spreadValues({
|
|
3144
3454
|
ref,
|
|
@@ -3150,7 +3460,7 @@ var SendIcon = forwardRef70(function SendIcon2(_a, ref) {
|
|
|
3150
3460
|
className
|
|
3151
3461
|
}, other), {
|
|
3152
3462
|
children: [
|
|
3153
|
-
duotone && /* @__PURE__ */
|
|
3463
|
+
duotone && /* @__PURE__ */ jsx77(
|
|
3154
3464
|
"path",
|
|
3155
3465
|
{
|
|
3156
3466
|
opacity: "0.12",
|
|
@@ -3158,7 +3468,7 @@ var SendIcon = forwardRef70(function SendIcon2(_a, ref) {
|
|
|
3158
3468
|
fill: "currentColor"
|
|
3159
3469
|
}
|
|
3160
3470
|
),
|
|
3161
|
-
/* @__PURE__ */
|
|
3471
|
+
/* @__PURE__ */ jsx77(
|
|
3162
3472
|
"path",
|
|
3163
3473
|
{
|
|
3164
3474
|
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 +3484,12 @@ var SendIcon = forwardRef70(function SendIcon2(_a, ref) {
|
|
|
3174
3484
|
});
|
|
3175
3485
|
|
|
3176
3486
|
// src/icons/settings.tsx
|
|
3177
|
-
import { forwardRef as
|
|
3178
|
-
import { jsx as
|
|
3179
|
-
var SettingsIcon =
|
|
3487
|
+
import { forwardRef as forwardRef76 } from "react";
|
|
3488
|
+
import { jsx as jsx78, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3489
|
+
var SettingsIcon = forwardRef76(
|
|
3180
3490
|
function SettingsIcon2(_a, ref) {
|
|
3181
3491
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3182
|
-
return /* @__PURE__ */
|
|
3492
|
+
return /* @__PURE__ */ jsxs54(
|
|
3183
3493
|
"svg",
|
|
3184
3494
|
__spreadProps(__spreadValues({
|
|
3185
3495
|
ref,
|
|
@@ -3191,7 +3501,7 @@ var SettingsIcon = forwardRef71(
|
|
|
3191
3501
|
className
|
|
3192
3502
|
}, other), {
|
|
3193
3503
|
children: [
|
|
3194
|
-
duotone && /* @__PURE__ */
|
|
3504
|
+
duotone && /* @__PURE__ */ jsx78(
|
|
3195
3505
|
"path",
|
|
3196
3506
|
{
|
|
3197
3507
|
opacity: "0.12",
|
|
@@ -3201,7 +3511,7 @@ var SettingsIcon = forwardRef71(
|
|
|
3201
3511
|
fill: "currentColor"
|
|
3202
3512
|
}
|
|
3203
3513
|
),
|
|
3204
|
-
/* @__PURE__ */
|
|
3514
|
+
/* @__PURE__ */ jsx78(
|
|
3205
3515
|
"path",
|
|
3206
3516
|
{
|
|
3207
3517
|
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 +3522,7 @@ var SettingsIcon = forwardRef71(
|
|
|
3212
3522
|
}
|
|
3213
3523
|
),
|
|
3214
3524
|
",",
|
|
3215
|
-
/* @__PURE__ */
|
|
3525
|
+
/* @__PURE__ */ jsx78(
|
|
3216
3526
|
"path",
|
|
3217
3527
|
{
|
|
3218
3528
|
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 +3539,12 @@ var SettingsIcon = forwardRef71(
|
|
|
3229
3539
|
);
|
|
3230
3540
|
|
|
3231
3541
|
// src/icons/share.tsx
|
|
3232
|
-
import { forwardRef as
|
|
3233
|
-
import { jsx as
|
|
3234
|
-
var ShareIcon =
|
|
3542
|
+
import { forwardRef as forwardRef77 } from "react";
|
|
3543
|
+
import { jsx as jsx79, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3544
|
+
var ShareIcon = forwardRef77(
|
|
3235
3545
|
function ShareIcon2(_a, ref) {
|
|
3236
3546
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3237
|
-
return /* @__PURE__ */
|
|
3547
|
+
return /* @__PURE__ */ jsxs55(
|
|
3238
3548
|
"svg",
|
|
3239
3549
|
__spreadProps(__spreadValues({
|
|
3240
3550
|
ref,
|
|
@@ -3246,22 +3556,22 @@ var ShareIcon = forwardRef72(
|
|
|
3246
3556
|
className
|
|
3247
3557
|
}, other), {
|
|
3248
3558
|
children: [
|
|
3249
|
-
duotone && /* @__PURE__ */
|
|
3250
|
-
/* @__PURE__ */
|
|
3559
|
+
duotone && /* @__PURE__ */ jsxs55("g", { opacity: "0.12", children: [
|
|
3560
|
+
/* @__PURE__ */ jsx79(
|
|
3251
3561
|
"path",
|
|
3252
3562
|
{
|
|
3253
3563
|
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
3564
|
fill: "currentColor"
|
|
3255
3565
|
}
|
|
3256
3566
|
),
|
|
3257
|
-
/* @__PURE__ */
|
|
3567
|
+
/* @__PURE__ */ jsx79(
|
|
3258
3568
|
"path",
|
|
3259
3569
|
{
|
|
3260
3570
|
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
3571
|
fill: "currentColor"
|
|
3262
3572
|
}
|
|
3263
3573
|
),
|
|
3264
|
-
/* @__PURE__ */
|
|
3574
|
+
/* @__PURE__ */ jsx79(
|
|
3265
3575
|
"path",
|
|
3266
3576
|
{
|
|
3267
3577
|
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 +3579,7 @@ var ShareIcon = forwardRef72(
|
|
|
3269
3579
|
}
|
|
3270
3580
|
)
|
|
3271
3581
|
] }),
|
|
3272
|
-
/* @__PURE__ */
|
|
3582
|
+
/* @__PURE__ */ jsx79(
|
|
3273
3583
|
"path",
|
|
3274
3584
|
{
|
|
3275
3585
|
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 +3596,12 @@ var ShareIcon = forwardRef72(
|
|
|
3286
3596
|
);
|
|
3287
3597
|
|
|
3288
3598
|
// src/icons/shareArrow.tsx
|
|
3289
|
-
import { forwardRef as
|
|
3290
|
-
import { jsx as
|
|
3291
|
-
var ShareArrowIcon =
|
|
3599
|
+
import { forwardRef as forwardRef78 } from "react";
|
|
3600
|
+
import { jsx as jsx80, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3601
|
+
var ShareArrowIcon = forwardRef78(
|
|
3292
3602
|
function ShareArrowIcon2(_a, ref) {
|
|
3293
3603
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3294
|
-
return /* @__PURE__ */
|
|
3604
|
+
return /* @__PURE__ */ jsxs56(
|
|
3295
3605
|
"svg",
|
|
3296
3606
|
__spreadProps(__spreadValues({
|
|
3297
3607
|
ref,
|
|
@@ -3303,7 +3613,7 @@ var ShareArrowIcon = forwardRef73(
|
|
|
3303
3613
|
className
|
|
3304
3614
|
}, other), {
|
|
3305
3615
|
children: [
|
|
3306
|
-
duotone && /* @__PURE__ */
|
|
3616
|
+
duotone && /* @__PURE__ */ jsx80(
|
|
3307
3617
|
"path",
|
|
3308
3618
|
{
|
|
3309
3619
|
opacity: "0.12",
|
|
@@ -3311,7 +3621,7 @@ var ShareArrowIcon = forwardRef73(
|
|
|
3311
3621
|
fill: "currentColor"
|
|
3312
3622
|
}
|
|
3313
3623
|
),
|
|
3314
|
-
/* @__PURE__ */
|
|
3624
|
+
/* @__PURE__ */ jsx80(
|
|
3315
3625
|
"path",
|
|
3316
3626
|
{
|
|
3317
3627
|
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 +3638,12 @@ var ShareArrowIcon = forwardRef73(
|
|
|
3328
3638
|
);
|
|
3329
3639
|
|
|
3330
3640
|
// src/icons/skipBack.tsx
|
|
3331
|
-
import { forwardRef as
|
|
3332
|
-
import { jsx as
|
|
3333
|
-
var SkipBackIcon =
|
|
3641
|
+
import { forwardRef as forwardRef79 } from "react";
|
|
3642
|
+
import { jsx as jsx81, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
3643
|
+
var SkipBackIcon = forwardRef79(
|
|
3334
3644
|
function SkipBackIcon2(_a, ref) {
|
|
3335
3645
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3336
|
-
return /* @__PURE__ */
|
|
3646
|
+
return /* @__PURE__ */ jsxs57(
|
|
3337
3647
|
"svg",
|
|
3338
3648
|
__spreadProps(__spreadValues({
|
|
3339
3649
|
ref,
|
|
@@ -3345,7 +3655,7 @@ var SkipBackIcon = forwardRef74(
|
|
|
3345
3655
|
className
|
|
3346
3656
|
}, other), {
|
|
3347
3657
|
children: [
|
|
3348
|
-
duotone && /* @__PURE__ */
|
|
3658
|
+
duotone && /* @__PURE__ */ jsx81(
|
|
3349
3659
|
"path",
|
|
3350
3660
|
{
|
|
3351
3661
|
opacity: "0.12",
|
|
@@ -3353,7 +3663,7 @@ var SkipBackIcon = forwardRef74(
|
|
|
3353
3663
|
fill: "currentColor"
|
|
3354
3664
|
}
|
|
3355
3665
|
),
|
|
3356
|
-
/* @__PURE__ */
|
|
3666
|
+
/* @__PURE__ */ jsx81(
|
|
3357
3667
|
"path",
|
|
3358
3668
|
{
|
|
3359
3669
|
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 +3680,12 @@ var SkipBackIcon = forwardRef74(
|
|
|
3370
3680
|
);
|
|
3371
3681
|
|
|
3372
3682
|
// src/icons/skipForward.tsx
|
|
3373
|
-
import { forwardRef as
|
|
3374
|
-
import { jsx as
|
|
3375
|
-
var SkipForwardIcon =
|
|
3683
|
+
import { forwardRef as forwardRef80 } from "react";
|
|
3684
|
+
import { jsx as jsx82, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
3685
|
+
var SkipForwardIcon = forwardRef80(
|
|
3376
3686
|
function SkipForwardIcon2(_a, ref) {
|
|
3377
3687
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3378
|
-
return /* @__PURE__ */
|
|
3688
|
+
return /* @__PURE__ */ jsxs58(
|
|
3379
3689
|
"svg",
|
|
3380
3690
|
__spreadProps(__spreadValues({
|
|
3381
3691
|
ref,
|
|
@@ -3387,7 +3697,7 @@ var SkipForwardIcon = forwardRef75(
|
|
|
3387
3697
|
className
|
|
3388
3698
|
}, other), {
|
|
3389
3699
|
children: [
|
|
3390
|
-
duotone && /* @__PURE__ */
|
|
3700
|
+
duotone && /* @__PURE__ */ jsx82(
|
|
3391
3701
|
"path",
|
|
3392
3702
|
{
|
|
3393
3703
|
opacity: "0.12",
|
|
@@ -3395,7 +3705,7 @@ var SkipForwardIcon = forwardRef75(
|
|
|
3395
3705
|
fill: "currentColor"
|
|
3396
3706
|
}
|
|
3397
3707
|
),
|
|
3398
|
-
/* @__PURE__ */
|
|
3708
|
+
/* @__PURE__ */ jsx82(
|
|
3399
3709
|
"path",
|
|
3400
3710
|
{
|
|
3401
3711
|
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 +3721,52 @@ var SkipForwardIcon = forwardRef75(
|
|
|
3411
3721
|
}
|
|
3412
3722
|
);
|
|
3413
3723
|
|
|
3724
|
+
// src/icons/spinner.tsx
|
|
3725
|
+
import { forwardRef as forwardRef81 } from "react";
|
|
3726
|
+
import { jsx as jsx83, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
3727
|
+
var SpinnerIcon = forwardRef81(
|
|
3728
|
+
function SpinnerIcon2(_a, ref) {
|
|
3729
|
+
var _b = _a, { size = 24, className = "animate-spin text-gray-1000" } = _b, other = __objRest(_b, ["size", "className"]);
|
|
3730
|
+
return /* @__PURE__ */ jsxs59(
|
|
3731
|
+
"svg",
|
|
3732
|
+
__spreadProps(__spreadValues({
|
|
3733
|
+
ref,
|
|
3734
|
+
width: size,
|
|
3735
|
+
height: size,
|
|
3736
|
+
viewBox: "0 0 25 24",
|
|
3737
|
+
fill: "none",
|
|
3738
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3739
|
+
className
|
|
3740
|
+
}, other), {
|
|
3741
|
+
children: [
|
|
3742
|
+
/* @__PURE__ */ jsx83(
|
|
3743
|
+
"path",
|
|
3744
|
+
{
|
|
3745
|
+
opacity: "0.12",
|
|
3746
|
+
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",
|
|
3747
|
+
fill: "currentColor"
|
|
3748
|
+
}
|
|
3749
|
+
),
|
|
3750
|
+
/* @__PURE__ */ jsx83(
|
|
3751
|
+
"path",
|
|
3752
|
+
{
|
|
3753
|
+
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",
|
|
3754
|
+
fill: "currentColor"
|
|
3755
|
+
}
|
|
3756
|
+
)
|
|
3757
|
+
]
|
|
3758
|
+
})
|
|
3759
|
+
);
|
|
3760
|
+
}
|
|
3761
|
+
);
|
|
3762
|
+
|
|
3414
3763
|
// src/icons/stars.tsx
|
|
3415
|
-
import { forwardRef as
|
|
3416
|
-
import { jsx as
|
|
3417
|
-
var StarsIcon =
|
|
3764
|
+
import { forwardRef as forwardRef82 } from "react";
|
|
3765
|
+
import { jsx as jsx84, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
3766
|
+
var StarsIcon = forwardRef82(
|
|
3418
3767
|
function StarsIcon2(_a, ref) {
|
|
3419
3768
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3420
|
-
return /* @__PURE__ */
|
|
3769
|
+
return /* @__PURE__ */ jsxs60(
|
|
3421
3770
|
"svg",
|
|
3422
3771
|
__spreadProps(__spreadValues({
|
|
3423
3772
|
ref,
|
|
@@ -3429,7 +3778,7 @@ var StarsIcon = forwardRef76(
|
|
|
3429
3778
|
className
|
|
3430
3779
|
}, other), {
|
|
3431
3780
|
children: [
|
|
3432
|
-
duotone && /* @__PURE__ */
|
|
3781
|
+
duotone && /* @__PURE__ */ jsx84(
|
|
3433
3782
|
"path",
|
|
3434
3783
|
{
|
|
3435
3784
|
opacity: "0.12",
|
|
@@ -3437,7 +3786,7 @@ var StarsIcon = forwardRef76(
|
|
|
3437
3786
|
fill: "currentColor"
|
|
3438
3787
|
}
|
|
3439
3788
|
),
|
|
3440
|
-
/* @__PURE__ */
|
|
3789
|
+
/* @__PURE__ */ jsx84(
|
|
3441
3790
|
"path",
|
|
3442
3791
|
{
|
|
3443
3792
|
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 +3803,12 @@ var StarsIcon = forwardRef76(
|
|
|
3454
3803
|
);
|
|
3455
3804
|
|
|
3456
3805
|
// src/icons/trash.tsx
|
|
3457
|
-
import { forwardRef as
|
|
3458
|
-
import { jsx as
|
|
3459
|
-
var TrashIcon =
|
|
3806
|
+
import { forwardRef as forwardRef83 } from "react";
|
|
3807
|
+
import { jsx as jsx85, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
3808
|
+
var TrashIcon = forwardRef83(
|
|
3460
3809
|
function TrashIcon2(_a, ref) {
|
|
3461
3810
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3462
|
-
return /* @__PURE__ */
|
|
3811
|
+
return /* @__PURE__ */ jsxs61(
|
|
3463
3812
|
"svg",
|
|
3464
3813
|
__spreadProps(__spreadValues({
|
|
3465
3814
|
ref,
|
|
@@ -3471,7 +3820,7 @@ var TrashIcon = forwardRef77(
|
|
|
3471
3820
|
className
|
|
3472
3821
|
}, other), {
|
|
3473
3822
|
children: [
|
|
3474
|
-
duotone && /* @__PURE__ */
|
|
3823
|
+
duotone && /* @__PURE__ */ jsx85(
|
|
3475
3824
|
"path",
|
|
3476
3825
|
{
|
|
3477
3826
|
opacity: "0.12",
|
|
@@ -3479,7 +3828,7 @@ var TrashIcon = forwardRef77(
|
|
|
3479
3828
|
fill: "currentColor"
|
|
3480
3829
|
}
|
|
3481
3830
|
),
|
|
3482
|
-
/* @__PURE__ */
|
|
3831
|
+
/* @__PURE__ */ jsx85(
|
|
3483
3832
|
"path",
|
|
3484
3833
|
{
|
|
3485
3834
|
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 +3845,12 @@ var TrashIcon = forwardRef77(
|
|
|
3496
3845
|
);
|
|
3497
3846
|
|
|
3498
3847
|
// src/icons/trendDown.tsx
|
|
3499
|
-
import { forwardRef as
|
|
3500
|
-
import { jsx as
|
|
3501
|
-
var TrendDownIcon =
|
|
3848
|
+
import { forwardRef as forwardRef84 } from "react";
|
|
3849
|
+
import { jsx as jsx86 } from "react/jsx-runtime";
|
|
3850
|
+
var TrendDownIcon = forwardRef84(
|
|
3502
3851
|
function TrendDownIcon2(_a, ref) {
|
|
3503
3852
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3504
|
-
return /* @__PURE__ */
|
|
3853
|
+
return /* @__PURE__ */ jsx86(
|
|
3505
3854
|
"svg",
|
|
3506
3855
|
__spreadProps(__spreadValues({
|
|
3507
3856
|
ref,
|
|
@@ -3512,7 +3861,7 @@ var TrendDownIcon = forwardRef78(
|
|
|
3512
3861
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3513
3862
|
className
|
|
3514
3863
|
}, other), {
|
|
3515
|
-
children: /* @__PURE__ */
|
|
3864
|
+
children: /* @__PURE__ */ jsx86(
|
|
3516
3865
|
"path",
|
|
3517
3866
|
{
|
|
3518
3867
|
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 +3877,12 @@ var TrendDownIcon = forwardRef78(
|
|
|
3528
3877
|
);
|
|
3529
3878
|
|
|
3530
3879
|
// src/icons/trendUp.tsx
|
|
3531
|
-
import { forwardRef as
|
|
3532
|
-
import { jsx as
|
|
3533
|
-
var TrendUpIcon =
|
|
3880
|
+
import { forwardRef as forwardRef85 } from "react";
|
|
3881
|
+
import { jsx as jsx87 } from "react/jsx-runtime";
|
|
3882
|
+
var TrendUpIcon = forwardRef85(
|
|
3534
3883
|
function TrendUpIcon2(_a, ref) {
|
|
3535
3884
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3536
|
-
return /* @__PURE__ */
|
|
3885
|
+
return /* @__PURE__ */ jsx87(
|
|
3537
3886
|
"svg",
|
|
3538
3887
|
__spreadProps(__spreadValues({
|
|
3539
3888
|
ref,
|
|
@@ -3544,7 +3893,7 @@ var TrendUpIcon = forwardRef79(
|
|
|
3544
3893
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3545
3894
|
className
|
|
3546
3895
|
}, other), {
|
|
3547
|
-
children: /* @__PURE__ */
|
|
3896
|
+
children: /* @__PURE__ */ jsx87(
|
|
3548
3897
|
"path",
|
|
3549
3898
|
{
|
|
3550
3899
|
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 +3909,11 @@ var TrendUpIcon = forwardRef79(
|
|
|
3560
3909
|
);
|
|
3561
3910
|
|
|
3562
3911
|
// src/icons/user.tsx
|
|
3563
|
-
import { forwardRef as
|
|
3564
|
-
import { jsx as
|
|
3565
|
-
var UserIcon =
|
|
3912
|
+
import { forwardRef as forwardRef86 } from "react";
|
|
3913
|
+
import { jsx as jsx88, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
3914
|
+
var UserIcon = forwardRef86(function UserIcon2(_a, ref) {
|
|
3566
3915
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3567
|
-
return /* @__PURE__ */
|
|
3916
|
+
return /* @__PURE__ */ jsxs62(
|
|
3568
3917
|
"svg",
|
|
3569
3918
|
__spreadProps(__spreadValues({
|
|
3570
3919
|
ref,
|
|
@@ -3576,7 +3925,7 @@ var UserIcon = forwardRef80(function UserIcon2(_a, ref) {
|
|
|
3576
3925
|
className
|
|
3577
3926
|
}, other), {
|
|
3578
3927
|
children: [
|
|
3579
|
-
duotone && /* @__PURE__ */
|
|
3928
|
+
duotone && /* @__PURE__ */ jsx88(
|
|
3580
3929
|
"path",
|
|
3581
3930
|
{
|
|
3582
3931
|
opacity: "0.12",
|
|
@@ -3584,7 +3933,7 @@ var UserIcon = forwardRef80(function UserIcon2(_a, ref) {
|
|
|
3584
3933
|
fill: "currentColor"
|
|
3585
3934
|
}
|
|
3586
3935
|
),
|
|
3587
|
-
/* @__PURE__ */
|
|
3936
|
+
/* @__PURE__ */ jsx88(
|
|
3588
3937
|
"path",
|
|
3589
3938
|
{
|
|
3590
3939
|
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 +3949,12 @@ var UserIcon = forwardRef80(function UserIcon2(_a, ref) {
|
|
|
3600
3949
|
});
|
|
3601
3950
|
|
|
3602
3951
|
// src/icons/userPlus.tsx
|
|
3603
|
-
import { forwardRef as
|
|
3604
|
-
import { jsx as
|
|
3605
|
-
var UserPlusIcon =
|
|
3952
|
+
import { forwardRef as forwardRef87 } from "react";
|
|
3953
|
+
import { jsx as jsx89, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
3954
|
+
var UserPlusIcon = forwardRef87(
|
|
3606
3955
|
function UserPlusIcon2(_a, ref) {
|
|
3607
3956
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3608
|
-
return /* @__PURE__ */
|
|
3957
|
+
return /* @__PURE__ */ jsxs63(
|
|
3609
3958
|
"svg",
|
|
3610
3959
|
__spreadProps(__spreadValues({
|
|
3611
3960
|
ref,
|
|
@@ -3617,7 +3966,7 @@ var UserPlusIcon = forwardRef81(
|
|
|
3617
3966
|
className
|
|
3618
3967
|
}, other), {
|
|
3619
3968
|
children: [
|
|
3620
|
-
duotone && /* @__PURE__ */
|
|
3969
|
+
duotone && /* @__PURE__ */ jsx89(
|
|
3621
3970
|
"path",
|
|
3622
3971
|
{
|
|
3623
3972
|
opacity: "0.12",
|
|
@@ -3625,7 +3974,7 @@ var UserPlusIcon = forwardRef81(
|
|
|
3625
3974
|
fill: "currentColor"
|
|
3626
3975
|
}
|
|
3627
3976
|
),
|
|
3628
|
-
/* @__PURE__ */
|
|
3977
|
+
/* @__PURE__ */ jsx89(
|
|
3629
3978
|
"path",
|
|
3630
3979
|
{
|
|
3631
3980
|
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 +3991,12 @@ var UserPlusIcon = forwardRef81(
|
|
|
3642
3991
|
);
|
|
3643
3992
|
|
|
3644
3993
|
// src/icons/userX.tsx
|
|
3645
|
-
import { forwardRef as
|
|
3646
|
-
import { jsx as
|
|
3647
|
-
var UserXIcon =
|
|
3994
|
+
import { forwardRef as forwardRef88 } from "react";
|
|
3995
|
+
import { jsx as jsx90, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
3996
|
+
var UserXIcon = forwardRef88(
|
|
3648
3997
|
function UserXIcon2(_a, ref) {
|
|
3649
3998
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3650
|
-
return /* @__PURE__ */
|
|
3999
|
+
return /* @__PURE__ */ jsxs64(
|
|
3651
4000
|
"svg",
|
|
3652
4001
|
__spreadProps(__spreadValues({
|
|
3653
4002
|
ref,
|
|
@@ -3659,7 +4008,7 @@ var UserXIcon = forwardRef82(
|
|
|
3659
4008
|
className
|
|
3660
4009
|
}, other), {
|
|
3661
4010
|
children: [
|
|
3662
|
-
duotone && /* @__PURE__ */
|
|
4011
|
+
duotone && /* @__PURE__ */ jsx90(
|
|
3663
4012
|
"path",
|
|
3664
4013
|
{
|
|
3665
4014
|
opacity: "0.12",
|
|
@@ -3667,7 +4016,7 @@ var UserXIcon = forwardRef82(
|
|
|
3667
4016
|
fill: "currentColor"
|
|
3668
4017
|
}
|
|
3669
4018
|
),
|
|
3670
|
-
/* @__PURE__ */
|
|
4019
|
+
/* @__PURE__ */ jsx90(
|
|
3671
4020
|
"path",
|
|
3672
4021
|
{
|
|
3673
4022
|
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 +4033,12 @@ var UserXIcon = forwardRef82(
|
|
|
3684
4033
|
);
|
|
3685
4034
|
|
|
3686
4035
|
// src/icons/users.tsx
|
|
3687
|
-
import { forwardRef as
|
|
3688
|
-
import { jsx as
|
|
3689
|
-
var UsersIcon =
|
|
4036
|
+
import { forwardRef as forwardRef89 } from "react";
|
|
4037
|
+
import { jsx as jsx91, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
4038
|
+
var UsersIcon = forwardRef89(
|
|
3690
4039
|
function UsersIcon2(_a, ref) {
|
|
3691
4040
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3692
|
-
return /* @__PURE__ */
|
|
4041
|
+
return /* @__PURE__ */ jsxs65(
|
|
3693
4042
|
"svg",
|
|
3694
4043
|
__spreadProps(__spreadValues({
|
|
3695
4044
|
ref,
|
|
@@ -3701,7 +4050,7 @@ var UsersIcon = forwardRef83(
|
|
|
3701
4050
|
className
|
|
3702
4051
|
}, other), {
|
|
3703
4052
|
children: [
|
|
3704
|
-
duotone && /* @__PURE__ */
|
|
4053
|
+
duotone && /* @__PURE__ */ jsx91(
|
|
3705
4054
|
"path",
|
|
3706
4055
|
{
|
|
3707
4056
|
opacity: "0.12",
|
|
@@ -3709,7 +4058,7 @@ var UsersIcon = forwardRef83(
|
|
|
3709
4058
|
fill: "currentColor"
|
|
3710
4059
|
}
|
|
3711
4060
|
),
|
|
3712
|
-
/* @__PURE__ */
|
|
4061
|
+
/* @__PURE__ */ jsx91(
|
|
3713
4062
|
"path",
|
|
3714
4063
|
{
|
|
3715
4064
|
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 +4075,12 @@ var UsersIcon = forwardRef83(
|
|
|
3726
4075
|
);
|
|
3727
4076
|
|
|
3728
4077
|
// src/icons/usersPlus.tsx
|
|
3729
|
-
import { forwardRef as
|
|
3730
|
-
import { jsx as
|
|
3731
|
-
var UsersPlusIcon =
|
|
4078
|
+
import { forwardRef as forwardRef90 } from "react";
|
|
4079
|
+
import { jsx as jsx92, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
4080
|
+
var UsersPlusIcon = forwardRef90(
|
|
3732
4081
|
function UsersPlusIcon2(_a, ref) {
|
|
3733
4082
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3734
|
-
return /* @__PURE__ */
|
|
4083
|
+
return /* @__PURE__ */ jsxs66(
|
|
3735
4084
|
"svg",
|
|
3736
4085
|
__spreadProps(__spreadValues({
|
|
3737
4086
|
ref,
|
|
@@ -3743,7 +4092,7 @@ var UsersPlusIcon = forwardRef84(
|
|
|
3743
4092
|
className
|
|
3744
4093
|
}, other), {
|
|
3745
4094
|
children: [
|
|
3746
|
-
duotone && /* @__PURE__ */
|
|
4095
|
+
duotone && /* @__PURE__ */ jsx92(
|
|
3747
4096
|
"path",
|
|
3748
4097
|
{
|
|
3749
4098
|
opacity: "0.12",
|
|
@@ -3751,7 +4100,7 @@ var UsersPlusIcon = forwardRef84(
|
|
|
3751
4100
|
fill: "currentColor"
|
|
3752
4101
|
}
|
|
3753
4102
|
),
|
|
3754
|
-
/* @__PURE__ */
|
|
4103
|
+
/* @__PURE__ */ jsx92(
|
|
3755
4104
|
"path",
|
|
3756
4105
|
{
|
|
3757
4106
|
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 +4117,12 @@ var UsersPlusIcon = forwardRef84(
|
|
|
3768
4117
|
);
|
|
3769
4118
|
|
|
3770
4119
|
// src/icons/usersX.tsx
|
|
3771
|
-
import { forwardRef as
|
|
3772
|
-
import { jsx as
|
|
3773
|
-
var UsersXIcon =
|
|
4120
|
+
import { forwardRef as forwardRef91 } from "react";
|
|
4121
|
+
import { jsx as jsx93, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
4122
|
+
var UsersXIcon = forwardRef91(
|
|
3774
4123
|
function UsersXIcon2(_a, ref) {
|
|
3775
4124
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3776
|
-
return /* @__PURE__ */
|
|
4125
|
+
return /* @__PURE__ */ jsxs67(
|
|
3777
4126
|
"svg",
|
|
3778
4127
|
__spreadProps(__spreadValues({
|
|
3779
4128
|
ref,
|
|
@@ -3785,7 +4134,7 @@ var UsersXIcon = forwardRef85(
|
|
|
3785
4134
|
className
|
|
3786
4135
|
}, other), {
|
|
3787
4136
|
children: [
|
|
3788
|
-
duotone && /* @__PURE__ */
|
|
4137
|
+
duotone && /* @__PURE__ */ jsx93(
|
|
3789
4138
|
"path",
|
|
3790
4139
|
{
|
|
3791
4140
|
opacity: "0.12",
|
|
@@ -3793,7 +4142,7 @@ var UsersXIcon = forwardRef85(
|
|
|
3793
4142
|
fill: "currentColor"
|
|
3794
4143
|
}
|
|
3795
4144
|
),
|
|
3796
|
-
/* @__PURE__ */
|
|
4145
|
+
/* @__PURE__ */ jsx93(
|
|
3797
4146
|
"path",
|
|
3798
4147
|
{
|
|
3799
4148
|
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 +4159,12 @@ var UsersXIcon = forwardRef85(
|
|
|
3810
4159
|
);
|
|
3811
4160
|
|
|
3812
4161
|
// src/icons/videoRecorder.tsx
|
|
3813
|
-
import { forwardRef as
|
|
3814
|
-
import { jsx as
|
|
3815
|
-
var VideoRecorderIcon =
|
|
4162
|
+
import { forwardRef as forwardRef92 } from "react";
|
|
4163
|
+
import { jsx as jsx94, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
4164
|
+
var VideoRecorderIcon = forwardRef92(
|
|
3816
4165
|
function VideoRecorderIcon2(_a, ref) {
|
|
3817
4166
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3818
|
-
return /* @__PURE__ */
|
|
4167
|
+
return /* @__PURE__ */ jsxs68(
|
|
3819
4168
|
"svg",
|
|
3820
4169
|
__spreadProps(__spreadValues({
|
|
3821
4170
|
ref,
|
|
@@ -3827,7 +4176,7 @@ var VideoRecorderIcon = forwardRef86(
|
|
|
3827
4176
|
className
|
|
3828
4177
|
}, other), {
|
|
3829
4178
|
children: [
|
|
3830
|
-
duotone && /* @__PURE__ */
|
|
4179
|
+
duotone && /* @__PURE__ */ jsx94(
|
|
3831
4180
|
"path",
|
|
3832
4181
|
{
|
|
3833
4182
|
opacity: "0.12",
|
|
@@ -3839,7 +4188,7 @@ var VideoRecorderIcon = forwardRef86(
|
|
|
3839
4188
|
strokeLinejoin: "round"
|
|
3840
4189
|
}
|
|
3841
4190
|
),
|
|
3842
|
-
/* @__PURE__ */
|
|
4191
|
+
/* @__PURE__ */ jsx94(
|
|
3843
4192
|
"path",
|
|
3844
4193
|
{
|
|
3845
4194
|
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 +4199,7 @@ var VideoRecorderIcon = forwardRef86(
|
|
|
3850
4199
|
}
|
|
3851
4200
|
),
|
|
3852
4201
|
",",
|
|
3853
|
-
/* @__PURE__ */
|
|
4202
|
+
/* @__PURE__ */ jsx94(
|
|
3854
4203
|
"path",
|
|
3855
4204
|
{
|
|
3856
4205
|
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 +4216,12 @@ var VideoRecorderIcon = forwardRef86(
|
|
|
3867
4216
|
);
|
|
3868
4217
|
|
|
3869
4218
|
// src/icons/videoRecorderOff.tsx
|
|
3870
|
-
import { forwardRef as
|
|
3871
|
-
import { jsx as
|
|
3872
|
-
var VideoRecorderOffIcon =
|
|
4219
|
+
import { forwardRef as forwardRef93 } from "react";
|
|
4220
|
+
import { jsx as jsx95, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4221
|
+
var VideoRecorderOffIcon = forwardRef93(
|
|
3873
4222
|
function VideoRecorderOffIcon2(_a, ref) {
|
|
3874
4223
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3875
|
-
return /* @__PURE__ */
|
|
4224
|
+
return /* @__PURE__ */ jsxs69(
|
|
3876
4225
|
"svg",
|
|
3877
4226
|
__spreadProps(__spreadValues({
|
|
3878
4227
|
ref,
|
|
@@ -3884,7 +4233,7 @@ var VideoRecorderOffIcon = forwardRef87(
|
|
|
3884
4233
|
className
|
|
3885
4234
|
}, other), {
|
|
3886
4235
|
children: [
|
|
3887
|
-
duotone && /* @__PURE__ */
|
|
4236
|
+
duotone && /* @__PURE__ */ jsx95(
|
|
3888
4237
|
"path",
|
|
3889
4238
|
{
|
|
3890
4239
|
opacity: "0.12",
|
|
@@ -3896,7 +4245,7 @@ var VideoRecorderOffIcon = forwardRef87(
|
|
|
3896
4245
|
strokeLinejoin: "round"
|
|
3897
4246
|
}
|
|
3898
4247
|
),
|
|
3899
|
-
/* @__PURE__ */
|
|
4248
|
+
/* @__PURE__ */ jsx95(
|
|
3900
4249
|
"path",
|
|
3901
4250
|
{
|
|
3902
4251
|
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 +4262,12 @@ var VideoRecorderOffIcon = forwardRef87(
|
|
|
3913
4262
|
);
|
|
3914
4263
|
|
|
3915
4264
|
// src/icons/volumeMax.tsx
|
|
3916
|
-
import { forwardRef as
|
|
3917
|
-
import { jsx as
|
|
3918
|
-
var VolumeMaxIcon =
|
|
4265
|
+
import { forwardRef as forwardRef94 } from "react";
|
|
4266
|
+
import { jsx as jsx96, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4267
|
+
var VolumeMaxIcon = forwardRef94(
|
|
3919
4268
|
function VolumeMaxIcon2(_a, ref) {
|
|
3920
4269
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3921
|
-
return /* @__PURE__ */
|
|
4270
|
+
return /* @__PURE__ */ jsxs70(
|
|
3922
4271
|
"svg",
|
|
3923
4272
|
__spreadProps(__spreadValues({
|
|
3924
4273
|
ref,
|
|
@@ -3930,7 +4279,7 @@ var VolumeMaxIcon = forwardRef88(
|
|
|
3930
4279
|
className
|
|
3931
4280
|
}, other), {
|
|
3932
4281
|
children: [
|
|
3933
|
-
duotone && /* @__PURE__ */
|
|
4282
|
+
duotone && /* @__PURE__ */ jsx96(
|
|
3934
4283
|
"path",
|
|
3935
4284
|
{
|
|
3936
4285
|
opacity: "0.12",
|
|
@@ -3938,7 +4287,7 @@ var VolumeMaxIcon = forwardRef88(
|
|
|
3938
4287
|
fill: "currentColor"
|
|
3939
4288
|
}
|
|
3940
4289
|
),
|
|
3941
|
-
/* @__PURE__ */
|
|
4290
|
+
/* @__PURE__ */ jsx96(
|
|
3942
4291
|
"path",
|
|
3943
4292
|
{
|
|
3944
4293
|
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 +4304,12 @@ var VolumeMaxIcon = forwardRef88(
|
|
|
3955
4304
|
);
|
|
3956
4305
|
|
|
3957
4306
|
// src/icons/volumeX.tsx
|
|
3958
|
-
import { forwardRef as
|
|
3959
|
-
import { jsx as
|
|
3960
|
-
var VolumeXIcon =
|
|
4307
|
+
import { forwardRef as forwardRef95 } from "react";
|
|
4308
|
+
import { jsx as jsx97, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4309
|
+
var VolumeXIcon = forwardRef95(
|
|
3961
4310
|
function VolumeXIcon2(_a, ref) {
|
|
3962
4311
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3963
|
-
return /* @__PURE__ */
|
|
4312
|
+
return /* @__PURE__ */ jsxs71(
|
|
3964
4313
|
"svg",
|
|
3965
4314
|
__spreadProps(__spreadValues({
|
|
3966
4315
|
ref,
|
|
@@ -3972,7 +4321,7 @@ var VolumeXIcon = forwardRef89(
|
|
|
3972
4321
|
className
|
|
3973
4322
|
}, other), {
|
|
3974
4323
|
children: [
|
|
3975
|
-
duotone && /* @__PURE__ */
|
|
4324
|
+
duotone && /* @__PURE__ */ jsx97(
|
|
3976
4325
|
"path",
|
|
3977
4326
|
{
|
|
3978
4327
|
opacity: "0.12",
|
|
@@ -3980,7 +4329,7 @@ var VolumeXIcon = forwardRef89(
|
|
|
3980
4329
|
fill: "currentColor"
|
|
3981
4330
|
}
|
|
3982
4331
|
),
|
|
3983
|
-
/* @__PURE__ */
|
|
4332
|
+
/* @__PURE__ */ jsx97(
|
|
3984
4333
|
"path",
|
|
3985
4334
|
{
|
|
3986
4335
|
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 +4346,12 @@ var VolumeXIcon = forwardRef89(
|
|
|
3997
4346
|
);
|
|
3998
4347
|
|
|
3999
4348
|
// src/icons/xCircle.tsx
|
|
4000
|
-
import { forwardRef as
|
|
4001
|
-
import { jsx as
|
|
4002
|
-
var XCircleIcon =
|
|
4349
|
+
import { forwardRef as forwardRef96 } from "react";
|
|
4350
|
+
import { jsx as jsx98, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
4351
|
+
var XCircleIcon = forwardRef96(
|
|
4003
4352
|
function XCircleIcon2(_a, ref) {
|
|
4004
4353
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4005
|
-
return /* @__PURE__ */
|
|
4354
|
+
return /* @__PURE__ */ jsxs72(
|
|
4006
4355
|
"svg",
|
|
4007
4356
|
__spreadProps(__spreadValues({
|
|
4008
4357
|
ref,
|
|
@@ -4014,7 +4363,7 @@ var XCircleIcon = forwardRef90(
|
|
|
4014
4363
|
className
|
|
4015
4364
|
}, other), {
|
|
4016
4365
|
children: [
|
|
4017
|
-
duotone && /* @__PURE__ */
|
|
4366
|
+
duotone && /* @__PURE__ */ jsx98(
|
|
4018
4367
|
"path",
|
|
4019
4368
|
{
|
|
4020
4369
|
opacity: "0.12",
|
|
@@ -4022,7 +4371,7 @@ var XCircleIcon = forwardRef90(
|
|
|
4022
4371
|
fill: "currentColor"
|
|
4023
4372
|
}
|
|
4024
4373
|
),
|
|
4025
|
-
/* @__PURE__ */
|
|
4374
|
+
/* @__PURE__ */ jsx98(
|
|
4026
4375
|
"path",
|
|
4027
4376
|
{
|
|
4028
4377
|
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 +4388,12 @@ var XCircleIcon = forwardRef90(
|
|
|
4039
4388
|
);
|
|
4040
4389
|
|
|
4041
4390
|
// src/icons/xClose.tsx
|
|
4042
|
-
import { forwardRef as
|
|
4043
|
-
import { jsx as
|
|
4044
|
-
var XCloseIcon =
|
|
4391
|
+
import { forwardRef as forwardRef97 } from "react";
|
|
4392
|
+
import { jsx as jsx99 } from "react/jsx-runtime";
|
|
4393
|
+
var XCloseIcon = forwardRef97(
|
|
4045
4394
|
function XCloseIcon2(_a, ref) {
|
|
4046
4395
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4047
|
-
return /* @__PURE__ */
|
|
4396
|
+
return /* @__PURE__ */ jsx99(
|
|
4048
4397
|
"svg",
|
|
4049
4398
|
__spreadProps(__spreadValues({
|
|
4050
4399
|
ref,
|
|
@@ -4055,7 +4404,7 @@ var XCloseIcon = forwardRef91(
|
|
|
4055
4404
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4056
4405
|
className
|
|
4057
4406
|
}, other), {
|
|
4058
|
-
children: /* @__PURE__ */
|
|
4407
|
+
children: /* @__PURE__ */ jsx99(
|
|
4059
4408
|
"path",
|
|
4060
4409
|
{
|
|
4061
4410
|
d: "M18 6L6 18M6 6L18 18",
|
|
@@ -4071,7 +4420,7 @@ var XCloseIcon = forwardRef91(
|
|
|
4071
4420
|
);
|
|
4072
4421
|
|
|
4073
4422
|
// src/components/Calendar/Calendar.tsx
|
|
4074
|
-
import { jsx as
|
|
4423
|
+
import { jsx as jsx100 } from "react/jsx-runtime";
|
|
4075
4424
|
function Calendar(_a) {
|
|
4076
4425
|
var _b = _a, {
|
|
4077
4426
|
className,
|
|
@@ -4082,7 +4431,7 @@ function Calendar(_a) {
|
|
|
4082
4431
|
"classNames",
|
|
4083
4432
|
"showOutsideDays"
|
|
4084
4433
|
]);
|
|
4085
|
-
return /* @__PURE__ */
|
|
4434
|
+
return /* @__PURE__ */ jsx100(
|
|
4086
4435
|
DayPicker,
|
|
4087
4436
|
__spreadValues({
|
|
4088
4437
|
showOutsideDays,
|
|
@@ -4112,8 +4461,8 @@ function Calendar(_a) {
|
|
|
4112
4461
|
day_hidden: "invisible"
|
|
4113
4462
|
}, classNames),
|
|
4114
4463
|
components: {
|
|
4115
|
-
IconLeft: () => /* @__PURE__ */
|
|
4116
|
-
IconRight: () => /* @__PURE__ */
|
|
4464
|
+
IconLeft: () => /* @__PURE__ */ jsx100(ChevronLeftIcon, { className: "w-3 h-3" }),
|
|
4465
|
+
IconRight: () => /* @__PURE__ */ jsx100(ChevronRightIcon, { className: "w-3 h-3" })
|
|
4117
4466
|
}
|
|
4118
4467
|
}, props)
|
|
4119
4468
|
);
|
|
@@ -4123,10 +4472,10 @@ Calendar.displayName = "Calendar";
|
|
|
4123
4472
|
// src/components/Checkbox/Checkbox.tsx
|
|
4124
4473
|
import * as React5 from "react";
|
|
4125
4474
|
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
|
|
4126
|
-
import { jsx as
|
|
4475
|
+
import { jsx as jsx101 } from "react/jsx-runtime";
|
|
4127
4476
|
var Checkbox = React5.forwardRef((_a, ref) => {
|
|
4128
4477
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4129
|
-
return /* @__PURE__ */
|
|
4478
|
+
return /* @__PURE__ */ jsx101(
|
|
4130
4479
|
CheckboxPrimitive.Root,
|
|
4131
4480
|
__spreadProps(__spreadValues({
|
|
4132
4481
|
className: cn(
|
|
@@ -4135,16 +4484,171 @@ var Checkbox = React5.forwardRef((_a, ref) => {
|
|
|
4135
4484
|
)
|
|
4136
4485
|
}, props), {
|
|
4137
4486
|
ref,
|
|
4138
|
-
children: /* @__PURE__ */
|
|
4487
|
+
children: /* @__PURE__ */ jsx101(CheckboxPrimitive.Indicator, { children: /* @__PURE__ */ jsx101(CheckIcon, { size: 10, className: "text-white" }) })
|
|
4139
4488
|
})
|
|
4140
4489
|
);
|
|
4141
4490
|
});
|
|
4142
4491
|
Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
4143
4492
|
|
|
4144
|
-
// src/components/
|
|
4493
|
+
// src/components/Command/Command.tsx
|
|
4145
4494
|
import * as React6 from "react";
|
|
4495
|
+
import { useState } from "react";
|
|
4496
|
+
import { Command as CommandPrimitive } from "cmdk";
|
|
4497
|
+
import { jsx as jsx102, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
4498
|
+
var Command = React6.forwardRef((_a, ref) => {
|
|
4499
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4500
|
+
return /* @__PURE__ */ jsx102(
|
|
4501
|
+
CommandPrimitive,
|
|
4502
|
+
__spreadValues({
|
|
4503
|
+
ref,
|
|
4504
|
+
className: cn(
|
|
4505
|
+
"flex h-full w-full flex-col overflow-hidden rounded-md bg-white",
|
|
4506
|
+
className
|
|
4507
|
+
)
|
|
4508
|
+
}, props)
|
|
4509
|
+
);
|
|
4510
|
+
});
|
|
4511
|
+
Command.displayName = CommandPrimitive.displayName;
|
|
4512
|
+
var CommandInput = React6.forwardRef((_a, ref) => {
|
|
4513
|
+
var _b = _a, { className, value, onValueChange } = _b, props = __objRest(_b, ["className", "value", "onValueChange"]);
|
|
4514
|
+
const [val, setVal] = useState(value);
|
|
4515
|
+
const clearInput = () => {
|
|
4516
|
+
setVal("");
|
|
4517
|
+
onValueChange && onValueChange("");
|
|
4518
|
+
};
|
|
4519
|
+
return /* @__PURE__ */ jsxs73(
|
|
4520
|
+
"div",
|
|
4521
|
+
{
|
|
4522
|
+
className: "flex items-center gap-2 px-3 border-b border-gray-200",
|
|
4523
|
+
"cmdk-input-wrapper": "",
|
|
4524
|
+
children: [
|
|
4525
|
+
/* @__PURE__ */ jsx102(SearchMdIcon, { size: 16, className: "text-gray-900 shrink-0" }),
|
|
4526
|
+
/* @__PURE__ */ jsx102(
|
|
4527
|
+
CommandPrimitive.Input,
|
|
4528
|
+
__spreadValues({
|
|
4529
|
+
ref,
|
|
4530
|
+
value: val,
|
|
4531
|
+
className: cn(
|
|
4532
|
+
"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",
|
|
4533
|
+
className
|
|
4534
|
+
),
|
|
4535
|
+
onValueChange: (val2) => {
|
|
4536
|
+
setVal(val2);
|
|
4537
|
+
onValueChange && onValueChange(val2);
|
|
4538
|
+
}
|
|
4539
|
+
}, props)
|
|
4540
|
+
),
|
|
4541
|
+
value !== "" && /* @__PURE__ */ jsx102(Button, { variant: "ghostGray", size: "xs", icon: true, className: "-mr-2", children: /* @__PURE__ */ jsx102(
|
|
4542
|
+
XCloseIcon,
|
|
4543
|
+
{
|
|
4544
|
+
size: "16",
|
|
4545
|
+
className: "text-gray-700",
|
|
4546
|
+
onClick: () => {
|
|
4547
|
+
clearInput();
|
|
4548
|
+
}
|
|
4549
|
+
}
|
|
4550
|
+
) })
|
|
4551
|
+
]
|
|
4552
|
+
}
|
|
4553
|
+
);
|
|
4554
|
+
});
|
|
4555
|
+
CommandInput.displayName = CommandPrimitive.Input.displayName;
|
|
4556
|
+
var CommandList = React6.forwardRef((_a, ref) => {
|
|
4557
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4558
|
+
return /* @__PURE__ */ jsx102(
|
|
4559
|
+
CommandPrimitive.List,
|
|
4560
|
+
__spreadValues({
|
|
4561
|
+
ref,
|
|
4562
|
+
className: cn(
|
|
4563
|
+
"max-h-[300px] overflow-y-auto p-1 overflow-x-hidden",
|
|
4564
|
+
className
|
|
4565
|
+
)
|
|
4566
|
+
}, props)
|
|
4567
|
+
);
|
|
4568
|
+
});
|
|
4569
|
+
CommandList.displayName = CommandPrimitive.List.displayName;
|
|
4570
|
+
var CommandEmpty = React6.forwardRef((_a, ref) => {
|
|
4571
|
+
var _b = _a, { children, title, description } = _b, props = __objRest(_b, ["children", "title", "description"]);
|
|
4572
|
+
return /* @__PURE__ */ jsxs73(
|
|
4573
|
+
CommandPrimitive.Empty,
|
|
4574
|
+
__spreadProps(__spreadValues({
|
|
4575
|
+
ref,
|
|
4576
|
+
className: "flex flex-col gap-4 p-4 text-center"
|
|
4577
|
+
}, props), {
|
|
4578
|
+
children: [
|
|
4579
|
+
(title || description) && /* @__PURE__ */ jsxs73("div", { className: "flex flex-col gap-1", children: [
|
|
4580
|
+
title && /* @__PURE__ */ jsx102("span", { className: "text-sm font-medium text-gray-1000", children: title }),
|
|
4581
|
+
description && /* @__PURE__ */ jsx102("span", { className: "text-sm font-normal text-gray-700", children: description })
|
|
4582
|
+
] }),
|
|
4583
|
+
children && /* @__PURE__ */ jsx102("div", { children })
|
|
4584
|
+
]
|
|
4585
|
+
})
|
|
4586
|
+
);
|
|
4587
|
+
});
|
|
4588
|
+
CommandEmpty.displayName = CommandPrimitive.Empty.displayName;
|
|
4589
|
+
var CommandLoading = React6.forwardRef((_a, ref) => {
|
|
4590
|
+
var _b = _a, { children } = _b, props = __objRest(_b, ["children"]);
|
|
4591
|
+
return /* @__PURE__ */ jsx102(CommandPrimitive.Loading, __spreadProps(__spreadValues({ ref }, props), { children: /* @__PURE__ */ jsx102("div", { className: "flex justify-center p-4 text-center", children: /* @__PURE__ */ jsx102(SpinnerIcon, { className: "text-blue-700 animate-spin" }) }) }));
|
|
4592
|
+
});
|
|
4593
|
+
CommandLoading.displayName = CommandPrimitive.Loading.displayName;
|
|
4594
|
+
var CommandGroup = React6.forwardRef((_a, ref) => {
|
|
4595
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4596
|
+
return /* @__PURE__ */ jsx102(
|
|
4597
|
+
CommandPrimitive.Group,
|
|
4598
|
+
__spreadValues({
|
|
4599
|
+
ref,
|
|
4600
|
+
className: cn(
|
|
4601
|
+
"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",
|
|
4602
|
+
className
|
|
4603
|
+
)
|
|
4604
|
+
}, props)
|
|
4605
|
+
);
|
|
4606
|
+
});
|
|
4607
|
+
CommandGroup.displayName = CommandPrimitive.Group.displayName;
|
|
4608
|
+
var CommandSeparator = React6.forwardRef((_a, ref) => {
|
|
4609
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4610
|
+
return /* @__PURE__ */ jsx102(
|
|
4611
|
+
CommandPrimitive.Separator,
|
|
4612
|
+
__spreadValues({
|
|
4613
|
+
ref,
|
|
4614
|
+
className: cn("-mx-1 h-px bg-border", className)
|
|
4615
|
+
}, props)
|
|
4616
|
+
);
|
|
4617
|
+
});
|
|
4618
|
+
CommandSeparator.displayName = CommandPrimitive.Separator.displayName;
|
|
4619
|
+
var CommandItem = React6.forwardRef(
|
|
4620
|
+
(_a, ref) => {
|
|
4621
|
+
var _b = _a, { icon, checkbox, className, checked, children, description } = _b, props = __objRest(_b, ["icon", "checkbox", "className", "checked", "children", "description"]);
|
|
4622
|
+
return /* @__PURE__ */ jsxs73(
|
|
4623
|
+
CommandPrimitive.Item,
|
|
4624
|
+
__spreadProps(__spreadValues({
|
|
4625
|
+
ref,
|
|
4626
|
+
className: cn(
|
|
4627
|
+
"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",
|
|
4628
|
+
className
|
|
4629
|
+
)
|
|
4630
|
+
}, props), {
|
|
4631
|
+
children: [
|
|
4632
|
+
/* @__PURE__ */ jsxs73("div", { className: "flex items-center gap-2", children: [
|
|
4633
|
+
checkbox && /* @__PURE__ */ jsx102(Checkbox, { checked }),
|
|
4634
|
+
icon && React6.cloneElement(icon, {
|
|
4635
|
+
size: 16,
|
|
4636
|
+
className: cn("flex-shrink-0", icon.props.className)
|
|
4637
|
+
}),
|
|
4638
|
+
children
|
|
4639
|
+
] }),
|
|
4640
|
+
description && /* @__PURE__ */ jsx102("div", { className: "text-xs text-gray-700", children: description })
|
|
4641
|
+
]
|
|
4642
|
+
})
|
|
4643
|
+
);
|
|
4644
|
+
}
|
|
4645
|
+
);
|
|
4646
|
+
CommandItem.displayName = CommandPrimitive.Item.displayName;
|
|
4647
|
+
|
|
4648
|
+
// src/components/Dialog/Dialog.tsx
|
|
4649
|
+
import * as React7 from "react";
|
|
4146
4650
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
4147
|
-
import { jsx as
|
|
4651
|
+
import { jsx as jsx103, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4148
4652
|
var Dialog = DialogPrimitive.Root;
|
|
4149
4653
|
var DialogTrigger = DialogPrimitive.Trigger;
|
|
4150
4654
|
var DialogPortal = (_a) => {
|
|
@@ -4153,12 +4657,12 @@ var DialogPortal = (_a) => {
|
|
|
4153
4657
|
} = _b, props = __objRest(_b, [
|
|
4154
4658
|
"className"
|
|
4155
4659
|
]);
|
|
4156
|
-
return /* @__PURE__ */
|
|
4660
|
+
return /* @__PURE__ */ jsx103(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
|
|
4157
4661
|
};
|
|
4158
4662
|
DialogPortal.displayName = DialogPrimitive.Portal.displayName;
|
|
4159
|
-
var DialogOverlay =
|
|
4663
|
+
var DialogOverlay = React7.forwardRef((_a, ref) => {
|
|
4160
4664
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4161
|
-
return /* @__PURE__ */
|
|
4665
|
+
return /* @__PURE__ */ jsx103(
|
|
4162
4666
|
DialogPrimitive.Overlay,
|
|
4163
4667
|
__spreadValues({
|
|
4164
4668
|
ref,
|
|
@@ -4170,11 +4674,11 @@ var DialogOverlay = React6.forwardRef((_a, ref) => {
|
|
|
4170
4674
|
);
|
|
4171
4675
|
});
|
|
4172
4676
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
4173
|
-
var DialogContent =
|
|
4677
|
+
var DialogContent = React7.forwardRef((_a, ref) => {
|
|
4174
4678
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4175
|
-
return /* @__PURE__ */
|
|
4176
|
-
/* @__PURE__ */
|
|
4177
|
-
/* @__PURE__ */
|
|
4679
|
+
return /* @__PURE__ */ jsxs74(DialogPortal, { children: [
|
|
4680
|
+
/* @__PURE__ */ jsx103(DialogOverlay, {}),
|
|
4681
|
+
/* @__PURE__ */ jsxs74(
|
|
4178
4682
|
DialogPrimitive.Content,
|
|
4179
4683
|
__spreadProps(__spreadValues({
|
|
4180
4684
|
ref,
|
|
@@ -4185,7 +4689,7 @@ var DialogContent = React6.forwardRef((_a, ref) => {
|
|
|
4185
4689
|
}, props), {
|
|
4186
4690
|
children: [
|
|
4187
4691
|
children,
|
|
4188
|
-
/* @__PURE__ */
|
|
4692
|
+
/* @__PURE__ */ jsxs74(
|
|
4189
4693
|
DialogPrimitive.Close,
|
|
4190
4694
|
{
|
|
4191
4695
|
className: cn(
|
|
@@ -4194,8 +4698,8 @@ var DialogContent = React6.forwardRef((_a, ref) => {
|
|
|
4194
4698
|
"absolute right-6 top-6"
|
|
4195
4699
|
),
|
|
4196
4700
|
children: [
|
|
4197
|
-
/* @__PURE__ */
|
|
4198
|
-
/* @__PURE__ */
|
|
4701
|
+
/* @__PURE__ */ jsx103(XCloseIcon, { className: "h-3 w-3" }),
|
|
4702
|
+
/* @__PURE__ */ jsx103("span", { className: "sr-only", children: "Close" })
|
|
4199
4703
|
]
|
|
4200
4704
|
}
|
|
4201
4705
|
)
|
|
@@ -4211,7 +4715,7 @@ var DialogHeader = (_a) => {
|
|
|
4211
4715
|
} = _b, props = __objRest(_b, [
|
|
4212
4716
|
"className"
|
|
4213
4717
|
]);
|
|
4214
|
-
return /* @__PURE__ */
|
|
4718
|
+
return /* @__PURE__ */ jsx103(
|
|
4215
4719
|
"div",
|
|
4216
4720
|
__spreadValues({
|
|
4217
4721
|
className: cn(
|
|
@@ -4228,7 +4732,7 @@ var DialogFooter = (_a) => {
|
|
|
4228
4732
|
} = _b, props = __objRest(_b, [
|
|
4229
4733
|
"className"
|
|
4230
4734
|
]);
|
|
4231
|
-
return /* @__PURE__ */
|
|
4735
|
+
return /* @__PURE__ */ jsx103(
|
|
4232
4736
|
"div",
|
|
4233
4737
|
__spreadValues({
|
|
4234
4738
|
className: cn(
|
|
@@ -4239,9 +4743,9 @@ var DialogFooter = (_a) => {
|
|
|
4239
4743
|
);
|
|
4240
4744
|
};
|
|
4241
4745
|
DialogFooter.displayName = "DialogFooter";
|
|
4242
|
-
var DialogTitle =
|
|
4746
|
+
var DialogTitle = React7.forwardRef((_a, ref) => {
|
|
4243
4747
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4244
|
-
return /* @__PURE__ */
|
|
4748
|
+
return /* @__PURE__ */ jsx103(
|
|
4245
4749
|
DialogPrimitive.Title,
|
|
4246
4750
|
__spreadValues({
|
|
4247
4751
|
ref,
|
|
@@ -4250,9 +4754,9 @@ var DialogTitle = React6.forwardRef((_a, ref) => {
|
|
|
4250
4754
|
);
|
|
4251
4755
|
});
|
|
4252
4756
|
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
4253
|
-
var DialogDescription =
|
|
4757
|
+
var DialogDescription = React7.forwardRef((_a, ref) => {
|
|
4254
4758
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4255
|
-
return /* @__PURE__ */
|
|
4759
|
+
return /* @__PURE__ */ jsx103(
|
|
4256
4760
|
DialogPrimitive.Description,
|
|
4257
4761
|
__spreadValues({
|
|
4258
4762
|
ref,
|
|
@@ -4263,9 +4767,9 @@ var DialogDescription = React6.forwardRef((_a, ref) => {
|
|
|
4263
4767
|
DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
|
4264
4768
|
|
|
4265
4769
|
// src/components/DropdownMenu/DropdownMenu.tsx
|
|
4770
|
+
import React8 from "react";
|
|
4266
4771
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
4267
|
-
import
|
|
4268
|
-
import { jsx as jsx97, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4772
|
+
import { jsx as jsx104, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4269
4773
|
var DropdownMenu = DropdownMenuPrimitive.Root;
|
|
4270
4774
|
var DropdownMenuItemBase = ({
|
|
4271
4775
|
icon,
|
|
@@ -4277,7 +4781,7 @@ var DropdownMenuItemBase = ({
|
|
|
4277
4781
|
description,
|
|
4278
4782
|
hasSubNav
|
|
4279
4783
|
}) => {
|
|
4280
|
-
return /* @__PURE__ */
|
|
4784
|
+
return /* @__PURE__ */ jsxs75(
|
|
4281
4785
|
"div",
|
|
4282
4786
|
{
|
|
4283
4787
|
className: cn(
|
|
@@ -4286,9 +4790,9 @@ var DropdownMenuItemBase = ({
|
|
|
4286
4790
|
className
|
|
4287
4791
|
),
|
|
4288
4792
|
children: [
|
|
4289
|
-
/* @__PURE__ */
|
|
4290
|
-
checkbox && /* @__PURE__ */
|
|
4291
|
-
icon &&
|
|
4793
|
+
/* @__PURE__ */ jsxs75("div", { className: "flex items-center gap-2", children: [
|
|
4794
|
+
checkbox && /* @__PURE__ */ jsx104(Checkbox, { checked }),
|
|
4795
|
+
icon && React8.cloneElement(icon, {
|
|
4292
4796
|
size: 16,
|
|
4293
4797
|
className: cn(
|
|
4294
4798
|
"flex-shrink-0",
|
|
@@ -4296,15 +4800,15 @@ var DropdownMenuItemBase = ({
|
|
|
4296
4800
|
icon.props.className
|
|
4297
4801
|
)
|
|
4298
4802
|
}),
|
|
4299
|
-
children,
|
|
4300
|
-
hasSubNav && /* @__PURE__ */
|
|
4803
|
+
/* @__PURE__ */ jsx104("span", { className: "flex gap-2 grow", children }),
|
|
4804
|
+
hasSubNav && /* @__PURE__ */ jsx104("div", { className: "inline-flex items-center justify-end", children: /* @__PURE__ */ jsx104(ChevronRightIcon, { size: 16, className: "text-gray-1000" }) })
|
|
4301
4805
|
] }),
|
|
4302
|
-
description && /* @__PURE__ */
|
|
4806
|
+
description && /* @__PURE__ */ jsx104("div", { className: "text-xs text-gray-700", children: description })
|
|
4303
4807
|
]
|
|
4304
4808
|
}
|
|
4305
4809
|
);
|
|
4306
4810
|
};
|
|
4307
|
-
var DropdownMenuCheckboxItem =
|
|
4811
|
+
var DropdownMenuCheckboxItem = React8.forwardRef(
|
|
4308
4812
|
(_a, forwardedRef) => {
|
|
4309
4813
|
var _b = _a, { className, children, checked, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "checked", "icon", "description", "destructive"]);
|
|
4310
4814
|
const extraProps = {
|
|
@@ -4314,20 +4818,20 @@ var DropdownMenuCheckboxItem = React7.forwardRef(
|
|
|
4314
4818
|
checked,
|
|
4315
4819
|
className
|
|
4316
4820
|
};
|
|
4317
|
-
return /* @__PURE__ */
|
|
4821
|
+
return /* @__PURE__ */ jsx104(
|
|
4318
4822
|
DropdownMenuPrimitive.CheckboxItem,
|
|
4319
4823
|
__spreadProps(__spreadValues({
|
|
4320
4824
|
checked
|
|
4321
4825
|
}, props), {
|
|
4322
4826
|
ref: forwardedRef,
|
|
4323
4827
|
className: "outline-none select-none group",
|
|
4324
|
-
children: /* @__PURE__ */
|
|
4828
|
+
children: /* @__PURE__ */ jsx104(DropdownMenuItemBase, __spreadProps(__spreadValues({ checkbox: true }, extraProps), { children }))
|
|
4325
4829
|
})
|
|
4326
4830
|
);
|
|
4327
4831
|
}
|
|
4328
4832
|
);
|
|
4329
4833
|
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
|
|
4330
|
-
var DropdownMenuContent =
|
|
4834
|
+
var DropdownMenuContent = React8.forwardRef(
|
|
4331
4835
|
(_a, forwardedRef) => {
|
|
4332
4836
|
var _b = _a, {
|
|
4333
4837
|
children,
|
|
@@ -4342,7 +4846,7 @@ var DropdownMenuContent = React7.forwardRef(
|
|
|
4342
4846
|
"sideOffset",
|
|
4343
4847
|
"align"
|
|
4344
4848
|
]);
|
|
4345
|
-
return /* @__PURE__ */
|
|
4849
|
+
return /* @__PURE__ */ jsx104(
|
|
4346
4850
|
DropdownMenuPrimitive.Content,
|
|
4347
4851
|
__spreadProps(__spreadValues({
|
|
4348
4852
|
className: cn(
|
|
@@ -4361,7 +4865,7 @@ var DropdownMenuContent = React7.forwardRef(
|
|
|
4361
4865
|
);
|
|
4362
4866
|
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
|
|
4363
4867
|
var DropdownMenuGroup = DropdownMenuPrimitive.Group;
|
|
4364
|
-
var DropdownMenuItem =
|
|
4868
|
+
var DropdownMenuItem = React8.forwardRef(
|
|
4365
4869
|
(_a, forwardedRef) => {
|
|
4366
4870
|
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4367
4871
|
const extraProps = {
|
|
@@ -4370,20 +4874,20 @@ var DropdownMenuItem = React7.forwardRef(
|
|
|
4370
4874
|
icon,
|
|
4371
4875
|
className
|
|
4372
4876
|
};
|
|
4373
|
-
return /* @__PURE__ */
|
|
4877
|
+
return /* @__PURE__ */ jsx104(
|
|
4374
4878
|
DropdownMenuPrimitive.Item,
|
|
4375
4879
|
__spreadProps(__spreadValues({}, props), {
|
|
4376
4880
|
ref: forwardedRef,
|
|
4377
4881
|
className: "outline-none select-none group",
|
|
4378
|
-
children: /* @__PURE__ */
|
|
4882
|
+
children: /* @__PURE__ */ jsx104(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
4379
4883
|
})
|
|
4380
4884
|
);
|
|
4381
4885
|
}
|
|
4382
4886
|
);
|
|
4383
4887
|
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
|
|
4384
|
-
var DropdownMenuLabel =
|
|
4888
|
+
var DropdownMenuLabel = React8.forwardRef((_a, forwardedRef) => {
|
|
4385
4889
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4386
|
-
return /* @__PURE__ */
|
|
4890
|
+
return /* @__PURE__ */ jsx104(
|
|
4387
4891
|
DropdownMenuPrimitive.Label,
|
|
4388
4892
|
__spreadProps(__spreadValues({
|
|
4389
4893
|
className: cn(
|
|
@@ -4398,7 +4902,7 @@ var DropdownMenuLabel = React7.forwardRef((_a, forwardedRef) => {
|
|
|
4398
4902
|
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
|
|
4399
4903
|
var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
|
|
4400
4904
|
var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
|
|
4401
|
-
var DropdownMenuRadioItem =
|
|
4905
|
+
var DropdownMenuRadioItem = React8.forwardRef(
|
|
4402
4906
|
(_a, forwardedRef) => {
|
|
4403
4907
|
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4404
4908
|
const extraProps = {
|
|
@@ -4407,20 +4911,20 @@ var DropdownMenuRadioItem = React7.forwardRef(
|
|
|
4407
4911
|
icon,
|
|
4408
4912
|
className
|
|
4409
4913
|
};
|
|
4410
|
-
return /* @__PURE__ */
|
|
4914
|
+
return /* @__PURE__ */ jsx104(
|
|
4411
4915
|
DropdownMenuPrimitive.RadioItem,
|
|
4412
4916
|
__spreadProps(__spreadValues({}, props), {
|
|
4413
4917
|
ref: forwardedRef,
|
|
4414
4918
|
className: "outline-none select-none group",
|
|
4415
|
-
children: /* @__PURE__ */
|
|
4919
|
+
children: /* @__PURE__ */ jsx104(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
4416
4920
|
})
|
|
4417
4921
|
);
|
|
4418
4922
|
}
|
|
4419
4923
|
);
|
|
4420
4924
|
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
|
|
4421
|
-
var DropdownMenuSeparator =
|
|
4925
|
+
var DropdownMenuSeparator = React8.forwardRef((_a, forwardedRef) => {
|
|
4422
4926
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4423
|
-
return /* @__PURE__ */
|
|
4927
|
+
return /* @__PURE__ */ jsx104(
|
|
4424
4928
|
DropdownMenuPrimitive.Separator,
|
|
4425
4929
|
__spreadProps(__spreadValues({
|
|
4426
4930
|
className: cn("my-1 border-b border-gray-200", className)
|
|
@@ -4431,9 +4935,9 @@ var DropdownMenuSeparator = React7.forwardRef((_a, forwardedRef) => {
|
|
|
4431
4935
|
});
|
|
4432
4936
|
DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName;
|
|
4433
4937
|
var DropdownMenuSub = DropdownMenuPrimitive.Sub;
|
|
4434
|
-
var DropdownMenuSubContent =
|
|
4938
|
+
var DropdownMenuSubContent = React8.forwardRef((_a, forwardedRef) => {
|
|
4435
4939
|
var _b = _a, { children, className, sideOffset = 8 } = _b, props = __objRest(_b, ["children", "className", "sideOffset"]);
|
|
4436
|
-
return /* @__PURE__ */
|
|
4940
|
+
return /* @__PURE__ */ jsx104(
|
|
4437
4941
|
DropdownMenuPrimitive.SubContent,
|
|
4438
4942
|
__spreadProps(__spreadValues({
|
|
4439
4943
|
className: cn(
|
|
@@ -4448,7 +4952,7 @@ var DropdownMenuSubContent = React7.forwardRef((_a, forwardedRef) => {
|
|
|
4448
4952
|
);
|
|
4449
4953
|
});
|
|
4450
4954
|
DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
|
|
4451
|
-
var DropdownMenuSubTrigger =
|
|
4955
|
+
var DropdownMenuSubTrigger = React8.forwardRef(
|
|
4452
4956
|
(_a, forwardedRef) => {
|
|
4453
4957
|
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4454
4958
|
const extraProps = {
|
|
@@ -4457,12 +4961,12 @@ var DropdownMenuSubTrigger = React7.forwardRef(
|
|
|
4457
4961
|
icon,
|
|
4458
4962
|
className
|
|
4459
4963
|
};
|
|
4460
|
-
return /* @__PURE__ */
|
|
4964
|
+
return /* @__PURE__ */ jsx104(
|
|
4461
4965
|
DropdownMenuPrimitive.SubTrigger,
|
|
4462
4966
|
__spreadProps(__spreadValues({}, props), {
|
|
4463
4967
|
ref: forwardedRef,
|
|
4464
4968
|
className: "outline-none select-none group",
|
|
4465
|
-
children: /* @__PURE__ */
|
|
4969
|
+
children: /* @__PURE__ */ jsx104(DropdownMenuItemBase, __spreadProps(__spreadValues({ hasSubNav: true }, extraProps), { children }))
|
|
4466
4970
|
})
|
|
4467
4971
|
);
|
|
4468
4972
|
}
|
|
@@ -4470,8 +4974,25 @@ var DropdownMenuSubTrigger = React7.forwardRef(
|
|
|
4470
4974
|
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
|
|
4471
4975
|
var DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
|
|
4472
4976
|
|
|
4977
|
+
// src/components/FilterButton/FilterButton.tsx
|
|
4978
|
+
import React9 from "react";
|
|
4979
|
+
import { Fragment, jsx as jsx105, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
4980
|
+
var FilterButton = React9.forwardRef(
|
|
4981
|
+
(_a, ref) => {
|
|
4982
|
+
var _b = _a, { selectedCount, children, size = "sm", variant = "outline" } = _b, props = __objRest(_b, ["selectedCount", "children", "size", "variant"]);
|
|
4983
|
+
return /* @__PURE__ */ jsxs76(Button, __spreadProps(__spreadValues({ ref, variant, size }, props), { children: [
|
|
4984
|
+
children,
|
|
4985
|
+
selectedCount !== void 0 && selectedCount > 0 && /* @__PURE__ */ jsxs76(Fragment, { children: [
|
|
4986
|
+
/* @__PURE__ */ jsx105("span", { className: "h-4 border-l border-gray-200" }),
|
|
4987
|
+
/* @__PURE__ */ jsx105(Badge, { variant: "fill", color: "blue", children: selectedCount })
|
|
4988
|
+
] })
|
|
4989
|
+
] }));
|
|
4990
|
+
}
|
|
4991
|
+
);
|
|
4992
|
+
FilterButton.displayName = "FilterButton";
|
|
4993
|
+
|
|
4473
4994
|
// src/components/Form/Form.tsx
|
|
4474
|
-
import * as
|
|
4995
|
+
import * as React11 from "react";
|
|
4475
4996
|
import { Slot as Slot2 } from "@radix-ui/react-slot";
|
|
4476
4997
|
import {
|
|
4477
4998
|
Controller,
|
|
@@ -4480,12 +5001,12 @@ import {
|
|
|
4480
5001
|
} from "react-hook-form";
|
|
4481
5002
|
|
|
4482
5003
|
// src/components/Label/Label.tsx
|
|
4483
|
-
import * as
|
|
5004
|
+
import * as React10 from "react";
|
|
4484
5005
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
4485
|
-
import { jsx as
|
|
4486
|
-
var Label2 =
|
|
5006
|
+
import { jsx as jsx106 } from "react/jsx-runtime";
|
|
5007
|
+
var Label2 = React10.forwardRef((_a, ref) => {
|
|
4487
5008
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4488
|
-
return /* @__PURE__ */
|
|
5009
|
+
return /* @__PURE__ */ jsx106(
|
|
4489
5010
|
LabelPrimitive.Root,
|
|
4490
5011
|
__spreadValues({
|
|
4491
5012
|
ref,
|
|
@@ -4499,24 +5020,24 @@ var Label2 = React8.forwardRef((_a, ref) => {
|
|
|
4499
5020
|
Label2.displayName = LabelPrimitive.Root.displayName;
|
|
4500
5021
|
|
|
4501
5022
|
// src/components/Form/Form.tsx
|
|
4502
|
-
import { jsx as
|
|
5023
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
4503
5024
|
var Form = FormProvider;
|
|
4504
|
-
var FormFieldContext =
|
|
5025
|
+
var FormFieldContext = React11.createContext(
|
|
4505
5026
|
{}
|
|
4506
5027
|
);
|
|
4507
5028
|
var FormField = (_a) => {
|
|
4508
5029
|
var props = __objRest(_a, []);
|
|
4509
|
-
return /* @__PURE__ */
|
|
5030
|
+
return /* @__PURE__ */ jsx107(
|
|
4510
5031
|
FormFieldContext.Provider,
|
|
4511
5032
|
{
|
|
4512
5033
|
value: { name: props.name, isDisabled: props.disabled },
|
|
4513
|
-
children: /* @__PURE__ */
|
|
5034
|
+
children: /* @__PURE__ */ jsx107(Controller, __spreadValues({}, props))
|
|
4514
5035
|
}
|
|
4515
5036
|
);
|
|
4516
5037
|
};
|
|
4517
5038
|
var useFormField = () => {
|
|
4518
|
-
const fieldContext =
|
|
4519
|
-
const itemContext =
|
|
5039
|
+
const fieldContext = React11.useContext(FormFieldContext);
|
|
5040
|
+
const itemContext = React11.useContext(FormItemContext);
|
|
4520
5041
|
const { getFieldState, formState } = useFormContext();
|
|
4521
5042
|
const fieldState = getFieldState(fieldContext.name, formState);
|
|
4522
5043
|
if (!fieldContext) {
|
|
@@ -4532,13 +5053,13 @@ var useFormField = () => {
|
|
|
4532
5053
|
formMessageId: `${id}-form-item-message`
|
|
4533
5054
|
}, fieldState);
|
|
4534
5055
|
};
|
|
4535
|
-
var FormItemContext =
|
|
5056
|
+
var FormItemContext = React11.createContext(
|
|
4536
5057
|
{}
|
|
4537
5058
|
);
|
|
4538
|
-
var FormItem =
|
|
5059
|
+
var FormItem = React11.forwardRef((_a, ref) => {
|
|
4539
5060
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4540
|
-
const id =
|
|
4541
|
-
return /* @__PURE__ */
|
|
5061
|
+
const id = React11.useId();
|
|
5062
|
+
return /* @__PURE__ */ jsx107(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ jsx107(
|
|
4542
5063
|
"div",
|
|
4543
5064
|
__spreadValues({
|
|
4544
5065
|
ref,
|
|
@@ -4547,10 +5068,10 @@ var FormItem = React9.forwardRef((_a, ref) => {
|
|
|
4547
5068
|
) });
|
|
4548
5069
|
});
|
|
4549
5070
|
FormItem.displayName = "FormItem";
|
|
4550
|
-
var FormLabel =
|
|
5071
|
+
var FormLabel = React11.forwardRef((_a, ref) => {
|
|
4551
5072
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4552
5073
|
const { isDisabled, formItemId } = useFormField();
|
|
4553
|
-
return /* @__PURE__ */
|
|
5074
|
+
return /* @__PURE__ */ jsx107(
|
|
4554
5075
|
Label2,
|
|
4555
5076
|
__spreadValues({
|
|
4556
5077
|
ref,
|
|
@@ -4560,10 +5081,10 @@ var FormLabel = React9.forwardRef((_a, ref) => {
|
|
|
4560
5081
|
);
|
|
4561
5082
|
});
|
|
4562
5083
|
FormLabel.displayName = "FormLabel";
|
|
4563
|
-
var FormControl =
|
|
5084
|
+
var FormControl = React11.forwardRef((_a, ref) => {
|
|
4564
5085
|
var props = __objRest(_a, []);
|
|
4565
5086
|
const { error, isDisabled, formItemId, formDescriptionId, formMessageId } = useFormField();
|
|
4566
|
-
return /* @__PURE__ */
|
|
5087
|
+
return /* @__PURE__ */ jsx107(
|
|
4567
5088
|
Slot2,
|
|
4568
5089
|
__spreadValues({
|
|
4569
5090
|
ref,
|
|
@@ -4576,10 +5097,10 @@ var FormControl = React9.forwardRef((_a, ref) => {
|
|
|
4576
5097
|
);
|
|
4577
5098
|
});
|
|
4578
5099
|
FormControl.displayName = "FormControl";
|
|
4579
|
-
var FormDescription =
|
|
5100
|
+
var FormDescription = React11.forwardRef((_a, ref) => {
|
|
4580
5101
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4581
5102
|
const { formDescriptionId, isDisabled } = useFormField();
|
|
4582
|
-
return /* @__PURE__ */
|
|
5103
|
+
return /* @__PURE__ */ jsx107(
|
|
4583
5104
|
"p",
|
|
4584
5105
|
__spreadValues({
|
|
4585
5106
|
ref,
|
|
@@ -4593,12 +5114,12 @@ var FormDescription = React9.forwardRef((_a, ref) => {
|
|
|
4593
5114
|
);
|
|
4594
5115
|
});
|
|
4595
5116
|
FormDescription.displayName = "FormDescription";
|
|
4596
|
-
var FormMessage =
|
|
5117
|
+
var FormMessage = React11.forwardRef((_a, ref) => {
|
|
4597
5118
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4598
5119
|
const { error, isDisabled, formMessageId } = useFormField();
|
|
4599
5120
|
const body = error ? String(error == null ? void 0 : error.message) : children;
|
|
4600
5121
|
const textColorClassName = error ? "text-red-700" : "text-gray-700";
|
|
4601
|
-
return /* @__PURE__ */
|
|
5122
|
+
return /* @__PURE__ */ jsx107(
|
|
4602
5123
|
"p",
|
|
4603
5124
|
__spreadProps(__spreadValues({
|
|
4604
5125
|
ref,
|
|
@@ -4617,10 +5138,10 @@ var FormMessage = React9.forwardRef((_a, ref) => {
|
|
|
4617
5138
|
FormMessage.displayName = "FormMessage";
|
|
4618
5139
|
|
|
4619
5140
|
// src/components/Input/Input.tsx
|
|
4620
|
-
import * as
|
|
5141
|
+
import * as React12 from "react";
|
|
4621
5142
|
import { Slot as Slot3 } from "@radix-ui/react-slot";
|
|
4622
|
-
import { jsx as
|
|
4623
|
-
var Input =
|
|
5143
|
+
import { jsx as jsx108, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
5144
|
+
var Input = React12.forwardRef(
|
|
4624
5145
|
(_a, ref) => {
|
|
4625
5146
|
var _b = _a, {
|
|
4626
5147
|
className,
|
|
@@ -4638,8 +5159,8 @@ var Input = React10.forwardRef(
|
|
|
4638
5159
|
"suffixEnchancer"
|
|
4639
5160
|
]);
|
|
4640
5161
|
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
4641
|
-
return /* @__PURE__ */
|
|
4642
|
-
/* @__PURE__ */
|
|
5162
|
+
return /* @__PURE__ */ jsxs77("div", { className: "flex gap-2", children: [
|
|
5163
|
+
/* @__PURE__ */ jsxs77(
|
|
4643
5164
|
"div",
|
|
4644
5165
|
{
|
|
4645
5166
|
className: cn(
|
|
@@ -4651,7 +5172,7 @@ var Input = React10.forwardRef(
|
|
|
4651
5172
|
className
|
|
4652
5173
|
),
|
|
4653
5174
|
children: [
|
|
4654
|
-
prefixEnchancer && /* @__PURE__ */
|
|
5175
|
+
prefixEnchancer && /* @__PURE__ */ jsx108(
|
|
4655
5176
|
Slot3,
|
|
4656
5177
|
{
|
|
4657
5178
|
className: cn(
|
|
@@ -4661,7 +5182,7 @@ var Input = React10.forwardRef(
|
|
|
4661
5182
|
children: prefixEnchancer
|
|
4662
5183
|
}
|
|
4663
5184
|
),
|
|
4664
|
-
/* @__PURE__ */
|
|
5185
|
+
/* @__PURE__ */ jsx108(
|
|
4665
5186
|
"input",
|
|
4666
5187
|
__spreadProps(__spreadValues({}, props), {
|
|
4667
5188
|
disabled: isDisabled,
|
|
@@ -4670,7 +5191,7 @@ var Input = React10.forwardRef(
|
|
|
4670
5191
|
ref
|
|
4671
5192
|
})
|
|
4672
5193
|
),
|
|
4673
|
-
suffixEnchancer && /* @__PURE__ */
|
|
5194
|
+
suffixEnchancer && /* @__PURE__ */ jsx108(
|
|
4674
5195
|
Slot3,
|
|
4675
5196
|
{
|
|
4676
5197
|
className: cn(
|
|
@@ -4683,7 +5204,7 @@ var Input = React10.forwardRef(
|
|
|
4683
5204
|
]
|
|
4684
5205
|
}
|
|
4685
5206
|
),
|
|
4686
|
-
button &&
|
|
5207
|
+
button && React12.cloneElement(button, {
|
|
4687
5208
|
size: "sm",
|
|
4688
5209
|
disabled: isDisabled,
|
|
4689
5210
|
className: cn("flex-shrink-0", button.props.className)
|
|
@@ -4693,15 +5214,86 @@ var Input = React10.forwardRef(
|
|
|
4693
5214
|
);
|
|
4694
5215
|
Input.displayName = "Input";
|
|
4695
5216
|
|
|
5217
|
+
// src/components/Pagination/Pagination.tsx
|
|
5218
|
+
import { jsx as jsx109, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
5219
|
+
var PaginationPageChoice = /* @__PURE__ */ ((PaginationPageChoice2) => {
|
|
5220
|
+
PaginationPageChoice2["FIRST"] = "FIRST";
|
|
5221
|
+
PaginationPageChoice2["PREVIOUS"] = "PREVIOUS";
|
|
5222
|
+
PaginationPageChoice2["NEXT"] = "NEXT";
|
|
5223
|
+
PaginationPageChoice2["LAST"] = "LAST";
|
|
5224
|
+
return PaginationPageChoice2;
|
|
5225
|
+
})(PaginationPageChoice || {});
|
|
5226
|
+
var Pagination = ({
|
|
5227
|
+
totalRowsCaption,
|
|
5228
|
+
nextPageAvailable,
|
|
5229
|
+
previousPageAvailable,
|
|
5230
|
+
currentPageCation,
|
|
5231
|
+
onPageChange,
|
|
5232
|
+
className
|
|
5233
|
+
}) => {
|
|
5234
|
+
return /* @__PURE__ */ jsxs78("div", { className: cn("flex items-center justify-between px-2", className), children: [
|
|
5235
|
+
totalRowsCaption && /* @__PURE__ */ jsx109("div", { className: "flex-1 text-sm text-gray-700", children: totalRowsCaption }),
|
|
5236
|
+
/* @__PURE__ */ jsxs78("div", { className: "flex items-center gap-4", children: [
|
|
5237
|
+
currentPageCation && /* @__PURE__ */ jsx109("div", { className: "flex items-center justify-center text-sm font-medium text-gray-1000", children: currentPageCation }),
|
|
5238
|
+
/* @__PURE__ */ jsxs78("div", { className: "flex items-center gap-2", children: [
|
|
5239
|
+
/* @__PURE__ */ jsx109(
|
|
5240
|
+
Button,
|
|
5241
|
+
{
|
|
5242
|
+
variant: "outline",
|
|
5243
|
+
icon: true,
|
|
5244
|
+
size: "sm",
|
|
5245
|
+
onClick: () => onPageChange("FIRST" /* FIRST */),
|
|
5246
|
+
disabled: !previousPageAvailable,
|
|
5247
|
+
children: /* @__PURE__ */ jsx109(ChevronLeftDoubleIcon, { size: "16" })
|
|
5248
|
+
}
|
|
5249
|
+
),
|
|
5250
|
+
/* @__PURE__ */ jsx109(
|
|
5251
|
+
Button,
|
|
5252
|
+
{
|
|
5253
|
+
variant: "outline",
|
|
5254
|
+
icon: true,
|
|
5255
|
+
size: "sm",
|
|
5256
|
+
onClick: () => onPageChange("PREVIOUS" /* PREVIOUS */),
|
|
5257
|
+
disabled: !previousPageAvailable,
|
|
5258
|
+
children: /* @__PURE__ */ jsx109(ChevronLeftIcon, { size: "16" })
|
|
5259
|
+
}
|
|
5260
|
+
),
|
|
5261
|
+
/* @__PURE__ */ jsx109(
|
|
5262
|
+
Button,
|
|
5263
|
+
{
|
|
5264
|
+
variant: "outline",
|
|
5265
|
+
icon: true,
|
|
5266
|
+
size: "sm",
|
|
5267
|
+
onClick: () => onPageChange("NEXT" /* NEXT */),
|
|
5268
|
+
disabled: !nextPageAvailable,
|
|
5269
|
+
children: /* @__PURE__ */ jsx109(ChevronRightIcon, { size: "16" })
|
|
5270
|
+
}
|
|
5271
|
+
),
|
|
5272
|
+
/* @__PURE__ */ jsx109(
|
|
5273
|
+
Button,
|
|
5274
|
+
{
|
|
5275
|
+
variant: "outline",
|
|
5276
|
+
icon: true,
|
|
5277
|
+
size: "sm",
|
|
5278
|
+
onClick: () => onPageChange("LAST" /* LAST */),
|
|
5279
|
+
disabled: !nextPageAvailable,
|
|
5280
|
+
children: /* @__PURE__ */ jsx109(ChevronRightDoubleIcon, { size: "16" })
|
|
5281
|
+
}
|
|
5282
|
+
)
|
|
5283
|
+
] })
|
|
5284
|
+
] })
|
|
5285
|
+
] });
|
|
5286
|
+
};
|
|
5287
|
+
|
|
4696
5288
|
// src/components/Popover/Popover.tsx
|
|
4697
|
-
import * as
|
|
5289
|
+
import * as React13 from "react";
|
|
4698
5290
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
4699
|
-
import { jsx as
|
|
5291
|
+
import { jsx as jsx110 } from "react/jsx-runtime";
|
|
4700
5292
|
var Popover = PopoverPrimitive.Root;
|
|
4701
5293
|
var PopoverTrigger = PopoverPrimitive.Trigger;
|
|
4702
|
-
var PopoverContent =
|
|
5294
|
+
var PopoverContent = React13.forwardRef((_a, ref) => {
|
|
4703
5295
|
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
4704
|
-
return /* @__PURE__ */
|
|
5296
|
+
return /* @__PURE__ */ jsx110(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx110(
|
|
4705
5297
|
PopoverPrimitive.Content,
|
|
4706
5298
|
__spreadValues({
|
|
4707
5299
|
ref,
|
|
@@ -4717,16 +5309,16 @@ var PopoverContent = React11.forwardRef((_a, ref) => {
|
|
|
4717
5309
|
PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
4718
5310
|
|
|
4719
5311
|
// src/components/Select/Select.tsx
|
|
4720
|
-
import * as
|
|
5312
|
+
import * as React14 from "react";
|
|
4721
5313
|
import * as SelectPrimitive from "@radix-ui/react-select";
|
|
4722
|
-
import { jsx as
|
|
5314
|
+
import { jsx as jsx111, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
4723
5315
|
var Select = SelectPrimitive.Root;
|
|
4724
5316
|
var SelectGroup = SelectPrimitive.Group;
|
|
4725
5317
|
var SelectValue = SelectPrimitive.Value;
|
|
4726
|
-
var SelectTrigger =
|
|
5318
|
+
var SelectTrigger = React14.forwardRef((_a, ref) => {
|
|
4727
5319
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4728
5320
|
const isDisabled = props["data-is-disabled"];
|
|
4729
|
-
return /* @__PURE__ */
|
|
5321
|
+
return /* @__PURE__ */ jsxs79(
|
|
4730
5322
|
SelectPrimitive.Trigger,
|
|
4731
5323
|
__spreadProps(__spreadValues({
|
|
4732
5324
|
ref,
|
|
@@ -4743,15 +5335,15 @@ var SelectTrigger = React12.forwardRef((_a, ref) => {
|
|
|
4743
5335
|
}, props), {
|
|
4744
5336
|
children: [
|
|
4745
5337
|
children,
|
|
4746
|
-
/* @__PURE__ */
|
|
5338
|
+
/* @__PURE__ */ jsx111(SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ jsx111(ChevronSelectorVerticalIcon, { size: "16", className: "w-4 h-4 opacity-50" }) })
|
|
4747
5339
|
]
|
|
4748
5340
|
})
|
|
4749
5341
|
);
|
|
4750
5342
|
});
|
|
4751
5343
|
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
|
|
4752
|
-
var SelectContent =
|
|
5344
|
+
var SelectContent = React14.forwardRef((_a, ref) => {
|
|
4753
5345
|
var _b = _a, { className, children, position = "popper" } = _b, props = __objRest(_b, ["className", "children", "position"]);
|
|
4754
|
-
return /* @__PURE__ */
|
|
5346
|
+
return /* @__PURE__ */ jsx111(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsx111(
|
|
4755
5347
|
SelectPrimitive.Content,
|
|
4756
5348
|
__spreadProps(__spreadValues({
|
|
4757
5349
|
ref,
|
|
@@ -4762,7 +5354,7 @@ var SelectContent = React12.forwardRef((_a, ref) => {
|
|
|
4762
5354
|
),
|
|
4763
5355
|
position
|
|
4764
5356
|
}, props), {
|
|
4765
|
-
children: /* @__PURE__ */
|
|
5357
|
+
children: /* @__PURE__ */ jsx111(
|
|
4766
5358
|
SelectPrimitive.Viewport,
|
|
4767
5359
|
{
|
|
4768
5360
|
className: cn(
|
|
@@ -4776,9 +5368,9 @@ var SelectContent = React12.forwardRef((_a, ref) => {
|
|
|
4776
5368
|
) });
|
|
4777
5369
|
});
|
|
4778
5370
|
SelectContent.displayName = SelectPrimitive.Content.displayName;
|
|
4779
|
-
var SelectLabel =
|
|
5371
|
+
var SelectLabel = React14.forwardRef((_a, ref) => {
|
|
4780
5372
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4781
|
-
return /* @__PURE__ */
|
|
5373
|
+
return /* @__PURE__ */ jsx111(
|
|
4782
5374
|
SelectPrimitive.Label,
|
|
4783
5375
|
__spreadValues({
|
|
4784
5376
|
ref,
|
|
@@ -4787,9 +5379,9 @@ var SelectLabel = React12.forwardRef((_a, ref) => {
|
|
|
4787
5379
|
);
|
|
4788
5380
|
});
|
|
4789
5381
|
SelectLabel.displayName = SelectPrimitive.Label.displayName;
|
|
4790
|
-
var SelectItem =
|
|
5382
|
+
var SelectItem = React14.forwardRef((_a, ref) => {
|
|
4791
5383
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4792
|
-
return /* @__PURE__ */
|
|
5384
|
+
return /* @__PURE__ */ jsx111(
|
|
4793
5385
|
SelectPrimitive.Item,
|
|
4794
5386
|
__spreadProps(__spreadValues({
|
|
4795
5387
|
ref,
|
|
@@ -4798,14 +5390,14 @@ var SelectItem = React12.forwardRef((_a, ref) => {
|
|
|
4798
5390
|
className
|
|
4799
5391
|
)
|
|
4800
5392
|
}, props), {
|
|
4801
|
-
children: /* @__PURE__ */
|
|
5393
|
+
children: /* @__PURE__ */ jsx111(SelectPrimitive.ItemText, { children })
|
|
4802
5394
|
})
|
|
4803
5395
|
);
|
|
4804
5396
|
});
|
|
4805
5397
|
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
|
4806
|
-
var SelectSeparator =
|
|
5398
|
+
var SelectSeparator = React14.forwardRef((_a, ref) => {
|
|
4807
5399
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4808
|
-
return /* @__PURE__ */
|
|
5400
|
+
return /* @__PURE__ */ jsx111(
|
|
4809
5401
|
SelectPrimitive.Separator,
|
|
4810
5402
|
__spreadValues({
|
|
4811
5403
|
ref,
|
|
@@ -4816,12 +5408,12 @@ var SelectSeparator = React12.forwardRef((_a, ref) => {
|
|
|
4816
5408
|
SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
4817
5409
|
|
|
4818
5410
|
// src/components/Switch/Switch.tsx
|
|
4819
|
-
import * as
|
|
5411
|
+
import * as React15 from "react";
|
|
4820
5412
|
import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
4821
|
-
import { jsx as
|
|
4822
|
-
var Switch =
|
|
5413
|
+
import { jsx as jsx112 } from "react/jsx-runtime";
|
|
5414
|
+
var Switch = React15.forwardRef((_a, ref) => {
|
|
4823
5415
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4824
|
-
return /* @__PURE__ */
|
|
5416
|
+
return /* @__PURE__ */ jsx112(
|
|
4825
5417
|
SwitchPrimitive.Root,
|
|
4826
5418
|
__spreadProps(__spreadValues({
|
|
4827
5419
|
className: cn(
|
|
@@ -4830,20 +5422,119 @@ var Switch = React13.forwardRef((_a, ref) => {
|
|
|
4830
5422
|
)
|
|
4831
5423
|
}, props), {
|
|
4832
5424
|
ref,
|
|
4833
|
-
children: /* @__PURE__ */
|
|
5425
|
+
children: /* @__PURE__ */ jsx112(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
5426
|
})
|
|
4835
5427
|
);
|
|
4836
5428
|
});
|
|
4837
5429
|
Switch.displayName = SwitchPrimitive.Root.displayName;
|
|
4838
5430
|
|
|
5431
|
+
// src/components/Table/Table.tsx
|
|
5432
|
+
import * as React16 from "react";
|
|
5433
|
+
import { jsx as jsx113, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
5434
|
+
var Table = React16.forwardRef((_a, ref) => {
|
|
5435
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5436
|
+
return /* @__PURE__ */ jsx113("div", { className: "w-full overflow-auto border rounded-lg", children: /* @__PURE__ */ jsx113(
|
|
5437
|
+
"table",
|
|
5438
|
+
__spreadValues({
|
|
5439
|
+
ref,
|
|
5440
|
+
className: cn("w-full caption-bottom text-xs", className)
|
|
5441
|
+
}, props)
|
|
5442
|
+
) });
|
|
5443
|
+
});
|
|
5444
|
+
Table.displayName = "Table";
|
|
5445
|
+
var TableHeader = React16.forwardRef((_a, ref) => {
|
|
5446
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5447
|
+
return /* @__PURE__ */ jsx113(
|
|
5448
|
+
"thead",
|
|
5449
|
+
__spreadValues({
|
|
5450
|
+
ref,
|
|
5451
|
+
className: cn("[&_tr]:border-b bg-gray-50 text-sm", className)
|
|
5452
|
+
}, props)
|
|
5453
|
+
);
|
|
5454
|
+
});
|
|
5455
|
+
TableHeader.displayName = "TableHeader";
|
|
5456
|
+
var TableBody = React16.forwardRef((_a, ref) => {
|
|
5457
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5458
|
+
return /* @__PURE__ */ jsx113(
|
|
5459
|
+
"tbody",
|
|
5460
|
+
__spreadValues({
|
|
5461
|
+
ref,
|
|
5462
|
+
className: cn(
|
|
5463
|
+
"[&_tr:last-child]:border-0 [&_tr:hover]:bg-gray-25 [&_tr:active]:bg-gray-50 [&_tr:hover:active]:bg-gray-50",
|
|
5464
|
+
className
|
|
5465
|
+
)
|
|
5466
|
+
}, props)
|
|
5467
|
+
);
|
|
5468
|
+
});
|
|
5469
|
+
TableBody.displayName = "TableBody";
|
|
5470
|
+
var TableRow = React16.forwardRef((_a, ref) => {
|
|
5471
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5472
|
+
return /* @__PURE__ */ jsx113(
|
|
5473
|
+
"tr",
|
|
5474
|
+
__spreadValues({
|
|
5475
|
+
ref,
|
|
5476
|
+
className: cn(
|
|
5477
|
+
"border-b transition-colors data-[state=selected]:bg-gray-50",
|
|
5478
|
+
className
|
|
5479
|
+
)
|
|
5480
|
+
}, props)
|
|
5481
|
+
);
|
|
5482
|
+
});
|
|
5483
|
+
TableRow.displayName = "TableRow";
|
|
5484
|
+
var TableHead = React16.forwardRef((_a, ref) => {
|
|
5485
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5486
|
+
return /* @__PURE__ */ jsx113(
|
|
5487
|
+
"th",
|
|
5488
|
+
__spreadValues({
|
|
5489
|
+
ref,
|
|
5490
|
+
className: cn(
|
|
5491
|
+
"h-14 p-4 text-left align-middle font-medium text-gray-900 [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
|
|
5492
|
+
className
|
|
5493
|
+
)
|
|
5494
|
+
}, props)
|
|
5495
|
+
);
|
|
5496
|
+
});
|
|
5497
|
+
TableHead.displayName = "TableHead";
|
|
5498
|
+
var TableCell = React16.forwardRef((_a, ref) => {
|
|
5499
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5500
|
+
return /* @__PURE__ */ jsx113(
|
|
5501
|
+
"td",
|
|
5502
|
+
__spreadValues({
|
|
5503
|
+
ref,
|
|
5504
|
+
className: cn(
|
|
5505
|
+
"p-4 align-middle [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
|
|
5506
|
+
className
|
|
5507
|
+
)
|
|
5508
|
+
}, props)
|
|
5509
|
+
);
|
|
5510
|
+
});
|
|
5511
|
+
TableCell.displayName = "TableCell";
|
|
5512
|
+
var TableEmpty = React16.forwardRef((_a, ref) => {
|
|
5513
|
+
var _b = _a, { className, title, description, children } = _b, props = __objRest(_b, ["className", "title", "description", "children"]);
|
|
5514
|
+
return /* @__PURE__ */ jsxs80(
|
|
5515
|
+
"div",
|
|
5516
|
+
__spreadProps(__spreadValues({
|
|
5517
|
+
ref,
|
|
5518
|
+
className: cn("flex flex-col gap-6 items-center py-12", className)
|
|
5519
|
+
}, props), {
|
|
5520
|
+
children: [
|
|
5521
|
+
title && /* @__PURE__ */ jsx113("span", { className: "text-lg font-semibold text-gray-1000", children: title }),
|
|
5522
|
+
description && /* @__PURE__ */ jsx113("span", { className: "text-sm font-normal text-gray-900", children: description }),
|
|
5523
|
+
/* @__PURE__ */ jsx113("div", { children })
|
|
5524
|
+
]
|
|
5525
|
+
})
|
|
5526
|
+
);
|
|
5527
|
+
});
|
|
5528
|
+
TableEmpty.displayName = "TableEmpty";
|
|
5529
|
+
|
|
4839
5530
|
// src/components/Tabs/Tabs.tsx
|
|
4840
|
-
import * as
|
|
5531
|
+
import * as React17 from "react";
|
|
4841
5532
|
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
4842
|
-
import { jsx as
|
|
5533
|
+
import { jsx as jsx114 } from "react/jsx-runtime";
|
|
4843
5534
|
var Tabs = TabsPrimitive.Root;
|
|
4844
|
-
var TabsList =
|
|
5535
|
+
var TabsList = React17.forwardRef((_a, ref) => {
|
|
4845
5536
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4846
|
-
return /* @__PURE__ */
|
|
5537
|
+
return /* @__PURE__ */ jsx114(
|
|
4847
5538
|
TabsPrimitive.List,
|
|
4848
5539
|
__spreadValues({
|
|
4849
5540
|
ref,
|
|
@@ -4855,9 +5546,9 @@ var TabsList = React14.forwardRef((_a, ref) => {
|
|
|
4855
5546
|
);
|
|
4856
5547
|
});
|
|
4857
5548
|
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
4858
|
-
var TabsTrigger =
|
|
5549
|
+
var TabsTrigger = React17.forwardRef((_a, ref) => {
|
|
4859
5550
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4860
|
-
return /* @__PURE__ */
|
|
5551
|
+
return /* @__PURE__ */ jsx114(
|
|
4861
5552
|
TabsPrimitive.Trigger,
|
|
4862
5553
|
__spreadValues({
|
|
4863
5554
|
ref,
|
|
@@ -4872,9 +5563,9 @@ var TabsTrigger = React14.forwardRef((_a, ref) => {
|
|
|
4872
5563
|
);
|
|
4873
5564
|
});
|
|
4874
5565
|
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
4875
|
-
var TabsContent =
|
|
5566
|
+
var TabsContent = React17.forwardRef((_a, ref) => {
|
|
4876
5567
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4877
|
-
return /* @__PURE__ */
|
|
5568
|
+
return /* @__PURE__ */ jsx114(
|
|
4878
5569
|
TabsPrimitive.Content,
|
|
4879
5570
|
__spreadValues({
|
|
4880
5571
|
ref,
|
|
@@ -4888,13 +5579,13 @@ var TabsContent = React14.forwardRef((_a, ref) => {
|
|
|
4888
5579
|
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
4889
5580
|
|
|
4890
5581
|
// src/components/Textarea/Textarea.tsx
|
|
4891
|
-
import * as
|
|
4892
|
-
import { jsx as
|
|
4893
|
-
var Textarea =
|
|
5582
|
+
import * as React18 from "react";
|
|
5583
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
5584
|
+
var Textarea = React18.forwardRef(
|
|
4894
5585
|
(_a, ref) => {
|
|
4895
5586
|
var _b = _a, { className, disabled } = _b, props = __objRest(_b, ["className", "disabled"]);
|
|
4896
5587
|
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
4897
|
-
return /* @__PURE__ */
|
|
5588
|
+
return /* @__PURE__ */ jsx115("div", { className: "flex gap-2", children: /* @__PURE__ */ jsx115(
|
|
4898
5589
|
"div",
|
|
4899
5590
|
{
|
|
4900
5591
|
className: cn(
|
|
@@ -4905,7 +5596,7 @@ var Textarea = React15.forwardRef(
|
|
|
4905
5596
|
},
|
|
4906
5597
|
className
|
|
4907
5598
|
),
|
|
4908
|
-
children: /* @__PURE__ */
|
|
5599
|
+
children: /* @__PURE__ */ jsx115(
|
|
4909
5600
|
"textarea",
|
|
4910
5601
|
__spreadProps(__spreadValues({}, props), {
|
|
4911
5602
|
disabled: isDisabled,
|
|
@@ -4920,22 +5611,22 @@ var Textarea = React15.forwardRef(
|
|
|
4920
5611
|
Textarea.displayName = "Textarea";
|
|
4921
5612
|
|
|
4922
5613
|
// src/components/Tooltip/Tooltip.tsx
|
|
4923
|
-
import * as
|
|
5614
|
+
import * as React19 from "react";
|
|
4924
5615
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
4925
|
-
import { jsx as
|
|
5616
|
+
import { jsx as jsx116 } from "react/jsx-runtime";
|
|
4926
5617
|
var TooltipProvider = (_a) => {
|
|
4927
5618
|
var _b = _a, {
|
|
4928
5619
|
delayDuration = 0
|
|
4929
5620
|
} = _b, props = __objRest(_b, [
|
|
4930
5621
|
"delayDuration"
|
|
4931
5622
|
]);
|
|
4932
|
-
return /* @__PURE__ */
|
|
5623
|
+
return /* @__PURE__ */ jsx116(TooltipPrimitive.Provider, __spreadValues({ delayDuration }, props));
|
|
4933
5624
|
};
|
|
4934
5625
|
var Tooltip = TooltipPrimitive.Root;
|
|
4935
5626
|
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
4936
|
-
var TooltipContent =
|
|
5627
|
+
var TooltipContent = React19.forwardRef((_a, ref) => {
|
|
4937
5628
|
var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
|
|
4938
|
-
return /* @__PURE__ */
|
|
5629
|
+
return /* @__PURE__ */ jsx116(
|
|
4939
5630
|
TooltipPrimitive.Content,
|
|
4940
5631
|
__spreadValues({
|
|
4941
5632
|
ref,
|
|
@@ -4970,6 +5661,7 @@ export {
|
|
|
4970
5661
|
ArrowRightIcon,
|
|
4971
5662
|
ArrowUpIcon,
|
|
4972
5663
|
AttachmentIcon,
|
|
5664
|
+
Avatar,
|
|
4973
5665
|
Badge,
|
|
4974
5666
|
BellIcon,
|
|
4975
5667
|
Button,
|
|
@@ -4983,10 +5675,20 @@ export {
|
|
|
4983
5675
|
CheckIcon,
|
|
4984
5676
|
Checkbox,
|
|
4985
5677
|
ChevronDownIcon,
|
|
5678
|
+
ChevronLeftDoubleIcon,
|
|
4986
5679
|
ChevronLeftIcon,
|
|
5680
|
+
ChevronRightDoubleIcon,
|
|
4987
5681
|
ChevronRightIcon,
|
|
4988
5682
|
ChevronSelectorVerticalIcon,
|
|
4989
5683
|
ChevronUpIcon,
|
|
5684
|
+
Command,
|
|
5685
|
+
CommandEmpty,
|
|
5686
|
+
CommandGroup,
|
|
5687
|
+
CommandInput,
|
|
5688
|
+
CommandItem,
|
|
5689
|
+
CommandList,
|
|
5690
|
+
CommandLoading,
|
|
5691
|
+
CommandSeparator,
|
|
4990
5692
|
CopyIcon,
|
|
4991
5693
|
CursorClickIcon,
|
|
4992
5694
|
Dialog,
|
|
@@ -4996,6 +5698,7 @@ export {
|
|
|
4996
5698
|
DialogHeader,
|
|
4997
5699
|
DialogTitle,
|
|
4998
5700
|
DialogTrigger,
|
|
5701
|
+
DotsGrid,
|
|
4999
5702
|
DotsHorizontalIcon,
|
|
5000
5703
|
DownloadIcon,
|
|
5001
5704
|
DropdownMenu,
|
|
@@ -5015,6 +5718,7 @@ export {
|
|
|
5015
5718
|
EditIcon,
|
|
5016
5719
|
ExpandIcon,
|
|
5017
5720
|
FileQuestionIcon,
|
|
5721
|
+
FilterButton,
|
|
5018
5722
|
FilterLinesIcon,
|
|
5019
5723
|
FlipBackwardIcon,
|
|
5020
5724
|
FlipForwardIcon,
|
|
@@ -5047,11 +5751,14 @@ export {
|
|
|
5047
5751
|
MicrophoneOffIcon,
|
|
5048
5752
|
MonitorIcon,
|
|
5049
5753
|
NotificationBoxIcon,
|
|
5754
|
+
Pagination,
|
|
5755
|
+
PaginationPageChoice,
|
|
5050
5756
|
PauseCircleIcon,
|
|
5051
5757
|
PhoneCallIcon,
|
|
5052
5758
|
PhoneIcon,
|
|
5053
5759
|
PieChartIcon,
|
|
5054
5760
|
PlayCircleIcon,
|
|
5761
|
+
PlayIcon,
|
|
5055
5762
|
PlusCircleIcon,
|
|
5056
5763
|
PlusIcon,
|
|
5057
5764
|
Popover,
|
|
@@ -5080,8 +5787,16 @@ export {
|
|
|
5080
5787
|
ShareIcon,
|
|
5081
5788
|
SkipBackIcon,
|
|
5082
5789
|
SkipForwardIcon,
|
|
5790
|
+
SpinnerIcon,
|
|
5083
5791
|
StarsIcon,
|
|
5084
5792
|
Switch,
|
|
5793
|
+
Table,
|
|
5794
|
+
TableBody,
|
|
5795
|
+
TableCell,
|
|
5796
|
+
TableEmpty,
|
|
5797
|
+
TableHead,
|
|
5798
|
+
TableHeader,
|
|
5799
|
+
TableRow,
|
|
5085
5800
|
Tabs,
|
|
5086
5801
|
TabsContent,
|
|
5087
5802
|
TabsList,
|