@snapcall/design-system 1.3.0 → 1.5.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 +114 -1
- package/dist/index.d.ts +114 -1
- package/dist/index.js +1622 -543
- package/dist/index.mjs +1573 -538
- package/dist/tailwind.config.js +8 -6
- package/dist/tailwind.css +1 -1
- package/package.json +19 -5
package/dist/index.mjs
CHANGED
|
@@ -513,7 +513,7 @@ import { forwardRef as forwardRef4 } from "react";
|
|
|
513
513
|
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
514
514
|
var ActivityIcon = forwardRef4(
|
|
515
515
|
function ActivityIcon2(_a, ref) {
|
|
516
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
516
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
517
517
|
return /* @__PURE__ */ jsx6(
|
|
518
518
|
"svg",
|
|
519
519
|
__spreadProps(__spreadValues({
|
|
@@ -582,13 +582,55 @@ var AlertCircleIcon = forwardRef5(
|
|
|
582
582
|
}
|
|
583
583
|
);
|
|
584
584
|
|
|
585
|
-
// src/icons/
|
|
585
|
+
// src/icons/arrowCircleUp.tsx
|
|
586
586
|
import { forwardRef as forwardRef6 } from "react";
|
|
587
|
-
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
588
|
-
var
|
|
587
|
+
import { jsx as jsx8, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
588
|
+
var ArrowCircleUpIcon = forwardRef6(
|
|
589
|
+
function ArrowCircleUpIcon2(_a, ref) {
|
|
590
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
591
|
+
return /* @__PURE__ */ jsxs4(
|
|
592
|
+
"svg",
|
|
593
|
+
__spreadProps(__spreadValues({
|
|
594
|
+
ref,
|
|
595
|
+
width: size,
|
|
596
|
+
height: size,
|
|
597
|
+
viewBox: "0 0 24 24",
|
|
598
|
+
fill: "none",
|
|
599
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
600
|
+
className
|
|
601
|
+
}, other), {
|
|
602
|
+
children: [
|
|
603
|
+
duotone && /* @__PURE__ */ jsx8(
|
|
604
|
+
"path",
|
|
605
|
+
{
|
|
606
|
+
opacity: "0.12",
|
|
607
|
+
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",
|
|
608
|
+
fill: "currentColor"
|
|
609
|
+
}
|
|
610
|
+
),
|
|
611
|
+
/* @__PURE__ */ jsx8(
|
|
612
|
+
"path",
|
|
613
|
+
{
|
|
614
|
+
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",
|
|
615
|
+
stroke: "currentColor",
|
|
616
|
+
strokeWidth: "2",
|
|
617
|
+
strokeLinecap: "round",
|
|
618
|
+
strokeLinejoin: "round"
|
|
619
|
+
}
|
|
620
|
+
)
|
|
621
|
+
]
|
|
622
|
+
})
|
|
623
|
+
);
|
|
624
|
+
}
|
|
625
|
+
);
|
|
626
|
+
|
|
627
|
+
// src/icons/arrowDown.tsx
|
|
628
|
+
import { forwardRef as forwardRef7 } from "react";
|
|
629
|
+
import { jsx as jsx9 } from "react/jsx-runtime";
|
|
630
|
+
var ArrowDownIcon = forwardRef7(
|
|
589
631
|
function ArrowDownIcon2(_a, ref) {
|
|
590
632
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
591
|
-
return /* @__PURE__ */
|
|
633
|
+
return /* @__PURE__ */ jsx9(
|
|
592
634
|
"svg",
|
|
593
635
|
__spreadProps(__spreadValues({
|
|
594
636
|
ref,
|
|
@@ -599,7 +641,7 @@ var ArrowDownIcon = forwardRef6(
|
|
|
599
641
|
xmlns: "http://www.w3.org/2000/svg",
|
|
600
642
|
className
|
|
601
643
|
}, other), {
|
|
602
|
-
children: /* @__PURE__ */
|
|
644
|
+
children: /* @__PURE__ */ jsx9(
|
|
603
645
|
"path",
|
|
604
646
|
{
|
|
605
647
|
d: "M12 5V19M12 19L19 12M12 19L5 12",
|
|
@@ -615,12 +657,12 @@ var ArrowDownIcon = forwardRef6(
|
|
|
615
657
|
);
|
|
616
658
|
|
|
617
659
|
// src/icons/arrowLeft.tsx
|
|
618
|
-
import { forwardRef as
|
|
619
|
-
import { jsx as
|
|
620
|
-
var ArrowLeftIcon =
|
|
660
|
+
import { forwardRef as forwardRef8 } from "react";
|
|
661
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
662
|
+
var ArrowLeftIcon = forwardRef8(
|
|
621
663
|
function ArrowLeftIcon2(_a, ref) {
|
|
622
664
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
623
|
-
return /* @__PURE__ */
|
|
665
|
+
return /* @__PURE__ */ jsx10(
|
|
624
666
|
"svg",
|
|
625
667
|
__spreadProps(__spreadValues({
|
|
626
668
|
ref,
|
|
@@ -631,7 +673,7 @@ var ArrowLeftIcon = forwardRef7(
|
|
|
631
673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
632
674
|
className
|
|
633
675
|
}, other), {
|
|
634
|
-
children: /* @__PURE__ */
|
|
676
|
+
children: /* @__PURE__ */ jsx10(
|
|
635
677
|
"path",
|
|
636
678
|
{
|
|
637
679
|
d: "M19 12H5M5 12L12 19M5 12L12 5",
|
|
@@ -647,12 +689,12 @@ var ArrowLeftIcon = forwardRef7(
|
|
|
647
689
|
);
|
|
648
690
|
|
|
649
691
|
// src/icons/arrowRight.tsx
|
|
650
|
-
import { forwardRef as
|
|
651
|
-
import { jsx as
|
|
652
|
-
var ArrowRightIcon =
|
|
692
|
+
import { forwardRef as forwardRef9 } from "react";
|
|
693
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
694
|
+
var ArrowRightIcon = forwardRef9(
|
|
653
695
|
function ArrowRightIcon2(_a, ref) {
|
|
654
696
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
655
|
-
return /* @__PURE__ */
|
|
697
|
+
return /* @__PURE__ */ jsx11(
|
|
656
698
|
"svg",
|
|
657
699
|
__spreadProps(__spreadValues({
|
|
658
700
|
ref,
|
|
@@ -663,7 +705,7 @@ var ArrowRightIcon = forwardRef8(
|
|
|
663
705
|
xmlns: "http://www.w3.org/2000/svg",
|
|
664
706
|
className
|
|
665
707
|
}, other), {
|
|
666
|
-
children: /* @__PURE__ */
|
|
708
|
+
children: /* @__PURE__ */ jsx11(
|
|
667
709
|
"path",
|
|
668
710
|
{
|
|
669
711
|
d: "M5 12H19M19 12L12 5M19 12L12 19",
|
|
@@ -679,12 +721,12 @@ var ArrowRightIcon = forwardRef8(
|
|
|
679
721
|
);
|
|
680
722
|
|
|
681
723
|
// src/icons/arrowUp.tsx
|
|
682
|
-
import { forwardRef as
|
|
683
|
-
import { jsx as
|
|
684
|
-
var ArrowUpIcon =
|
|
724
|
+
import { forwardRef as forwardRef10 } from "react";
|
|
725
|
+
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
726
|
+
var ArrowUpIcon = forwardRef10(
|
|
685
727
|
function ArrowUpIcon2(_a, ref) {
|
|
686
728
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
687
|
-
return /* @__PURE__ */
|
|
729
|
+
return /* @__PURE__ */ jsx12(
|
|
688
730
|
"svg",
|
|
689
731
|
__spreadProps(__spreadValues({
|
|
690
732
|
ref,
|
|
@@ -695,7 +737,7 @@ var ArrowUpIcon = forwardRef9(
|
|
|
695
737
|
xmlns: "http://www.w3.org/2000/svg",
|
|
696
738
|
className
|
|
697
739
|
}, other), {
|
|
698
|
-
children: /* @__PURE__ */
|
|
740
|
+
children: /* @__PURE__ */ jsx12(
|
|
699
741
|
"path",
|
|
700
742
|
{
|
|
701
743
|
d: "M12 19V5M12 5L5 12M12 5L19 12",
|
|
@@ -710,12 +752,44 @@ var ArrowUpIcon = forwardRef9(
|
|
|
710
752
|
}
|
|
711
753
|
);
|
|
712
754
|
|
|
755
|
+
// src/icons/attachment.tsx
|
|
756
|
+
import { forwardRef as forwardRef11 } from "react";
|
|
757
|
+
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
758
|
+
var AttachmentIcon = forwardRef11(
|
|
759
|
+
function AttachmentIcon2(_a, ref) {
|
|
760
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
761
|
+
return /* @__PURE__ */ jsx13(
|
|
762
|
+
"svg",
|
|
763
|
+
__spreadProps(__spreadValues({
|
|
764
|
+
ref,
|
|
765
|
+
width: size,
|
|
766
|
+
height: size,
|
|
767
|
+
viewBox: "0 0 24 24",
|
|
768
|
+
fill: "none",
|
|
769
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
770
|
+
className
|
|
771
|
+
}, other), {
|
|
772
|
+
children: /* @__PURE__ */ jsx13(
|
|
773
|
+
"path",
|
|
774
|
+
{
|
|
775
|
+
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",
|
|
776
|
+
stroke: "currentColor",
|
|
777
|
+
strokeWidth: "2",
|
|
778
|
+
strokeLinecap: "round",
|
|
779
|
+
strokeLinejoin: "round"
|
|
780
|
+
}
|
|
781
|
+
)
|
|
782
|
+
})
|
|
783
|
+
);
|
|
784
|
+
}
|
|
785
|
+
);
|
|
786
|
+
|
|
713
787
|
// src/icons/bell.tsx
|
|
714
|
-
import { forwardRef as
|
|
715
|
-
import { jsx as
|
|
716
|
-
var BellIcon =
|
|
788
|
+
import { forwardRef as forwardRef12 } from "react";
|
|
789
|
+
import { jsx as jsx14, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
790
|
+
var BellIcon = forwardRef12(function BellIcon2(_a, ref) {
|
|
717
791
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
718
|
-
return /* @__PURE__ */
|
|
792
|
+
return /* @__PURE__ */ jsxs5(
|
|
719
793
|
"svg",
|
|
720
794
|
__spreadProps(__spreadValues({
|
|
721
795
|
ref,
|
|
@@ -727,7 +801,7 @@ var BellIcon = forwardRef10(function BellIcon2(_a, ref) {
|
|
|
727
801
|
className
|
|
728
802
|
}, other), {
|
|
729
803
|
children: [
|
|
730
|
-
duotone && /* @__PURE__ */
|
|
804
|
+
duotone && /* @__PURE__ */ jsx14(
|
|
731
805
|
"path",
|
|
732
806
|
{
|
|
733
807
|
opacity: "0.12",
|
|
@@ -735,7 +809,7 @@ var BellIcon = forwardRef10(function BellIcon2(_a, ref) {
|
|
|
735
809
|
fill: "currentColor"
|
|
736
810
|
}
|
|
737
811
|
),
|
|
738
|
-
/* @__PURE__ */
|
|
812
|
+
/* @__PURE__ */ jsx14(
|
|
739
813
|
"path",
|
|
740
814
|
{
|
|
741
815
|
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",
|
|
@@ -751,12 +825,12 @@ var BellIcon = forwardRef10(function BellIcon2(_a, ref) {
|
|
|
751
825
|
});
|
|
752
826
|
|
|
753
827
|
// src/icons/calendar.tsx
|
|
754
|
-
import { forwardRef as
|
|
755
|
-
import { jsx as
|
|
756
|
-
var CalendarIcon =
|
|
828
|
+
import { forwardRef as forwardRef13 } from "react";
|
|
829
|
+
import { jsx as jsx15, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
830
|
+
var CalendarIcon = forwardRef13(
|
|
757
831
|
function CalendarIcon2(_a, ref) {
|
|
758
832
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
759
|
-
return /* @__PURE__ */
|
|
833
|
+
return /* @__PURE__ */ jsxs6(
|
|
760
834
|
"svg",
|
|
761
835
|
__spreadProps(__spreadValues({
|
|
762
836
|
ref,
|
|
@@ -768,7 +842,7 @@ var CalendarIcon = forwardRef11(
|
|
|
768
842
|
className
|
|
769
843
|
}, other), {
|
|
770
844
|
children: [
|
|
771
|
-
duotone && /* @__PURE__ */
|
|
845
|
+
duotone && /* @__PURE__ */ jsx15(
|
|
772
846
|
"path",
|
|
773
847
|
{
|
|
774
848
|
opacity: "0.12",
|
|
@@ -776,7 +850,7 @@ var CalendarIcon = forwardRef11(
|
|
|
776
850
|
fill: "currentColor"
|
|
777
851
|
}
|
|
778
852
|
),
|
|
779
|
-
/* @__PURE__ */
|
|
853
|
+
/* @__PURE__ */ jsx15(
|
|
780
854
|
"path",
|
|
781
855
|
{
|
|
782
856
|
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",
|
|
@@ -793,12 +867,12 @@ var CalendarIcon = forwardRef11(
|
|
|
793
867
|
);
|
|
794
868
|
|
|
795
869
|
// src/icons/calendarCheck.tsx
|
|
796
|
-
import { forwardRef as
|
|
797
|
-
import { jsx as
|
|
798
|
-
var CalendarCheckIcon =
|
|
870
|
+
import { forwardRef as forwardRef14 } from "react";
|
|
871
|
+
import { jsx as jsx16, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
872
|
+
var CalendarCheckIcon = forwardRef14(
|
|
799
873
|
function CalendarCheckIcon2(_a, ref) {
|
|
800
874
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
801
|
-
return /* @__PURE__ */
|
|
875
|
+
return /* @__PURE__ */ jsxs7(
|
|
802
876
|
"svg",
|
|
803
877
|
__spreadProps(__spreadValues({
|
|
804
878
|
ref,
|
|
@@ -810,7 +884,7 @@ var CalendarCheckIcon = forwardRef12(
|
|
|
810
884
|
className
|
|
811
885
|
}, other), {
|
|
812
886
|
children: [
|
|
813
|
-
duotone && /* @__PURE__ */
|
|
887
|
+
duotone && /* @__PURE__ */ jsx16(
|
|
814
888
|
"path",
|
|
815
889
|
{
|
|
816
890
|
opacity: "0.12",
|
|
@@ -818,7 +892,7 @@ var CalendarCheckIcon = forwardRef12(
|
|
|
818
892
|
fill: "currentColor"
|
|
819
893
|
}
|
|
820
894
|
),
|
|
821
|
-
/* @__PURE__ */
|
|
895
|
+
/* @__PURE__ */ jsx16(
|
|
822
896
|
"path",
|
|
823
897
|
{
|
|
824
898
|
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",
|
|
@@ -835,12 +909,12 @@ var CalendarCheckIcon = forwardRef12(
|
|
|
835
909
|
);
|
|
836
910
|
|
|
837
911
|
// src/icons/calendarPlus.tsx
|
|
838
|
-
import { forwardRef as
|
|
839
|
-
import { jsx as
|
|
840
|
-
var CalendarPlusIcon =
|
|
912
|
+
import { forwardRef as forwardRef15 } from "react";
|
|
913
|
+
import { jsx as jsx17, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
914
|
+
var CalendarPlusIcon = forwardRef15(
|
|
841
915
|
function CalendarPlusIcon2(_a, ref) {
|
|
842
916
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
843
|
-
return /* @__PURE__ */
|
|
917
|
+
return /* @__PURE__ */ jsxs8(
|
|
844
918
|
"svg",
|
|
845
919
|
__spreadProps(__spreadValues({
|
|
846
920
|
ref,
|
|
@@ -852,7 +926,7 @@ var CalendarPlusIcon = forwardRef13(
|
|
|
852
926
|
className
|
|
853
927
|
}, other), {
|
|
854
928
|
children: [
|
|
855
|
-
duotone && /* @__PURE__ */
|
|
929
|
+
duotone && /* @__PURE__ */ jsx17(
|
|
856
930
|
"path",
|
|
857
931
|
{
|
|
858
932
|
opacity: "0.12",
|
|
@@ -860,7 +934,7 @@ var CalendarPlusIcon = forwardRef13(
|
|
|
860
934
|
fill: "currentColor"
|
|
861
935
|
}
|
|
862
936
|
),
|
|
863
|
-
/* @__PURE__ */
|
|
937
|
+
/* @__PURE__ */ jsx17(
|
|
864
938
|
"path",
|
|
865
939
|
{
|
|
866
940
|
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",
|
|
@@ -877,12 +951,12 @@ var CalendarPlusIcon = forwardRef13(
|
|
|
877
951
|
);
|
|
878
952
|
|
|
879
953
|
// src/icons/camera.tsx
|
|
880
|
-
import { forwardRef as
|
|
881
|
-
import { jsx as
|
|
882
|
-
var CameraIcon =
|
|
954
|
+
import { forwardRef as forwardRef16 } from "react";
|
|
955
|
+
import { jsx as jsx18, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
956
|
+
var CameraIcon = forwardRef16(
|
|
883
957
|
function CameraIcon2(_a, ref) {
|
|
884
958
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
885
|
-
return /* @__PURE__ */
|
|
959
|
+
return /* @__PURE__ */ jsxs9(
|
|
886
960
|
"svg",
|
|
887
961
|
__spreadProps(__spreadValues({
|
|
888
962
|
ref,
|
|
@@ -894,7 +968,7 @@ var CameraIcon = forwardRef14(
|
|
|
894
968
|
className
|
|
895
969
|
}, other), {
|
|
896
970
|
children: [
|
|
897
|
-
duotone && /* @__PURE__ */
|
|
971
|
+
duotone && /* @__PURE__ */ jsx18(
|
|
898
972
|
"path",
|
|
899
973
|
{
|
|
900
974
|
opacity: "0.12",
|
|
@@ -902,7 +976,7 @@ var CameraIcon = forwardRef14(
|
|
|
902
976
|
fill: "currentColor"
|
|
903
977
|
}
|
|
904
978
|
),
|
|
905
|
-
/* @__PURE__ */
|
|
979
|
+
/* @__PURE__ */ jsx18(
|
|
906
980
|
"path",
|
|
907
981
|
{
|
|
908
982
|
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",
|
|
@@ -913,7 +987,7 @@ var CameraIcon = forwardRef14(
|
|
|
913
987
|
}
|
|
914
988
|
),
|
|
915
989
|
",",
|
|
916
|
-
/* @__PURE__ */
|
|
990
|
+
/* @__PURE__ */ jsx18(
|
|
917
991
|
"path",
|
|
918
992
|
{
|
|
919
993
|
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",
|
|
@@ -930,12 +1004,12 @@ var CameraIcon = forwardRef14(
|
|
|
930
1004
|
);
|
|
931
1005
|
|
|
932
1006
|
// src/icons/cameraOff.tsx
|
|
933
|
-
import { forwardRef as
|
|
934
|
-
import { jsx as
|
|
935
|
-
var CameraOffIcon =
|
|
1007
|
+
import { forwardRef as forwardRef17 } from "react";
|
|
1008
|
+
import { jsx as jsx19, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1009
|
+
var CameraOffIcon = forwardRef17(
|
|
936
1010
|
function CameraOffIcon2(_a, ref) {
|
|
937
1011
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
938
|
-
return /* @__PURE__ */
|
|
1012
|
+
return /* @__PURE__ */ jsxs10(
|
|
939
1013
|
"svg",
|
|
940
1014
|
__spreadProps(__spreadValues({
|
|
941
1015
|
ref,
|
|
@@ -947,7 +1021,7 @@ var CameraOffIcon = forwardRef15(
|
|
|
947
1021
|
className
|
|
948
1022
|
}, other), {
|
|
949
1023
|
children: [
|
|
950
|
-
duotone && /* @__PURE__ */
|
|
1024
|
+
duotone && /* @__PURE__ */ jsx19(
|
|
951
1025
|
"path",
|
|
952
1026
|
{
|
|
953
1027
|
opacity: "0.12",
|
|
@@ -955,7 +1029,7 @@ var CameraOffIcon = forwardRef15(
|
|
|
955
1029
|
fill: "currentColor"
|
|
956
1030
|
}
|
|
957
1031
|
),
|
|
958
|
-
/* @__PURE__ */
|
|
1032
|
+
/* @__PURE__ */ jsx19(
|
|
959
1033
|
"path",
|
|
960
1034
|
{
|
|
961
1035
|
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",
|
|
@@ -971,13 +1045,45 @@ var CameraOffIcon = forwardRef15(
|
|
|
971
1045
|
}
|
|
972
1046
|
);
|
|
973
1047
|
|
|
1048
|
+
// src/icons/check.tsx
|
|
1049
|
+
import { forwardRef as forwardRef18 } from "react";
|
|
1050
|
+
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
1051
|
+
var CheckIcon = forwardRef18(
|
|
1052
|
+
function CheckIcon2(_a, ref) {
|
|
1053
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1054
|
+
return /* @__PURE__ */ jsx20(
|
|
1055
|
+
"svg",
|
|
1056
|
+
__spreadProps(__spreadValues({
|
|
1057
|
+
ref,
|
|
1058
|
+
width: size,
|
|
1059
|
+
height: size,
|
|
1060
|
+
viewBox: "0 0 24 24",
|
|
1061
|
+
fill: "none",
|
|
1062
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1063
|
+
className
|
|
1064
|
+
}, other), {
|
|
1065
|
+
children: /* @__PURE__ */ jsx20(
|
|
1066
|
+
"path",
|
|
1067
|
+
{
|
|
1068
|
+
d: "M20 6L9 17L4 12",
|
|
1069
|
+
stroke: "currentColor",
|
|
1070
|
+
strokeWidth: "2",
|
|
1071
|
+
strokeLinecap: "round",
|
|
1072
|
+
strokeLinejoin: "round"
|
|
1073
|
+
}
|
|
1074
|
+
)
|
|
1075
|
+
})
|
|
1076
|
+
);
|
|
1077
|
+
}
|
|
1078
|
+
);
|
|
1079
|
+
|
|
974
1080
|
// src/icons/checkCircle.tsx
|
|
975
|
-
import { forwardRef as
|
|
976
|
-
import { jsx as
|
|
977
|
-
var CheckCircleIcon =
|
|
1081
|
+
import { forwardRef as forwardRef19 } from "react";
|
|
1082
|
+
import { jsx as jsx21, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1083
|
+
var CheckCircleIcon = forwardRef19(
|
|
978
1084
|
function CheckCircleIcon2(_a, ref) {
|
|
979
1085
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
980
|
-
return /* @__PURE__ */
|
|
1086
|
+
return /* @__PURE__ */ jsxs11(
|
|
981
1087
|
"svg",
|
|
982
1088
|
__spreadProps(__spreadValues({
|
|
983
1089
|
ref,
|
|
@@ -989,7 +1095,7 @@ var CheckCircleIcon = forwardRef16(
|
|
|
989
1095
|
className
|
|
990
1096
|
}, other), {
|
|
991
1097
|
children: [
|
|
992
|
-
duotone && /* @__PURE__ */
|
|
1098
|
+
duotone && /* @__PURE__ */ jsx21(
|
|
993
1099
|
"path",
|
|
994
1100
|
{
|
|
995
1101
|
opacity: "0.12",
|
|
@@ -997,7 +1103,7 @@ var CheckCircleIcon = forwardRef16(
|
|
|
997
1103
|
fill: "currentColor"
|
|
998
1104
|
}
|
|
999
1105
|
),
|
|
1000
|
-
/* @__PURE__ */
|
|
1106
|
+
/* @__PURE__ */ jsx21(
|
|
1001
1107
|
"path",
|
|
1002
1108
|
{
|
|
1003
1109
|
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",
|
|
@@ -1014,12 +1120,12 @@ var CheckCircleIcon = forwardRef16(
|
|
|
1014
1120
|
);
|
|
1015
1121
|
|
|
1016
1122
|
// src/icons/chevronLeft.tsx
|
|
1017
|
-
import { forwardRef as
|
|
1018
|
-
import { jsx as
|
|
1019
|
-
var ChevronLeftIcon =
|
|
1123
|
+
import { forwardRef as forwardRef20 } from "react";
|
|
1124
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
1125
|
+
var ChevronLeftIcon = forwardRef20(
|
|
1020
1126
|
function ChevronLeftIcon2(_a, ref) {
|
|
1021
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1022
|
-
return /* @__PURE__ */
|
|
1127
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1128
|
+
return /* @__PURE__ */ jsx22(
|
|
1023
1129
|
"svg",
|
|
1024
1130
|
__spreadProps(__spreadValues({
|
|
1025
1131
|
ref,
|
|
@@ -1030,7 +1136,7 @@ var ChevronLeftIcon = forwardRef17(
|
|
|
1030
1136
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1031
1137
|
className
|
|
1032
1138
|
}, other), {
|
|
1033
|
-
children: /* @__PURE__ */
|
|
1139
|
+
children: /* @__PURE__ */ jsx22(
|
|
1034
1140
|
"path",
|
|
1035
1141
|
{
|
|
1036
1142
|
d: "M15 18L9 12L15 6",
|
|
@@ -1046,12 +1152,12 @@ var ChevronLeftIcon = forwardRef17(
|
|
|
1046
1152
|
);
|
|
1047
1153
|
|
|
1048
1154
|
// src/icons/chevronRight.tsx
|
|
1049
|
-
import { forwardRef as
|
|
1050
|
-
import { jsx as
|
|
1051
|
-
var ChevronRightIcon =
|
|
1155
|
+
import { forwardRef as forwardRef21 } from "react";
|
|
1156
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
1157
|
+
var ChevronRightIcon = forwardRef21(
|
|
1052
1158
|
function ChevronRightIcon2(_a, ref) {
|
|
1053
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1054
|
-
return /* @__PURE__ */
|
|
1159
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1160
|
+
return /* @__PURE__ */ jsx23(
|
|
1055
1161
|
"svg",
|
|
1056
1162
|
__spreadProps(__spreadValues({
|
|
1057
1163
|
ref,
|
|
@@ -1062,7 +1168,7 @@ var ChevronRightIcon = forwardRef18(
|
|
|
1062
1168
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1063
1169
|
className
|
|
1064
1170
|
}, other), {
|
|
1065
|
-
children: /* @__PURE__ */
|
|
1171
|
+
children: /* @__PURE__ */ jsx23(
|
|
1066
1172
|
"path",
|
|
1067
1173
|
{
|
|
1068
1174
|
d: "M9 18L15 12L9 6",
|
|
@@ -1077,13 +1183,45 @@ var ChevronRightIcon = forwardRef18(
|
|
|
1077
1183
|
}
|
|
1078
1184
|
);
|
|
1079
1185
|
|
|
1186
|
+
// src/icons/chevronSelectorVertical.tsx
|
|
1187
|
+
import { forwardRef as forwardRef22 } from "react";
|
|
1188
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
1189
|
+
var ChevronSelectorVerticalIcon = forwardRef22(
|
|
1190
|
+
function ChevronSelectorVerticalIcon2(_a, ref) {
|
|
1191
|
+
var _b = _a, { size = 24, className = "text-gray-1000" } = _b, other = __objRest(_b, ["size", "className"]);
|
|
1192
|
+
return /* @__PURE__ */ jsx24(
|
|
1193
|
+
"svg",
|
|
1194
|
+
__spreadProps(__spreadValues({
|
|
1195
|
+
ref,
|
|
1196
|
+
width: size,
|
|
1197
|
+
height: size,
|
|
1198
|
+
viewBox: "0 0 24 24",
|
|
1199
|
+
fill: "none",
|
|
1200
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1201
|
+
className
|
|
1202
|
+
}, other), {
|
|
1203
|
+
children: /* @__PURE__ */ jsx24(
|
|
1204
|
+
"path",
|
|
1205
|
+
{
|
|
1206
|
+
d: "M7 15L12 20L17 15M7 9L12 4L17 9",
|
|
1207
|
+
stroke: "currentColor",
|
|
1208
|
+
strokeWidth: "2",
|
|
1209
|
+
strokeLinecap: "round",
|
|
1210
|
+
strokeLinejoin: "round"
|
|
1211
|
+
}
|
|
1212
|
+
)
|
|
1213
|
+
})
|
|
1214
|
+
);
|
|
1215
|
+
}
|
|
1216
|
+
);
|
|
1217
|
+
|
|
1080
1218
|
// src/icons/chevronUp.tsx
|
|
1081
|
-
import { forwardRef as
|
|
1082
|
-
import { jsx as
|
|
1083
|
-
var ChevronUpIcon =
|
|
1219
|
+
import { forwardRef as forwardRef23 } from "react";
|
|
1220
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
1221
|
+
var ChevronUpIcon = forwardRef23(
|
|
1084
1222
|
function ChevronUpIcon2(_a, ref) {
|
|
1085
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1086
|
-
return /* @__PURE__ */
|
|
1223
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1224
|
+
return /* @__PURE__ */ jsx25(
|
|
1087
1225
|
"svg",
|
|
1088
1226
|
__spreadProps(__spreadValues({
|
|
1089
1227
|
ref,
|
|
@@ -1094,7 +1232,7 @@ var ChevronUpIcon = forwardRef19(
|
|
|
1094
1232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1095
1233
|
className
|
|
1096
1234
|
}, other), {
|
|
1097
|
-
children: /* @__PURE__ */
|
|
1235
|
+
children: /* @__PURE__ */ jsx25(
|
|
1098
1236
|
"path",
|
|
1099
1237
|
{
|
|
1100
1238
|
d: "M18 15L12 9L6 15",
|
|
@@ -1110,11 +1248,11 @@ var ChevronUpIcon = forwardRef19(
|
|
|
1110
1248
|
);
|
|
1111
1249
|
|
|
1112
1250
|
// src/icons/copy.tsx
|
|
1113
|
-
import { forwardRef as
|
|
1114
|
-
import { jsx as
|
|
1115
|
-
var CopyIcon =
|
|
1251
|
+
import { forwardRef as forwardRef24 } from "react";
|
|
1252
|
+
import { jsx as jsx26, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1253
|
+
var CopyIcon = forwardRef24(function CopyIcon2(_a, ref) {
|
|
1116
1254
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1117
|
-
return /* @__PURE__ */
|
|
1255
|
+
return /* @__PURE__ */ jsxs12(
|
|
1118
1256
|
"svg",
|
|
1119
1257
|
__spreadProps(__spreadValues({
|
|
1120
1258
|
ref,
|
|
@@ -1126,7 +1264,7 @@ var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
|
|
|
1126
1264
|
className
|
|
1127
1265
|
}, other), {
|
|
1128
1266
|
children: [
|
|
1129
|
-
duotone && /* @__PURE__ */
|
|
1267
|
+
duotone && /* @__PURE__ */ jsx26(
|
|
1130
1268
|
"path",
|
|
1131
1269
|
{
|
|
1132
1270
|
opacity: "0.12",
|
|
@@ -1134,7 +1272,7 @@ var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
|
|
|
1134
1272
|
fill: "currentColor"
|
|
1135
1273
|
}
|
|
1136
1274
|
),
|
|
1137
|
-
/* @__PURE__ */
|
|
1275
|
+
/* @__PURE__ */ jsx26(
|
|
1138
1276
|
"path",
|
|
1139
1277
|
{
|
|
1140
1278
|
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",
|
|
@@ -1150,12 +1288,12 @@ var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
|
|
|
1150
1288
|
});
|
|
1151
1289
|
|
|
1152
1290
|
// src/icons/cursorClick.tsx
|
|
1153
|
-
import { forwardRef as
|
|
1154
|
-
import { jsx as
|
|
1155
|
-
var CursorClickIcon =
|
|
1291
|
+
import { forwardRef as forwardRef25 } from "react";
|
|
1292
|
+
import { jsx as jsx27, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1293
|
+
var CursorClickIcon = forwardRef25(
|
|
1156
1294
|
function CursorClickIcon2(_a, ref) {
|
|
1157
1295
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1158
|
-
return /* @__PURE__ */
|
|
1296
|
+
return /* @__PURE__ */ jsxs13(
|
|
1159
1297
|
"svg",
|
|
1160
1298
|
__spreadProps(__spreadValues({
|
|
1161
1299
|
ref,
|
|
@@ -1167,7 +1305,7 @@ var CursorClickIcon = forwardRef21(
|
|
|
1167
1305
|
className
|
|
1168
1306
|
}, other), {
|
|
1169
1307
|
children: [
|
|
1170
|
-
duotone && /* @__PURE__ */
|
|
1308
|
+
duotone && /* @__PURE__ */ jsx27(
|
|
1171
1309
|
"path",
|
|
1172
1310
|
{
|
|
1173
1311
|
opacity: "0.12",
|
|
@@ -1175,7 +1313,7 @@ var CursorClickIcon = forwardRef21(
|
|
|
1175
1313
|
fill: "currentColor"
|
|
1176
1314
|
}
|
|
1177
1315
|
),
|
|
1178
|
-
/* @__PURE__ */
|
|
1316
|
+
/* @__PURE__ */ jsx27(
|
|
1179
1317
|
"path",
|
|
1180
1318
|
{
|
|
1181
1319
|
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",
|
|
@@ -1191,13 +1329,67 @@ var CursorClickIcon = forwardRef21(
|
|
|
1191
1329
|
}
|
|
1192
1330
|
);
|
|
1193
1331
|
|
|
1332
|
+
// src/icons/dotsHorizontal.tsx
|
|
1333
|
+
import { forwardRef as forwardRef26 } from "react";
|
|
1334
|
+
import { jsx as jsx28, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1335
|
+
var DotsHorizontalIcon = forwardRef26(
|
|
1336
|
+
function DotsHorizontalIcon2(_a, ref) {
|
|
1337
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1338
|
+
return /* @__PURE__ */ jsxs14(
|
|
1339
|
+
"svg",
|
|
1340
|
+
__spreadProps(__spreadValues({
|
|
1341
|
+
ref,
|
|
1342
|
+
width: size,
|
|
1343
|
+
height: size,
|
|
1344
|
+
viewBox: "0 0 24 24",
|
|
1345
|
+
fill: "none",
|
|
1346
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1347
|
+
className
|
|
1348
|
+
}, other), {
|
|
1349
|
+
children: [
|
|
1350
|
+
/* @__PURE__ */ jsx28(
|
|
1351
|
+
"path",
|
|
1352
|
+
{
|
|
1353
|
+
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",
|
|
1354
|
+
stroke: "currentColor",
|
|
1355
|
+
strokeWidth: "2",
|
|
1356
|
+
strokeLinecap: "round",
|
|
1357
|
+
strokeLinejoin: "round"
|
|
1358
|
+
}
|
|
1359
|
+
),
|
|
1360
|
+
/* @__PURE__ */ jsx28(
|
|
1361
|
+
"path",
|
|
1362
|
+
{
|
|
1363
|
+
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",
|
|
1364
|
+
stroke: "currentColor",
|
|
1365
|
+
strokeWidth: "2",
|
|
1366
|
+
strokeLinecap: "round",
|
|
1367
|
+
strokeLinejoin: "round"
|
|
1368
|
+
}
|
|
1369
|
+
),
|
|
1370
|
+
/* @__PURE__ */ jsx28(
|
|
1371
|
+
"path",
|
|
1372
|
+
{
|
|
1373
|
+
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",
|
|
1374
|
+
stroke: "currentColor",
|
|
1375
|
+
strokeWidth: "2",
|
|
1376
|
+
strokeLinecap: "round",
|
|
1377
|
+
strokeLinejoin: "round"
|
|
1378
|
+
}
|
|
1379
|
+
)
|
|
1380
|
+
]
|
|
1381
|
+
})
|
|
1382
|
+
);
|
|
1383
|
+
}
|
|
1384
|
+
);
|
|
1385
|
+
|
|
1194
1386
|
// src/icons/download.tsx
|
|
1195
|
-
import { forwardRef as
|
|
1196
|
-
import { jsx as
|
|
1197
|
-
var DownloadIcon =
|
|
1387
|
+
import { forwardRef as forwardRef27 } from "react";
|
|
1388
|
+
import { jsx as jsx29, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1389
|
+
var DownloadIcon = forwardRef27(
|
|
1198
1390
|
function DownloadIcon2(_a, ref) {
|
|
1199
1391
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1200
|
-
return /* @__PURE__ */
|
|
1392
|
+
return /* @__PURE__ */ jsxs15(
|
|
1201
1393
|
"svg",
|
|
1202
1394
|
__spreadProps(__spreadValues({
|
|
1203
1395
|
ref,
|
|
@@ -1209,7 +1401,7 @@ var DownloadIcon = forwardRef22(
|
|
|
1209
1401
|
className
|
|
1210
1402
|
}, other), {
|
|
1211
1403
|
children: [
|
|
1212
|
-
duotone && /* @__PURE__ */
|
|
1404
|
+
duotone && /* @__PURE__ */ jsx29(
|
|
1213
1405
|
"path",
|
|
1214
1406
|
{
|
|
1215
1407
|
opacity: "0.12",
|
|
@@ -1217,7 +1409,7 @@ var DownloadIcon = forwardRef22(
|
|
|
1217
1409
|
fill: "currentColor"
|
|
1218
1410
|
}
|
|
1219
1411
|
),
|
|
1220
|
-
/* @__PURE__ */
|
|
1412
|
+
/* @__PURE__ */ jsx29(
|
|
1221
1413
|
"path",
|
|
1222
1414
|
{
|
|
1223
1415
|
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",
|
|
@@ -1234,11 +1426,11 @@ var DownloadIcon = forwardRef22(
|
|
|
1234
1426
|
);
|
|
1235
1427
|
|
|
1236
1428
|
// src/icons/edit.tsx
|
|
1237
|
-
import { forwardRef as
|
|
1238
|
-
import { jsx as
|
|
1239
|
-
var EditIcon =
|
|
1429
|
+
import { forwardRef as forwardRef28 } from "react";
|
|
1430
|
+
import { jsx as jsx30, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1431
|
+
var EditIcon = forwardRef28(function EditIcon2(_a, ref) {
|
|
1240
1432
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1241
|
-
return /* @__PURE__ */
|
|
1433
|
+
return /* @__PURE__ */ jsxs16(
|
|
1242
1434
|
"svg",
|
|
1243
1435
|
__spreadProps(__spreadValues({
|
|
1244
1436
|
ref,
|
|
@@ -1250,7 +1442,7 @@ var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
|
|
|
1250
1442
|
className
|
|
1251
1443
|
}, other), {
|
|
1252
1444
|
children: [
|
|
1253
|
-
duotone && /* @__PURE__ */
|
|
1445
|
+
duotone && /* @__PURE__ */ jsx30(
|
|
1254
1446
|
"path",
|
|
1255
1447
|
{
|
|
1256
1448
|
opacity: "0.12",
|
|
@@ -1258,7 +1450,7 @@ var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
|
|
|
1258
1450
|
fill: "currentColor"
|
|
1259
1451
|
}
|
|
1260
1452
|
),
|
|
1261
|
-
/* @__PURE__ */
|
|
1453
|
+
/* @__PURE__ */ jsx30(
|
|
1262
1454
|
"path",
|
|
1263
1455
|
{
|
|
1264
1456
|
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",
|
|
@@ -1274,12 +1466,12 @@ var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
|
|
|
1274
1466
|
});
|
|
1275
1467
|
|
|
1276
1468
|
// src/icons/expand.tsx
|
|
1277
|
-
import { forwardRef as
|
|
1278
|
-
import { jsx as
|
|
1279
|
-
var ExpandIcon =
|
|
1469
|
+
import { forwardRef as forwardRef29 } from "react";
|
|
1470
|
+
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
1471
|
+
var ExpandIcon = forwardRef29(
|
|
1280
1472
|
function ExpandIcon2(_a, ref) {
|
|
1281
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1282
|
-
return /* @__PURE__ */
|
|
1473
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1474
|
+
return /* @__PURE__ */ jsx31(
|
|
1283
1475
|
"svg",
|
|
1284
1476
|
__spreadProps(__spreadValues({
|
|
1285
1477
|
ref,
|
|
@@ -1290,7 +1482,7 @@ var ExpandIcon = forwardRef24(
|
|
|
1290
1482
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1291
1483
|
className
|
|
1292
1484
|
}, other), {
|
|
1293
|
-
children: /* @__PURE__ */
|
|
1485
|
+
children: /* @__PURE__ */ jsx31(
|
|
1294
1486
|
"path",
|
|
1295
1487
|
{
|
|
1296
1488
|
d: "M16 8L21 3M21 3H16M21 3V8M8 8L3 3M3 3L3 8M3 3L8 3M8 16L3 21M3 21H8M3 21L3 16M16 16L21 21M21 21V16M21 21H16",
|
|
@@ -1305,13 +1497,87 @@ var ExpandIcon = forwardRef24(
|
|
|
1305
1497
|
}
|
|
1306
1498
|
);
|
|
1307
1499
|
|
|
1500
|
+
// src/icons/fileQuestion.tsx
|
|
1501
|
+
import { forwardRef as forwardRef30 } from "react";
|
|
1502
|
+
import { jsx as jsx32, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1503
|
+
var FileQuestionIcon = forwardRef30(
|
|
1504
|
+
function FileQuestionIcon2(_a, ref) {
|
|
1505
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1506
|
+
return /* @__PURE__ */ jsxs17(
|
|
1507
|
+
"svg",
|
|
1508
|
+
__spreadProps(__spreadValues({
|
|
1509
|
+
ref,
|
|
1510
|
+
width: size,
|
|
1511
|
+
height: size,
|
|
1512
|
+
viewBox: "0 0 24 24",
|
|
1513
|
+
fill: "none",
|
|
1514
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1515
|
+
className
|
|
1516
|
+
}, other), {
|
|
1517
|
+
children: [
|
|
1518
|
+
duotone && /* @__PURE__ */ jsx32(
|
|
1519
|
+
"path",
|
|
1520
|
+
{
|
|
1521
|
+
opacity: "0.12",
|
|
1522
|
+
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",
|
|
1523
|
+
fill: "currentColor"
|
|
1524
|
+
}
|
|
1525
|
+
),
|
|
1526
|
+
/* @__PURE__ */ jsx32(
|
|
1527
|
+
"path",
|
|
1528
|
+
{
|
|
1529
|
+
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",
|
|
1530
|
+
stroke: "currentColor",
|
|
1531
|
+
strokeWidth: "2",
|
|
1532
|
+
strokeLinecap: "round",
|
|
1533
|
+
strokeLinejoin: "round"
|
|
1534
|
+
}
|
|
1535
|
+
)
|
|
1536
|
+
]
|
|
1537
|
+
})
|
|
1538
|
+
);
|
|
1539
|
+
}
|
|
1540
|
+
);
|
|
1541
|
+
|
|
1542
|
+
// src/icons/filterLines.tsx
|
|
1543
|
+
import { forwardRef as forwardRef31 } from "react";
|
|
1544
|
+
import { jsx as jsx33 } from "react/jsx-runtime";
|
|
1545
|
+
var FilterLinesIcon = forwardRef31(
|
|
1546
|
+
function FilterLinesIcon2(_a, ref) {
|
|
1547
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1548
|
+
return /* @__PURE__ */ jsx33(
|
|
1549
|
+
"svg",
|
|
1550
|
+
__spreadProps(__spreadValues({
|
|
1551
|
+
ref,
|
|
1552
|
+
width: size,
|
|
1553
|
+
height: size,
|
|
1554
|
+
viewBox: "0 0 24 24",
|
|
1555
|
+
fill: "none",
|
|
1556
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1557
|
+
className
|
|
1558
|
+
}, other), {
|
|
1559
|
+
children: /* @__PURE__ */ jsx33(
|
|
1560
|
+
"path",
|
|
1561
|
+
{
|
|
1562
|
+
d: "M6 12H18M3 6H21M9 18H15",
|
|
1563
|
+
stroke: "currentColor",
|
|
1564
|
+
strokeWidth: "2",
|
|
1565
|
+
strokeLinecap: "round",
|
|
1566
|
+
strokeLinejoin: "round"
|
|
1567
|
+
}
|
|
1568
|
+
)
|
|
1569
|
+
})
|
|
1570
|
+
);
|
|
1571
|
+
}
|
|
1572
|
+
);
|
|
1573
|
+
|
|
1308
1574
|
// src/icons/flipBackward.tsx
|
|
1309
|
-
import { forwardRef as
|
|
1310
|
-
import { jsx as
|
|
1311
|
-
var FlipBackwardIcon =
|
|
1575
|
+
import { forwardRef as forwardRef32 } from "react";
|
|
1576
|
+
import { jsx as jsx34 } from "react/jsx-runtime";
|
|
1577
|
+
var FlipBackwardIcon = forwardRef32(
|
|
1312
1578
|
function FlipBackwardIcon2(_a, ref) {
|
|
1313
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1314
|
-
return /* @__PURE__ */
|
|
1579
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1580
|
+
return /* @__PURE__ */ jsx34(
|
|
1315
1581
|
"svg",
|
|
1316
1582
|
__spreadProps(__spreadValues({
|
|
1317
1583
|
ref,
|
|
@@ -1322,7 +1588,7 @@ var FlipBackwardIcon = forwardRef25(
|
|
|
1322
1588
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1323
1589
|
className
|
|
1324
1590
|
}, other), {
|
|
1325
|
-
children: /* @__PURE__ */
|
|
1591
|
+
children: /* @__PURE__ */ jsx34(
|
|
1326
1592
|
"path",
|
|
1327
1593
|
{
|
|
1328
1594
|
d: "M3 9H16.5C18.9853 9 21 11.0147 21 13.5C21 15.9853 18.9853 18 16.5 18H12M3 9L7 5M3 9L7 13",
|
|
@@ -1338,12 +1604,12 @@ var FlipBackwardIcon = forwardRef25(
|
|
|
1338
1604
|
);
|
|
1339
1605
|
|
|
1340
1606
|
// src/icons/flipForward.tsx
|
|
1341
|
-
import { forwardRef as
|
|
1342
|
-
import { jsx as
|
|
1343
|
-
var FlipForwardIcon =
|
|
1607
|
+
import { forwardRef as forwardRef33 } from "react";
|
|
1608
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
1609
|
+
var FlipForwardIcon = forwardRef33(
|
|
1344
1610
|
function FlipForwardIcon2(_a, ref) {
|
|
1345
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1346
|
-
return /* @__PURE__ */
|
|
1611
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1612
|
+
return /* @__PURE__ */ jsx35(
|
|
1347
1613
|
"svg",
|
|
1348
1614
|
__spreadProps(__spreadValues({
|
|
1349
1615
|
ref,
|
|
@@ -1354,7 +1620,7 @@ var FlipForwardIcon = forwardRef26(
|
|
|
1354
1620
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1355
1621
|
className
|
|
1356
1622
|
}, other), {
|
|
1357
|
-
children: /* @__PURE__ */
|
|
1623
|
+
children: /* @__PURE__ */ jsx35(
|
|
1358
1624
|
"path",
|
|
1359
1625
|
{
|
|
1360
1626
|
d: "M21 9H7.5C5.01472 9 3 11.0147 3 13.5C3 15.9853 5.01472 18 7.5 18H12M21 9L17 5M21 9L17 13",
|
|
@@ -1370,12 +1636,12 @@ var FlipForwardIcon = forwardRef26(
|
|
|
1370
1636
|
);
|
|
1371
1637
|
|
|
1372
1638
|
// src/icons/helpCircle.tsx
|
|
1373
|
-
import { forwardRef as
|
|
1374
|
-
import { jsx as
|
|
1375
|
-
var HelpCircleIcon =
|
|
1639
|
+
import { forwardRef as forwardRef34 } from "react";
|
|
1640
|
+
import { jsx as jsx36, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1641
|
+
var HelpCircleIcon = forwardRef34(
|
|
1376
1642
|
function HelpCircleIcon2(_a, ref) {
|
|
1377
1643
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1378
|
-
return /* @__PURE__ */
|
|
1644
|
+
return /* @__PURE__ */ jsxs18(
|
|
1379
1645
|
"svg",
|
|
1380
1646
|
__spreadProps(__spreadValues({
|
|
1381
1647
|
ref,
|
|
@@ -1387,7 +1653,7 @@ var HelpCircleIcon = forwardRef27(
|
|
|
1387
1653
|
className
|
|
1388
1654
|
}, other), {
|
|
1389
1655
|
children: [
|
|
1390
|
-
duotone && /* @__PURE__ */
|
|
1656
|
+
duotone && /* @__PURE__ */ jsx36(
|
|
1391
1657
|
"path",
|
|
1392
1658
|
{
|
|
1393
1659
|
opacity: "0.12",
|
|
@@ -1395,7 +1661,7 @@ var HelpCircleIcon = forwardRef27(
|
|
|
1395
1661
|
fill: "currentColor"
|
|
1396
1662
|
}
|
|
1397
1663
|
),
|
|
1398
|
-
/* @__PURE__ */
|
|
1664
|
+
/* @__PURE__ */ jsx36(
|
|
1399
1665
|
"path",
|
|
1400
1666
|
{
|
|
1401
1667
|
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",
|
|
@@ -1412,11 +1678,11 @@ var HelpCircleIcon = forwardRef27(
|
|
|
1412
1678
|
);
|
|
1413
1679
|
|
|
1414
1680
|
// src/icons/home.tsx
|
|
1415
|
-
import { forwardRef as
|
|
1416
|
-
import { jsx as
|
|
1417
|
-
var HomeIcon =
|
|
1681
|
+
import { forwardRef as forwardRef35 } from "react";
|
|
1682
|
+
import { jsx as jsx37, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1683
|
+
var HomeIcon = forwardRef35(function HomeIcon2(_a, ref) {
|
|
1418
1684
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1419
|
-
return /* @__PURE__ */
|
|
1685
|
+
return /* @__PURE__ */ jsxs19(
|
|
1420
1686
|
"svg",
|
|
1421
1687
|
__spreadProps(__spreadValues({
|
|
1422
1688
|
ref,
|
|
@@ -1428,8 +1694,8 @@ var HomeIcon = forwardRef28(function HomeIcon2(_a, ref) {
|
|
|
1428
1694
|
className
|
|
1429
1695
|
}, other), {
|
|
1430
1696
|
children: [
|
|
1431
|
-
duotone && /* @__PURE__ */
|
|
1432
|
-
/* @__PURE__ */
|
|
1697
|
+
duotone && /* @__PURE__ */ jsx37("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
|
|
1698
|
+
/* @__PURE__ */ jsx37(
|
|
1433
1699
|
"path",
|
|
1434
1700
|
{
|
|
1435
1701
|
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",
|
|
@@ -1445,12 +1711,12 @@ var HomeIcon = forwardRef28(function HomeIcon2(_a, ref) {
|
|
|
1445
1711
|
});
|
|
1446
1712
|
|
|
1447
1713
|
// src/icons/image.tsx
|
|
1448
|
-
import { forwardRef as
|
|
1449
|
-
import { jsx as
|
|
1450
|
-
var ImageIcon =
|
|
1714
|
+
import { forwardRef as forwardRef36 } from "react";
|
|
1715
|
+
import { jsx as jsx38, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1716
|
+
var ImageIcon = forwardRef36(
|
|
1451
1717
|
function ImageIcon2(_a, ref) {
|
|
1452
1718
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1453
|
-
return /* @__PURE__ */
|
|
1719
|
+
return /* @__PURE__ */ jsxs20(
|
|
1454
1720
|
"svg",
|
|
1455
1721
|
__spreadProps(__spreadValues({
|
|
1456
1722
|
ref,
|
|
@@ -1462,15 +1728,15 @@ var ImageIcon = forwardRef29(
|
|
|
1462
1728
|
className
|
|
1463
1729
|
}, other), {
|
|
1464
1730
|
children: [
|
|
1465
|
-
duotone && /* @__PURE__ */
|
|
1466
|
-
/* @__PURE__ */
|
|
1731
|
+
duotone && /* @__PURE__ */ jsxs20("g", { opacity: "0.12", children: [
|
|
1732
|
+
/* @__PURE__ */ jsx38(
|
|
1467
1733
|
"path",
|
|
1468
1734
|
{
|
|
1469
1735
|
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",
|
|
1470
1736
|
fill: "currentColor"
|
|
1471
1737
|
}
|
|
1472
1738
|
),
|
|
1473
|
-
/* @__PURE__ */
|
|
1739
|
+
/* @__PURE__ */ jsx38(
|
|
1474
1740
|
"path",
|
|
1475
1741
|
{
|
|
1476
1742
|
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",
|
|
@@ -1478,7 +1744,7 @@ var ImageIcon = forwardRef29(
|
|
|
1478
1744
|
}
|
|
1479
1745
|
)
|
|
1480
1746
|
] }),
|
|
1481
|
-
/* @__PURE__ */
|
|
1747
|
+
/* @__PURE__ */ jsx38(
|
|
1482
1748
|
"path",
|
|
1483
1749
|
{
|
|
1484
1750
|
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",
|
|
@@ -1495,12 +1761,12 @@ var ImageIcon = forwardRef29(
|
|
|
1495
1761
|
);
|
|
1496
1762
|
|
|
1497
1763
|
// src/icons/imageDown.tsx
|
|
1498
|
-
import { forwardRef as
|
|
1499
|
-
import { jsx as
|
|
1500
|
-
var ImageDownIcon =
|
|
1764
|
+
import { forwardRef as forwardRef37 } from "react";
|
|
1765
|
+
import { jsx as jsx39, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1766
|
+
var ImageDownIcon = forwardRef37(
|
|
1501
1767
|
function ImageDownIcon2(_a, ref) {
|
|
1502
1768
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1503
|
-
return /* @__PURE__ */
|
|
1769
|
+
return /* @__PURE__ */ jsxs21(
|
|
1504
1770
|
"svg",
|
|
1505
1771
|
__spreadProps(__spreadValues({
|
|
1506
1772
|
ref,
|
|
@@ -1512,15 +1778,15 @@ var ImageDownIcon = forwardRef30(
|
|
|
1512
1778
|
className
|
|
1513
1779
|
}, other), {
|
|
1514
1780
|
children: [
|
|
1515
|
-
duotone && /* @__PURE__ */
|
|
1516
|
-
/* @__PURE__ */
|
|
1781
|
+
duotone && /* @__PURE__ */ jsxs21("g", { opacity: "0.12", children: [
|
|
1782
|
+
/* @__PURE__ */ jsx39(
|
|
1517
1783
|
"path",
|
|
1518
1784
|
{
|
|
1519
1785
|
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",
|
|
1520
1786
|
fill: "currentColor"
|
|
1521
1787
|
}
|
|
1522
1788
|
),
|
|
1523
|
-
/* @__PURE__ */
|
|
1789
|
+
/* @__PURE__ */ jsx39(
|
|
1524
1790
|
"path",
|
|
1525
1791
|
{
|
|
1526
1792
|
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",
|
|
@@ -1528,7 +1794,7 @@ var ImageDownIcon = forwardRef30(
|
|
|
1528
1794
|
}
|
|
1529
1795
|
)
|
|
1530
1796
|
] }),
|
|
1531
|
-
/* @__PURE__ */
|
|
1797
|
+
/* @__PURE__ */ jsx39(
|
|
1532
1798
|
"path",
|
|
1533
1799
|
{
|
|
1534
1800
|
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",
|
|
@@ -1545,12 +1811,12 @@ var ImageDownIcon = forwardRef30(
|
|
|
1545
1811
|
);
|
|
1546
1812
|
|
|
1547
1813
|
// src/icons/imageX.tsx
|
|
1548
|
-
import { forwardRef as
|
|
1549
|
-
import { jsx as
|
|
1550
|
-
var ImageXIcon =
|
|
1814
|
+
import { forwardRef as forwardRef38 } from "react";
|
|
1815
|
+
import { jsx as jsx40, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1816
|
+
var ImageXIcon = forwardRef38(
|
|
1551
1817
|
function ImageXIcon2(_a, ref) {
|
|
1552
1818
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1553
|
-
return /* @__PURE__ */
|
|
1819
|
+
return /* @__PURE__ */ jsxs22(
|
|
1554
1820
|
"svg",
|
|
1555
1821
|
__spreadProps(__spreadValues({
|
|
1556
1822
|
ref,
|
|
@@ -1562,15 +1828,15 @@ var ImageXIcon = forwardRef31(
|
|
|
1562
1828
|
className
|
|
1563
1829
|
}, other), {
|
|
1564
1830
|
children: [
|
|
1565
|
-
duotone && /* @__PURE__ */
|
|
1566
|
-
/* @__PURE__ */
|
|
1831
|
+
duotone && /* @__PURE__ */ jsxs22("g", { opacity: "0.12", children: [
|
|
1832
|
+
/* @__PURE__ */ jsx40(
|
|
1567
1833
|
"path",
|
|
1568
1834
|
{
|
|
1569
1835
|
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",
|
|
1570
1836
|
fill: "currentColor"
|
|
1571
1837
|
}
|
|
1572
1838
|
),
|
|
1573
|
-
/* @__PURE__ */
|
|
1839
|
+
/* @__PURE__ */ jsx40(
|
|
1574
1840
|
"path",
|
|
1575
1841
|
{
|
|
1576
1842
|
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",
|
|
@@ -1578,7 +1844,7 @@ var ImageXIcon = forwardRef31(
|
|
|
1578
1844
|
}
|
|
1579
1845
|
)
|
|
1580
1846
|
] }),
|
|
1581
|
-
/* @__PURE__ */
|
|
1847
|
+
/* @__PURE__ */ jsx40(
|
|
1582
1848
|
"path",
|
|
1583
1849
|
{
|
|
1584
1850
|
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",
|
|
@@ -1595,12 +1861,12 @@ var ImageXIcon = forwardRef31(
|
|
|
1595
1861
|
);
|
|
1596
1862
|
|
|
1597
1863
|
// src/icons/infoCircle.tsx
|
|
1598
|
-
import { forwardRef as
|
|
1599
|
-
import { jsx as
|
|
1600
|
-
var InfoCircleIcon =
|
|
1864
|
+
import { forwardRef as forwardRef39 } from "react";
|
|
1865
|
+
import { jsx as jsx41, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1866
|
+
var InfoCircleIcon = forwardRef39(
|
|
1601
1867
|
function InfoCircleIcon2(_a, ref) {
|
|
1602
1868
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1603
|
-
return /* @__PURE__ */
|
|
1869
|
+
return /* @__PURE__ */ jsxs23(
|
|
1604
1870
|
"svg",
|
|
1605
1871
|
__spreadProps(__spreadValues({
|
|
1606
1872
|
ref,
|
|
@@ -1612,7 +1878,7 @@ var InfoCircleIcon = forwardRef32(
|
|
|
1612
1878
|
className
|
|
1613
1879
|
}, other), {
|
|
1614
1880
|
children: [
|
|
1615
|
-
duotone && /* @__PURE__ */
|
|
1881
|
+
duotone && /* @__PURE__ */ jsx41(
|
|
1616
1882
|
"path",
|
|
1617
1883
|
{
|
|
1618
1884
|
opacity: "0.12",
|
|
@@ -1620,7 +1886,7 @@ var InfoCircleIcon = forwardRef32(
|
|
|
1620
1886
|
fill: "currentColor"
|
|
1621
1887
|
}
|
|
1622
1888
|
),
|
|
1623
|
-
/* @__PURE__ */
|
|
1889
|
+
/* @__PURE__ */ jsx41(
|
|
1624
1890
|
"path",
|
|
1625
1891
|
{
|
|
1626
1892
|
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",
|
|
@@ -1637,12 +1903,12 @@ var InfoCircleIcon = forwardRef32(
|
|
|
1637
1903
|
);
|
|
1638
1904
|
|
|
1639
1905
|
// src/icons/lightbulb.tsx
|
|
1640
|
-
import { forwardRef as
|
|
1641
|
-
import { jsx as
|
|
1642
|
-
var LightbulbIcon =
|
|
1906
|
+
import { forwardRef as forwardRef40 } from "react";
|
|
1907
|
+
import { jsx as jsx42, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1908
|
+
var LightbulbIcon = forwardRef40(
|
|
1643
1909
|
function LightbulbIcon2(_a, ref) {
|
|
1644
1910
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1645
|
-
return /* @__PURE__ */
|
|
1911
|
+
return /* @__PURE__ */ jsxs24(
|
|
1646
1912
|
"svg",
|
|
1647
1913
|
__spreadProps(__spreadValues({
|
|
1648
1914
|
ref,
|
|
@@ -1654,7 +1920,7 @@ var LightbulbIcon = forwardRef33(
|
|
|
1654
1920
|
className
|
|
1655
1921
|
}, other), {
|
|
1656
1922
|
children: [
|
|
1657
|
-
duotone && /* @__PURE__ */
|
|
1923
|
+
duotone && /* @__PURE__ */ jsx42(
|
|
1658
1924
|
"path",
|
|
1659
1925
|
{
|
|
1660
1926
|
opacity: "0.12",
|
|
@@ -1662,7 +1928,7 @@ var LightbulbIcon = forwardRef33(
|
|
|
1662
1928
|
fill: "currentColor"
|
|
1663
1929
|
}
|
|
1664
1930
|
),
|
|
1665
|
-
/* @__PURE__ */
|
|
1931
|
+
/* @__PURE__ */ jsx42(
|
|
1666
1932
|
"path",
|
|
1667
1933
|
{
|
|
1668
1934
|
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",
|
|
@@ -1678,12 +1944,42 @@ var LightbulbIcon = forwardRef33(
|
|
|
1678
1944
|
}
|
|
1679
1945
|
);
|
|
1680
1946
|
|
|
1947
|
+
// src/icons/link.tsx
|
|
1948
|
+
import { forwardRef as forwardRef41 } from "react";
|
|
1949
|
+
import { jsx as jsx43 } from "react/jsx-runtime";
|
|
1950
|
+
var LinkIcon = forwardRef41(function LinkIcon2(_a, ref) {
|
|
1951
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1952
|
+
return /* @__PURE__ */ jsx43(
|
|
1953
|
+
"svg",
|
|
1954
|
+
__spreadProps(__spreadValues({
|
|
1955
|
+
ref,
|
|
1956
|
+
width: size,
|
|
1957
|
+
height: size,
|
|
1958
|
+
viewBox: "0 0 24 24",
|
|
1959
|
+
fill: "none",
|
|
1960
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1961
|
+
className
|
|
1962
|
+
}, other), {
|
|
1963
|
+
children: /* @__PURE__ */ jsx43(
|
|
1964
|
+
"path",
|
|
1965
|
+
{
|
|
1966
|
+
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",
|
|
1967
|
+
stroke: "currentColor",
|
|
1968
|
+
strokeWidth: "2",
|
|
1969
|
+
strokeLinecap: "round",
|
|
1970
|
+
strokeLinejoin: "round"
|
|
1971
|
+
}
|
|
1972
|
+
)
|
|
1973
|
+
})
|
|
1974
|
+
);
|
|
1975
|
+
});
|
|
1976
|
+
|
|
1681
1977
|
// src/icons/lock.tsx
|
|
1682
|
-
import { forwardRef as
|
|
1683
|
-
import { jsx as
|
|
1684
|
-
var LockIcon =
|
|
1978
|
+
import { forwardRef as forwardRef42 } from "react";
|
|
1979
|
+
import { jsx as jsx44, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1980
|
+
var LockIcon = forwardRef42(function LockIcon2(_a, ref) {
|
|
1685
1981
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1686
|
-
return /* @__PURE__ */
|
|
1982
|
+
return /* @__PURE__ */ jsxs25(
|
|
1687
1983
|
"svg",
|
|
1688
1984
|
__spreadProps(__spreadValues({
|
|
1689
1985
|
ref,
|
|
@@ -1695,7 +1991,7 @@ var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
|
|
|
1695
1991
|
className
|
|
1696
1992
|
}, other), {
|
|
1697
1993
|
children: [
|
|
1698
|
-
duotone && /* @__PURE__ */
|
|
1994
|
+
duotone && /* @__PURE__ */ jsx44(
|
|
1699
1995
|
"path",
|
|
1700
1996
|
{
|
|
1701
1997
|
opacity: "0.12",
|
|
@@ -1703,7 +1999,7 @@ var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
|
|
|
1703
1999
|
fill: "currentColor"
|
|
1704
2000
|
}
|
|
1705
2001
|
),
|
|
1706
|
-
/* @__PURE__ */
|
|
2002
|
+
/* @__PURE__ */ jsx44(
|
|
1707
2003
|
"path",
|
|
1708
2004
|
{
|
|
1709
2005
|
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",
|
|
@@ -1719,12 +2015,12 @@ var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
|
|
|
1719
2015
|
});
|
|
1720
2016
|
|
|
1721
2017
|
// src/icons/logIn.tsx
|
|
1722
|
-
import { forwardRef as
|
|
1723
|
-
import { jsx as
|
|
1724
|
-
var LogInIcon =
|
|
2018
|
+
import { forwardRef as forwardRef43 } from "react";
|
|
2019
|
+
import { jsx as jsx45, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
2020
|
+
var LogInIcon = forwardRef43(
|
|
1725
2021
|
function LogInIcon2(_a, ref) {
|
|
1726
2022
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1727
|
-
return /* @__PURE__ */
|
|
2023
|
+
return /* @__PURE__ */ jsxs26(
|
|
1728
2024
|
"svg",
|
|
1729
2025
|
__spreadProps(__spreadValues({
|
|
1730
2026
|
ref,
|
|
@@ -1736,7 +2032,7 @@ var LogInIcon = forwardRef35(
|
|
|
1736
2032
|
className
|
|
1737
2033
|
}, other), {
|
|
1738
2034
|
children: [
|
|
1739
|
-
duotone && /* @__PURE__ */
|
|
2035
|
+
duotone && /* @__PURE__ */ jsx45(
|
|
1740
2036
|
"path",
|
|
1741
2037
|
{
|
|
1742
2038
|
opacity: "0.12",
|
|
@@ -1744,7 +2040,7 @@ var LogInIcon = forwardRef35(
|
|
|
1744
2040
|
fill: "currentColor"
|
|
1745
2041
|
}
|
|
1746
2042
|
),
|
|
1747
|
-
/* @__PURE__ */
|
|
2043
|
+
/* @__PURE__ */ jsx45(
|
|
1748
2044
|
"path",
|
|
1749
2045
|
{
|
|
1750
2046
|
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",
|
|
@@ -1761,12 +2057,12 @@ var LogInIcon = forwardRef35(
|
|
|
1761
2057
|
);
|
|
1762
2058
|
|
|
1763
2059
|
// src/icons/magicWand.tsx
|
|
1764
|
-
import { forwardRef as
|
|
1765
|
-
import { jsx as
|
|
1766
|
-
var MagicWandIcon =
|
|
2060
|
+
import { forwardRef as forwardRef44 } from "react";
|
|
2061
|
+
import { jsx as jsx46, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
2062
|
+
var MagicWandIcon = forwardRef44(
|
|
1767
2063
|
function MagicWandIcon2(_a, ref) {
|
|
1768
2064
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1769
|
-
return /* @__PURE__ */
|
|
2065
|
+
return /* @__PURE__ */ jsxs27(
|
|
1770
2066
|
"svg",
|
|
1771
2067
|
__spreadProps(__spreadValues({
|
|
1772
2068
|
ref,
|
|
@@ -1778,7 +2074,7 @@ var MagicWandIcon = forwardRef36(
|
|
|
1778
2074
|
className
|
|
1779
2075
|
}, other), {
|
|
1780
2076
|
children: [
|
|
1781
|
-
duotone && /* @__PURE__ */
|
|
2077
|
+
duotone && /* @__PURE__ */ jsx46(
|
|
1782
2078
|
"path",
|
|
1783
2079
|
{
|
|
1784
2080
|
opacity: "0.12",
|
|
@@ -1786,7 +2082,7 @@ var MagicWandIcon = forwardRef36(
|
|
|
1786
2082
|
fill: "currentColor"
|
|
1787
2083
|
}
|
|
1788
2084
|
),
|
|
1789
|
-
/* @__PURE__ */
|
|
2085
|
+
/* @__PURE__ */ jsx46(
|
|
1790
2086
|
"path",
|
|
1791
2087
|
{
|
|
1792
2088
|
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",
|
|
@@ -1803,11 +2099,11 @@ var MagicWandIcon = forwardRef36(
|
|
|
1803
2099
|
);
|
|
1804
2100
|
|
|
1805
2101
|
// src/icons/mail.tsx
|
|
1806
|
-
import { forwardRef as
|
|
1807
|
-
import { jsx as
|
|
1808
|
-
var MailIcon =
|
|
2102
|
+
import { forwardRef as forwardRef45 } from "react";
|
|
2103
|
+
import { jsx as jsx47, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
2104
|
+
var MailIcon = forwardRef45(function MailIcon2(_a, ref) {
|
|
1809
2105
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1810
|
-
return /* @__PURE__ */
|
|
2106
|
+
return /* @__PURE__ */ jsxs28(
|
|
1811
2107
|
"svg",
|
|
1812
2108
|
__spreadProps(__spreadValues({
|
|
1813
2109
|
ref,
|
|
@@ -1819,7 +2115,7 @@ var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
|
|
|
1819
2115
|
className
|
|
1820
2116
|
}, other), {
|
|
1821
2117
|
children: [
|
|
1822
|
-
duotone && /* @__PURE__ */
|
|
2118
|
+
duotone && /* @__PURE__ */ jsx47(
|
|
1823
2119
|
"path",
|
|
1824
2120
|
{
|
|
1825
2121
|
opacity: "0.12",
|
|
@@ -1827,7 +2123,7 @@ var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
|
|
|
1827
2123
|
fill: "currentColor"
|
|
1828
2124
|
}
|
|
1829
2125
|
),
|
|
1830
|
-
/* @__PURE__ */
|
|
2126
|
+
/* @__PURE__ */ jsx47(
|
|
1831
2127
|
"path",
|
|
1832
2128
|
{
|
|
1833
2129
|
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",
|
|
@@ -1843,11 +2139,11 @@ var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
|
|
|
1843
2139
|
});
|
|
1844
2140
|
|
|
1845
2141
|
// src/icons/menu.tsx
|
|
1846
|
-
import { forwardRef as
|
|
1847
|
-
import { jsx as
|
|
1848
|
-
var MenuIcon =
|
|
1849
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
1850
|
-
return /* @__PURE__ */
|
|
2142
|
+
import { forwardRef as forwardRef46 } from "react";
|
|
2143
|
+
import { jsx as jsx48 } from "react/jsx-runtime";
|
|
2144
|
+
var MenuIcon = forwardRef46(function MenuIcon2(_a, ref) {
|
|
2145
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2146
|
+
return /* @__PURE__ */ jsx48(
|
|
1851
2147
|
"svg",
|
|
1852
2148
|
__spreadProps(__spreadValues({
|
|
1853
2149
|
ref,
|
|
@@ -1858,7 +2154,7 @@ var MenuIcon = forwardRef38(function MenuIcon2(_a, ref) {
|
|
|
1858
2154
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1859
2155
|
className
|
|
1860
2156
|
}, other), {
|
|
1861
|
-
children: /* @__PURE__ */
|
|
2157
|
+
children: /* @__PURE__ */ jsx48(
|
|
1862
2158
|
"path",
|
|
1863
2159
|
{
|
|
1864
2160
|
d: "M3 12H21M3 6H21M3 18H21",
|
|
@@ -1873,12 +2169,12 @@ var MenuIcon = forwardRef38(function MenuIcon2(_a, ref) {
|
|
|
1873
2169
|
});
|
|
1874
2170
|
|
|
1875
2171
|
// src/icons/messageChatSquare.tsx
|
|
1876
|
-
import { forwardRef as
|
|
1877
|
-
import { jsx as
|
|
1878
|
-
var MessageChatSquareIcon =
|
|
2172
|
+
import { forwardRef as forwardRef47 } from "react";
|
|
2173
|
+
import { jsx as jsx49, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
2174
|
+
var MessageChatSquareIcon = forwardRef47(
|
|
1879
2175
|
function MessageChatSquareIcon2(_a, ref) {
|
|
1880
2176
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1881
|
-
return /* @__PURE__ */
|
|
2177
|
+
return /* @__PURE__ */ jsxs29(
|
|
1882
2178
|
"svg",
|
|
1883
2179
|
__spreadProps(__spreadValues({
|
|
1884
2180
|
ref,
|
|
@@ -1890,7 +2186,7 @@ var MessageChatSquareIcon = forwardRef39(
|
|
|
1890
2186
|
className
|
|
1891
2187
|
}, other), {
|
|
1892
2188
|
children: [
|
|
1893
|
-
duotone && /* @__PURE__ */
|
|
2189
|
+
duotone && /* @__PURE__ */ jsx49(
|
|
1894
2190
|
"path",
|
|
1895
2191
|
{
|
|
1896
2192
|
opacity: "0.12",
|
|
@@ -1898,7 +2194,7 @@ var MessageChatSquareIcon = forwardRef39(
|
|
|
1898
2194
|
fill: "currentColor"
|
|
1899
2195
|
}
|
|
1900
2196
|
),
|
|
1901
|
-
/* @__PURE__ */
|
|
2197
|
+
/* @__PURE__ */ jsx49(
|
|
1902
2198
|
"path",
|
|
1903
2199
|
{
|
|
1904
2200
|
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",
|
|
@@ -1915,12 +2211,12 @@ var MessageChatSquareIcon = forwardRef39(
|
|
|
1915
2211
|
);
|
|
1916
2212
|
|
|
1917
2213
|
// src/icons/messagePlusSquare.tsx
|
|
1918
|
-
import { forwardRef as
|
|
1919
|
-
import { jsx as
|
|
1920
|
-
var MessagePlusSquareIcon =
|
|
2214
|
+
import { forwardRef as forwardRef48 } from "react";
|
|
2215
|
+
import { jsx as jsx50, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
2216
|
+
var MessagePlusSquareIcon = forwardRef48(
|
|
1921
2217
|
function MessagePlusSquareIcon2(_a, ref) {
|
|
1922
2218
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1923
|
-
return /* @__PURE__ */
|
|
2219
|
+
return /* @__PURE__ */ jsxs30(
|
|
1924
2220
|
"svg",
|
|
1925
2221
|
__spreadProps(__spreadValues({
|
|
1926
2222
|
ref,
|
|
@@ -1932,7 +2228,7 @@ var MessagePlusSquareIcon = forwardRef40(
|
|
|
1932
2228
|
className
|
|
1933
2229
|
}, other), {
|
|
1934
2230
|
children: [
|
|
1935
|
-
duotone && /* @__PURE__ */
|
|
2231
|
+
duotone && /* @__PURE__ */ jsx50(
|
|
1936
2232
|
"path",
|
|
1937
2233
|
{
|
|
1938
2234
|
opacity: "0.12",
|
|
@@ -1940,7 +2236,7 @@ var MessagePlusSquareIcon = forwardRef40(
|
|
|
1940
2236
|
fill: "currentColor"
|
|
1941
2237
|
}
|
|
1942
2238
|
),
|
|
1943
|
-
/* @__PURE__ */
|
|
2239
|
+
/* @__PURE__ */ jsx50(
|
|
1944
2240
|
"path",
|
|
1945
2241
|
{
|
|
1946
2242
|
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",
|
|
@@ -1957,12 +2253,12 @@ var MessagePlusSquareIcon = forwardRef40(
|
|
|
1957
2253
|
);
|
|
1958
2254
|
|
|
1959
2255
|
// src/icons/messageTextSquare.tsx
|
|
1960
|
-
import { forwardRef as
|
|
1961
|
-
import { jsx as
|
|
1962
|
-
var MessageTextSquareIcon =
|
|
2256
|
+
import { forwardRef as forwardRef49 } from "react";
|
|
2257
|
+
import { jsx as jsx51, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
2258
|
+
var MessageTextSquareIcon = forwardRef49(
|
|
1963
2259
|
function MessageTextSquareIcon2(_a, ref) {
|
|
1964
2260
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1965
|
-
return /* @__PURE__ */
|
|
2261
|
+
return /* @__PURE__ */ jsxs31(
|
|
1966
2262
|
"svg",
|
|
1967
2263
|
__spreadProps(__spreadValues({
|
|
1968
2264
|
ref,
|
|
@@ -1974,7 +2270,7 @@ var MessageTextSquareIcon = forwardRef41(
|
|
|
1974
2270
|
className
|
|
1975
2271
|
}, other), {
|
|
1976
2272
|
children: [
|
|
1977
|
-
duotone && /* @__PURE__ */
|
|
2273
|
+
duotone && /* @__PURE__ */ jsx51(
|
|
1978
2274
|
"path",
|
|
1979
2275
|
{
|
|
1980
2276
|
opacity: "0.12",
|
|
@@ -1982,7 +2278,7 @@ var MessageTextSquareIcon = forwardRef41(
|
|
|
1982
2278
|
fill: "currentColor"
|
|
1983
2279
|
}
|
|
1984
2280
|
),
|
|
1985
|
-
/* @__PURE__ */
|
|
2281
|
+
/* @__PURE__ */ jsx51(
|
|
1986
2282
|
"path",
|
|
1987
2283
|
{
|
|
1988
2284
|
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",
|
|
@@ -1999,12 +2295,12 @@ var MessageTextSquareIcon = forwardRef41(
|
|
|
1999
2295
|
);
|
|
2000
2296
|
|
|
2001
2297
|
// src/icons/microphone.tsx
|
|
2002
|
-
import { forwardRef as
|
|
2003
|
-
import { jsx as
|
|
2004
|
-
var MicrophoneIcon =
|
|
2298
|
+
import { forwardRef as forwardRef50 } from "react";
|
|
2299
|
+
import { jsx as jsx52, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
2300
|
+
var MicrophoneIcon = forwardRef50(
|
|
2005
2301
|
function MicrophoneIcon2(_a, ref) {
|
|
2006
2302
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2007
|
-
return /* @__PURE__ */
|
|
2303
|
+
return /* @__PURE__ */ jsxs32(
|
|
2008
2304
|
"svg",
|
|
2009
2305
|
__spreadProps(__spreadValues({
|
|
2010
2306
|
ref,
|
|
@@ -2016,7 +2312,7 @@ var MicrophoneIcon = forwardRef42(
|
|
|
2016
2312
|
className
|
|
2017
2313
|
}, other), {
|
|
2018
2314
|
children: [
|
|
2019
|
-
duotone && /* @__PURE__ */
|
|
2315
|
+
duotone && /* @__PURE__ */ jsx52(
|
|
2020
2316
|
"path",
|
|
2021
2317
|
{
|
|
2022
2318
|
opacity: "0.12",
|
|
@@ -2024,7 +2320,7 @@ var MicrophoneIcon = forwardRef42(
|
|
|
2024
2320
|
fill: "currentColor"
|
|
2025
2321
|
}
|
|
2026
2322
|
),
|
|
2027
|
-
/* @__PURE__ */
|
|
2323
|
+
/* @__PURE__ */ jsx52(
|
|
2028
2324
|
"path",
|
|
2029
2325
|
{
|
|
2030
2326
|
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",
|
|
@@ -2041,12 +2337,12 @@ var MicrophoneIcon = forwardRef42(
|
|
|
2041
2337
|
);
|
|
2042
2338
|
|
|
2043
2339
|
// src/icons/microphoneOff.tsx
|
|
2044
|
-
import { forwardRef as
|
|
2045
|
-
import { jsx as
|
|
2046
|
-
var MicrophoneOffIcon =
|
|
2340
|
+
import { forwardRef as forwardRef51 } from "react";
|
|
2341
|
+
import { jsx as jsx53, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2342
|
+
var MicrophoneOffIcon = forwardRef51(
|
|
2047
2343
|
function MicrophoneOffIcon2(_a, ref) {
|
|
2048
2344
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2049
|
-
return /* @__PURE__ */
|
|
2345
|
+
return /* @__PURE__ */ jsxs33(
|
|
2050
2346
|
"svg",
|
|
2051
2347
|
__spreadProps(__spreadValues({
|
|
2052
2348
|
ref,
|
|
@@ -2058,7 +2354,7 @@ var MicrophoneOffIcon = forwardRef43(
|
|
|
2058
2354
|
className
|
|
2059
2355
|
}, other), {
|
|
2060
2356
|
children: [
|
|
2061
|
-
duotone && /* @__PURE__ */
|
|
2357
|
+
duotone && /* @__PURE__ */ jsx53(
|
|
2062
2358
|
"path",
|
|
2063
2359
|
{
|
|
2064
2360
|
opacity: "0.12",
|
|
@@ -2066,7 +2362,7 @@ var MicrophoneOffIcon = forwardRef43(
|
|
|
2066
2362
|
fill: "currentColor"
|
|
2067
2363
|
}
|
|
2068
2364
|
),
|
|
2069
|
-
/* @__PURE__ */
|
|
2365
|
+
/* @__PURE__ */ jsx53(
|
|
2070
2366
|
"path",
|
|
2071
2367
|
{
|
|
2072
2368
|
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",
|
|
@@ -2083,12 +2379,12 @@ var MicrophoneOffIcon = forwardRef43(
|
|
|
2083
2379
|
);
|
|
2084
2380
|
|
|
2085
2381
|
// src/icons/monitor.tsx
|
|
2086
|
-
import { forwardRef as
|
|
2087
|
-
import { jsx as
|
|
2088
|
-
var MonitorIcon =
|
|
2382
|
+
import { forwardRef as forwardRef52 } from "react";
|
|
2383
|
+
import { jsx as jsx54, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2384
|
+
var MonitorIcon = forwardRef52(
|
|
2089
2385
|
function MonitorIcon2(_a, ref) {
|
|
2090
2386
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2091
|
-
return /* @__PURE__ */
|
|
2387
|
+
return /* @__PURE__ */ jsxs34(
|
|
2092
2388
|
"svg",
|
|
2093
2389
|
__spreadProps(__spreadValues({
|
|
2094
2390
|
ref,
|
|
@@ -2100,7 +2396,7 @@ var MonitorIcon = forwardRef44(
|
|
|
2100
2396
|
className
|
|
2101
2397
|
}, other), {
|
|
2102
2398
|
children: [
|
|
2103
|
-
duotone && /* @__PURE__ */
|
|
2399
|
+
duotone && /* @__PURE__ */ jsx54(
|
|
2104
2400
|
"path",
|
|
2105
2401
|
{
|
|
2106
2402
|
opacity: "0.12",
|
|
@@ -2108,7 +2404,7 @@ var MonitorIcon = forwardRef44(
|
|
|
2108
2404
|
fill: "currentColor"
|
|
2109
2405
|
}
|
|
2110
2406
|
),
|
|
2111
|
-
/* @__PURE__ */
|
|
2407
|
+
/* @__PURE__ */ jsx54(
|
|
2112
2408
|
"path",
|
|
2113
2409
|
{
|
|
2114
2410
|
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",
|
|
@@ -2125,12 +2421,12 @@ var MonitorIcon = forwardRef44(
|
|
|
2125
2421
|
);
|
|
2126
2422
|
|
|
2127
2423
|
// src/icons/notificationBox.tsx
|
|
2128
|
-
import { forwardRef as
|
|
2129
|
-
import { jsx as
|
|
2130
|
-
var NotificationBoxIcon =
|
|
2424
|
+
import { forwardRef as forwardRef53 } from "react";
|
|
2425
|
+
import { jsx as jsx55, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
2426
|
+
var NotificationBoxIcon = forwardRef53(
|
|
2131
2427
|
function NotificationBoxIcon2(_a, ref) {
|
|
2132
2428
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2133
|
-
return /* @__PURE__ */
|
|
2429
|
+
return /* @__PURE__ */ jsxs35(
|
|
2134
2430
|
"svg",
|
|
2135
2431
|
__spreadProps(__spreadValues({
|
|
2136
2432
|
ref,
|
|
@@ -2142,7 +2438,7 @@ var NotificationBoxIcon = forwardRef45(
|
|
|
2142
2438
|
className
|
|
2143
2439
|
}, other), {
|
|
2144
2440
|
children: [
|
|
2145
|
-
duotone && /* @__PURE__ */
|
|
2441
|
+
duotone && /* @__PURE__ */ jsx55(
|
|
2146
2442
|
"path",
|
|
2147
2443
|
{
|
|
2148
2444
|
opacity: "0.12",
|
|
@@ -2150,7 +2446,7 @@ var NotificationBoxIcon = forwardRef45(
|
|
|
2150
2446
|
fill: "currentColor"
|
|
2151
2447
|
}
|
|
2152
2448
|
),
|
|
2153
|
-
/* @__PURE__ */
|
|
2449
|
+
/* @__PURE__ */ jsx55(
|
|
2154
2450
|
"path",
|
|
2155
2451
|
{
|
|
2156
2452
|
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",
|
|
@@ -2167,12 +2463,12 @@ var NotificationBoxIcon = forwardRef45(
|
|
|
2167
2463
|
);
|
|
2168
2464
|
|
|
2169
2465
|
// src/icons/pauseCircle.tsx
|
|
2170
|
-
import { forwardRef as
|
|
2171
|
-
import { jsx as
|
|
2172
|
-
var PauseCircleIcon =
|
|
2466
|
+
import { forwardRef as forwardRef54 } from "react";
|
|
2467
|
+
import { jsx as jsx56, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
2468
|
+
var PauseCircleIcon = forwardRef54(
|
|
2173
2469
|
function PauseCircleIcon2(_a, ref) {
|
|
2174
2470
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2175
|
-
return /* @__PURE__ */
|
|
2471
|
+
return /* @__PURE__ */ jsxs36(
|
|
2176
2472
|
"svg",
|
|
2177
2473
|
__spreadProps(__spreadValues({
|
|
2178
2474
|
ref,
|
|
@@ -2184,7 +2480,7 @@ var PauseCircleIcon = forwardRef46(
|
|
|
2184
2480
|
className
|
|
2185
2481
|
}, other), {
|
|
2186
2482
|
children: [
|
|
2187
|
-
duotone && /* @__PURE__ */
|
|
2483
|
+
duotone && /* @__PURE__ */ jsx56(
|
|
2188
2484
|
"path",
|
|
2189
2485
|
{
|
|
2190
2486
|
opacity: "0.12",
|
|
@@ -2192,7 +2488,7 @@ var PauseCircleIcon = forwardRef46(
|
|
|
2192
2488
|
fill: "currentColor"
|
|
2193
2489
|
}
|
|
2194
2490
|
),
|
|
2195
|
-
/* @__PURE__ */
|
|
2491
|
+
/* @__PURE__ */ jsx56(
|
|
2196
2492
|
"path",
|
|
2197
2493
|
{
|
|
2198
2494
|
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",
|
|
@@ -2209,12 +2505,12 @@ var PauseCircleIcon = forwardRef46(
|
|
|
2209
2505
|
);
|
|
2210
2506
|
|
|
2211
2507
|
// src/icons/phone.tsx
|
|
2212
|
-
import { forwardRef as
|
|
2213
|
-
import { jsx as
|
|
2214
|
-
var PhoneIcon =
|
|
2508
|
+
import { forwardRef as forwardRef55 } from "react";
|
|
2509
|
+
import { jsx as jsx57, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2510
|
+
var PhoneIcon = forwardRef55(
|
|
2215
2511
|
function PhoneIcon2(_a, ref) {
|
|
2216
2512
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2217
|
-
return /* @__PURE__ */
|
|
2513
|
+
return /* @__PURE__ */ jsxs37(
|
|
2218
2514
|
"svg",
|
|
2219
2515
|
__spreadProps(__spreadValues({
|
|
2220
2516
|
ref,
|
|
@@ -2226,7 +2522,7 @@ var PhoneIcon = forwardRef47(
|
|
|
2226
2522
|
className
|
|
2227
2523
|
}, other), {
|
|
2228
2524
|
children: [
|
|
2229
|
-
duotone && /* @__PURE__ */
|
|
2525
|
+
duotone && /* @__PURE__ */ jsx57(
|
|
2230
2526
|
"path",
|
|
2231
2527
|
{
|
|
2232
2528
|
opacity: "0.12",
|
|
@@ -2234,7 +2530,7 @@ var PhoneIcon = forwardRef47(
|
|
|
2234
2530
|
fill: "currentColor"
|
|
2235
2531
|
}
|
|
2236
2532
|
),
|
|
2237
|
-
/* @__PURE__ */
|
|
2533
|
+
/* @__PURE__ */ jsx57(
|
|
2238
2534
|
"path",
|
|
2239
2535
|
{
|
|
2240
2536
|
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",
|
|
@@ -2250,13 +2546,13 @@ var PhoneIcon = forwardRef47(
|
|
|
2250
2546
|
}
|
|
2251
2547
|
);
|
|
2252
2548
|
|
|
2253
|
-
// src/icons/
|
|
2254
|
-
import { forwardRef as
|
|
2255
|
-
import { jsx as
|
|
2256
|
-
var
|
|
2257
|
-
function
|
|
2549
|
+
// src/icons/phoneCall.tsx
|
|
2550
|
+
import { forwardRef as forwardRef56 } from "react";
|
|
2551
|
+
import { jsx as jsx58, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
2552
|
+
var PhoneCallIcon = forwardRef56(
|
|
2553
|
+
function PhoneCallIcon2(_a, ref) {
|
|
2258
2554
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2259
|
-
return /* @__PURE__ */
|
|
2555
|
+
return /* @__PURE__ */ jsxs38(
|
|
2260
2556
|
"svg",
|
|
2261
2557
|
__spreadProps(__spreadValues({
|
|
2262
2558
|
ref,
|
|
@@ -2268,29 +2564,18 @@ var PieChartIcon = forwardRef48(
|
|
|
2268
2564
|
className
|
|
2269
2565
|
}, other), {
|
|
2270
2566
|
children: [
|
|
2271
|
-
duotone && /* @__PURE__ */
|
|
2567
|
+
duotone && /* @__PURE__ */ jsx58(
|
|
2272
2568
|
"path",
|
|
2273
2569
|
{
|
|
2274
2570
|
opacity: "0.12",
|
|
2275
|
-
d: "
|
|
2571
|
+
d: "M7.38064 9.85323C8.07664 11.3028 9.02543 12.6615 10.227 13.8631C11.4286 15.0646 12.7872 16.0134 14.2368 16.7094C14.3615 16.7693 14.4239 16.7992 14.5028 16.8222C14.7831 16.904 15.1274 16.8453 15.3648 16.6752C15.4316 16.6274 15.4888 16.5702 15.6031 16.4559C15.9527 16.1063 16.1275 15.9315 16.3033 15.8172C16.9662 15.3862 17.8208 15.3862 18.4836 15.8172C18.6594 15.9315 18.8342 16.1063 19.1838 16.4559L19.3787 16.6508C19.9101 17.1822 20.1759 17.448 20.3202 17.7333C20.6073 18.3009 20.6073 18.9712 20.3202 19.5387C20.1759 19.8241 19.9101 20.0898 19.3787 20.6213L19.2211 20.7789C18.6914 21.3085 18.4266 21.5733 18.0666 21.7756C17.6671 22 17.0466 22.1614 16.5884 22.16C16.1754 22.1588 15.8932 22.0787 15.3288 21.9185C12.2954 21.0575 9.43301 19.433 7.04503 17.045C4.65705 14.6571 3.03257 11.7947 2.1716 8.76131C2.01139 8.19687 1.93129 7.91464 1.93006 7.5017C1.9287 7.04347 2.09006 6.42298 2.31448 6.02348C2.51673 5.66345 2.78154 5.39863 3.31116 4.86901L3.4688 4.71138C4.00024 4.17993 4.26596 3.91421 4.55134 3.76987C5.1189 3.4828 5.78917 3.4828 6.35673 3.76987C6.64211 3.91421 6.90783 4.17993 7.43927 4.71138L7.63414 4.90625C7.98375 5.25585 8.15855 5.43065 8.27284 5.60643C8.70383 6.26932 8.70383 7.1239 8.27284 7.78679C8.15855 7.96257 7.98375 8.13738 7.63414 8.48698C7.51983 8.60129 7.46268 8.65845 7.41483 8.72526C7.24482 8.96269 7.18612 9.30695 7.26785 9.5873C7.29084 9.6662 7.32078 9.72854 7.38064 9.85323Z",
|
|
2276
2572
|
fill: "currentColor"
|
|
2277
2573
|
}
|
|
2278
2574
|
),
|
|
2279
|
-
/* @__PURE__ */
|
|
2280
|
-
"path",
|
|
2281
|
-
{
|
|
2282
|
-
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",
|
|
2283
|
-
stroke: "currentColor",
|
|
2284
|
-
strokeWidth: "2",
|
|
2285
|
-
strokeLinecap: "round",
|
|
2286
|
-
strokeLinejoin: "round"
|
|
2287
|
-
}
|
|
2288
|
-
),
|
|
2289
|
-
",",
|
|
2290
|
-
/* @__PURE__ */ jsx50(
|
|
2575
|
+
/* @__PURE__ */ jsx58(
|
|
2291
2576
|
"path",
|
|
2292
2577
|
{
|
|
2293
|
-
d: "M14
|
|
2578
|
+
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",
|
|
2294
2579
|
stroke: "currentColor",
|
|
2295
2580
|
strokeWidth: "2",
|
|
2296
2581
|
strokeLinecap: "round",
|
|
@@ -2303,13 +2588,13 @@ var PieChartIcon = forwardRef48(
|
|
|
2303
2588
|
}
|
|
2304
2589
|
);
|
|
2305
2590
|
|
|
2306
|
-
// src/icons/
|
|
2307
|
-
import { forwardRef as
|
|
2308
|
-
import { jsx as
|
|
2309
|
-
var
|
|
2310
|
-
function
|
|
2591
|
+
// src/icons/pieChart.tsx
|
|
2592
|
+
import { forwardRef as forwardRef57 } from "react";
|
|
2593
|
+
import { jsx as jsx59, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
2594
|
+
var PieChartIcon = forwardRef57(
|
|
2595
|
+
function PieChartIcon2(_a, ref) {
|
|
2311
2596
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2312
|
-
return /* @__PURE__ */
|
|
2597
|
+
return /* @__PURE__ */ jsxs39(
|
|
2313
2598
|
"svg",
|
|
2314
2599
|
__spreadProps(__spreadValues({
|
|
2315
2600
|
ref,
|
|
@@ -2321,18 +2606,18 @@ var PlayCircleIcon = forwardRef49(
|
|
|
2321
2606
|
className
|
|
2322
2607
|
}, other), {
|
|
2323
2608
|
children: [
|
|
2324
|
-
duotone && /* @__PURE__ */
|
|
2609
|
+
duotone && /* @__PURE__ */ jsx59(
|
|
2325
2610
|
"path",
|
|
2326
2611
|
{
|
|
2327
2612
|
opacity: "0.12",
|
|
2328
|
-
d: "
|
|
2613
|
+
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.19999L14 2.79999Z",
|
|
2329
2614
|
fill: "currentColor"
|
|
2330
2615
|
}
|
|
2331
2616
|
),
|
|
2332
|
-
/* @__PURE__ */
|
|
2617
|
+
/* @__PURE__ */ jsx59(
|
|
2333
2618
|
"path",
|
|
2334
2619
|
{
|
|
2335
|
-
d: "
|
|
2620
|
+
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",
|
|
2336
2621
|
stroke: "currentColor",
|
|
2337
2622
|
strokeWidth: "2",
|
|
2338
2623
|
strokeLinecap: "round",
|
|
@@ -2340,10 +2625,10 @@ var PlayCircleIcon = forwardRef49(
|
|
|
2340
2625
|
}
|
|
2341
2626
|
),
|
|
2342
2627
|
",",
|
|
2343
|
-
/* @__PURE__ */
|
|
2628
|
+
/* @__PURE__ */ jsx59(
|
|
2344
2629
|
"path",
|
|
2345
2630
|
{
|
|
2346
|
-
d: "
|
|
2631
|
+
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",
|
|
2347
2632
|
stroke: "currentColor",
|
|
2348
2633
|
strokeWidth: "2",
|
|
2349
2634
|
strokeLinecap: "round",
|
|
@@ -2356,13 +2641,66 @@ var PlayCircleIcon = forwardRef49(
|
|
|
2356
2641
|
}
|
|
2357
2642
|
);
|
|
2358
2643
|
|
|
2359
|
-
// src/icons/
|
|
2360
|
-
import { forwardRef as
|
|
2361
|
-
import { jsx as
|
|
2362
|
-
var
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2644
|
+
// src/icons/playCircle.tsx
|
|
2645
|
+
import { forwardRef as forwardRef58 } from "react";
|
|
2646
|
+
import { jsx as jsx60, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
2647
|
+
var PlayCircleIcon = forwardRef58(
|
|
2648
|
+
function PlayCircleIcon2(_a, ref) {
|
|
2649
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2650
|
+
return /* @__PURE__ */ jsxs40(
|
|
2651
|
+
"svg",
|
|
2652
|
+
__spreadProps(__spreadValues({
|
|
2653
|
+
ref,
|
|
2654
|
+
width: size,
|
|
2655
|
+
height: size,
|
|
2656
|
+
viewBox: "0 0 24 24",
|
|
2657
|
+
fill: "none",
|
|
2658
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2659
|
+
className
|
|
2660
|
+
}, other), {
|
|
2661
|
+
children: [
|
|
2662
|
+
duotone && /* @__PURE__ */ jsx60(
|
|
2663
|
+
"path",
|
|
2664
|
+
{
|
|
2665
|
+
opacity: "0.12",
|
|
2666
|
+
d: "M9.5 8.96536C9.5 8.48808 9.5 8.24943 9.59974 8.11621C9.68666 8.0001 9.81971 7.92746 9.96438 7.91713C10.1304 7.90527 10.3311 8.03432 10.7326 8.29242L15.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.673L10.7326 15.7076C10.3311 15.9657 10.1304 16.0948 9.96438 16.0829C9.81971 16.0726 9.68666 16 9.59974 15.8839C9.5 15.7506 9.5 15.512 9.5 15.0347V8.96536Z",
|
|
2667
|
+
fill: "currentColor"
|
|
2668
|
+
}
|
|
2669
|
+
),
|
|
2670
|
+
/* @__PURE__ */ jsx60(
|
|
2671
|
+
"path",
|
|
2672
|
+
{
|
|
2673
|
+
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",
|
|
2674
|
+
stroke: "currentColor",
|
|
2675
|
+
strokeWidth: "2",
|
|
2676
|
+
strokeLinecap: "round",
|
|
2677
|
+
strokeLinejoin: "round"
|
|
2678
|
+
}
|
|
2679
|
+
),
|
|
2680
|
+
",",
|
|
2681
|
+
/* @__PURE__ */ jsx60(
|
|
2682
|
+
"path",
|
|
2683
|
+
{
|
|
2684
|
+
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",
|
|
2685
|
+
stroke: "currentColor",
|
|
2686
|
+
strokeWidth: "2",
|
|
2687
|
+
strokeLinecap: "round",
|
|
2688
|
+
strokeLinejoin: "round"
|
|
2689
|
+
}
|
|
2690
|
+
)
|
|
2691
|
+
]
|
|
2692
|
+
})
|
|
2693
|
+
);
|
|
2694
|
+
}
|
|
2695
|
+
);
|
|
2696
|
+
|
|
2697
|
+
// src/icons/plus.tsx
|
|
2698
|
+
import { forwardRef as forwardRef59 } from "react";
|
|
2699
|
+
import { jsx as jsx61 } from "react/jsx-runtime";
|
|
2700
|
+
var PlusIcon = forwardRef59(function PlusIcon2(_a, ref) {
|
|
2701
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2702
|
+
return /* @__PURE__ */ jsx61(
|
|
2703
|
+
"svg",
|
|
2366
2704
|
__spreadProps(__spreadValues({
|
|
2367
2705
|
ref,
|
|
2368
2706
|
width: size,
|
|
@@ -2372,7 +2710,7 @@ var PlusIcon = forwardRef50(function PlusIcon2(_a, ref) {
|
|
|
2372
2710
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2373
2711
|
className
|
|
2374
2712
|
}, other), {
|
|
2375
|
-
children: /* @__PURE__ */
|
|
2713
|
+
children: /* @__PURE__ */ jsx61(
|
|
2376
2714
|
"path",
|
|
2377
2715
|
{
|
|
2378
2716
|
d: "M12 5V19M5 12H19",
|
|
@@ -2387,12 +2725,12 @@ var PlusIcon = forwardRef50(function PlusIcon2(_a, ref) {
|
|
|
2387
2725
|
});
|
|
2388
2726
|
|
|
2389
2727
|
// src/icons/plusCircle.tsx
|
|
2390
|
-
import { forwardRef as
|
|
2391
|
-
import { jsx as
|
|
2392
|
-
var PlusCircleIcon =
|
|
2728
|
+
import { forwardRef as forwardRef60 } from "react";
|
|
2729
|
+
import { jsx as jsx62, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
2730
|
+
var PlusCircleIcon = forwardRef60(
|
|
2393
2731
|
function PlusCircleIcon2(_a, ref) {
|
|
2394
2732
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2395
|
-
return /* @__PURE__ */
|
|
2733
|
+
return /* @__PURE__ */ jsxs41(
|
|
2396
2734
|
"svg",
|
|
2397
2735
|
__spreadProps(__spreadValues({
|
|
2398
2736
|
ref,
|
|
@@ -2404,7 +2742,7 @@ var PlusCircleIcon = forwardRef51(
|
|
|
2404
2742
|
className
|
|
2405
2743
|
}, other), {
|
|
2406
2744
|
children: [
|
|
2407
|
-
duotone && /* @__PURE__ */
|
|
2745
|
+
duotone && /* @__PURE__ */ jsx62(
|
|
2408
2746
|
"path",
|
|
2409
2747
|
{
|
|
2410
2748
|
opacity: "0.12",
|
|
@@ -2412,7 +2750,7 @@ var PlusCircleIcon = forwardRef51(
|
|
|
2412
2750
|
fill: "currentColor"
|
|
2413
2751
|
}
|
|
2414
2752
|
),
|
|
2415
|
-
/* @__PURE__ */
|
|
2753
|
+
/* @__PURE__ */ jsx62(
|
|
2416
2754
|
"path",
|
|
2417
2755
|
{
|
|
2418
2756
|
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",
|
|
@@ -2429,12 +2767,12 @@ var PlusCircleIcon = forwardRef51(
|
|
|
2429
2767
|
);
|
|
2430
2768
|
|
|
2431
2769
|
// src/icons/puzzlePiece.tsx
|
|
2432
|
-
import { forwardRef as
|
|
2433
|
-
import { jsx as
|
|
2434
|
-
var PuzzlePieceIcon =
|
|
2770
|
+
import { forwardRef as forwardRef61 } from "react";
|
|
2771
|
+
import { jsx as jsx63, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
2772
|
+
var PuzzlePieceIcon = forwardRef61(
|
|
2435
2773
|
function PuzzlePieceIcon2(_a, ref) {
|
|
2436
2774
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2437
|
-
return /* @__PURE__ */
|
|
2775
|
+
return /* @__PURE__ */ jsxs42(
|
|
2438
2776
|
"svg",
|
|
2439
2777
|
__spreadProps(__spreadValues({
|
|
2440
2778
|
ref,
|
|
@@ -2446,7 +2784,7 @@ var PuzzlePieceIcon = forwardRef52(
|
|
|
2446
2784
|
className
|
|
2447
2785
|
}, other), {
|
|
2448
2786
|
children: [
|
|
2449
|
-
duotone && /* @__PURE__ */
|
|
2787
|
+
duotone && /* @__PURE__ */ jsx63(
|
|
2450
2788
|
"path",
|
|
2451
2789
|
{
|
|
2452
2790
|
opacity: "0.12",
|
|
@@ -2454,7 +2792,7 @@ var PuzzlePieceIcon = forwardRef52(
|
|
|
2454
2792
|
fill: "currentColor"
|
|
2455
2793
|
}
|
|
2456
2794
|
),
|
|
2457
|
-
/* @__PURE__ */
|
|
2795
|
+
/* @__PURE__ */ jsx63(
|
|
2458
2796
|
"path",
|
|
2459
2797
|
{
|
|
2460
2798
|
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",
|
|
@@ -2471,12 +2809,12 @@ var PuzzlePieceIcon = forwardRef52(
|
|
|
2471
2809
|
);
|
|
2472
2810
|
|
|
2473
2811
|
// src/icons/qrCode.tsx
|
|
2474
|
-
import { forwardRef as
|
|
2475
|
-
import { jsx as
|
|
2476
|
-
var QrCodeIcon =
|
|
2812
|
+
import { forwardRef as forwardRef62 } from "react";
|
|
2813
|
+
import { jsx as jsx64, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
2814
|
+
var QrCodeIcon = forwardRef62(
|
|
2477
2815
|
function QrCodeIcon2(_a, ref) {
|
|
2478
2816
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2479
|
-
return /* @__PURE__ */
|
|
2817
|
+
return /* @__PURE__ */ jsxs43(
|
|
2480
2818
|
"svg",
|
|
2481
2819
|
__spreadProps(__spreadValues({
|
|
2482
2820
|
ref,
|
|
@@ -2488,7 +2826,7 @@ var QrCodeIcon = forwardRef53(
|
|
|
2488
2826
|
className
|
|
2489
2827
|
}, other), {
|
|
2490
2828
|
children: [
|
|
2491
|
-
duotone && /* @__PURE__ */
|
|
2829
|
+
duotone && /* @__PURE__ */ jsx64(
|
|
2492
2830
|
"path",
|
|
2493
2831
|
{
|
|
2494
2832
|
opacity: "0.4",
|
|
@@ -2499,7 +2837,7 @@ var QrCodeIcon = forwardRef53(
|
|
|
2499
2837
|
strokeLinejoin: "round"
|
|
2500
2838
|
}
|
|
2501
2839
|
),
|
|
2502
|
-
/* @__PURE__ */
|
|
2840
|
+
/* @__PURE__ */ jsx64(
|
|
2503
2841
|
"path",
|
|
2504
2842
|
{
|
|
2505
2843
|
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",
|
|
@@ -2516,12 +2854,12 @@ var QrCodeIcon = forwardRef53(
|
|
|
2516
2854
|
);
|
|
2517
2855
|
|
|
2518
2856
|
// src/icons/receiptCheck.tsx
|
|
2519
|
-
import { forwardRef as
|
|
2520
|
-
import { jsx as
|
|
2521
|
-
var ReceiptCheckIcon =
|
|
2857
|
+
import { forwardRef as forwardRef63 } from "react";
|
|
2858
|
+
import { jsx as jsx65, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
2859
|
+
var ReceiptCheckIcon = forwardRef63(
|
|
2522
2860
|
function ReceiptCheckIcon2(_a, ref) {
|
|
2523
2861
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2524
|
-
return /* @__PURE__ */
|
|
2862
|
+
return /* @__PURE__ */ jsxs44(
|
|
2525
2863
|
"svg",
|
|
2526
2864
|
__spreadProps(__spreadValues({
|
|
2527
2865
|
ref,
|
|
@@ -2533,7 +2871,7 @@ var ReceiptCheckIcon = forwardRef54(
|
|
|
2533
2871
|
className
|
|
2534
2872
|
}, other), {
|
|
2535
2873
|
children: [
|
|
2536
|
-
duotone && /* @__PURE__ */
|
|
2874
|
+
duotone && /* @__PURE__ */ jsx65(
|
|
2537
2875
|
"path",
|
|
2538
2876
|
{
|
|
2539
2877
|
opacity: "0.12",
|
|
@@ -2541,7 +2879,7 @@ var ReceiptCheckIcon = forwardRef54(
|
|
|
2541
2879
|
fill: "currentColor"
|
|
2542
2880
|
}
|
|
2543
2881
|
),
|
|
2544
|
-
/* @__PURE__ */
|
|
2882
|
+
/* @__PURE__ */ jsx65(
|
|
2545
2883
|
"path",
|
|
2546
2884
|
{
|
|
2547
2885
|
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",
|
|
@@ -2558,12 +2896,12 @@ var ReceiptCheckIcon = forwardRef54(
|
|
|
2558
2896
|
);
|
|
2559
2897
|
|
|
2560
2898
|
// src/icons/recording.tsx
|
|
2561
|
-
import { forwardRef as
|
|
2562
|
-
import { jsx as
|
|
2563
|
-
var RecordingIcon =
|
|
2899
|
+
import { forwardRef as forwardRef64 } from "react";
|
|
2900
|
+
import { jsx as jsx66, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
2901
|
+
var RecordingIcon = forwardRef64(
|
|
2564
2902
|
function RecordingIcon2(_a, ref) {
|
|
2565
2903
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2566
|
-
return /* @__PURE__ */
|
|
2904
|
+
return /* @__PURE__ */ jsxs45(
|
|
2567
2905
|
"svg",
|
|
2568
2906
|
__spreadProps(__spreadValues({
|
|
2569
2907
|
ref,
|
|
@@ -2575,7 +2913,7 @@ var RecordingIcon = forwardRef55(
|
|
|
2575
2913
|
className
|
|
2576
2914
|
}, other), {
|
|
2577
2915
|
children: [
|
|
2578
|
-
duotone && /* @__PURE__ */
|
|
2916
|
+
duotone && /* @__PURE__ */ jsx66(
|
|
2579
2917
|
"path",
|
|
2580
2918
|
{
|
|
2581
2919
|
opacity: "0.12",
|
|
@@ -2583,7 +2921,7 @@ var RecordingIcon = forwardRef55(
|
|
|
2583
2921
|
fill: "currentColor"
|
|
2584
2922
|
}
|
|
2585
2923
|
),
|
|
2586
|
-
/* @__PURE__ */
|
|
2924
|
+
/* @__PURE__ */ jsx66(
|
|
2587
2925
|
"path",
|
|
2588
2926
|
{
|
|
2589
2927
|
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",
|
|
@@ -2600,12 +2938,12 @@ var RecordingIcon = forwardRef55(
|
|
|
2600
2938
|
);
|
|
2601
2939
|
|
|
2602
2940
|
// src/icons/refreshCcw.tsx
|
|
2603
|
-
import { forwardRef as
|
|
2604
|
-
import { jsx as
|
|
2605
|
-
var RefreshCcwIcon =
|
|
2941
|
+
import { forwardRef as forwardRef65 } from "react";
|
|
2942
|
+
import { jsx as jsx67 } from "react/jsx-runtime";
|
|
2943
|
+
var RefreshCcwIcon = forwardRef65(
|
|
2606
2944
|
function RefreshCcwIcon2(_a, ref) {
|
|
2607
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
2608
|
-
return /* @__PURE__ */
|
|
2945
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2946
|
+
return /* @__PURE__ */ jsx67(
|
|
2609
2947
|
"svg",
|
|
2610
2948
|
__spreadProps(__spreadValues({
|
|
2611
2949
|
ref,
|
|
@@ -2616,7 +2954,7 @@ var RefreshCcwIcon = forwardRef56(
|
|
|
2616
2954
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2617
2955
|
className
|
|
2618
2956
|
}, other), {
|
|
2619
|
-
children: /* @__PURE__ */
|
|
2957
|
+
children: /* @__PURE__ */ jsx67(
|
|
2620
2958
|
"path",
|
|
2621
2959
|
{
|
|
2622
2960
|
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",
|
|
@@ -2632,12 +2970,12 @@ var RefreshCcwIcon = forwardRef56(
|
|
|
2632
2970
|
);
|
|
2633
2971
|
|
|
2634
2972
|
// src/icons/refreshCw.tsx
|
|
2635
|
-
import { forwardRef as
|
|
2636
|
-
import { jsx as
|
|
2637
|
-
var RefreshCwIcon =
|
|
2973
|
+
import { forwardRef as forwardRef66 } from "react";
|
|
2974
|
+
import { jsx as jsx68 } from "react/jsx-runtime";
|
|
2975
|
+
var RefreshCwIcon = forwardRef66(
|
|
2638
2976
|
function RefreshCwIcon2(_a, ref) {
|
|
2639
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
2640
|
-
return /* @__PURE__ */
|
|
2977
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2978
|
+
return /* @__PURE__ */ jsx68(
|
|
2641
2979
|
"svg",
|
|
2642
2980
|
__spreadProps(__spreadValues({
|
|
2643
2981
|
ref,
|
|
@@ -2648,7 +2986,7 @@ var RefreshCwIcon = forwardRef57(
|
|
|
2648
2986
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2649
2987
|
className
|
|
2650
2988
|
}, other), {
|
|
2651
|
-
children: /* @__PURE__ */
|
|
2989
|
+
children: /* @__PURE__ */ jsx68(
|
|
2652
2990
|
"path",
|
|
2653
2991
|
{
|
|
2654
2992
|
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",
|
|
@@ -2664,12 +3002,12 @@ var RefreshCwIcon = forwardRef57(
|
|
|
2664
3002
|
);
|
|
2665
3003
|
|
|
2666
3004
|
// src/icons/rocket.tsx
|
|
2667
|
-
import { forwardRef as
|
|
2668
|
-
import { jsx as
|
|
2669
|
-
var RocketIcon =
|
|
3005
|
+
import { forwardRef as forwardRef67 } from "react";
|
|
3006
|
+
import { jsx as jsx69, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
3007
|
+
var RocketIcon = forwardRef67(
|
|
2670
3008
|
function RocketIcon2(_a, ref) {
|
|
2671
3009
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2672
|
-
return /* @__PURE__ */
|
|
3010
|
+
return /* @__PURE__ */ jsxs46(
|
|
2673
3011
|
"svg",
|
|
2674
3012
|
__spreadProps(__spreadValues({
|
|
2675
3013
|
ref,
|
|
@@ -2681,7 +3019,7 @@ var RocketIcon = forwardRef58(
|
|
|
2681
3019
|
className
|
|
2682
3020
|
}, other), {
|
|
2683
3021
|
children: [
|
|
2684
|
-
duotone && /* @__PURE__ */
|
|
3022
|
+
duotone && /* @__PURE__ */ jsx69(
|
|
2685
3023
|
"path",
|
|
2686
3024
|
{
|
|
2687
3025
|
opacity: "0.12",
|
|
@@ -2689,7 +3027,7 @@ var RocketIcon = forwardRef58(
|
|
|
2689
3027
|
fill: "currentColor"
|
|
2690
3028
|
}
|
|
2691
3029
|
),
|
|
2692
|
-
/* @__PURE__ */
|
|
3030
|
+
/* @__PURE__ */ jsx69(
|
|
2693
3031
|
"path",
|
|
2694
3032
|
{
|
|
2695
3033
|
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",
|
|
@@ -2706,11 +3044,11 @@ var RocketIcon = forwardRef58(
|
|
|
2706
3044
|
);
|
|
2707
3045
|
|
|
2708
3046
|
// src/icons/save.tsx
|
|
2709
|
-
import { forwardRef as
|
|
2710
|
-
import { jsx as
|
|
2711
|
-
var SaveIcon =
|
|
3047
|
+
import { forwardRef as forwardRef68 } from "react";
|
|
3048
|
+
import { jsx as jsx70, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
3049
|
+
var SaveIcon = forwardRef68(function SaveIcon2(_a, ref) {
|
|
2712
3050
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2713
|
-
return /* @__PURE__ */
|
|
3051
|
+
return /* @__PURE__ */ jsxs47(
|
|
2714
3052
|
"svg",
|
|
2715
3053
|
__spreadProps(__spreadValues({
|
|
2716
3054
|
ref,
|
|
@@ -2722,15 +3060,15 @@ var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
|
|
|
2722
3060
|
className
|
|
2723
3061
|
}, other), {
|
|
2724
3062
|
children: [
|
|
2725
|
-
duotone && /* @__PURE__ */
|
|
2726
|
-
/* @__PURE__ */
|
|
3063
|
+
duotone && /* @__PURE__ */ jsxs47("g", { opacity: "0.12", children: [
|
|
3064
|
+
/* @__PURE__ */ jsx70(
|
|
2727
3065
|
"path",
|
|
2728
3066
|
{
|
|
2729
3067
|
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",
|
|
2730
3068
|
fill: "currentColor"
|
|
2731
3069
|
}
|
|
2732
3070
|
),
|
|
2733
|
-
/* @__PURE__ */
|
|
3071
|
+
/* @__PURE__ */ jsx70(
|
|
2734
3072
|
"path",
|
|
2735
3073
|
{
|
|
2736
3074
|
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",
|
|
@@ -2738,7 +3076,7 @@ var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
|
|
|
2738
3076
|
}
|
|
2739
3077
|
)
|
|
2740
3078
|
] }),
|
|
2741
|
-
/* @__PURE__ */
|
|
3079
|
+
/* @__PURE__ */ jsx70(
|
|
2742
3080
|
"path",
|
|
2743
3081
|
{
|
|
2744
3082
|
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",
|
|
@@ -2754,12 +3092,12 @@ var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
|
|
|
2754
3092
|
});
|
|
2755
3093
|
|
|
2756
3094
|
// src/icons/search.tsx
|
|
2757
|
-
import { forwardRef as
|
|
2758
|
-
import { jsx as
|
|
2759
|
-
var SearchMdIcon =
|
|
3095
|
+
import { forwardRef as forwardRef69 } from "react";
|
|
3096
|
+
import { jsx as jsx71, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
3097
|
+
var SearchMdIcon = forwardRef69(
|
|
2760
3098
|
function SearchMdIcon2(_a, ref) {
|
|
2761
3099
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2762
|
-
return /* @__PURE__ */
|
|
3100
|
+
return /* @__PURE__ */ jsxs48(
|
|
2763
3101
|
"svg",
|
|
2764
3102
|
__spreadProps(__spreadValues({
|
|
2765
3103
|
ref,
|
|
@@ -2771,7 +3109,7 @@ var SearchMdIcon = forwardRef60(
|
|
|
2771
3109
|
className
|
|
2772
3110
|
}, other), {
|
|
2773
3111
|
children: [
|
|
2774
|
-
duotone && /* @__PURE__ */
|
|
3112
|
+
duotone && /* @__PURE__ */ jsx71(
|
|
2775
3113
|
"path",
|
|
2776
3114
|
{
|
|
2777
3115
|
opacity: "0.12",
|
|
@@ -2779,7 +3117,7 @@ var SearchMdIcon = forwardRef60(
|
|
|
2779
3117
|
fill: "currentColor"
|
|
2780
3118
|
}
|
|
2781
3119
|
),
|
|
2782
|
-
/* @__PURE__ */
|
|
3120
|
+
/* @__PURE__ */ jsx71(
|
|
2783
3121
|
"path",
|
|
2784
3122
|
{
|
|
2785
3123
|
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",
|
|
@@ -2796,11 +3134,11 @@ var SearchMdIcon = forwardRef60(
|
|
|
2796
3134
|
);
|
|
2797
3135
|
|
|
2798
3136
|
// src/icons/send.tsx
|
|
2799
|
-
import { forwardRef as
|
|
2800
|
-
import { jsx as
|
|
2801
|
-
var SendIcon =
|
|
3137
|
+
import { forwardRef as forwardRef70 } from "react";
|
|
3138
|
+
import { jsx as jsx72, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
3139
|
+
var SendIcon = forwardRef70(function SendIcon2(_a, ref) {
|
|
2802
3140
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2803
|
-
return /* @__PURE__ */
|
|
3141
|
+
return /* @__PURE__ */ jsxs49(
|
|
2804
3142
|
"svg",
|
|
2805
3143
|
__spreadProps(__spreadValues({
|
|
2806
3144
|
ref,
|
|
@@ -2812,7 +3150,7 @@ var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
|
|
|
2812
3150
|
className
|
|
2813
3151
|
}, other), {
|
|
2814
3152
|
children: [
|
|
2815
|
-
duotone && /* @__PURE__ */
|
|
3153
|
+
duotone && /* @__PURE__ */ jsx72(
|
|
2816
3154
|
"path",
|
|
2817
3155
|
{
|
|
2818
3156
|
opacity: "0.12",
|
|
@@ -2820,7 +3158,7 @@ var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
|
|
|
2820
3158
|
fill: "currentColor"
|
|
2821
3159
|
}
|
|
2822
3160
|
),
|
|
2823
|
-
/* @__PURE__ */
|
|
3161
|
+
/* @__PURE__ */ jsx72(
|
|
2824
3162
|
"path",
|
|
2825
3163
|
{
|
|
2826
3164
|
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",
|
|
@@ -2836,12 +3174,12 @@ var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
|
|
|
2836
3174
|
});
|
|
2837
3175
|
|
|
2838
3176
|
// src/icons/settings.tsx
|
|
2839
|
-
import { forwardRef as
|
|
2840
|
-
import { jsx as
|
|
2841
|
-
var SettingsIcon =
|
|
3177
|
+
import { forwardRef as forwardRef71 } from "react";
|
|
3178
|
+
import { jsx as jsx73, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
3179
|
+
var SettingsIcon = forwardRef71(
|
|
2842
3180
|
function SettingsIcon2(_a, ref) {
|
|
2843
3181
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2844
|
-
return /* @__PURE__ */
|
|
3182
|
+
return /* @__PURE__ */ jsxs50(
|
|
2845
3183
|
"svg",
|
|
2846
3184
|
__spreadProps(__spreadValues({
|
|
2847
3185
|
ref,
|
|
@@ -2853,17 +3191,17 @@ var SettingsIcon = forwardRef62(
|
|
|
2853
3191
|
className
|
|
2854
3192
|
}, other), {
|
|
2855
3193
|
children: [
|
|
2856
|
-
duotone && /* @__PURE__ */
|
|
3194
|
+
duotone && /* @__PURE__ */ jsx73(
|
|
2857
3195
|
"path",
|
|
2858
3196
|
{
|
|
2859
3197
|
opacity: "0.12",
|
|
2860
|
-
|
|
2861
|
-
|
|
3198
|
+
fillRule: "evenodd",
|
|
3199
|
+
clipRule: "evenodd",
|
|
2862
3200
|
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",
|
|
2863
3201
|
fill: "currentColor"
|
|
2864
3202
|
}
|
|
2865
3203
|
),
|
|
2866
|
-
/* @__PURE__ */
|
|
3204
|
+
/* @__PURE__ */ jsx73(
|
|
2867
3205
|
"path",
|
|
2868
3206
|
{
|
|
2869
3207
|
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",
|
|
@@ -2874,7 +3212,7 @@ var SettingsIcon = forwardRef62(
|
|
|
2874
3212
|
}
|
|
2875
3213
|
),
|
|
2876
3214
|
",",
|
|
2877
|
-
/* @__PURE__ */
|
|
3215
|
+
/* @__PURE__ */ jsx73(
|
|
2878
3216
|
"path",
|
|
2879
3217
|
{
|
|
2880
3218
|
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",
|
|
@@ -2891,12 +3229,12 @@ var SettingsIcon = forwardRef62(
|
|
|
2891
3229
|
);
|
|
2892
3230
|
|
|
2893
3231
|
// src/icons/share.tsx
|
|
2894
|
-
import { forwardRef as
|
|
2895
|
-
import { jsx as
|
|
2896
|
-
var ShareIcon =
|
|
3232
|
+
import { forwardRef as forwardRef72 } from "react";
|
|
3233
|
+
import { jsx as jsx74, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3234
|
+
var ShareIcon = forwardRef72(
|
|
2897
3235
|
function ShareIcon2(_a, ref) {
|
|
2898
3236
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2899
|
-
return /* @__PURE__ */
|
|
3237
|
+
return /* @__PURE__ */ jsxs51(
|
|
2900
3238
|
"svg",
|
|
2901
3239
|
__spreadProps(__spreadValues({
|
|
2902
3240
|
ref,
|
|
@@ -2908,22 +3246,22 @@ var ShareIcon = forwardRef63(
|
|
|
2908
3246
|
className
|
|
2909
3247
|
}, other), {
|
|
2910
3248
|
children: [
|
|
2911
|
-
duotone && /* @__PURE__ */
|
|
2912
|
-
/* @__PURE__ */
|
|
3249
|
+
duotone && /* @__PURE__ */ jsxs51("g", { opacity: "0.12", children: [
|
|
3250
|
+
/* @__PURE__ */ jsx74(
|
|
2913
3251
|
"path",
|
|
2914
3252
|
{
|
|
2915
3253
|
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",
|
|
2916
3254
|
fill: "currentColor"
|
|
2917
3255
|
}
|
|
2918
3256
|
),
|
|
2919
|
-
/* @__PURE__ */
|
|
3257
|
+
/* @__PURE__ */ jsx74(
|
|
2920
3258
|
"path",
|
|
2921
3259
|
{
|
|
2922
3260
|
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",
|
|
2923
3261
|
fill: "currentColor"
|
|
2924
3262
|
}
|
|
2925
3263
|
),
|
|
2926
|
-
/* @__PURE__ */
|
|
3264
|
+
/* @__PURE__ */ jsx74(
|
|
2927
3265
|
"path",
|
|
2928
3266
|
{
|
|
2929
3267
|
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",
|
|
@@ -2931,7 +3269,7 @@ var ShareIcon = forwardRef63(
|
|
|
2931
3269
|
}
|
|
2932
3270
|
)
|
|
2933
3271
|
] }),
|
|
2934
|
-
/* @__PURE__ */
|
|
3272
|
+
/* @__PURE__ */ jsx74(
|
|
2935
3273
|
"path",
|
|
2936
3274
|
{
|
|
2937
3275
|
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",
|
|
@@ -2947,13 +3285,55 @@ var ShareIcon = forwardRef63(
|
|
|
2947
3285
|
}
|
|
2948
3286
|
);
|
|
2949
3287
|
|
|
3288
|
+
// src/icons/shareArrow.tsx
|
|
3289
|
+
import { forwardRef as forwardRef73 } from "react";
|
|
3290
|
+
import { jsx as jsx75, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3291
|
+
var ShareArrowIcon = forwardRef73(
|
|
3292
|
+
function ShareArrowIcon2(_a, ref) {
|
|
3293
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3294
|
+
return /* @__PURE__ */ jsxs52(
|
|
3295
|
+
"svg",
|
|
3296
|
+
__spreadProps(__spreadValues({
|
|
3297
|
+
ref,
|
|
3298
|
+
width: size,
|
|
3299
|
+
height: size,
|
|
3300
|
+
viewBox: "0 0 24 24",
|
|
3301
|
+
fill: "none",
|
|
3302
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3303
|
+
className
|
|
3304
|
+
}, other), {
|
|
3305
|
+
children: [
|
|
3306
|
+
duotone && /* @__PURE__ */ jsx75(
|
|
3307
|
+
"path",
|
|
3308
|
+
{
|
|
3309
|
+
opacity: "0.12",
|
|
3310
|
+
d: "M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V14L10 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z",
|
|
3311
|
+
fill: "currentColor"
|
|
3312
|
+
}
|
|
3313
|
+
),
|
|
3314
|
+
/* @__PURE__ */ jsx75(
|
|
3315
|
+
"path",
|
|
3316
|
+
{
|
|
3317
|
+
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",
|
|
3318
|
+
stroke: "currentColor",
|
|
3319
|
+
strokeWidth: "2",
|
|
3320
|
+
strokeLinecap: "round",
|
|
3321
|
+
strokeLinejoin: "round"
|
|
3322
|
+
}
|
|
3323
|
+
)
|
|
3324
|
+
]
|
|
3325
|
+
})
|
|
3326
|
+
);
|
|
3327
|
+
}
|
|
3328
|
+
);
|
|
3329
|
+
|
|
2950
3330
|
// src/icons/skipBack.tsx
|
|
2951
|
-
import { forwardRef as
|
|
2952
|
-
import { jsx as
|
|
2953
|
-
var SkipBackIcon =
|
|
3331
|
+
import { forwardRef as forwardRef74 } from "react";
|
|
3332
|
+
import { jsx as jsx76, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3333
|
+
var SkipBackIcon = forwardRef74(
|
|
2954
3334
|
function SkipBackIcon2(_a, ref) {
|
|
2955
3335
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2956
|
-
return /* @__PURE__ */
|
|
3336
|
+
return /* @__PURE__ */ jsxs53(
|
|
2957
3337
|
"svg",
|
|
2958
3338
|
__spreadProps(__spreadValues({
|
|
2959
3339
|
ref,
|
|
@@ -2965,7 +3345,7 @@ var SkipBackIcon = forwardRef64(
|
|
|
2965
3345
|
className
|
|
2966
3346
|
}, other), {
|
|
2967
3347
|
children: [
|
|
2968
|
-
duotone && /* @__PURE__ */
|
|
3348
|
+
duotone && /* @__PURE__ */ jsx76(
|
|
2969
3349
|
"path",
|
|
2970
3350
|
{
|
|
2971
3351
|
opacity: "0.12",
|
|
@@ -2973,7 +3353,7 @@ var SkipBackIcon = forwardRef64(
|
|
|
2973
3353
|
fill: "currentColor"
|
|
2974
3354
|
}
|
|
2975
3355
|
),
|
|
2976
|
-
/* @__PURE__ */
|
|
3356
|
+
/* @__PURE__ */ jsx76(
|
|
2977
3357
|
"path",
|
|
2978
3358
|
{
|
|
2979
3359
|
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",
|
|
@@ -2990,12 +3370,12 @@ var SkipBackIcon = forwardRef64(
|
|
|
2990
3370
|
);
|
|
2991
3371
|
|
|
2992
3372
|
// src/icons/skipForward.tsx
|
|
2993
|
-
import { forwardRef as
|
|
2994
|
-
import { jsx as
|
|
2995
|
-
var SkipForwardIcon =
|
|
3373
|
+
import { forwardRef as forwardRef75 } from "react";
|
|
3374
|
+
import { jsx as jsx77, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3375
|
+
var SkipForwardIcon = forwardRef75(
|
|
2996
3376
|
function SkipForwardIcon2(_a, ref) {
|
|
2997
3377
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2998
|
-
return /* @__PURE__ */
|
|
3378
|
+
return /* @__PURE__ */ jsxs54(
|
|
2999
3379
|
"svg",
|
|
3000
3380
|
__spreadProps(__spreadValues({
|
|
3001
3381
|
ref,
|
|
@@ -3007,7 +3387,7 @@ var SkipForwardIcon = forwardRef65(
|
|
|
3007
3387
|
className
|
|
3008
3388
|
}, other), {
|
|
3009
3389
|
children: [
|
|
3010
|
-
duotone && /* @__PURE__ */
|
|
3390
|
+
duotone && /* @__PURE__ */ jsx77(
|
|
3011
3391
|
"path",
|
|
3012
3392
|
{
|
|
3013
3393
|
opacity: "0.12",
|
|
@@ -3015,7 +3395,7 @@ var SkipForwardIcon = forwardRef65(
|
|
|
3015
3395
|
fill: "currentColor"
|
|
3016
3396
|
}
|
|
3017
3397
|
),
|
|
3018
|
-
/* @__PURE__ */
|
|
3398
|
+
/* @__PURE__ */ jsx77(
|
|
3019
3399
|
"path",
|
|
3020
3400
|
{
|
|
3021
3401
|
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",
|
|
@@ -3032,12 +3412,12 @@ var SkipForwardIcon = forwardRef65(
|
|
|
3032
3412
|
);
|
|
3033
3413
|
|
|
3034
3414
|
// src/icons/stars.tsx
|
|
3035
|
-
import { forwardRef as
|
|
3036
|
-
import { jsx as
|
|
3037
|
-
var StarsIcon =
|
|
3415
|
+
import { forwardRef as forwardRef76 } from "react";
|
|
3416
|
+
import { jsx as jsx78, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3417
|
+
var StarsIcon = forwardRef76(
|
|
3038
3418
|
function StarsIcon2(_a, ref) {
|
|
3039
3419
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3040
|
-
return /* @__PURE__ */
|
|
3420
|
+
return /* @__PURE__ */ jsxs55(
|
|
3041
3421
|
"svg",
|
|
3042
3422
|
__spreadProps(__spreadValues({
|
|
3043
3423
|
ref,
|
|
@@ -3049,7 +3429,7 @@ var StarsIcon = forwardRef66(
|
|
|
3049
3429
|
className
|
|
3050
3430
|
}, other), {
|
|
3051
3431
|
children: [
|
|
3052
|
-
duotone && /* @__PURE__ */
|
|
3432
|
+
duotone && /* @__PURE__ */ jsx78(
|
|
3053
3433
|
"path",
|
|
3054
3434
|
{
|
|
3055
3435
|
opacity: "0.12",
|
|
@@ -3057,7 +3437,7 @@ var StarsIcon = forwardRef66(
|
|
|
3057
3437
|
fill: "currentColor"
|
|
3058
3438
|
}
|
|
3059
3439
|
),
|
|
3060
|
-
/* @__PURE__ */
|
|
3440
|
+
/* @__PURE__ */ jsx78(
|
|
3061
3441
|
"path",
|
|
3062
3442
|
{
|
|
3063
3443
|
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",
|
|
@@ -3074,12 +3454,12 @@ var StarsIcon = forwardRef66(
|
|
|
3074
3454
|
);
|
|
3075
3455
|
|
|
3076
3456
|
// src/icons/trash.tsx
|
|
3077
|
-
import { forwardRef as
|
|
3078
|
-
import { jsx as
|
|
3079
|
-
var TrashIcon =
|
|
3457
|
+
import { forwardRef as forwardRef77 } from "react";
|
|
3458
|
+
import { jsx as jsx79, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3459
|
+
var TrashIcon = forwardRef77(
|
|
3080
3460
|
function TrashIcon2(_a, ref) {
|
|
3081
3461
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3082
|
-
return /* @__PURE__ */
|
|
3462
|
+
return /* @__PURE__ */ jsxs56(
|
|
3083
3463
|
"svg",
|
|
3084
3464
|
__spreadProps(__spreadValues({
|
|
3085
3465
|
ref,
|
|
@@ -3091,7 +3471,7 @@ var TrashIcon = forwardRef67(
|
|
|
3091
3471
|
className
|
|
3092
3472
|
}, other), {
|
|
3093
3473
|
children: [
|
|
3094
|
-
duotone && /* @__PURE__ */
|
|
3474
|
+
duotone && /* @__PURE__ */ jsx79(
|
|
3095
3475
|
"path",
|
|
3096
3476
|
{
|
|
3097
3477
|
opacity: "0.12",
|
|
@@ -3099,7 +3479,7 @@ var TrashIcon = forwardRef67(
|
|
|
3099
3479
|
fill: "currentColor"
|
|
3100
3480
|
}
|
|
3101
3481
|
),
|
|
3102
|
-
/* @__PURE__ */
|
|
3482
|
+
/* @__PURE__ */ jsx79(
|
|
3103
3483
|
"path",
|
|
3104
3484
|
{
|
|
3105
3485
|
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",
|
|
@@ -3116,12 +3496,12 @@ var TrashIcon = forwardRef67(
|
|
|
3116
3496
|
);
|
|
3117
3497
|
|
|
3118
3498
|
// src/icons/trendDown.tsx
|
|
3119
|
-
import { forwardRef as
|
|
3120
|
-
import { jsx as
|
|
3121
|
-
var TrendDownIcon =
|
|
3499
|
+
import { forwardRef as forwardRef78 } from "react";
|
|
3500
|
+
import { jsx as jsx80 } from "react/jsx-runtime";
|
|
3501
|
+
var TrendDownIcon = forwardRef78(
|
|
3122
3502
|
function TrendDownIcon2(_a, ref) {
|
|
3123
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
3124
|
-
return /* @__PURE__ */
|
|
3503
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3504
|
+
return /* @__PURE__ */ jsx80(
|
|
3125
3505
|
"svg",
|
|
3126
3506
|
__spreadProps(__spreadValues({
|
|
3127
3507
|
ref,
|
|
@@ -3132,7 +3512,7 @@ var TrendDownIcon = forwardRef68(
|
|
|
3132
3512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3133
3513
|
className
|
|
3134
3514
|
}, other), {
|
|
3135
|
-
children: /* @__PURE__ */
|
|
3515
|
+
children: /* @__PURE__ */ jsx80(
|
|
3136
3516
|
"path",
|
|
3137
3517
|
{
|
|
3138
3518
|
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",
|
|
@@ -3148,12 +3528,12 @@ var TrendDownIcon = forwardRef68(
|
|
|
3148
3528
|
);
|
|
3149
3529
|
|
|
3150
3530
|
// src/icons/trendUp.tsx
|
|
3151
|
-
import { forwardRef as
|
|
3152
|
-
import { jsx as
|
|
3153
|
-
var TrendUpIcon =
|
|
3531
|
+
import { forwardRef as forwardRef79 } from "react";
|
|
3532
|
+
import { jsx as jsx81 } from "react/jsx-runtime";
|
|
3533
|
+
var TrendUpIcon = forwardRef79(
|
|
3154
3534
|
function TrendUpIcon2(_a, ref) {
|
|
3155
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
3156
|
-
return /* @__PURE__ */
|
|
3535
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3536
|
+
return /* @__PURE__ */ jsx81(
|
|
3157
3537
|
"svg",
|
|
3158
3538
|
__spreadProps(__spreadValues({
|
|
3159
3539
|
ref,
|
|
@@ -3164,7 +3544,7 @@ var TrendUpIcon = forwardRef69(
|
|
|
3164
3544
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3165
3545
|
className
|
|
3166
3546
|
}, other), {
|
|
3167
|
-
children: /* @__PURE__ */
|
|
3547
|
+
children: /* @__PURE__ */ jsx81(
|
|
3168
3548
|
"path",
|
|
3169
3549
|
{
|
|
3170
3550
|
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",
|
|
@@ -3180,11 +3560,11 @@ var TrendUpIcon = forwardRef69(
|
|
|
3180
3560
|
);
|
|
3181
3561
|
|
|
3182
3562
|
// src/icons/user.tsx
|
|
3183
|
-
import { forwardRef as
|
|
3184
|
-
import { jsx as
|
|
3185
|
-
var UserIcon =
|
|
3563
|
+
import { forwardRef as forwardRef80 } from "react";
|
|
3564
|
+
import { jsx as jsx82, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
3565
|
+
var UserIcon = forwardRef80(function UserIcon2(_a, ref) {
|
|
3186
3566
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3187
|
-
return /* @__PURE__ */
|
|
3567
|
+
return /* @__PURE__ */ jsxs57(
|
|
3188
3568
|
"svg",
|
|
3189
3569
|
__spreadProps(__spreadValues({
|
|
3190
3570
|
ref,
|
|
@@ -3196,7 +3576,7 @@ var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
|
|
|
3196
3576
|
className
|
|
3197
3577
|
}, other), {
|
|
3198
3578
|
children: [
|
|
3199
|
-
duotone && /* @__PURE__ */
|
|
3579
|
+
duotone && /* @__PURE__ */ jsx82(
|
|
3200
3580
|
"path",
|
|
3201
3581
|
{
|
|
3202
3582
|
opacity: "0.12",
|
|
@@ -3204,7 +3584,7 @@ var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
|
|
|
3204
3584
|
fill: "currentColor"
|
|
3205
3585
|
}
|
|
3206
3586
|
),
|
|
3207
|
-
/* @__PURE__ */
|
|
3587
|
+
/* @__PURE__ */ jsx82(
|
|
3208
3588
|
"path",
|
|
3209
3589
|
{
|
|
3210
3590
|
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",
|
|
@@ -3220,12 +3600,12 @@ var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
|
|
|
3220
3600
|
});
|
|
3221
3601
|
|
|
3222
3602
|
// src/icons/userPlus.tsx
|
|
3223
|
-
import { forwardRef as
|
|
3224
|
-
import { jsx as
|
|
3225
|
-
var UserPlusIcon =
|
|
3603
|
+
import { forwardRef as forwardRef81 } from "react";
|
|
3604
|
+
import { jsx as jsx83, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
3605
|
+
var UserPlusIcon = forwardRef81(
|
|
3226
3606
|
function UserPlusIcon2(_a, ref) {
|
|
3227
3607
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3228
|
-
return /* @__PURE__ */
|
|
3608
|
+
return /* @__PURE__ */ jsxs58(
|
|
3229
3609
|
"svg",
|
|
3230
3610
|
__spreadProps(__spreadValues({
|
|
3231
3611
|
ref,
|
|
@@ -3237,7 +3617,7 @@ var UserPlusIcon = forwardRef71(
|
|
|
3237
3617
|
className
|
|
3238
3618
|
}, other), {
|
|
3239
3619
|
children: [
|
|
3240
|
-
duotone && /* @__PURE__ */
|
|
3620
|
+
duotone && /* @__PURE__ */ jsx83(
|
|
3241
3621
|
"path",
|
|
3242
3622
|
{
|
|
3243
3623
|
opacity: "0.12",
|
|
@@ -3245,7 +3625,7 @@ var UserPlusIcon = forwardRef71(
|
|
|
3245
3625
|
fill: "currentColor"
|
|
3246
3626
|
}
|
|
3247
3627
|
),
|
|
3248
|
-
/* @__PURE__ */
|
|
3628
|
+
/* @__PURE__ */ jsx83(
|
|
3249
3629
|
"path",
|
|
3250
3630
|
{
|
|
3251
3631
|
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",
|
|
@@ -3262,12 +3642,12 @@ var UserPlusIcon = forwardRef71(
|
|
|
3262
3642
|
);
|
|
3263
3643
|
|
|
3264
3644
|
// src/icons/userX.tsx
|
|
3265
|
-
import { forwardRef as
|
|
3266
|
-
import { jsx as
|
|
3267
|
-
var UserXIcon =
|
|
3645
|
+
import { forwardRef as forwardRef82 } from "react";
|
|
3646
|
+
import { jsx as jsx84, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
3647
|
+
var UserXIcon = forwardRef82(
|
|
3268
3648
|
function UserXIcon2(_a, ref) {
|
|
3269
3649
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3270
|
-
return /* @__PURE__ */
|
|
3650
|
+
return /* @__PURE__ */ jsxs59(
|
|
3271
3651
|
"svg",
|
|
3272
3652
|
__spreadProps(__spreadValues({
|
|
3273
3653
|
ref,
|
|
@@ -3279,7 +3659,7 @@ var UserXIcon = forwardRef72(
|
|
|
3279
3659
|
className
|
|
3280
3660
|
}, other), {
|
|
3281
3661
|
children: [
|
|
3282
|
-
duotone && /* @__PURE__ */
|
|
3662
|
+
duotone && /* @__PURE__ */ jsx84(
|
|
3283
3663
|
"path",
|
|
3284
3664
|
{
|
|
3285
3665
|
opacity: "0.12",
|
|
@@ -3287,7 +3667,7 @@ var UserXIcon = forwardRef72(
|
|
|
3287
3667
|
fill: "currentColor"
|
|
3288
3668
|
}
|
|
3289
3669
|
),
|
|
3290
|
-
/* @__PURE__ */
|
|
3670
|
+
/* @__PURE__ */ jsx84(
|
|
3291
3671
|
"path",
|
|
3292
3672
|
{
|
|
3293
3673
|
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",
|
|
@@ -3304,12 +3684,12 @@ var UserXIcon = forwardRef72(
|
|
|
3304
3684
|
);
|
|
3305
3685
|
|
|
3306
3686
|
// src/icons/users.tsx
|
|
3307
|
-
import { forwardRef as
|
|
3308
|
-
import { jsx as
|
|
3309
|
-
var UsersIcon =
|
|
3687
|
+
import { forwardRef as forwardRef83 } from "react";
|
|
3688
|
+
import { jsx as jsx85, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
3689
|
+
var UsersIcon = forwardRef83(
|
|
3310
3690
|
function UsersIcon2(_a, ref) {
|
|
3311
3691
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3312
|
-
return /* @__PURE__ */
|
|
3692
|
+
return /* @__PURE__ */ jsxs60(
|
|
3313
3693
|
"svg",
|
|
3314
3694
|
__spreadProps(__spreadValues({
|
|
3315
3695
|
ref,
|
|
@@ -3321,7 +3701,7 @@ var UsersIcon = forwardRef73(
|
|
|
3321
3701
|
className
|
|
3322
3702
|
}, other), {
|
|
3323
3703
|
children: [
|
|
3324
|
-
duotone && /* @__PURE__ */
|
|
3704
|
+
duotone && /* @__PURE__ */ jsx85(
|
|
3325
3705
|
"path",
|
|
3326
3706
|
{
|
|
3327
3707
|
opacity: "0.12",
|
|
@@ -3329,7 +3709,7 @@ var UsersIcon = forwardRef73(
|
|
|
3329
3709
|
fill: "currentColor"
|
|
3330
3710
|
}
|
|
3331
3711
|
),
|
|
3332
|
-
/* @__PURE__ */
|
|
3712
|
+
/* @__PURE__ */ jsx85(
|
|
3333
3713
|
"path",
|
|
3334
3714
|
{
|
|
3335
3715
|
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",
|
|
@@ -3346,12 +3726,12 @@ var UsersIcon = forwardRef73(
|
|
|
3346
3726
|
);
|
|
3347
3727
|
|
|
3348
3728
|
// src/icons/usersPlus.tsx
|
|
3349
|
-
import { forwardRef as
|
|
3350
|
-
import { jsx as
|
|
3351
|
-
var UsersPlusIcon =
|
|
3729
|
+
import { forwardRef as forwardRef84 } from "react";
|
|
3730
|
+
import { jsx as jsx86, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
3731
|
+
var UsersPlusIcon = forwardRef84(
|
|
3352
3732
|
function UsersPlusIcon2(_a, ref) {
|
|
3353
3733
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3354
|
-
return /* @__PURE__ */
|
|
3734
|
+
return /* @__PURE__ */ jsxs61(
|
|
3355
3735
|
"svg",
|
|
3356
3736
|
__spreadProps(__spreadValues({
|
|
3357
3737
|
ref,
|
|
@@ -3363,7 +3743,7 @@ var UsersPlusIcon = forwardRef74(
|
|
|
3363
3743
|
className
|
|
3364
3744
|
}, other), {
|
|
3365
3745
|
children: [
|
|
3366
|
-
duotone && /* @__PURE__ */
|
|
3746
|
+
duotone && /* @__PURE__ */ jsx86(
|
|
3367
3747
|
"path",
|
|
3368
3748
|
{
|
|
3369
3749
|
opacity: "0.12",
|
|
@@ -3371,7 +3751,7 @@ var UsersPlusIcon = forwardRef74(
|
|
|
3371
3751
|
fill: "currentColor"
|
|
3372
3752
|
}
|
|
3373
3753
|
),
|
|
3374
|
-
/* @__PURE__ */
|
|
3754
|
+
/* @__PURE__ */ jsx86(
|
|
3375
3755
|
"path",
|
|
3376
3756
|
{
|
|
3377
3757
|
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",
|
|
@@ -3388,12 +3768,12 @@ var UsersPlusIcon = forwardRef74(
|
|
|
3388
3768
|
);
|
|
3389
3769
|
|
|
3390
3770
|
// src/icons/usersX.tsx
|
|
3391
|
-
import { forwardRef as
|
|
3392
|
-
import { jsx as
|
|
3393
|
-
var UsersXIcon =
|
|
3771
|
+
import { forwardRef as forwardRef85 } from "react";
|
|
3772
|
+
import { jsx as jsx87, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
3773
|
+
var UsersXIcon = forwardRef85(
|
|
3394
3774
|
function UsersXIcon2(_a, ref) {
|
|
3395
3775
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3396
|
-
return /* @__PURE__ */
|
|
3776
|
+
return /* @__PURE__ */ jsxs62(
|
|
3397
3777
|
"svg",
|
|
3398
3778
|
__spreadProps(__spreadValues({
|
|
3399
3779
|
ref,
|
|
@@ -3405,7 +3785,7 @@ var UsersXIcon = forwardRef75(
|
|
|
3405
3785
|
className
|
|
3406
3786
|
}, other), {
|
|
3407
3787
|
children: [
|
|
3408
|
-
duotone && /* @__PURE__ */
|
|
3788
|
+
duotone && /* @__PURE__ */ jsx87(
|
|
3409
3789
|
"path",
|
|
3410
3790
|
{
|
|
3411
3791
|
opacity: "0.12",
|
|
@@ -3413,7 +3793,7 @@ var UsersXIcon = forwardRef75(
|
|
|
3413
3793
|
fill: "currentColor"
|
|
3414
3794
|
}
|
|
3415
3795
|
),
|
|
3416
|
-
/* @__PURE__ */
|
|
3796
|
+
/* @__PURE__ */ jsx87(
|
|
3417
3797
|
"path",
|
|
3418
3798
|
{
|
|
3419
3799
|
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",
|
|
@@ -3430,12 +3810,12 @@ var UsersXIcon = forwardRef75(
|
|
|
3430
3810
|
);
|
|
3431
3811
|
|
|
3432
3812
|
// src/icons/videoRecorder.tsx
|
|
3433
|
-
import { forwardRef as
|
|
3434
|
-
import { jsx as
|
|
3435
|
-
var VideoRecorderIcon =
|
|
3813
|
+
import { forwardRef as forwardRef86 } from "react";
|
|
3814
|
+
import { jsx as jsx88, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
3815
|
+
var VideoRecorderIcon = forwardRef86(
|
|
3436
3816
|
function VideoRecorderIcon2(_a, ref) {
|
|
3437
3817
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3438
|
-
return /* @__PURE__ */
|
|
3818
|
+
return /* @__PURE__ */ jsxs63(
|
|
3439
3819
|
"svg",
|
|
3440
3820
|
__spreadProps(__spreadValues({
|
|
3441
3821
|
ref,
|
|
@@ -3447,7 +3827,7 @@ var VideoRecorderIcon = forwardRef76(
|
|
|
3447
3827
|
className
|
|
3448
3828
|
}, other), {
|
|
3449
3829
|
children: [
|
|
3450
|
-
duotone && /* @__PURE__ */
|
|
3830
|
+
duotone && /* @__PURE__ */ jsx88(
|
|
3451
3831
|
"path",
|
|
3452
3832
|
{
|
|
3453
3833
|
opacity: "0.12",
|
|
@@ -3459,7 +3839,7 @@ var VideoRecorderIcon = forwardRef76(
|
|
|
3459
3839
|
strokeLinejoin: "round"
|
|
3460
3840
|
}
|
|
3461
3841
|
),
|
|
3462
|
-
/* @__PURE__ */
|
|
3842
|
+
/* @__PURE__ */ jsx88(
|
|
3463
3843
|
"path",
|
|
3464
3844
|
{
|
|
3465
3845
|
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",
|
|
@@ -3470,7 +3850,7 @@ var VideoRecorderIcon = forwardRef76(
|
|
|
3470
3850
|
}
|
|
3471
3851
|
),
|
|
3472
3852
|
",",
|
|
3473
|
-
/* @__PURE__ */
|
|
3853
|
+
/* @__PURE__ */ jsx88(
|
|
3474
3854
|
"path",
|
|
3475
3855
|
{
|
|
3476
3856
|
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",
|
|
@@ -3487,12 +3867,12 @@ var VideoRecorderIcon = forwardRef76(
|
|
|
3487
3867
|
);
|
|
3488
3868
|
|
|
3489
3869
|
// src/icons/videoRecorderOff.tsx
|
|
3490
|
-
import { forwardRef as
|
|
3491
|
-
import { jsx as
|
|
3492
|
-
var VideoRecorderOffIcon =
|
|
3870
|
+
import { forwardRef as forwardRef87 } from "react";
|
|
3871
|
+
import { jsx as jsx89, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
3872
|
+
var VideoRecorderOffIcon = forwardRef87(
|
|
3493
3873
|
function VideoRecorderOffIcon2(_a, ref) {
|
|
3494
3874
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3495
|
-
return /* @__PURE__ */
|
|
3875
|
+
return /* @__PURE__ */ jsxs64(
|
|
3496
3876
|
"svg",
|
|
3497
3877
|
__spreadProps(__spreadValues({
|
|
3498
3878
|
ref,
|
|
@@ -3504,7 +3884,7 @@ var VideoRecorderOffIcon = forwardRef77(
|
|
|
3504
3884
|
className
|
|
3505
3885
|
}, other), {
|
|
3506
3886
|
children: [
|
|
3507
|
-
duotone && /* @__PURE__ */
|
|
3887
|
+
duotone && /* @__PURE__ */ jsx89(
|
|
3508
3888
|
"path",
|
|
3509
3889
|
{
|
|
3510
3890
|
opacity: "0.12",
|
|
@@ -3516,7 +3896,7 @@ var VideoRecorderOffIcon = forwardRef77(
|
|
|
3516
3896
|
strokeLinejoin: "round"
|
|
3517
3897
|
}
|
|
3518
3898
|
),
|
|
3519
|
-
/* @__PURE__ */
|
|
3899
|
+
/* @__PURE__ */ jsx89(
|
|
3520
3900
|
"path",
|
|
3521
3901
|
{
|
|
3522
3902
|
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",
|
|
@@ -3533,12 +3913,12 @@ var VideoRecorderOffIcon = forwardRef77(
|
|
|
3533
3913
|
);
|
|
3534
3914
|
|
|
3535
3915
|
// src/icons/volumeMax.tsx
|
|
3536
|
-
import { forwardRef as
|
|
3537
|
-
import { jsx as
|
|
3538
|
-
var VolumeMaxIcon =
|
|
3916
|
+
import { forwardRef as forwardRef88 } from "react";
|
|
3917
|
+
import { jsx as jsx90, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
3918
|
+
var VolumeMaxIcon = forwardRef88(
|
|
3539
3919
|
function VolumeMaxIcon2(_a, ref) {
|
|
3540
3920
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3541
|
-
return /* @__PURE__ */
|
|
3921
|
+
return /* @__PURE__ */ jsxs65(
|
|
3542
3922
|
"svg",
|
|
3543
3923
|
__spreadProps(__spreadValues({
|
|
3544
3924
|
ref,
|
|
@@ -3550,7 +3930,7 @@ var VolumeMaxIcon = forwardRef78(
|
|
|
3550
3930
|
className
|
|
3551
3931
|
}, other), {
|
|
3552
3932
|
children: [
|
|
3553
|
-
duotone && /* @__PURE__ */
|
|
3933
|
+
duotone && /* @__PURE__ */ jsx90(
|
|
3554
3934
|
"path",
|
|
3555
3935
|
{
|
|
3556
3936
|
opacity: "0.12",
|
|
@@ -3558,7 +3938,7 @@ var VolumeMaxIcon = forwardRef78(
|
|
|
3558
3938
|
fill: "currentColor"
|
|
3559
3939
|
}
|
|
3560
3940
|
),
|
|
3561
|
-
/* @__PURE__ */
|
|
3941
|
+
/* @__PURE__ */ jsx90(
|
|
3562
3942
|
"path",
|
|
3563
3943
|
{
|
|
3564
3944
|
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",
|
|
@@ -3575,12 +3955,12 @@ var VolumeMaxIcon = forwardRef78(
|
|
|
3575
3955
|
);
|
|
3576
3956
|
|
|
3577
3957
|
// src/icons/volumeX.tsx
|
|
3578
|
-
import { forwardRef as
|
|
3579
|
-
import { jsx as
|
|
3580
|
-
var VolumeXIcon =
|
|
3958
|
+
import { forwardRef as forwardRef89 } from "react";
|
|
3959
|
+
import { jsx as jsx91, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
3960
|
+
var VolumeXIcon = forwardRef89(
|
|
3581
3961
|
function VolumeXIcon2(_a, ref) {
|
|
3582
3962
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3583
|
-
return /* @__PURE__ */
|
|
3963
|
+
return /* @__PURE__ */ jsxs66(
|
|
3584
3964
|
"svg",
|
|
3585
3965
|
__spreadProps(__spreadValues({
|
|
3586
3966
|
ref,
|
|
@@ -3592,7 +3972,7 @@ var VolumeXIcon = forwardRef79(
|
|
|
3592
3972
|
className
|
|
3593
3973
|
}, other), {
|
|
3594
3974
|
children: [
|
|
3595
|
-
duotone && /* @__PURE__ */
|
|
3975
|
+
duotone && /* @__PURE__ */ jsx91(
|
|
3596
3976
|
"path",
|
|
3597
3977
|
{
|
|
3598
3978
|
opacity: "0.12",
|
|
@@ -3600,7 +3980,7 @@ var VolumeXIcon = forwardRef79(
|
|
|
3600
3980
|
fill: "currentColor"
|
|
3601
3981
|
}
|
|
3602
3982
|
),
|
|
3603
|
-
/* @__PURE__ */
|
|
3983
|
+
/* @__PURE__ */ jsx91(
|
|
3604
3984
|
"path",
|
|
3605
3985
|
{
|
|
3606
3986
|
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",
|
|
@@ -3617,12 +3997,12 @@ var VolumeXIcon = forwardRef79(
|
|
|
3617
3997
|
);
|
|
3618
3998
|
|
|
3619
3999
|
// src/icons/xCircle.tsx
|
|
3620
|
-
import { forwardRef as
|
|
3621
|
-
import { jsx as
|
|
3622
|
-
var XCircleIcon =
|
|
4000
|
+
import { forwardRef as forwardRef90 } from "react";
|
|
4001
|
+
import { jsx as jsx92, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
4002
|
+
var XCircleIcon = forwardRef90(
|
|
3623
4003
|
function XCircleIcon2(_a, ref) {
|
|
3624
4004
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3625
|
-
return /* @__PURE__ */
|
|
4005
|
+
return /* @__PURE__ */ jsxs67(
|
|
3626
4006
|
"svg",
|
|
3627
4007
|
__spreadProps(__spreadValues({
|
|
3628
4008
|
ref,
|
|
@@ -3634,7 +4014,7 @@ var XCircleIcon = forwardRef80(
|
|
|
3634
4014
|
className
|
|
3635
4015
|
}, other), {
|
|
3636
4016
|
children: [
|
|
3637
|
-
duotone && /* @__PURE__ */
|
|
4017
|
+
duotone && /* @__PURE__ */ jsx92(
|
|
3638
4018
|
"path",
|
|
3639
4019
|
{
|
|
3640
4020
|
opacity: "0.12",
|
|
@@ -3642,7 +4022,7 @@ var XCircleIcon = forwardRef80(
|
|
|
3642
4022
|
fill: "currentColor"
|
|
3643
4023
|
}
|
|
3644
4024
|
),
|
|
3645
|
-
/* @__PURE__ */
|
|
4025
|
+
/* @__PURE__ */ jsx92(
|
|
3646
4026
|
"path",
|
|
3647
4027
|
{
|
|
3648
4028
|
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",
|
|
@@ -3659,12 +4039,12 @@ var XCircleIcon = forwardRef80(
|
|
|
3659
4039
|
);
|
|
3660
4040
|
|
|
3661
4041
|
// src/icons/xClose.tsx
|
|
3662
|
-
import { forwardRef as
|
|
3663
|
-
import { jsx as
|
|
3664
|
-
var XCloseIcon =
|
|
4042
|
+
import { forwardRef as forwardRef91 } from "react";
|
|
4043
|
+
import { jsx as jsx93 } from "react/jsx-runtime";
|
|
4044
|
+
var XCloseIcon = forwardRef91(
|
|
3665
4045
|
function XCloseIcon2(_a, ref) {
|
|
3666
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone
|
|
3667
|
-
return /* @__PURE__ */
|
|
4046
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
4047
|
+
return /* @__PURE__ */ jsx93(
|
|
3668
4048
|
"svg",
|
|
3669
4049
|
__spreadProps(__spreadValues({
|
|
3670
4050
|
ref,
|
|
@@ -3675,7 +4055,7 @@ var XCloseIcon = forwardRef81(
|
|
|
3675
4055
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3676
4056
|
className
|
|
3677
4057
|
}, other), {
|
|
3678
|
-
children: /* @__PURE__ */
|
|
4058
|
+
children: /* @__PURE__ */ jsx93(
|
|
3679
4059
|
"path",
|
|
3680
4060
|
{
|
|
3681
4061
|
d: "M18 6L6 18M6 6L18 18",
|
|
@@ -3691,7 +4071,7 @@ var XCloseIcon = forwardRef81(
|
|
|
3691
4071
|
);
|
|
3692
4072
|
|
|
3693
4073
|
// src/components/Calendar/Calendar.tsx
|
|
3694
|
-
import { jsx as
|
|
4074
|
+
import { jsx as jsx94 } from "react/jsx-runtime";
|
|
3695
4075
|
function Calendar(_a) {
|
|
3696
4076
|
var _b = _a, {
|
|
3697
4077
|
className,
|
|
@@ -3702,7 +4082,7 @@ function Calendar(_a) {
|
|
|
3702
4082
|
"classNames",
|
|
3703
4083
|
"showOutsideDays"
|
|
3704
4084
|
]);
|
|
3705
|
-
return /* @__PURE__ */
|
|
4085
|
+
return /* @__PURE__ */ jsx94(
|
|
3706
4086
|
DayPicker,
|
|
3707
4087
|
__spreadValues({
|
|
3708
4088
|
showOutsideDays,
|
|
@@ -3732,24 +4112,39 @@ function Calendar(_a) {
|
|
|
3732
4112
|
day_hidden: "invisible"
|
|
3733
4113
|
}, classNames),
|
|
3734
4114
|
components: {
|
|
3735
|
-
IconLeft: (
|
|
3736
|
-
|
|
3737
|
-
return /* @__PURE__ */ jsx84(ChevronLeftIcon, { className: "h-3 w-3" });
|
|
3738
|
-
},
|
|
3739
|
-
IconRight: (_b2) => {
|
|
3740
|
-
var props2 = __objRest(_b2, []);
|
|
3741
|
-
return /* @__PURE__ */ jsx84(ChevronRightIcon, { className: "h-3 w-3" });
|
|
3742
|
-
}
|
|
4115
|
+
IconLeft: () => /* @__PURE__ */ jsx94(ChevronLeftIcon, { className: "h-3 w-3" }),
|
|
4116
|
+
IconRight: () => /* @__PURE__ */ jsx94(ChevronRightIcon, { className: "h-3 w-3" })
|
|
3743
4117
|
}
|
|
3744
4118
|
}, props)
|
|
3745
4119
|
);
|
|
3746
4120
|
}
|
|
3747
4121
|
Calendar.displayName = "Calendar";
|
|
3748
4122
|
|
|
3749
|
-
// src/components/
|
|
4123
|
+
// src/components/Checkbox/Checkbox.tsx
|
|
3750
4124
|
import * as React5 from "react";
|
|
4125
|
+
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
|
|
4126
|
+
import { jsx as jsx95 } from "react/jsx-runtime";
|
|
4127
|
+
var Checkbox = React5.forwardRef((_a, ref) => {
|
|
4128
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4129
|
+
return /* @__PURE__ */ jsx95(
|
|
4130
|
+
CheckboxPrimitive.Root,
|
|
4131
|
+
__spreadProps(__spreadValues({
|
|
4132
|
+
className: cn(
|
|
4133
|
+
"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",
|
|
4134
|
+
className
|
|
4135
|
+
)
|
|
4136
|
+
}, props), {
|
|
4137
|
+
ref,
|
|
4138
|
+
children: /* @__PURE__ */ jsx95(CheckboxPrimitive.Indicator, { children: /* @__PURE__ */ jsx95(CheckIcon, { size: 10, className: "text-white" }) })
|
|
4139
|
+
})
|
|
4140
|
+
);
|
|
4141
|
+
});
|
|
4142
|
+
Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
4143
|
+
|
|
4144
|
+
// src/components/Dialog/Dialog.tsx
|
|
4145
|
+
import * as React6 from "react";
|
|
3751
4146
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
3752
|
-
import { jsx as
|
|
4147
|
+
import { jsx as jsx96, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
3753
4148
|
var Dialog = DialogPrimitive.Root;
|
|
3754
4149
|
var DialogTrigger = DialogPrimitive.Trigger;
|
|
3755
4150
|
var DialogPortal = (_a) => {
|
|
@@ -3758,12 +4153,12 @@ var DialogPortal = (_a) => {
|
|
|
3758
4153
|
} = _b, props = __objRest(_b, [
|
|
3759
4154
|
"className"
|
|
3760
4155
|
]);
|
|
3761
|
-
return /* @__PURE__ */
|
|
4156
|
+
return /* @__PURE__ */ jsx96(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
|
|
3762
4157
|
};
|
|
3763
4158
|
DialogPortal.displayName = DialogPrimitive.Portal.displayName;
|
|
3764
|
-
var DialogOverlay =
|
|
4159
|
+
var DialogOverlay = React6.forwardRef((_a, ref) => {
|
|
3765
4160
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3766
|
-
return /* @__PURE__ */
|
|
4161
|
+
return /* @__PURE__ */ jsx96(
|
|
3767
4162
|
DialogPrimitive.Overlay,
|
|
3768
4163
|
__spreadValues({
|
|
3769
4164
|
ref,
|
|
@@ -3775,11 +4170,11 @@ var DialogOverlay = React5.forwardRef((_a, ref) => {
|
|
|
3775
4170
|
);
|
|
3776
4171
|
});
|
|
3777
4172
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
3778
|
-
var DialogContent =
|
|
4173
|
+
var DialogContent = React6.forwardRef((_a, ref) => {
|
|
3779
4174
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
3780
|
-
return /* @__PURE__ */
|
|
3781
|
-
/* @__PURE__ */
|
|
3782
|
-
/* @__PURE__ */
|
|
4175
|
+
return /* @__PURE__ */ jsxs68(DialogPortal, { children: [
|
|
4176
|
+
/* @__PURE__ */ jsx96(DialogOverlay, {}),
|
|
4177
|
+
/* @__PURE__ */ jsxs68(
|
|
3783
4178
|
DialogPrimitive.Content,
|
|
3784
4179
|
__spreadProps(__spreadValues({
|
|
3785
4180
|
ref,
|
|
@@ -3790,7 +4185,7 @@ var DialogContent = React5.forwardRef((_a, ref) => {
|
|
|
3790
4185
|
}, props), {
|
|
3791
4186
|
children: [
|
|
3792
4187
|
children,
|
|
3793
|
-
/* @__PURE__ */
|
|
4188
|
+
/* @__PURE__ */ jsxs68(
|
|
3794
4189
|
DialogPrimitive.Close,
|
|
3795
4190
|
{
|
|
3796
4191
|
className: cn(
|
|
@@ -3799,8 +4194,8 @@ var DialogContent = React5.forwardRef((_a, ref) => {
|
|
|
3799
4194
|
"absolute right-6 top-6"
|
|
3800
4195
|
),
|
|
3801
4196
|
children: [
|
|
3802
|
-
/* @__PURE__ */
|
|
3803
|
-
/* @__PURE__ */
|
|
4197
|
+
/* @__PURE__ */ jsx96(XCloseIcon, { className: "h-3 w-3" }),
|
|
4198
|
+
/* @__PURE__ */ jsx96("span", { className: "sr-only", children: "Close" })
|
|
3804
4199
|
]
|
|
3805
4200
|
}
|
|
3806
4201
|
)
|
|
@@ -3816,7 +4211,7 @@ var DialogHeader = (_a) => {
|
|
|
3816
4211
|
} = _b, props = __objRest(_b, [
|
|
3817
4212
|
"className"
|
|
3818
4213
|
]);
|
|
3819
|
-
return /* @__PURE__ */
|
|
4214
|
+
return /* @__PURE__ */ jsx96(
|
|
3820
4215
|
"div",
|
|
3821
4216
|
__spreadValues({
|
|
3822
4217
|
className: cn(
|
|
@@ -3833,7 +4228,7 @@ var DialogFooter = (_a) => {
|
|
|
3833
4228
|
} = _b, props = __objRest(_b, [
|
|
3834
4229
|
"className"
|
|
3835
4230
|
]);
|
|
3836
|
-
return /* @__PURE__ */
|
|
4231
|
+
return /* @__PURE__ */ jsx96(
|
|
3837
4232
|
"div",
|
|
3838
4233
|
__spreadValues({
|
|
3839
4234
|
className: cn(
|
|
@@ -3844,9 +4239,9 @@ var DialogFooter = (_a) => {
|
|
|
3844
4239
|
);
|
|
3845
4240
|
};
|
|
3846
4241
|
DialogFooter.displayName = "DialogFooter";
|
|
3847
|
-
var DialogTitle =
|
|
4242
|
+
var DialogTitle = React6.forwardRef((_a, ref) => {
|
|
3848
4243
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3849
|
-
return /* @__PURE__ */
|
|
4244
|
+
return /* @__PURE__ */ jsx96(
|
|
3850
4245
|
DialogPrimitive.Title,
|
|
3851
4246
|
__spreadValues({
|
|
3852
4247
|
ref,
|
|
@@ -3855,9 +4250,9 @@ var DialogTitle = React5.forwardRef((_a, ref) => {
|
|
|
3855
4250
|
);
|
|
3856
4251
|
});
|
|
3857
4252
|
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
3858
|
-
var DialogDescription =
|
|
4253
|
+
var DialogDescription = React6.forwardRef((_a, ref) => {
|
|
3859
4254
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3860
|
-
return /* @__PURE__ */
|
|
4255
|
+
return /* @__PURE__ */ jsx96(
|
|
3861
4256
|
DialogPrimitive.Description,
|
|
3862
4257
|
__spreadValues({
|
|
3863
4258
|
ref,
|
|
@@ -3867,15 +4262,446 @@ var DialogDescription = React5.forwardRef((_a, ref) => {
|
|
|
3867
4262
|
});
|
|
3868
4263
|
DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
|
3869
4264
|
|
|
4265
|
+
// src/components/DropdownMenu/DropdownMenu.tsx
|
|
4266
|
+
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
4267
|
+
import React7 from "react";
|
|
4268
|
+
import { jsx as jsx97, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4269
|
+
var DropdownMenu = DropdownMenuPrimitive.Root;
|
|
4270
|
+
var DropdownMenuItemBase = ({
|
|
4271
|
+
icon,
|
|
4272
|
+
checkbox,
|
|
4273
|
+
className,
|
|
4274
|
+
checked,
|
|
4275
|
+
children,
|
|
4276
|
+
destructive,
|
|
4277
|
+
description,
|
|
4278
|
+
hasSubNav
|
|
4279
|
+
}) => {
|
|
4280
|
+
return /* @__PURE__ */ jsxs69(
|
|
4281
|
+
"div",
|
|
4282
|
+
{
|
|
4283
|
+
className: cn(
|
|
4284
|
+
"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",
|
|
4285
|
+
{ "text-red-700 font-medium": destructive },
|
|
4286
|
+
className
|
|
4287
|
+
),
|
|
4288
|
+
children: [
|
|
4289
|
+
/* @__PURE__ */ jsxs69("div", { className: "flex items-center gap-2", children: [
|
|
4290
|
+
checkbox && /* @__PURE__ */ jsx97(Checkbox, { checked }),
|
|
4291
|
+
icon && React7.cloneElement(icon, {
|
|
4292
|
+
size: 16,
|
|
4293
|
+
className: cn(
|
|
4294
|
+
"flex-shrink-0",
|
|
4295
|
+
{ "text-red-700": destructive },
|
|
4296
|
+
icon.props.className
|
|
4297
|
+
)
|
|
4298
|
+
}),
|
|
4299
|
+
children,
|
|
4300
|
+
hasSubNav && /* @__PURE__ */ jsx97("div", { className: "inline-flex items-center justify-end grow", children: /* @__PURE__ */ jsx97(ChevronRightIcon, { size: 16, className: "text-gray-1000" }) })
|
|
4301
|
+
] }),
|
|
4302
|
+
description && /* @__PURE__ */ jsx97("div", { className: "text-xs text-gray-700", children: description })
|
|
4303
|
+
]
|
|
4304
|
+
}
|
|
4305
|
+
);
|
|
4306
|
+
};
|
|
4307
|
+
var DropdownMenuCheckboxItem = React7.forwardRef(
|
|
4308
|
+
(_a, forwardedRef) => {
|
|
4309
|
+
var _b = _a, { className, children, checked, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "checked", "icon", "description", "destructive"]);
|
|
4310
|
+
const extraProps = {
|
|
4311
|
+
description,
|
|
4312
|
+
destructive,
|
|
4313
|
+
icon,
|
|
4314
|
+
checked,
|
|
4315
|
+
className
|
|
4316
|
+
};
|
|
4317
|
+
return /* @__PURE__ */ jsx97(
|
|
4318
|
+
DropdownMenuPrimitive.CheckboxItem,
|
|
4319
|
+
__spreadProps(__spreadValues({
|
|
4320
|
+
checked
|
|
4321
|
+
}, props), {
|
|
4322
|
+
ref: forwardedRef,
|
|
4323
|
+
className: "outline-none select-none group",
|
|
4324
|
+
children: /* @__PURE__ */ jsx97(DropdownMenuItemBase, __spreadProps(__spreadValues({ checkbox: true }, extraProps), { children }))
|
|
4325
|
+
})
|
|
4326
|
+
);
|
|
4327
|
+
}
|
|
4328
|
+
);
|
|
4329
|
+
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
|
|
4330
|
+
var DropdownMenuContent = React7.forwardRef(
|
|
4331
|
+
(_a, forwardedRef) => {
|
|
4332
|
+
var _b = _a, {
|
|
4333
|
+
children,
|
|
4334
|
+
className,
|
|
4335
|
+
side = "bottom",
|
|
4336
|
+
sideOffset = 8,
|
|
4337
|
+
align = "start"
|
|
4338
|
+
} = _b, props = __objRest(_b, [
|
|
4339
|
+
"children",
|
|
4340
|
+
"className",
|
|
4341
|
+
"side",
|
|
4342
|
+
"sideOffset",
|
|
4343
|
+
"align"
|
|
4344
|
+
]);
|
|
4345
|
+
return /* @__PURE__ */ jsx97(
|
|
4346
|
+
DropdownMenuPrimitive.Content,
|
|
4347
|
+
__spreadProps(__spreadValues({
|
|
4348
|
+
className: cn(
|
|
4349
|
+
"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",
|
|
4350
|
+
className
|
|
4351
|
+
),
|
|
4352
|
+
side,
|
|
4353
|
+
sideOffset,
|
|
4354
|
+
align
|
|
4355
|
+
}, props), {
|
|
4356
|
+
ref: forwardedRef,
|
|
4357
|
+
children
|
|
4358
|
+
})
|
|
4359
|
+
);
|
|
4360
|
+
}
|
|
4361
|
+
);
|
|
4362
|
+
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
|
|
4363
|
+
var DropdownMenuGroup = DropdownMenuPrimitive.Group;
|
|
4364
|
+
var DropdownMenuItem = React7.forwardRef(
|
|
4365
|
+
(_a, forwardedRef) => {
|
|
4366
|
+
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4367
|
+
const extraProps = {
|
|
4368
|
+
description,
|
|
4369
|
+
destructive,
|
|
4370
|
+
icon,
|
|
4371
|
+
className
|
|
4372
|
+
};
|
|
4373
|
+
return /* @__PURE__ */ jsx97(
|
|
4374
|
+
DropdownMenuPrimitive.Item,
|
|
4375
|
+
__spreadProps(__spreadValues({}, props), {
|
|
4376
|
+
ref: forwardedRef,
|
|
4377
|
+
className: "outline-none select-none group",
|
|
4378
|
+
children: /* @__PURE__ */ jsx97(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
4379
|
+
})
|
|
4380
|
+
);
|
|
4381
|
+
}
|
|
4382
|
+
);
|
|
4383
|
+
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
|
|
4384
|
+
var DropdownMenuLabel = React7.forwardRef((_a, forwardedRef) => {
|
|
4385
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4386
|
+
return /* @__PURE__ */ jsx97(
|
|
4387
|
+
DropdownMenuPrimitive.Label,
|
|
4388
|
+
__spreadProps(__spreadValues({
|
|
4389
|
+
className: cn(
|
|
4390
|
+
"mx-1 px-2 py-1.5 text-sm font-medium text-gray-1000",
|
|
4391
|
+
className
|
|
4392
|
+
)
|
|
4393
|
+
}, props), {
|
|
4394
|
+
ref: forwardedRef
|
|
4395
|
+
})
|
|
4396
|
+
);
|
|
4397
|
+
});
|
|
4398
|
+
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
|
|
4399
|
+
var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
|
|
4400
|
+
var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
|
|
4401
|
+
var DropdownMenuRadioItem = React7.forwardRef(
|
|
4402
|
+
(_a, forwardedRef) => {
|
|
4403
|
+
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4404
|
+
const extraProps = {
|
|
4405
|
+
description,
|
|
4406
|
+
destructive,
|
|
4407
|
+
icon,
|
|
4408
|
+
className
|
|
4409
|
+
};
|
|
4410
|
+
return /* @__PURE__ */ jsx97(
|
|
4411
|
+
DropdownMenuPrimitive.RadioItem,
|
|
4412
|
+
__spreadProps(__spreadValues({}, props), {
|
|
4413
|
+
ref: forwardedRef,
|
|
4414
|
+
className: "outline-none select-none group",
|
|
4415
|
+
children: /* @__PURE__ */ jsx97(DropdownMenuItemBase, __spreadProps(__spreadValues({}, extraProps), { children }))
|
|
4416
|
+
})
|
|
4417
|
+
);
|
|
4418
|
+
}
|
|
4419
|
+
);
|
|
4420
|
+
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
|
|
4421
|
+
var DropdownMenuSeparator = React7.forwardRef((_a, forwardedRef) => {
|
|
4422
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4423
|
+
return /* @__PURE__ */ jsx97(
|
|
4424
|
+
DropdownMenuPrimitive.Separator,
|
|
4425
|
+
__spreadProps(__spreadValues({
|
|
4426
|
+
className: cn("my-1 border-b border-gray-200", className)
|
|
4427
|
+
}, props), {
|
|
4428
|
+
ref: forwardedRef
|
|
4429
|
+
})
|
|
4430
|
+
);
|
|
4431
|
+
});
|
|
4432
|
+
DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName;
|
|
4433
|
+
var DropdownMenuSub = DropdownMenuPrimitive.Sub;
|
|
4434
|
+
var DropdownMenuSubContent = React7.forwardRef((_a, forwardedRef) => {
|
|
4435
|
+
var _b = _a, { children, className, sideOffset = 8 } = _b, props = __objRest(_b, ["children", "className", "sideOffset"]);
|
|
4436
|
+
return /* @__PURE__ */ jsx97(
|
|
4437
|
+
DropdownMenuPrimitive.SubContent,
|
|
4438
|
+
__spreadProps(__spreadValues({
|
|
4439
|
+
className: cn(
|
|
4440
|
+
"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",
|
|
4441
|
+
className
|
|
4442
|
+
),
|
|
4443
|
+
sideOffset
|
|
4444
|
+
}, props), {
|
|
4445
|
+
ref: forwardedRef,
|
|
4446
|
+
children
|
|
4447
|
+
})
|
|
4448
|
+
);
|
|
4449
|
+
});
|
|
4450
|
+
DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
|
|
4451
|
+
var DropdownMenuSubTrigger = React7.forwardRef(
|
|
4452
|
+
(_a, forwardedRef) => {
|
|
4453
|
+
var _b = _a, { className, children, icon, description, destructive } = _b, props = __objRest(_b, ["className", "children", "icon", "description", "destructive"]);
|
|
4454
|
+
const extraProps = {
|
|
4455
|
+
description,
|
|
4456
|
+
destructive,
|
|
4457
|
+
icon,
|
|
4458
|
+
className
|
|
4459
|
+
};
|
|
4460
|
+
return /* @__PURE__ */ jsx97(
|
|
4461
|
+
DropdownMenuPrimitive.SubTrigger,
|
|
4462
|
+
__spreadProps(__spreadValues({}, props), {
|
|
4463
|
+
ref: forwardedRef,
|
|
4464
|
+
className: "outline-none select-none group",
|
|
4465
|
+
children: /* @__PURE__ */ jsx97(DropdownMenuItemBase, __spreadProps(__spreadValues({ hasSubNav: true }, extraProps), { children }))
|
|
4466
|
+
})
|
|
4467
|
+
);
|
|
4468
|
+
}
|
|
4469
|
+
);
|
|
4470
|
+
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
|
|
4471
|
+
var DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
|
|
4472
|
+
|
|
4473
|
+
// src/components/Form/Form.tsx
|
|
4474
|
+
import * as React9 from "react";
|
|
4475
|
+
import { Slot as Slot2 } from "@radix-ui/react-slot";
|
|
4476
|
+
import {
|
|
4477
|
+
Controller,
|
|
4478
|
+
FormProvider,
|
|
4479
|
+
useFormContext
|
|
4480
|
+
} from "react-hook-form";
|
|
4481
|
+
|
|
4482
|
+
// src/components/Label/Label.tsx
|
|
4483
|
+
import * as React8 from "react";
|
|
4484
|
+
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
4485
|
+
import { jsx as jsx98 } from "react/jsx-runtime";
|
|
4486
|
+
var Label2 = React8.forwardRef((_a, ref) => {
|
|
4487
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4488
|
+
return /* @__PURE__ */ jsx98(
|
|
4489
|
+
LabelPrimitive.Root,
|
|
4490
|
+
__spreadValues({
|
|
4491
|
+
ref,
|
|
4492
|
+
className: cn(
|
|
4493
|
+
"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",
|
|
4494
|
+
className
|
|
4495
|
+
)
|
|
4496
|
+
}, props)
|
|
4497
|
+
);
|
|
4498
|
+
});
|
|
4499
|
+
Label2.displayName = LabelPrimitive.Root.displayName;
|
|
4500
|
+
|
|
4501
|
+
// src/components/Form/Form.tsx
|
|
4502
|
+
import { jsx as jsx99 } from "react/jsx-runtime";
|
|
4503
|
+
var Form = FormProvider;
|
|
4504
|
+
var FormFieldContext = React9.createContext(
|
|
4505
|
+
{}
|
|
4506
|
+
);
|
|
4507
|
+
var FormField = (_a) => {
|
|
4508
|
+
var props = __objRest(_a, []);
|
|
4509
|
+
return /* @__PURE__ */ jsx99(
|
|
4510
|
+
FormFieldContext.Provider,
|
|
4511
|
+
{
|
|
4512
|
+
value: { name: props.name, isDisabled: props.disabled },
|
|
4513
|
+
children: /* @__PURE__ */ jsx99(Controller, __spreadValues({}, props))
|
|
4514
|
+
}
|
|
4515
|
+
);
|
|
4516
|
+
};
|
|
4517
|
+
var useFormField = () => {
|
|
4518
|
+
const fieldContext = React9.useContext(FormFieldContext);
|
|
4519
|
+
const itemContext = React9.useContext(FormItemContext);
|
|
4520
|
+
const { getFieldState, formState } = useFormContext();
|
|
4521
|
+
const fieldState = getFieldState(fieldContext.name, formState);
|
|
4522
|
+
if (!fieldContext) {
|
|
4523
|
+
throw new Error("useFormField should be used within <FormField>");
|
|
4524
|
+
}
|
|
4525
|
+
const { id } = itemContext;
|
|
4526
|
+
return __spreadValues({
|
|
4527
|
+
id,
|
|
4528
|
+
name: fieldContext.name,
|
|
4529
|
+
isDisabled: fieldContext.isDisabled,
|
|
4530
|
+
formItemId: `${id}-form-item`,
|
|
4531
|
+
formDescriptionId: `${id}-form-item-description`,
|
|
4532
|
+
formMessageId: `${id}-form-item-message`
|
|
4533
|
+
}, fieldState);
|
|
4534
|
+
};
|
|
4535
|
+
var FormItemContext = React9.createContext(
|
|
4536
|
+
{}
|
|
4537
|
+
);
|
|
4538
|
+
var FormItem = React9.forwardRef((_a, ref) => {
|
|
4539
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4540
|
+
const id = React9.useId();
|
|
4541
|
+
return /* @__PURE__ */ jsx99(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ jsx99(
|
|
4542
|
+
"div",
|
|
4543
|
+
__spreadValues({
|
|
4544
|
+
ref,
|
|
4545
|
+
className: cn("flex flex-col gap-1.5", className)
|
|
4546
|
+
}, props)
|
|
4547
|
+
) });
|
|
4548
|
+
});
|
|
4549
|
+
FormItem.displayName = "FormItem";
|
|
4550
|
+
var FormLabel = React9.forwardRef((_a, ref) => {
|
|
4551
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4552
|
+
const { isDisabled, formItemId } = useFormField();
|
|
4553
|
+
return /* @__PURE__ */ jsx99(
|
|
4554
|
+
Label2,
|
|
4555
|
+
__spreadValues({
|
|
4556
|
+
ref,
|
|
4557
|
+
className: cn(isDisabled && "opacity-50 cursor-not-allowed", className),
|
|
4558
|
+
htmlFor: formItemId
|
|
4559
|
+
}, props)
|
|
4560
|
+
);
|
|
4561
|
+
});
|
|
4562
|
+
FormLabel.displayName = "FormLabel";
|
|
4563
|
+
var FormControl = React9.forwardRef((_a, ref) => {
|
|
4564
|
+
var props = __objRest(_a, []);
|
|
4565
|
+
const { error, isDisabled, formItemId, formDescriptionId, formMessageId } = useFormField();
|
|
4566
|
+
return /* @__PURE__ */ jsx99(
|
|
4567
|
+
Slot2,
|
|
4568
|
+
__spreadValues({
|
|
4569
|
+
ref,
|
|
4570
|
+
id: formItemId,
|
|
4571
|
+
"aria-describedby": !error ? `${formDescriptionId}` : `${formDescriptionId} ${formMessageId}`,
|
|
4572
|
+
"aria-invalid": !!error,
|
|
4573
|
+
"data-has-error": !!error,
|
|
4574
|
+
"data-is-disabled": isDisabled
|
|
4575
|
+
}, props)
|
|
4576
|
+
);
|
|
4577
|
+
});
|
|
4578
|
+
FormControl.displayName = "FormControl";
|
|
4579
|
+
var FormDescription = React9.forwardRef((_a, ref) => {
|
|
4580
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4581
|
+
const { formDescriptionId, isDisabled } = useFormField();
|
|
4582
|
+
return /* @__PURE__ */ jsx99(
|
|
4583
|
+
"p",
|
|
4584
|
+
__spreadValues({
|
|
4585
|
+
ref,
|
|
4586
|
+
id: formDescriptionId,
|
|
4587
|
+
className: cn(
|
|
4588
|
+
"text-sm text-gray-700",
|
|
4589
|
+
{ "opacity-50 cursor-not-allowed": isDisabled },
|
|
4590
|
+
className
|
|
4591
|
+
)
|
|
4592
|
+
}, props)
|
|
4593
|
+
);
|
|
4594
|
+
});
|
|
4595
|
+
FormDescription.displayName = "FormDescription";
|
|
4596
|
+
var FormMessage = React9.forwardRef((_a, ref) => {
|
|
4597
|
+
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4598
|
+
const { error, isDisabled, formMessageId } = useFormField();
|
|
4599
|
+
const body = error ? String(error == null ? void 0 : error.message) : children;
|
|
4600
|
+
const textColorClassName = error ? "text-red-700" : "text-gray-700";
|
|
4601
|
+
return /* @__PURE__ */ jsx99(
|
|
4602
|
+
"p",
|
|
4603
|
+
__spreadProps(__spreadValues({
|
|
4604
|
+
ref,
|
|
4605
|
+
id: formMessageId,
|
|
4606
|
+
className: cn(
|
|
4607
|
+
"text-sm",
|
|
4608
|
+
textColorClassName,
|
|
4609
|
+
{ "opacity-50 cursor-not-allowed": isDisabled },
|
|
4610
|
+
className
|
|
4611
|
+
)
|
|
4612
|
+
}, props), {
|
|
4613
|
+
children: body
|
|
4614
|
+
})
|
|
4615
|
+
);
|
|
4616
|
+
});
|
|
4617
|
+
FormMessage.displayName = "FormMessage";
|
|
4618
|
+
|
|
4619
|
+
// src/components/Input/Input.tsx
|
|
4620
|
+
import * as React10 from "react";
|
|
4621
|
+
import { Slot as Slot3 } from "@radix-ui/react-slot";
|
|
4622
|
+
import { jsx as jsx100, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4623
|
+
var Input = React10.forwardRef(
|
|
4624
|
+
(_a, ref) => {
|
|
4625
|
+
var _b = _a, {
|
|
4626
|
+
className,
|
|
4627
|
+
type,
|
|
4628
|
+
button,
|
|
4629
|
+
disabled,
|
|
4630
|
+
prefixEnchancer,
|
|
4631
|
+
suffixEnchancer
|
|
4632
|
+
} = _b, props = __objRest(_b, [
|
|
4633
|
+
"className",
|
|
4634
|
+
"type",
|
|
4635
|
+
"button",
|
|
4636
|
+
"disabled",
|
|
4637
|
+
"prefixEnchancer",
|
|
4638
|
+
"suffixEnchancer"
|
|
4639
|
+
]);
|
|
4640
|
+
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
4641
|
+
return /* @__PURE__ */ jsxs70("div", { className: "flex gap-2", children: [
|
|
4642
|
+
/* @__PURE__ */ jsxs70(
|
|
4643
|
+
"div",
|
|
4644
|
+
{
|
|
4645
|
+
className: cn(
|
|
4646
|
+
"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]",
|
|
4647
|
+
{ "cursor-not-allowed opacity-50": isDisabled },
|
|
4648
|
+
{
|
|
4649
|
+
"border-red-700 focus-within:border-gray-200 focus-within:outline-red-700": !!props["data-has-error"]
|
|
4650
|
+
},
|
|
4651
|
+
className
|
|
4652
|
+
),
|
|
4653
|
+
children: [
|
|
4654
|
+
prefixEnchancer && /* @__PURE__ */ jsx100(
|
|
4655
|
+
Slot3,
|
|
4656
|
+
{
|
|
4657
|
+
className: cn(
|
|
4658
|
+
"text-sm border-gray-200 text-gray-700 border-r py-2 px-3 font-normal",
|
|
4659
|
+
{ "opacity-50": isDisabled }
|
|
4660
|
+
),
|
|
4661
|
+
children: prefixEnchancer
|
|
4662
|
+
}
|
|
4663
|
+
),
|
|
4664
|
+
/* @__PURE__ */ jsx100(
|
|
4665
|
+
"input",
|
|
4666
|
+
__spreadProps(__spreadValues({}, props), {
|
|
4667
|
+
disabled: isDisabled,
|
|
4668
|
+
className: "w-full px-3 py-2 text-sm bg-transparent outline-none text-gray-1000 placeholder:text-gray-700 disabled:cursor-not-allowed",
|
|
4669
|
+
type,
|
|
4670
|
+
ref
|
|
4671
|
+
})
|
|
4672
|
+
),
|
|
4673
|
+
suffixEnchancer && /* @__PURE__ */ jsx100(
|
|
4674
|
+
Slot3,
|
|
4675
|
+
{
|
|
4676
|
+
className: cn(
|
|
4677
|
+
"text-sm border-gray-200 text-gray-700 border-l py-2 px-3 font-normal",
|
|
4678
|
+
{ "opacity-50": isDisabled }
|
|
4679
|
+
),
|
|
4680
|
+
children: suffixEnchancer
|
|
4681
|
+
}
|
|
4682
|
+
)
|
|
4683
|
+
]
|
|
4684
|
+
}
|
|
4685
|
+
),
|
|
4686
|
+
button && React10.cloneElement(button, {
|
|
4687
|
+
size: "sm",
|
|
4688
|
+
disabled: isDisabled,
|
|
4689
|
+
className: cn("flex-shrink-0", button.props.className)
|
|
4690
|
+
})
|
|
4691
|
+
] });
|
|
4692
|
+
}
|
|
4693
|
+
);
|
|
4694
|
+
Input.displayName = "Input";
|
|
4695
|
+
|
|
3870
4696
|
// src/components/Popover/Popover.tsx
|
|
3871
|
-
import * as
|
|
4697
|
+
import * as React11 from "react";
|
|
3872
4698
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
3873
|
-
import { jsx as
|
|
4699
|
+
import { jsx as jsx101 } from "react/jsx-runtime";
|
|
3874
4700
|
var Popover = PopoverPrimitive.Root;
|
|
3875
4701
|
var PopoverTrigger = PopoverPrimitive.Trigger;
|
|
3876
|
-
var PopoverContent =
|
|
4702
|
+
var PopoverContent = React11.forwardRef((_a, ref) => {
|
|
3877
4703
|
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
3878
|
-
return /* @__PURE__ */
|
|
4704
|
+
return /* @__PURE__ */ jsx101(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx101(
|
|
3879
4705
|
PopoverPrimitive.Content,
|
|
3880
4706
|
__spreadValues({
|
|
3881
4707
|
ref,
|
|
@@ -3890,13 +4716,112 @@ var PopoverContent = React6.forwardRef((_a, ref) => {
|
|
|
3890
4716
|
});
|
|
3891
4717
|
PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
3892
4718
|
|
|
4719
|
+
// src/components/Select/Select.tsx
|
|
4720
|
+
import * as React12 from "react";
|
|
4721
|
+
import * as SelectPrimitive from "@radix-ui/react-select";
|
|
4722
|
+
import { jsx as jsx102, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4723
|
+
var Select = SelectPrimitive.Root;
|
|
4724
|
+
var SelectGroup = SelectPrimitive.Group;
|
|
4725
|
+
var SelectValue = SelectPrimitive.Value;
|
|
4726
|
+
var SelectTrigger = React12.forwardRef((_a, ref) => {
|
|
4727
|
+
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4728
|
+
const isDisabled = props["data-is-disabled"];
|
|
4729
|
+
return /* @__PURE__ */ jsxs71(
|
|
4730
|
+
SelectPrimitive.Trigger,
|
|
4731
|
+
__spreadProps(__spreadValues({
|
|
4732
|
+
ref,
|
|
4733
|
+
className: cn(
|
|
4734
|
+
"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",
|
|
4735
|
+
{ "cursor-not-allowed opacity-50": isDisabled },
|
|
4736
|
+
"disabled:cursor-not-allowed disabled:opacity-50",
|
|
4737
|
+
// when the disabled attr is set by reference
|
|
4738
|
+
{
|
|
4739
|
+
"border-red-700 focus-within:border-gray-200 focus-within:outline-red-700": !!props["data-has-error"]
|
|
4740
|
+
},
|
|
4741
|
+
className
|
|
4742
|
+
)
|
|
4743
|
+
}, props), {
|
|
4744
|
+
children: [
|
|
4745
|
+
children,
|
|
4746
|
+
/* @__PURE__ */ jsx102(SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ jsx102(ChevronSelectorVerticalIcon, { size: "16", className: "w-4 h-4 opacity-50" }) })
|
|
4747
|
+
]
|
|
4748
|
+
})
|
|
4749
|
+
);
|
|
4750
|
+
});
|
|
4751
|
+
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
|
|
4752
|
+
var SelectContent = React12.forwardRef((_a, ref) => {
|
|
4753
|
+
var _b = _a, { className, children, position = "popper" } = _b, props = __objRest(_b, ["className", "children", "position"]);
|
|
4754
|
+
return /* @__PURE__ */ jsx102(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsx102(
|
|
4755
|
+
SelectPrimitive.Content,
|
|
4756
|
+
__spreadProps(__spreadValues({
|
|
4757
|
+
ref,
|
|
4758
|
+
className: cn(
|
|
4759
|
+
"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",
|
|
4760
|
+
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",
|
|
4761
|
+
className
|
|
4762
|
+
),
|
|
4763
|
+
position
|
|
4764
|
+
}, props), {
|
|
4765
|
+
children: /* @__PURE__ */ jsx102(
|
|
4766
|
+
SelectPrimitive.Viewport,
|
|
4767
|
+
{
|
|
4768
|
+
className: cn(
|
|
4769
|
+
"p-1",
|
|
4770
|
+
position === "popper" && "h-[40px] w-full min-w-[250px]"
|
|
4771
|
+
),
|
|
4772
|
+
children
|
|
4773
|
+
}
|
|
4774
|
+
)
|
|
4775
|
+
})
|
|
4776
|
+
) });
|
|
4777
|
+
});
|
|
4778
|
+
SelectContent.displayName = SelectPrimitive.Content.displayName;
|
|
4779
|
+
var SelectLabel = React12.forwardRef((_a, ref) => {
|
|
4780
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4781
|
+
return /* @__PURE__ */ jsx102(
|
|
4782
|
+
SelectPrimitive.Label,
|
|
4783
|
+
__spreadValues({
|
|
4784
|
+
ref,
|
|
4785
|
+
className: cn("px-2 py-1.5 text-sm font-medium", className)
|
|
4786
|
+
}, props)
|
|
4787
|
+
);
|
|
4788
|
+
});
|
|
4789
|
+
SelectLabel.displayName = SelectPrimitive.Label.displayName;
|
|
4790
|
+
var SelectItem = React12.forwardRef((_a, ref) => {
|
|
4791
|
+
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
4792
|
+
return /* @__PURE__ */ jsx102(
|
|
4793
|
+
SelectPrimitive.Item,
|
|
4794
|
+
__spreadProps(__spreadValues({
|
|
4795
|
+
ref,
|
|
4796
|
+
className: cn(
|
|
4797
|
+
"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",
|
|
4798
|
+
className
|
|
4799
|
+
)
|
|
4800
|
+
}, props), {
|
|
4801
|
+
children: /* @__PURE__ */ jsx102(SelectPrimitive.ItemText, { children })
|
|
4802
|
+
})
|
|
4803
|
+
);
|
|
4804
|
+
});
|
|
4805
|
+
SelectItem.displayName = SelectPrimitive.Item.displayName;
|
|
4806
|
+
var SelectSeparator = React12.forwardRef((_a, ref) => {
|
|
4807
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
4808
|
+
return /* @__PURE__ */ jsx102(
|
|
4809
|
+
SelectPrimitive.Separator,
|
|
4810
|
+
__spreadValues({
|
|
4811
|
+
ref,
|
|
4812
|
+
className: cn("-mx-1 my-1 h-px bg-muted", className)
|
|
4813
|
+
}, props)
|
|
4814
|
+
);
|
|
4815
|
+
});
|
|
4816
|
+
SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
|
|
4817
|
+
|
|
3893
4818
|
// src/components/Switch/Switch.tsx
|
|
3894
|
-
import * as
|
|
4819
|
+
import * as React13 from "react";
|
|
3895
4820
|
import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
3896
|
-
import { jsx as
|
|
3897
|
-
var Switch =
|
|
4821
|
+
import { jsx as jsx103 } from "react/jsx-runtime";
|
|
4822
|
+
var Switch = React13.forwardRef((_a, ref) => {
|
|
3898
4823
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3899
|
-
return /* @__PURE__ */
|
|
4824
|
+
return /* @__PURE__ */ jsx103(
|
|
3900
4825
|
SwitchPrimitive.Root,
|
|
3901
4826
|
__spreadProps(__spreadValues({
|
|
3902
4827
|
className: cn(
|
|
@@ -3905,20 +4830,20 @@ var Switch = React7.forwardRef((_a, ref) => {
|
|
|
3905
4830
|
)
|
|
3906
4831
|
}, props), {
|
|
3907
4832
|
ref,
|
|
3908
|
-
children: /* @__PURE__ */
|
|
4833
|
+
children: /* @__PURE__ */ jsx103(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" })
|
|
3909
4834
|
})
|
|
3910
4835
|
);
|
|
3911
4836
|
});
|
|
3912
4837
|
Switch.displayName = SwitchPrimitive.Root.displayName;
|
|
3913
4838
|
|
|
3914
4839
|
// src/components/Tabs/Tabs.tsx
|
|
3915
|
-
import * as
|
|
4840
|
+
import * as React14 from "react";
|
|
3916
4841
|
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
3917
|
-
import { jsx as
|
|
4842
|
+
import { jsx as jsx104 } from "react/jsx-runtime";
|
|
3918
4843
|
var Tabs = TabsPrimitive.Root;
|
|
3919
|
-
var TabsList =
|
|
4844
|
+
var TabsList = React14.forwardRef((_a, ref) => {
|
|
3920
4845
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3921
|
-
return /* @__PURE__ */
|
|
4846
|
+
return /* @__PURE__ */ jsx104(
|
|
3922
4847
|
TabsPrimitive.List,
|
|
3923
4848
|
__spreadValues({
|
|
3924
4849
|
ref,
|
|
@@ -3930,9 +4855,9 @@ var TabsList = React8.forwardRef((_a, ref) => {
|
|
|
3930
4855
|
);
|
|
3931
4856
|
});
|
|
3932
4857
|
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
3933
|
-
var TabsTrigger =
|
|
4858
|
+
var TabsTrigger = React14.forwardRef((_a, ref) => {
|
|
3934
4859
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3935
|
-
return /* @__PURE__ */
|
|
4860
|
+
return /* @__PURE__ */ jsx104(
|
|
3936
4861
|
TabsPrimitive.Trigger,
|
|
3937
4862
|
__spreadValues({
|
|
3938
4863
|
ref,
|
|
@@ -3947,9 +4872,9 @@ var TabsTrigger = React8.forwardRef((_a, ref) => {
|
|
|
3947
4872
|
);
|
|
3948
4873
|
});
|
|
3949
4874
|
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
3950
|
-
var TabsContent =
|
|
4875
|
+
var TabsContent = React14.forwardRef((_a, ref) => {
|
|
3951
4876
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3952
|
-
return /* @__PURE__ */
|
|
4877
|
+
return /* @__PURE__ */ jsx104(
|
|
3953
4878
|
TabsPrimitive.Content,
|
|
3954
4879
|
__spreadValues({
|
|
3955
4880
|
ref,
|
|
@@ -3961,6 +4886,68 @@ var TabsContent = React8.forwardRef((_a, ref) => {
|
|
|
3961
4886
|
);
|
|
3962
4887
|
});
|
|
3963
4888
|
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
4889
|
+
|
|
4890
|
+
// src/components/Textarea/Textarea.tsx
|
|
4891
|
+
import * as React15 from "react";
|
|
4892
|
+
import { jsx as jsx105 } from "react/jsx-runtime";
|
|
4893
|
+
var Textarea = React15.forwardRef(
|
|
4894
|
+
(_a, ref) => {
|
|
4895
|
+
var _b = _a, { className, disabled } = _b, props = __objRest(_b, ["className", "disabled"]);
|
|
4896
|
+
const isDisabled = !!props["data-is-disabled"] || disabled;
|
|
4897
|
+
return /* @__PURE__ */ jsx105("div", { className: "flex gap-2", children: /* @__PURE__ */ jsx105(
|
|
4898
|
+
"div",
|
|
4899
|
+
{
|
|
4900
|
+
className: cn(
|
|
4901
|
+
"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]",
|
|
4902
|
+
{ "cursor-not-allowed opacity-50": isDisabled },
|
|
4903
|
+
{
|
|
4904
|
+
"border-red-700 focus-within:border-gray-200 focus-within:outline-red-700": !!props["data-has-error"]
|
|
4905
|
+
},
|
|
4906
|
+
className
|
|
4907
|
+
),
|
|
4908
|
+
children: /* @__PURE__ */ jsx105(
|
|
4909
|
+
"textarea",
|
|
4910
|
+
__spreadProps(__spreadValues({}, props), {
|
|
4911
|
+
disabled: isDisabled,
|
|
4912
|
+
className: "w-full px-3 py-2 text-sm bg-transparent outline-none text-gray-1000 placeholder:text-gray-700 disabled:cursor-not-allowed",
|
|
4913
|
+
ref
|
|
4914
|
+
})
|
|
4915
|
+
)
|
|
4916
|
+
}
|
|
4917
|
+
) });
|
|
4918
|
+
}
|
|
4919
|
+
);
|
|
4920
|
+
Textarea.displayName = "Textarea";
|
|
4921
|
+
|
|
4922
|
+
// src/components/Tooltip/Tooltip.tsx
|
|
4923
|
+
import * as React16 from "react";
|
|
4924
|
+
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
4925
|
+
import { jsx as jsx106 } from "react/jsx-runtime";
|
|
4926
|
+
var TooltipProvider = (_a) => {
|
|
4927
|
+
var _b = _a, {
|
|
4928
|
+
delayDuration = 0
|
|
4929
|
+
} = _b, props = __objRest(_b, [
|
|
4930
|
+
"delayDuration"
|
|
4931
|
+
]);
|
|
4932
|
+
return /* @__PURE__ */ jsx106(TooltipPrimitive.Provider, __spreadValues({ delayDuration }, props));
|
|
4933
|
+
};
|
|
4934
|
+
var Tooltip = TooltipPrimitive.Root;
|
|
4935
|
+
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
4936
|
+
var TooltipContent = React16.forwardRef((_a, ref) => {
|
|
4937
|
+
var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
|
|
4938
|
+
return /* @__PURE__ */ jsx106(
|
|
4939
|
+
TooltipPrimitive.Content,
|
|
4940
|
+
__spreadValues({
|
|
4941
|
+
ref,
|
|
4942
|
+
sideOffset,
|
|
4943
|
+
className: cn(
|
|
4944
|
+
"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",
|
|
4945
|
+
className
|
|
4946
|
+
)
|
|
4947
|
+
}, props)
|
|
4948
|
+
);
|
|
4949
|
+
});
|
|
4950
|
+
TooltipContent.displayName = TooltipPrimitive.Content.displayName;
|
|
3964
4951
|
export {
|
|
3965
4952
|
Accordion,
|
|
3966
4953
|
AccordionContent,
|
|
@@ -3977,10 +4964,12 @@ export {
|
|
|
3977
4964
|
AlertDialogHeader,
|
|
3978
4965
|
AlertDialogTitle,
|
|
3979
4966
|
AlertDialogTrigger,
|
|
4967
|
+
ArrowCircleUpIcon,
|
|
3980
4968
|
ArrowDownIcon,
|
|
3981
4969
|
ArrowLeftIcon,
|
|
3982
4970
|
ArrowRightIcon,
|
|
3983
4971
|
ArrowUpIcon,
|
|
4972
|
+
AttachmentIcon,
|
|
3984
4973
|
Badge,
|
|
3985
4974
|
BellIcon,
|
|
3986
4975
|
Button,
|
|
@@ -3991,9 +4980,12 @@ export {
|
|
|
3991
4980
|
CameraIcon,
|
|
3992
4981
|
CameraOffIcon,
|
|
3993
4982
|
CheckCircleIcon,
|
|
4983
|
+
CheckIcon,
|
|
4984
|
+
Checkbox,
|
|
3994
4985
|
ChevronDownIcon,
|
|
3995
4986
|
ChevronLeftIcon,
|
|
3996
4987
|
ChevronRightIcon,
|
|
4988
|
+
ChevronSelectorVerticalIcon,
|
|
3997
4989
|
ChevronUpIcon,
|
|
3998
4990
|
CopyIcon,
|
|
3999
4991
|
CursorClickIcon,
|
|
@@ -4004,18 +4996,45 @@ export {
|
|
|
4004
4996
|
DialogHeader,
|
|
4005
4997
|
DialogTitle,
|
|
4006
4998
|
DialogTrigger,
|
|
4999
|
+
DotsHorizontalIcon,
|
|
4007
5000
|
DownloadIcon,
|
|
5001
|
+
DropdownMenu,
|
|
5002
|
+
DropdownMenuCheckboxItem,
|
|
5003
|
+
DropdownMenuContent,
|
|
5004
|
+
DropdownMenuGroup,
|
|
5005
|
+
DropdownMenuItem,
|
|
5006
|
+
DropdownMenuLabel,
|
|
5007
|
+
DropdownMenuPortal,
|
|
5008
|
+
DropdownMenuRadioGroup,
|
|
5009
|
+
DropdownMenuRadioItem,
|
|
5010
|
+
DropdownMenuSeparator,
|
|
5011
|
+
DropdownMenuSub,
|
|
5012
|
+
DropdownMenuSubContent,
|
|
5013
|
+
DropdownMenuSubTrigger,
|
|
5014
|
+
DropdownMenuTrigger,
|
|
4008
5015
|
EditIcon,
|
|
4009
5016
|
ExpandIcon,
|
|
5017
|
+
FileQuestionIcon,
|
|
5018
|
+
FilterLinesIcon,
|
|
4010
5019
|
FlipBackwardIcon,
|
|
4011
5020
|
FlipForwardIcon,
|
|
5021
|
+
Form,
|
|
5022
|
+
FormControl,
|
|
5023
|
+
FormDescription,
|
|
5024
|
+
FormField,
|
|
5025
|
+
FormItem,
|
|
5026
|
+
FormLabel,
|
|
5027
|
+
FormMessage,
|
|
4012
5028
|
HelpCircleIcon,
|
|
4013
5029
|
HomeIcon,
|
|
4014
5030
|
ImageDownIcon,
|
|
4015
5031
|
ImageIcon,
|
|
4016
5032
|
ImageXIcon,
|
|
4017
5033
|
InfoCircleIcon,
|
|
5034
|
+
Input,
|
|
5035
|
+
Label2 as Label,
|
|
4018
5036
|
LightbulbIcon,
|
|
5037
|
+
LinkIcon,
|
|
4019
5038
|
LockIcon,
|
|
4020
5039
|
LogInIcon,
|
|
4021
5040
|
MagicWandIcon,
|
|
@@ -4029,6 +5048,7 @@ export {
|
|
|
4029
5048
|
MonitorIcon,
|
|
4030
5049
|
NotificationBoxIcon,
|
|
4031
5050
|
PauseCircleIcon,
|
|
5051
|
+
PhoneCallIcon,
|
|
4032
5052
|
PhoneIcon,
|
|
4033
5053
|
PieChartIcon,
|
|
4034
5054
|
PlayCircleIcon,
|
|
@@ -4046,8 +5066,17 @@ export {
|
|
|
4046
5066
|
RocketIcon,
|
|
4047
5067
|
SaveIcon,
|
|
4048
5068
|
SearchMdIcon,
|
|
5069
|
+
Select,
|
|
5070
|
+
SelectContent,
|
|
5071
|
+
SelectGroup,
|
|
5072
|
+
SelectItem,
|
|
5073
|
+
SelectLabel,
|
|
5074
|
+
SelectSeparator,
|
|
5075
|
+
SelectTrigger,
|
|
5076
|
+
SelectValue,
|
|
4049
5077
|
SendIcon,
|
|
4050
5078
|
SettingsIcon,
|
|
5079
|
+
ShareArrowIcon,
|
|
4051
5080
|
ShareIcon,
|
|
4052
5081
|
SkipBackIcon,
|
|
4053
5082
|
SkipForwardIcon,
|
|
@@ -4057,6 +5086,11 @@ export {
|
|
|
4057
5086
|
TabsContent,
|
|
4058
5087
|
TabsList,
|
|
4059
5088
|
TabsTrigger,
|
|
5089
|
+
Textarea,
|
|
5090
|
+
Tooltip,
|
|
5091
|
+
TooltipContent,
|
|
5092
|
+
TooltipProvider,
|
|
5093
|
+
TooltipTrigger,
|
|
4060
5094
|
TrashIcon,
|
|
4061
5095
|
TrendDownIcon,
|
|
4062
5096
|
TrendUpIcon,
|
|
@@ -4074,5 +5108,6 @@ export {
|
|
|
4074
5108
|
XCloseIcon,
|
|
4075
5109
|
buttonSizes,
|
|
4076
5110
|
buttonVariants,
|
|
4077
|
-
iconButtonSizes
|
|
5111
|
+
iconButtonSizes,
|
|
5112
|
+
useFormField
|
|
4078
5113
|
};
|