@snapcall/design-system 1.4.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 +333 -123
- package/dist/index.d.ts +333 -123
- package/dist/index.js +2169 -639
- package/dist/index.mjs +2072 -603
- package/dist/tailwind.config.js +8 -6
- package/dist/tailwind.css +1 -1
- package/package.json +24 -6
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
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
517
|
-
return /* @__PURE__ */
|
|
601
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
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
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
761
|
-
return /* @__PURE__ */
|
|
845
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
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",
|
|
@@ -1045,13 +1130,45 @@ var CameraOffIcon = forwardRef17(
|
|
|
1045
1130
|
}
|
|
1046
1131
|
);
|
|
1047
1132
|
|
|
1133
|
+
// src/icons/check.tsx
|
|
1134
|
+
import { forwardRef as forwardRef19 } from "react";
|
|
1135
|
+
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
1136
|
+
var CheckIcon = forwardRef19(
|
|
1137
|
+
function CheckIcon2(_a, ref) {
|
|
1138
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1139
|
+
return /* @__PURE__ */ jsx21(
|
|
1140
|
+
"svg",
|
|
1141
|
+
__spreadProps(__spreadValues({
|
|
1142
|
+
ref,
|
|
1143
|
+
width: size,
|
|
1144
|
+
height: size,
|
|
1145
|
+
viewBox: "0 0 24 24",
|
|
1146
|
+
fill: "none",
|
|
1147
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1148
|
+
className
|
|
1149
|
+
}, other), {
|
|
1150
|
+
children: /* @__PURE__ */ jsx21(
|
|
1151
|
+
"path",
|
|
1152
|
+
{
|
|
1153
|
+
d: "M20 6L9 17L4 12",
|
|
1154
|
+
stroke: "currentColor",
|
|
1155
|
+
strokeWidth: "2",
|
|
1156
|
+
strokeLinecap: "round",
|
|
1157
|
+
strokeLinejoin: "round"
|
|
1158
|
+
}
|
|
1159
|
+
)
|
|
1160
|
+
})
|
|
1161
|
+
);
|
|
1162
|
+
}
|
|
1163
|
+
);
|
|
1164
|
+
|
|
1048
1165
|
// src/icons/checkCircle.tsx
|
|
1049
|
-
import { forwardRef as
|
|
1050
|
-
import { jsx as
|
|
1051
|
-
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(
|
|
1052
1169
|
function CheckCircleIcon2(_a, ref) {
|
|
1053
1170
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1054
|
-
return /* @__PURE__ */
|
|
1171
|
+
return /* @__PURE__ */ jsxs12(
|
|
1055
1172
|
"svg",
|
|
1056
1173
|
__spreadProps(__spreadValues({
|
|
1057
1174
|
ref,
|
|
@@ -1063,7 +1180,7 @@ var CheckCircleIcon = forwardRef18(
|
|
|
1063
1180
|
className
|
|
1064
1181
|
}, other), {
|
|
1065
1182
|
children: [
|
|
1066
|
-
duotone && /* @__PURE__ */
|
|
1183
|
+
duotone && /* @__PURE__ */ jsx22(
|
|
1067
1184
|
"path",
|
|
1068
1185
|
{
|
|
1069
1186
|
opacity: "0.12",
|
|
@@ -1071,7 +1188,7 @@ var CheckCircleIcon = forwardRef18(
|
|
|
1071
1188
|
fill: "currentColor"
|
|
1072
1189
|
}
|
|
1073
1190
|
),
|
|
1074
|
-
/* @__PURE__ */
|
|
1191
|
+
/* @__PURE__ */ jsx22(
|
|
1075
1192
|
"path",
|
|
1076
1193
|
{
|
|
1077
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",
|
|
@@ -1088,12 +1205,12 @@ var CheckCircleIcon = forwardRef18(
|
|
|
1088
1205
|
);
|
|
1089
1206
|
|
|
1090
1207
|
// src/icons/chevronLeft.tsx
|
|
1091
|
-
import { forwardRef as
|
|
1092
|
-
import { jsx as
|
|
1093
|
-
var ChevronLeftIcon =
|
|
1208
|
+
import { forwardRef as forwardRef21 } from "react";
|
|
1209
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
1210
|
+
var ChevronLeftIcon = forwardRef21(
|
|
1094
1211
|
function ChevronLeftIcon2(_a, ref) {
|
|
1095
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1096
|
-
return /* @__PURE__ */
|
|
1212
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1213
|
+
return /* @__PURE__ */ jsx23(
|
|
1097
1214
|
"svg",
|
|
1098
1215
|
__spreadProps(__spreadValues({
|
|
1099
1216
|
ref,
|
|
@@ -1104,7 +1221,7 @@ var ChevronLeftIcon = forwardRef19(
|
|
|
1104
1221
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1105
1222
|
className
|
|
1106
1223
|
}, other), {
|
|
1107
|
-
children: /* @__PURE__ */
|
|
1224
|
+
children: /* @__PURE__ */ jsx23(
|
|
1108
1225
|
"path",
|
|
1109
1226
|
{
|
|
1110
1227
|
d: "M15 18L9 12L15 6",
|
|
@@ -1119,13 +1236,55 @@ var ChevronLeftIcon = forwardRef19(
|
|
|
1119
1236
|
}
|
|
1120
1237
|
);
|
|
1121
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
|
+
|
|
1122
1281
|
// src/icons/chevronRight.tsx
|
|
1123
|
-
import { forwardRef as
|
|
1124
|
-
import { jsx as
|
|
1125
|
-
var ChevronRightIcon =
|
|
1282
|
+
import { forwardRef as forwardRef23 } from "react";
|
|
1283
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
1284
|
+
var ChevronRightIcon = forwardRef23(
|
|
1126
1285
|
function ChevronRightIcon2(_a, ref) {
|
|
1127
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1128
|
-
return /* @__PURE__ */
|
|
1286
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1287
|
+
return /* @__PURE__ */ jsx25(
|
|
1129
1288
|
"svg",
|
|
1130
1289
|
__spreadProps(__spreadValues({
|
|
1131
1290
|
ref,
|
|
@@ -1136,7 +1295,7 @@ var ChevronRightIcon = forwardRef20(
|
|
|
1136
1295
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1137
1296
|
className
|
|
1138
1297
|
}, other), {
|
|
1139
|
-
children: /* @__PURE__ */
|
|
1298
|
+
children: /* @__PURE__ */ jsx25(
|
|
1140
1299
|
"path",
|
|
1141
1300
|
{
|
|
1142
1301
|
d: "M9 18L15 12L9 6",
|
|
@@ -1151,13 +1310,13 @@ var ChevronRightIcon = forwardRef20(
|
|
|
1151
1310
|
}
|
|
1152
1311
|
);
|
|
1153
1312
|
|
|
1154
|
-
// src/icons/
|
|
1155
|
-
import { forwardRef as
|
|
1156
|
-
import { jsx as
|
|
1157
|
-
var
|
|
1158
|
-
function
|
|
1159
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1160
|
-
return /* @__PURE__ */
|
|
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(
|
|
1161
1320
|
"svg",
|
|
1162
1321
|
__spreadProps(__spreadValues({
|
|
1163
1322
|
ref,
|
|
@@ -1168,27 +1327,101 @@ var ChevronUpIcon = forwardRef21(
|
|
|
1168
1327
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1169
1328
|
className
|
|
1170
1329
|
}, other), {
|
|
1171
|
-
children:
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
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
|
+
|
|
1355
|
+
// src/icons/chevronSelectorVertical.tsx
|
|
1356
|
+
import { forwardRef as forwardRef25 } from "react";
|
|
1357
|
+
import { jsx as jsx27 } from "react/jsx-runtime";
|
|
1358
|
+
var ChevronSelectorVerticalIcon = forwardRef25(
|
|
1359
|
+
function ChevronSelectorVerticalIcon2(_a, ref) {
|
|
1360
|
+
var _b = _a, { size = 24, className = "text-gray-1000" } = _b, other = __objRest(_b, ["size", "className"]);
|
|
1361
|
+
return /* @__PURE__ */ jsx27(
|
|
1362
|
+
"svg",
|
|
1363
|
+
__spreadProps(__spreadValues({
|
|
1364
|
+
ref,
|
|
1365
|
+
width: size,
|
|
1366
|
+
height: size,
|
|
1367
|
+
viewBox: "0 0 24 24",
|
|
1368
|
+
fill: "none",
|
|
1369
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1370
|
+
className
|
|
1371
|
+
}, other), {
|
|
1372
|
+
children: /* @__PURE__ */ jsx27(
|
|
1373
|
+
"path",
|
|
1374
|
+
{
|
|
1375
|
+
d: "M7 15L12 20L17 15M7 9L12 4L17 9",
|
|
1376
|
+
stroke: "currentColor",
|
|
1377
|
+
strokeWidth: "2",
|
|
1378
|
+
strokeLinecap: "round",
|
|
1379
|
+
strokeLinejoin: "round"
|
|
1380
|
+
}
|
|
1381
|
+
)
|
|
1382
|
+
})
|
|
1383
|
+
);
|
|
1384
|
+
}
|
|
1385
|
+
);
|
|
1386
|
+
|
|
1387
|
+
// src/icons/chevronUp.tsx
|
|
1388
|
+
import { forwardRef as forwardRef26 } from "react";
|
|
1389
|
+
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
1390
|
+
var ChevronUpIcon = forwardRef26(
|
|
1391
|
+
function ChevronUpIcon2(_a, ref) {
|
|
1392
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1393
|
+
return /* @__PURE__ */ jsx28(
|
|
1394
|
+
"svg",
|
|
1395
|
+
__spreadProps(__spreadValues({
|
|
1396
|
+
ref,
|
|
1397
|
+
width: size,
|
|
1398
|
+
height: size,
|
|
1399
|
+
viewBox: "0 0 24 24",
|
|
1400
|
+
fill: "none",
|
|
1401
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1402
|
+
className
|
|
1403
|
+
}, other), {
|
|
1404
|
+
children: /* @__PURE__ */ jsx28(
|
|
1405
|
+
"path",
|
|
1406
|
+
{
|
|
1407
|
+
d: "M18 15L12 9L6 15",
|
|
1408
|
+
stroke: "currentColor",
|
|
1409
|
+
strokeWidth: "2",
|
|
1410
|
+
strokeLinecap: "round",
|
|
1411
|
+
strokeLinejoin: "round"
|
|
1412
|
+
}
|
|
1413
|
+
)
|
|
1181
1414
|
})
|
|
1182
1415
|
);
|
|
1183
1416
|
}
|
|
1184
1417
|
);
|
|
1185
1418
|
|
|
1186
1419
|
// src/icons/copy.tsx
|
|
1187
|
-
import { forwardRef as
|
|
1188
|
-
import { jsx as
|
|
1189
|
-
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) {
|
|
1190
1423
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1191
|
-
return /* @__PURE__ */
|
|
1424
|
+
return /* @__PURE__ */ jsxs15(
|
|
1192
1425
|
"svg",
|
|
1193
1426
|
__spreadProps(__spreadValues({
|
|
1194
1427
|
ref,
|
|
@@ -1200,7 +1433,7 @@ var CopyIcon = forwardRef22(function CopyIcon2(_a, ref) {
|
|
|
1200
1433
|
className
|
|
1201
1434
|
}, other), {
|
|
1202
1435
|
children: [
|
|
1203
|
-
duotone && /* @__PURE__ */
|
|
1436
|
+
duotone && /* @__PURE__ */ jsx29(
|
|
1204
1437
|
"path",
|
|
1205
1438
|
{
|
|
1206
1439
|
opacity: "0.12",
|
|
@@ -1208,7 +1441,7 @@ var CopyIcon = forwardRef22(function CopyIcon2(_a, ref) {
|
|
|
1208
1441
|
fill: "currentColor"
|
|
1209
1442
|
}
|
|
1210
1443
|
),
|
|
1211
|
-
/* @__PURE__ */
|
|
1444
|
+
/* @__PURE__ */ jsx29(
|
|
1212
1445
|
"path",
|
|
1213
1446
|
{
|
|
1214
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",
|
|
@@ -1224,12 +1457,12 @@ var CopyIcon = forwardRef22(function CopyIcon2(_a, ref) {
|
|
|
1224
1457
|
});
|
|
1225
1458
|
|
|
1226
1459
|
// src/icons/cursorClick.tsx
|
|
1227
|
-
import { forwardRef as
|
|
1228
|
-
import { jsx as
|
|
1229
|
-
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(
|
|
1230
1463
|
function CursorClickIcon2(_a, ref) {
|
|
1231
1464
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1232
|
-
return /* @__PURE__ */
|
|
1465
|
+
return /* @__PURE__ */ jsxs16(
|
|
1233
1466
|
"svg",
|
|
1234
1467
|
__spreadProps(__spreadValues({
|
|
1235
1468
|
ref,
|
|
@@ -1241,7 +1474,7 @@ var CursorClickIcon = forwardRef23(
|
|
|
1241
1474
|
className
|
|
1242
1475
|
}, other), {
|
|
1243
1476
|
children: [
|
|
1244
|
-
duotone && /* @__PURE__ */
|
|
1477
|
+
duotone && /* @__PURE__ */ jsx30(
|
|
1245
1478
|
"path",
|
|
1246
1479
|
{
|
|
1247
1480
|
opacity: "0.12",
|
|
@@ -1249,7 +1482,7 @@ var CursorClickIcon = forwardRef23(
|
|
|
1249
1482
|
fill: "currentColor"
|
|
1250
1483
|
}
|
|
1251
1484
|
),
|
|
1252
|
-
/* @__PURE__ */
|
|
1485
|
+
/* @__PURE__ */ jsx30(
|
|
1253
1486
|
"path",
|
|
1254
1487
|
{
|
|
1255
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",
|
|
@@ -1266,12 +1499,12 @@ var CursorClickIcon = forwardRef23(
|
|
|
1266
1499
|
);
|
|
1267
1500
|
|
|
1268
1501
|
// src/icons/dotsHorizontal.tsx
|
|
1269
|
-
import { forwardRef as
|
|
1270
|
-
import { jsx as
|
|
1271
|
-
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(
|
|
1272
1505
|
function DotsHorizontalIcon2(_a, ref) {
|
|
1273
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1274
|
-
return /* @__PURE__ */
|
|
1506
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1507
|
+
return /* @__PURE__ */ jsxs17(
|
|
1275
1508
|
"svg",
|
|
1276
1509
|
__spreadProps(__spreadValues({
|
|
1277
1510
|
ref,
|
|
@@ -1283,7 +1516,7 @@ var DotsHorizontalIcon = forwardRef24(
|
|
|
1283
1516
|
className
|
|
1284
1517
|
}, other), {
|
|
1285
1518
|
children: [
|
|
1286
|
-
/* @__PURE__ */
|
|
1519
|
+
/* @__PURE__ */ jsx31(
|
|
1287
1520
|
"path",
|
|
1288
1521
|
{
|
|
1289
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",
|
|
@@ -1293,7 +1526,7 @@ var DotsHorizontalIcon = forwardRef24(
|
|
|
1293
1526
|
strokeLinejoin: "round"
|
|
1294
1527
|
}
|
|
1295
1528
|
),
|
|
1296
|
-
/* @__PURE__ */
|
|
1529
|
+
/* @__PURE__ */ jsx31(
|
|
1297
1530
|
"path",
|
|
1298
1531
|
{
|
|
1299
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",
|
|
@@ -1303,7 +1536,7 @@ var DotsHorizontalIcon = forwardRef24(
|
|
|
1303
1536
|
strokeLinejoin: "round"
|
|
1304
1537
|
}
|
|
1305
1538
|
),
|
|
1306
|
-
/* @__PURE__ */
|
|
1539
|
+
/* @__PURE__ */ jsx31(
|
|
1307
1540
|
"path",
|
|
1308
1541
|
{
|
|
1309
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",
|
|
@@ -1319,13 +1552,125 @@ var DotsHorizontalIcon = forwardRef24(
|
|
|
1319
1552
|
}
|
|
1320
1553
|
);
|
|
1321
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
|
+
|
|
1322
1667
|
// src/icons/download.tsx
|
|
1323
|
-
import { forwardRef as
|
|
1324
|
-
import { jsx as
|
|
1325
|
-
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(
|
|
1326
1671
|
function DownloadIcon2(_a, ref) {
|
|
1327
1672
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1328
|
-
return /* @__PURE__ */
|
|
1673
|
+
return /* @__PURE__ */ jsxs19(
|
|
1329
1674
|
"svg",
|
|
1330
1675
|
__spreadProps(__spreadValues({
|
|
1331
1676
|
ref,
|
|
@@ -1337,7 +1682,7 @@ var DownloadIcon = forwardRef25(
|
|
|
1337
1682
|
className
|
|
1338
1683
|
}, other), {
|
|
1339
1684
|
children: [
|
|
1340
|
-
duotone && /* @__PURE__ */
|
|
1685
|
+
duotone && /* @__PURE__ */ jsx33(
|
|
1341
1686
|
"path",
|
|
1342
1687
|
{
|
|
1343
1688
|
opacity: "0.12",
|
|
@@ -1345,7 +1690,7 @@ var DownloadIcon = forwardRef25(
|
|
|
1345
1690
|
fill: "currentColor"
|
|
1346
1691
|
}
|
|
1347
1692
|
),
|
|
1348
|
-
/* @__PURE__ */
|
|
1693
|
+
/* @__PURE__ */ jsx33(
|
|
1349
1694
|
"path",
|
|
1350
1695
|
{
|
|
1351
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",
|
|
@@ -1362,11 +1707,11 @@ var DownloadIcon = forwardRef25(
|
|
|
1362
1707
|
);
|
|
1363
1708
|
|
|
1364
1709
|
// src/icons/edit.tsx
|
|
1365
|
-
import { forwardRef as
|
|
1366
|
-
import { jsx as
|
|
1367
|
-
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) {
|
|
1368
1713
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1369
|
-
return /* @__PURE__ */
|
|
1714
|
+
return /* @__PURE__ */ jsxs20(
|
|
1370
1715
|
"svg",
|
|
1371
1716
|
__spreadProps(__spreadValues({
|
|
1372
1717
|
ref,
|
|
@@ -1378,7 +1723,7 @@ var EditIcon = forwardRef26(function EditIcon2(_a, ref) {
|
|
|
1378
1723
|
className
|
|
1379
1724
|
}, other), {
|
|
1380
1725
|
children: [
|
|
1381
|
-
duotone && /* @__PURE__ */
|
|
1726
|
+
duotone && /* @__PURE__ */ jsx34(
|
|
1382
1727
|
"path",
|
|
1383
1728
|
{
|
|
1384
1729
|
opacity: "0.12",
|
|
@@ -1386,7 +1731,7 @@ var EditIcon = forwardRef26(function EditIcon2(_a, ref) {
|
|
|
1386
1731
|
fill: "currentColor"
|
|
1387
1732
|
}
|
|
1388
1733
|
),
|
|
1389
|
-
/* @__PURE__ */
|
|
1734
|
+
/* @__PURE__ */ jsx34(
|
|
1390
1735
|
"path",
|
|
1391
1736
|
{
|
|
1392
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",
|
|
@@ -1402,12 +1747,12 @@ var EditIcon = forwardRef26(function EditIcon2(_a, ref) {
|
|
|
1402
1747
|
});
|
|
1403
1748
|
|
|
1404
1749
|
// src/icons/expand.tsx
|
|
1405
|
-
import { forwardRef as
|
|
1406
|
-
import { jsx as
|
|
1407
|
-
var ExpandIcon =
|
|
1750
|
+
import { forwardRef as forwardRef33 } from "react";
|
|
1751
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
1752
|
+
var ExpandIcon = forwardRef33(
|
|
1408
1753
|
function ExpandIcon2(_a, ref) {
|
|
1409
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1410
|
-
return /* @__PURE__ */
|
|
1754
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1755
|
+
return /* @__PURE__ */ jsx35(
|
|
1411
1756
|
"svg",
|
|
1412
1757
|
__spreadProps(__spreadValues({
|
|
1413
1758
|
ref,
|
|
@@ -1418,7 +1763,7 @@ var ExpandIcon = forwardRef27(
|
|
|
1418
1763
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1419
1764
|
className
|
|
1420
1765
|
}, other), {
|
|
1421
|
-
children: /* @__PURE__ */
|
|
1766
|
+
children: /* @__PURE__ */ jsx35(
|
|
1422
1767
|
"path",
|
|
1423
1768
|
{
|
|
1424
1769
|
d: "M16 8L21 3M21 3H16M21 3V8M8 8L3 3M3 3L3 8M3 3L8 3M8 16L3 21M3 21H8M3 21L3 16M16 16L21 21M21 21V16M21 21H16",
|
|
@@ -1433,13 +1778,55 @@ var ExpandIcon = forwardRef27(
|
|
|
1433
1778
|
}
|
|
1434
1779
|
);
|
|
1435
1780
|
|
|
1781
|
+
// src/icons/fileQuestion.tsx
|
|
1782
|
+
import { forwardRef as forwardRef34 } from "react";
|
|
1783
|
+
import { jsx as jsx36, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1784
|
+
var FileQuestionIcon = forwardRef34(
|
|
1785
|
+
function FileQuestionIcon2(_a, ref) {
|
|
1786
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1787
|
+
return /* @__PURE__ */ jsxs21(
|
|
1788
|
+
"svg",
|
|
1789
|
+
__spreadProps(__spreadValues({
|
|
1790
|
+
ref,
|
|
1791
|
+
width: size,
|
|
1792
|
+
height: size,
|
|
1793
|
+
viewBox: "0 0 24 24",
|
|
1794
|
+
fill: "none",
|
|
1795
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1796
|
+
className
|
|
1797
|
+
}, other), {
|
|
1798
|
+
children: [
|
|
1799
|
+
duotone && /* @__PURE__ */ jsx36(
|
|
1800
|
+
"path",
|
|
1801
|
+
{
|
|
1802
|
+
opacity: "0.12",
|
|
1803
|
+
d: "M15.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.11982 22 8.79993 22H14L20 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 2Z",
|
|
1804
|
+
fill: "currentColor"
|
|
1805
|
+
}
|
|
1806
|
+
),
|
|
1807
|
+
/* @__PURE__ */ jsx36(
|
|
1808
|
+
"path",
|
|
1809
|
+
{
|
|
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",
|
|
1811
|
+
stroke: "currentColor",
|
|
1812
|
+
strokeWidth: "2",
|
|
1813
|
+
strokeLinecap: "round",
|
|
1814
|
+
strokeLinejoin: "round"
|
|
1815
|
+
}
|
|
1816
|
+
)
|
|
1817
|
+
]
|
|
1818
|
+
})
|
|
1819
|
+
);
|
|
1820
|
+
}
|
|
1821
|
+
);
|
|
1822
|
+
|
|
1436
1823
|
// src/icons/filterLines.tsx
|
|
1437
|
-
import { forwardRef as
|
|
1438
|
-
import { jsx as
|
|
1439
|
-
var FilterLinesIcon =
|
|
1824
|
+
import { forwardRef as forwardRef35 } from "react";
|
|
1825
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
1826
|
+
var FilterLinesIcon = forwardRef35(
|
|
1440
1827
|
function FilterLinesIcon2(_a, ref) {
|
|
1441
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1442
|
-
return /* @__PURE__ */
|
|
1828
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1829
|
+
return /* @__PURE__ */ jsx37(
|
|
1443
1830
|
"svg",
|
|
1444
1831
|
__spreadProps(__spreadValues({
|
|
1445
1832
|
ref,
|
|
@@ -1450,7 +1837,7 @@ var FilterLinesIcon = forwardRef28(
|
|
|
1450
1837
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1451
1838
|
className
|
|
1452
1839
|
}, other), {
|
|
1453
|
-
children: /* @__PURE__ */
|
|
1840
|
+
children: /* @__PURE__ */ jsx37(
|
|
1454
1841
|
"path",
|
|
1455
1842
|
{
|
|
1456
1843
|
d: "M6 12H18M3 6H21M9 18H15",
|
|
@@ -1466,12 +1853,12 @@ var FilterLinesIcon = forwardRef28(
|
|
|
1466
1853
|
);
|
|
1467
1854
|
|
|
1468
1855
|
// src/icons/flipBackward.tsx
|
|
1469
|
-
import { forwardRef as
|
|
1470
|
-
import { jsx as
|
|
1471
|
-
var FlipBackwardIcon =
|
|
1856
|
+
import { forwardRef as forwardRef36 } from "react";
|
|
1857
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
1858
|
+
var FlipBackwardIcon = forwardRef36(
|
|
1472
1859
|
function FlipBackwardIcon2(_a, ref) {
|
|
1473
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1474
|
-
return /* @__PURE__ */
|
|
1860
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1861
|
+
return /* @__PURE__ */ jsx38(
|
|
1475
1862
|
"svg",
|
|
1476
1863
|
__spreadProps(__spreadValues({
|
|
1477
1864
|
ref,
|
|
@@ -1482,7 +1869,7 @@ var FlipBackwardIcon = forwardRef29(
|
|
|
1482
1869
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1483
1870
|
className
|
|
1484
1871
|
}, other), {
|
|
1485
|
-
children: /* @__PURE__ */
|
|
1872
|
+
children: /* @__PURE__ */ jsx38(
|
|
1486
1873
|
"path",
|
|
1487
1874
|
{
|
|
1488
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",
|
|
@@ -1498,12 +1885,12 @@ var FlipBackwardIcon = forwardRef29(
|
|
|
1498
1885
|
);
|
|
1499
1886
|
|
|
1500
1887
|
// src/icons/flipForward.tsx
|
|
1501
|
-
import { forwardRef as
|
|
1502
|
-
import { jsx as
|
|
1503
|
-
var FlipForwardIcon =
|
|
1888
|
+
import { forwardRef as forwardRef37 } from "react";
|
|
1889
|
+
import { jsx as jsx39 } from "react/jsx-runtime";
|
|
1890
|
+
var FlipForwardIcon = forwardRef37(
|
|
1504
1891
|
function FlipForwardIcon2(_a, ref) {
|
|
1505
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1506
|
-
return /* @__PURE__ */
|
|
1892
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1893
|
+
return /* @__PURE__ */ jsx39(
|
|
1507
1894
|
"svg",
|
|
1508
1895
|
__spreadProps(__spreadValues({
|
|
1509
1896
|
ref,
|
|
@@ -1514,7 +1901,7 @@ var FlipForwardIcon = forwardRef30(
|
|
|
1514
1901
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1515
1902
|
className
|
|
1516
1903
|
}, other), {
|
|
1517
|
-
children: /* @__PURE__ */
|
|
1904
|
+
children: /* @__PURE__ */ jsx39(
|
|
1518
1905
|
"path",
|
|
1519
1906
|
{
|
|
1520
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",
|
|
@@ -1530,12 +1917,12 @@ var FlipForwardIcon = forwardRef30(
|
|
|
1530
1917
|
);
|
|
1531
1918
|
|
|
1532
1919
|
// src/icons/helpCircle.tsx
|
|
1533
|
-
import { forwardRef as
|
|
1534
|
-
import { jsx as
|
|
1535
|
-
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(
|
|
1536
1923
|
function HelpCircleIcon2(_a, ref) {
|
|
1537
1924
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1538
|
-
return /* @__PURE__ */
|
|
1925
|
+
return /* @__PURE__ */ jsxs22(
|
|
1539
1926
|
"svg",
|
|
1540
1927
|
__spreadProps(__spreadValues({
|
|
1541
1928
|
ref,
|
|
@@ -1547,7 +1934,7 @@ var HelpCircleIcon = forwardRef31(
|
|
|
1547
1934
|
className
|
|
1548
1935
|
}, other), {
|
|
1549
1936
|
children: [
|
|
1550
|
-
duotone && /* @__PURE__ */
|
|
1937
|
+
duotone && /* @__PURE__ */ jsx40(
|
|
1551
1938
|
"path",
|
|
1552
1939
|
{
|
|
1553
1940
|
opacity: "0.12",
|
|
@@ -1555,7 +1942,7 @@ var HelpCircleIcon = forwardRef31(
|
|
|
1555
1942
|
fill: "currentColor"
|
|
1556
1943
|
}
|
|
1557
1944
|
),
|
|
1558
|
-
/* @__PURE__ */
|
|
1945
|
+
/* @__PURE__ */ jsx40(
|
|
1559
1946
|
"path",
|
|
1560
1947
|
{
|
|
1561
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",
|
|
@@ -1572,11 +1959,11 @@ var HelpCircleIcon = forwardRef31(
|
|
|
1572
1959
|
);
|
|
1573
1960
|
|
|
1574
1961
|
// src/icons/home.tsx
|
|
1575
|
-
import { forwardRef as
|
|
1576
|
-
import { jsx as
|
|
1577
|
-
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) {
|
|
1578
1965
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1579
|
-
return /* @__PURE__ */
|
|
1966
|
+
return /* @__PURE__ */ jsxs23(
|
|
1580
1967
|
"svg",
|
|
1581
1968
|
__spreadProps(__spreadValues({
|
|
1582
1969
|
ref,
|
|
@@ -1588,8 +1975,8 @@ var HomeIcon = forwardRef32(function HomeIcon2(_a, ref) {
|
|
|
1588
1975
|
className
|
|
1589
1976
|
}, other), {
|
|
1590
1977
|
children: [
|
|
1591
|
-
duotone && /* @__PURE__ */
|
|
1592
|
-
/* @__PURE__ */
|
|
1978
|
+
duotone && /* @__PURE__ */ jsx41("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
|
|
1979
|
+
/* @__PURE__ */ jsx41(
|
|
1593
1980
|
"path",
|
|
1594
1981
|
{
|
|
1595
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",
|
|
@@ -1605,12 +1992,12 @@ var HomeIcon = forwardRef32(function HomeIcon2(_a, ref) {
|
|
|
1605
1992
|
});
|
|
1606
1993
|
|
|
1607
1994
|
// src/icons/image.tsx
|
|
1608
|
-
import { forwardRef as
|
|
1609
|
-
import { jsx as
|
|
1610
|
-
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(
|
|
1611
1998
|
function ImageIcon2(_a, ref) {
|
|
1612
1999
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1613
|
-
return /* @__PURE__ */
|
|
2000
|
+
return /* @__PURE__ */ jsxs24(
|
|
1614
2001
|
"svg",
|
|
1615
2002
|
__spreadProps(__spreadValues({
|
|
1616
2003
|
ref,
|
|
@@ -1622,15 +2009,15 @@ var ImageIcon = forwardRef33(
|
|
|
1622
2009
|
className
|
|
1623
2010
|
}, other), {
|
|
1624
2011
|
children: [
|
|
1625
|
-
duotone && /* @__PURE__ */
|
|
1626
|
-
/* @__PURE__ */
|
|
2012
|
+
duotone && /* @__PURE__ */ jsxs24("g", { opacity: "0.12", children: [
|
|
2013
|
+
/* @__PURE__ */ jsx42(
|
|
1627
2014
|
"path",
|
|
1628
2015
|
{
|
|
1629
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",
|
|
1630
2017
|
fill: "currentColor"
|
|
1631
2018
|
}
|
|
1632
2019
|
),
|
|
1633
|
-
/* @__PURE__ */
|
|
2020
|
+
/* @__PURE__ */ jsx42(
|
|
1634
2021
|
"path",
|
|
1635
2022
|
{
|
|
1636
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",
|
|
@@ -1638,7 +2025,7 @@ var ImageIcon = forwardRef33(
|
|
|
1638
2025
|
}
|
|
1639
2026
|
)
|
|
1640
2027
|
] }),
|
|
1641
|
-
/* @__PURE__ */
|
|
2028
|
+
/* @__PURE__ */ jsx42(
|
|
1642
2029
|
"path",
|
|
1643
2030
|
{
|
|
1644
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",
|
|
@@ -1655,12 +2042,12 @@ var ImageIcon = forwardRef33(
|
|
|
1655
2042
|
);
|
|
1656
2043
|
|
|
1657
2044
|
// src/icons/imageDown.tsx
|
|
1658
|
-
import { forwardRef as
|
|
1659
|
-
import { jsx as
|
|
1660
|
-
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(
|
|
1661
2048
|
function ImageDownIcon2(_a, ref) {
|
|
1662
2049
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1663
|
-
return /* @__PURE__ */
|
|
2050
|
+
return /* @__PURE__ */ jsxs25(
|
|
1664
2051
|
"svg",
|
|
1665
2052
|
__spreadProps(__spreadValues({
|
|
1666
2053
|
ref,
|
|
@@ -1672,15 +2059,15 @@ var ImageDownIcon = forwardRef34(
|
|
|
1672
2059
|
className
|
|
1673
2060
|
}, other), {
|
|
1674
2061
|
children: [
|
|
1675
|
-
duotone && /* @__PURE__ */
|
|
1676
|
-
/* @__PURE__ */
|
|
2062
|
+
duotone && /* @__PURE__ */ jsxs25("g", { opacity: "0.12", children: [
|
|
2063
|
+
/* @__PURE__ */ jsx43(
|
|
1677
2064
|
"path",
|
|
1678
2065
|
{
|
|
1679
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",
|
|
1680
2067
|
fill: "currentColor"
|
|
1681
2068
|
}
|
|
1682
2069
|
),
|
|
1683
|
-
/* @__PURE__ */
|
|
2070
|
+
/* @__PURE__ */ jsx43(
|
|
1684
2071
|
"path",
|
|
1685
2072
|
{
|
|
1686
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",
|
|
@@ -1688,7 +2075,7 @@ var ImageDownIcon = forwardRef34(
|
|
|
1688
2075
|
}
|
|
1689
2076
|
)
|
|
1690
2077
|
] }),
|
|
1691
|
-
/* @__PURE__ */
|
|
2078
|
+
/* @__PURE__ */ jsx43(
|
|
1692
2079
|
"path",
|
|
1693
2080
|
{
|
|
1694
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",
|
|
@@ -1705,12 +2092,12 @@ var ImageDownIcon = forwardRef34(
|
|
|
1705
2092
|
);
|
|
1706
2093
|
|
|
1707
2094
|
// src/icons/imageX.tsx
|
|
1708
|
-
import { forwardRef as
|
|
1709
|
-
import { jsx as
|
|
1710
|
-
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(
|
|
1711
2098
|
function ImageXIcon2(_a, ref) {
|
|
1712
2099
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1713
|
-
return /* @__PURE__ */
|
|
2100
|
+
return /* @__PURE__ */ jsxs26(
|
|
1714
2101
|
"svg",
|
|
1715
2102
|
__spreadProps(__spreadValues({
|
|
1716
2103
|
ref,
|
|
@@ -1722,15 +2109,15 @@ var ImageXIcon = forwardRef35(
|
|
|
1722
2109
|
className
|
|
1723
2110
|
}, other), {
|
|
1724
2111
|
children: [
|
|
1725
|
-
duotone && /* @__PURE__ */
|
|
1726
|
-
/* @__PURE__ */
|
|
2112
|
+
duotone && /* @__PURE__ */ jsxs26("g", { opacity: "0.12", children: [
|
|
2113
|
+
/* @__PURE__ */ jsx44(
|
|
1727
2114
|
"path",
|
|
1728
2115
|
{
|
|
1729
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",
|
|
1730
2117
|
fill: "currentColor"
|
|
1731
2118
|
}
|
|
1732
2119
|
),
|
|
1733
|
-
/* @__PURE__ */
|
|
2120
|
+
/* @__PURE__ */ jsx44(
|
|
1734
2121
|
"path",
|
|
1735
2122
|
{
|
|
1736
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",
|
|
@@ -1738,7 +2125,7 @@ var ImageXIcon = forwardRef35(
|
|
|
1738
2125
|
}
|
|
1739
2126
|
)
|
|
1740
2127
|
] }),
|
|
1741
|
-
/* @__PURE__ */
|
|
2128
|
+
/* @__PURE__ */ jsx44(
|
|
1742
2129
|
"path",
|
|
1743
2130
|
{
|
|
1744
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",
|
|
@@ -1755,12 +2142,12 @@ var ImageXIcon = forwardRef35(
|
|
|
1755
2142
|
);
|
|
1756
2143
|
|
|
1757
2144
|
// src/icons/infoCircle.tsx
|
|
1758
|
-
import { forwardRef as
|
|
1759
|
-
import { jsx as
|
|
1760
|
-
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(
|
|
1761
2148
|
function InfoCircleIcon2(_a, ref) {
|
|
1762
2149
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1763
|
-
return /* @__PURE__ */
|
|
2150
|
+
return /* @__PURE__ */ jsxs27(
|
|
1764
2151
|
"svg",
|
|
1765
2152
|
__spreadProps(__spreadValues({
|
|
1766
2153
|
ref,
|
|
@@ -1772,7 +2159,7 @@ var InfoCircleIcon = forwardRef36(
|
|
|
1772
2159
|
className
|
|
1773
2160
|
}, other), {
|
|
1774
2161
|
children: [
|
|
1775
|
-
duotone && /* @__PURE__ */
|
|
2162
|
+
duotone && /* @__PURE__ */ jsx45(
|
|
1776
2163
|
"path",
|
|
1777
2164
|
{
|
|
1778
2165
|
opacity: "0.12",
|
|
@@ -1780,7 +2167,7 @@ var InfoCircleIcon = forwardRef36(
|
|
|
1780
2167
|
fill: "currentColor"
|
|
1781
2168
|
}
|
|
1782
2169
|
),
|
|
1783
|
-
/* @__PURE__ */
|
|
2170
|
+
/* @__PURE__ */ jsx45(
|
|
1784
2171
|
"path",
|
|
1785
2172
|
{
|
|
1786
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",
|
|
@@ -1797,12 +2184,12 @@ var InfoCircleIcon = forwardRef36(
|
|
|
1797
2184
|
);
|
|
1798
2185
|
|
|
1799
2186
|
// src/icons/lightbulb.tsx
|
|
1800
|
-
import { forwardRef as
|
|
1801
|
-
import { jsx as
|
|
1802
|
-
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(
|
|
1803
2190
|
function LightbulbIcon2(_a, ref) {
|
|
1804
2191
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1805
|
-
return /* @__PURE__ */
|
|
2192
|
+
return /* @__PURE__ */ jsxs28(
|
|
1806
2193
|
"svg",
|
|
1807
2194
|
__spreadProps(__spreadValues({
|
|
1808
2195
|
ref,
|
|
@@ -1814,7 +2201,7 @@ var LightbulbIcon = forwardRef37(
|
|
|
1814
2201
|
className
|
|
1815
2202
|
}, other), {
|
|
1816
2203
|
children: [
|
|
1817
|
-
duotone && /* @__PURE__ */
|
|
2204
|
+
duotone && /* @__PURE__ */ jsx46(
|
|
1818
2205
|
"path",
|
|
1819
2206
|
{
|
|
1820
2207
|
opacity: "0.12",
|
|
@@ -1822,7 +2209,7 @@ var LightbulbIcon = forwardRef37(
|
|
|
1822
2209
|
fill: "currentColor"
|
|
1823
2210
|
}
|
|
1824
2211
|
),
|
|
1825
|
-
/* @__PURE__ */
|
|
2212
|
+
/* @__PURE__ */ jsx46(
|
|
1826
2213
|
"path",
|
|
1827
2214
|
{
|
|
1828
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",
|
|
@@ -1839,11 +2226,11 @@ var LightbulbIcon = forwardRef37(
|
|
|
1839
2226
|
);
|
|
1840
2227
|
|
|
1841
2228
|
// src/icons/link.tsx
|
|
1842
|
-
import { forwardRef as
|
|
1843
|
-
import { jsx as
|
|
1844
|
-
var LinkIcon =
|
|
1845
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1846
|
-
return /* @__PURE__ */
|
|
2229
|
+
import { forwardRef as forwardRef45 } from "react";
|
|
2230
|
+
import { jsx as jsx47 } from "react/jsx-runtime";
|
|
2231
|
+
var LinkIcon = forwardRef45(function LinkIcon2(_a, ref) {
|
|
2232
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2233
|
+
return /* @__PURE__ */ jsx47(
|
|
1847
2234
|
"svg",
|
|
1848
2235
|
__spreadProps(__spreadValues({
|
|
1849
2236
|
ref,
|
|
@@ -1854,7 +2241,7 @@ var LinkIcon = forwardRef38(function LinkIcon2(_a, ref) {
|
|
|
1854
2241
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1855
2242
|
className
|
|
1856
2243
|
}, other), {
|
|
1857
|
-
children: /* @__PURE__ */
|
|
2244
|
+
children: /* @__PURE__ */ jsx47(
|
|
1858
2245
|
"path",
|
|
1859
2246
|
{
|
|
1860
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",
|
|
@@ -1869,11 +2256,11 @@ var LinkIcon = forwardRef38(function LinkIcon2(_a, ref) {
|
|
|
1869
2256
|
});
|
|
1870
2257
|
|
|
1871
2258
|
// src/icons/lock.tsx
|
|
1872
|
-
import { forwardRef as
|
|
1873
|
-
import { jsx as
|
|
1874
|
-
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) {
|
|
1875
2262
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1876
|
-
return /* @__PURE__ */
|
|
2263
|
+
return /* @__PURE__ */ jsxs29(
|
|
1877
2264
|
"svg",
|
|
1878
2265
|
__spreadProps(__spreadValues({
|
|
1879
2266
|
ref,
|
|
@@ -1885,7 +2272,7 @@ var LockIcon = forwardRef39(function LockIcon2(_a, ref) {
|
|
|
1885
2272
|
className
|
|
1886
2273
|
}, other), {
|
|
1887
2274
|
children: [
|
|
1888
|
-
duotone && /* @__PURE__ */
|
|
2275
|
+
duotone && /* @__PURE__ */ jsx48(
|
|
1889
2276
|
"path",
|
|
1890
2277
|
{
|
|
1891
2278
|
opacity: "0.12",
|
|
@@ -1893,7 +2280,7 @@ var LockIcon = forwardRef39(function LockIcon2(_a, ref) {
|
|
|
1893
2280
|
fill: "currentColor"
|
|
1894
2281
|
}
|
|
1895
2282
|
),
|
|
1896
|
-
/* @__PURE__ */
|
|
2283
|
+
/* @__PURE__ */ jsx48(
|
|
1897
2284
|
"path",
|
|
1898
2285
|
{
|
|
1899
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",
|
|
@@ -1909,12 +2296,12 @@ var LockIcon = forwardRef39(function LockIcon2(_a, ref) {
|
|
|
1909
2296
|
});
|
|
1910
2297
|
|
|
1911
2298
|
// src/icons/logIn.tsx
|
|
1912
|
-
import { forwardRef as
|
|
1913
|
-
import { jsx as
|
|
1914
|
-
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(
|
|
1915
2302
|
function LogInIcon2(_a, ref) {
|
|
1916
2303
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1917
|
-
return /* @__PURE__ */
|
|
2304
|
+
return /* @__PURE__ */ jsxs30(
|
|
1918
2305
|
"svg",
|
|
1919
2306
|
__spreadProps(__spreadValues({
|
|
1920
2307
|
ref,
|
|
@@ -1926,7 +2313,7 @@ var LogInIcon = forwardRef40(
|
|
|
1926
2313
|
className
|
|
1927
2314
|
}, other), {
|
|
1928
2315
|
children: [
|
|
1929
|
-
duotone && /* @__PURE__ */
|
|
2316
|
+
duotone && /* @__PURE__ */ jsx49(
|
|
1930
2317
|
"path",
|
|
1931
2318
|
{
|
|
1932
2319
|
opacity: "0.12",
|
|
@@ -1934,7 +2321,7 @@ var LogInIcon = forwardRef40(
|
|
|
1934
2321
|
fill: "currentColor"
|
|
1935
2322
|
}
|
|
1936
2323
|
),
|
|
1937
|
-
/* @__PURE__ */
|
|
2324
|
+
/* @__PURE__ */ jsx49(
|
|
1938
2325
|
"path",
|
|
1939
2326
|
{
|
|
1940
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",
|
|
@@ -1951,12 +2338,12 @@ var LogInIcon = forwardRef40(
|
|
|
1951
2338
|
);
|
|
1952
2339
|
|
|
1953
2340
|
// src/icons/magicWand.tsx
|
|
1954
|
-
import { forwardRef as
|
|
1955
|
-
import { jsx as
|
|
1956
|
-
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(
|
|
1957
2344
|
function MagicWandIcon2(_a, ref) {
|
|
1958
2345
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1959
|
-
return /* @__PURE__ */
|
|
2346
|
+
return /* @__PURE__ */ jsxs31(
|
|
1960
2347
|
"svg",
|
|
1961
2348
|
__spreadProps(__spreadValues({
|
|
1962
2349
|
ref,
|
|
@@ -1968,7 +2355,7 @@ var MagicWandIcon = forwardRef41(
|
|
|
1968
2355
|
className
|
|
1969
2356
|
}, other), {
|
|
1970
2357
|
children: [
|
|
1971
|
-
duotone && /* @__PURE__ */
|
|
2358
|
+
duotone && /* @__PURE__ */ jsx50(
|
|
1972
2359
|
"path",
|
|
1973
2360
|
{
|
|
1974
2361
|
opacity: "0.12",
|
|
@@ -1976,7 +2363,7 @@ var MagicWandIcon = forwardRef41(
|
|
|
1976
2363
|
fill: "currentColor"
|
|
1977
2364
|
}
|
|
1978
2365
|
),
|
|
1979
|
-
/* @__PURE__ */
|
|
2366
|
+
/* @__PURE__ */ jsx50(
|
|
1980
2367
|
"path",
|
|
1981
2368
|
{
|
|
1982
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",
|
|
@@ -1993,11 +2380,11 @@ var MagicWandIcon = forwardRef41(
|
|
|
1993
2380
|
);
|
|
1994
2381
|
|
|
1995
2382
|
// src/icons/mail.tsx
|
|
1996
|
-
import { forwardRef as
|
|
1997
|
-
import { jsx as
|
|
1998
|
-
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) {
|
|
1999
2386
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2000
|
-
return /* @__PURE__ */
|
|
2387
|
+
return /* @__PURE__ */ jsxs32(
|
|
2001
2388
|
"svg",
|
|
2002
2389
|
__spreadProps(__spreadValues({
|
|
2003
2390
|
ref,
|
|
@@ -2009,7 +2396,7 @@ var MailIcon = forwardRef42(function MailIcon2(_a, ref) {
|
|
|
2009
2396
|
className
|
|
2010
2397
|
}, other), {
|
|
2011
2398
|
children: [
|
|
2012
|
-
duotone && /* @__PURE__ */
|
|
2399
|
+
duotone && /* @__PURE__ */ jsx51(
|
|
2013
2400
|
"path",
|
|
2014
2401
|
{
|
|
2015
2402
|
opacity: "0.12",
|
|
@@ -2017,7 +2404,7 @@ var MailIcon = forwardRef42(function MailIcon2(_a, ref) {
|
|
|
2017
2404
|
fill: "currentColor"
|
|
2018
2405
|
}
|
|
2019
2406
|
),
|
|
2020
|
-
/* @__PURE__ */
|
|
2407
|
+
/* @__PURE__ */ jsx51(
|
|
2021
2408
|
"path",
|
|
2022
2409
|
{
|
|
2023
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",
|
|
@@ -2033,11 +2420,11 @@ var MailIcon = forwardRef42(function MailIcon2(_a, ref) {
|
|
|
2033
2420
|
});
|
|
2034
2421
|
|
|
2035
2422
|
// src/icons/menu.tsx
|
|
2036
|
-
import { forwardRef as
|
|
2037
|
-
import { jsx as
|
|
2038
|
-
var MenuIcon =
|
|
2039
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
2040
|
-
return /* @__PURE__ */
|
|
2423
|
+
import { forwardRef as forwardRef50 } from "react";
|
|
2424
|
+
import { jsx as jsx52 } from "react/jsx-runtime";
|
|
2425
|
+
var MenuIcon = forwardRef50(function MenuIcon2(_a, ref) {
|
|
2426
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2427
|
+
return /* @__PURE__ */ jsx52(
|
|
2041
2428
|
"svg",
|
|
2042
2429
|
__spreadProps(__spreadValues({
|
|
2043
2430
|
ref,
|
|
@@ -2048,7 +2435,7 @@ var MenuIcon = forwardRef43(function MenuIcon2(_a, ref) {
|
|
|
2048
2435
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2049
2436
|
className
|
|
2050
2437
|
}, other), {
|
|
2051
|
-
children: /* @__PURE__ */
|
|
2438
|
+
children: /* @__PURE__ */ jsx52(
|
|
2052
2439
|
"path",
|
|
2053
2440
|
{
|
|
2054
2441
|
d: "M3 12H21M3 6H21M3 18H21",
|
|
@@ -2063,12 +2450,12 @@ var MenuIcon = forwardRef43(function MenuIcon2(_a, ref) {
|
|
|
2063
2450
|
});
|
|
2064
2451
|
|
|
2065
2452
|
// src/icons/messageChatSquare.tsx
|
|
2066
|
-
import { forwardRef as
|
|
2067
|
-
import { jsx as
|
|
2068
|
-
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(
|
|
2069
2456
|
function MessageChatSquareIcon2(_a, ref) {
|
|
2070
2457
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2071
|
-
return /* @__PURE__ */
|
|
2458
|
+
return /* @__PURE__ */ jsxs33(
|
|
2072
2459
|
"svg",
|
|
2073
2460
|
__spreadProps(__spreadValues({
|
|
2074
2461
|
ref,
|
|
@@ -2080,7 +2467,7 @@ var MessageChatSquareIcon = forwardRef44(
|
|
|
2080
2467
|
className
|
|
2081
2468
|
}, other), {
|
|
2082
2469
|
children: [
|
|
2083
|
-
duotone && /* @__PURE__ */
|
|
2470
|
+
duotone && /* @__PURE__ */ jsx53(
|
|
2084
2471
|
"path",
|
|
2085
2472
|
{
|
|
2086
2473
|
opacity: "0.12",
|
|
@@ -2088,7 +2475,7 @@ var MessageChatSquareIcon = forwardRef44(
|
|
|
2088
2475
|
fill: "currentColor"
|
|
2089
2476
|
}
|
|
2090
2477
|
),
|
|
2091
|
-
/* @__PURE__ */
|
|
2478
|
+
/* @__PURE__ */ jsx53(
|
|
2092
2479
|
"path",
|
|
2093
2480
|
{
|
|
2094
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",
|
|
@@ -2105,12 +2492,12 @@ var MessageChatSquareIcon = forwardRef44(
|
|
|
2105
2492
|
);
|
|
2106
2493
|
|
|
2107
2494
|
// src/icons/messagePlusSquare.tsx
|
|
2108
|
-
import { forwardRef as
|
|
2109
|
-
import { jsx as
|
|
2110
|
-
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(
|
|
2111
2498
|
function MessagePlusSquareIcon2(_a, ref) {
|
|
2112
2499
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2113
|
-
return /* @__PURE__ */
|
|
2500
|
+
return /* @__PURE__ */ jsxs34(
|
|
2114
2501
|
"svg",
|
|
2115
2502
|
__spreadProps(__spreadValues({
|
|
2116
2503
|
ref,
|
|
@@ -2122,7 +2509,7 @@ var MessagePlusSquareIcon = forwardRef45(
|
|
|
2122
2509
|
className
|
|
2123
2510
|
}, other), {
|
|
2124
2511
|
children: [
|
|
2125
|
-
duotone && /* @__PURE__ */
|
|
2512
|
+
duotone && /* @__PURE__ */ jsx54(
|
|
2126
2513
|
"path",
|
|
2127
2514
|
{
|
|
2128
2515
|
opacity: "0.12",
|
|
@@ -2130,7 +2517,7 @@ var MessagePlusSquareIcon = forwardRef45(
|
|
|
2130
2517
|
fill: "currentColor"
|
|
2131
2518
|
}
|
|
2132
2519
|
),
|
|
2133
|
-
/* @__PURE__ */
|
|
2520
|
+
/* @__PURE__ */ jsx54(
|
|
2134
2521
|
"path",
|
|
2135
2522
|
{
|
|
2136
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",
|
|
@@ -2147,12 +2534,12 @@ var MessagePlusSquareIcon = forwardRef45(
|
|
|
2147
2534
|
);
|
|
2148
2535
|
|
|
2149
2536
|
// src/icons/messageTextSquare.tsx
|
|
2150
|
-
import { forwardRef as
|
|
2151
|
-
import { jsx as
|
|
2152
|
-
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(
|
|
2153
2540
|
function MessageTextSquareIcon2(_a, ref) {
|
|
2154
2541
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2155
|
-
return /* @__PURE__ */
|
|
2542
|
+
return /* @__PURE__ */ jsxs35(
|
|
2156
2543
|
"svg",
|
|
2157
2544
|
__spreadProps(__spreadValues({
|
|
2158
2545
|
ref,
|
|
@@ -2164,7 +2551,7 @@ var MessageTextSquareIcon = forwardRef46(
|
|
|
2164
2551
|
className
|
|
2165
2552
|
}, other), {
|
|
2166
2553
|
children: [
|
|
2167
|
-
duotone && /* @__PURE__ */
|
|
2554
|
+
duotone && /* @__PURE__ */ jsx55(
|
|
2168
2555
|
"path",
|
|
2169
2556
|
{
|
|
2170
2557
|
opacity: "0.12",
|
|
@@ -2172,7 +2559,7 @@ var MessageTextSquareIcon = forwardRef46(
|
|
|
2172
2559
|
fill: "currentColor"
|
|
2173
2560
|
}
|
|
2174
2561
|
),
|
|
2175
|
-
/* @__PURE__ */
|
|
2562
|
+
/* @__PURE__ */ jsx55(
|
|
2176
2563
|
"path",
|
|
2177
2564
|
{
|
|
2178
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",
|
|
@@ -2189,12 +2576,12 @@ var MessageTextSquareIcon = forwardRef46(
|
|
|
2189
2576
|
);
|
|
2190
2577
|
|
|
2191
2578
|
// src/icons/microphone.tsx
|
|
2192
|
-
import { forwardRef as
|
|
2193
|
-
import { jsx as
|
|
2194
|
-
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(
|
|
2195
2582
|
function MicrophoneIcon2(_a, ref) {
|
|
2196
2583
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2197
|
-
return /* @__PURE__ */
|
|
2584
|
+
return /* @__PURE__ */ jsxs36(
|
|
2198
2585
|
"svg",
|
|
2199
2586
|
__spreadProps(__spreadValues({
|
|
2200
2587
|
ref,
|
|
@@ -2206,7 +2593,7 @@ var MicrophoneIcon = forwardRef47(
|
|
|
2206
2593
|
className
|
|
2207
2594
|
}, other), {
|
|
2208
2595
|
children: [
|
|
2209
|
-
duotone && /* @__PURE__ */
|
|
2596
|
+
duotone && /* @__PURE__ */ jsx56(
|
|
2210
2597
|
"path",
|
|
2211
2598
|
{
|
|
2212
2599
|
opacity: "0.12",
|
|
@@ -2214,7 +2601,7 @@ var MicrophoneIcon = forwardRef47(
|
|
|
2214
2601
|
fill: "currentColor"
|
|
2215
2602
|
}
|
|
2216
2603
|
),
|
|
2217
|
-
/* @__PURE__ */
|
|
2604
|
+
/* @__PURE__ */ jsx56(
|
|
2218
2605
|
"path",
|
|
2219
2606
|
{
|
|
2220
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",
|
|
@@ -2231,12 +2618,12 @@ var MicrophoneIcon = forwardRef47(
|
|
|
2231
2618
|
);
|
|
2232
2619
|
|
|
2233
2620
|
// src/icons/microphoneOff.tsx
|
|
2234
|
-
import { forwardRef as
|
|
2235
|
-
import { jsx as
|
|
2236
|
-
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(
|
|
2237
2624
|
function MicrophoneOffIcon2(_a, ref) {
|
|
2238
2625
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2239
|
-
return /* @__PURE__ */
|
|
2626
|
+
return /* @__PURE__ */ jsxs37(
|
|
2240
2627
|
"svg",
|
|
2241
2628
|
__spreadProps(__spreadValues({
|
|
2242
2629
|
ref,
|
|
@@ -2248,7 +2635,7 @@ var MicrophoneOffIcon = forwardRef48(
|
|
|
2248
2635
|
className
|
|
2249
2636
|
}, other), {
|
|
2250
2637
|
children: [
|
|
2251
|
-
duotone && /* @__PURE__ */
|
|
2638
|
+
duotone && /* @__PURE__ */ jsx57(
|
|
2252
2639
|
"path",
|
|
2253
2640
|
{
|
|
2254
2641
|
opacity: "0.12",
|
|
@@ -2256,7 +2643,7 @@ var MicrophoneOffIcon = forwardRef48(
|
|
|
2256
2643
|
fill: "currentColor"
|
|
2257
2644
|
}
|
|
2258
2645
|
),
|
|
2259
|
-
/* @__PURE__ */
|
|
2646
|
+
/* @__PURE__ */ jsx57(
|
|
2260
2647
|
"path",
|
|
2261
2648
|
{
|
|
2262
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",
|
|
@@ -2273,12 +2660,12 @@ var MicrophoneOffIcon = forwardRef48(
|
|
|
2273
2660
|
);
|
|
2274
2661
|
|
|
2275
2662
|
// src/icons/monitor.tsx
|
|
2276
|
-
import { forwardRef as
|
|
2277
|
-
import { jsx as
|
|
2278
|
-
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(
|
|
2279
2666
|
function MonitorIcon2(_a, ref) {
|
|
2280
2667
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2281
|
-
return /* @__PURE__ */
|
|
2668
|
+
return /* @__PURE__ */ jsxs38(
|
|
2282
2669
|
"svg",
|
|
2283
2670
|
__spreadProps(__spreadValues({
|
|
2284
2671
|
ref,
|
|
@@ -2290,7 +2677,7 @@ var MonitorIcon = forwardRef49(
|
|
|
2290
2677
|
className
|
|
2291
2678
|
}, other), {
|
|
2292
2679
|
children: [
|
|
2293
|
-
duotone && /* @__PURE__ */
|
|
2680
|
+
duotone && /* @__PURE__ */ jsx58(
|
|
2294
2681
|
"path",
|
|
2295
2682
|
{
|
|
2296
2683
|
opacity: "0.12",
|
|
@@ -2298,7 +2685,7 @@ var MonitorIcon = forwardRef49(
|
|
|
2298
2685
|
fill: "currentColor"
|
|
2299
2686
|
}
|
|
2300
2687
|
),
|
|
2301
|
-
/* @__PURE__ */
|
|
2688
|
+
/* @__PURE__ */ jsx58(
|
|
2302
2689
|
"path",
|
|
2303
2690
|
{
|
|
2304
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",
|
|
@@ -2315,12 +2702,12 @@ var MonitorIcon = forwardRef49(
|
|
|
2315
2702
|
);
|
|
2316
2703
|
|
|
2317
2704
|
// src/icons/notificationBox.tsx
|
|
2318
|
-
import { forwardRef as
|
|
2319
|
-
import { jsx as
|
|
2320
|
-
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(
|
|
2321
2708
|
function NotificationBoxIcon2(_a, ref) {
|
|
2322
2709
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2323
|
-
return /* @__PURE__ */
|
|
2710
|
+
return /* @__PURE__ */ jsxs39(
|
|
2324
2711
|
"svg",
|
|
2325
2712
|
__spreadProps(__spreadValues({
|
|
2326
2713
|
ref,
|
|
@@ -2332,7 +2719,7 @@ var NotificationBoxIcon = forwardRef50(
|
|
|
2332
2719
|
className
|
|
2333
2720
|
}, other), {
|
|
2334
2721
|
children: [
|
|
2335
|
-
duotone && /* @__PURE__ */
|
|
2722
|
+
duotone && /* @__PURE__ */ jsx59(
|
|
2336
2723
|
"path",
|
|
2337
2724
|
{
|
|
2338
2725
|
opacity: "0.12",
|
|
@@ -2340,7 +2727,7 @@ var NotificationBoxIcon = forwardRef50(
|
|
|
2340
2727
|
fill: "currentColor"
|
|
2341
2728
|
}
|
|
2342
2729
|
),
|
|
2343
|
-
/* @__PURE__ */
|
|
2730
|
+
/* @__PURE__ */ jsx59(
|
|
2344
2731
|
"path",
|
|
2345
2732
|
{
|
|
2346
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",
|
|
@@ -2357,12 +2744,12 @@ var NotificationBoxIcon = forwardRef50(
|
|
|
2357
2744
|
);
|
|
2358
2745
|
|
|
2359
2746
|
// src/icons/pauseCircle.tsx
|
|
2360
|
-
import { forwardRef as
|
|
2361
|
-
import { jsx as
|
|
2362
|
-
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(
|
|
2363
2750
|
function PauseCircleIcon2(_a, ref) {
|
|
2364
2751
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2365
|
-
return /* @__PURE__ */
|
|
2752
|
+
return /* @__PURE__ */ jsxs40(
|
|
2366
2753
|
"svg",
|
|
2367
2754
|
__spreadProps(__spreadValues({
|
|
2368
2755
|
ref,
|
|
@@ -2374,7 +2761,7 @@ var PauseCircleIcon = forwardRef51(
|
|
|
2374
2761
|
className
|
|
2375
2762
|
}, other), {
|
|
2376
2763
|
children: [
|
|
2377
|
-
duotone && /* @__PURE__ */
|
|
2764
|
+
duotone && /* @__PURE__ */ jsx60(
|
|
2378
2765
|
"path",
|
|
2379
2766
|
{
|
|
2380
2767
|
opacity: "0.12",
|
|
@@ -2382,7 +2769,7 @@ var PauseCircleIcon = forwardRef51(
|
|
|
2382
2769
|
fill: "currentColor"
|
|
2383
2770
|
}
|
|
2384
2771
|
),
|
|
2385
|
-
/* @__PURE__ */
|
|
2772
|
+
/* @__PURE__ */ jsx60(
|
|
2386
2773
|
"path",
|
|
2387
2774
|
{
|
|
2388
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",
|
|
@@ -2399,12 +2786,12 @@ var PauseCircleIcon = forwardRef51(
|
|
|
2399
2786
|
);
|
|
2400
2787
|
|
|
2401
2788
|
// src/icons/phone.tsx
|
|
2402
|
-
import { forwardRef as
|
|
2403
|
-
import { jsx as
|
|
2404
|
-
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(
|
|
2405
2792
|
function PhoneIcon2(_a, ref) {
|
|
2406
2793
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2407
|
-
return /* @__PURE__ */
|
|
2794
|
+
return /* @__PURE__ */ jsxs41(
|
|
2408
2795
|
"svg",
|
|
2409
2796
|
__spreadProps(__spreadValues({
|
|
2410
2797
|
ref,
|
|
@@ -2416,7 +2803,7 @@ var PhoneIcon = forwardRef52(
|
|
|
2416
2803
|
className
|
|
2417
2804
|
}, other), {
|
|
2418
2805
|
children: [
|
|
2419
|
-
duotone && /* @__PURE__ */
|
|
2806
|
+
duotone && /* @__PURE__ */ jsx61(
|
|
2420
2807
|
"path",
|
|
2421
2808
|
{
|
|
2422
2809
|
opacity: "0.12",
|
|
@@ -2424,7 +2811,7 @@ var PhoneIcon = forwardRef52(
|
|
|
2424
2811
|
fill: "currentColor"
|
|
2425
2812
|
}
|
|
2426
2813
|
),
|
|
2427
|
-
/* @__PURE__ */
|
|
2814
|
+
/* @__PURE__ */ jsx61(
|
|
2428
2815
|
"path",
|
|
2429
2816
|
{
|
|
2430
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",
|
|
@@ -2441,12 +2828,12 @@ var PhoneIcon = forwardRef52(
|
|
|
2441
2828
|
);
|
|
2442
2829
|
|
|
2443
2830
|
// src/icons/phoneCall.tsx
|
|
2444
|
-
import { forwardRef as
|
|
2445
|
-
import { jsx as
|
|
2446
|
-
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(
|
|
2447
2834
|
function PhoneCallIcon2(_a, ref) {
|
|
2448
2835
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2449
|
-
return /* @__PURE__ */
|
|
2836
|
+
return /* @__PURE__ */ jsxs42(
|
|
2450
2837
|
"svg",
|
|
2451
2838
|
__spreadProps(__spreadValues({
|
|
2452
2839
|
ref,
|
|
@@ -2458,7 +2845,7 @@ var PhoneCallIcon = forwardRef53(
|
|
|
2458
2845
|
className
|
|
2459
2846
|
}, other), {
|
|
2460
2847
|
children: [
|
|
2461
|
-
duotone && /* @__PURE__ */
|
|
2848
|
+
duotone && /* @__PURE__ */ jsx62(
|
|
2462
2849
|
"path",
|
|
2463
2850
|
{
|
|
2464
2851
|
opacity: "0.12",
|
|
@@ -2466,7 +2853,7 @@ var PhoneCallIcon = forwardRef53(
|
|
|
2466
2853
|
fill: "currentColor"
|
|
2467
2854
|
}
|
|
2468
2855
|
),
|
|
2469
|
-
/* @__PURE__ */
|
|
2856
|
+
/* @__PURE__ */ jsx62(
|
|
2470
2857
|
"path",
|
|
2471
2858
|
{
|
|
2472
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",
|
|
@@ -2483,12 +2870,12 @@ var PhoneCallIcon = forwardRef53(
|
|
|
2483
2870
|
);
|
|
2484
2871
|
|
|
2485
2872
|
// src/icons/pieChart.tsx
|
|
2486
|
-
import { forwardRef as
|
|
2487
|
-
import { jsx as
|
|
2488
|
-
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(
|
|
2489
2876
|
function PieChartIcon2(_a, ref) {
|
|
2490
2877
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2491
|
-
return /* @__PURE__ */
|
|
2878
|
+
return /* @__PURE__ */ jsxs43(
|
|
2492
2879
|
"svg",
|
|
2493
2880
|
__spreadProps(__spreadValues({
|
|
2494
2881
|
ref,
|
|
@@ -2500,7 +2887,7 @@ var PieChartIcon = forwardRef54(
|
|
|
2500
2887
|
className
|
|
2501
2888
|
}, other), {
|
|
2502
2889
|
children: [
|
|
2503
|
-
duotone && /* @__PURE__ */
|
|
2890
|
+
duotone && /* @__PURE__ */ jsx63(
|
|
2504
2891
|
"path",
|
|
2505
2892
|
{
|
|
2506
2893
|
opacity: "0.12",
|
|
@@ -2508,7 +2895,7 @@ var PieChartIcon = forwardRef54(
|
|
|
2508
2895
|
fill: "currentColor"
|
|
2509
2896
|
}
|
|
2510
2897
|
),
|
|
2511
|
-
/* @__PURE__ */
|
|
2898
|
+
/* @__PURE__ */ jsx63(
|
|
2512
2899
|
"path",
|
|
2513
2900
|
{
|
|
2514
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",
|
|
@@ -2519,7 +2906,7 @@ var PieChartIcon = forwardRef54(
|
|
|
2519
2906
|
}
|
|
2520
2907
|
),
|
|
2521
2908
|
",",
|
|
2522
|
-
/* @__PURE__ */
|
|
2909
|
+
/* @__PURE__ */ jsx63(
|
|
2523
2910
|
"path",
|
|
2524
2911
|
{
|
|
2525
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",
|
|
@@ -2535,13 +2922,42 @@ var PieChartIcon = forwardRef54(
|
|
|
2535
2922
|
}
|
|
2536
2923
|
);
|
|
2537
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
|
+
|
|
2538
2954
|
// src/icons/playCircle.tsx
|
|
2539
|
-
import { forwardRef as
|
|
2540
|
-
import { jsx as
|
|
2541
|
-
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(
|
|
2542
2958
|
function PlayCircleIcon2(_a, ref) {
|
|
2543
2959
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2544
|
-
return /* @__PURE__ */
|
|
2960
|
+
return /* @__PURE__ */ jsxs44(
|
|
2545
2961
|
"svg",
|
|
2546
2962
|
__spreadProps(__spreadValues({
|
|
2547
2963
|
ref,
|
|
@@ -2553,7 +2969,7 @@ var PlayCircleIcon = forwardRef55(
|
|
|
2553
2969
|
className
|
|
2554
2970
|
}, other), {
|
|
2555
2971
|
children: [
|
|
2556
|
-
duotone && /* @__PURE__ */
|
|
2972
|
+
duotone && /* @__PURE__ */ jsx65(
|
|
2557
2973
|
"path",
|
|
2558
2974
|
{
|
|
2559
2975
|
opacity: "0.12",
|
|
@@ -2561,7 +2977,7 @@ var PlayCircleIcon = forwardRef55(
|
|
|
2561
2977
|
fill: "currentColor"
|
|
2562
2978
|
}
|
|
2563
2979
|
),
|
|
2564
|
-
/* @__PURE__ */
|
|
2980
|
+
/* @__PURE__ */ jsx65(
|
|
2565
2981
|
"path",
|
|
2566
2982
|
{
|
|
2567
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",
|
|
@@ -2572,7 +2988,7 @@ var PlayCircleIcon = forwardRef55(
|
|
|
2572
2988
|
}
|
|
2573
2989
|
),
|
|
2574
2990
|
",",
|
|
2575
|
-
/* @__PURE__ */
|
|
2991
|
+
/* @__PURE__ */ jsx65(
|
|
2576
2992
|
"path",
|
|
2577
2993
|
{
|
|
2578
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",
|
|
@@ -2589,11 +3005,11 @@ var PlayCircleIcon = forwardRef55(
|
|
|
2589
3005
|
);
|
|
2590
3006
|
|
|
2591
3007
|
// src/icons/plus.tsx
|
|
2592
|
-
import { forwardRef as
|
|
2593
|
-
import { jsx as
|
|
2594
|
-
var PlusIcon =
|
|
2595
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
2596
|
-
return /* @__PURE__ */
|
|
3008
|
+
import { forwardRef as forwardRef64 } from "react";
|
|
3009
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
3010
|
+
var PlusIcon = forwardRef64(function PlusIcon2(_a, ref) {
|
|
3011
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3012
|
+
return /* @__PURE__ */ jsx66(
|
|
2597
3013
|
"svg",
|
|
2598
3014
|
__spreadProps(__spreadValues({
|
|
2599
3015
|
ref,
|
|
@@ -2604,7 +3020,7 @@ var PlusIcon = forwardRef56(function PlusIcon2(_a, ref) {
|
|
|
2604
3020
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2605
3021
|
className
|
|
2606
3022
|
}, other), {
|
|
2607
|
-
children: /* @__PURE__ */
|
|
3023
|
+
children: /* @__PURE__ */ jsx66(
|
|
2608
3024
|
"path",
|
|
2609
3025
|
{
|
|
2610
3026
|
d: "M12 5V19M5 12H19",
|
|
@@ -2619,12 +3035,12 @@ var PlusIcon = forwardRef56(function PlusIcon2(_a, ref) {
|
|
|
2619
3035
|
});
|
|
2620
3036
|
|
|
2621
3037
|
// src/icons/plusCircle.tsx
|
|
2622
|
-
import { forwardRef as
|
|
2623
|
-
import { jsx as
|
|
2624
|
-
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(
|
|
2625
3041
|
function PlusCircleIcon2(_a, ref) {
|
|
2626
3042
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2627
|
-
return /* @__PURE__ */
|
|
3043
|
+
return /* @__PURE__ */ jsxs45(
|
|
2628
3044
|
"svg",
|
|
2629
3045
|
__spreadProps(__spreadValues({
|
|
2630
3046
|
ref,
|
|
@@ -2636,7 +3052,7 @@ var PlusCircleIcon = forwardRef57(
|
|
|
2636
3052
|
className
|
|
2637
3053
|
}, other), {
|
|
2638
3054
|
children: [
|
|
2639
|
-
duotone && /* @__PURE__ */
|
|
3055
|
+
duotone && /* @__PURE__ */ jsx67(
|
|
2640
3056
|
"path",
|
|
2641
3057
|
{
|
|
2642
3058
|
opacity: "0.12",
|
|
@@ -2644,7 +3060,7 @@ var PlusCircleIcon = forwardRef57(
|
|
|
2644
3060
|
fill: "currentColor"
|
|
2645
3061
|
}
|
|
2646
3062
|
),
|
|
2647
|
-
/* @__PURE__ */
|
|
3063
|
+
/* @__PURE__ */ jsx67(
|
|
2648
3064
|
"path",
|
|
2649
3065
|
{
|
|
2650
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",
|
|
@@ -2661,12 +3077,12 @@ var PlusCircleIcon = forwardRef57(
|
|
|
2661
3077
|
);
|
|
2662
3078
|
|
|
2663
3079
|
// src/icons/puzzlePiece.tsx
|
|
2664
|
-
import { forwardRef as
|
|
2665
|
-
import { jsx as
|
|
2666
|
-
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(
|
|
2667
3083
|
function PuzzlePieceIcon2(_a, ref) {
|
|
2668
3084
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2669
|
-
return /* @__PURE__ */
|
|
3085
|
+
return /* @__PURE__ */ jsxs46(
|
|
2670
3086
|
"svg",
|
|
2671
3087
|
__spreadProps(__spreadValues({
|
|
2672
3088
|
ref,
|
|
@@ -2678,7 +3094,7 @@ var PuzzlePieceIcon = forwardRef58(
|
|
|
2678
3094
|
className
|
|
2679
3095
|
}, other), {
|
|
2680
3096
|
children: [
|
|
2681
|
-
duotone && /* @__PURE__ */
|
|
3097
|
+
duotone && /* @__PURE__ */ jsx68(
|
|
2682
3098
|
"path",
|
|
2683
3099
|
{
|
|
2684
3100
|
opacity: "0.12",
|
|
@@ -2686,7 +3102,7 @@ var PuzzlePieceIcon = forwardRef58(
|
|
|
2686
3102
|
fill: "currentColor"
|
|
2687
3103
|
}
|
|
2688
3104
|
),
|
|
2689
|
-
/* @__PURE__ */
|
|
3105
|
+
/* @__PURE__ */ jsx68(
|
|
2690
3106
|
"path",
|
|
2691
3107
|
{
|
|
2692
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",
|
|
@@ -2703,12 +3119,12 @@ var PuzzlePieceIcon = forwardRef58(
|
|
|
2703
3119
|
);
|
|
2704
3120
|
|
|
2705
3121
|
// src/icons/qrCode.tsx
|
|
2706
|
-
import { forwardRef as
|
|
2707
|
-
import { jsx as
|
|
2708
|
-
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(
|
|
2709
3125
|
function QrCodeIcon2(_a, ref) {
|
|
2710
3126
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2711
|
-
return /* @__PURE__ */
|
|
3127
|
+
return /* @__PURE__ */ jsxs47(
|
|
2712
3128
|
"svg",
|
|
2713
3129
|
__spreadProps(__spreadValues({
|
|
2714
3130
|
ref,
|
|
@@ -2720,7 +3136,7 @@ var QrCodeIcon = forwardRef59(
|
|
|
2720
3136
|
className
|
|
2721
3137
|
}, other), {
|
|
2722
3138
|
children: [
|
|
2723
|
-
duotone && /* @__PURE__ */
|
|
3139
|
+
duotone && /* @__PURE__ */ jsx69(
|
|
2724
3140
|
"path",
|
|
2725
3141
|
{
|
|
2726
3142
|
opacity: "0.4",
|
|
@@ -2731,7 +3147,7 @@ var QrCodeIcon = forwardRef59(
|
|
|
2731
3147
|
strokeLinejoin: "round"
|
|
2732
3148
|
}
|
|
2733
3149
|
),
|
|
2734
|
-
/* @__PURE__ */
|
|
3150
|
+
/* @__PURE__ */ jsx69(
|
|
2735
3151
|
"path",
|
|
2736
3152
|
{
|
|
2737
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",
|
|
@@ -2748,12 +3164,12 @@ var QrCodeIcon = forwardRef59(
|
|
|
2748
3164
|
);
|
|
2749
3165
|
|
|
2750
3166
|
// src/icons/receiptCheck.tsx
|
|
2751
|
-
import { forwardRef as
|
|
2752
|
-
import { jsx as
|
|
2753
|
-
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(
|
|
2754
3170
|
function ReceiptCheckIcon2(_a, ref) {
|
|
2755
3171
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2756
|
-
return /* @__PURE__ */
|
|
3172
|
+
return /* @__PURE__ */ jsxs48(
|
|
2757
3173
|
"svg",
|
|
2758
3174
|
__spreadProps(__spreadValues({
|
|
2759
3175
|
ref,
|
|
@@ -2765,7 +3181,7 @@ var ReceiptCheckIcon = forwardRef60(
|
|
|
2765
3181
|
className
|
|
2766
3182
|
}, other), {
|
|
2767
3183
|
children: [
|
|
2768
|
-
duotone && /* @__PURE__ */
|
|
3184
|
+
duotone && /* @__PURE__ */ jsx70(
|
|
2769
3185
|
"path",
|
|
2770
3186
|
{
|
|
2771
3187
|
opacity: "0.12",
|
|
@@ -2773,7 +3189,7 @@ var ReceiptCheckIcon = forwardRef60(
|
|
|
2773
3189
|
fill: "currentColor"
|
|
2774
3190
|
}
|
|
2775
3191
|
),
|
|
2776
|
-
/* @__PURE__ */
|
|
3192
|
+
/* @__PURE__ */ jsx70(
|
|
2777
3193
|
"path",
|
|
2778
3194
|
{
|
|
2779
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",
|
|
@@ -2790,12 +3206,12 @@ var ReceiptCheckIcon = forwardRef60(
|
|
|
2790
3206
|
);
|
|
2791
3207
|
|
|
2792
3208
|
// src/icons/recording.tsx
|
|
2793
|
-
import { forwardRef as
|
|
2794
|
-
import { jsx as
|
|
2795
|
-
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(
|
|
2796
3212
|
function RecordingIcon2(_a, ref) {
|
|
2797
3213
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2798
|
-
return /* @__PURE__ */
|
|
3214
|
+
return /* @__PURE__ */ jsxs49(
|
|
2799
3215
|
"svg",
|
|
2800
3216
|
__spreadProps(__spreadValues({
|
|
2801
3217
|
ref,
|
|
@@ -2807,7 +3223,7 @@ var RecordingIcon = forwardRef61(
|
|
|
2807
3223
|
className
|
|
2808
3224
|
}, other), {
|
|
2809
3225
|
children: [
|
|
2810
|
-
duotone && /* @__PURE__ */
|
|
3226
|
+
duotone && /* @__PURE__ */ jsx71(
|
|
2811
3227
|
"path",
|
|
2812
3228
|
{
|
|
2813
3229
|
opacity: "0.12",
|
|
@@ -2815,7 +3231,7 @@ var RecordingIcon = forwardRef61(
|
|
|
2815
3231
|
fill: "currentColor"
|
|
2816
3232
|
}
|
|
2817
3233
|
),
|
|
2818
|
-
/* @__PURE__ */
|
|
3234
|
+
/* @__PURE__ */ jsx71(
|
|
2819
3235
|
"path",
|
|
2820
3236
|
{
|
|
2821
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",
|
|
@@ -2832,12 +3248,12 @@ var RecordingIcon = forwardRef61(
|
|
|
2832
3248
|
);
|
|
2833
3249
|
|
|
2834
3250
|
// src/icons/refreshCcw.tsx
|
|
2835
|
-
import { forwardRef as
|
|
2836
|
-
import { jsx as
|
|
2837
|
-
var RefreshCcwIcon =
|
|
3251
|
+
import { forwardRef as forwardRef70 } from "react";
|
|
3252
|
+
import { jsx as jsx72 } from "react/jsx-runtime";
|
|
3253
|
+
var RefreshCcwIcon = forwardRef70(
|
|
2838
3254
|
function RefreshCcwIcon2(_a, ref) {
|
|
2839
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
2840
|
-
return /* @__PURE__ */
|
|
3255
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3256
|
+
return /* @__PURE__ */ jsx72(
|
|
2841
3257
|
"svg",
|
|
2842
3258
|
__spreadProps(__spreadValues({
|
|
2843
3259
|
ref,
|
|
@@ -2848,7 +3264,7 @@ var RefreshCcwIcon = forwardRef62(
|
|
|
2848
3264
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2849
3265
|
className
|
|
2850
3266
|
}, other), {
|
|
2851
|
-
children: /* @__PURE__ */
|
|
3267
|
+
children: /* @__PURE__ */ jsx72(
|
|
2852
3268
|
"path",
|
|
2853
3269
|
{
|
|
2854
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",
|
|
@@ -2864,12 +3280,12 @@ var RefreshCcwIcon = forwardRef62(
|
|
|
2864
3280
|
);
|
|
2865
3281
|
|
|
2866
3282
|
// src/icons/refreshCw.tsx
|
|
2867
|
-
import { forwardRef as
|
|
2868
|
-
import { jsx as
|
|
2869
|
-
var RefreshCwIcon =
|
|
3283
|
+
import { forwardRef as forwardRef71 } from "react";
|
|
3284
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3285
|
+
var RefreshCwIcon = forwardRef71(
|
|
2870
3286
|
function RefreshCwIcon2(_a, ref) {
|
|
2871
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
2872
|
-
return /* @__PURE__ */
|
|
3287
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3288
|
+
return /* @__PURE__ */ jsx73(
|
|
2873
3289
|
"svg",
|
|
2874
3290
|
__spreadProps(__spreadValues({
|
|
2875
3291
|
ref,
|
|
@@ -2880,7 +3296,7 @@ var RefreshCwIcon = forwardRef63(
|
|
|
2880
3296
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2881
3297
|
className
|
|
2882
3298
|
}, other), {
|
|
2883
|
-
children: /* @__PURE__ */
|
|
3299
|
+
children: /* @__PURE__ */ jsx73(
|
|
2884
3300
|
"path",
|
|
2885
3301
|
{
|
|
2886
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",
|
|
@@ -2896,12 +3312,12 @@ var RefreshCwIcon = forwardRef63(
|
|
|
2896
3312
|
);
|
|
2897
3313
|
|
|
2898
3314
|
// src/icons/rocket.tsx
|
|
2899
|
-
import { forwardRef as
|
|
2900
|
-
import { jsx as
|
|
2901
|
-
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(
|
|
2902
3318
|
function RocketIcon2(_a, ref) {
|
|
2903
3319
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2904
|
-
return /* @__PURE__ */
|
|
3320
|
+
return /* @__PURE__ */ jsxs50(
|
|
2905
3321
|
"svg",
|
|
2906
3322
|
__spreadProps(__spreadValues({
|
|
2907
3323
|
ref,
|
|
@@ -2913,7 +3329,7 @@ var RocketIcon = forwardRef64(
|
|
|
2913
3329
|
className
|
|
2914
3330
|
}, other), {
|
|
2915
3331
|
children: [
|
|
2916
|
-
duotone && /* @__PURE__ */
|
|
3332
|
+
duotone && /* @__PURE__ */ jsx74(
|
|
2917
3333
|
"path",
|
|
2918
3334
|
{
|
|
2919
3335
|
opacity: "0.12",
|
|
@@ -2921,7 +3337,7 @@ var RocketIcon = forwardRef64(
|
|
|
2921
3337
|
fill: "currentColor"
|
|
2922
3338
|
}
|
|
2923
3339
|
),
|
|
2924
|
-
/* @__PURE__ */
|
|
3340
|
+
/* @__PURE__ */ jsx74(
|
|
2925
3341
|
"path",
|
|
2926
3342
|
{
|
|
2927
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",
|
|
@@ -2938,11 +3354,11 @@ var RocketIcon = forwardRef64(
|
|
|
2938
3354
|
);
|
|
2939
3355
|
|
|
2940
3356
|
// src/icons/save.tsx
|
|
2941
|
-
import { forwardRef as
|
|
2942
|
-
import { jsx as
|
|
2943
|
-
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) {
|
|
2944
3360
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2945
|
-
return /* @__PURE__ */
|
|
3361
|
+
return /* @__PURE__ */ jsxs51(
|
|
2946
3362
|
"svg",
|
|
2947
3363
|
__spreadProps(__spreadValues({
|
|
2948
3364
|
ref,
|
|
@@ -2954,15 +3370,15 @@ var SaveIcon = forwardRef65(function SaveIcon2(_a, ref) {
|
|
|
2954
3370
|
className
|
|
2955
3371
|
}, other), {
|
|
2956
3372
|
children: [
|
|
2957
|
-
duotone && /* @__PURE__ */
|
|
2958
|
-
/* @__PURE__ */
|
|
3373
|
+
duotone && /* @__PURE__ */ jsxs51("g", { opacity: "0.12", children: [
|
|
3374
|
+
/* @__PURE__ */ jsx75(
|
|
2959
3375
|
"path",
|
|
2960
3376
|
{
|
|
2961
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",
|
|
2962
3378
|
fill: "currentColor"
|
|
2963
3379
|
}
|
|
2964
3380
|
),
|
|
2965
|
-
/* @__PURE__ */
|
|
3381
|
+
/* @__PURE__ */ jsx75(
|
|
2966
3382
|
"path",
|
|
2967
3383
|
{
|
|
2968
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",
|
|
@@ -2970,7 +3386,7 @@ var SaveIcon = forwardRef65(function SaveIcon2(_a, ref) {
|
|
|
2970
3386
|
}
|
|
2971
3387
|
)
|
|
2972
3388
|
] }),
|
|
2973
|
-
/* @__PURE__ */
|
|
3389
|
+
/* @__PURE__ */ jsx75(
|
|
2974
3390
|
"path",
|
|
2975
3391
|
{
|
|
2976
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",
|
|
@@ -2986,12 +3402,12 @@ var SaveIcon = forwardRef65(function SaveIcon2(_a, ref) {
|
|
|
2986
3402
|
});
|
|
2987
3403
|
|
|
2988
3404
|
// src/icons/search.tsx
|
|
2989
|
-
import { forwardRef as
|
|
2990
|
-
import { jsx as
|
|
2991
|
-
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(
|
|
2992
3408
|
function SearchMdIcon2(_a, ref) {
|
|
2993
3409
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2994
|
-
return /* @__PURE__ */
|
|
3410
|
+
return /* @__PURE__ */ jsxs52(
|
|
2995
3411
|
"svg",
|
|
2996
3412
|
__spreadProps(__spreadValues({
|
|
2997
3413
|
ref,
|
|
@@ -3003,7 +3419,7 @@ var SearchMdIcon = forwardRef66(
|
|
|
3003
3419
|
className
|
|
3004
3420
|
}, other), {
|
|
3005
3421
|
children: [
|
|
3006
|
-
duotone && /* @__PURE__ */
|
|
3422
|
+
duotone && /* @__PURE__ */ jsx76(
|
|
3007
3423
|
"path",
|
|
3008
3424
|
{
|
|
3009
3425
|
opacity: "0.12",
|
|
@@ -3011,7 +3427,7 @@ var SearchMdIcon = forwardRef66(
|
|
|
3011
3427
|
fill: "currentColor"
|
|
3012
3428
|
}
|
|
3013
3429
|
),
|
|
3014
|
-
/* @__PURE__ */
|
|
3430
|
+
/* @__PURE__ */ jsx76(
|
|
3015
3431
|
"path",
|
|
3016
3432
|
{
|
|
3017
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",
|
|
@@ -3028,11 +3444,11 @@ var SearchMdIcon = forwardRef66(
|
|
|
3028
3444
|
);
|
|
3029
3445
|
|
|
3030
3446
|
// src/icons/send.tsx
|
|
3031
|
-
import { forwardRef as
|
|
3032
|
-
import { jsx as
|
|
3033
|
-
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) {
|
|
3034
3450
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3035
|
-
return /* @__PURE__ */
|
|
3451
|
+
return /* @__PURE__ */ jsxs53(
|
|
3036
3452
|
"svg",
|
|
3037
3453
|
__spreadProps(__spreadValues({
|
|
3038
3454
|
ref,
|
|
@@ -3044,7 +3460,7 @@ var SendIcon = forwardRef67(function SendIcon2(_a, ref) {
|
|
|
3044
3460
|
className
|
|
3045
3461
|
}, other), {
|
|
3046
3462
|
children: [
|
|
3047
|
-
duotone && /* @__PURE__ */
|
|
3463
|
+
duotone && /* @__PURE__ */ jsx77(
|
|
3048
3464
|
"path",
|
|
3049
3465
|
{
|
|
3050
3466
|
opacity: "0.12",
|
|
@@ -3052,7 +3468,7 @@ var SendIcon = forwardRef67(function SendIcon2(_a, ref) {
|
|
|
3052
3468
|
fill: "currentColor"
|
|
3053
3469
|
}
|
|
3054
3470
|
),
|
|
3055
|
-
/* @__PURE__ */
|
|
3471
|
+
/* @__PURE__ */ jsx77(
|
|
3056
3472
|
"path",
|
|
3057
3473
|
{
|
|
3058
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",
|
|
@@ -3068,12 +3484,12 @@ var SendIcon = forwardRef67(function SendIcon2(_a, ref) {
|
|
|
3068
3484
|
});
|
|
3069
3485
|
|
|
3070
3486
|
// src/icons/settings.tsx
|
|
3071
|
-
import { forwardRef as
|
|
3072
|
-
import { jsx as
|
|
3073
|
-
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(
|
|
3074
3490
|
function SettingsIcon2(_a, ref) {
|
|
3075
3491
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3076
|
-
return /* @__PURE__ */
|
|
3492
|
+
return /* @__PURE__ */ jsxs54(
|
|
3077
3493
|
"svg",
|
|
3078
3494
|
__spreadProps(__spreadValues({
|
|
3079
3495
|
ref,
|
|
@@ -3085,17 +3501,17 @@ var SettingsIcon = forwardRef68(
|
|
|
3085
3501
|
className
|
|
3086
3502
|
}, other), {
|
|
3087
3503
|
children: [
|
|
3088
|
-
duotone && /* @__PURE__ */
|
|
3504
|
+
duotone && /* @__PURE__ */ jsx78(
|
|
3089
3505
|
"path",
|
|
3090
3506
|
{
|
|
3091
3507
|
opacity: "0.12",
|
|
3092
|
-
|
|
3093
|
-
|
|
3508
|
+
fillRule: "evenodd",
|
|
3509
|
+
clipRule: "evenodd",
|
|
3094
3510
|
d: "M18.6236 15.6005C18.5702 15.3056 18.6063 15.0015 18.7273 14.7273C18.8425 14.4584 19.0339 14.2291 19.2778 14.0676C19.5217 13.906 19.8075 13.8193 20.1 13.8182H20.1818C20.664 13.8182 21.1265 13.6266 21.4675 13.2856C21.8084 12.9447 22 12.4822 22 12C22 11.5178 21.8084 11.0553 21.4675 10.7144C21.1265 10.3734 20.664 10.1818 20.1818 10.1818H20.0273C19.7347 10.1807 19.4489 10.094 19.205 9.93245C18.9611 9.77093 18.7698 9.54161 18.6545 9.27273V9.2C18.5335 8.9258 18.4974 8.62164 18.5509 8.32674C18.6044 8.03183 18.745 7.75971 18.9545 7.54545L19.0091 7.49091C19.1781 7.32205 19.3122 7.12152 19.4037 6.9008C19.4952 6.68008 19.5423 6.44348 19.5423 6.20455C19.5423 5.96561 19.4952 5.72901 19.4037 5.50829C19.3122 5.28757 19.1781 5.08704 19.0091 4.91818C18.8402 4.74913 18.6397 4.61503 18.419 4.52353C18.1983 4.43203 17.9617 4.38493 17.7227 4.38493C17.4838 4.38493 17.2472 4.43203 17.0265 4.52353C16.8057 4.61503 16.6052 4.74913 16.4364 4.91818L16.3818 4.97273C16.1676 5.18231 15.8954 5.3229 15.6005 5.37637C15.3056 5.42984 15.0015 5.39374 14.7273 5.27273C14.4584 5.15749 14.2291 4.96614 14.0676 4.72224C13.906 4.47834 13.8193 4.19253 13.8182 3.9V3.81818C13.8182 3.33597 13.6266 2.87351 13.2856 2.53253C12.9447 2.19156 12.4822 2 12 2C11.5178 2 11.0553 2.19156 10.7144 2.53253C10.3734 2.87351 10.1818 3.33597 10.1818 3.81818V3.97273C10.1807 4.26526 10.094 4.55107 9.93245 4.79497C9.77093 5.03887 9.54161 5.23022 9.27273 5.34545H9.2C8.9258 5.46647 8.62164 5.50257 8.32674 5.4491C8.03183 5.39562 7.75971 5.25503 7.54545 5.04545L7.49091 4.99091C7.32205 4.82186 7.12152 4.68775 6.9008 4.59626C6.68008 4.50476 6.44348 4.45766 6.20455 4.45766C5.96561 4.45766 5.72901 4.50476 5.50829 4.59626C5.28757 4.68775 5.08704 4.82186 4.91818 4.99091C4.74913 5.15977 4.61503 5.36029 4.52353 5.58102C4.43203 5.80174 4.38493 6.03834 4.38493 6.27727C4.38493 6.51621 4.43203 6.7528 4.52353 6.97353C4.61503 7.19425 4.74913 7.39478 4.91818 7.56364L4.97273 7.61818C5.18231 7.83244 5.3229 8.10456 5.37637 8.39947C5.42984 8.69437 5.39374 8.99853 5.27273 9.27273C5.16883 9.55521 4.98236 9.79991 4.73754 9.97501C4.49273 10.1501 4.2009 10.2475 3.9 10.2545H3.81818C3.33597 10.2545 2.87351 10.4461 2.53253 10.7871C2.19156 11.1281 2 11.5905 2 12.0727C2 12.5549 2.19156 13.0174 2.53253 13.3584C2.87351 13.6994 3.33597 13.8909 3.81818 13.8909H3.97273C4.26526 13.8921 4.55107 13.9788 4.79497 14.1403C5.03887 14.3018 5.23022 14.5311 5.34545 14.8C5.46647 15.0742 5.50257 15.3784 5.4491 15.6733C5.39562 15.9682 5.25503 16.2403 5.04545 16.4545L4.99091 16.5091C4.82186 16.678 4.68775 16.8785 4.59626 17.0992C4.50476 17.3199 4.45766 17.5565 4.45766 17.7955C4.45766 18.0344 4.50476 18.271 4.59626 18.4917C4.68775 18.7124 4.82186 18.913 4.99091 19.0818C5.15977 19.2509 5.36029 19.385 5.58102 19.4765C5.80174 19.568 6.03834 19.6151 6.27727 19.6151C6.51621 19.6151 6.7528 19.568 6.97353 19.4765C7.19425 19.385 7.39478 19.2509 7.56364 19.0818L7.61818 19.0273C7.83244 18.8177 8.10456 18.6771 8.39947 18.6236C8.69437 18.5702 8.99853 18.6063 9.27273 18.7273C9.55521 18.8312 9.79991 19.0176 9.97501 19.2625C10.1501 19.5073 10.2475 19.7991 10.2545 20.1V20.1818C10.2545 20.664 10.4461 21.1265 10.7871 21.4675C11.1281 21.8084 11.5905 22 12.0727 22C12.5549 22 13.0174 21.8084 13.3584 21.4675C13.6994 21.1265 13.8909 20.664 13.8909 20.1818V20.0273C13.8921 19.7347 13.9788 19.4489 14.1403 19.205C14.3018 18.9611 14.5311 18.7698 14.8 18.6545C15.0742 18.5335 15.3784 18.4974 15.6733 18.5509C15.9682 18.6044 16.2403 18.745 16.4545 18.9545L16.5091 19.0091C16.678 19.1781 16.8785 19.3122 17.0992 19.4037C17.3199 19.4952 17.5565 19.5423 17.7955 19.5423C18.0344 19.5423 18.271 19.4952 18.4917 19.4037C18.7124 19.3122 18.913 19.1781 19.0818 19.0091C19.2509 18.8402 19.385 18.6397 19.4765 18.419C19.568 18.1983 19.6151 17.9617 19.6151 17.7227C19.6151 17.4838 19.568 17.2472 19.4765 17.0265C19.385 16.8057 19.2509 16.6052 19.0818 16.4364L19.0273 16.3818C18.8177 16.1676 18.6771 15.8954 18.6236 15.6005ZM15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z",
|
|
3095
3511
|
fill: "currentColor"
|
|
3096
3512
|
}
|
|
3097
3513
|
),
|
|
3098
|
-
/* @__PURE__ */
|
|
3514
|
+
/* @__PURE__ */ jsx78(
|
|
3099
3515
|
"path",
|
|
3100
3516
|
{
|
|
3101
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",
|
|
@@ -3106,7 +3522,7 @@ var SettingsIcon = forwardRef68(
|
|
|
3106
3522
|
}
|
|
3107
3523
|
),
|
|
3108
3524
|
",",
|
|
3109
|
-
/* @__PURE__ */
|
|
3525
|
+
/* @__PURE__ */ jsx78(
|
|
3110
3526
|
"path",
|
|
3111
3527
|
{
|
|
3112
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",
|
|
@@ -3123,12 +3539,12 @@ var SettingsIcon = forwardRef68(
|
|
|
3123
3539
|
);
|
|
3124
3540
|
|
|
3125
3541
|
// src/icons/share.tsx
|
|
3126
|
-
import { forwardRef as
|
|
3127
|
-
import { jsx as
|
|
3128
|
-
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(
|
|
3129
3545
|
function ShareIcon2(_a, ref) {
|
|
3130
3546
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3131
|
-
return /* @__PURE__ */
|
|
3547
|
+
return /* @__PURE__ */ jsxs55(
|
|
3132
3548
|
"svg",
|
|
3133
3549
|
__spreadProps(__spreadValues({
|
|
3134
3550
|
ref,
|
|
@@ -3140,22 +3556,22 @@ var ShareIcon = forwardRef69(
|
|
|
3140
3556
|
className
|
|
3141
3557
|
}, other), {
|
|
3142
3558
|
children: [
|
|
3143
|
-
duotone && /* @__PURE__ */
|
|
3144
|
-
/* @__PURE__ */
|
|
3559
|
+
duotone && /* @__PURE__ */ jsxs55("g", { opacity: "0.12", children: [
|
|
3560
|
+
/* @__PURE__ */ jsx79(
|
|
3145
3561
|
"path",
|
|
3146
3562
|
{
|
|
3147
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",
|
|
3148
3564
|
fill: "currentColor"
|
|
3149
3565
|
}
|
|
3150
3566
|
),
|
|
3151
|
-
/* @__PURE__ */
|
|
3567
|
+
/* @__PURE__ */ jsx79(
|
|
3152
3568
|
"path",
|
|
3153
3569
|
{
|
|
3154
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",
|
|
3155
3571
|
fill: "currentColor"
|
|
3156
3572
|
}
|
|
3157
3573
|
),
|
|
3158
|
-
/* @__PURE__ */
|
|
3574
|
+
/* @__PURE__ */ jsx79(
|
|
3159
3575
|
"path",
|
|
3160
3576
|
{
|
|
3161
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",
|
|
@@ -3163,7 +3579,7 @@ var ShareIcon = forwardRef69(
|
|
|
3163
3579
|
}
|
|
3164
3580
|
)
|
|
3165
3581
|
] }),
|
|
3166
|
-
/* @__PURE__ */
|
|
3582
|
+
/* @__PURE__ */ jsx79(
|
|
3167
3583
|
"path",
|
|
3168
3584
|
{
|
|
3169
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",
|
|
@@ -3180,12 +3596,12 @@ var ShareIcon = forwardRef69(
|
|
|
3180
3596
|
);
|
|
3181
3597
|
|
|
3182
3598
|
// src/icons/shareArrow.tsx
|
|
3183
|
-
import { forwardRef as
|
|
3184
|
-
import { jsx as
|
|
3185
|
-
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(
|
|
3186
3602
|
function ShareArrowIcon2(_a, ref) {
|
|
3187
3603
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3188
|
-
return /* @__PURE__ */
|
|
3604
|
+
return /* @__PURE__ */ jsxs56(
|
|
3189
3605
|
"svg",
|
|
3190
3606
|
__spreadProps(__spreadValues({
|
|
3191
3607
|
ref,
|
|
@@ -3197,7 +3613,7 @@ var ShareArrowIcon = forwardRef70(
|
|
|
3197
3613
|
className
|
|
3198
3614
|
}, other), {
|
|
3199
3615
|
children: [
|
|
3200
|
-
duotone && /* @__PURE__ */
|
|
3616
|
+
duotone && /* @__PURE__ */ jsx80(
|
|
3201
3617
|
"path",
|
|
3202
3618
|
{
|
|
3203
3619
|
opacity: "0.12",
|
|
@@ -3205,7 +3621,7 @@ var ShareArrowIcon = forwardRef70(
|
|
|
3205
3621
|
fill: "currentColor"
|
|
3206
3622
|
}
|
|
3207
3623
|
),
|
|
3208
|
-
/* @__PURE__ */
|
|
3624
|
+
/* @__PURE__ */ jsx80(
|
|
3209
3625
|
"path",
|
|
3210
3626
|
{
|
|
3211
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",
|
|
@@ -3222,12 +3638,12 @@ var ShareArrowIcon = forwardRef70(
|
|
|
3222
3638
|
);
|
|
3223
3639
|
|
|
3224
3640
|
// src/icons/skipBack.tsx
|
|
3225
|
-
import { forwardRef as
|
|
3226
|
-
import { jsx as
|
|
3227
|
-
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(
|
|
3228
3644
|
function SkipBackIcon2(_a, ref) {
|
|
3229
3645
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3230
|
-
return /* @__PURE__ */
|
|
3646
|
+
return /* @__PURE__ */ jsxs57(
|
|
3231
3647
|
"svg",
|
|
3232
3648
|
__spreadProps(__spreadValues({
|
|
3233
3649
|
ref,
|
|
@@ -3239,7 +3655,7 @@ var SkipBackIcon = forwardRef71(
|
|
|
3239
3655
|
className
|
|
3240
3656
|
}, other), {
|
|
3241
3657
|
children: [
|
|
3242
|
-
duotone && /* @__PURE__ */
|
|
3658
|
+
duotone && /* @__PURE__ */ jsx81(
|
|
3243
3659
|
"path",
|
|
3244
3660
|
{
|
|
3245
3661
|
opacity: "0.12",
|
|
@@ -3247,7 +3663,7 @@ var SkipBackIcon = forwardRef71(
|
|
|
3247
3663
|
fill: "currentColor"
|
|
3248
3664
|
}
|
|
3249
3665
|
),
|
|
3250
|
-
/* @__PURE__ */
|
|
3666
|
+
/* @__PURE__ */ jsx81(
|
|
3251
3667
|
"path",
|
|
3252
3668
|
{
|
|
3253
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",
|
|
@@ -3264,12 +3680,12 @@ var SkipBackIcon = forwardRef71(
|
|
|
3264
3680
|
);
|
|
3265
3681
|
|
|
3266
3682
|
// src/icons/skipForward.tsx
|
|
3267
|
-
import { forwardRef as
|
|
3268
|
-
import { jsx as
|
|
3269
|
-
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(
|
|
3270
3686
|
function SkipForwardIcon2(_a, ref) {
|
|
3271
3687
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3272
|
-
return /* @__PURE__ */
|
|
3688
|
+
return /* @__PURE__ */ jsxs58(
|
|
3273
3689
|
"svg",
|
|
3274
3690
|
__spreadProps(__spreadValues({
|
|
3275
3691
|
ref,
|
|
@@ -3281,7 +3697,7 @@ var SkipForwardIcon = forwardRef72(
|
|
|
3281
3697
|
className
|
|
3282
3698
|
}, other), {
|
|
3283
3699
|
children: [
|
|
3284
|
-
duotone && /* @__PURE__ */
|
|
3700
|
+
duotone && /* @__PURE__ */ jsx82(
|
|
3285
3701
|
"path",
|
|
3286
3702
|
{
|
|
3287
3703
|
opacity: "0.12",
|
|
@@ -3289,7 +3705,7 @@ var SkipForwardIcon = forwardRef72(
|
|
|
3289
3705
|
fill: "currentColor"
|
|
3290
3706
|
}
|
|
3291
3707
|
),
|
|
3292
|
-
/* @__PURE__ */
|
|
3708
|
+
/* @__PURE__ */ jsx82(
|
|
3293
3709
|
"path",
|
|
3294
3710
|
{
|
|
3295
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",
|
|
@@ -3305,40 +3721,37 @@ var SkipForwardIcon = forwardRef72(
|
|
|
3305
3721
|
}
|
|
3306
3722
|
);
|
|
3307
3723
|
|
|
3308
|
-
// src/icons/
|
|
3309
|
-
import { forwardRef as
|
|
3310
|
-
import { jsx as
|
|
3311
|
-
var
|
|
3312
|
-
function
|
|
3313
|
-
var _b = _a, { size = 24, className = "text-gray-1000"
|
|
3314
|
-
return /* @__PURE__ */
|
|
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(
|
|
3315
3731
|
"svg",
|
|
3316
3732
|
__spreadProps(__spreadValues({
|
|
3317
3733
|
ref,
|
|
3318
3734
|
width: size,
|
|
3319
3735
|
height: size,
|
|
3320
|
-
viewBox: "0 0
|
|
3736
|
+
viewBox: "0 0 25 24",
|
|
3321
3737
|
fill: "none",
|
|
3322
3738
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3323
3739
|
className
|
|
3324
3740
|
}, other), {
|
|
3325
3741
|
children: [
|
|
3326
|
-
|
|
3742
|
+
/* @__PURE__ */ jsx83(
|
|
3327
3743
|
"path",
|
|
3328
3744
|
{
|
|
3329
3745
|
opacity: "0.12",
|
|
3330
|
-
d: "
|
|
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",
|
|
3331
3747
|
fill: "currentColor"
|
|
3332
3748
|
}
|
|
3333
3749
|
),
|
|
3334
|
-
/* @__PURE__ */
|
|
3750
|
+
/* @__PURE__ */ jsx83(
|
|
3335
3751
|
"path",
|
|
3336
3752
|
{
|
|
3337
|
-
d: "
|
|
3338
|
-
|
|
3339
|
-
strokeWidth: "2",
|
|
3340
|
-
strokeLinecap: "round",
|
|
3341
|
-
strokeLinejoin: "round"
|
|
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"
|
|
3342
3755
|
}
|
|
3343
3756
|
)
|
|
3344
3757
|
]
|
|
@@ -3347,13 +3760,13 @@ var StarsIcon = forwardRef73(
|
|
|
3347
3760
|
}
|
|
3348
3761
|
);
|
|
3349
3762
|
|
|
3350
|
-
// src/icons/
|
|
3351
|
-
import { forwardRef as
|
|
3352
|
-
import { jsx as
|
|
3353
|
-
var
|
|
3354
|
-
function
|
|
3763
|
+
// src/icons/stars.tsx
|
|
3764
|
+
import { forwardRef as forwardRef82 } from "react";
|
|
3765
|
+
import { jsx as jsx84, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
3766
|
+
var StarsIcon = forwardRef82(
|
|
3767
|
+
function StarsIcon2(_a, ref) {
|
|
3355
3768
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3356
|
-
return /* @__PURE__ */
|
|
3769
|
+
return /* @__PURE__ */ jsxs60(
|
|
3357
3770
|
"svg",
|
|
3358
3771
|
__spreadProps(__spreadValues({
|
|
3359
3772
|
ref,
|
|
@@ -3365,18 +3778,18 @@ var TrashIcon = forwardRef74(
|
|
|
3365
3778
|
className
|
|
3366
3779
|
}, other), {
|
|
3367
3780
|
children: [
|
|
3368
|
-
duotone && /* @__PURE__ */
|
|
3781
|
+
duotone && /* @__PURE__ */ jsx84(
|
|
3369
3782
|
"path",
|
|
3370
3783
|
{
|
|
3371
3784
|
opacity: "0.12",
|
|
3372
|
-
d: "
|
|
3785
|
+
d: "M13 3L14.7342 7.50886C15.0162 8.24209 15.1572 8.60871 15.3765 8.91709C15.5708 9.1904 15.8096 9.42919 16.0829 9.62353C16.3913 9.8428 16.7579 9.98381 17.4911 10.2658L22 12L17.4911 13.7342C16.7579 14.0162 16.3913 14.1572 16.0829 14.3765C15.8096 14.5708 15.5708 14.8096 15.3765 15.0829C15.1572 15.3913 15.0162 15.7579 14.7342 16.4911L13 21L11.2658 16.4911C10.9838 15.7579 10.8428 15.3913 10.6235 15.0829C10.4292 14.8096 10.1904 14.5708 9.91709 14.3765C9.60871 14.1572 9.24209 14.0162 8.50886 13.7342L4 12L8.50886 10.2658C9.24209 9.98381 9.60871 9.8428 9.91709 9.62353C10.1904 9.42919 10.4292 9.1904 10.6235 8.91709C10.8428 8.60871 10.9838 8.24209 11.2658 7.50886L13 3Z",
|
|
3373
3786
|
fill: "currentColor"
|
|
3374
3787
|
}
|
|
3375
3788
|
),
|
|
3376
|
-
/* @__PURE__ */
|
|
3789
|
+
/* @__PURE__ */ jsx84(
|
|
3377
3790
|
"path",
|
|
3378
3791
|
{
|
|
3379
|
-
d: "
|
|
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",
|
|
3380
3793
|
stroke: "currentColor",
|
|
3381
3794
|
strokeWidth: "2",
|
|
3382
3795
|
strokeLinecap: "round",
|
|
@@ -3389,13 +3802,55 @@ var TrashIcon = forwardRef74(
|
|
|
3389
3802
|
}
|
|
3390
3803
|
);
|
|
3391
3804
|
|
|
3392
|
-
// src/icons/
|
|
3393
|
-
import { forwardRef as
|
|
3394
|
-
import { jsx as
|
|
3395
|
-
var
|
|
3396
|
-
function
|
|
3805
|
+
// src/icons/trash.tsx
|
|
3806
|
+
import { forwardRef as forwardRef83 } from "react";
|
|
3807
|
+
import { jsx as jsx85, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
3808
|
+
var TrashIcon = forwardRef83(
|
|
3809
|
+
function TrashIcon2(_a, ref) {
|
|
3397
3810
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3398
|
-
return /* @__PURE__ */
|
|
3811
|
+
return /* @__PURE__ */ jsxs61(
|
|
3812
|
+
"svg",
|
|
3813
|
+
__spreadProps(__spreadValues({
|
|
3814
|
+
ref,
|
|
3815
|
+
width: size,
|
|
3816
|
+
height: size,
|
|
3817
|
+
viewBox: "0 0 24 24",
|
|
3818
|
+
fill: "none",
|
|
3819
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3820
|
+
className
|
|
3821
|
+
}, other), {
|
|
3822
|
+
children: [
|
|
3823
|
+
duotone && /* @__PURE__ */ jsx85(
|
|
3824
|
+
"path",
|
|
3825
|
+
{
|
|
3826
|
+
opacity: "0.12",
|
|
3827
|
+
d: "M18.2987 16.5193L19 6H5L5.70129 16.5193C5.8065 18.0975 5.85911 18.8867 6.19998 19.485C6.50009 20.0118 6.95276 20.4353 7.49834 20.6997C8.11803 21 8.90891 21 10.4907 21H13.5093C15.0911 21 15.882 21 16.5017 20.6997C17.0472 20.4353 17.4999 20.0118 17.8 19.485C18.1409 18.8867 18.1935 18.0975 18.2987 16.5193Z",
|
|
3828
|
+
fill: "currentColor"
|
|
3829
|
+
}
|
|
3830
|
+
),
|
|
3831
|
+
/* @__PURE__ */ jsx85(
|
|
3832
|
+
"path",
|
|
3833
|
+
{
|
|
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",
|
|
3835
|
+
stroke: "currentColor",
|
|
3836
|
+
strokeWidth: "2",
|
|
3837
|
+
strokeLinecap: "round",
|
|
3838
|
+
strokeLinejoin: "round"
|
|
3839
|
+
}
|
|
3840
|
+
)
|
|
3841
|
+
]
|
|
3842
|
+
})
|
|
3843
|
+
);
|
|
3844
|
+
}
|
|
3845
|
+
);
|
|
3846
|
+
|
|
3847
|
+
// src/icons/trendDown.tsx
|
|
3848
|
+
import { forwardRef as forwardRef84 } from "react";
|
|
3849
|
+
import { jsx as jsx86 } from "react/jsx-runtime";
|
|
3850
|
+
var TrendDownIcon = forwardRef84(
|
|
3851
|
+
function TrendDownIcon2(_a, ref) {
|
|
3852
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3853
|
+
return /* @__PURE__ */ jsx86(
|
|
3399
3854
|
"svg",
|
|
3400
3855
|
__spreadProps(__spreadValues({
|
|
3401
3856
|
ref,
|
|
@@ -3406,7 +3861,7 @@ var TrendDownIcon = forwardRef75(
|
|
|
3406
3861
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3407
3862
|
className
|
|
3408
3863
|
}, other), {
|
|
3409
|
-
children: /* @__PURE__ */
|
|
3864
|
+
children: /* @__PURE__ */ jsx86(
|
|
3410
3865
|
"path",
|
|
3411
3866
|
{
|
|
3412
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",
|
|
@@ -3422,12 +3877,12 @@ var TrendDownIcon = forwardRef75(
|
|
|
3422
3877
|
);
|
|
3423
3878
|
|
|
3424
3879
|
// src/icons/trendUp.tsx
|
|
3425
|
-
import { forwardRef as
|
|
3426
|
-
import { jsx as
|
|
3427
|
-
var TrendUpIcon =
|
|
3880
|
+
import { forwardRef as forwardRef85 } from "react";
|
|
3881
|
+
import { jsx as jsx87 } from "react/jsx-runtime";
|
|
3882
|
+
var TrendUpIcon = forwardRef85(
|
|
3428
3883
|
function TrendUpIcon2(_a, ref) {
|
|
3429
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
3430
|
-
return /* @__PURE__ */
|
|
3884
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3885
|
+
return /* @__PURE__ */ jsx87(
|
|
3431
3886
|
"svg",
|
|
3432
3887
|
__spreadProps(__spreadValues({
|
|
3433
3888
|
ref,
|
|
@@ -3438,7 +3893,7 @@ var TrendUpIcon = forwardRef76(
|
|
|
3438
3893
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3439
3894
|
className
|
|
3440
3895
|
}, other), {
|
|
3441
|
-
children: /* @__PURE__ */
|
|
3896
|
+
children: /* @__PURE__ */ jsx87(
|
|
3442
3897
|
"path",
|
|
3443
3898
|
{
|
|
3444
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",
|
|
@@ -3454,11 +3909,11 @@ var TrendUpIcon = forwardRef76(
|
|
|
3454
3909
|
);
|
|
3455
3910
|
|
|
3456
3911
|
// src/icons/user.tsx
|
|
3457
|
-
import { forwardRef as
|
|
3458
|
-
import { jsx as
|
|
3459
|
-
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) {
|
|
3460
3915
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3461
|
-
return /* @__PURE__ */
|
|
3916
|
+
return /* @__PURE__ */ jsxs62(
|
|
3462
3917
|
"svg",
|
|
3463
3918
|
__spreadProps(__spreadValues({
|
|
3464
3919
|
ref,
|
|
@@ -3470,7 +3925,7 @@ var UserIcon = forwardRef77(function UserIcon2(_a, ref) {
|
|
|
3470
3925
|
className
|
|
3471
3926
|
}, other), {
|
|
3472
3927
|
children: [
|
|
3473
|
-
duotone && /* @__PURE__ */
|
|
3928
|
+
duotone && /* @__PURE__ */ jsx88(
|
|
3474
3929
|
"path",
|
|
3475
3930
|
{
|
|
3476
3931
|
opacity: "0.12",
|
|
@@ -3478,7 +3933,7 @@ var UserIcon = forwardRef77(function UserIcon2(_a, ref) {
|
|
|
3478
3933
|
fill: "currentColor"
|
|
3479
3934
|
}
|
|
3480
3935
|
),
|
|
3481
|
-
/* @__PURE__ */
|
|
3936
|
+
/* @__PURE__ */ jsx88(
|
|
3482
3937
|
"path",
|
|
3483
3938
|
{
|
|
3484
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",
|
|
@@ -3494,12 +3949,12 @@ var UserIcon = forwardRef77(function UserIcon2(_a, ref) {
|
|
|
3494
3949
|
});
|
|
3495
3950
|
|
|
3496
3951
|
// src/icons/userPlus.tsx
|
|
3497
|
-
import { forwardRef as
|
|
3498
|
-
import { jsx as
|
|
3499
|
-
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(
|
|
3500
3955
|
function UserPlusIcon2(_a, ref) {
|
|
3501
3956
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3502
|
-
return /* @__PURE__ */
|
|
3957
|
+
return /* @__PURE__ */ jsxs63(
|
|
3503
3958
|
"svg",
|
|
3504
3959
|
__spreadProps(__spreadValues({
|
|
3505
3960
|
ref,
|
|
@@ -3511,7 +3966,7 @@ var UserPlusIcon = forwardRef78(
|
|
|
3511
3966
|
className
|
|
3512
3967
|
}, other), {
|
|
3513
3968
|
children: [
|
|
3514
|
-
duotone && /* @__PURE__ */
|
|
3969
|
+
duotone && /* @__PURE__ */ jsx89(
|
|
3515
3970
|
"path",
|
|
3516
3971
|
{
|
|
3517
3972
|
opacity: "0.12",
|
|
@@ -3519,7 +3974,7 @@ var UserPlusIcon = forwardRef78(
|
|
|
3519
3974
|
fill: "currentColor"
|
|
3520
3975
|
}
|
|
3521
3976
|
),
|
|
3522
|
-
/* @__PURE__ */
|
|
3977
|
+
/* @__PURE__ */ jsx89(
|
|
3523
3978
|
"path",
|
|
3524
3979
|
{
|
|
3525
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",
|
|
@@ -3536,12 +3991,12 @@ var UserPlusIcon = forwardRef78(
|
|
|
3536
3991
|
);
|
|
3537
3992
|
|
|
3538
3993
|
// src/icons/userX.tsx
|
|
3539
|
-
import { forwardRef as
|
|
3540
|
-
import { jsx as
|
|
3541
|
-
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(
|
|
3542
3997
|
function UserXIcon2(_a, ref) {
|
|
3543
3998
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3544
|
-
return /* @__PURE__ */
|
|
3999
|
+
return /* @__PURE__ */ jsxs64(
|
|
3545
4000
|
"svg",
|
|
3546
4001
|
__spreadProps(__spreadValues({
|
|
3547
4002
|
ref,
|
|
@@ -3553,7 +4008,7 @@ var UserXIcon = forwardRef79(
|
|
|
3553
4008
|
className
|
|
3554
4009
|
}, other), {
|
|
3555
4010
|
children: [
|
|
3556
|
-
duotone && /* @__PURE__ */
|
|
4011
|
+
duotone && /* @__PURE__ */ jsx90(
|
|
3557
4012
|
"path",
|
|
3558
4013
|
{
|
|
3559
4014
|
opacity: "0.12",
|
|
@@ -3561,7 +4016,7 @@ var UserXIcon = forwardRef79(
|
|
|
3561
4016
|
fill: "currentColor"
|
|
3562
4017
|
}
|
|
3563
4018
|
),
|
|
3564
|
-
/* @__PURE__ */
|
|
4019
|
+
/* @__PURE__ */ jsx90(
|
|
3565
4020
|
"path",
|
|
3566
4021
|
{
|
|
3567
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",
|
|
@@ -3578,12 +4033,12 @@ var UserXIcon = forwardRef79(
|
|
|
3578
4033
|
);
|
|
3579
4034
|
|
|
3580
4035
|
// src/icons/users.tsx
|
|
3581
|
-
import { forwardRef as
|
|
3582
|
-
import { jsx as
|
|
3583
|
-
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(
|
|
3584
4039
|
function UsersIcon2(_a, ref) {
|
|
3585
4040
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3586
|
-
return /* @__PURE__ */
|
|
4041
|
+
return /* @__PURE__ */ jsxs65(
|
|
3587
4042
|
"svg",
|
|
3588
4043
|
__spreadProps(__spreadValues({
|
|
3589
4044
|
ref,
|
|
@@ -3595,7 +4050,7 @@ var UsersIcon = forwardRef80(
|
|
|
3595
4050
|
className
|
|
3596
4051
|
}, other), {
|
|
3597
4052
|
children: [
|
|
3598
|
-
duotone && /* @__PURE__ */
|
|
4053
|
+
duotone && /* @__PURE__ */ jsx91(
|
|
3599
4054
|
"path",
|
|
3600
4055
|
{
|
|
3601
4056
|
opacity: "0.12",
|
|
@@ -3603,7 +4058,7 @@ var UsersIcon = forwardRef80(
|
|
|
3603
4058
|
fill: "currentColor"
|
|
3604
4059
|
}
|
|
3605
4060
|
),
|
|
3606
|
-
/* @__PURE__ */
|
|
4061
|
+
/* @__PURE__ */ jsx91(
|
|
3607
4062
|
"path",
|
|
3608
4063
|
{
|
|
3609
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",
|
|
@@ -3620,12 +4075,12 @@ var UsersIcon = forwardRef80(
|
|
|
3620
4075
|
);
|
|
3621
4076
|
|
|
3622
4077
|
// src/icons/usersPlus.tsx
|
|
3623
|
-
import { forwardRef as
|
|
3624
|
-
import { jsx as
|
|
3625
|
-
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(
|
|
3626
4081
|
function UsersPlusIcon2(_a, ref) {
|
|
3627
4082
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3628
|
-
return /* @__PURE__ */
|
|
4083
|
+
return /* @__PURE__ */ jsxs66(
|
|
3629
4084
|
"svg",
|
|
3630
4085
|
__spreadProps(__spreadValues({
|
|
3631
4086
|
ref,
|
|
@@ -3637,7 +4092,7 @@ var UsersPlusIcon = forwardRef81(
|
|
|
3637
4092
|
className
|
|
3638
4093
|
}, other), {
|
|
3639
4094
|
children: [
|
|
3640
|
-
duotone && /* @__PURE__ */
|
|
4095
|
+
duotone && /* @__PURE__ */ jsx92(
|
|
3641
4096
|
"path",
|
|
3642
4097
|
{
|
|
3643
4098
|
opacity: "0.12",
|
|
@@ -3645,7 +4100,7 @@ var UsersPlusIcon = forwardRef81(
|
|
|
3645
4100
|
fill: "currentColor"
|
|
3646
4101
|
}
|
|
3647
4102
|
),
|
|
3648
|
-
/* @__PURE__ */
|
|
4103
|
+
/* @__PURE__ */ jsx92(
|
|
3649
4104
|
"path",
|
|
3650
4105
|
{
|
|
3651
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",
|
|
@@ -3662,12 +4117,12 @@ var UsersPlusIcon = forwardRef81(
|
|
|
3662
4117
|
);
|
|
3663
4118
|
|
|
3664
4119
|
// src/icons/usersX.tsx
|
|
3665
|
-
import { forwardRef as
|
|
3666
|
-
import { jsx as
|
|
3667
|
-
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(
|
|
3668
4123
|
function UsersXIcon2(_a, ref) {
|
|
3669
4124
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3670
|
-
return /* @__PURE__ */
|
|
4125
|
+
return /* @__PURE__ */ jsxs67(
|
|
3671
4126
|
"svg",
|
|
3672
4127
|
__spreadProps(__spreadValues({
|
|
3673
4128
|
ref,
|
|
@@ -3679,7 +4134,7 @@ var UsersXIcon = forwardRef82(
|
|
|
3679
4134
|
className
|
|
3680
4135
|
}, other), {
|
|
3681
4136
|
children: [
|
|
3682
|
-
duotone && /* @__PURE__ */
|
|
4137
|
+
duotone && /* @__PURE__ */ jsx93(
|
|
3683
4138
|
"path",
|
|
3684
4139
|
{
|
|
3685
4140
|
opacity: "0.12",
|
|
@@ -3687,7 +4142,7 @@ var UsersXIcon = forwardRef82(
|
|
|
3687
4142
|
fill: "currentColor"
|
|
3688
4143
|
}
|
|
3689
4144
|
),
|
|
3690
|
-
/* @__PURE__ */
|
|
4145
|
+
/* @__PURE__ */ jsx93(
|
|
3691
4146
|
"path",
|
|
3692
4147
|
{
|
|
3693
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",
|
|
@@ -3704,12 +4159,12 @@ var UsersXIcon = forwardRef82(
|
|
|
3704
4159
|
);
|
|
3705
4160
|
|
|
3706
4161
|
// src/icons/videoRecorder.tsx
|
|
3707
|
-
import { forwardRef as
|
|
3708
|
-
import { jsx as
|
|
3709
|
-
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(
|
|
3710
4165
|
function VideoRecorderIcon2(_a, ref) {
|
|
3711
4166
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3712
|
-
return /* @__PURE__ */
|
|
4167
|
+
return /* @__PURE__ */ jsxs68(
|
|
3713
4168
|
"svg",
|
|
3714
4169
|
__spreadProps(__spreadValues({
|
|
3715
4170
|
ref,
|
|
@@ -3721,7 +4176,7 @@ var VideoRecorderIcon = forwardRef83(
|
|
|
3721
4176
|
className
|
|
3722
4177
|
}, other), {
|
|
3723
4178
|
children: [
|
|
3724
|
-
duotone && /* @__PURE__ */
|
|
4179
|
+
duotone && /* @__PURE__ */ jsx94(
|
|
3725
4180
|
"path",
|
|
3726
4181
|
{
|
|
3727
4182
|
opacity: "0.12",
|
|
@@ -3733,7 +4188,7 @@ var VideoRecorderIcon = forwardRef83(
|
|
|
3733
4188
|
strokeLinejoin: "round"
|
|
3734
4189
|
}
|
|
3735
4190
|
),
|
|
3736
|
-
/* @__PURE__ */
|
|
4191
|
+
/* @__PURE__ */ jsx94(
|
|
3737
4192
|
"path",
|
|
3738
4193
|
{
|
|
3739
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",
|
|
@@ -3744,7 +4199,7 @@ var VideoRecorderIcon = forwardRef83(
|
|
|
3744
4199
|
}
|
|
3745
4200
|
),
|
|
3746
4201
|
",",
|
|
3747
|
-
/* @__PURE__ */
|
|
4202
|
+
/* @__PURE__ */ jsx94(
|
|
3748
4203
|
"path",
|
|
3749
4204
|
{
|
|
3750
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",
|
|
@@ -3761,12 +4216,12 @@ var VideoRecorderIcon = forwardRef83(
|
|
|
3761
4216
|
);
|
|
3762
4217
|
|
|
3763
4218
|
// src/icons/videoRecorderOff.tsx
|
|
3764
|
-
import { forwardRef as
|
|
3765
|
-
import { jsx as
|
|
3766
|
-
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(
|
|
3767
4222
|
function VideoRecorderOffIcon2(_a, ref) {
|
|
3768
4223
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3769
|
-
return /* @__PURE__ */
|
|
4224
|
+
return /* @__PURE__ */ jsxs69(
|
|
3770
4225
|
"svg",
|
|
3771
4226
|
__spreadProps(__spreadValues({
|
|
3772
4227
|
ref,
|
|
@@ -3778,7 +4233,7 @@ var VideoRecorderOffIcon = forwardRef84(
|
|
|
3778
4233
|
className
|
|
3779
4234
|
}, other), {
|
|
3780
4235
|
children: [
|
|
3781
|
-
duotone && /* @__PURE__ */
|
|
4236
|
+
duotone && /* @__PURE__ */ jsx95(
|
|
3782
4237
|
"path",
|
|
3783
4238
|
{
|
|
3784
4239
|
opacity: "0.12",
|
|
@@ -3790,7 +4245,7 @@ var VideoRecorderOffIcon = forwardRef84(
|
|
|
3790
4245
|
strokeLinejoin: "round"
|
|
3791
4246
|
}
|
|
3792
4247
|
),
|
|
3793
|
-
/* @__PURE__ */
|
|
4248
|
+
/* @__PURE__ */ jsx95(
|
|
3794
4249
|
"path",
|
|
3795
4250
|
{
|
|
3796
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",
|
|
@@ -3807,12 +4262,12 @@ var VideoRecorderOffIcon = forwardRef84(
|
|
|
3807
4262
|
);
|
|
3808
4263
|
|
|
3809
4264
|
// src/icons/volumeMax.tsx
|
|
3810
|
-
import { forwardRef as
|
|
3811
|
-
import { jsx as
|
|
3812
|
-
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(
|
|
3813
4268
|
function VolumeMaxIcon2(_a, ref) {
|
|
3814
4269
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3815
|
-
return /* @__PURE__ */
|
|
4270
|
+
return /* @__PURE__ */ jsxs70(
|
|
3816
4271
|
"svg",
|
|
3817
4272
|
__spreadProps(__spreadValues({
|
|
3818
4273
|
ref,
|
|
@@ -3824,7 +4279,7 @@ var VolumeMaxIcon = forwardRef85(
|
|
|
3824
4279
|
className
|
|
3825
4280
|
}, other), {
|
|
3826
4281
|
children: [
|
|
3827
|
-
duotone && /* @__PURE__ */
|
|
4282
|
+
duotone && /* @__PURE__ */ jsx96(
|
|
3828
4283
|
"path",
|
|
3829
4284
|
{
|
|
3830
4285
|
opacity: "0.12",
|
|
@@ -3832,7 +4287,7 @@ var VolumeMaxIcon = forwardRef85(
|
|
|
3832
4287
|
fill: "currentColor"
|
|
3833
4288
|
}
|
|
3834
4289
|
),
|
|
3835
|
-
/* @__PURE__ */
|
|
4290
|
+
/* @__PURE__ */ jsx96(
|
|
3836
4291
|
"path",
|
|
3837
4292
|
{
|
|
3838
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",
|
|
@@ -3849,12 +4304,12 @@ var VolumeMaxIcon = forwardRef85(
|
|
|
3849
4304
|
);
|
|
3850
4305
|
|
|
3851
4306
|
// src/icons/volumeX.tsx
|
|
3852
|
-
import { forwardRef as
|
|
3853
|
-
import { jsx as
|
|
3854
|
-
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(
|
|
3855
4310
|
function VolumeXIcon2(_a, ref) {
|
|
3856
4311
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3857
|
-
return /* @__PURE__ */
|
|
4312
|
+
return /* @__PURE__ */ jsxs71(
|
|
3858
4313
|
"svg",
|
|
3859
4314
|
__spreadProps(__spreadValues({
|
|
3860
4315
|
ref,
|
|
@@ -3866,7 +4321,7 @@ var VolumeXIcon = forwardRef86(
|
|
|
3866
4321
|
className
|
|
3867
4322
|
}, other), {
|
|
3868
4323
|
children: [
|
|
3869
|
-
duotone && /* @__PURE__ */
|
|
4324
|
+
duotone && /* @__PURE__ */ jsx97(
|
|
3870
4325
|
"path",
|
|
3871
4326
|
{
|
|
3872
4327
|
opacity: "0.12",
|
|
@@ -3874,7 +4329,7 @@ var VolumeXIcon = forwardRef86(
|
|
|
3874
4329
|
fill: "currentColor"
|
|
3875
4330
|
}
|
|
3876
4331
|
),
|
|
3877
|
-
/* @__PURE__ */
|
|
4332
|
+
/* @__PURE__ */ jsx97(
|
|
3878
4333
|
"path",
|
|
3879
4334
|
{
|
|
3880
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",
|
|
@@ -3891,12 +4346,12 @@ var VolumeXIcon = forwardRef86(
|
|
|
3891
4346
|
);
|
|
3892
4347
|
|
|
3893
4348
|
// src/icons/xCircle.tsx
|
|
3894
|
-
import { forwardRef as
|
|
3895
|
-
import { jsx as
|
|
3896
|
-
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(
|
|
3897
4352
|
function XCircleIcon2(_a, ref) {
|
|
3898
4353
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3899
|
-
return /* @__PURE__ */
|
|
4354
|
+
return /* @__PURE__ */ jsxs72(
|
|
3900
4355
|
"svg",
|
|
3901
4356
|
__spreadProps(__spreadValues({
|
|
3902
4357
|
ref,
|
|
@@ -3908,7 +4363,7 @@ var XCircleIcon = forwardRef87(
|
|
|
3908
4363
|
className
|
|
3909
4364
|
}, other), {
|
|
3910
4365
|
children: [
|
|
3911
|
-
duotone && /* @__PURE__ */
|
|
4366
|
+
duotone && /* @__PURE__ */ jsx98(
|
|
3912
4367
|
"path",
|
|
3913
4368
|
{
|
|
3914
4369
|
opacity: "0.12",
|
|
@@ -3916,7 +4371,7 @@ var XCircleIcon = forwardRef87(
|
|
|
3916
4371
|
fill: "currentColor"
|
|
3917
4372
|
}
|
|
3918
4373
|
),
|
|
3919
|
-
/* @__PURE__ */
|
|
4374
|
+
/* @__PURE__ */ jsx98(
|
|
3920
4375
|
"path",
|
|
3921
4376
|
{
|
|
3922
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",
|
|
@@ -3933,12 +4388,12 @@ var XCircleIcon = forwardRef87(
|
|
|
3933
4388
|
);
|
|
3934
4389
|
|
|
3935
4390
|
// src/icons/xClose.tsx
|
|
3936
|
-
import { forwardRef as
|
|
3937
|
-
import { jsx as
|
|
3938
|
-
var XCloseIcon =
|
|
4391
|
+
import { forwardRef as forwardRef97 } from "react";
|
|
4392
|
+
import { jsx as jsx99 } from "react/jsx-runtime";
|
|
4393
|
+
var XCloseIcon = forwardRef97(
|
|
3939
4394
|
function XCloseIcon2(_a, ref) {
|
|
3940
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
3941
|
-
return /* @__PURE__ */
|
|
4395
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4396
|
+
return /* @__PURE__ */ jsx99(
|
|
3942
4397
|
"svg",
|
|
3943
4398
|
__spreadProps(__spreadValues({
|
|
3944
4399
|
ref,
|
|
@@ -3949,7 +4404,7 @@ var XCloseIcon = forwardRef88(
|
|
|
3949
4404
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3950
4405
|
className
|
|
3951
4406
|
}, other), {
|
|
3952
|
-
children: /* @__PURE__ */
|
|
4407
|
+
children: /* @__PURE__ */ jsx99(
|
|
3953
4408
|
"path",
|
|
3954
4409
|
{
|
|
3955
4410
|
d: "M18 6L6 18M6 6L18 18",
|
|
@@ -3965,7 +4420,7 @@ var XCloseIcon = forwardRef88(
|
|
|
3965
4420
|
);
|
|
3966
4421
|
|
|
3967
4422
|
// src/components/Calendar/Calendar.tsx
|
|
3968
|
-
import { jsx as
|
|
4423
|
+
import { jsx as jsx100 } from "react/jsx-runtime";
|
|
3969
4424
|
function Calendar(_a) {
|
|
3970
4425
|
var _b = _a, {
|
|
3971
4426
|
className,
|
|
@@ -3976,7 +4431,7 @@ function Calendar(_a) {
|
|
|
3976
4431
|
"classNames",
|
|
3977
4432
|
"showOutsideDays"
|
|
3978
4433
|
]);
|
|
3979
|
-
return /* @__PURE__ */
|
|
4434
|
+
return /* @__PURE__ */ jsx100(
|
|
3980
4435
|
DayPicker,
|
|
3981
4436
|
__spreadValues({
|
|
3982
4437
|
showOutsideDays,
|
|
@@ -4006,24 +4461,194 @@ function Calendar(_a) {
|
|
|
4006
4461
|
day_hidden: "invisible"
|
|
4007
4462
|
}, classNames),
|
|
4008
4463
|
components: {
|
|
4009
|
-
IconLeft: (
|
|
4010
|
-
|
|
4011
|
-
return /* @__PURE__ */ jsx91(ChevronLeftIcon, { className: "h-3 w-3" });
|
|
4012
|
-
},
|
|
4013
|
-
IconRight: (_b2) => {
|
|
4014
|
-
var props2 = __objRest(_b2, []);
|
|
4015
|
-
return /* @__PURE__ */ jsx91(ChevronRightIcon, { className: "h-3 w-3" });
|
|
4016
|
-
}
|
|
4464
|
+
IconLeft: () => /* @__PURE__ */ jsx100(ChevronLeftIcon, { className: "w-3 h-3" }),
|
|
4465
|
+
IconRight: () => /* @__PURE__ */ jsx100(ChevronRightIcon, { className: "w-3 h-3" })
|
|
4017
4466
|
}
|
|
4018
4467
|
}, props)
|
|
4019
4468
|
);
|
|
4020
4469
|
}
|
|
4021
4470
|
Calendar.displayName = "Calendar";
|
|
4022
4471
|
|
|
4023
|
-
// src/components/
|
|
4472
|
+
// src/components/Checkbox/Checkbox.tsx
|
|
4024
4473
|
import * as React5 from "react";
|
|
4474
|
+
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
|
|
4475
|
+
import { jsx as jsx101 } from "react/jsx-runtime";
|
|
4476
|
+
var Checkbox = React5.forwardRef((_a, ref) => {
|
|
4477
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4478
|
+
return /* @__PURE__ */ jsx101(
|
|
4479
|
+
CheckboxPrimitive.Root,
|
|
4480
|
+
__spreadProps(__spreadValues({
|
|
4481
|
+
className: cn(
|
|
4482
|
+
"flex h-4 w-4 appearance-none items-center justify-center rounded bg-gray-50 border-gray-200 border outline-none data-[state=checked]:bg-blue-700 data-[state=checked]:border-blue-700 data-[disabled]:opacity-40 data-[disabled]:cursor-not-allowed",
|
|
4483
|
+
className
|
|
4484
|
+
)
|
|
4485
|
+
}, props), {
|
|
4486
|
+
ref,
|
|
4487
|
+
children: /* @__PURE__ */ jsx101(CheckboxPrimitive.Indicator, { children: /* @__PURE__ */ jsx101(CheckIcon, { size: 10, className: "text-white" }) })
|
|
4488
|
+
})
|
|
4489
|
+
);
|
|
4490
|
+
});
|
|
4491
|
+
Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
4492
|
+
|
|
4493
|
+
// src/components/Command/Command.tsx
|
|
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";
|
|
4025
4650
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
4026
|
-
import { jsx as
|
|
4651
|
+
import { jsx as jsx103, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4027
4652
|
var Dialog = DialogPrimitive.Root;
|
|
4028
4653
|
var DialogTrigger = DialogPrimitive.Trigger;
|
|
4029
4654
|
var DialogPortal = (_a) => {
|
|
@@ -4032,12 +4657,12 @@ var DialogPortal = (_a) => {
|
|
|
4032
4657
|
} = _b, props = __objRest(_b, [
|
|
4033
4658
|
"className"
|
|
4034
4659
|
]);
|
|
4035
|
-
return /* @__PURE__ */
|
|
4660
|
+
return /* @__PURE__ */ jsx103(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
|
|
4036
4661
|
};
|
|
4037
4662
|
DialogPortal.displayName = DialogPrimitive.Portal.displayName;
|
|
4038
|
-
var DialogOverlay =
|
|
4663
|
+
var DialogOverlay = React7.forwardRef((_a, ref) => {
|
|
4039
4664
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4040
|
-
return /* @__PURE__ */
|
|
4665
|
+
return /* @__PURE__ */ jsx103(
|
|
4041
4666
|
DialogPrimitive.Overlay,
|
|
4042
4667
|
__spreadValues({
|
|
4043
4668
|
ref,
|
|
@@ -4049,11 +4674,11 @@ var DialogOverlay = React5.forwardRef((_a, ref) => {
|
|
|
4049
4674
|
);
|
|
4050
4675
|
});
|
|
4051
4676
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
4052
|
-
var DialogContent =
|
|
4677
|
+
var DialogContent = React7.forwardRef((_a, ref) => {
|
|
4053
4678
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4054
|
-
return /* @__PURE__ */
|
|
4055
|
-
/* @__PURE__ */
|
|
4056
|
-
/* @__PURE__ */
|
|
4679
|
+
return /* @__PURE__ */ jsxs74(DialogPortal, { children: [
|
|
4680
|
+
/* @__PURE__ */ jsx103(DialogOverlay, {}),
|
|
4681
|
+
/* @__PURE__ */ jsxs74(
|
|
4057
4682
|
DialogPrimitive.Content,
|
|
4058
4683
|
__spreadProps(__spreadValues({
|
|
4059
4684
|
ref,
|
|
@@ -4064,7 +4689,7 @@ var DialogContent = React5.forwardRef((_a, ref) => {
|
|
|
4064
4689
|
}, props), {
|
|
4065
4690
|
children: [
|
|
4066
4691
|
children,
|
|
4067
|
-
/* @__PURE__ */
|
|
4692
|
+
/* @__PURE__ */ jsxs74(
|
|
4068
4693
|
DialogPrimitive.Close,
|
|
4069
4694
|
{
|
|
4070
4695
|
className: cn(
|
|
@@ -4073,8 +4698,8 @@ var DialogContent = React5.forwardRef((_a, ref) => {
|
|
|
4073
4698
|
"absolute right-6 top-6"
|
|
4074
4699
|
),
|
|
4075
4700
|
children: [
|
|
4076
|
-
/* @__PURE__ */
|
|
4077
|
-
/* @__PURE__ */
|
|
4701
|
+
/* @__PURE__ */ jsx103(XCloseIcon, { className: "h-3 w-3" }),
|
|
4702
|
+
/* @__PURE__ */ jsx103("span", { className: "sr-only", children: "Close" })
|
|
4078
4703
|
]
|
|
4079
4704
|
}
|
|
4080
4705
|
)
|
|
@@ -4090,7 +4715,7 @@ var DialogHeader = (_a) => {
|
|
|
4090
4715
|
} = _b, props = __objRest(_b, [
|
|
4091
4716
|
"className"
|
|
4092
4717
|
]);
|
|
4093
|
-
return /* @__PURE__ */
|
|
4718
|
+
return /* @__PURE__ */ jsx103(
|
|
4094
4719
|
"div",
|
|
4095
4720
|
__spreadValues({
|
|
4096
4721
|
className: cn(
|
|
@@ -4107,7 +4732,7 @@ var DialogFooter = (_a) => {
|
|
|
4107
4732
|
} = _b, props = __objRest(_b, [
|
|
4108
4733
|
"className"
|
|
4109
4734
|
]);
|
|
4110
|
-
return /* @__PURE__ */
|
|
4735
|
+
return /* @__PURE__ */ jsx103(
|
|
4111
4736
|
"div",
|
|
4112
4737
|
__spreadValues({
|
|
4113
4738
|
className: cn(
|
|
@@ -4118,9 +4743,9 @@ var DialogFooter = (_a) => {
|
|
|
4118
4743
|
);
|
|
4119
4744
|
};
|
|
4120
4745
|
DialogFooter.displayName = "DialogFooter";
|
|
4121
|
-
var DialogTitle =
|
|
4746
|
+
var DialogTitle = React7.forwardRef((_a, ref) => {
|
|
4122
4747
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4123
|
-
return /* @__PURE__ */
|
|
4748
|
+
return /* @__PURE__ */ jsx103(
|
|
4124
4749
|
DialogPrimitive.Title,
|
|
4125
4750
|
__spreadValues({
|
|
4126
4751
|
ref,
|
|
@@ -4129,9 +4754,9 @@ var DialogTitle = React5.forwardRef((_a, ref) => {
|
|
|
4129
4754
|
);
|
|
4130
4755
|
});
|
|
4131
4756
|
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
4132
|
-
var DialogDescription =
|
|
4757
|
+
var DialogDescription = React7.forwardRef((_a, ref) => {
|
|
4133
4758
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4134
|
-
return /* @__PURE__ */
|
|
4759
|
+
return /* @__PURE__ */ jsx103(
|
|
4135
4760
|
DialogPrimitive.Description,
|
|
4136
4761
|
__spreadValues({
|
|
4137
4762
|
ref,
|
|
@@ -4141,15 +4766,534 @@ var DialogDescription = React5.forwardRef((_a, ref) => {
|
|
|
4141
4766
|
});
|
|
4142
4767
|
DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
|
4143
4768
|
|
|
4769
|
+
// src/components/DropdownMenu/DropdownMenu.tsx
|
|
4770
|
+
import React8 from "react";
|
|
4771
|
+
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
4772
|
+
import { jsx as jsx104, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4773
|
+
var DropdownMenu = DropdownMenuPrimitive.Root;
|
|
4774
|
+
var DropdownMenuItemBase = ({
|
|
4775
|
+
icon,
|
|
4776
|
+
checkbox,
|
|
4777
|
+
className,
|
|
4778
|
+
checked,
|
|
4779
|
+
children,
|
|
4780
|
+
destructive,
|
|
4781
|
+
description,
|
|
4782
|
+
hasSubNav
|
|
4783
|
+
}) => {
|
|
4784
|
+
return /* @__PURE__ */ jsxs75(
|
|
4785
|
+
"div",
|
|
4786
|
+
{
|
|
4787
|
+
className: cn(
|
|
4788
|
+
"mx-1 px-2 py-1.5 text-sm flex flex-col gap-1 text-gray-1000 rounded-md cursor-pointer group-focus-within:bg-gray-100 group-data-[disabled]:cursor-not-allowed group-data-[disabled]:opacity-50 group-hover:bg-gray-50 group-active:bg-gray-100 group-data-[state=checked]:bg-gray-50",
|
|
4789
|
+
{ "text-red-700 font-medium": destructive },
|
|
4790
|
+
className
|
|
4791
|
+
),
|
|
4792
|
+
children: [
|
|
4793
|
+
/* @__PURE__ */ jsxs75("div", { className: "flex items-center gap-2", children: [
|
|
4794
|
+
checkbox && /* @__PURE__ */ jsx104(Checkbox, { checked }),
|
|
4795
|
+
icon && React8.cloneElement(icon, {
|
|
4796
|
+
size: 16,
|
|
4797
|
+
className: cn(
|
|
4798
|
+
"flex-shrink-0",
|
|
4799
|
+
{ "text-red-700": destructive },
|
|
4800
|
+
icon.props.className
|
|
4801
|
+
)
|
|
4802
|
+
}),
|
|
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" }) })
|
|
4805
|
+
] }),
|
|
4806
|
+
description && /* @__PURE__ */ jsx104("div", { className: "text-xs text-gray-700", children: description })
|
|
4807
|
+
]
|
|
4808
|
+
}
|
|
4809
|
+
);
|
|
4810
|
+
};
|
|
4811
|
+
var DropdownMenuCheckboxItem = React8.forwardRef(
|
|
4812
|
+
(_a, forwardedRef) => {
|
|
4813
|
+
var _b = _a, { className, children, checked, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "checked", "icon", "description", "destructive"]);
|
|
4814
|
+
const extraProps = {
|
|
4815
|
+
description,
|
|
4816
|
+
destructive,
|
|
4817
|
+
icon,
|
|
4818
|
+
checked,
|
|
4819
|
+
className
|
|
4820
|
+
};
|
|
4821
|
+
return /* @__PURE__ */ jsx104(
|
|
4822
|
+
DropdownMenuPrimitive.CheckboxItem,
|
|
4823
|
+
__spreadProps(__spreadValues({
|
|
4824
|
+
checked
|
|
4825
|
+
}, props), {
|
|
4826
|
+
ref: forwardedRef,
|
|
4827
|
+
className: "outline-none select-none group",
|
|
4828
|
+
children: /* @__PURE__ */ jsx104(DropdownMenuItemBase, __spreadProps(__spreadValues({ checkbox: true }, extraProps), { children }))
|
|
4829
|
+
})
|
|
4830
|
+
);
|
|
4831
|
+
}
|
|
4832
|
+
);
|
|
4833
|
+
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
|
|
4834
|
+
var DropdownMenuContent = React8.forwardRef(
|
|
4835
|
+
(_a, forwardedRef) => {
|
|
4836
|
+
var _b = _a, {
|
|
4837
|
+
children,
|
|
4838
|
+
className,
|
|
4839
|
+
side = "bottom",
|
|
4840
|
+
sideOffset = 8,
|
|
4841
|
+
align = "start"
|
|
4842
|
+
} = _b, props = __objRest(_b, [
|
|
4843
|
+
"children",
|
|
4844
|
+
"className",
|
|
4845
|
+
"side",
|
|
4846
|
+
"sideOffset",
|
|
4847
|
+
"align"
|
|
4848
|
+
]);
|
|
4849
|
+
return /* @__PURE__ */ jsx104(
|
|
4850
|
+
DropdownMenuPrimitive.Content,
|
|
4851
|
+
__spreadProps(__spreadValues({
|
|
4852
|
+
className: cn(
|
|
4853
|
+
"min-w-[144px] bg-white rounded-md py-1 shadow-dropdown-sm border border-gray-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
|
4854
|
+
className
|
|
4855
|
+
),
|
|
4856
|
+
side,
|
|
4857
|
+
sideOffset,
|
|
4858
|
+
align
|
|
4859
|
+
}, props), {
|
|
4860
|
+
ref: forwardedRef,
|
|
4861
|
+
children
|
|
4862
|
+
})
|
|
4863
|
+
);
|
|
4864
|
+
}
|
|
4865
|
+
);
|
|
4866
|
+
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
|
|
4867
|
+
var DropdownMenuGroup = DropdownMenuPrimitive.Group;
|
|
4868
|
+
var DropdownMenuItem = React8.forwardRef(
|
|
4869
|
+
(_a, forwardedRef) => {
|
|
4870
|
+
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4871
|
+
const extraProps = {
|
|
4872
|
+
description,
|
|
4873
|
+
destructive,
|
|
4874
|
+
icon,
|
|
4875
|
+
className
|
|
4876
|
+
};
|
|
4877
|
+
return /* @__PURE__ */ jsx104(
|
|
4878
|
+
DropdownMenuPrimitive.Item,
|
|
4879
|
+
__spreadProps(__spreadValues({}, props), {
|
|
4880
|
+
ref: forwardedRef,
|
|
4881
|
+
className: "outline-none select-none group",
|
|
4882
|
+
children: /* @__PURE__ */ jsx104(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
4883
|
+
})
|
|
4884
|
+
);
|
|
4885
|
+
}
|
|
4886
|
+
);
|
|
4887
|
+
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
|
|
4888
|
+
var DropdownMenuLabel = React8.forwardRef((_a, forwardedRef) => {
|
|
4889
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4890
|
+
return /* @__PURE__ */ jsx104(
|
|
4891
|
+
DropdownMenuPrimitive.Label,
|
|
4892
|
+
__spreadProps(__spreadValues({
|
|
4893
|
+
className: cn(
|
|
4894
|
+
"mx-1 px-2 py-1.5 text-sm font-medium text-gray-1000",
|
|
4895
|
+
className
|
|
4896
|
+
)
|
|
4897
|
+
}, props), {
|
|
4898
|
+
ref: forwardedRef
|
|
4899
|
+
})
|
|
4900
|
+
);
|
|
4901
|
+
});
|
|
4902
|
+
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
|
|
4903
|
+
var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
|
|
4904
|
+
var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
|
|
4905
|
+
var DropdownMenuRadioItem = React8.forwardRef(
|
|
4906
|
+
(_a, forwardedRef) => {
|
|
4907
|
+
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4908
|
+
const extraProps = {
|
|
4909
|
+
description,
|
|
4910
|
+
destructive,
|
|
4911
|
+
icon,
|
|
4912
|
+
className
|
|
4913
|
+
};
|
|
4914
|
+
return /* @__PURE__ */ jsx104(
|
|
4915
|
+
DropdownMenuPrimitive.RadioItem,
|
|
4916
|
+
__spreadProps(__spreadValues({}, props), {
|
|
4917
|
+
ref: forwardedRef,
|
|
4918
|
+
className: "outline-none select-none group",
|
|
4919
|
+
children: /* @__PURE__ */ jsx104(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
4920
|
+
})
|
|
4921
|
+
);
|
|
4922
|
+
}
|
|
4923
|
+
);
|
|
4924
|
+
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
|
|
4925
|
+
var DropdownMenuSeparator = React8.forwardRef((_a, forwardedRef) => {
|
|
4926
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4927
|
+
return /* @__PURE__ */ jsx104(
|
|
4928
|
+
DropdownMenuPrimitive.Separator,
|
|
4929
|
+
__spreadProps(__spreadValues({
|
|
4930
|
+
className: cn("my-1 border-b border-gray-200", className)
|
|
4931
|
+
}, props), {
|
|
4932
|
+
ref: forwardedRef
|
|
4933
|
+
})
|
|
4934
|
+
);
|
|
4935
|
+
});
|
|
4936
|
+
DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName;
|
|
4937
|
+
var DropdownMenuSub = DropdownMenuPrimitive.Sub;
|
|
4938
|
+
var DropdownMenuSubContent = React8.forwardRef((_a, forwardedRef) => {
|
|
4939
|
+
var _b = _a, { children, className, sideOffset = 8 } = _b, props = __objRest(_b, ["children", "className", "sideOffset"]);
|
|
4940
|
+
return /* @__PURE__ */ jsx104(
|
|
4941
|
+
DropdownMenuPrimitive.SubContent,
|
|
4942
|
+
__spreadProps(__spreadValues({
|
|
4943
|
+
className: cn(
|
|
4944
|
+
"min-w-[144px] bg-white rounded-md py-1 shadow-dropdown-sm border border-gray-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
|
4945
|
+
className
|
|
4946
|
+
),
|
|
4947
|
+
sideOffset
|
|
4948
|
+
}, props), {
|
|
4949
|
+
ref: forwardedRef,
|
|
4950
|
+
children
|
|
4951
|
+
})
|
|
4952
|
+
);
|
|
4953
|
+
});
|
|
4954
|
+
DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
|
|
4955
|
+
var DropdownMenuSubTrigger = React8.forwardRef(
|
|
4956
|
+
(_a, forwardedRef) => {
|
|
4957
|
+
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4958
|
+
const extraProps = {
|
|
4959
|
+
description,
|
|
4960
|
+
destructive,
|
|
4961
|
+
icon,
|
|
4962
|
+
className
|
|
4963
|
+
};
|
|
4964
|
+
return /* @__PURE__ */ jsx104(
|
|
4965
|
+
DropdownMenuPrimitive.SubTrigger,
|
|
4966
|
+
__spreadProps(__spreadValues({}, props), {
|
|
4967
|
+
ref: forwardedRef,
|
|
4968
|
+
className: "outline-none select-none group",
|
|
4969
|
+
children: /* @__PURE__ */ jsx104(DropdownMenuItemBase, __spreadProps(__spreadValues({ hasSubNav: true }, extraProps), { children }))
|
|
4970
|
+
})
|
|
4971
|
+
);
|
|
4972
|
+
}
|
|
4973
|
+
);
|
|
4974
|
+
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
|
|
4975
|
+
var DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
|
|
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
|
+
|
|
4994
|
+
// src/components/Form/Form.tsx
|
|
4995
|
+
import * as React11 from "react";
|
|
4996
|
+
import { Slot as Slot2 } from "@radix-ui/react-slot";
|
|
4997
|
+
import {
|
|
4998
|
+
Controller,
|
|
4999
|
+
FormProvider,
|
|
5000
|
+
useFormContext
|
|
5001
|
+
} from "react-hook-form";
|
|
5002
|
+
|
|
5003
|
+
// src/components/Label/Label.tsx
|
|
5004
|
+
import * as React10 from "react";
|
|
5005
|
+
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
5006
|
+
import { jsx as jsx106 } from "react/jsx-runtime";
|
|
5007
|
+
var Label2 = React10.forwardRef((_a, ref) => {
|
|
5008
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5009
|
+
return /* @__PURE__ */ jsx106(
|
|
5010
|
+
LabelPrimitive.Root,
|
|
5011
|
+
__spreadValues({
|
|
5012
|
+
ref,
|
|
5013
|
+
className: cn(
|
|
5014
|
+
"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",
|
|
5015
|
+
className
|
|
5016
|
+
)
|
|
5017
|
+
}, props)
|
|
5018
|
+
);
|
|
5019
|
+
});
|
|
5020
|
+
Label2.displayName = LabelPrimitive.Root.displayName;
|
|
5021
|
+
|
|
5022
|
+
// src/components/Form/Form.tsx
|
|
5023
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
5024
|
+
var Form = FormProvider;
|
|
5025
|
+
var FormFieldContext = React11.createContext(
|
|
5026
|
+
{}
|
|
5027
|
+
);
|
|
5028
|
+
var FormField = (_a) => {
|
|
5029
|
+
var props = __objRest(_a, []);
|
|
5030
|
+
return /* @__PURE__ */ jsx107(
|
|
5031
|
+
FormFieldContext.Provider,
|
|
5032
|
+
{
|
|
5033
|
+
value: { name: props.name, isDisabled: props.disabled },
|
|
5034
|
+
children: /* @__PURE__ */ jsx107(Controller, __spreadValues({}, props))
|
|
5035
|
+
}
|
|
5036
|
+
);
|
|
5037
|
+
};
|
|
5038
|
+
var useFormField = () => {
|
|
5039
|
+
const fieldContext = React11.useContext(FormFieldContext);
|
|
5040
|
+
const itemContext = React11.useContext(FormItemContext);
|
|
5041
|
+
const { getFieldState, formState } = useFormContext();
|
|
5042
|
+
const fieldState = getFieldState(fieldContext.name, formState);
|
|
5043
|
+
if (!fieldContext) {
|
|
5044
|
+
throw new Error("useFormField should be used within <FormField>");
|
|
5045
|
+
}
|
|
5046
|
+
const { id } = itemContext;
|
|
5047
|
+
return __spreadValues({
|
|
5048
|
+
id,
|
|
5049
|
+
name: fieldContext.name,
|
|
5050
|
+
isDisabled: fieldContext.isDisabled,
|
|
5051
|
+
formItemId: `${id}-form-item`,
|
|
5052
|
+
formDescriptionId: `${id}-form-item-description`,
|
|
5053
|
+
formMessageId: `${id}-form-item-message`
|
|
5054
|
+
}, fieldState);
|
|
5055
|
+
};
|
|
5056
|
+
var FormItemContext = React11.createContext(
|
|
5057
|
+
{}
|
|
5058
|
+
);
|
|
5059
|
+
var FormItem = React11.forwardRef((_a, ref) => {
|
|
5060
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5061
|
+
const id = React11.useId();
|
|
5062
|
+
return /* @__PURE__ */ jsx107(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ jsx107(
|
|
5063
|
+
"div",
|
|
5064
|
+
__spreadValues({
|
|
5065
|
+
ref,
|
|
5066
|
+
className: cn("flex flex-col gap-1.5", className)
|
|
5067
|
+
}, props)
|
|
5068
|
+
) });
|
|
5069
|
+
});
|
|
5070
|
+
FormItem.displayName = "FormItem";
|
|
5071
|
+
var FormLabel = React11.forwardRef((_a, ref) => {
|
|
5072
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5073
|
+
const { isDisabled, formItemId } = useFormField();
|
|
5074
|
+
return /* @__PURE__ */ jsx107(
|
|
5075
|
+
Label2,
|
|
5076
|
+
__spreadValues({
|
|
5077
|
+
ref,
|
|
5078
|
+
className: cn(isDisabled && "opacity-50 cursor-not-allowed", className),
|
|
5079
|
+
htmlFor: formItemId
|
|
5080
|
+
}, props)
|
|
5081
|
+
);
|
|
5082
|
+
});
|
|
5083
|
+
FormLabel.displayName = "FormLabel";
|
|
5084
|
+
var FormControl = React11.forwardRef((_a, ref) => {
|
|
5085
|
+
var props = __objRest(_a, []);
|
|
5086
|
+
const { error, isDisabled, formItemId, formDescriptionId, formMessageId } = useFormField();
|
|
5087
|
+
return /* @__PURE__ */ jsx107(
|
|
5088
|
+
Slot2,
|
|
5089
|
+
__spreadValues({
|
|
5090
|
+
ref,
|
|
5091
|
+
id: formItemId,
|
|
5092
|
+
"aria-describedby": !error ? `${formDescriptionId}` : `${formDescriptionId} ${formMessageId}`,
|
|
5093
|
+
"aria-invalid": !!error,
|
|
5094
|
+
"data-has-error": !!error,
|
|
5095
|
+
"data-is-disabled": isDisabled
|
|
5096
|
+
}, props)
|
|
5097
|
+
);
|
|
5098
|
+
});
|
|
5099
|
+
FormControl.displayName = "FormControl";
|
|
5100
|
+
var FormDescription = React11.forwardRef((_a, ref) => {
|
|
5101
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5102
|
+
const { formDescriptionId, isDisabled } = useFormField();
|
|
5103
|
+
return /* @__PURE__ */ jsx107(
|
|
5104
|
+
"p",
|
|
5105
|
+
__spreadValues({
|
|
5106
|
+
ref,
|
|
5107
|
+
id: formDescriptionId,
|
|
5108
|
+
className: cn(
|
|
5109
|
+
"text-sm text-gray-700",
|
|
5110
|
+
{ "opacity-50 cursor-not-allowed": isDisabled },
|
|
5111
|
+
className
|
|
5112
|
+
)
|
|
5113
|
+
}, props)
|
|
5114
|
+
);
|
|
5115
|
+
});
|
|
5116
|
+
FormDescription.displayName = "FormDescription";
|
|
5117
|
+
var FormMessage = React11.forwardRef((_a, ref) => {
|
|
5118
|
+
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
5119
|
+
const { error, isDisabled, formMessageId } = useFormField();
|
|
5120
|
+
const body = error ? String(error == null ? void 0 : error.message) : children;
|
|
5121
|
+
const textColorClassName = error ? "text-red-700" : "text-gray-700";
|
|
5122
|
+
return /* @__PURE__ */ jsx107(
|
|
5123
|
+
"p",
|
|
5124
|
+
__spreadProps(__spreadValues({
|
|
5125
|
+
ref,
|
|
5126
|
+
id: formMessageId,
|
|
5127
|
+
className: cn(
|
|
5128
|
+
"text-sm",
|
|
5129
|
+
textColorClassName,
|
|
5130
|
+
{ "opacity-50 cursor-not-allowed": isDisabled },
|
|
5131
|
+
className
|
|
5132
|
+
)
|
|
5133
|
+
}, props), {
|
|
5134
|
+
children: body
|
|
5135
|
+
})
|
|
5136
|
+
);
|
|
5137
|
+
});
|
|
5138
|
+
FormMessage.displayName = "FormMessage";
|
|
5139
|
+
|
|
5140
|
+
// src/components/Input/Input.tsx
|
|
5141
|
+
import * as React12 from "react";
|
|
5142
|
+
import { Slot as Slot3 } from "@radix-ui/react-slot";
|
|
5143
|
+
import { jsx as jsx108, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
5144
|
+
var Input = React12.forwardRef(
|
|
5145
|
+
(_a, ref) => {
|
|
5146
|
+
var _b = _a, {
|
|
5147
|
+
className,
|
|
5148
|
+
type,
|
|
5149
|
+
button,
|
|
5150
|
+
disabled,
|
|
5151
|
+
prefixEnchancer,
|
|
5152
|
+
suffixEnchancer
|
|
5153
|
+
} = _b, props = __objRest(_b, [
|
|
5154
|
+
"className",
|
|
5155
|
+
"type",
|
|
5156
|
+
"button",
|
|
5157
|
+
"disabled",
|
|
5158
|
+
"prefixEnchancer",
|
|
5159
|
+
"suffixEnchancer"
|
|
5160
|
+
]);
|
|
5161
|
+
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
5162
|
+
return /* @__PURE__ */ jsxs77("div", { className: "flex gap-2", children: [
|
|
5163
|
+
/* @__PURE__ */ jsxs77(
|
|
5164
|
+
"div",
|
|
5165
|
+
{
|
|
5166
|
+
className: cn(
|
|
5167
|
+
"flex h-9 w-full rounded-md border border-gray-200 bg-transparent focus-within:outline focus-within:outline-[2px] focus-within:outline-blue-300 focus-within:outline-offset-[2px]",
|
|
5168
|
+
{ "cursor-not-allowed opacity-50": isDisabled },
|
|
5169
|
+
{
|
|
5170
|
+
"border-red-700 focus-within:border-gray-200 focus-within:outline-red-700": !!props["data-has-error"]
|
|
5171
|
+
},
|
|
5172
|
+
className
|
|
5173
|
+
),
|
|
5174
|
+
children: [
|
|
5175
|
+
prefixEnchancer && /* @__PURE__ */ jsx108(
|
|
5176
|
+
Slot3,
|
|
5177
|
+
{
|
|
5178
|
+
className: cn(
|
|
5179
|
+
"text-sm border-gray-200 text-gray-700 border-r py-2 px-3 font-normal",
|
|
5180
|
+
{ "opacity-50": isDisabled }
|
|
5181
|
+
),
|
|
5182
|
+
children: prefixEnchancer
|
|
5183
|
+
}
|
|
5184
|
+
),
|
|
5185
|
+
/* @__PURE__ */ jsx108(
|
|
5186
|
+
"input",
|
|
5187
|
+
__spreadProps(__spreadValues({}, props), {
|
|
5188
|
+
disabled: isDisabled,
|
|
5189
|
+
className: "w-full px-3 py-2 text-sm bg-transparent outline-none text-gray-1000 placeholder:text-gray-700 disabled:cursor-not-allowed",
|
|
5190
|
+
type,
|
|
5191
|
+
ref
|
|
5192
|
+
})
|
|
5193
|
+
),
|
|
5194
|
+
suffixEnchancer && /* @__PURE__ */ jsx108(
|
|
5195
|
+
Slot3,
|
|
5196
|
+
{
|
|
5197
|
+
className: cn(
|
|
5198
|
+
"text-sm border-gray-200 text-gray-700 border-l py-2 px-3 font-normal",
|
|
5199
|
+
{ "opacity-50": isDisabled }
|
|
5200
|
+
),
|
|
5201
|
+
children: suffixEnchancer
|
|
5202
|
+
}
|
|
5203
|
+
)
|
|
5204
|
+
]
|
|
5205
|
+
}
|
|
5206
|
+
),
|
|
5207
|
+
button && React12.cloneElement(button, {
|
|
5208
|
+
size: "sm",
|
|
5209
|
+
disabled: isDisabled,
|
|
5210
|
+
className: cn("flex-shrink-0", button.props.className)
|
|
5211
|
+
})
|
|
5212
|
+
] });
|
|
5213
|
+
}
|
|
5214
|
+
);
|
|
5215
|
+
Input.displayName = "Input";
|
|
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
|
+
|
|
4144
5288
|
// src/components/Popover/Popover.tsx
|
|
4145
|
-
import * as
|
|
5289
|
+
import * as React13 from "react";
|
|
4146
5290
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
4147
|
-
import { jsx as
|
|
5291
|
+
import { jsx as jsx110 } from "react/jsx-runtime";
|
|
4148
5292
|
var Popover = PopoverPrimitive.Root;
|
|
4149
5293
|
var PopoverTrigger = PopoverPrimitive.Trigger;
|
|
4150
|
-
var PopoverContent =
|
|
5294
|
+
var PopoverContent = React13.forwardRef((_a, ref) => {
|
|
4151
5295
|
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
4152
|
-
return /* @__PURE__ */
|
|
5296
|
+
return /* @__PURE__ */ jsx110(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx110(
|
|
4153
5297
|
PopoverPrimitive.Content,
|
|
4154
5298
|
__spreadValues({
|
|
4155
5299
|
ref,
|
|
@@ -4164,13 +5308,112 @@ var PopoverContent = React6.forwardRef((_a, ref) => {
|
|
|
4164
5308
|
});
|
|
4165
5309
|
PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
4166
5310
|
|
|
5311
|
+
// src/components/Select/Select.tsx
|
|
5312
|
+
import * as React14 from "react";
|
|
5313
|
+
import * as SelectPrimitive from "@radix-ui/react-select";
|
|
5314
|
+
import { jsx as jsx111, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
5315
|
+
var Select = SelectPrimitive.Root;
|
|
5316
|
+
var SelectGroup = SelectPrimitive.Group;
|
|
5317
|
+
var SelectValue = SelectPrimitive.Value;
|
|
5318
|
+
var SelectTrigger = React14.forwardRef((_a, ref) => {
|
|
5319
|
+
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
5320
|
+
const isDisabled = props["data-is-disabled"];
|
|
5321
|
+
return /* @__PURE__ */ jsxs79(
|
|
5322
|
+
SelectPrimitive.Trigger,
|
|
5323
|
+
__spreadProps(__spreadValues({
|
|
5324
|
+
ref,
|
|
5325
|
+
className: cn(
|
|
5326
|
+
"flex h-9 w-full px-3 py-2 text-sm outline-none text-gray-1000 placeholder:text-gray-700 rounded-md border border-gray-200 bg-transparent focus-within:outline focus-within:outline-[2px] focus-within:outline-blue-300 focus-within:outline-offset-[2px] items-center justify-between",
|
|
5327
|
+
{ "cursor-not-allowed opacity-50": isDisabled },
|
|
5328
|
+
"disabled:cursor-not-allowed disabled:opacity-50",
|
|
5329
|
+
// when the disabled attr is set by reference
|
|
5330
|
+
{
|
|
5331
|
+
"border-red-700 focus-within:border-gray-200 focus-within:outline-red-700": !!props["data-has-error"]
|
|
5332
|
+
},
|
|
5333
|
+
className
|
|
5334
|
+
)
|
|
5335
|
+
}, props), {
|
|
5336
|
+
children: [
|
|
5337
|
+
children,
|
|
5338
|
+
/* @__PURE__ */ jsx111(SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ jsx111(ChevronSelectorVerticalIcon, { size: "16", className: "w-4 h-4 opacity-50" }) })
|
|
5339
|
+
]
|
|
5340
|
+
})
|
|
5341
|
+
);
|
|
5342
|
+
});
|
|
5343
|
+
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
|
|
5344
|
+
var SelectContent = React14.forwardRef((_a, ref) => {
|
|
5345
|
+
var _b = _a, { className, children, position = "popper" } = _b, props = __objRest(_b, ["className", "children", "position"]);
|
|
5346
|
+
return /* @__PURE__ */ jsx111(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsx111(
|
|
5347
|
+
SelectPrimitive.Content,
|
|
5348
|
+
__spreadProps(__spreadValues({
|
|
5349
|
+
ref,
|
|
5350
|
+
className: cn(
|
|
5351
|
+
"relative z-[150] min-w-[120px] overflow-hidden rounded-md border border-gray-200 bg-white shadow-sm data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
|
5352
|
+
position === "popper" && "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
|
|
5353
|
+
className
|
|
5354
|
+
),
|
|
5355
|
+
position
|
|
5356
|
+
}, props), {
|
|
5357
|
+
children: /* @__PURE__ */ jsx111(
|
|
5358
|
+
SelectPrimitive.Viewport,
|
|
5359
|
+
{
|
|
5360
|
+
className: cn(
|
|
5361
|
+
"p-1",
|
|
5362
|
+
position === "popper" && "h-[40px] w-full min-w-[250px]"
|
|
5363
|
+
),
|
|
5364
|
+
children
|
|
5365
|
+
}
|
|
5366
|
+
)
|
|
5367
|
+
})
|
|
5368
|
+
) });
|
|
5369
|
+
});
|
|
5370
|
+
SelectContent.displayName = SelectPrimitive.Content.displayName;
|
|
5371
|
+
var SelectLabel = React14.forwardRef((_a, ref) => {
|
|
5372
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5373
|
+
return /* @__PURE__ */ jsx111(
|
|
5374
|
+
SelectPrimitive.Label,
|
|
5375
|
+
__spreadValues({
|
|
5376
|
+
ref,
|
|
5377
|
+
className: cn("px-2 py-1.5 text-sm font-medium", className)
|
|
5378
|
+
}, props)
|
|
5379
|
+
);
|
|
5380
|
+
});
|
|
5381
|
+
SelectLabel.displayName = SelectPrimitive.Label.displayName;
|
|
5382
|
+
var SelectItem = React14.forwardRef((_a, ref) => {
|
|
5383
|
+
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
5384
|
+
return /* @__PURE__ */ jsx111(
|
|
5385
|
+
SelectPrimitive.Item,
|
|
5386
|
+
__spreadProps(__spreadValues({
|
|
5387
|
+
ref,
|
|
5388
|
+
className: cn(
|
|
5389
|
+
"flex w-full cursor-default select-none items-center rounded-md py-1.5 px-2 text-gray-1000 text-sm outline-none hover:bg-gray-50 active:bg-gray-100 focus:bg-gray-100 data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[state=checked]:bg-gray-50",
|
|
5390
|
+
className
|
|
5391
|
+
)
|
|
5392
|
+
}, props), {
|
|
5393
|
+
children: /* @__PURE__ */ jsx111(SelectPrimitive.ItemText, { children })
|
|
5394
|
+
})
|
|
5395
|
+
);
|
|
5396
|
+
});
|
|
5397
|
+
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
|
5398
|
+
var SelectSeparator = React14.forwardRef((_a, ref) => {
|
|
5399
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
5400
|
+
return /* @__PURE__ */ jsx111(
|
|
5401
|
+
SelectPrimitive.Separator,
|
|
5402
|
+
__spreadValues({
|
|
5403
|
+
ref,
|
|
5404
|
+
className: cn("-mx-1 my-1 h-px bg-muted", className)
|
|
5405
|
+
}, props)
|
|
5406
|
+
);
|
|
5407
|
+
});
|
|
5408
|
+
SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
5409
|
+
|
|
4167
5410
|
// src/components/Switch/Switch.tsx
|
|
4168
|
-
import * as
|
|
5411
|
+
import * as React15 from "react";
|
|
4169
5412
|
import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
4170
|
-
import { jsx as
|
|
4171
|
-
var Switch =
|
|
5413
|
+
import { jsx as jsx112 } from "react/jsx-runtime";
|
|
5414
|
+
var Switch = React15.forwardRef((_a, ref) => {
|
|
4172
5415
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4173
|
-
return /* @__PURE__ */
|
|
5416
|
+
return /* @__PURE__ */ jsx112(
|
|
4174
5417
|
SwitchPrimitive.Root,
|
|
4175
5418
|
__spreadProps(__spreadValues({
|
|
4176
5419
|
className: cn(
|
|
@@ -4179,20 +5422,119 @@ var Switch = React7.forwardRef((_a, ref) => {
|
|
|
4179
5422
|
)
|
|
4180
5423
|
}, props), {
|
|
4181
5424
|
ref,
|
|
4182
|
-
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" })
|
|
4183
5426
|
})
|
|
4184
5427
|
);
|
|
4185
5428
|
});
|
|
4186
5429
|
Switch.displayName = SwitchPrimitive.Root.displayName;
|
|
4187
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
|
+
|
|
4188
5530
|
// src/components/Tabs/Tabs.tsx
|
|
4189
|
-
import * as
|
|
5531
|
+
import * as React17 from "react";
|
|
4190
5532
|
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
4191
|
-
import { jsx as
|
|
5533
|
+
import { jsx as jsx114 } from "react/jsx-runtime";
|
|
4192
5534
|
var Tabs = TabsPrimitive.Root;
|
|
4193
|
-
var TabsList =
|
|
5535
|
+
var TabsList = React17.forwardRef((_a, ref) => {
|
|
4194
5536
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4195
|
-
return /* @__PURE__ */
|
|
5537
|
+
return /* @__PURE__ */ jsx114(
|
|
4196
5538
|
TabsPrimitive.List,
|
|
4197
5539
|
__spreadValues({
|
|
4198
5540
|
ref,
|
|
@@ -4204,9 +5546,9 @@ var TabsList = React8.forwardRef((_a, ref) => {
|
|
|
4204
5546
|
);
|
|
4205
5547
|
});
|
|
4206
5548
|
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
4207
|
-
var TabsTrigger =
|
|
5549
|
+
var TabsTrigger = React17.forwardRef((_a, ref) => {
|
|
4208
5550
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4209
|
-
return /* @__PURE__ */
|
|
5551
|
+
return /* @__PURE__ */ jsx114(
|
|
4210
5552
|
TabsPrimitive.Trigger,
|
|
4211
5553
|
__spreadValues({
|
|
4212
5554
|
ref,
|
|
@@ -4221,9 +5563,9 @@ var TabsTrigger = React8.forwardRef((_a, ref) => {
|
|
|
4221
5563
|
);
|
|
4222
5564
|
});
|
|
4223
5565
|
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
4224
|
-
var TabsContent =
|
|
5566
|
+
var TabsContent = React17.forwardRef((_a, ref) => {
|
|
4225
5567
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4226
|
-
return /* @__PURE__ */
|
|
5568
|
+
return /* @__PURE__ */ jsx114(
|
|
4227
5569
|
TabsPrimitive.Content,
|
|
4228
5570
|
__spreadValues({
|
|
4229
5571
|
ref,
|
|
@@ -4235,6 +5577,68 @@ var TabsContent = React8.forwardRef((_a, ref) => {
|
|
|
4235
5577
|
);
|
|
4236
5578
|
});
|
|
4237
5579
|
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
5580
|
+
|
|
5581
|
+
// src/components/Textarea/Textarea.tsx
|
|
5582
|
+
import * as React18 from "react";
|
|
5583
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
5584
|
+
var Textarea = React18.forwardRef(
|
|
5585
|
+
(_a, ref) => {
|
|
5586
|
+
var _b = _a, { className, disabled } = _b, props = __objRest(_b, ["className", "disabled"]);
|
|
5587
|
+
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
5588
|
+
return /* @__PURE__ */ jsx115("div", { className: "flex gap-2", children: /* @__PURE__ */ jsx115(
|
|
5589
|
+
"div",
|
|
5590
|
+
{
|
|
5591
|
+
className: cn(
|
|
5592
|
+
"flex min-h-[80px] w-full rounded-md border border-gray-200 bg-transparent focus-within:outline focus-within:outline-[2px] focus-within:outline-blue-300 focus-within:outline-offset-[2px]",
|
|
5593
|
+
{ "cursor-not-allowed opacity-50": isDisabled },
|
|
5594
|
+
{
|
|
5595
|
+
"border-red-700 focus-within:border-gray-200 focus-within:outline-red-700": !!props["data-has-error"]
|
|
5596
|
+
},
|
|
5597
|
+
className
|
|
5598
|
+
),
|
|
5599
|
+
children: /* @__PURE__ */ jsx115(
|
|
5600
|
+
"textarea",
|
|
5601
|
+
__spreadProps(__spreadValues({}, props), {
|
|
5602
|
+
disabled: isDisabled,
|
|
5603
|
+
className: "w-full px-3 py-2 text-sm bg-transparent outline-none text-gray-1000 placeholder:text-gray-700 disabled:cursor-not-allowed",
|
|
5604
|
+
ref
|
|
5605
|
+
})
|
|
5606
|
+
)
|
|
5607
|
+
}
|
|
5608
|
+
) });
|
|
5609
|
+
}
|
|
5610
|
+
);
|
|
5611
|
+
Textarea.displayName = "Textarea";
|
|
5612
|
+
|
|
5613
|
+
// src/components/Tooltip/Tooltip.tsx
|
|
5614
|
+
import * as React19 from "react";
|
|
5615
|
+
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
5616
|
+
import { jsx as jsx116 } from "react/jsx-runtime";
|
|
5617
|
+
var TooltipProvider = (_a) => {
|
|
5618
|
+
var _b = _a, {
|
|
5619
|
+
delayDuration = 0
|
|
5620
|
+
} = _b, props = __objRest(_b, [
|
|
5621
|
+
"delayDuration"
|
|
5622
|
+
]);
|
|
5623
|
+
return /* @__PURE__ */ jsx116(TooltipPrimitive.Provider, __spreadValues({ delayDuration }, props));
|
|
5624
|
+
};
|
|
5625
|
+
var Tooltip = TooltipPrimitive.Root;
|
|
5626
|
+
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
5627
|
+
var TooltipContent = React19.forwardRef((_a, ref) => {
|
|
5628
|
+
var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
|
|
5629
|
+
return /* @__PURE__ */ jsx116(
|
|
5630
|
+
TooltipPrimitive.Content,
|
|
5631
|
+
__spreadValues({
|
|
5632
|
+
ref,
|
|
5633
|
+
sideOffset,
|
|
5634
|
+
className: cn(
|
|
5635
|
+
"z-50 overflow-hidden rounded-md border bg-gray-1000 px-3 py-1.5 text-sm text-white font-medium animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
|
5636
|
+
className
|
|
5637
|
+
)
|
|
5638
|
+
}, props)
|
|
5639
|
+
);
|
|
5640
|
+
});
|
|
5641
|
+
TooltipContent.displayName = TooltipPrimitive.Content.displayName;
|
|
4238
5642
|
export {
|
|
4239
5643
|
Accordion,
|
|
4240
5644
|
AccordionContent,
|
|
@@ -4257,6 +5661,7 @@ export {
|
|
|
4257
5661
|
ArrowRightIcon,
|
|
4258
5662
|
ArrowUpIcon,
|
|
4259
5663
|
AttachmentIcon,
|
|
5664
|
+
Avatar,
|
|
4260
5665
|
Badge,
|
|
4261
5666
|
BellIcon,
|
|
4262
5667
|
Button,
|
|
@@ -4267,10 +5672,23 @@ export {
|
|
|
4267
5672
|
CameraIcon,
|
|
4268
5673
|
CameraOffIcon,
|
|
4269
5674
|
CheckCircleIcon,
|
|
5675
|
+
CheckIcon,
|
|
5676
|
+
Checkbox,
|
|
4270
5677
|
ChevronDownIcon,
|
|
5678
|
+
ChevronLeftDoubleIcon,
|
|
4271
5679
|
ChevronLeftIcon,
|
|
5680
|
+
ChevronRightDoubleIcon,
|
|
4272
5681
|
ChevronRightIcon,
|
|
5682
|
+
ChevronSelectorVerticalIcon,
|
|
4273
5683
|
ChevronUpIcon,
|
|
5684
|
+
Command,
|
|
5685
|
+
CommandEmpty,
|
|
5686
|
+
CommandGroup,
|
|
5687
|
+
CommandInput,
|
|
5688
|
+
CommandItem,
|
|
5689
|
+
CommandList,
|
|
5690
|
+
CommandLoading,
|
|
5691
|
+
CommandSeparator,
|
|
4274
5692
|
CopyIcon,
|
|
4275
5693
|
CursorClickIcon,
|
|
4276
5694
|
Dialog,
|
|
@@ -4280,19 +5698,45 @@ export {
|
|
|
4280
5698
|
DialogHeader,
|
|
4281
5699
|
DialogTitle,
|
|
4282
5700
|
DialogTrigger,
|
|
5701
|
+
DotsGrid,
|
|
4283
5702
|
DotsHorizontalIcon,
|
|
4284
5703
|
DownloadIcon,
|
|
5704
|
+
DropdownMenu,
|
|
5705
|
+
DropdownMenuCheckboxItem,
|
|
5706
|
+
DropdownMenuContent,
|
|
5707
|
+
DropdownMenuGroup,
|
|
5708
|
+
DropdownMenuItem,
|
|
5709
|
+
DropdownMenuLabel,
|
|
5710
|
+
DropdownMenuPortal,
|
|
5711
|
+
DropdownMenuRadioGroup,
|
|
5712
|
+
DropdownMenuRadioItem,
|
|
5713
|
+
DropdownMenuSeparator,
|
|
5714
|
+
DropdownMenuSub,
|
|
5715
|
+
DropdownMenuSubContent,
|
|
5716
|
+
DropdownMenuSubTrigger,
|
|
5717
|
+
DropdownMenuTrigger,
|
|
4285
5718
|
EditIcon,
|
|
4286
5719
|
ExpandIcon,
|
|
5720
|
+
FileQuestionIcon,
|
|
5721
|
+
FilterButton,
|
|
4287
5722
|
FilterLinesIcon,
|
|
4288
5723
|
FlipBackwardIcon,
|
|
4289
5724
|
FlipForwardIcon,
|
|
5725
|
+
Form,
|
|
5726
|
+
FormControl,
|
|
5727
|
+
FormDescription,
|
|
5728
|
+
FormField,
|
|
5729
|
+
FormItem,
|
|
5730
|
+
FormLabel,
|
|
5731
|
+
FormMessage,
|
|
4290
5732
|
HelpCircleIcon,
|
|
4291
5733
|
HomeIcon,
|
|
4292
5734
|
ImageDownIcon,
|
|
4293
5735
|
ImageIcon,
|
|
4294
5736
|
ImageXIcon,
|
|
4295
5737
|
InfoCircleIcon,
|
|
5738
|
+
Input,
|
|
5739
|
+
Label2 as Label,
|
|
4296
5740
|
LightbulbIcon,
|
|
4297
5741
|
LinkIcon,
|
|
4298
5742
|
LockIcon,
|
|
@@ -4307,11 +5751,14 @@ export {
|
|
|
4307
5751
|
MicrophoneOffIcon,
|
|
4308
5752
|
MonitorIcon,
|
|
4309
5753
|
NotificationBoxIcon,
|
|
5754
|
+
Pagination,
|
|
5755
|
+
PaginationPageChoice,
|
|
4310
5756
|
PauseCircleIcon,
|
|
4311
5757
|
PhoneCallIcon,
|
|
4312
5758
|
PhoneIcon,
|
|
4313
5759
|
PieChartIcon,
|
|
4314
5760
|
PlayCircleIcon,
|
|
5761
|
+
PlayIcon,
|
|
4315
5762
|
PlusCircleIcon,
|
|
4316
5763
|
PlusIcon,
|
|
4317
5764
|
Popover,
|
|
@@ -4326,18 +5773,39 @@ export {
|
|
|
4326
5773
|
RocketIcon,
|
|
4327
5774
|
SaveIcon,
|
|
4328
5775
|
SearchMdIcon,
|
|
5776
|
+
Select,
|
|
5777
|
+
SelectContent,
|
|
5778
|
+
SelectGroup,
|
|
5779
|
+
SelectItem,
|
|
5780
|
+
SelectLabel,
|
|
5781
|
+
SelectSeparator,
|
|
5782
|
+
SelectTrigger,
|
|
5783
|
+
SelectValue,
|
|
4329
5784
|
SendIcon,
|
|
4330
5785
|
SettingsIcon,
|
|
4331
5786
|
ShareArrowIcon,
|
|
4332
5787
|
ShareIcon,
|
|
4333
5788
|
SkipBackIcon,
|
|
4334
5789
|
SkipForwardIcon,
|
|
5790
|
+
SpinnerIcon,
|
|
4335
5791
|
StarsIcon,
|
|
4336
5792
|
Switch,
|
|
5793
|
+
Table,
|
|
5794
|
+
TableBody,
|
|
5795
|
+
TableCell,
|
|
5796
|
+
TableEmpty,
|
|
5797
|
+
TableHead,
|
|
5798
|
+
TableHeader,
|
|
5799
|
+
TableRow,
|
|
4337
5800
|
Tabs,
|
|
4338
5801
|
TabsContent,
|
|
4339
5802
|
TabsList,
|
|
4340
5803
|
TabsTrigger,
|
|
5804
|
+
Textarea,
|
|
5805
|
+
Tooltip,
|
|
5806
|
+
TooltipContent,
|
|
5807
|
+
TooltipProvider,
|
|
5808
|
+
TooltipTrigger,
|
|
4341
5809
|
TrashIcon,
|
|
4342
5810
|
TrendDownIcon,
|
|
4343
5811
|
TrendUpIcon,
|
|
@@ -4355,5 +5823,6 @@ export {
|
|
|
4355
5823
|
XCloseIcon,
|
|
4356
5824
|
buttonSizes,
|
|
4357
5825
|
buttonVariants,
|
|
4358
|
-
iconButtonSizes
|
|
5826
|
+
iconButtonSizes,
|
|
5827
|
+
useFormField
|
|
4359
5828
|
};
|