@liner-fe/prism 2.1.45 → 2.1.49
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/lib/index.cjs +68 -24
- package/lib/index.cjs.map +2 -2
- package/lib/index.mjs +436 -392
- package/lib/index.mjs.map +3 -3
- package/package.json +2 -25
package/lib/index.mjs
CHANGED
|
@@ -564,45 +564,89 @@ var ICExclamationmarkFill = /* @__PURE__ */ __name((props) => {
|
|
|
564
564
|
}, "ICExclamationmarkFill");
|
|
565
565
|
|
|
566
566
|
// src/assets/plus.tsx
|
|
567
|
-
import { jsx as jsx16
|
|
567
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
568
568
|
var ICPlus = /* @__PURE__ */ __name((props) => {
|
|
569
569
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
570
570
|
if (thick && fill) {
|
|
571
|
-
return /* @__PURE__ */
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
571
|
+
return /* @__PURE__ */ jsx16(
|
|
572
|
+
"svg",
|
|
573
|
+
{
|
|
574
|
+
...props,
|
|
575
|
+
width: size,
|
|
576
|
+
height: size,
|
|
577
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
578
|
+
viewBox: "0 0 48 48",
|
|
579
|
+
fill: "none",
|
|
580
|
+
children: /* @__PURE__ */ jsx16(
|
|
581
|
+
"path",
|
|
582
|
+
{
|
|
583
|
+
fillRule: "evenodd",
|
|
584
|
+
clipRule: "evenodd",
|
|
585
|
+
d: "M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44ZM21.9997 35.9991V25.9998H11.9997V21.9998H21.9997V11.9998H25.9997V21.9998H35.9991V25.9998H25.9997V35.9991H21.9997Z",
|
|
586
|
+
fill: color
|
|
587
|
+
}
|
|
588
|
+
)
|
|
589
|
+
}
|
|
590
|
+
);
|
|
583
591
|
}
|
|
584
592
|
if (fill) {
|
|
585
|
-
return /* @__PURE__ */
|
|
586
|
-
|
|
587
|
-
|
|
593
|
+
return /* @__PURE__ */ jsx16(
|
|
594
|
+
"svg",
|
|
595
|
+
{
|
|
596
|
+
...props,
|
|
597
|
+
width: size,
|
|
598
|
+
height: size,
|
|
599
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
600
|
+
viewBox: "0 0 48 48",
|
|
601
|
+
fill: "none",
|
|
602
|
+
children: /* @__PURE__ */ jsx16(
|
|
603
|
+
"path",
|
|
604
|
+
{
|
|
605
|
+
fillRule: "evenodd",
|
|
606
|
+
clipRule: "evenodd",
|
|
607
|
+
d: "M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44ZM22.4997 35.9991V25.4998H11.9997V22.4998H22.4997V11.9998H25.4997V22.4998H3 5.9991V25.4998H25.4997V35.9991H22.4997Z",
|
|
608
|
+
fill: color
|
|
609
|
+
}
|
|
610
|
+
)
|
|
611
|
+
}
|
|
612
|
+
);
|
|
613
|
+
}
|
|
614
|
+
if (thick) {
|
|
615
|
+
return /* @__PURE__ */ jsx16(
|
|
616
|
+
"svg",
|
|
617
|
+
{
|
|
618
|
+
...props,
|
|
619
|
+
width: size,
|
|
620
|
+
height: size,
|
|
621
|
+
viewBox: "0 0 48 48",
|
|
622
|
+
fill: "none",
|
|
623
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
624
|
+
children: /* @__PURE__ */ jsx16("path", { d: "M22 26V39.9993H26V26H40V22H26V8H22V22H8.00061V26H22Z", fill: color })
|
|
625
|
+
}
|
|
626
|
+
);
|
|
627
|
+
}
|
|
628
|
+
return /* @__PURE__ */ jsx16(
|
|
629
|
+
"svg",
|
|
630
|
+
{
|
|
631
|
+
...props,
|
|
632
|
+
width: size,
|
|
633
|
+
height: size,
|
|
634
|
+
viewBox: "0 0 48 48",
|
|
635
|
+
fill: "none",
|
|
636
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
637
|
+
children: /* @__PURE__ */ jsx16(
|
|
588
638
|
"path",
|
|
589
639
|
{
|
|
590
|
-
|
|
591
|
-
clipRule: "evenodd",
|
|
592
|
-
d: "M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44ZM22.4997 35.9991V25.4998H11.9997V22.4998H22.4997V11.9998H25.4997V22.4998H35.9991V25.4998H25.4997V35.9991H22.4997Z",
|
|
640
|
+
d: "M22.5 25.5V39.9993H25.5V25.5H40V22.5H25.5V8H22.5V22.5H8.00061V25.5H22.5Z",
|
|
593
641
|
fill: color
|
|
594
642
|
}
|
|
595
643
|
)
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
if (thick) {
|
|
599
|
-
return /* @__PURE__ */ jsx16("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx16("path", { d: "M22 26V39.9993H26V26H40V22H26V8H22V22H8.00061V26H22Z", fill: color }) });
|
|
600
|
-
}
|
|
601
|
-
return /* @__PURE__ */ jsx16("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx16("path", { d: "M22.5 25.5V39.9993H25.5V25.5H40V22.5H25.5V8H22.5V22.5H8.00061V25.5H22.5Z", fill: color }) });
|
|
644
|
+
}
|
|
645
|
+
);
|
|
602
646
|
}, "ICPlus");
|
|
603
647
|
|
|
604
648
|
// src/assets/minus.tsx
|
|
605
|
-
import { jsx as jsx17, jsxs as
|
|
649
|
+
import { jsx as jsx17, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
606
650
|
var ICMinus = /* @__PURE__ */ __name((props) => {
|
|
607
651
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
608
652
|
if (thick && fill) {
|
|
@@ -617,7 +661,7 @@ var ICMinus = /* @__PURE__ */ __name((props) => {
|
|
|
617
661
|
) });
|
|
618
662
|
}
|
|
619
663
|
if (fill) {
|
|
620
|
-
return /* @__PURE__ */
|
|
664
|
+
return /* @__PURE__ */ jsxs14("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
621
665
|
/* @__PURE__ */ jsx17("rect", { width: "48", height: "48", fill: "white" }),
|
|
622
666
|
/* @__PURE__ */ jsx17(
|
|
623
667
|
"path",
|
|
@@ -645,11 +689,11 @@ var ICMinus = /* @__PURE__ */ __name((props) => {
|
|
|
645
689
|
}, "ICMinus");
|
|
646
690
|
|
|
647
691
|
// src/assets/new-thread.tsx
|
|
648
|
-
import { jsx as jsx18, jsxs as
|
|
692
|
+
import { jsx as jsx18, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
649
693
|
var ICNewThread = /* @__PURE__ */ __name((props) => {
|
|
650
694
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
651
695
|
if (thick) {
|
|
652
|
-
return /* @__PURE__ */
|
|
696
|
+
return /* @__PURE__ */ jsxs15("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
653
697
|
/* @__PURE__ */ jsx18(
|
|
654
698
|
"path",
|
|
655
699
|
{
|
|
@@ -668,7 +712,7 @@ var ICNewThread = /* @__PURE__ */ __name((props) => {
|
|
|
668
712
|
)
|
|
669
713
|
] });
|
|
670
714
|
}
|
|
671
|
-
return /* @__PURE__ */
|
|
715
|
+
return /* @__PURE__ */ jsxs15("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
672
716
|
/* @__PURE__ */ jsx18(
|
|
673
717
|
"path",
|
|
674
718
|
{
|
|
@@ -763,7 +807,7 @@ var ICGlobe = /* @__PURE__ */ __name((props) => {
|
|
|
763
807
|
}, "ICGlobe");
|
|
764
808
|
|
|
765
809
|
// src/assets/graduationcap.tsx
|
|
766
|
-
import { jsx as jsx22, jsxs as
|
|
810
|
+
import { jsx as jsx22, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
767
811
|
var ICGraduationcap = /* @__PURE__ */ __name((props) => {
|
|
768
812
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
769
813
|
if (thick) {
|
|
@@ -778,7 +822,7 @@ var ICGraduationcap = /* @__PURE__ */ __name((props) => {
|
|
|
778
822
|
) });
|
|
779
823
|
}
|
|
780
824
|
if (fill) {
|
|
781
|
-
return /* @__PURE__ */
|
|
825
|
+
return /* @__PURE__ */ jsxs16("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
782
826
|
/* @__PURE__ */ jsx22(
|
|
783
827
|
"path",
|
|
784
828
|
{
|
|
@@ -807,11 +851,11 @@ var ICGraduationcap = /* @__PURE__ */ __name((props) => {
|
|
|
807
851
|
}, "ICGraduationcap");
|
|
808
852
|
|
|
809
853
|
// src/assets/palette.tsx
|
|
810
|
-
import { jsx as jsx23, jsxs as
|
|
854
|
+
import { jsx as jsx23, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
811
855
|
var ICPalette = /* @__PURE__ */ __name((props) => {
|
|
812
856
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
813
857
|
if (thick) {
|
|
814
|
-
return /* @__PURE__ */
|
|
858
|
+
return /* @__PURE__ */ jsxs17("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
815
859
|
/* @__PURE__ */ jsx23(
|
|
816
860
|
"path",
|
|
817
861
|
{
|
|
@@ -851,7 +895,7 @@ var ICPalette = /* @__PURE__ */ __name((props) => {
|
|
|
851
895
|
)
|
|
852
896
|
] });
|
|
853
897
|
}
|
|
854
|
-
return /* @__PURE__ */
|
|
898
|
+
return /* @__PURE__ */ jsxs17("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
855
899
|
/* @__PURE__ */ jsx23(
|
|
856
900
|
"path",
|
|
857
901
|
{
|
|
@@ -893,11 +937,11 @@ var ICPalette = /* @__PURE__ */ __name((props) => {
|
|
|
893
937
|
}, "ICPalette");
|
|
894
938
|
|
|
895
939
|
// src/assets/download.tsx
|
|
896
|
-
import { jsx as jsx24, jsxs as
|
|
940
|
+
import { jsx as jsx24, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
897
941
|
var ICDownload = /* @__PURE__ */ __name((props) => {
|
|
898
942
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
899
943
|
if (thick) {
|
|
900
|
-
return /* @__PURE__ */
|
|
944
|
+
return /* @__PURE__ */ jsxs18("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
901
945
|
/* @__PURE__ */ jsx24(
|
|
902
946
|
"path",
|
|
903
947
|
{
|
|
@@ -908,7 +952,7 @@ var ICDownload = /* @__PURE__ */ __name((props) => {
|
|
|
908
952
|
/* @__PURE__ */ jsx24("path", { d: "M41 39H7V43H41V39Z", fill: color })
|
|
909
953
|
] });
|
|
910
954
|
}
|
|
911
|
-
return /* @__PURE__ */
|
|
955
|
+
return /* @__PURE__ */ jsxs18("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
912
956
|
/* @__PURE__ */ jsx24(
|
|
913
957
|
"path",
|
|
914
958
|
{
|
|
@@ -921,11 +965,11 @@ var ICDownload = /* @__PURE__ */ __name((props) => {
|
|
|
921
965
|
}, "ICDownload");
|
|
922
966
|
|
|
923
967
|
// src/assets/regenerate.tsx
|
|
924
|
-
import { jsx as jsx25, jsxs as
|
|
968
|
+
import { jsx as jsx25, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
925
969
|
var ICRegenerate = /* @__PURE__ */ __name((props) => {
|
|
926
970
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
927
971
|
if (thick) {
|
|
928
|
-
return /* @__PURE__ */
|
|
972
|
+
return /* @__PURE__ */ jsxs19("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
929
973
|
/* @__PURE__ */ jsx25(
|
|
930
974
|
"path",
|
|
931
975
|
{
|
|
@@ -942,7 +986,7 @@ var ICRegenerate = /* @__PURE__ */ __name((props) => {
|
|
|
942
986
|
)
|
|
943
987
|
] });
|
|
944
988
|
}
|
|
945
|
-
return /* @__PURE__ */
|
|
989
|
+
return /* @__PURE__ */ jsxs19("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
946
990
|
/* @__PURE__ */ jsx25(
|
|
947
991
|
"path",
|
|
948
992
|
{
|
|
@@ -961,11 +1005,11 @@ var ICRegenerate = /* @__PURE__ */ __name((props) => {
|
|
|
961
1005
|
}, "ICRegenerate");
|
|
962
1006
|
|
|
963
1007
|
// src/assets/credit.tsx
|
|
964
|
-
import { jsx as jsx26, jsxs as
|
|
1008
|
+
import { jsx as jsx26, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
965
1009
|
var ICCredit = /* @__PURE__ */ __name((props) => {
|
|
966
1010
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
967
1011
|
if (thick) {
|
|
968
|
-
return /* @__PURE__ */
|
|
1012
|
+
return /* @__PURE__ */ jsxs20("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
969
1013
|
/* @__PURE__ */ jsx26(
|
|
970
1014
|
"path",
|
|
971
1015
|
{
|
|
@@ -989,7 +1033,7 @@ var ICCredit = /* @__PURE__ */ __name((props) => {
|
|
|
989
1033
|
)
|
|
990
1034
|
] });
|
|
991
1035
|
}
|
|
992
|
-
return /* @__PURE__ */
|
|
1036
|
+
return /* @__PURE__ */ jsxs20("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
993
1037
|
/* @__PURE__ */ jsx26("path", { d: "M36.249 12.25V18.4996H39.249V12.25H45.5V9.25H39.249V3H36.249V9.25H30.0004V12.25H36.249Z", fill: color }),
|
|
994
1038
|
/* @__PURE__ */ jsx26(
|
|
995
1039
|
"path",
|
|
@@ -1009,11 +1053,11 @@ var ICCredit = /* @__PURE__ */ __name((props) => {
|
|
|
1009
1053
|
}, "ICCredit");
|
|
1010
1054
|
|
|
1011
1055
|
// src/assets/feedback.tsx
|
|
1012
|
-
import { jsx as jsx27, jsxs as
|
|
1056
|
+
import { jsx as jsx27, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1013
1057
|
var ICFeedback = /* @__PURE__ */ __name((props) => {
|
|
1014
1058
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1015
1059
|
if (thick) {
|
|
1016
|
-
return /* @__PURE__ */
|
|
1060
|
+
return /* @__PURE__ */ jsxs21("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1017
1061
|
/* @__PURE__ */ jsx27(
|
|
1018
1062
|
"path",
|
|
1019
1063
|
{
|
|
@@ -1032,7 +1076,7 @@ var ICFeedback = /* @__PURE__ */ __name((props) => {
|
|
|
1032
1076
|
)
|
|
1033
1077
|
] });
|
|
1034
1078
|
}
|
|
1035
|
-
return /* @__PURE__ */
|
|
1079
|
+
return /* @__PURE__ */ jsxs21("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1036
1080
|
/* @__PURE__ */ jsx27(
|
|
1037
1081
|
"path",
|
|
1038
1082
|
{
|
|
@@ -1053,11 +1097,11 @@ var ICFeedback = /* @__PURE__ */ __name((props) => {
|
|
|
1053
1097
|
}, "ICFeedback");
|
|
1054
1098
|
|
|
1055
1099
|
// src/assets/tune.tsx
|
|
1056
|
-
import { jsx as jsx28, jsxs as
|
|
1100
|
+
import { jsx as jsx28, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1057
1101
|
var ICTune = /* @__PURE__ */ __name((props) => {
|
|
1058
1102
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1059
1103
|
if (thick) {
|
|
1060
|
-
return /* @__PURE__ */
|
|
1104
|
+
return /* @__PURE__ */ jsxs22("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1061
1105
|
/* @__PURE__ */ jsx28("path", { d: "M35 9V5H31V17H35V13H41V9H35Z", fill: color }),
|
|
1062
1106
|
/* @__PURE__ */ jsx28("path", { d: "M7 9H27V13H7V9Z", fill: color }),
|
|
1063
1107
|
/* @__PURE__ */ jsx28("path", { d: "M18 18L18 30H14V26H7V22H14V18H18Z", fill: color }),
|
|
@@ -1066,7 +1110,7 @@ var ICTune = /* @__PURE__ */ __name((props) => {
|
|
|
1066
1110
|
/* @__PURE__ */ jsx28("path", { d: "M18 35H7V39H18V35Z", fill: color })
|
|
1067
1111
|
] });
|
|
1068
1112
|
}
|
|
1069
|
-
return /* @__PURE__ */
|
|
1113
|
+
return /* @__PURE__ */ jsxs22("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1070
1114
|
/* @__PURE__ */ jsx28("path", { d: "M34.5 9.5V5H31.5V17H34.5V12.5H41V9.5H34.5Z", fill: color }),
|
|
1071
1115
|
/* @__PURE__ */ jsx28("path", { d: "M7 9.5H27V12.5H7V9.5Z", fill: color }),
|
|
1072
1116
|
/* @__PURE__ */ jsx28("path", { d: "M17.5 18L17.5 30H14.5V25.5H7V22.5H14.5V18H17.5Z", fill: color }),
|
|
@@ -1187,17 +1231,17 @@ var ICArrowDown = /* @__PURE__ */ __name((props) => {
|
|
|
1187
1231
|
}, "ICArrowDown");
|
|
1188
1232
|
|
|
1189
1233
|
// src/assets/menu.tsx
|
|
1190
|
-
import { jsx as jsx33, jsxs as
|
|
1234
|
+
import { jsx as jsx33, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1191
1235
|
var ICMenu = /* @__PURE__ */ __name((props) => {
|
|
1192
1236
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1193
1237
|
if (thick) {
|
|
1194
|
-
return /* @__PURE__ */
|
|
1238
|
+
return /* @__PURE__ */ jsxs23("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1195
1239
|
/* @__PURE__ */ jsx33("path", { d: "M9 9H39V13H9V9Z", fill: color }),
|
|
1196
1240
|
/* @__PURE__ */ jsx33("path", { d: "M9 22H39V26H9V22Z", fill: color }),
|
|
1197
1241
|
/* @__PURE__ */ jsx33("path", { d: "M39 35H9V39H39V35Z", fill: color })
|
|
1198
1242
|
] });
|
|
1199
1243
|
}
|
|
1200
|
-
return /* @__PURE__ */
|
|
1244
|
+
return /* @__PURE__ */ jsxs23("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1201
1245
|
/* @__PURE__ */ jsx33("path", { d: "M9 9.5H39V12.5H9V9.5Z", fill: color }),
|
|
1202
1246
|
/* @__PURE__ */ jsx33("path", { d: "M9 22.5H39V25.5H9V22.5Z", fill: color }),
|
|
1203
1247
|
/* @__PURE__ */ jsx33("path", { d: "M39 35.5H9V38.5H39V35.5Z", fill: color })
|
|
@@ -1205,11 +1249,11 @@ var ICMenu = /* @__PURE__ */ __name((props) => {
|
|
|
1205
1249
|
}, "ICMenu");
|
|
1206
1250
|
|
|
1207
1251
|
// src/assets/document-warning.tsx
|
|
1208
|
-
import { jsx as jsx34, jsxs as
|
|
1252
|
+
import { jsx as jsx34, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1209
1253
|
var ICDocumentWarning = /* @__PURE__ */ __name((props) => {
|
|
1210
1254
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1211
1255
|
if (thick) {
|
|
1212
|
-
return /* @__PURE__ */
|
|
1256
|
+
return /* @__PURE__ */ jsxs24("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1213
1257
|
/* @__PURE__ */ jsx34(
|
|
1214
1258
|
"path",
|
|
1215
1259
|
{
|
|
@@ -1230,7 +1274,7 @@ var ICDocumentWarning = /* @__PURE__ */ __name((props) => {
|
|
|
1230
1274
|
)
|
|
1231
1275
|
] });
|
|
1232
1276
|
}
|
|
1233
|
-
return /* @__PURE__ */
|
|
1277
|
+
return /* @__PURE__ */ jsxs24("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1234
1278
|
/* @__PURE__ */ jsx34(
|
|
1235
1279
|
"path",
|
|
1236
1280
|
{
|
|
@@ -1297,11 +1341,11 @@ var ICArrowLeft = /* @__PURE__ */ __name((props) => {
|
|
|
1297
1341
|
}, "ICArrowLeft");
|
|
1298
1342
|
|
|
1299
1343
|
// src/assets/step.tsx
|
|
1300
|
-
import { jsx as jsx37, jsxs as
|
|
1344
|
+
import { jsx as jsx37, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1301
1345
|
var ICStep = /* @__PURE__ */ __name((props) => {
|
|
1302
1346
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1303
1347
|
if (thick) {
|
|
1304
|
-
return /* @__PURE__ */
|
|
1348
|
+
return /* @__PURE__ */ jsxs25("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1305
1349
|
/* @__PURE__ */ jsx37(
|
|
1306
1350
|
"path",
|
|
1307
1351
|
{
|
|
@@ -1322,7 +1366,7 @@ var ICStep = /* @__PURE__ */ __name((props) => {
|
|
|
1322
1366
|
)
|
|
1323
1367
|
] });
|
|
1324
1368
|
}
|
|
1325
|
-
return /* @__PURE__ */
|
|
1369
|
+
return /* @__PURE__ */ jsxs25("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1326
1370
|
/* @__PURE__ */ jsx37(
|
|
1327
1371
|
"path",
|
|
1328
1372
|
{
|
|
@@ -1367,11 +1411,11 @@ var ICArrowTurn = /* @__PURE__ */ __name((props) => {
|
|
|
1367
1411
|
}, "ICArrowTurn");
|
|
1368
1412
|
|
|
1369
1413
|
// src/assets/power.tsx
|
|
1370
|
-
import { jsx as jsx39, jsxs as
|
|
1414
|
+
import { jsx as jsx39, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
1371
1415
|
var ICPower = /* @__PURE__ */ __name((props) => {
|
|
1372
1416
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1373
1417
|
if (thick) {
|
|
1374
|
-
return /* @__PURE__ */
|
|
1418
|
+
return /* @__PURE__ */ jsxs26("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1375
1419
|
/* @__PURE__ */ jsx39("path", { d: "M26 24V6H22V24H26Z", fill: color }),
|
|
1376
1420
|
/* @__PURE__ */ jsx39(
|
|
1377
1421
|
"path",
|
|
@@ -1382,7 +1426,7 @@ var ICPower = /* @__PURE__ */ __name((props) => {
|
|
|
1382
1426
|
)
|
|
1383
1427
|
] });
|
|
1384
1428
|
}
|
|
1385
|
-
return /* @__PURE__ */
|
|
1429
|
+
return /* @__PURE__ */ jsxs26("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1386
1430
|
/* @__PURE__ */ jsx39("path", { d: "M25.5 24V6H22.5V24H25.5Z", fill: color }),
|
|
1387
1431
|
/* @__PURE__ */ jsx39(
|
|
1388
1432
|
"path",
|
|
@@ -1421,11 +1465,11 @@ var ICDesktop = /* @__PURE__ */ __name((props) => {
|
|
|
1421
1465
|
}, "ICDesktop");
|
|
1422
1466
|
|
|
1423
1467
|
// src/assets/desktop-on-cursor.tsx
|
|
1424
|
-
import { jsx as jsx41, jsxs as
|
|
1468
|
+
import { jsx as jsx41, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
1425
1469
|
var ICDesktopOnCursor = /* @__PURE__ */ __name((props) => {
|
|
1426
1470
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1427
1471
|
if (thick) {
|
|
1428
|
-
return /* @__PURE__ */
|
|
1472
|
+
return /* @__PURE__ */ jsxs27("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1429
1473
|
/* @__PURE__ */ jsx41(
|
|
1430
1474
|
"path",
|
|
1431
1475
|
{
|
|
@@ -1443,7 +1487,7 @@ var ICDesktopOnCursor = /* @__PURE__ */ __name((props) => {
|
|
|
1443
1487
|
)
|
|
1444
1488
|
] });
|
|
1445
1489
|
}
|
|
1446
|
-
return /* @__PURE__ */
|
|
1490
|
+
return /* @__PURE__ */ jsxs27("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1447
1491
|
/* @__PURE__ */ jsx41(
|
|
1448
1492
|
"path",
|
|
1449
1493
|
{
|
|
@@ -1489,11 +1533,11 @@ var ICViewList = /* @__PURE__ */ __name((props) => {
|
|
|
1489
1533
|
}, "ICViewList");
|
|
1490
1534
|
|
|
1491
1535
|
// src/assets/chart-bar.tsx
|
|
1492
|
-
import { jsx as jsx43, jsxs as
|
|
1536
|
+
import { jsx as jsx43, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
1493
1537
|
var ICChartBar = /* @__PURE__ */ __name((props) => {
|
|
1494
1538
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1495
1539
|
if (thick) {
|
|
1496
|
-
return /* @__PURE__ */
|
|
1540
|
+
return /* @__PURE__ */ jsxs28("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1497
1541
|
/* @__PURE__ */ jsx43(
|
|
1498
1542
|
"path",
|
|
1499
1543
|
{
|
|
@@ -1535,7 +1579,7 @@ var ICChartBar = /* @__PURE__ */ __name((props) => {
|
|
|
1535
1579
|
}
|
|
1536
1580
|
) });
|
|
1537
1581
|
}
|
|
1538
|
-
return /* @__PURE__ */
|
|
1582
|
+
return /* @__PURE__ */ jsxs28("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1539
1583
|
/* @__PURE__ */ jsx43(
|
|
1540
1584
|
"path",
|
|
1541
1585
|
{
|
|
@@ -1568,11 +1612,11 @@ var ICChartBar = /* @__PURE__ */ __name((props) => {
|
|
|
1568
1612
|
}, "ICChartBar");
|
|
1569
1613
|
|
|
1570
1614
|
// src/assets/chart-line-uptrend.tsx
|
|
1571
|
-
import { jsx as jsx44, jsxs as
|
|
1615
|
+
import { jsx as jsx44, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
1572
1616
|
var ICChartLineUptrend = /* @__PURE__ */ __name((props) => {
|
|
1573
1617
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1574
1618
|
if (thick) {
|
|
1575
|
-
return /* @__PURE__ */
|
|
1619
|
+
return /* @__PURE__ */ jsxs29("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1576
1620
|
/* @__PURE__ */ jsx44("path", { d: "M5 6V39C5 41.2091 6.79086 43 9 43H42V39H9V6H5Z", fill: color }),
|
|
1577
1621
|
/* @__PURE__ */ jsx44(
|
|
1578
1622
|
"path",
|
|
@@ -1594,7 +1638,7 @@ var ICChartLineUptrend = /* @__PURE__ */ __name((props) => {
|
|
|
1594
1638
|
}
|
|
1595
1639
|
) });
|
|
1596
1640
|
}
|
|
1597
|
-
return /* @__PURE__ */
|
|
1641
|
+
return /* @__PURE__ */ jsxs29("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1598
1642
|
/* @__PURE__ */ jsx44("path", { d: "M5.5 6V39C5.5 40.933 7.067 42.5 9 42.5H42V39.5H9C8.72386 39.5 8.5 39.2761 8.5 39V6H5.5Z", fill: color }),
|
|
1599
1643
|
/* @__PURE__ */ jsx44(
|
|
1600
1644
|
"path",
|
|
@@ -1642,11 +1686,11 @@ var ICFolder = /* @__PURE__ */ __name((props) => {
|
|
|
1642
1686
|
}, "ICFolder");
|
|
1643
1687
|
|
|
1644
1688
|
// src/assets/person.tsx
|
|
1645
|
-
import { jsx as jsx46, jsxs as
|
|
1689
|
+
import { jsx as jsx46, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
1646
1690
|
var ICPerson = /* @__PURE__ */ __name((props) => {
|
|
1647
1691
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1648
1692
|
if (thick) {
|
|
1649
|
-
return /* @__PURE__ */
|
|
1693
|
+
return /* @__PURE__ */ jsxs30("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1650
1694
|
/* @__PURE__ */ jsx46(
|
|
1651
1695
|
"path",
|
|
1652
1696
|
{
|
|
@@ -1668,7 +1712,7 @@ var ICPerson = /* @__PURE__ */ __name((props) => {
|
|
|
1668
1712
|
] });
|
|
1669
1713
|
}
|
|
1670
1714
|
if (fill) {
|
|
1671
|
-
return /* @__PURE__ */
|
|
1715
|
+
return /* @__PURE__ */ jsxs30("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1672
1716
|
/* @__PURE__ */ jsx46(
|
|
1673
1717
|
"path",
|
|
1674
1718
|
{
|
|
@@ -1685,7 +1729,7 @@ var ICPerson = /* @__PURE__ */ __name((props) => {
|
|
|
1685
1729
|
)
|
|
1686
1730
|
] });
|
|
1687
1731
|
}
|
|
1688
|
-
return /* @__PURE__ */
|
|
1732
|
+
return /* @__PURE__ */ jsxs30("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1689
1733
|
/* @__PURE__ */ jsx46(
|
|
1690
1734
|
"path",
|
|
1691
1735
|
{
|
|
@@ -1708,11 +1752,11 @@ var ICPerson = /* @__PURE__ */ __name((props) => {
|
|
|
1708
1752
|
}, "ICPerson");
|
|
1709
1753
|
|
|
1710
1754
|
// src/assets/trash.tsx
|
|
1711
|
-
import { jsx as jsx47, jsxs as
|
|
1755
|
+
import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
1712
1756
|
var ICTrash = /* @__PURE__ */ __name((props) => {
|
|
1713
1757
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1714
1758
|
if (thick) {
|
|
1715
|
-
return /* @__PURE__ */
|
|
1759
|
+
return /* @__PURE__ */ jsxs31("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1716
1760
|
/* @__PURE__ */ jsx47("path", { d: "M22 18V37H18L18 18H22Z", fill: color }),
|
|
1717
1761
|
/* @__PURE__ */ jsx47("path", { d: "M30 37V18H26V37H30Z", fill: color }),
|
|
1718
1762
|
/* @__PURE__ */ jsx47(
|
|
@@ -1737,7 +1781,7 @@ var ICTrash = /* @__PURE__ */ __name((props) => {
|
|
|
1737
1781
|
}
|
|
1738
1782
|
) });
|
|
1739
1783
|
}
|
|
1740
|
-
return /* @__PURE__ */
|
|
1784
|
+
return /* @__PURE__ */ jsxs31("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1741
1785
|
/* @__PURE__ */ jsx47("path", { d: "M21.5 18.5L21.5 36.5H18.5L18.5 18.5H21.5Z", fill: color }),
|
|
1742
1786
|
/* @__PURE__ */ jsx47("path", { d: "M29.5 36.5V18.5H26.5V36.5H29.5Z", fill: color }),
|
|
1743
1787
|
/* @__PURE__ */ jsx47(
|
|
@@ -1753,7 +1797,7 @@ var ICTrash = /* @__PURE__ */ __name((props) => {
|
|
|
1753
1797
|
}, "ICTrash");
|
|
1754
1798
|
|
|
1755
1799
|
// src/assets/pencil.tsx
|
|
1756
|
-
import { jsx as jsx48, jsxs as
|
|
1800
|
+
import { jsx as jsx48, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
1757
1801
|
var ICPencil = /* @__PURE__ */ __name((props) => {
|
|
1758
1802
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1759
1803
|
if (thick) {
|
|
@@ -1768,7 +1812,7 @@ var ICPencil = /* @__PURE__ */ __name((props) => {
|
|
|
1768
1812
|
) });
|
|
1769
1813
|
}
|
|
1770
1814
|
if (fill) {
|
|
1771
|
-
return /* @__PURE__ */
|
|
1815
|
+
return /* @__PURE__ */ jsxs32("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1772
1816
|
/* @__PURE__ */ jsx48(
|
|
1773
1817
|
"path",
|
|
1774
1818
|
{
|
|
@@ -1797,7 +1841,7 @@ var ICPencil = /* @__PURE__ */ __name((props) => {
|
|
|
1797
1841
|
}, "ICPencil");
|
|
1798
1842
|
|
|
1799
1843
|
// src/assets/copy.tsx
|
|
1800
|
-
import { jsx as jsx49, jsxs as
|
|
1844
|
+
import { jsx as jsx49, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
1801
1845
|
var ICCopy = /* @__PURE__ */ __name((props) => {
|
|
1802
1846
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1803
1847
|
if (thick) {
|
|
@@ -1812,7 +1856,7 @@ var ICCopy = /* @__PURE__ */ __name((props) => {
|
|
|
1812
1856
|
) });
|
|
1813
1857
|
}
|
|
1814
1858
|
if (fill) {
|
|
1815
|
-
return /* @__PURE__ */
|
|
1859
|
+
return /* @__PURE__ */ jsxs33("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1816
1860
|
/* @__PURE__ */ jsx49(
|
|
1817
1861
|
"path",
|
|
1818
1862
|
{
|
|
@@ -1841,7 +1885,7 @@ var ICCopy = /* @__PURE__ */ __name((props) => {
|
|
|
1841
1885
|
}, "ICCopy");
|
|
1842
1886
|
|
|
1843
1887
|
// src/assets/book.tsx
|
|
1844
|
-
import { jsx as jsx50, jsxs as
|
|
1888
|
+
import { jsx as jsx50, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
1845
1889
|
var ICBook = /* @__PURE__ */ __name((props) => {
|
|
1846
1890
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1847
1891
|
if (thick) {
|
|
@@ -1856,7 +1900,7 @@ var ICBook = /* @__PURE__ */ __name((props) => {
|
|
|
1856
1900
|
) });
|
|
1857
1901
|
}
|
|
1858
1902
|
if (fill) {
|
|
1859
|
-
return /* @__PURE__ */
|
|
1903
|
+
return /* @__PURE__ */ jsxs34("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1860
1904
|
/* @__PURE__ */ jsx50(
|
|
1861
1905
|
"path",
|
|
1862
1906
|
{
|
|
@@ -1885,11 +1929,11 @@ var ICBook = /* @__PURE__ */ __name((props) => {
|
|
|
1885
1929
|
}, "ICBook");
|
|
1886
1930
|
|
|
1887
1931
|
// src/assets/description.tsx
|
|
1888
|
-
import { jsx as jsx51, jsxs as
|
|
1932
|
+
import { jsx as jsx51, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
1889
1933
|
var ICDescription = /* @__PURE__ */ __name((props) => {
|
|
1890
1934
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1891
1935
|
if (thick) {
|
|
1892
|
-
return /* @__PURE__ */
|
|
1936
|
+
return /* @__PURE__ */ jsxs35("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1893
1937
|
/* @__PURE__ */ jsx51("path", { d: "M20 22H16V18H20V22Z", fill: color }),
|
|
1894
1938
|
/* @__PURE__ */ jsx51("path", { d: "M32 29.5H16V25.5H32V29.5Z", fill: color }),
|
|
1895
1939
|
/* @__PURE__ */ jsx51("path", { d: "M16 37H32V33H16V37Z", fill: color }),
|
|
@@ -1915,7 +1959,7 @@ var ICDescription = /* @__PURE__ */ __name((props) => {
|
|
|
1915
1959
|
}
|
|
1916
1960
|
) });
|
|
1917
1961
|
}
|
|
1918
|
-
return /* @__PURE__ */
|
|
1962
|
+
return /* @__PURE__ */ jsxs35("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1919
1963
|
/* @__PURE__ */ jsx51("path", { d: "M20 21.5H16V18.5H20V21.5Z", fill: color }),
|
|
1920
1964
|
/* @__PURE__ */ jsx51("path", { d: "M32 29H16V26H32V29Z", fill: color }),
|
|
1921
1965
|
/* @__PURE__ */ jsx51("path", { d: "M16 36.5H32V33.5H16V36.5Z", fill: color }),
|
|
@@ -1967,11 +2011,11 @@ var ICBookmark = /* @__PURE__ */ __name((props) => {
|
|
|
1967
2011
|
}, "ICBookmark");
|
|
1968
2012
|
|
|
1969
2013
|
// src/assets/photo.tsx
|
|
1970
|
-
import { jsx as jsx53, jsxs as
|
|
2014
|
+
import { jsx as jsx53, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
1971
2015
|
var ICPhoto = /* @__PURE__ */ __name((props) => {
|
|
1972
2016
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1973
2017
|
if (thick) {
|
|
1974
|
-
return /* @__PURE__ */
|
|
2018
|
+
return /* @__PURE__ */ jsxs36("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1975
2019
|
/* @__PURE__ */ jsx53(
|
|
1976
2020
|
"path",
|
|
1977
2021
|
{
|
|
@@ -2001,7 +2045,7 @@ var ICPhoto = /* @__PURE__ */ __name((props) => {
|
|
|
2001
2045
|
}
|
|
2002
2046
|
) });
|
|
2003
2047
|
}
|
|
2004
|
-
return /* @__PURE__ */
|
|
2048
|
+
return /* @__PURE__ */ jsxs36("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2005
2049
|
/* @__PURE__ */ jsx53(
|
|
2006
2050
|
"path",
|
|
2007
2051
|
{
|
|
@@ -2022,11 +2066,11 @@ var ICPhoto = /* @__PURE__ */ __name((props) => {
|
|
|
2022
2066
|
}, "ICPhoto");
|
|
2023
2067
|
|
|
2024
2068
|
// src/assets/camera.tsx
|
|
2025
|
-
import { jsx as jsx54, jsxs as
|
|
2069
|
+
import { jsx as jsx54, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2026
2070
|
var ICCamera = /* @__PURE__ */ __name((props) => {
|
|
2027
2071
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2028
2072
|
if (thick) {
|
|
2029
|
-
return /* @__PURE__ */
|
|
2073
|
+
return /* @__PURE__ */ jsxs37("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2030
2074
|
/* @__PURE__ */ jsx54(
|
|
2031
2075
|
"path",
|
|
2032
2076
|
{
|
|
@@ -2058,7 +2102,7 @@ var ICCamera = /* @__PURE__ */ __name((props) => {
|
|
|
2058
2102
|
}
|
|
2059
2103
|
) });
|
|
2060
2104
|
}
|
|
2061
|
-
return /* @__PURE__ */
|
|
2105
|
+
return /* @__PURE__ */ jsxs37("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2062
2106
|
/* @__PURE__ */ jsx54(
|
|
2063
2107
|
"path",
|
|
2064
2108
|
{
|
|
@@ -2116,7 +2160,7 @@ var ICBolt = /* @__PURE__ */ __name((props) => {
|
|
|
2116
2160
|
}, "ICBolt");
|
|
2117
2161
|
|
|
2118
2162
|
// src/assets/question-message.tsx
|
|
2119
|
-
import { jsx as jsx56, jsxs as
|
|
2163
|
+
import { jsx as jsx56, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
2120
2164
|
var ICQuestionMessage = /* @__PURE__ */ __name((props) => {
|
|
2121
2165
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2122
2166
|
if (fill && thick) {
|
|
@@ -2131,7 +2175,7 @@ var ICQuestionMessage = /* @__PURE__ */ __name((props) => {
|
|
|
2131
2175
|
) });
|
|
2132
2176
|
}
|
|
2133
2177
|
if (thick) {
|
|
2134
|
-
return /* @__PURE__ */
|
|
2178
|
+
return /* @__PURE__ */ jsxs38("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2135
2179
|
/* @__PURE__ */ jsx56(
|
|
2136
2180
|
"path",
|
|
2137
2181
|
{
|
|
@@ -2168,7 +2212,7 @@ var ICQuestionMessage = /* @__PURE__ */ __name((props) => {
|
|
|
2168
2212
|
}
|
|
2169
2213
|
) });
|
|
2170
2214
|
}
|
|
2171
|
-
return /* @__PURE__ */
|
|
2215
|
+
return /* @__PURE__ */ jsxs38("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2172
2216
|
/* @__PURE__ */ jsx56(
|
|
2173
2217
|
"path",
|
|
2174
2218
|
{
|
|
@@ -2196,11 +2240,11 @@ var ICQuestionMessage = /* @__PURE__ */ __name((props) => {
|
|
|
2196
2240
|
}, "ICQuestionMessage");
|
|
2197
2241
|
|
|
2198
2242
|
// src/assets/books.tsx
|
|
2199
|
-
import { jsx as jsx57, jsxs as
|
|
2243
|
+
import { jsx as jsx57, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
2200
2244
|
var ICBooks = /* @__PURE__ */ __name((props) => {
|
|
2201
2245
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2202
2246
|
if (fill && thick) {
|
|
2203
|
-
return /* @__PURE__ */
|
|
2247
|
+
return /* @__PURE__ */ jsxs39("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2204
2248
|
/* @__PURE__ */ jsx57(
|
|
2205
2249
|
"path",
|
|
2206
2250
|
{
|
|
@@ -2231,7 +2275,7 @@ var ICBooks = /* @__PURE__ */ __name((props) => {
|
|
|
2231
2275
|
] });
|
|
2232
2276
|
}
|
|
2233
2277
|
if (thick) {
|
|
2234
|
-
return /* @__PURE__ */
|
|
2278
|
+
return /* @__PURE__ */ jsxs39("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2235
2279
|
/* @__PURE__ */ jsx57("path", { d: "M20.3906 24H17.6406V26H20.3906V24Z", fill: color }),
|
|
2236
2280
|
/* @__PURE__ */ jsx57("path", { d: "M20.3906 34H17.6406V36H20.3906V34Z", fill: color }),
|
|
2237
2281
|
/* @__PURE__ */ jsx57(
|
|
@@ -2246,7 +2290,7 @@ var ICBooks = /* @__PURE__ */ __name((props) => {
|
|
|
2246
2290
|
] });
|
|
2247
2291
|
}
|
|
2248
2292
|
if (fill) {
|
|
2249
|
-
return /* @__PURE__ */
|
|
2293
|
+
return /* @__PURE__ */ jsxs39("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2250
2294
|
/* @__PURE__ */ jsx57(
|
|
2251
2295
|
"path",
|
|
2252
2296
|
{
|
|
@@ -2272,7 +2316,7 @@ var ICBooks = /* @__PURE__ */ __name((props) => {
|
|
|
2272
2316
|
)
|
|
2273
2317
|
] });
|
|
2274
2318
|
}
|
|
2275
|
-
return /* @__PURE__ */
|
|
2319
|
+
return /* @__PURE__ */ jsxs39("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2276
2320
|
/* @__PURE__ */ jsx57("path", { d: "M17.4532 23.4649H21.2734V26.0117H17.4532V23.4649Z", fill: color }),
|
|
2277
2321
|
/* @__PURE__ */ jsx57("path", { d: "M21.2734 33.7266H17.4532V36.2734H21.2734V33.7266Z", fill: color }),
|
|
2278
2322
|
/* @__PURE__ */ jsx57(
|
|
@@ -2288,11 +2332,11 @@ var ICBooks = /* @__PURE__ */ __name((props) => {
|
|
|
2288
2332
|
}, "ICBooks");
|
|
2289
2333
|
|
|
2290
2334
|
// src/assets/balance.tsx
|
|
2291
|
-
import { jsx as jsx58, jsxs as
|
|
2335
|
+
import { jsx as jsx58, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
2292
2336
|
var ICBalance = /* @__PURE__ */ __name((props) => {
|
|
2293
2337
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2294
2338
|
if (fill && thick) {
|
|
2295
|
-
return /* @__PURE__ */
|
|
2339
|
+
return /* @__PURE__ */ jsxs40("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2296
2340
|
/* @__PURE__ */ jsx58(
|
|
2297
2341
|
"path",
|
|
2298
2342
|
{
|
|
@@ -2317,7 +2361,7 @@ var ICBalance = /* @__PURE__ */ __name((props) => {
|
|
|
2317
2361
|
] });
|
|
2318
2362
|
}
|
|
2319
2363
|
if (thick) {
|
|
2320
|
-
return /* @__PURE__ */
|
|
2364
|
+
return /* @__PURE__ */ jsxs40("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2321
2365
|
/* @__PURE__ */ jsx58(
|
|
2322
2366
|
"path",
|
|
2323
2367
|
{
|
|
@@ -2346,7 +2390,7 @@ var ICBalance = /* @__PURE__ */ __name((props) => {
|
|
|
2346
2390
|
] });
|
|
2347
2391
|
}
|
|
2348
2392
|
if (fill) {
|
|
2349
|
-
return /* @__PURE__ */
|
|
2393
|
+
return /* @__PURE__ */ jsxs40("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2350
2394
|
/* @__PURE__ */ jsx58(
|
|
2351
2395
|
"path",
|
|
2352
2396
|
{
|
|
@@ -2370,7 +2414,7 @@ var ICBalance = /* @__PURE__ */ __name((props) => {
|
|
|
2370
2414
|
)
|
|
2371
2415
|
] });
|
|
2372
2416
|
}
|
|
2373
|
-
return /* @__PURE__ */
|
|
2417
|
+
return /* @__PURE__ */ jsxs40("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2374
2418
|
/* @__PURE__ */ jsx58(
|
|
2375
2419
|
"path",
|
|
2376
2420
|
{
|
|
@@ -2400,7 +2444,7 @@ var ICBalance = /* @__PURE__ */ __name((props) => {
|
|
|
2400
2444
|
}, "ICBalance");
|
|
2401
2445
|
|
|
2402
2446
|
// src/assets/folder-add.tsx
|
|
2403
|
-
import { jsx as jsx59, jsxs as
|
|
2447
|
+
import { jsx as jsx59, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
2404
2448
|
var ICFolderAdd = /* @__PURE__ */ __name((props) => {
|
|
2405
2449
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2406
2450
|
if (fill && thick) {
|
|
@@ -2415,7 +2459,7 @@ var ICFolderAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2415
2459
|
) });
|
|
2416
2460
|
}
|
|
2417
2461
|
if (thick) {
|
|
2418
|
-
return /* @__PURE__ */
|
|
2462
|
+
return /* @__PURE__ */ jsxs41("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2419
2463
|
/* @__PURE__ */ jsx59("path", { d: "M22 23.5V17.9998H26V23.5H31.75V27.5H26V33.4998H22V27.5H16.25V23.5H22Z", fill: color }),
|
|
2420
2464
|
/* @__PURE__ */ jsx59(
|
|
2421
2465
|
"path",
|
|
@@ -2439,7 +2483,7 @@ var ICFolderAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2439
2483
|
}
|
|
2440
2484
|
) });
|
|
2441
2485
|
}
|
|
2442
|
-
return /* @__PURE__ */
|
|
2486
|
+
return /* @__PURE__ */ jsxs41("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2443
2487
|
/* @__PURE__ */ jsx59("path", { d: "M22.5 24V17.9998H25.5V24H31.75V27H25.5V33.4998H22.5V27H16.25V24H22.5Z", fill: color }),
|
|
2444
2488
|
/* @__PURE__ */ jsx59(
|
|
2445
2489
|
"path",
|
|
@@ -2454,11 +2498,11 @@ var ICFolderAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2454
2498
|
}, "ICFolderAdd");
|
|
2455
2499
|
|
|
2456
2500
|
// src/assets/document.tsx
|
|
2457
|
-
import { jsx as jsx60, jsxs as
|
|
2501
|
+
import { jsx as jsx60, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
2458
2502
|
var ICDocument = /* @__PURE__ */ __name((props) => {
|
|
2459
2503
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2460
2504
|
if (fill && thick) {
|
|
2461
|
-
return /* @__PURE__ */
|
|
2505
|
+
return /* @__PURE__ */ jsxs42("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2462
2506
|
/* @__PURE__ */ jsx60(
|
|
2463
2507
|
"path",
|
|
2464
2508
|
{
|
|
@@ -2481,7 +2525,7 @@ var ICDocument = /* @__PURE__ */ __name((props) => {
|
|
|
2481
2525
|
) });
|
|
2482
2526
|
}
|
|
2483
2527
|
if (fill) {
|
|
2484
|
-
return /* @__PURE__ */
|
|
2528
|
+
return /* @__PURE__ */ jsxs42("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2485
2529
|
/* @__PURE__ */ jsx60(
|
|
2486
2530
|
"path",
|
|
2487
2531
|
{
|
|
@@ -2510,11 +2554,11 @@ var ICDocument = /* @__PURE__ */ __name((props) => {
|
|
|
2510
2554
|
}, "ICDocument");
|
|
2511
2555
|
|
|
2512
2556
|
// src/assets/person-add.tsx
|
|
2513
|
-
import { jsx as jsx61, jsxs as
|
|
2557
|
+
import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
2514
2558
|
var ICPersonAdd = /* @__PURE__ */ __name((props) => {
|
|
2515
2559
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2516
2560
|
if (fill && thick) {
|
|
2517
|
-
return /* @__PURE__ */
|
|
2561
|
+
return /* @__PURE__ */ jsxs43("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2518
2562
|
/* @__PURE__ */ jsx61(
|
|
2519
2563
|
"path",
|
|
2520
2564
|
{
|
|
@@ -2533,7 +2577,7 @@ var ICPersonAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2533
2577
|
] });
|
|
2534
2578
|
}
|
|
2535
2579
|
if (thick) {
|
|
2536
|
-
return /* @__PURE__ */
|
|
2580
|
+
return /* @__PURE__ */ jsxs43("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2537
2581
|
/* @__PURE__ */ jsx61(
|
|
2538
2582
|
"path",
|
|
2539
2583
|
{
|
|
@@ -2554,7 +2598,7 @@ var ICPersonAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2554
2598
|
] });
|
|
2555
2599
|
}
|
|
2556
2600
|
if (fill) {
|
|
2557
|
-
return /* @__PURE__ */
|
|
2601
|
+
return /* @__PURE__ */ jsxs43("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2558
2602
|
/* @__PURE__ */ jsx61(
|
|
2559
2603
|
"path",
|
|
2560
2604
|
{
|
|
@@ -2578,7 +2622,7 @@ var ICPersonAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2578
2622
|
)
|
|
2579
2623
|
] });
|
|
2580
2624
|
}
|
|
2581
|
-
return /* @__PURE__ */
|
|
2625
|
+
return /* @__PURE__ */ jsxs43("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2582
2626
|
/* @__PURE__ */ jsx61(
|
|
2583
2627
|
"path",
|
|
2584
2628
|
{
|
|
@@ -2692,7 +2736,7 @@ var ICCheckMark = /* @__PURE__ */ __name((props) => {
|
|
|
2692
2736
|
}, "ICCheckMark");
|
|
2693
2737
|
|
|
2694
2738
|
// src/assets/exclamationmark.tsx
|
|
2695
|
-
import { jsx as jsx64, jsxs as
|
|
2739
|
+
import { jsx as jsx64, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
2696
2740
|
var ICExclamationmark = /* @__PURE__ */ __name((props) => {
|
|
2697
2741
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2698
2742
|
if (fill && thick) {
|
|
@@ -2707,7 +2751,7 @@ var ICExclamationmark = /* @__PURE__ */ __name((props) => {
|
|
|
2707
2751
|
) });
|
|
2708
2752
|
}
|
|
2709
2753
|
if (thick) {
|
|
2710
|
-
return /* @__PURE__ */
|
|
2754
|
+
return /* @__PURE__ */ jsxs44("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2711
2755
|
/* @__PURE__ */ jsx64("path", { d: "M22 10V29H26V10H22Z", fill: color }),
|
|
2712
2756
|
/* @__PURE__ */ jsx64(
|
|
2713
2757
|
"path",
|
|
@@ -2729,7 +2773,7 @@ var ICExclamationmark = /* @__PURE__ */ __name((props) => {
|
|
|
2729
2773
|
}
|
|
2730
2774
|
) });
|
|
2731
2775
|
}
|
|
2732
|
-
return /* @__PURE__ */
|
|
2776
|
+
return /* @__PURE__ */ jsxs44("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2733
2777
|
/* @__PURE__ */ jsx64("path", { d: "M22.5 10V29H25.5V10H22.5Z", fill: color }),
|
|
2734
2778
|
/* @__PURE__ */ jsx64(
|
|
2735
2779
|
"path",
|
|
@@ -2786,11 +2830,11 @@ var ICClose = /* @__PURE__ */ __name((props) => {
|
|
|
2786
2830
|
}, "ICClose");
|
|
2787
2831
|
|
|
2788
2832
|
// src/assets/lock.tsx
|
|
2789
|
-
import { jsx as jsx66, jsxs as
|
|
2833
|
+
import { jsx as jsx66, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
2790
2834
|
var ICLock = /* @__PURE__ */ __name((props) => {
|
|
2791
2835
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2792
2836
|
if (fill && thick) {
|
|
2793
|
-
return /* @__PURE__ */
|
|
2837
|
+
return /* @__PURE__ */ jsxs45("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2794
2838
|
/* @__PURE__ */ jsx66(
|
|
2795
2839
|
"path",
|
|
2796
2840
|
{
|
|
@@ -2810,7 +2854,7 @@ var ICLock = /* @__PURE__ */ __name((props) => {
|
|
|
2810
2854
|
] });
|
|
2811
2855
|
}
|
|
2812
2856
|
if (thick) {
|
|
2813
|
-
return /* @__PURE__ */
|
|
2857
|
+
return /* @__PURE__ */ jsxs45("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2814
2858
|
/* @__PURE__ */ jsx66(
|
|
2815
2859
|
"path",
|
|
2816
2860
|
{
|
|
@@ -2832,7 +2876,7 @@ var ICLock = /* @__PURE__ */ __name((props) => {
|
|
|
2832
2876
|
] });
|
|
2833
2877
|
}
|
|
2834
2878
|
if (fill) {
|
|
2835
|
-
return /* @__PURE__ */
|
|
2879
|
+
return /* @__PURE__ */ jsxs45("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2836
2880
|
/* @__PURE__ */ jsx66(
|
|
2837
2881
|
"path",
|
|
2838
2882
|
{
|
|
@@ -2851,7 +2895,7 @@ var ICLock = /* @__PURE__ */ __name((props) => {
|
|
|
2851
2895
|
)
|
|
2852
2896
|
] });
|
|
2853
2897
|
}
|
|
2854
|
-
return /* @__PURE__ */
|
|
2898
|
+
return /* @__PURE__ */ jsxs45("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2855
2899
|
/* @__PURE__ */ jsx66(
|
|
2856
2900
|
"path",
|
|
2857
2901
|
{
|
|
@@ -2874,11 +2918,11 @@ var ICLock = /* @__PURE__ */ __name((props) => {
|
|
|
2874
2918
|
}, "ICLock");
|
|
2875
2919
|
|
|
2876
2920
|
// src/assets/ai.tsx
|
|
2877
|
-
import { jsx as jsx67, jsxs as
|
|
2921
|
+
import { jsx as jsx67, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
2878
2922
|
var ICAi = /* @__PURE__ */ __name((props) => {
|
|
2879
2923
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2880
2924
|
if (fill && thick) {
|
|
2881
|
-
return /* @__PURE__ */
|
|
2925
|
+
return /* @__PURE__ */ jsxs46("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2882
2926
|
/* @__PURE__ */ jsx67(
|
|
2883
2927
|
"path",
|
|
2884
2928
|
{
|
|
@@ -2899,7 +2943,7 @@ var ICAi = /* @__PURE__ */ __name((props) => {
|
|
|
2899
2943
|
] });
|
|
2900
2944
|
}
|
|
2901
2945
|
if (thick) {
|
|
2902
|
-
return /* @__PURE__ */
|
|
2946
|
+
return /* @__PURE__ */ jsxs46("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2903
2947
|
/* @__PURE__ */ jsx67(
|
|
2904
2948
|
"path",
|
|
2905
2949
|
{
|
|
@@ -2927,7 +2971,7 @@ var ICAi = /* @__PURE__ */ __name((props) => {
|
|
|
2927
2971
|
] });
|
|
2928
2972
|
}
|
|
2929
2973
|
if (fill) {
|
|
2930
|
-
return /* @__PURE__ */
|
|
2974
|
+
return /* @__PURE__ */ jsxs46("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2931
2975
|
/* @__PURE__ */ jsx67(
|
|
2932
2976
|
"path",
|
|
2933
2977
|
{
|
|
@@ -2954,7 +2998,7 @@ var ICAi = /* @__PURE__ */ __name((props) => {
|
|
|
2954
2998
|
)
|
|
2955
2999
|
] });
|
|
2956
3000
|
}
|
|
2957
|
-
return /* @__PURE__ */
|
|
3001
|
+
return /* @__PURE__ */ jsxs46("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2958
3002
|
/* @__PURE__ */ jsx67(
|
|
2959
3003
|
"path",
|
|
2960
3004
|
{
|
|
@@ -2983,11 +3027,11 @@ var ICAi = /* @__PURE__ */ __name((props) => {
|
|
|
2983
3027
|
}, "ICAi");
|
|
2984
3028
|
|
|
2985
3029
|
// src/assets/stack.tsx
|
|
2986
|
-
import { jsx as jsx68, jsxs as
|
|
3030
|
+
import { jsx as jsx68, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
2987
3031
|
var ICStack = /* @__PURE__ */ __name((props) => {
|
|
2988
3032
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2989
3033
|
if (fill && thick) {
|
|
2990
|
-
return /* @__PURE__ */
|
|
3034
|
+
return /* @__PURE__ */ jsxs47("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2991
3035
|
/* @__PURE__ */ jsx68(
|
|
2992
3036
|
"path",
|
|
2993
3037
|
{
|
|
@@ -3012,7 +3056,7 @@ var ICStack = /* @__PURE__ */ __name((props) => {
|
|
|
3012
3056
|
] });
|
|
3013
3057
|
}
|
|
3014
3058
|
if (thick) {
|
|
3015
|
-
return /* @__PURE__ */
|
|
3059
|
+
return /* @__PURE__ */ jsxs47("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3016
3060
|
/* @__PURE__ */ jsx68(
|
|
3017
3061
|
"path",
|
|
3018
3062
|
{
|
|
@@ -3039,7 +3083,7 @@ var ICStack = /* @__PURE__ */ __name((props) => {
|
|
|
3039
3083
|
] });
|
|
3040
3084
|
}
|
|
3041
3085
|
if (fill) {
|
|
3042
|
-
return /* @__PURE__ */
|
|
3086
|
+
return /* @__PURE__ */ jsxs47("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3043
3087
|
/* @__PURE__ */ jsx68(
|
|
3044
3088
|
"path",
|
|
3045
3089
|
{
|
|
@@ -3063,7 +3107,7 @@ var ICStack = /* @__PURE__ */ __name((props) => {
|
|
|
3063
3107
|
)
|
|
3064
3108
|
] });
|
|
3065
3109
|
}
|
|
3066
|
-
return /* @__PURE__ */
|
|
3110
|
+
return /* @__PURE__ */ jsxs47("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3067
3111
|
/* @__PURE__ */ jsx68(
|
|
3068
3112
|
"path",
|
|
3069
3113
|
{
|
|
@@ -3091,7 +3135,7 @@ var ICStack = /* @__PURE__ */ __name((props) => {
|
|
|
3091
3135
|
}, "ICStack");
|
|
3092
3136
|
|
|
3093
3137
|
// src/assets/summarize.tsx
|
|
3094
|
-
import { jsx as jsx69, jsxs as
|
|
3138
|
+
import { jsx as jsx69, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
3095
3139
|
var ICSummarize = /* @__PURE__ */ __name((props) => {
|
|
3096
3140
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3097
3141
|
if (fill && thick) {
|
|
@@ -3106,7 +3150,7 @@ var ICSummarize = /* @__PURE__ */ __name((props) => {
|
|
|
3106
3150
|
) });
|
|
3107
3151
|
}
|
|
3108
3152
|
if (thick) {
|
|
3109
|
-
return /* @__PURE__ */
|
|
3153
|
+
return /* @__PURE__ */ jsxs48("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3110
3154
|
/* @__PURE__ */ jsx69(
|
|
3111
3155
|
"path",
|
|
3112
3156
|
{
|
|
@@ -3137,7 +3181,7 @@ var ICSummarize = /* @__PURE__ */ __name((props) => {
|
|
|
3137
3181
|
}
|
|
3138
3182
|
) });
|
|
3139
3183
|
}
|
|
3140
|
-
return /* @__PURE__ */
|
|
3184
|
+
return /* @__PURE__ */ jsxs48("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3141
3185
|
/* @__PURE__ */ jsx69(
|
|
3142
3186
|
"path",
|
|
3143
3187
|
{
|
|
@@ -3159,7 +3203,7 @@ var ICSummarize = /* @__PURE__ */ __name((props) => {
|
|
|
3159
3203
|
}, "ICSummarize");
|
|
3160
3204
|
|
|
3161
3205
|
// src/assets/memo.tsx
|
|
3162
|
-
import { jsx as jsx70, jsxs as
|
|
3206
|
+
import { jsx as jsx70, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
3163
3207
|
var ICMemo = /* @__PURE__ */ __name((props) => {
|
|
3164
3208
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3165
3209
|
if (fill && thick) {
|
|
@@ -3174,7 +3218,7 @@ var ICMemo = /* @__PURE__ */ __name((props) => {
|
|
|
3174
3218
|
) });
|
|
3175
3219
|
}
|
|
3176
3220
|
if (thick) {
|
|
3177
|
-
return /* @__PURE__ */
|
|
3221
|
+
return /* @__PURE__ */ jsxs49("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3178
3222
|
/* @__PURE__ */ jsx70("path", { d: "M33.6667 14.457H14.4568V18.457H33.6667V14.457Z", fill: color }),
|
|
3179
3223
|
/* @__PURE__ */ jsx70("path", { d: "M25.1111 22.0615H14.4568V26.0615H25.1111V22.0615Z", fill: color }),
|
|
3180
3224
|
/* @__PURE__ */ jsx70(
|
|
@@ -3199,7 +3243,7 @@ var ICMemo = /* @__PURE__ */ __name((props) => {
|
|
|
3199
3243
|
}
|
|
3200
3244
|
) });
|
|
3201
3245
|
}
|
|
3202
|
-
return /* @__PURE__ */
|
|
3246
|
+
return /* @__PURE__ */ jsxs49("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3203
3247
|
/* @__PURE__ */ jsx70("path", { d: "M33.1667 14.957H14.9568V17.957H33.1667V14.957Z", fill: color }),
|
|
3204
3248
|
/* @__PURE__ */ jsx70("path", { d: "M24.6111 22.5615H14.9568V25.5615H24.6111V22.5615Z", fill: color }),
|
|
3205
3249
|
/* @__PURE__ */ jsx70(
|
|
@@ -3215,11 +3259,11 @@ var ICMemo = /* @__PURE__ */ __name((props) => {
|
|
|
3215
3259
|
}, "ICMemo");
|
|
3216
3260
|
|
|
3217
3261
|
// src/assets/essay.tsx
|
|
3218
|
-
import { jsx as jsx71, jsxs as
|
|
3262
|
+
import { jsx as jsx71, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
3219
3263
|
var ICEssay = /* @__PURE__ */ __name((props) => {
|
|
3220
3264
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3221
3265
|
if (fill && thick) {
|
|
3222
|
-
return /* @__PURE__ */
|
|
3266
|
+
return /* @__PURE__ */ jsxs50("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3223
3267
|
/* @__PURE__ */ jsx71(
|
|
3224
3268
|
"path",
|
|
3225
3269
|
{
|
|
@@ -3238,7 +3282,7 @@ var ICEssay = /* @__PURE__ */ __name((props) => {
|
|
|
3238
3282
|
] });
|
|
3239
3283
|
}
|
|
3240
3284
|
if (thick) {
|
|
3241
|
-
return /* @__PURE__ */
|
|
3285
|
+
return /* @__PURE__ */ jsxs50("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3242
3286
|
/* @__PURE__ */ jsx71(
|
|
3243
3287
|
"path",
|
|
3244
3288
|
{
|
|
@@ -3252,7 +3296,7 @@ var ICEssay = /* @__PURE__ */ __name((props) => {
|
|
|
3252
3296
|
] });
|
|
3253
3297
|
}
|
|
3254
3298
|
if (fill) {
|
|
3255
|
-
return /* @__PURE__ */
|
|
3299
|
+
return /* @__PURE__ */ jsxs50("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3256
3300
|
/* @__PURE__ */ jsx71(
|
|
3257
3301
|
"path",
|
|
3258
3302
|
{
|
|
@@ -3270,7 +3314,7 @@ var ICEssay = /* @__PURE__ */ __name((props) => {
|
|
|
3270
3314
|
/* @__PURE__ */ jsx71("path", { d: "M41 39.5H7V42.5H41V39.5Z", fill: color })
|
|
3271
3315
|
] });
|
|
3272
3316
|
}
|
|
3273
|
-
return /* @__PURE__ */
|
|
3317
|
+
return /* @__PURE__ */ jsxs50("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3274
3318
|
/* @__PURE__ */ jsx71(
|
|
3275
3319
|
"path",
|
|
3276
3320
|
{
|
|
@@ -3285,11 +3329,11 @@ var ICEssay = /* @__PURE__ */ __name((props) => {
|
|
|
3285
3329
|
}, "ICEssay");
|
|
3286
3330
|
|
|
3287
3331
|
// src/assets/creditcard.tsx
|
|
3288
|
-
import { jsx as jsx72, jsxs as
|
|
3332
|
+
import { jsx as jsx72, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3289
3333
|
var ICCreditcard = /* @__PURE__ */ __name((props) => {
|
|
3290
3334
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3291
3335
|
if (fill && thick) {
|
|
3292
|
-
return /* @__PURE__ */
|
|
3336
|
+
return /* @__PURE__ */ jsxs51("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3293
3337
|
/* @__PURE__ */ jsx72("path", { d: "M6 9C4.89543 9 4 9.89543 4 11V17H44V11C44 9.89543 43.1046 9 42 9H6Z", fill: color }),
|
|
3294
3338
|
/* @__PURE__ */ jsx72(
|
|
3295
3339
|
"path",
|
|
@@ -3303,7 +3347,7 @@ var ICCreditcard = /* @__PURE__ */ __name((props) => {
|
|
|
3303
3347
|
] });
|
|
3304
3348
|
}
|
|
3305
3349
|
if (thick) {
|
|
3306
|
-
return /* @__PURE__ */
|
|
3350
|
+
return /* @__PURE__ */ jsxs51("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3307
3351
|
/* @__PURE__ */ jsx72("path", { d: "M18 27H11V32H18V27Z", fill: color }),
|
|
3308
3352
|
/* @__PURE__ */ jsx72(
|
|
3309
3353
|
"path",
|
|
@@ -3317,7 +3361,7 @@ var ICCreditcard = /* @__PURE__ */ __name((props) => {
|
|
|
3317
3361
|
] });
|
|
3318
3362
|
}
|
|
3319
3363
|
if (fill) {
|
|
3320
|
-
return /* @__PURE__ */
|
|
3364
|
+
return /* @__PURE__ */ jsxs51("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3321
3365
|
/* @__PURE__ */ jsx72("path", { d: "M6 9C4.89543 9 4 9.89543 4 11V17.5H44V11C44 9.89543 43.1046 9 42 9H6Z", fill: color }),
|
|
3322
3366
|
/* @__PURE__ */ jsx72(
|
|
3323
3367
|
"path",
|
|
@@ -3330,18 +3374,18 @@ var ICCreditcard = /* @__PURE__ */ __name((props) => {
|
|
|
3330
3374
|
)
|
|
3331
3375
|
] });
|
|
3332
3376
|
}
|
|
3333
|
-
return /* @__PURE__ */
|
|
3377
|
+
return /* @__PURE__ */ jsxs51("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3334
3378
|
/* @__PURE__ */ jsx72("path", { d: "M18 27H11V32H18V27Z", fill: color }),
|
|
3335
3379
|
/* @__PURE__ */ jsx72("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4 9V39H44V9H4ZM41 12H7V17H41V12ZM7 36V20H41V36H7Z", fill: color })
|
|
3336
3380
|
] });
|
|
3337
3381
|
}, "ICCreditcard");
|
|
3338
3382
|
|
|
3339
3383
|
// src/assets/speaker.tsx
|
|
3340
|
-
import { jsx as jsx73, jsxs as
|
|
3384
|
+
import { jsx as jsx73, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3341
3385
|
var ICSpeaker = /* @__PURE__ */ __name((props) => {
|
|
3342
3386
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3343
3387
|
if (fill && thick) {
|
|
3344
|
-
return /* @__PURE__ */
|
|
3388
|
+
return /* @__PURE__ */ jsxs52("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3345
3389
|
/* @__PURE__ */ jsx73(
|
|
3346
3390
|
"path",
|
|
3347
3391
|
{
|
|
@@ -3359,7 +3403,7 @@ var ICSpeaker = /* @__PURE__ */ __name((props) => {
|
|
|
3359
3403
|
] });
|
|
3360
3404
|
}
|
|
3361
3405
|
if (thick) {
|
|
3362
|
-
return /* @__PURE__ */
|
|
3406
|
+
return /* @__PURE__ */ jsxs52("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3363
3407
|
/* @__PURE__ */ jsx73(
|
|
3364
3408
|
"path",
|
|
3365
3409
|
{
|
|
@@ -3379,7 +3423,7 @@ var ICSpeaker = /* @__PURE__ */ __name((props) => {
|
|
|
3379
3423
|
] });
|
|
3380
3424
|
}
|
|
3381
3425
|
if (fill) {
|
|
3382
|
-
return /* @__PURE__ */
|
|
3426
|
+
return /* @__PURE__ */ jsxs52("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3383
3427
|
/* @__PURE__ */ jsx73(
|
|
3384
3428
|
"path",
|
|
3385
3429
|
{
|
|
@@ -3396,7 +3440,7 @@ var ICSpeaker = /* @__PURE__ */ __name((props) => {
|
|
|
3396
3440
|
)
|
|
3397
3441
|
] });
|
|
3398
3442
|
}
|
|
3399
|
-
return /* @__PURE__ */
|
|
3443
|
+
return /* @__PURE__ */ jsxs52("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3400
3444
|
/* @__PURE__ */ jsx73(
|
|
3401
3445
|
"path",
|
|
3402
3446
|
{
|
|
@@ -3417,11 +3461,11 @@ var ICSpeaker = /* @__PURE__ */ __name((props) => {
|
|
|
3417
3461
|
}, "ICSpeaker");
|
|
3418
3462
|
|
|
3419
3463
|
// src/assets/light.tsx
|
|
3420
|
-
import { jsx as jsx74, jsxs as
|
|
3464
|
+
import { jsx as jsx74, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3421
3465
|
var ICLight = /* @__PURE__ */ __name((props) => {
|
|
3422
3466
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3423
3467
|
if (fill && thick) {
|
|
3424
|
-
return /* @__PURE__ */
|
|
3468
|
+
return /* @__PURE__ */ jsxs53("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3425
3469
|
/* @__PURE__ */ jsx74(
|
|
3426
3470
|
"path",
|
|
3427
3471
|
{
|
|
@@ -3439,7 +3483,7 @@ var ICLight = /* @__PURE__ */ __name((props) => {
|
|
|
3439
3483
|
] });
|
|
3440
3484
|
}
|
|
3441
3485
|
if (thick) {
|
|
3442
|
-
return /* @__PURE__ */
|
|
3486
|
+
return /* @__PURE__ */ jsxs53("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3443
3487
|
/* @__PURE__ */ jsx74(
|
|
3444
3488
|
"path",
|
|
3445
3489
|
{
|
|
@@ -3459,7 +3503,7 @@ var ICLight = /* @__PURE__ */ __name((props) => {
|
|
|
3459
3503
|
] });
|
|
3460
3504
|
}
|
|
3461
3505
|
if (fill) {
|
|
3462
|
-
return /* @__PURE__ */
|
|
3506
|
+
return /* @__PURE__ */ jsxs53("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3463
3507
|
/* @__PURE__ */ jsx74(
|
|
3464
3508
|
"path",
|
|
3465
3509
|
{
|
|
@@ -3476,7 +3520,7 @@ var ICLight = /* @__PURE__ */ __name((props) => {
|
|
|
3476
3520
|
)
|
|
3477
3521
|
] });
|
|
3478
3522
|
}
|
|
3479
|
-
return /* @__PURE__ */
|
|
3523
|
+
return /* @__PURE__ */ jsxs53("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3480
3524
|
/* @__PURE__ */ jsx74(
|
|
3481
3525
|
"path",
|
|
3482
3526
|
{
|
|
@@ -3497,11 +3541,11 @@ var ICLight = /* @__PURE__ */ __name((props) => {
|
|
|
3497
3541
|
}, "ICLight");
|
|
3498
3542
|
|
|
3499
3543
|
// src/assets/document-add.tsx
|
|
3500
|
-
import { jsx as jsx75, jsxs as
|
|
3544
|
+
import { jsx as jsx75, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3501
3545
|
var ICDocumentAdd = /* @__PURE__ */ __name((props) => {
|
|
3502
3546
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3503
3547
|
if (fill && thick) {
|
|
3504
|
-
return /* @__PURE__ */
|
|
3548
|
+
return /* @__PURE__ */ jsxs54("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3505
3549
|
/* @__PURE__ */ jsx75(
|
|
3506
3550
|
"path",
|
|
3507
3551
|
{
|
|
@@ -3514,7 +3558,7 @@ var ICDocumentAdd = /* @__PURE__ */ __name((props) => {
|
|
|
3514
3558
|
] });
|
|
3515
3559
|
}
|
|
3516
3560
|
if (thick) {
|
|
3517
|
-
return /* @__PURE__ */
|
|
3561
|
+
return /* @__PURE__ */ jsxs54("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3518
3562
|
/* @__PURE__ */ jsx75(
|
|
3519
3563
|
"path",
|
|
3520
3564
|
{
|
|
@@ -3528,7 +3572,7 @@ var ICDocumentAdd = /* @__PURE__ */ __name((props) => {
|
|
|
3528
3572
|
] });
|
|
3529
3573
|
}
|
|
3530
3574
|
if (fill) {
|
|
3531
|
-
return /* @__PURE__ */
|
|
3575
|
+
return /* @__PURE__ */ jsxs54("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3532
3576
|
/* @__PURE__ */ jsx75(
|
|
3533
3577
|
"path",
|
|
3534
3578
|
{
|
|
@@ -3546,7 +3590,7 @@ var ICDocumentAdd = /* @__PURE__ */ __name((props) => {
|
|
|
3546
3590
|
/* @__PURE__ */ jsx75("path", { d: "M35.9996 43.9996V38H30V35H35.9996V29H38.9996V35H45V38H38.9996V43.9996H35.9996Z", fill: color })
|
|
3547
3591
|
] });
|
|
3548
3592
|
}
|
|
3549
|
-
return /* @__PURE__ */
|
|
3593
|
+
return /* @__PURE__ */ jsxs54("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3550
3594
|
/* @__PURE__ */ jsx75(
|
|
3551
3595
|
"path",
|
|
3552
3596
|
{
|
|
@@ -3561,11 +3605,11 @@ var ICDocumentAdd = /* @__PURE__ */ __name((props) => {
|
|
|
3561
3605
|
}, "ICDocumentAdd");
|
|
3562
3606
|
|
|
3563
3607
|
// src/assets/thumb-up.tsx
|
|
3564
|
-
import { jsx as jsx76, jsxs as
|
|
3608
|
+
import { jsx as jsx76, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3565
3609
|
var ICThumbUp = /* @__PURE__ */ __name((props) => {
|
|
3566
3610
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3567
3611
|
if (fill && thick) {
|
|
3568
|
-
return /* @__PURE__ */
|
|
3612
|
+
return /* @__PURE__ */ jsxs55("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3569
3613
|
/* @__PURE__ */ jsx76(
|
|
3570
3614
|
"path",
|
|
3571
3615
|
{
|
|
@@ -3588,7 +3632,7 @@ var ICThumbUp = /* @__PURE__ */ __name((props) => {
|
|
|
3588
3632
|
) });
|
|
3589
3633
|
}
|
|
3590
3634
|
if (fill) {
|
|
3591
|
-
return /* @__PURE__ */
|
|
3635
|
+
return /* @__PURE__ */ jsxs55("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3592
3636
|
/* @__PURE__ */ jsx76(
|
|
3593
3637
|
"path",
|
|
3594
3638
|
{
|
|
@@ -3611,11 +3655,11 @@ var ICThumbUp = /* @__PURE__ */ __name((props) => {
|
|
|
3611
3655
|
}, "ICThumbUp");
|
|
3612
3656
|
|
|
3613
3657
|
// src/assets/thumb-down.tsx
|
|
3614
|
-
import { jsx as jsx77, jsxs as
|
|
3658
|
+
import { jsx as jsx77, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3615
3659
|
var ICThumbDown = /* @__PURE__ */ __name((props) => {
|
|
3616
3660
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3617
3661
|
if (fill && thick) {
|
|
3618
|
-
return /* @__PURE__ */
|
|
3662
|
+
return /* @__PURE__ */ jsxs56("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3619
3663
|
/* @__PURE__ */ jsx77(
|
|
3620
3664
|
"path",
|
|
3621
3665
|
{
|
|
@@ -3644,7 +3688,7 @@ var ICThumbDown = /* @__PURE__ */ __name((props) => {
|
|
|
3644
3688
|
) });
|
|
3645
3689
|
}
|
|
3646
3690
|
if (fill) {
|
|
3647
|
-
return /* @__PURE__ */
|
|
3691
|
+
return /* @__PURE__ */ jsxs56("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3648
3692
|
/* @__PURE__ */ jsx77(
|
|
3649
3693
|
"path",
|
|
3650
3694
|
{
|
|
@@ -3673,7 +3717,7 @@ var ICThumbDown = /* @__PURE__ */ __name((props) => {
|
|
|
3673
3717
|
}, "ICThumbDown");
|
|
3674
3718
|
|
|
3675
3719
|
// src/assets/shield.tsx
|
|
3676
|
-
import { jsx as jsx78, jsxs as
|
|
3720
|
+
import { jsx as jsx78, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
3677
3721
|
var ICShield = /* @__PURE__ */ __name((props) => {
|
|
3678
3722
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3679
3723
|
if (fill && thick) {
|
|
@@ -3688,7 +3732,7 @@ var ICShield = /* @__PURE__ */ __name((props) => {
|
|
|
3688
3732
|
) });
|
|
3689
3733
|
}
|
|
3690
3734
|
if (thick) {
|
|
3691
|
-
return /* @__PURE__ */
|
|
3735
|
+
return /* @__PURE__ */ jsxs57("svg", { ...props, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", fill: "none", children: [
|
|
3692
3736
|
/* @__PURE__ */ jsx78(
|
|
3693
3737
|
"path",
|
|
3694
3738
|
{
|
|
@@ -3718,7 +3762,7 @@ var ICShield = /* @__PURE__ */ __name((props) => {
|
|
|
3718
3762
|
}
|
|
3719
3763
|
) });
|
|
3720
3764
|
}
|
|
3721
|
-
return /* @__PURE__ */
|
|
3765
|
+
return /* @__PURE__ */ jsxs57("svg", { ...props, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", fill: "none", children: [
|
|
3722
3766
|
/* @__PURE__ */ jsx78(
|
|
3723
3767
|
"path",
|
|
3724
3768
|
{
|
|
@@ -3765,11 +3809,11 @@ var ICHome = /* @__PURE__ */ __name((props) => {
|
|
|
3765
3809
|
}, "ICHome");
|
|
3766
3810
|
|
|
3767
3811
|
// src/assets/visibility.tsx
|
|
3768
|
-
import { jsx as jsx80, jsxs as
|
|
3812
|
+
import { jsx as jsx80, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
3769
3813
|
var ICVisibility = /* @__PURE__ */ __name((props) => {
|
|
3770
3814
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3771
3815
|
if (fill && thick) {
|
|
3772
|
-
return /* @__PURE__ */
|
|
3816
|
+
return /* @__PURE__ */ jsxs58("svg", { ...props, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", fill: "none", children: [
|
|
3773
3817
|
/* @__PURE__ */ jsx80(
|
|
3774
3818
|
"path",
|
|
3775
3819
|
{
|
|
@@ -3789,7 +3833,7 @@ var ICVisibility = /* @__PURE__ */ __name((props) => {
|
|
|
3789
3833
|
] });
|
|
3790
3834
|
}
|
|
3791
3835
|
if (thick) {
|
|
3792
|
-
return /* @__PURE__ */
|
|
3836
|
+
return /* @__PURE__ */ jsxs58("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3793
3837
|
/* @__PURE__ */ jsx80(
|
|
3794
3838
|
"path",
|
|
3795
3839
|
{
|
|
@@ -3811,7 +3855,7 @@ var ICVisibility = /* @__PURE__ */ __name((props) => {
|
|
|
3811
3855
|
] });
|
|
3812
3856
|
}
|
|
3813
3857
|
if (fill) {
|
|
3814
|
-
return /* @__PURE__ */
|
|
3858
|
+
return /* @__PURE__ */ jsxs58("svg", { ...props, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", fill: "none", children: [
|
|
3815
3859
|
/* @__PURE__ */ jsx80(
|
|
3816
3860
|
"path",
|
|
3817
3861
|
{
|
|
@@ -3830,7 +3874,7 @@ var ICVisibility = /* @__PURE__ */ __name((props) => {
|
|
|
3830
3874
|
)
|
|
3831
3875
|
] });
|
|
3832
3876
|
}
|
|
3833
|
-
return /* @__PURE__ */
|
|
3877
|
+
return /* @__PURE__ */ jsxs58("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3834
3878
|
/* @__PURE__ */ jsx80(
|
|
3835
3879
|
"path",
|
|
3836
3880
|
{
|
|
@@ -3853,11 +3897,11 @@ var ICVisibility = /* @__PURE__ */ __name((props) => {
|
|
|
3853
3897
|
}, "ICVisibility");
|
|
3854
3898
|
|
|
3855
3899
|
// src/assets/visibility-off.tsx
|
|
3856
|
-
import { jsx as jsx81, jsxs as
|
|
3900
|
+
import { jsx as jsx81, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
3857
3901
|
var ICVisibilityOff = /* @__PURE__ */ __name((props) => {
|
|
3858
3902
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3859
3903
|
if (fill && thick) {
|
|
3860
|
-
return /* @__PURE__ */
|
|
3904
|
+
return /* @__PURE__ */ jsxs59("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3861
3905
|
/* @__PURE__ */ jsx81("path", { d: "M11.2725 8.44336L8.44409 11.2718L36.7284 39.5561L39.5568 36.7276L11.2725 8.44336Z", fill: color }),
|
|
3862
3906
|
/* @__PURE__ */ jsx81(
|
|
3863
3907
|
"path",
|
|
@@ -3878,7 +3922,7 @@ var ICVisibilityOff = /* @__PURE__ */ __name((props) => {
|
|
|
3878
3922
|
] });
|
|
3879
3923
|
}
|
|
3880
3924
|
if (fill) {
|
|
3881
|
-
return /* @__PURE__ */
|
|
3925
|
+
return /* @__PURE__ */ jsxs59("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3882
3926
|
/* @__PURE__ */ jsx81("path", { d: "M11.2725 8.44336L8.44409 11.2718L36.7284 39.5561L39.5568 36.7276L11.2725 8.44336Z", fill: color }),
|
|
3883
3927
|
/* @__PURE__ */ jsx81(
|
|
3884
3928
|
"path",
|
|
@@ -3911,7 +3955,7 @@ var ICVisibilityOff = /* @__PURE__ */ __name((props) => {
|
|
|
3911
3955
|
] });
|
|
3912
3956
|
}
|
|
3913
3957
|
if (thick) {
|
|
3914
|
-
return /* @__PURE__ */
|
|
3958
|
+
return /* @__PURE__ */ jsxs59("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3915
3959
|
/* @__PURE__ */ jsx81("path", { d: "M39.5568 36.7276L36.7284 39.5561L8.44409 11.2718L11.2725 8.44336L39.5568 36.7276Z", fill: color }),
|
|
3916
3960
|
/* @__PURE__ */ jsx81(
|
|
3917
3961
|
"path",
|
|
@@ -3943,7 +3987,7 @@ var ICVisibilityOff = /* @__PURE__ */ __name((props) => {
|
|
|
3943
3987
|
)
|
|
3944
3988
|
] });
|
|
3945
3989
|
}
|
|
3946
|
-
return /* @__PURE__ */
|
|
3990
|
+
return /* @__PURE__ */ jsxs59("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3947
3991
|
/* @__PURE__ */ jsx81("path", { d: "M10.9186 8.79785L39.2028 37.0821L37.0815 39.2034L8.79724 10.9192L10.9186 8.79785Z", fill: color }),
|
|
3948
3992
|
/* @__PURE__ */ jsx81(
|
|
3949
3993
|
"path",
|
|
@@ -3981,11 +4025,11 @@ var ICVisibilityOff = /* @__PURE__ */ __name((props) => {
|
|
|
3981
4025
|
}, "ICVisibilityOff");
|
|
3982
4026
|
|
|
3983
4027
|
// src/assets/magic-wand.tsx
|
|
3984
|
-
import { jsx as jsx82, jsxs as
|
|
4028
|
+
import { jsx as jsx82, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
3985
4029
|
var ICMagicWand = /* @__PURE__ */ __name((props) => {
|
|
3986
4030
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3987
4031
|
if (thick) {
|
|
3988
|
-
return /* @__PURE__ */
|
|
4032
|
+
return /* @__PURE__ */ jsxs60("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3989
4033
|
/* @__PURE__ */ jsx82(
|
|
3990
4034
|
"path",
|
|
3991
4035
|
{
|
|
@@ -4018,7 +4062,7 @@ var ICMagicWand = /* @__PURE__ */ __name((props) => {
|
|
|
4018
4062
|
)
|
|
4019
4063
|
] });
|
|
4020
4064
|
}
|
|
4021
|
-
return /* @__PURE__ */
|
|
4065
|
+
return /* @__PURE__ */ jsxs60("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4022
4066
|
/* @__PURE__ */ jsx82(
|
|
4023
4067
|
"path",
|
|
4024
4068
|
{
|
|
@@ -4053,11 +4097,11 @@ var ICMagicWand = /* @__PURE__ */ __name((props) => {
|
|
|
4053
4097
|
}, "ICMagicWand");
|
|
4054
4098
|
|
|
4055
4099
|
// src/assets/magic-pencil.tsx
|
|
4056
|
-
import { jsx as jsx83, jsxs as
|
|
4100
|
+
import { jsx as jsx83, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
4057
4101
|
var ICMagicPencil = /* @__PURE__ */ __name((props) => {
|
|
4058
4102
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4059
4103
|
if (thick) {
|
|
4060
|
-
return /* @__PURE__ */
|
|
4104
|
+
return /* @__PURE__ */ jsxs61("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4061
4105
|
/* @__PURE__ */ jsx83(
|
|
4062
4106
|
"path",
|
|
4063
4107
|
{
|
|
@@ -4091,7 +4135,7 @@ var ICMagicPencil = /* @__PURE__ */ __name((props) => {
|
|
|
4091
4135
|
)
|
|
4092
4136
|
] });
|
|
4093
4137
|
}
|
|
4094
|
-
return /* @__PURE__ */
|
|
4138
|
+
return /* @__PURE__ */ jsxs61("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4095
4139
|
/* @__PURE__ */ jsx83(
|
|
4096
4140
|
"path",
|
|
4097
4141
|
{
|
|
@@ -4127,11 +4171,11 @@ var ICMagicPencil = /* @__PURE__ */ __name((props) => {
|
|
|
4127
4171
|
}, "ICMagicPencil");
|
|
4128
4172
|
|
|
4129
4173
|
// src/assets/bulb-exclamtionmark.tsx
|
|
4130
|
-
import { jsx as jsx84, jsxs as
|
|
4174
|
+
import { jsx as jsx84, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
4131
4175
|
var ICBulbExclamtionmark = /* @__PURE__ */ __name((props) => {
|
|
4132
4176
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4133
4177
|
if (thick) {
|
|
4134
|
-
return /* @__PURE__ */
|
|
4178
|
+
return /* @__PURE__ */ jsxs62("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4135
4179
|
/* @__PURE__ */ jsx84(
|
|
4136
4180
|
"path",
|
|
4137
4181
|
{
|
|
@@ -4152,7 +4196,7 @@ var ICBulbExclamtionmark = /* @__PURE__ */ __name((props) => {
|
|
|
4152
4196
|
/* @__PURE__ */ jsx84("path", { d: "M18 39V43H30V39H18Z", fill: color })
|
|
4153
4197
|
] });
|
|
4154
4198
|
}
|
|
4155
|
-
return /* @__PURE__ */
|
|
4199
|
+
return /* @__PURE__ */ jsxs62("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4156
4200
|
/* @__PURE__ */ jsx84(
|
|
4157
4201
|
"path",
|
|
4158
4202
|
{
|
|
@@ -4175,11 +4219,11 @@ var ICBulbExclamtionmark = /* @__PURE__ */ __name((props) => {
|
|
|
4175
4219
|
}, "ICBulbExclamtionmark");
|
|
4176
4220
|
|
|
4177
4221
|
// src/assets/bulb.tsx
|
|
4178
|
-
import { jsx as jsx85, jsxs as
|
|
4222
|
+
import { jsx as jsx85, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
4179
4223
|
var ICBulb = /* @__PURE__ */ __name((props) => {
|
|
4180
4224
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4181
4225
|
if (thick) {
|
|
4182
|
-
return /* @__PURE__ */
|
|
4226
|
+
return /* @__PURE__ */ jsxs63("svg", { ...props, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", fill: "none", children: [
|
|
4183
4227
|
/* @__PURE__ */ jsx85(
|
|
4184
4228
|
"path",
|
|
4185
4229
|
{
|
|
@@ -4192,7 +4236,7 @@ var ICBulb = /* @__PURE__ */ __name((props) => {
|
|
|
4192
4236
|
/* @__PURE__ */ jsx85("path", { d: "M18 39V43H30V39H18Z", fill: color })
|
|
4193
4237
|
] });
|
|
4194
4238
|
}
|
|
4195
|
-
return /* @__PURE__ */
|
|
4239
|
+
return /* @__PURE__ */ jsxs63("svg", { ...props, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", fill: "none", children: [
|
|
4196
4240
|
/* @__PURE__ */ jsx85(
|
|
4197
4241
|
"path",
|
|
4198
4242
|
{
|
|
@@ -4207,11 +4251,11 @@ var ICBulb = /* @__PURE__ */ __name((props) => {
|
|
|
4207
4251
|
}, "ICBulb");
|
|
4208
4252
|
|
|
4209
4253
|
// src/assets/paraphase.tsx
|
|
4210
|
-
import { jsx as jsx86, jsxs as
|
|
4254
|
+
import { jsx as jsx86, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
4211
4255
|
var ICParaphase = /* @__PURE__ */ __name((props) => {
|
|
4212
4256
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4213
4257
|
if (thick) {
|
|
4214
|
-
return /* @__PURE__ */
|
|
4258
|
+
return /* @__PURE__ */ jsxs64("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4215
4259
|
/* @__PURE__ */ jsx86("path", { d: "M31 6H7V10H31V6Z", fill: color }),
|
|
4216
4260
|
/* @__PURE__ */ jsx86("path", { d: "M31 15H7V19H31V15Z", fill: color }),
|
|
4217
4261
|
/* @__PURE__ */ jsx86("path", { d: "M7 24H21V28H7V24Z", fill: color }),
|
|
@@ -4226,7 +4270,7 @@ var ICParaphase = /* @__PURE__ */ __name((props) => {
|
|
|
4226
4270
|
)
|
|
4227
4271
|
] });
|
|
4228
4272
|
}
|
|
4229
|
-
return /* @__PURE__ */
|
|
4273
|
+
return /* @__PURE__ */ jsxs64("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4230
4274
|
/* @__PURE__ */ jsx86("path", { d: "M31 6.5H7V9.5H31V6.5Z", fill: color }),
|
|
4231
4275
|
/* @__PURE__ */ jsx86("path", { d: "M31 15.5H7V18.5H31V15.5Z", fill: color }),
|
|
4232
4276
|
/* @__PURE__ */ jsx86("path", { d: "M7 24.5H21V27.5H7V24.5Z", fill: color }),
|
|
@@ -4243,11 +4287,11 @@ var ICParaphase = /* @__PURE__ */ __name((props) => {
|
|
|
4243
4287
|
}, "ICParaphase");
|
|
4244
4288
|
|
|
4245
4289
|
// src/assets/make-easy.tsx
|
|
4246
|
-
import { jsx as jsx87, jsxs as
|
|
4290
|
+
import { jsx as jsx87, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
4247
4291
|
var ICMakeEasy = /* @__PURE__ */ __name((props) => {
|
|
4248
4292
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4249
4293
|
if (thick) {
|
|
4250
|
-
return /* @__PURE__ */
|
|
4294
|
+
return /* @__PURE__ */ jsxs65("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4251
4295
|
/* @__PURE__ */ jsx87(
|
|
4252
4296
|
"path",
|
|
4253
4297
|
{
|
|
@@ -4279,7 +4323,7 @@ var ICMakeEasy = /* @__PURE__ */ __name((props) => {
|
|
|
4279
4323
|
/* @__PURE__ */ jsx87("path", { d: "M26 36.0003V40.0003H41V36.0003H26Z", fill: color })
|
|
4280
4324
|
] });
|
|
4281
4325
|
}
|
|
4282
|
-
return /* @__PURE__ */
|
|
4326
|
+
return /* @__PURE__ */ jsxs65("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4283
4327
|
/* @__PURE__ */ jsx87(
|
|
4284
4328
|
"path",
|
|
4285
4329
|
{
|
|
@@ -4313,11 +4357,11 @@ var ICMakeEasy = /* @__PURE__ */ __name((props) => {
|
|
|
4313
4357
|
}, "ICMakeEasy");
|
|
4314
4358
|
|
|
4315
4359
|
// src/assets/translate.tsx
|
|
4316
|
-
import { jsx as jsx88, jsxs as
|
|
4360
|
+
import { jsx as jsx88, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
4317
4361
|
var ICTranslate = /* @__PURE__ */ __name((props) => {
|
|
4318
4362
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4319
4363
|
if (thick) {
|
|
4320
|
-
return /* @__PURE__ */
|
|
4364
|
+
return /* @__PURE__ */ jsxs66("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4321
4365
|
/* @__PURE__ */ jsx88(
|
|
4322
4366
|
"path",
|
|
4323
4367
|
{
|
|
@@ -4336,7 +4380,7 @@ var ICTranslate = /* @__PURE__ */ __name((props) => {
|
|
|
4336
4380
|
)
|
|
4337
4381
|
] });
|
|
4338
4382
|
}
|
|
4339
|
-
return /* @__PURE__ */
|
|
4383
|
+
return /* @__PURE__ */ jsxs66("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4340
4384
|
/* @__PURE__ */ jsx88(
|
|
4341
4385
|
"path",
|
|
4342
4386
|
{
|
|
@@ -4357,11 +4401,11 @@ var ICTranslate = /* @__PURE__ */ __name((props) => {
|
|
|
4357
4401
|
}, "ICTranslate");
|
|
4358
4402
|
|
|
4359
4403
|
// src/assets/Info.tsx
|
|
4360
|
-
import { jsx as jsx89, jsxs as
|
|
4404
|
+
import { jsx as jsx89, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
4361
4405
|
var ICInfo = /* @__PURE__ */ __name((props) => {
|
|
4362
4406
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4363
4407
|
if (thick) {
|
|
4364
|
-
return /* @__PURE__ */
|
|
4408
|
+
return /* @__PURE__ */ jsxs67("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4365
4409
|
/* @__PURE__ */ jsx89(
|
|
4366
4410
|
"path",
|
|
4367
4411
|
{
|
|
@@ -4381,7 +4425,7 @@ var ICInfo = /* @__PURE__ */ __name((props) => {
|
|
|
4381
4425
|
)
|
|
4382
4426
|
] });
|
|
4383
4427
|
}
|
|
4384
|
-
return /* @__PURE__ */
|
|
4428
|
+
return /* @__PURE__ */ jsxs67("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4385
4429
|
/* @__PURE__ */ jsx89(
|
|
4386
4430
|
"path",
|
|
4387
4431
|
{
|
|
@@ -4403,7 +4447,7 @@ var ICInfo = /* @__PURE__ */ __name((props) => {
|
|
|
4403
4447
|
}, "ICInfo");
|
|
4404
4448
|
|
|
4405
4449
|
// src/assets/folder-open.tsx
|
|
4406
|
-
import { jsx as jsx90, jsxs as
|
|
4450
|
+
import { jsx as jsx90, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
4407
4451
|
var ICFolderOpen = /* @__PURE__ */ __name((props) => {
|
|
4408
4452
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F", ...rest } = props;
|
|
4409
4453
|
if (fill && thick) {
|
|
@@ -4425,7 +4469,7 @@ var ICFolderOpen = /* @__PURE__ */ __name((props) => {
|
|
|
4425
4469
|
) });
|
|
4426
4470
|
}
|
|
4427
4471
|
if (thick) {
|
|
4428
|
-
return /* @__PURE__ */
|
|
4472
|
+
return /* @__PURE__ */ jsxs68("svg", { ...rest, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4429
4473
|
/* @__PURE__ */ jsx90("g", { clipPath: "url(#clip0_975_1749)", children: /* @__PURE__ */ jsx90(
|
|
4430
4474
|
"path",
|
|
4431
4475
|
{
|
|
@@ -4438,7 +4482,7 @@ var ICFolderOpen = /* @__PURE__ */ __name((props) => {
|
|
|
4438
4482
|
/* @__PURE__ */ jsx90("defs", { children: /* @__PURE__ */ jsx90("clipPath", { id: "clip0_975_1749", children: /* @__PURE__ */ jsx90("rect", { width: "48", height: "48", fill: "white" }) }) })
|
|
4439
4483
|
] });
|
|
4440
4484
|
}
|
|
4441
|
-
return /* @__PURE__ */
|
|
4485
|
+
return /* @__PURE__ */ jsxs68("svg", { ...rest, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4442
4486
|
/* @__PURE__ */ jsx90("g", { clipPath: "url(#clip0_975_1738)", children: /* @__PURE__ */ jsx90(
|
|
4443
4487
|
"path",
|
|
4444
4488
|
{
|
|
@@ -4453,11 +4497,11 @@ var ICFolderOpen = /* @__PURE__ */ __name((props) => {
|
|
|
4453
4497
|
}, "ICFolderOpen");
|
|
4454
4498
|
|
|
4455
4499
|
// src/assets/highlight-edit.tsx
|
|
4456
|
-
import { jsx as jsx91, jsxs as
|
|
4500
|
+
import { jsx as jsx91, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4457
4501
|
var ICHighlightEdit = /* @__PURE__ */ __name((props) => {
|
|
4458
4502
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4459
4503
|
if (thick) {
|
|
4460
|
-
return /* @__PURE__ */
|
|
4504
|
+
return /* @__PURE__ */ jsxs69("svg", { ...props, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 48 48", fill: "none", children: [
|
|
4461
4505
|
/* @__PURE__ */ jsx91(
|
|
4462
4506
|
"path",
|
|
4463
4507
|
{
|
|
@@ -4476,7 +4520,7 @@ var ICHighlightEdit = /* @__PURE__ */ __name((props) => {
|
|
|
4476
4520
|
)
|
|
4477
4521
|
] });
|
|
4478
4522
|
}
|
|
4479
|
-
return /* @__PURE__ */
|
|
4523
|
+
return /* @__PURE__ */ jsxs69("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
4480
4524
|
/* @__PURE__ */ jsx91(
|
|
4481
4525
|
"path",
|
|
4482
4526
|
{
|
|
@@ -4497,11 +4541,11 @@ var ICHighlightEdit = /* @__PURE__ */ __name((props) => {
|
|
|
4497
4541
|
}, "ICHighlightEdit");
|
|
4498
4542
|
|
|
4499
4543
|
// src/assets/apple.tsx
|
|
4500
|
-
import { jsx as jsx92, jsxs as
|
|
4544
|
+
import { jsx as jsx92, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4501
4545
|
var ICApple = /* @__PURE__ */ __name((props) => {
|
|
4502
4546
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4503
4547
|
if (fill) {
|
|
4504
|
-
return /* @__PURE__ */
|
|
4548
|
+
return /* @__PURE__ */ jsxs70("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4505
4549
|
/* @__PURE__ */ jsx92(
|
|
4506
4550
|
"path",
|
|
4507
4551
|
{
|
|
@@ -4518,7 +4562,7 @@ var ICApple = /* @__PURE__ */ __name((props) => {
|
|
|
4518
4562
|
)
|
|
4519
4563
|
] });
|
|
4520
4564
|
}
|
|
4521
|
-
return /* @__PURE__ */
|
|
4565
|
+
return /* @__PURE__ */ jsxs70("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4522
4566
|
/* @__PURE__ */ jsx92(
|
|
4523
4567
|
"path",
|
|
4524
4568
|
{
|
|
@@ -4603,11 +4647,11 @@ var ICFacebook = /* @__PURE__ */ __name((props) => {
|
|
|
4603
4647
|
}, "ICFacebook");
|
|
4604
4648
|
|
|
4605
4649
|
// src/assets/google.tsx
|
|
4606
|
-
import { jsx as jsx96, jsxs as
|
|
4650
|
+
import { jsx as jsx96, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4607
4651
|
var ICGoogle = /* @__PURE__ */ __name((props) => {
|
|
4608
4652
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4609
4653
|
if (fill) {
|
|
4610
|
-
return /* @__PURE__ */
|
|
4654
|
+
return /* @__PURE__ */ jsxs71("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4611
4655
|
/* @__PURE__ */ jsx96(
|
|
4612
4656
|
"path",
|
|
4613
4657
|
{
|
|
@@ -4650,11 +4694,11 @@ var ICGoogle = /* @__PURE__ */ __name((props) => {
|
|
|
4650
4694
|
}, "ICGoogle");
|
|
4651
4695
|
|
|
4652
4696
|
// src/assets/paraphrase.tsx
|
|
4653
|
-
import { jsx as jsx97, jsxs as
|
|
4697
|
+
import { jsx as jsx97, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
4654
4698
|
var ICParaphrase = /* @__PURE__ */ __name((props) => {
|
|
4655
4699
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4656
4700
|
if (thick) {
|
|
4657
|
-
return /* @__PURE__ */
|
|
4701
|
+
return /* @__PURE__ */ jsxs72("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4658
4702
|
/* @__PURE__ */ jsx97("path", { d: "M31 6H7V10H31V6Z", fill: color }),
|
|
4659
4703
|
/* @__PURE__ */ jsx97("path", { d: "M31 15H7V19H31V15Z", fill: color }),
|
|
4660
4704
|
/* @__PURE__ */ jsx97("path", { d: "M7 24H21V28H7V24Z", fill: color }),
|
|
@@ -4669,7 +4713,7 @@ var ICParaphrase = /* @__PURE__ */ __name((props) => {
|
|
|
4669
4713
|
)
|
|
4670
4714
|
] });
|
|
4671
4715
|
}
|
|
4672
|
-
return /* @__PURE__ */
|
|
4716
|
+
return /* @__PURE__ */ jsxs72("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4673
4717
|
/* @__PURE__ */ jsx97("path", { d: "M31 6.5H7V9.5H31V6.5Z", fill: color }),
|
|
4674
4718
|
/* @__PURE__ */ jsx97("path", { d: "M31 15.5H7V18.5H31V15.5Z", fill: color }),
|
|
4675
4719
|
/* @__PURE__ */ jsx97("path", { d: "M7 24.5H21V27.5H7V24.5Z", fill: color }),
|
|
@@ -4738,11 +4782,11 @@ var ICAirplane = /* @__PURE__ */ __name((props) => {
|
|
|
4738
4782
|
}, "ICAirplane");
|
|
4739
4783
|
|
|
4740
4784
|
// src/assets/rocket.tsx
|
|
4741
|
-
import { jsx as jsx100, jsxs as
|
|
4785
|
+
import { jsx as jsx100, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
4742
4786
|
var ICRocket = /* @__PURE__ */ __name((props) => {
|
|
4743
4787
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4744
4788
|
if (thick) {
|
|
4745
|
-
return /* @__PURE__ */
|
|
4789
|
+
return /* @__PURE__ */ jsxs73("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4746
4790
|
/* @__PURE__ */ jsx100(
|
|
4747
4791
|
"path",
|
|
4748
4792
|
{
|
|
@@ -4761,7 +4805,7 @@ var ICRocket = /* @__PURE__ */ __name((props) => {
|
|
|
4761
4805
|
)
|
|
4762
4806
|
] });
|
|
4763
4807
|
}
|
|
4764
|
-
return /* @__PURE__ */
|
|
4808
|
+
return /* @__PURE__ */ jsxs73("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4765
4809
|
/* @__PURE__ */ jsx100(
|
|
4766
4810
|
"path",
|
|
4767
4811
|
{
|
|
@@ -4782,11 +4826,11 @@ var ICRocket = /* @__PURE__ */ __name((props) => {
|
|
|
4782
4826
|
}, "ICRocket");
|
|
4783
4827
|
|
|
4784
4828
|
// src/assets/source.tsx
|
|
4785
|
-
import { jsx as jsx101, jsxs as
|
|
4829
|
+
import { jsx as jsx101, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4786
4830
|
var ICSource = /* @__PURE__ */ __name((props) => {
|
|
4787
4831
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4788
4832
|
if (thick) {
|
|
4789
|
-
return /* @__PURE__ */
|
|
4833
|
+
return /* @__PURE__ */ jsxs74("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4790
4834
|
/* @__PURE__ */ jsx101(
|
|
4791
4835
|
"path",
|
|
4792
4836
|
{
|
|
@@ -4825,7 +4869,7 @@ var ICSource = /* @__PURE__ */ __name((props) => {
|
|
|
4825
4869
|
)
|
|
4826
4870
|
] });
|
|
4827
4871
|
}
|
|
4828
|
-
return /* @__PURE__ */
|
|
4872
|
+
return /* @__PURE__ */ jsxs74("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4829
4873
|
/* @__PURE__ */ jsx101(
|
|
4830
4874
|
"path",
|
|
4831
4875
|
{
|
|
@@ -4866,11 +4910,11 @@ var ICSource = /* @__PURE__ */ __name((props) => {
|
|
|
4866
4910
|
}, "ICSource");
|
|
4867
4911
|
|
|
4868
4912
|
// src/assets/setting.tsx
|
|
4869
|
-
import { jsx as jsx102, jsxs as
|
|
4913
|
+
import { jsx as jsx102, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4870
4914
|
var ICSetting = /* @__PURE__ */ __name((props) => {
|
|
4871
4915
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4872
4916
|
if (thick) {
|
|
4873
|
-
return /* @__PURE__ */
|
|
4917
|
+
return /* @__PURE__ */ jsxs75("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4874
4918
|
/* @__PURE__ */ jsx102(
|
|
4875
4919
|
"path",
|
|
4876
4920
|
{
|
|
@@ -4891,7 +4935,7 @@ var ICSetting = /* @__PURE__ */ __name((props) => {
|
|
|
4891
4935
|
)
|
|
4892
4936
|
] });
|
|
4893
4937
|
}
|
|
4894
|
-
return /* @__PURE__ */
|
|
4938
|
+
return /* @__PURE__ */ jsxs75("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4895
4939
|
/* @__PURE__ */ jsx102(
|
|
4896
4940
|
"path",
|
|
4897
4941
|
{
|
|
@@ -4936,11 +4980,11 @@ var ICExtend = /* @__PURE__ */ __name((props) => {
|
|
|
4936
4980
|
}, "ICExtend");
|
|
4937
4981
|
|
|
4938
4982
|
// src/assets/shorten.tsx
|
|
4939
|
-
import { jsx as jsx104, jsxs as
|
|
4983
|
+
import { jsx as jsx104, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
4940
4984
|
var ICShorten = /* @__PURE__ */ __name((props) => {
|
|
4941
4985
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4942
4986
|
if (thick) {
|
|
4943
|
-
return /* @__PURE__ */
|
|
4987
|
+
return /* @__PURE__ */ jsxs76("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4944
4988
|
/* @__PURE__ */ jsx104(
|
|
4945
4989
|
"path",
|
|
4946
4990
|
{
|
|
@@ -4957,7 +5001,7 @@ var ICShorten = /* @__PURE__ */ __name((props) => {
|
|
|
4957
5001
|
)
|
|
4958
5002
|
] });
|
|
4959
5003
|
}
|
|
4960
|
-
return /* @__PURE__ */
|
|
5004
|
+
return /* @__PURE__ */ jsxs76("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4961
5005
|
/* @__PURE__ */ jsx104(
|
|
4962
5006
|
"path",
|
|
4963
5007
|
{
|
|
@@ -4976,11 +5020,11 @@ var ICShorten = /* @__PURE__ */ __name((props) => {
|
|
|
4976
5020
|
}, "ICShorten");
|
|
4977
5021
|
|
|
4978
5022
|
// src/assets/sun.tsx
|
|
4979
|
-
import { jsx as jsx105, jsxs as
|
|
5023
|
+
import { jsx as jsx105, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
4980
5024
|
var ICSun = /* @__PURE__ */ __name((props) => {
|
|
4981
5025
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4982
5026
|
if (thick) {
|
|
4983
|
-
return /* @__PURE__ */
|
|
5027
|
+
return /* @__PURE__ */ jsxs77("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4984
5028
|
/* @__PURE__ */ jsx105("path", { d: "M26 4V12H22V4H26Z", fill: color }),
|
|
4985
5029
|
/* @__PURE__ */ jsx105(
|
|
4986
5030
|
"path",
|
|
@@ -5000,7 +5044,7 @@ var ICSun = /* @__PURE__ */ __name((props) => {
|
|
|
5000
5044
|
/* @__PURE__ */ jsx105("path", { d: "M8.44382 11.272L14.1007 16.9289L16.9291 14.1004L11.2723 8.44358L8.44382 11.272Z", fill: color })
|
|
5001
5045
|
] });
|
|
5002
5046
|
}
|
|
5003
|
-
return /* @__PURE__ */
|
|
5047
|
+
return /* @__PURE__ */ jsxs77("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5004
5048
|
/* @__PURE__ */ jsx105("path", { d: "M25.5 4V12H22.5V4H25.5Z", fill: color }),
|
|
5005
5049
|
/* @__PURE__ */ jsx105(
|
|
5006
5050
|
"path",
|
|
@@ -5048,11 +5092,11 @@ var ICMoon = /* @__PURE__ */ __name((props) => {
|
|
|
5048
5092
|
}, "ICMoon");
|
|
5049
5093
|
|
|
5050
5094
|
// src/assets/fire.tsx
|
|
5051
|
-
import { jsx as jsx107, jsxs as
|
|
5095
|
+
import { jsx as jsx107, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
5052
5096
|
var ICFire = /* @__PURE__ */ __name((props) => {
|
|
5053
5097
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5054
5098
|
if (thick) {
|
|
5055
|
-
return /* @__PURE__ */
|
|
5099
|
+
return /* @__PURE__ */ jsxs78("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5056
5100
|
/* @__PURE__ */ jsx107(
|
|
5057
5101
|
"path",
|
|
5058
5102
|
{
|
|
@@ -5084,7 +5128,7 @@ var ICFire = /* @__PURE__ */ __name((props) => {
|
|
|
5084
5128
|
}
|
|
5085
5129
|
) });
|
|
5086
5130
|
}
|
|
5087
|
-
return /* @__PURE__ */
|
|
5131
|
+
return /* @__PURE__ */ jsxs78("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5088
5132
|
/* @__PURE__ */ jsx107(
|
|
5089
5133
|
"path",
|
|
5090
5134
|
{
|
|
@@ -5159,11 +5203,11 @@ var ICArrowDownward = /* @__PURE__ */ __name((props) => {
|
|
|
5159
5203
|
}, "ICArrowDownward");
|
|
5160
5204
|
|
|
5161
5205
|
// src/assets/light-mode.tsx
|
|
5162
|
-
import { jsx as jsx110, jsxs as
|
|
5206
|
+
import { jsx as jsx110, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
5163
5207
|
var ICLightMode = /* @__PURE__ */ __name((props) => {
|
|
5164
5208
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5165
5209
|
if (thick) {
|
|
5166
|
-
return /* @__PURE__ */
|
|
5210
|
+
return /* @__PURE__ */ jsxs79("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5167
5211
|
/* @__PURE__ */ jsx110("path", { d: "M26 2V11H22V2H26Z", fill: color }),
|
|
5168
5212
|
/* @__PURE__ */ jsx110(
|
|
5169
5213
|
"path",
|
|
@@ -5183,7 +5227,7 @@ var ICLightMode = /* @__PURE__ */ __name((props) => {
|
|
|
5183
5227
|
/* @__PURE__ */ jsx110("path", { d: "M7.02978 9.85802L13.3937 16.222L16.2222 13.3936L9.85821 7.02959L7.02978 9.85802Z", fill: color })
|
|
5184
5228
|
] });
|
|
5185
5229
|
}
|
|
5186
|
-
return /* @__PURE__ */
|
|
5230
|
+
return /* @__PURE__ */ jsxs79("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5187
5231
|
/* @__PURE__ */ jsx110("path", { d: "M25.5 2V11H22.5V2H25.5Z", fill: color }),
|
|
5188
5232
|
/* @__PURE__ */ jsx110(
|
|
5189
5233
|
"path",
|
|
@@ -5231,11 +5275,11 @@ var ICDarkMode = /* @__PURE__ */ __name((props) => {
|
|
|
5231
5275
|
}, "ICDarkMode");
|
|
5232
5276
|
|
|
5233
5277
|
// src/assets/target.tsx
|
|
5234
|
-
import { jsx as jsx112, jsxs as
|
|
5278
|
+
import { jsx as jsx112, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
5235
5279
|
var ICTarget = /* @__PURE__ */ __name((props) => {
|
|
5236
5280
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5237
5281
|
if (thick) {
|
|
5238
|
-
return /* @__PURE__ */
|
|
5282
|
+
return /* @__PURE__ */ jsxs80("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5239
5283
|
/* @__PURE__ */ jsx112(
|
|
5240
5284
|
"path",
|
|
5241
5285
|
{
|
|
@@ -5259,7 +5303,7 @@ var ICTarget = /* @__PURE__ */ __name((props) => {
|
|
|
5259
5303
|
)
|
|
5260
5304
|
] });
|
|
5261
5305
|
}
|
|
5262
|
-
return /* @__PURE__ */
|
|
5306
|
+
return /* @__PURE__ */ jsxs80("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5263
5307
|
/* @__PURE__ */ jsx112(
|
|
5264
5308
|
"path",
|
|
5265
5309
|
{
|
|
@@ -5285,7 +5329,7 @@ var ICTarget = /* @__PURE__ */ __name((props) => {
|
|
|
5285
5329
|
}, "ICTarget");
|
|
5286
5330
|
|
|
5287
5331
|
// src/assets/question-box.tsx
|
|
5288
|
-
import { jsx as jsx113, jsxs as
|
|
5332
|
+
import { jsx as jsx113, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
5289
5333
|
var ICQuestionBox = /* @__PURE__ */ __name((props) => {
|
|
5290
5334
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5291
5335
|
if (fill && thick) {
|
|
@@ -5300,7 +5344,7 @@ var ICQuestionBox = /* @__PURE__ */ __name((props) => {
|
|
|
5300
5344
|
) });
|
|
5301
5345
|
}
|
|
5302
5346
|
if (thick) {
|
|
5303
|
-
return /* @__PURE__ */
|
|
5347
|
+
return /* @__PURE__ */ jsxs81("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5304
5348
|
/* @__PURE__ */ jsx113(
|
|
5305
5349
|
"path",
|
|
5306
5350
|
{
|
|
@@ -5337,7 +5381,7 @@ var ICQuestionBox = /* @__PURE__ */ __name((props) => {
|
|
|
5337
5381
|
}
|
|
5338
5382
|
) });
|
|
5339
5383
|
}
|
|
5340
|
-
return /* @__PURE__ */
|
|
5384
|
+
return /* @__PURE__ */ jsxs81("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5341
5385
|
/* @__PURE__ */ jsx113(
|
|
5342
5386
|
"path",
|
|
5343
5387
|
{
|
|
@@ -5365,11 +5409,11 @@ var ICQuestionBox = /* @__PURE__ */ __name((props) => {
|
|
|
5365
5409
|
}, "ICQuestionBox");
|
|
5366
5410
|
|
|
5367
5411
|
// src/assets/new-tab.tsx
|
|
5368
|
-
import { jsx as jsx114, jsxs as
|
|
5412
|
+
import { jsx as jsx114, jsxs as jsxs82 } from "react/jsx-runtime";
|
|
5369
5413
|
var ICNewTab = /* @__PURE__ */ __name((props) => {
|
|
5370
5414
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5371
5415
|
if (fill && thick) {
|
|
5372
|
-
return /* @__PURE__ */
|
|
5416
|
+
return /* @__PURE__ */ jsxs82("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5373
5417
|
/* @__PURE__ */ jsx114(
|
|
5374
5418
|
"path",
|
|
5375
5419
|
{
|
|
@@ -5386,7 +5430,7 @@ var ICNewTab = /* @__PURE__ */ __name((props) => {
|
|
|
5386
5430
|
)
|
|
5387
5431
|
] });
|
|
5388
5432
|
}
|
|
5389
|
-
return /* @__PURE__ */
|
|
5433
|
+
return /* @__PURE__ */ jsxs82("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5390
5434
|
/* @__PURE__ */ jsx114(
|
|
5391
5435
|
"path",
|
|
5392
5436
|
{
|
|
@@ -5405,11 +5449,11 @@ var ICNewTab = /* @__PURE__ */ __name((props) => {
|
|
|
5405
5449
|
}, "ICNewTab");
|
|
5406
5450
|
|
|
5407
5451
|
// src/assets/example.tsx
|
|
5408
|
-
import { jsx as jsx115, jsxs as
|
|
5452
|
+
import { jsx as jsx115, jsxs as jsxs83 } from "react/jsx-runtime";
|
|
5409
5453
|
var ICExample = /* @__PURE__ */ __name((props) => {
|
|
5410
5454
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5411
5455
|
if (fill && thick) {
|
|
5412
|
-
return /* @__PURE__ */
|
|
5456
|
+
return /* @__PURE__ */ jsxs83("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5413
5457
|
/* @__PURE__ */ jsx115(
|
|
5414
5458
|
"path",
|
|
5415
5459
|
{
|
|
@@ -5423,7 +5467,7 @@ var ICExample = /* @__PURE__ */ __name((props) => {
|
|
|
5423
5467
|
] });
|
|
5424
5468
|
}
|
|
5425
5469
|
if (fill) {
|
|
5426
|
-
return /* @__PURE__ */
|
|
5470
|
+
return /* @__PURE__ */ jsxs83("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5427
5471
|
/* @__PURE__ */ jsx115(
|
|
5428
5472
|
"path",
|
|
5429
5473
|
{
|
|
@@ -5436,7 +5480,7 @@ var ICExample = /* @__PURE__ */ __name((props) => {
|
|
|
5436
5480
|
/* @__PURE__ */ jsx115("rect", { x: "18", y: "18", width: size, height: size, fill: color })
|
|
5437
5481
|
] });
|
|
5438
5482
|
}
|
|
5439
|
-
return /* @__PURE__ */
|
|
5483
|
+
return /* @__PURE__ */ jsxs83("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5440
5484
|
/* @__PURE__ */ jsx115(
|
|
5441
5485
|
"path",
|
|
5442
5486
|
{
|
|
@@ -5451,11 +5495,11 @@ var ICExample = /* @__PURE__ */ __name((props) => {
|
|
|
5451
5495
|
}, "ICExample");
|
|
5452
5496
|
|
|
5453
5497
|
// src/assets/quote.tsx
|
|
5454
|
-
import { jsx as jsx116, jsxs as
|
|
5498
|
+
import { jsx as jsx116, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
5455
5499
|
var ICQuote = /* @__PURE__ */ __name((props) => {
|
|
5456
5500
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5457
5501
|
if (thick) {
|
|
5458
|
-
return /* @__PURE__ */
|
|
5502
|
+
return /* @__PURE__ */ jsxs84("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5459
5503
|
/* @__PURE__ */ jsx116(
|
|
5460
5504
|
"path",
|
|
5461
5505
|
{
|
|
@@ -5477,7 +5521,7 @@ var ICQuote = /* @__PURE__ */ __name((props) => {
|
|
|
5477
5521
|
] });
|
|
5478
5522
|
}
|
|
5479
5523
|
if (fill) {
|
|
5480
|
-
return /* @__PURE__ */
|
|
5524
|
+
return /* @__PURE__ */ jsxs84("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5481
5525
|
/* @__PURE__ */ jsx116(
|
|
5482
5526
|
"path",
|
|
5483
5527
|
{
|
|
@@ -5494,7 +5538,7 @@ var ICQuote = /* @__PURE__ */ __name((props) => {
|
|
|
5494
5538
|
)
|
|
5495
5539
|
] });
|
|
5496
5540
|
}
|
|
5497
|
-
return /* @__PURE__ */
|
|
5541
|
+
return /* @__PURE__ */ jsxs84("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5498
5542
|
/* @__PURE__ */ jsx116(
|
|
5499
5543
|
"path",
|
|
5500
5544
|
{
|
|
@@ -5517,11 +5561,11 @@ var ICQuote = /* @__PURE__ */ __name((props) => {
|
|
|
5517
5561
|
}, "ICQuote");
|
|
5518
5562
|
|
|
5519
5563
|
// src/assets/document-check.tsx
|
|
5520
|
-
import { jsx as jsx117, jsxs as
|
|
5564
|
+
import { jsx as jsx117, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
5521
5565
|
var ICDocumentCheck = /* @__PURE__ */ __name((props) => {
|
|
5522
5566
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5523
5567
|
if (fill && thick) {
|
|
5524
|
-
return /* @__PURE__ */
|
|
5568
|
+
return /* @__PURE__ */ jsxs85("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5525
5569
|
/* @__PURE__ */ jsx117(
|
|
5526
5570
|
"path",
|
|
5527
5571
|
{
|
|
@@ -5540,7 +5584,7 @@ var ICDocumentCheck = /* @__PURE__ */ __name((props) => {
|
|
|
5540
5584
|
] });
|
|
5541
5585
|
}
|
|
5542
5586
|
if (thick) {
|
|
5543
|
-
return /* @__PURE__ */
|
|
5587
|
+
return /* @__PURE__ */ jsxs85("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5544
5588
|
/* @__PURE__ */ jsx117(
|
|
5545
5589
|
"path",
|
|
5546
5590
|
{
|
|
@@ -5560,7 +5604,7 @@ var ICDocumentCheck = /* @__PURE__ */ __name((props) => {
|
|
|
5560
5604
|
] });
|
|
5561
5605
|
}
|
|
5562
5606
|
if (fill) {
|
|
5563
|
-
return /* @__PURE__ */
|
|
5607
|
+
return /* @__PURE__ */ jsxs85("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5564
5608
|
/* @__PURE__ */ jsx117(
|
|
5565
5609
|
"path",
|
|
5566
5610
|
{
|
|
@@ -5584,7 +5628,7 @@ var ICDocumentCheck = /* @__PURE__ */ __name((props) => {
|
|
|
5584
5628
|
)
|
|
5585
5629
|
] });
|
|
5586
5630
|
}
|
|
5587
|
-
return /* @__PURE__ */
|
|
5631
|
+
return /* @__PURE__ */ jsxs85("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5588
5632
|
/* @__PURE__ */ jsx117(
|
|
5589
5633
|
"path",
|
|
5590
5634
|
{
|
|
@@ -5631,11 +5675,11 @@ var ICBlock = /* @__PURE__ */ __name((props) => {
|
|
|
5631
5675
|
}, "ICBlock");
|
|
5632
5676
|
|
|
5633
5677
|
// src/assets/bookmark-cancel.tsx
|
|
5634
|
-
import { jsx as jsx119, jsxs as
|
|
5678
|
+
import { jsx as jsx119, jsxs as jsxs86 } from "react/jsx-runtime";
|
|
5635
5679
|
var ICBookmarkCancel = /* @__PURE__ */ __name((props) => {
|
|
5636
5680
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5637
5681
|
if (fill && thick) {
|
|
5638
|
-
return /* @__PURE__ */
|
|
5682
|
+
return /* @__PURE__ */ jsxs86("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5639
5683
|
/* @__PURE__ */ jsx119("path", { d: "M3.67651 6.50421L6.50494 3.67578L44.3233 41.4941L41.4949 44.3226L3.67651 6.50421Z", fill: "#1E1E1F" }),
|
|
5640
5684
|
/* @__PURE__ */ jsx119("path", { d: "M12.0713 5L41.0001 33.9287V7C41.0001 5.89543 40.1046 5 39.0001 5H12.0713Z", fill: "#1E1E1F" }),
|
|
5641
5685
|
/* @__PURE__ */ jsx119(
|
|
@@ -5648,7 +5692,7 @@ var ICBookmarkCancel = /* @__PURE__ */ __name((props) => {
|
|
|
5648
5692
|
] });
|
|
5649
5693
|
}
|
|
5650
5694
|
if (thick) {
|
|
5651
|
-
return /* @__PURE__ */
|
|
5695
|
+
return /* @__PURE__ */ jsxs86("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5652
5696
|
/* @__PURE__ */ jsx119(
|
|
5653
5697
|
"path",
|
|
5654
5698
|
{
|
|
@@ -5673,7 +5717,7 @@ var ICBookmarkCancel = /* @__PURE__ */ __name((props) => {
|
|
|
5673
5717
|
] });
|
|
5674
5718
|
}
|
|
5675
5719
|
if (fill) {
|
|
5676
|
-
return /* @__PURE__ */
|
|
5720
|
+
return /* @__PURE__ */ jsxs86("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5677
5721
|
/* @__PURE__ */ jsx119("path", { d: "M41.9395 44.0608L44.0608 41.9395L6.06077 3.93945L3.93945 6.06077L41.9395 44.0608Z", fill: "#1E1E1F" }),
|
|
5678
5722
|
/* @__PURE__ */ jsx119("path", { d: "M39 5.00023C40.1046 5.00023 41 5.89566 41 7.00023V34.6361L11.3642 5.00023H39Z", fill: "#1E1E1F" }),
|
|
5679
5723
|
/* @__PURE__ */ jsx119(
|
|
@@ -5685,7 +5729,7 @@ var ICBookmarkCancel = /* @__PURE__ */ __name((props) => {
|
|
|
5685
5729
|
)
|
|
5686
5730
|
] });
|
|
5687
5731
|
}
|
|
5688
|
-
return /* @__PURE__ */
|
|
5732
|
+
return /* @__PURE__ */ jsxs86("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5689
5733
|
/* @__PURE__ */ jsx119("path", { d: "M41.9393 44.0608L44.0606 41.9395L6.06065 3.93945L3.93933 6.06077L41.9393 44.0608Z", fill: "#1E1E1F" }),
|
|
5690
5734
|
/* @__PURE__ */ jsx119(
|
|
5691
5735
|
"path",
|
|
@@ -5771,11 +5815,11 @@ var ICArrowUpLeft = /* @__PURE__ */ __name((props) => {
|
|
|
5771
5815
|
}, "ICArrowUpLeft");
|
|
5772
5816
|
|
|
5773
5817
|
// src/assets/email.tsx
|
|
5774
|
-
import { jsx as jsx123, jsxs as
|
|
5818
|
+
import { jsx as jsx123, jsxs as jsxs87 } from "react/jsx-runtime";
|
|
5775
5819
|
var ICEmail = /* @__PURE__ */ __name((props) => {
|
|
5776
5820
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5777
5821
|
if (fill && thick) {
|
|
5778
|
-
return /* @__PURE__ */
|
|
5822
|
+
return /* @__PURE__ */ jsxs87("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5779
5823
|
/* @__PURE__ */ jsx123(
|
|
5780
5824
|
"path",
|
|
5781
5825
|
{
|
|
@@ -5804,7 +5848,7 @@ var ICEmail = /* @__PURE__ */ __name((props) => {
|
|
|
5804
5848
|
) });
|
|
5805
5849
|
}
|
|
5806
5850
|
if (fill) {
|
|
5807
|
-
return /* @__PURE__ */
|
|
5851
|
+
return /* @__PURE__ */ jsxs87("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5808
5852
|
/* @__PURE__ */ jsx123(
|
|
5809
5853
|
"path",
|
|
5810
5854
|
{
|
|
@@ -5833,17 +5877,17 @@ var ICEmail = /* @__PURE__ */ __name((props) => {
|
|
|
5833
5877
|
}, "ICEmail");
|
|
5834
5878
|
|
|
5835
5879
|
// src/assets/filter.tsx
|
|
5836
|
-
import { jsx as jsx124, jsxs as
|
|
5880
|
+
import { jsx as jsx124, jsxs as jsxs88 } from "react/jsx-runtime";
|
|
5837
5881
|
var ICFilter = /* @__PURE__ */ __name((props) => {
|
|
5838
5882
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5839
5883
|
if (thick) {
|
|
5840
|
-
return /* @__PURE__ */
|
|
5884
|
+
return /* @__PURE__ */ jsxs88("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5841
5885
|
/* @__PURE__ */ jsx124("path", { d: "M42 16H6V12H42V16Z", fill: color }),
|
|
5842
5886
|
/* @__PURE__ */ jsx124("path", { d: "M36 26H12V22H36V26Z", fill: color }),
|
|
5843
5887
|
/* @__PURE__ */ jsx124("path", { d: "M19 36H29V32H19V36Z", fill: color })
|
|
5844
5888
|
] });
|
|
5845
5889
|
}
|
|
5846
|
-
return /* @__PURE__ */
|
|
5890
|
+
return /* @__PURE__ */ jsxs88("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5847
5891
|
/* @__PURE__ */ jsx124("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M36 25.5H12V22.5H36V25.5Z", fill: color }),
|
|
5848
5892
|
/* @__PURE__ */ jsx124("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M42 15.5H6V12.5H42V15.5Z", fill: color }),
|
|
5849
5893
|
/* @__PURE__ */ jsx124("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M29 35.5H19V32.5H29V35.5Z", fill: color })
|
|
@@ -5851,11 +5895,11 @@ var ICFilter = /* @__PURE__ */ __name((props) => {
|
|
|
5851
5895
|
}, "ICFilter");
|
|
5852
5896
|
|
|
5853
5897
|
// src/assets/timer.tsx
|
|
5854
|
-
import { jsx as jsx125, jsxs as
|
|
5898
|
+
import { jsx as jsx125, jsxs as jsxs89 } from "react/jsx-runtime";
|
|
5855
5899
|
var ICTimer = /* @__PURE__ */ __name((props) => {
|
|
5856
5900
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5857
5901
|
if (thick) {
|
|
5858
|
-
return /* @__PURE__ */
|
|
5902
|
+
return /* @__PURE__ */ jsxs89("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5859
5903
|
/* @__PURE__ */ jsx125("path", { d: "M18 6H30V2H18V6Z", fill: color }),
|
|
5860
5904
|
/* @__PURE__ */ jsx125("path", { d: "M26 26V15H22V26H26Z", fill: color }),
|
|
5861
5905
|
/* @__PURE__ */ jsx125(
|
|
@@ -5869,7 +5913,7 @@ var ICTimer = /* @__PURE__ */ __name((props) => {
|
|
|
5869
5913
|
)
|
|
5870
5914
|
] });
|
|
5871
5915
|
}
|
|
5872
|
-
return /* @__PURE__ */
|
|
5916
|
+
return /* @__PURE__ */ jsxs89("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5873
5917
|
/* @__PURE__ */ jsx125("path", { d: "M18 5.5H30V2.5H18V5.5Z", fill: color }),
|
|
5874
5918
|
/* @__PURE__ */ jsx125("path", { d: "M25.5 26V15H22.5V26H25.5Z", fill: color }),
|
|
5875
5919
|
/* @__PURE__ */ jsx125(
|
|
@@ -5885,11 +5929,11 @@ var ICTimer = /* @__PURE__ */ __name((props) => {
|
|
|
5885
5929
|
}, "ICTimer");
|
|
5886
5930
|
|
|
5887
5931
|
// src/assets/play-button.tsx
|
|
5888
|
-
import { jsx as jsx126, jsxs as
|
|
5932
|
+
import { jsx as jsx126, jsxs as jsxs90 } from "react/jsx-runtime";
|
|
5889
5933
|
var ICPlayButton = /* @__PURE__ */ __name((props) => {
|
|
5890
5934
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5891
5935
|
if (thick) {
|
|
5892
|
-
return /* @__PURE__ */
|
|
5936
|
+
return /* @__PURE__ */ jsxs90("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5893
5937
|
/* @__PURE__ */ jsx126(
|
|
5894
5938
|
"path",
|
|
5895
5939
|
{
|
|
@@ -5913,7 +5957,7 @@ var ICPlayButton = /* @__PURE__ */ __name((props) => {
|
|
|
5913
5957
|
}
|
|
5914
5958
|
) });
|
|
5915
5959
|
}
|
|
5916
|
-
return /* @__PURE__ */
|
|
5960
|
+
return /* @__PURE__ */ jsxs90("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5917
5961
|
/* @__PURE__ */ jsx126(
|
|
5918
5962
|
"path",
|
|
5919
5963
|
{
|
|
@@ -5928,12 +5972,12 @@ var ICPlayButton = /* @__PURE__ */ __name((props) => {
|
|
|
5928
5972
|
}, "ICPlayButton");
|
|
5929
5973
|
|
|
5930
5974
|
// src/assets/text-select.tsx
|
|
5931
|
-
import { jsx as jsx127, jsxs as
|
|
5975
|
+
import { jsx as jsx127, jsxs as jsxs91 } from "react/jsx-runtime";
|
|
5932
5976
|
var ICTextSelect = /* @__PURE__ */ __name((props) => {
|
|
5933
5977
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5934
5978
|
if (thick) {
|
|
5935
|
-
return /* @__PURE__ */
|
|
5936
|
-
/* @__PURE__ */
|
|
5979
|
+
return /* @__PURE__ */ jsxs91("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5980
|
+
/* @__PURE__ */ jsxs91("g", { clipPath: "url(#clip0_3527_4665)", children: [
|
|
5937
5981
|
/* @__PURE__ */ jsx127("path", { d: "M26 19H30V15H18V19H22V31H26V19Z", fill: color }),
|
|
5938
5982
|
/* @__PURE__ */ jsx127(
|
|
5939
5983
|
"path",
|
|
@@ -5948,7 +5992,7 @@ var ICTextSelect = /* @__PURE__ */ __name((props) => {
|
|
|
5948
5992
|
/* @__PURE__ */ jsx127("defs", { children: /* @__PURE__ */ jsx127("clipPath", { id: "clip0_3527_4665", children: /* @__PURE__ */ jsx127("rect", { width: size, height: size, fill: "white" }) }) })
|
|
5949
5993
|
] });
|
|
5950
5994
|
}
|
|
5951
|
-
return /* @__PURE__ */
|
|
5995
|
+
return /* @__PURE__ */ jsxs91("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5952
5996
|
/* @__PURE__ */ jsx127("path", { d: "M25.5 18.5H30V15.5H18V18.5H22.5V31H25.5V18.5Z", fill: color }),
|
|
5953
5997
|
/* @__PURE__ */ jsx127(
|
|
5954
5998
|
"path",
|
|
@@ -5979,11 +6023,11 @@ var ICArrowDropDown = /* @__PURE__ */ __name((props) => {
|
|
|
5979
6023
|
}, "ICArrowDropDown");
|
|
5980
6024
|
|
|
5981
6025
|
// src/assets/bell.tsx
|
|
5982
|
-
import { jsx as jsx129, jsxs as
|
|
6026
|
+
import { jsx as jsx129, jsxs as jsxs92 } from "react/jsx-runtime";
|
|
5983
6027
|
var ICBell = /* @__PURE__ */ __name((props) => {
|
|
5984
6028
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5985
6029
|
if (thick) {
|
|
5986
|
-
return /* @__PURE__ */
|
|
6030
|
+
return /* @__PURE__ */ jsxs92("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5987
6031
|
/* @__PURE__ */ jsx129(
|
|
5988
6032
|
"path",
|
|
5989
6033
|
{
|
|
@@ -5997,7 +6041,7 @@ var ICBell = /* @__PURE__ */ __name((props) => {
|
|
|
5997
6041
|
] });
|
|
5998
6042
|
}
|
|
5999
6043
|
if (fill) {
|
|
6000
|
-
return /* @__PURE__ */
|
|
6044
|
+
return /* @__PURE__ */ jsxs92("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6001
6045
|
/* @__PURE__ */ jsx129(
|
|
6002
6046
|
"path",
|
|
6003
6047
|
{
|
|
@@ -6008,7 +6052,7 @@ var ICBell = /* @__PURE__ */ __name((props) => {
|
|
|
6008
6052
|
/* @__PURE__ */ jsx129("path", { d: "M28 40H20C20 42.2091 21.7909 44 24 44C26.2091 44 28 42.2091 28 40Z", fill: color })
|
|
6009
6053
|
] });
|
|
6010
6054
|
}
|
|
6011
|
-
return /* @__PURE__ */
|
|
6055
|
+
return /* @__PURE__ */ jsxs92("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6012
6056
|
/* @__PURE__ */ jsx129(
|
|
6013
6057
|
"path",
|
|
6014
6058
|
{
|
|
@@ -6023,11 +6067,11 @@ var ICBell = /* @__PURE__ */ __name((props) => {
|
|
|
6023
6067
|
}, "ICBell");
|
|
6024
6068
|
|
|
6025
6069
|
// src/assets/secret-mode.tsx
|
|
6026
|
-
import { jsx as jsx130, jsxs as
|
|
6070
|
+
import { jsx as jsx130, jsxs as jsxs93 } from "react/jsx-runtime";
|
|
6027
6071
|
var ICSecretMode = /* @__PURE__ */ __name((props) => {
|
|
6028
6072
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6029
6073
|
if (thick) {
|
|
6030
|
-
return /* @__PURE__ */
|
|
6074
|
+
return /* @__PURE__ */ jsxs93("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6031
6075
|
/* @__PURE__ */ jsx130(
|
|
6032
6076
|
"path",
|
|
6033
6077
|
{
|
|
@@ -6049,7 +6093,7 @@ var ICSecretMode = /* @__PURE__ */ __name((props) => {
|
|
|
6049
6093
|
] });
|
|
6050
6094
|
}
|
|
6051
6095
|
if (fill) {
|
|
6052
|
-
return /* @__PURE__ */
|
|
6096
|
+
return /* @__PURE__ */ jsxs93("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6053
6097
|
/* @__PURE__ */ jsx130(
|
|
6054
6098
|
"path",
|
|
6055
6099
|
{
|
|
@@ -6068,7 +6112,7 @@ var ICSecretMode = /* @__PURE__ */ __name((props) => {
|
|
|
6068
6112
|
)
|
|
6069
6113
|
] });
|
|
6070
6114
|
}
|
|
6071
|
-
return /* @__PURE__ */
|
|
6115
|
+
return /* @__PURE__ */ jsxs93("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6072
6116
|
/* @__PURE__ */ jsx130(
|
|
6073
6117
|
"path",
|
|
6074
6118
|
{
|
|
@@ -6091,11 +6135,11 @@ var ICSecretMode = /* @__PURE__ */ __name((props) => {
|
|
|
6091
6135
|
}, "ICSecretMode");
|
|
6092
6136
|
|
|
6093
6137
|
// src/assets/add-clock.tsx
|
|
6094
|
-
import { jsx as jsx131, jsxs as
|
|
6138
|
+
import { jsx as jsx131, jsxs as jsxs94 } from "react/jsx-runtime";
|
|
6095
6139
|
var ICAddClock = /* @__PURE__ */ __name((props) => {
|
|
6096
6140
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6097
6141
|
if (thick) {
|
|
6098
|
-
return /* @__PURE__ */
|
|
6142
|
+
return /* @__PURE__ */ jsxs94("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6099
6143
|
/* @__PURE__ */ jsx131(
|
|
6100
6144
|
"path",
|
|
6101
6145
|
{
|
|
@@ -6119,7 +6163,7 @@ var ICAddClock = /* @__PURE__ */ __name((props) => {
|
|
|
6119
6163
|
)
|
|
6120
6164
|
] });
|
|
6121
6165
|
}
|
|
6122
|
-
return /* @__PURE__ */
|
|
6166
|
+
return /* @__PURE__ */ jsxs94("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6123
6167
|
/* @__PURE__ */ jsx131(
|
|
6124
6168
|
"path",
|
|
6125
6169
|
{
|
|
@@ -6145,11 +6189,11 @@ var ICAddClock = /* @__PURE__ */ __name((props) => {
|
|
|
6145
6189
|
}, "ICAddClock");
|
|
6146
6190
|
|
|
6147
6191
|
// src/assets/clock.tsx
|
|
6148
|
-
import { jsx as jsx132, jsxs as
|
|
6192
|
+
import { jsx as jsx132, jsxs as jsxs95 } from "react/jsx-runtime";
|
|
6149
6193
|
var ICClock = /* @__PURE__ */ __name((props) => {
|
|
6150
6194
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6151
6195
|
if (thick) {
|
|
6152
|
-
return /* @__PURE__ */
|
|
6196
|
+
return /* @__PURE__ */ jsxs95("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6153
6197
|
/* @__PURE__ */ jsx132(
|
|
6154
6198
|
"path",
|
|
6155
6199
|
{
|
|
@@ -6168,7 +6212,7 @@ var ICClock = /* @__PURE__ */ __name((props) => {
|
|
|
6168
6212
|
)
|
|
6169
6213
|
] });
|
|
6170
6214
|
}
|
|
6171
|
-
return /* @__PURE__ */
|
|
6215
|
+
return /* @__PURE__ */ jsxs95("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6172
6216
|
/* @__PURE__ */ jsx132(
|
|
6173
6217
|
"path",
|
|
6174
6218
|
{
|
|
@@ -6215,11 +6259,11 @@ var ICArrowBackward = /* @__PURE__ */ __name((props) => {
|
|
|
6215
6259
|
}, "ICArrowBackward");
|
|
6216
6260
|
|
|
6217
6261
|
// src/assets/link.tsx
|
|
6218
|
-
import { jsx as jsx134, jsxs as
|
|
6262
|
+
import { jsx as jsx134, jsxs as jsxs96 } from "react/jsx-runtime";
|
|
6219
6263
|
var ICLink = /* @__PURE__ */ __name((props) => {
|
|
6220
6264
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6221
6265
|
if (thick) {
|
|
6222
|
-
return /* @__PURE__ */
|
|
6266
|
+
return /* @__PURE__ */ jsxs96("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6223
6267
|
/* @__PURE__ */ jsx134(
|
|
6224
6268
|
"path",
|
|
6225
6269
|
{
|
|
@@ -6236,7 +6280,7 @@ var ICLink = /* @__PURE__ */ __name((props) => {
|
|
|
6236
6280
|
)
|
|
6237
6281
|
] });
|
|
6238
6282
|
}
|
|
6239
|
-
return /* @__PURE__ */
|
|
6283
|
+
return /* @__PURE__ */ jsxs96("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6240
6284
|
/* @__PURE__ */ jsx134(
|
|
6241
6285
|
"path",
|
|
6242
6286
|
{
|
|
@@ -6255,11 +6299,11 @@ var ICLink = /* @__PURE__ */ __name((props) => {
|
|
|
6255
6299
|
}, "ICLink");
|
|
6256
6300
|
|
|
6257
6301
|
// src/assets/sheet-export.tsx
|
|
6258
|
-
import { jsx as jsx135, jsxs as
|
|
6302
|
+
import { jsx as jsx135, jsxs as jsxs97 } from "react/jsx-runtime";
|
|
6259
6303
|
var ICSheetExport = /* @__PURE__ */ __name((props) => {
|
|
6260
6304
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6261
6305
|
if (thick) {
|
|
6262
|
-
return /* @__PURE__ */
|
|
6306
|
+
return /* @__PURE__ */ jsxs97("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6263
6307
|
/* @__PURE__ */ jsx135(
|
|
6264
6308
|
"path",
|
|
6265
6309
|
{
|
|
@@ -6278,7 +6322,7 @@ var ICSheetExport = /* @__PURE__ */ __name((props) => {
|
|
|
6278
6322
|
)
|
|
6279
6323
|
] });
|
|
6280
6324
|
}
|
|
6281
|
-
return /* @__PURE__ */
|
|
6325
|
+
return /* @__PURE__ */ jsxs97("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6282
6326
|
/* @__PURE__ */ jsx135(
|
|
6283
6327
|
"path",
|
|
6284
6328
|
{
|
|
@@ -6299,11 +6343,11 @@ var ICSheetExport = /* @__PURE__ */ __name((props) => {
|
|
|
6299
6343
|
}, "ICSheetExport");
|
|
6300
6344
|
|
|
6301
6345
|
// src/assets/shield-usage.tsx
|
|
6302
|
-
import { jsx as jsx136, jsxs as
|
|
6346
|
+
import { jsx as jsx136, jsxs as jsxs98 } from "react/jsx-runtime";
|
|
6303
6347
|
var ICShieldUsage = /* @__PURE__ */ __name((props) => {
|
|
6304
6348
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6305
6349
|
if (thick) {
|
|
6306
|
-
return /* @__PURE__ */
|
|
6350
|
+
return /* @__PURE__ */ jsxs98("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6307
6351
|
/* @__PURE__ */ jsx136(
|
|
6308
6352
|
"path",
|
|
6309
6353
|
{
|
|
@@ -6325,7 +6369,7 @@ var ICShieldUsage = /* @__PURE__ */ __name((props) => {
|
|
|
6325
6369
|
)
|
|
6326
6370
|
] });
|
|
6327
6371
|
}
|
|
6328
|
-
return /* @__PURE__ */
|
|
6372
|
+
return /* @__PURE__ */ jsxs98("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6329
6373
|
/* @__PURE__ */ jsx136(
|
|
6330
6374
|
"path",
|
|
6331
6375
|
{
|
|
@@ -6455,11 +6499,11 @@ var ICArrowDropRight = /* @__PURE__ */ __name((props) => {
|
|
|
6455
6499
|
}, "ICArrowDropRight");
|
|
6456
6500
|
|
|
6457
6501
|
// src/assets/arrow-up-down.tsx
|
|
6458
|
-
import { jsx as jsx142, jsxs as
|
|
6502
|
+
import { jsx as jsx142, jsxs as jsxs99 } from "react/jsx-runtime";
|
|
6459
6503
|
var ICArrowUpDown = /* @__PURE__ */ __name((props) => {
|
|
6460
6504
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6461
6505
|
if (thick) {
|
|
6462
|
-
return /* @__PURE__ */
|
|
6506
|
+
return /* @__PURE__ */ jsxs99("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6463
6507
|
/* @__PURE__ */ jsx142(
|
|
6464
6508
|
"path",
|
|
6465
6509
|
{
|
|
@@ -6476,7 +6520,7 @@ var ICArrowUpDown = /* @__PURE__ */ __name((props) => {
|
|
|
6476
6520
|
)
|
|
6477
6521
|
] });
|
|
6478
6522
|
}
|
|
6479
|
-
return /* @__PURE__ */
|
|
6523
|
+
return /* @__PURE__ */ jsxs99("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6480
6524
|
/* @__PURE__ */ jsx142(
|
|
6481
6525
|
"path",
|
|
6482
6526
|
{
|
|
@@ -6495,11 +6539,11 @@ var ICArrowUpDown = /* @__PURE__ */ __name((props) => {
|
|
|
6495
6539
|
}, "ICArrowUpDown");
|
|
6496
6540
|
|
|
6497
6541
|
// src/assets/google-export.tsx
|
|
6498
|
-
import { jsx as jsx143, jsxs as
|
|
6542
|
+
import { jsx as jsx143, jsxs as jsxs100 } from "react/jsx-runtime";
|
|
6499
6543
|
var ICGoogleExport = /* @__PURE__ */ __name((props) => {
|
|
6500
6544
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6501
6545
|
if (thick) {
|
|
6502
|
-
return /* @__PURE__ */
|
|
6546
|
+
return /* @__PURE__ */ jsxs100("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6503
6547
|
/* @__PURE__ */ jsx143(
|
|
6504
6548
|
"path",
|
|
6505
6549
|
{
|
|
@@ -6523,7 +6567,7 @@ var ICGoogleExport = /* @__PURE__ */ __name((props) => {
|
|
|
6523
6567
|
)
|
|
6524
6568
|
] });
|
|
6525
6569
|
}
|
|
6526
|
-
return /* @__PURE__ */
|
|
6570
|
+
return /* @__PURE__ */ jsxs100("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6527
6571
|
/* @__PURE__ */ jsx143(
|
|
6528
6572
|
"path",
|
|
6529
6573
|
{
|
|
@@ -6549,11 +6593,11 @@ var ICGoogleExport = /* @__PURE__ */ __name((props) => {
|
|
|
6549
6593
|
}, "ICGoogleExport");
|
|
6550
6594
|
|
|
6551
6595
|
// src/assets/shield-person.tsx
|
|
6552
|
-
import { jsx as jsx144, jsxs as
|
|
6596
|
+
import { jsx as jsx144, jsxs as jsxs101 } from "react/jsx-runtime";
|
|
6553
6597
|
var ICShieldPerson = /* @__PURE__ */ __name((props) => {
|
|
6554
6598
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6555
6599
|
if (thick) {
|
|
6556
|
-
return /* @__PURE__ */
|
|
6600
|
+
return /* @__PURE__ */ jsxs101("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6557
6601
|
/* @__PURE__ */ jsx144(
|
|
6558
6602
|
"path",
|
|
6559
6603
|
{
|
|
@@ -6581,7 +6625,7 @@ var ICShieldPerson = /* @__PURE__ */ __name((props) => {
|
|
|
6581
6625
|
)
|
|
6582
6626
|
] });
|
|
6583
6627
|
}
|
|
6584
|
-
return /* @__PURE__ */
|
|
6628
|
+
return /* @__PURE__ */ jsxs101("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6585
6629
|
/* @__PURE__ */ jsx144(
|
|
6586
6630
|
"path",
|
|
6587
6631
|
{
|
|
@@ -6685,11 +6729,11 @@ var ICUndo = /* @__PURE__ */ __name((props) => {
|
|
|
6685
6729
|
}, "ICUndo");
|
|
6686
6730
|
|
|
6687
6731
|
// src/assets/expand.tsx
|
|
6688
|
-
import { jsx as jsx148, jsxs as
|
|
6732
|
+
import { jsx as jsx148, jsxs as jsxs102 } from "react/jsx-runtime";
|
|
6689
6733
|
var ICExpand = /* @__PURE__ */ __name((props) => {
|
|
6690
6734
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6691
6735
|
if (thick) {
|
|
6692
|
-
return /* @__PURE__ */
|
|
6736
|
+
return /* @__PURE__ */ jsxs102("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6693
6737
|
/* @__PURE__ */ jsx148(
|
|
6694
6738
|
"path",
|
|
6695
6739
|
{
|
|
@@ -6706,7 +6750,7 @@ var ICExpand = /* @__PURE__ */ __name((props) => {
|
|
|
6706
6750
|
)
|
|
6707
6751
|
] });
|
|
6708
6752
|
}
|
|
6709
|
-
return /* @__PURE__ */
|
|
6753
|
+
return /* @__PURE__ */ jsxs102("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6710
6754
|
/* @__PURE__ */ jsx148(
|
|
6711
6755
|
"path",
|
|
6712
6756
|
{
|
|
@@ -6762,11 +6806,11 @@ var ICVerificationBadge = /* @__PURE__ */ __name((props) => {
|
|
|
6762
6806
|
}, "ICVerificationBadge");
|
|
6763
6807
|
|
|
6764
6808
|
// src/assets/volume-up.tsx
|
|
6765
|
-
import { jsx as jsx150, jsxs as
|
|
6809
|
+
import { jsx as jsx150, jsxs as jsxs103 } from "react/jsx-runtime";
|
|
6766
6810
|
var ICVolumeUp = /* @__PURE__ */ __name((props) => {
|
|
6767
6811
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6768
6812
|
if (thick) {
|
|
6769
|
-
return /* @__PURE__ */
|
|
6813
|
+
return /* @__PURE__ */ jsxs103("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6770
6814
|
/* @__PURE__ */ jsx150(
|
|
6771
6815
|
"path",
|
|
6772
6816
|
{
|
|
@@ -6793,7 +6837,7 @@ var ICVolumeUp = /* @__PURE__ */ __name((props) => {
|
|
|
6793
6837
|
] });
|
|
6794
6838
|
}
|
|
6795
6839
|
if (fill) {
|
|
6796
|
-
return /* @__PURE__ */
|
|
6840
|
+
return /* @__PURE__ */ jsxs103("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6797
6841
|
/* @__PURE__ */ jsx150(
|
|
6798
6842
|
"path",
|
|
6799
6843
|
{
|
|
@@ -6817,7 +6861,7 @@ var ICVolumeUp = /* @__PURE__ */ __name((props) => {
|
|
|
6817
6861
|
)
|
|
6818
6862
|
] });
|
|
6819
6863
|
}
|
|
6820
|
-
return /* @__PURE__ */
|
|
6864
|
+
return /* @__PURE__ */ jsxs103("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6821
6865
|
/* @__PURE__ */ jsx150(
|
|
6822
6866
|
"path",
|
|
6823
6867
|
{
|
|
@@ -6884,11 +6928,11 @@ var ICVolume = /* @__PURE__ */ __name((props) => {
|
|
|
6884
6928
|
}, "ICVolume");
|
|
6885
6929
|
|
|
6886
6930
|
// src/assets/folder-open-share.tsx
|
|
6887
|
-
import { jsx as jsx152, jsxs as
|
|
6931
|
+
import { jsx as jsx152, jsxs as jsxs104 } from "react/jsx-runtime";
|
|
6888
6932
|
var ICFolderOpenShare = /* @__PURE__ */ __name((props) => {
|
|
6889
6933
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6890
6934
|
if (thick) {
|
|
6891
|
-
return /* @__PURE__ */
|
|
6935
|
+
return /* @__PURE__ */ jsxs104("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6892
6936
|
/* @__PURE__ */ jsx152(
|
|
6893
6937
|
"path",
|
|
6894
6938
|
{
|
|
@@ -6913,7 +6957,7 @@ var ICFolderOpenShare = /* @__PURE__ */ __name((props) => {
|
|
|
6913
6957
|
] });
|
|
6914
6958
|
}
|
|
6915
6959
|
if (fill) {
|
|
6916
|
-
return /* @__PURE__ */
|
|
6960
|
+
return /* @__PURE__ */ jsxs104("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6917
6961
|
/* @__PURE__ */ jsx152(
|
|
6918
6962
|
"path",
|
|
6919
6963
|
{
|
|
@@ -6937,7 +6981,7 @@ var ICFolderOpenShare = /* @__PURE__ */ __name((props) => {
|
|
|
6937
6981
|
)
|
|
6938
6982
|
] });
|
|
6939
6983
|
}
|
|
6940
|
-
return /* @__PURE__ */
|
|
6984
|
+
return /* @__PURE__ */ jsxs104("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6941
6985
|
/* @__PURE__ */ jsx152(
|
|
6942
6986
|
"path",
|
|
6943
6987
|
{
|
|
@@ -6963,11 +7007,11 @@ var ICFolderOpenShare = /* @__PURE__ */ __name((props) => {
|
|
|
6963
7007
|
}, "ICFolderOpenShare");
|
|
6964
7008
|
|
|
6965
7009
|
// src/assets/folder-share.tsx
|
|
6966
|
-
import { jsx as jsx153, jsxs as
|
|
7010
|
+
import { jsx as jsx153, jsxs as jsxs105 } from "react/jsx-runtime";
|
|
6967
7011
|
var ICFolderShare = /* @__PURE__ */ __name((props) => {
|
|
6968
7012
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
6969
7013
|
if (thick) {
|
|
6970
|
-
return /* @__PURE__ */
|
|
7014
|
+
return /* @__PURE__ */ jsxs105("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6971
7015
|
/* @__PURE__ */ jsx153(
|
|
6972
7016
|
"path",
|
|
6973
7017
|
{
|
|
@@ -6992,7 +7036,7 @@ var ICFolderShare = /* @__PURE__ */ __name((props) => {
|
|
|
6992
7036
|
] });
|
|
6993
7037
|
}
|
|
6994
7038
|
if (fill) {
|
|
6995
|
-
return /* @__PURE__ */
|
|
7039
|
+
return /* @__PURE__ */ jsxs105("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
6996
7040
|
/* @__PURE__ */ jsx153(
|
|
6997
7041
|
"path",
|
|
6998
7042
|
{
|
|
@@ -7016,7 +7060,7 @@ var ICFolderShare = /* @__PURE__ */ __name((props) => {
|
|
|
7016
7060
|
)
|
|
7017
7061
|
] });
|
|
7018
7062
|
}
|
|
7019
|
-
return /* @__PURE__ */
|
|
7063
|
+
return /* @__PURE__ */ jsxs105("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
7020
7064
|
/* @__PURE__ */ jsx153(
|
|
7021
7065
|
"path",
|
|
7022
7066
|
{
|
|
@@ -7042,7 +7086,7 @@ var ICFolderShare = /* @__PURE__ */ __name((props) => {
|
|
|
7042
7086
|
}, "ICFolderShare");
|
|
7043
7087
|
|
|
7044
7088
|
// src/assets/report.tsx
|
|
7045
|
-
import { jsx as jsx154, jsxs as
|
|
7089
|
+
import { jsx as jsx154, jsxs as jsxs106 } from "react/jsx-runtime";
|
|
7046
7090
|
var ICReport = /* @__PURE__ */ __name((props) => {
|
|
7047
7091
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
7048
7092
|
if (fill && thick) {
|
|
@@ -7057,7 +7101,7 @@ var ICReport = /* @__PURE__ */ __name((props) => {
|
|
|
7057
7101
|
) });
|
|
7058
7102
|
}
|
|
7059
7103
|
if (thick) {
|
|
7060
|
-
return /* @__PURE__ */
|
|
7104
|
+
return /* @__PURE__ */ jsxs106("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
7061
7105
|
/* @__PURE__ */ jsx154(
|
|
7062
7106
|
"path",
|
|
7063
7107
|
{
|
|
@@ -7088,7 +7132,7 @@ var ICReport = /* @__PURE__ */ __name((props) => {
|
|
|
7088
7132
|
}
|
|
7089
7133
|
) });
|
|
7090
7134
|
}
|
|
7091
|
-
return /* @__PURE__ */
|
|
7135
|
+
return /* @__PURE__ */ jsxs106("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
7092
7136
|
/* @__PURE__ */ jsx154(
|
|
7093
7137
|
"path",
|
|
7094
7138
|
{
|
|
@@ -7206,11 +7250,11 @@ var ICFlowchart = /* @__PURE__ */ __name((props) => {
|
|
|
7206
7250
|
}, "ICFlowchart");
|
|
7207
7251
|
|
|
7208
7252
|
// src/assets/show-all.tsx
|
|
7209
|
-
import { jsx as jsx157, jsxs as
|
|
7253
|
+
import { jsx as jsx157, jsxs as jsxs107 } from "react/jsx-runtime";
|
|
7210
7254
|
var ICShowAll = /* @__PURE__ */ __name((props) => {
|
|
7211
7255
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
7212
7256
|
if (thick) {
|
|
7213
|
-
return /* @__PURE__ */
|
|
7257
|
+
return /* @__PURE__ */ jsxs107(
|
|
7214
7258
|
"svg",
|
|
7215
7259
|
{
|
|
7216
7260
|
...props,
|
|
@@ -7228,7 +7272,7 @@ var ICShowAll = /* @__PURE__ */ __name((props) => {
|
|
|
7228
7272
|
}
|
|
7229
7273
|
);
|
|
7230
7274
|
}
|
|
7231
|
-
return /* @__PURE__ */
|
|
7275
|
+
return /* @__PURE__ */ jsxs107(
|
|
7232
7276
|
"svg",
|
|
7233
7277
|
{
|
|
7234
7278
|
...props,
|
|
@@ -7248,11 +7292,11 @@ var ICShowAll = /* @__PURE__ */ __name((props) => {
|
|
|
7248
7292
|
}, "ICShowAll");
|
|
7249
7293
|
|
|
7250
7294
|
// src/assets/hide-all.tsx
|
|
7251
|
-
import { jsx as jsx158, jsxs as
|
|
7295
|
+
import { jsx as jsx158, jsxs as jsxs108 } from "react/jsx-runtime";
|
|
7252
7296
|
var ICHideAll = /* @__PURE__ */ __name((props) => {
|
|
7253
7297
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
7254
7298
|
if (thick) {
|
|
7255
|
-
return /* @__PURE__ */
|
|
7299
|
+
return /* @__PURE__ */ jsxs108(
|
|
7256
7300
|
"svg",
|
|
7257
7301
|
{
|
|
7258
7302
|
...props,
|
|
@@ -7270,7 +7314,7 @@ var ICHideAll = /* @__PURE__ */ __name((props) => {
|
|
|
7270
7314
|
}
|
|
7271
7315
|
);
|
|
7272
7316
|
}
|
|
7273
|
-
return /* @__PURE__ */
|
|
7317
|
+
return /* @__PURE__ */ jsxs108(
|
|
7274
7318
|
"svg",
|
|
7275
7319
|
{
|
|
7276
7320
|
...props,
|
|
@@ -7290,11 +7334,11 @@ var ICHideAll = /* @__PURE__ */ __name((props) => {
|
|
|
7290
7334
|
}, "ICHideAll");
|
|
7291
7335
|
|
|
7292
7336
|
// src/assets/brain.tsx
|
|
7293
|
-
import { jsx as jsx159, jsxs as
|
|
7337
|
+
import { jsx as jsx159, jsxs as jsxs109 } from "react/jsx-runtime";
|
|
7294
7338
|
var ICBrain = /* @__PURE__ */ __name((props) => {
|
|
7295
7339
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
7296
7340
|
if (fill && thick) {
|
|
7297
|
-
return /* @__PURE__ */
|
|
7341
|
+
return /* @__PURE__ */ jsxs109(
|
|
7298
7342
|
"svg",
|
|
7299
7343
|
{
|
|
7300
7344
|
...props,
|
|
@@ -7715,7 +7759,7 @@ var style_module_default3 = {
|
|
|
7715
7759
|
|
|
7716
7760
|
// src/components/Loading/index.tsx
|
|
7717
7761
|
import { cva as cva2 } from "cva";
|
|
7718
|
-
import { jsx as jsx161, jsxs as
|
|
7762
|
+
import { jsx as jsx161, jsxs as jsxs110 } from "react/jsx-runtime";
|
|
7719
7763
|
var loadingVariants = cva2({
|
|
7720
7764
|
base: [style_module_default3["loading-dot"]],
|
|
7721
7765
|
variants: {
|
|
@@ -7734,7 +7778,7 @@ var loadingVariants = cva2({
|
|
|
7734
7778
|
}
|
|
7735
7779
|
});
|
|
7736
7780
|
var Loading = /* @__PURE__ */ __name(({ size = "m", level = "inverse-label-static-primary" }) => {
|
|
7737
|
-
return /* @__PURE__ */
|
|
7781
|
+
return /* @__PURE__ */ jsxs110("div", { className: style_module_default3.loading, children: [
|
|
7738
7782
|
/* @__PURE__ */ jsx161("div", { className: loadingVariants({ size, level }) }),
|
|
7739
7783
|
/* @__PURE__ */ jsx161("div", { className: loadingVariants({ size, level }) }),
|
|
7740
7784
|
/* @__PURE__ */ jsx161("div", { className: loadingVariants({ size, level }) })
|
|
@@ -7742,7 +7786,7 @@ var Loading = /* @__PURE__ */ __name(({ size = "m", level = "inverse-label-stati
|
|
|
7742
7786
|
}, "Loading");
|
|
7743
7787
|
|
|
7744
7788
|
// src/components/Button/index.tsx
|
|
7745
|
-
import { Fragment as Fragment4, jsx as jsx162, jsxs as
|
|
7789
|
+
import { Fragment as Fragment4, jsx as jsx162, jsxs as jsxs111 } from "react/jsx-runtime";
|
|
7746
7790
|
var buttonIconSizeMap = {
|
|
7747
7791
|
cta: "m",
|
|
7748
7792
|
l: "s",
|
|
@@ -7875,9 +7919,9 @@ var DefaultButton = forwardRef(
|
|
|
7875
7919
|
type: buttonFillLevelIconTypeMap[`${fill}`][level],
|
|
7876
7920
|
fillType: buttonFillLevelIconFillTypeMap[`${fill}`][level]
|
|
7877
7921
|
};
|
|
7878
|
-
const renderContent = /* @__PURE__ */ __name((children2) => /* @__PURE__ */
|
|
7922
|
+
const renderContent = /* @__PURE__ */ __name((children2) => /* @__PURE__ */ jsxs111("span", { className: clsx2(defaultButtonChildrenVariants({ size })), children: [
|
|
7879
7923
|
!!leftIcon && !isLoading && /* @__PURE__ */ jsx162(Icon, { ...iconProps, ...leftIcon }),
|
|
7880
|
-
isLoading ? !!leftIcon || !!rightIcon ? /* @__PURE__ */
|
|
7924
|
+
isLoading ? !!leftIcon || !!rightIcon ? /* @__PURE__ */ jsxs111(Fragment4, { children: [
|
|
7881
7925
|
/* @__PURE__ */ jsx162(Loading, { size: buttonLoadingSizeMap[size], level: buttonLoadingLevelMap[level] }),
|
|
7882
7926
|
/* @__PURE__ */ jsx162("p", { className: style_module_default.content, children: children2 })
|
|
7883
7927
|
] }) : /* @__PURE__ */ jsx162(Loading, { size: buttonLoadingSizeMap[size], level: buttonLoadingLevelMap[level] }) : /* @__PURE__ */ jsx162("p", { className: style_module_default.content, children: children2 }),
|
|
@@ -8503,11 +8547,11 @@ var loading_default = {
|
|
|
8503
8547
|
|
|
8504
8548
|
// src/components/Toast/index.tsx
|
|
8505
8549
|
import { millisecondsInSecond as millisecondsInSecond2 } from "date-fns/constants";
|
|
8506
|
-
import { jsx as jsx164, jsxs as
|
|
8550
|
+
import { jsx as jsx164, jsxs as jsxs112 } from "react/jsx-runtime";
|
|
8507
8551
|
import { createElement } from "react";
|
|
8508
8552
|
var Toaster = /* @__PURE__ */ __name(() => {
|
|
8509
8553
|
const list = useRecoilValue(toastAtom);
|
|
8510
|
-
return /* @__PURE__ */
|
|
8554
|
+
return /* @__PURE__ */ jsxs112(Provider, { children: [
|
|
8511
8555
|
list.map((props) => /* @__PURE__ */ createElement(SingleToast, { ...props, key: props.toastId })),
|
|
8512
8556
|
/* @__PURE__ */ jsx164(Viewport, { className: style_module_default4.ToastViewport })
|
|
8513
8557
|
] });
|
|
@@ -8553,9 +8597,9 @@ var SingleToast = /* @__PURE__ */ __name((props) => {
|
|
|
8553
8597
|
if (!icon) return null;
|
|
8554
8598
|
return /* @__PURE__ */ jsx164("i", { className: style_module_default4.Icon, children: /* @__PURE__ */ jsx164(Icon, { ...icon, size: "m" }) });
|
|
8555
8599
|
}, "renderIcon");
|
|
8556
|
-
return /* @__PURE__ */
|
|
8600
|
+
return /* @__PURE__ */ jsxs112(Root, { className: style_module_default4.ToastRoot, open: isOpen, ...props, children: [
|
|
8557
8601
|
isLoading && !toastSuccess.current ? /* @__PURE__ */ jsx164("div", { ref: lottieRef, style: { width: "24px", height: "24px" } }) : renderIcon(),
|
|
8558
|
-
/* @__PURE__ */
|
|
8602
|
+
/* @__PURE__ */ jsxs112(Title, { className: style_module_default4.ToastTitle, children: [
|
|
8559
8603
|
/* @__PURE__ */ jsx164(
|
|
8560
8604
|
Paragraph,
|
|
8561
8605
|
{
|
|
@@ -8803,7 +8847,7 @@ var style_module_default7 = {
|
|
|
8803
8847
|
// src/components/TextButton/index.tsx
|
|
8804
8848
|
import { Children as Children2, cloneElement as cloneElement2, forwardRef as forwardRef7 } from "react";
|
|
8805
8849
|
import clsx8 from "clsx";
|
|
8806
|
-
import { jsx as jsx170, jsxs as
|
|
8850
|
+
import { jsx as jsx170, jsxs as jsxs113 } from "react/jsx-runtime";
|
|
8807
8851
|
var textButtonLevelIconTypeMap = {
|
|
8808
8852
|
primary: "brand-label-primary",
|
|
8809
8853
|
secondary: "neutral-label-primary",
|
|
@@ -8860,7 +8904,7 @@ var TextButton = forwardRef7(
|
|
|
8860
8904
|
fillType: textButtonLevelIconFillTypeMap[level],
|
|
8861
8905
|
...icon
|
|
8862
8906
|
}), "getIconProps");
|
|
8863
|
-
const renderContent = /* @__PURE__ */ __name((children2) => /* @__PURE__ */
|
|
8907
|
+
const renderContent = /* @__PURE__ */ __name((children2) => /* @__PURE__ */ jsxs113("span", { className: style_module_default7["text-children"], children: [
|
|
8864
8908
|
leftIcon && /* @__PURE__ */ jsx170(Icon, { ...getIconProps(leftIcon) }),
|
|
8865
8909
|
/* @__PURE__ */ jsx170("p", { children: children2 }),
|
|
8866
8910
|
rightIcon && /* @__PURE__ */ jsx170(Icon, { ...getIconProps(rightIcon) })
|
|
@@ -8891,7 +8935,7 @@ var TextButton = forwardRef7(
|
|
|
8891
8935
|
TextButton.displayName = "TextButton";
|
|
8892
8936
|
|
|
8893
8937
|
// src/components/Popover/index.tsx
|
|
8894
|
-
import { Fragment as Fragment6, jsx as jsx171, jsxs as
|
|
8938
|
+
import { Fragment as Fragment6, jsx as jsx171, jsxs as jsxs114 } from "react/jsx-runtime";
|
|
8895
8939
|
var DEFAULT_OFFSET = -6;
|
|
8896
8940
|
var popoverVariants = cva6({
|
|
8897
8941
|
base: style_module_default6.content,
|
|
@@ -8944,8 +8988,8 @@ var PopoverContent = React3.forwardRef(
|
|
|
8944
8988
|
children,
|
|
8945
8989
|
container,
|
|
8946
8990
|
...props
|
|
8947
|
-
}, ref) => /* @__PURE__ */ jsx171(PopoverPrimitive.Portal, { container, children: /* @__PURE__ */
|
|
8948
|
-
/* @__PURE__ */
|
|
8991
|
+
}, ref) => /* @__PURE__ */ jsx171(PopoverPrimitive.Portal, { container, children: /* @__PURE__ */ jsxs114(Fragment6, { children: [
|
|
8992
|
+
/* @__PURE__ */ jsxs114(
|
|
8949
8993
|
PopoverPrimitive.Content,
|
|
8950
8994
|
{
|
|
8951
8995
|
ref,
|
|
@@ -8956,8 +9000,8 @@ var PopoverContent = React3.forwardRef(
|
|
|
8956
9000
|
className: clsx9(popoverVariants({ level }), className),
|
|
8957
9001
|
...props,
|
|
8958
9002
|
children: [
|
|
8959
|
-
/* @__PURE__ */
|
|
8960
|
-
(tag || icon || onClose) && /* @__PURE__ */
|
|
9003
|
+
/* @__PURE__ */ jsxs114("div", { className: style_module_default6.contentContainer, children: [
|
|
9004
|
+
(tag || icon || onClose) && /* @__PURE__ */ jsxs114("div", { className: style_module_default6.heading, children: [
|
|
8961
9005
|
tag && /* @__PURE__ */ jsx171("span", { className: popoverTagVariants(), children: tag }),
|
|
8962
9006
|
icon && /* @__PURE__ */ jsx171(Icon, { name: icon.name, size: "xs", thick: icon.thick, fill: icon.fill }),
|
|
8963
9007
|
/* @__PURE__ */ jsx171("p", { className: popoverTitleVariants(), children: title }),
|
|
@@ -9266,11 +9310,11 @@ var Label = forwardRef11(
|
|
|
9266
9310
|
Label.displayName = "Label";
|
|
9267
9311
|
|
|
9268
9312
|
// src/components/CheckBox/index.tsx
|
|
9269
|
-
import { Fragment as Fragment7, jsx as jsx175, jsxs as
|
|
9313
|
+
import { Fragment as Fragment7, jsx as jsx175, jsxs as jsxs115 } from "react/jsx-runtime";
|
|
9270
9314
|
var Checkbox = forwardRef12(
|
|
9271
9315
|
({ className, label, description, ...props }, ref) => {
|
|
9272
|
-
const CheckboxWrapper = /* @__PURE__ */ __name(({ children }) => label ? /* @__PURE__ */
|
|
9273
|
-
/* @__PURE__ */
|
|
9316
|
+
const CheckboxWrapper = /* @__PURE__ */ __name(({ children }) => label ? /* @__PURE__ */ jsxs115(Label, { position: "right", htmlFor: props.id, children: [
|
|
9317
|
+
/* @__PURE__ */ jsxs115("div", { className: style_module_default10["label-wrapper"], children: [
|
|
9274
9318
|
label,
|
|
9275
9319
|
/* @__PURE__ */ jsx175(Paragraph, { className: style_module_default10.description, size: 3, type: "normal", weight: "regular", children: description })
|
|
9276
9320
|
] }),
|
|
@@ -9294,14 +9338,14 @@ var style_module_default12 = {
|
|
|
9294
9338
|
};
|
|
9295
9339
|
|
|
9296
9340
|
// src/components/Radio/index.tsx
|
|
9297
|
-
import { Fragment as Fragment8, jsx as jsx176, jsxs as
|
|
9341
|
+
import { Fragment as Fragment8, jsx as jsx176, jsxs as jsxs116 } from "react/jsx-runtime";
|
|
9298
9342
|
var RadioIndicator = /* @__PURE__ */ __name(() => /* @__PURE__ */ jsx176("svg", { xmlns: "http://www.w3.org/2000/svg", width: "10", height: "10", viewBox: "0 0 10 10", fill: "none", children: /* @__PURE__ */ jsx176("circle", { cx: "5", cy: "5", r: "5", fill: "#313133" }) }), "RadioIndicator");
|
|
9299
9343
|
var RadioRoot = forwardRef13(({ className, ...props }, ref) => /* @__PURE__ */ jsx176(RadioGroupPrimitive.Root, { ref, className, ...props }));
|
|
9300
9344
|
RadioRoot.displayName = "RadioRoot";
|
|
9301
9345
|
var RadioItem = forwardRef13(
|
|
9302
9346
|
({ className, label, description, ...props }, ref) => {
|
|
9303
|
-
const RadioItemWrapper = /* @__PURE__ */ __name(({ children }) => label ? /* @__PURE__ */
|
|
9304
|
-
/* @__PURE__ */
|
|
9347
|
+
const RadioItemWrapper = /* @__PURE__ */ __name(({ children }) => label ? /* @__PURE__ */ jsxs116(Label, { position: "right", children: [
|
|
9348
|
+
/* @__PURE__ */ jsxs116("div", { className: style_module_default12["label-wrapper"], children: [
|
|
9305
9349
|
label,
|
|
9306
9350
|
description && /* @__PURE__ */ jsx176(Paragraph, { className: style_module_default12.description, size: 3, type: "normal", weight: "regular", children: description })
|
|
9307
9351
|
] }),
|
|
@@ -9359,7 +9403,7 @@ var style_module_default13 = {
|
|
|
9359
9403
|
import { cva as cva10 } from "cva";
|
|
9360
9404
|
import clsx15 from "clsx";
|
|
9361
9405
|
import { flushSync } from "react-dom";
|
|
9362
|
-
import { Fragment as Fragment9, jsx as jsx177, jsxs as
|
|
9406
|
+
import { Fragment as Fragment9, jsx as jsx177, jsxs as jsxs117 } from "react/jsx-runtime";
|
|
9363
9407
|
var defaultTextfieldVariants = cva10({
|
|
9364
9408
|
base: style_module_default13.textfield,
|
|
9365
9409
|
variants: {
|
|
@@ -9428,7 +9472,7 @@ var Textfield = forwardRef14((props, ref) => {
|
|
|
9428
9472
|
}
|
|
9429
9473
|
}, "handleDeidentify");
|
|
9430
9474
|
useImperativeHandle(ref, () => inputRef.current);
|
|
9431
|
-
return /* @__PURE__ */
|
|
9475
|
+
return /* @__PURE__ */ jsxs117("div", { className: style_module_default13["textfield-container"], children: [
|
|
9432
9476
|
/* @__PURE__ */ jsx177(
|
|
9433
9477
|
"div",
|
|
9434
9478
|
{
|
|
@@ -9437,7 +9481,7 @@ var Textfield = forwardRef14((props, ref) => {
|
|
|
9437
9481
|
[style_module_default13["label-out-textfield"]]: !label || labelType === "out"
|
|
9438
9482
|
}),
|
|
9439
9483
|
onClick: handleTextfieldClick,
|
|
9440
|
-
children: /* @__PURE__ */
|
|
9484
|
+
children: /* @__PURE__ */ jsxs117("div", { className: style_module_default13["input-wrapper"], children: [
|
|
9441
9485
|
/* @__PURE__ */ jsx177(
|
|
9442
9486
|
"input",
|
|
9443
9487
|
{
|
|
@@ -9465,7 +9509,7 @@ var Textfield = forwardRef14((props, ref) => {
|
|
|
9465
9509
|
children: labelText
|
|
9466
9510
|
}
|
|
9467
9511
|
),
|
|
9468
|
-
/* @__PURE__ */
|
|
9512
|
+
/* @__PURE__ */ jsxs117("div", { className: style_module_default13["input-action-buttons"], children: [
|
|
9469
9513
|
textfieldValue && !disabled && /* @__PURE__ */ jsx177(
|
|
9470
9514
|
IconButton,
|
|
9471
9515
|
{
|
|
@@ -9507,8 +9551,8 @@ var Textfield = forwardRef14((props, ref) => {
|
|
|
9507
9551
|
] })
|
|
9508
9552
|
}
|
|
9509
9553
|
),
|
|
9510
|
-
displayFooter && /* @__PURE__ */
|
|
9511
|
-
/* @__PURE__ */ jsx177("div", { className: style_module_default13["error-wrapper"], children: error && /* @__PURE__ */
|
|
9554
|
+
displayFooter && /* @__PURE__ */ jsxs117("div", { className: style_module_default13.footer, children: [
|
|
9555
|
+
/* @__PURE__ */ jsx177("div", { className: style_module_default13["error-wrapper"], children: error && /* @__PURE__ */ jsxs117(Fragment9, { children: [
|
|
9512
9556
|
/* @__PURE__ */ jsx177(
|
|
9513
9557
|
Icon,
|
|
9514
9558
|
{
|
|
@@ -9521,7 +9565,7 @@ var Textfield = forwardRef14((props, ref) => {
|
|
|
9521
9565
|
),
|
|
9522
9566
|
/* @__PURE__ */ jsx177(Caption, { size: 3, type: "normal", weight: "regular", className: style_module_default13["error-message"], children: error })
|
|
9523
9567
|
] }) }),
|
|
9524
|
-
maxCharacter && /* @__PURE__ */
|
|
9568
|
+
maxCharacter && /* @__PURE__ */ jsxs117(Caption, { className: style_module_default13.character, size: 3, type: "normal", weight: "regular", children: [
|
|
9525
9569
|
isControlled ? controlledValue.length : value.length,
|
|
9526
9570
|
"/",
|
|
9527
9571
|
maxCharacter
|
|
@@ -9549,27 +9593,27 @@ var style_module_default14 = {
|
|
|
9549
9593
|
|
|
9550
9594
|
// src/components/Slider/index.tsx
|
|
9551
9595
|
import * as SliderPrimitive from "@radix-ui/react-slider";
|
|
9552
|
-
import { Fragment as Fragment10, jsx as jsx178, jsxs as
|
|
9596
|
+
import { Fragment as Fragment10, jsx as jsx178, jsxs as jsxs118 } from "react/jsx-runtime";
|
|
9553
9597
|
var SliderRoot = forwardRef15((props, ref) => {
|
|
9554
9598
|
const { label, tooltip, rangeLeft, rangeRight, min, max, step = 50, ...rest } = props;
|
|
9555
|
-
return /* @__PURE__ */ jsx178(Fragment10, { children: /* @__PURE__ */
|
|
9599
|
+
return /* @__PURE__ */ jsx178(Fragment10, { children: /* @__PURE__ */ jsxs118(Tooltip.Provider, { children: [
|
|
9556
9600
|
/* @__PURE__ */ jsx178(Label, { level: "secondary", size: "m", offset: "high", className: style_module_default14.label, children: label }),
|
|
9557
|
-
/* @__PURE__ */
|
|
9558
|
-
/* @__PURE__ */
|
|
9601
|
+
/* @__PURE__ */ jsxs118("div", { className: style_module_default14["slider-wrapper"], children: [
|
|
9602
|
+
/* @__PURE__ */ jsxs118("div", { className: style_module_default14["slider-option-wrapper"], children: [
|
|
9559
9603
|
/* @__PURE__ */ jsx178(Icon, { name: rangeLeft.icon, size: "xs" }),
|
|
9560
9604
|
/* @__PURE__ */ jsx178(Caption, { size: 1, type: "normal", weight: "medium", className: style_module_default14.optionText, children: rangeLeft.text })
|
|
9561
9605
|
] }),
|
|
9562
|
-
/* @__PURE__ */
|
|
9563
|
-
/* @__PURE__ */
|
|
9606
|
+
/* @__PURE__ */ jsxs118(SliderPrimitive.Root, { ...rest, step, className: style_module_default14["slider-root"], ref, children: [
|
|
9607
|
+
/* @__PURE__ */ jsxs118(SliderPrimitive.Track, { className: style_module_default14["slider-track"], children: [
|
|
9564
9608
|
Array.from({ length: 100 / step + 1 }).map((_, index) => /* @__PURE__ */ jsx178("span", { className: style_module_default14["slider-step"] }, index)),
|
|
9565
9609
|
/* @__PURE__ */ jsx178(SliderPrimitive.Range, { className: style_module_default14["slider-range"] })
|
|
9566
9610
|
] }),
|
|
9567
|
-
/* @__PURE__ */
|
|
9611
|
+
/* @__PURE__ */ jsxs118(Tooltip, { children: [
|
|
9568
9612
|
/* @__PURE__ */ jsx178(Tooltip.Trigger, { by: /* @__PURE__ */ jsx178(SliderPrimitive.Thumb, { className: style_module_default14["slider-thumb"] }) }),
|
|
9569
9613
|
/* @__PURE__ */ jsx178(Tooltip.Content, { description: tooltip })
|
|
9570
9614
|
] })
|
|
9571
9615
|
] }),
|
|
9572
|
-
/* @__PURE__ */
|
|
9616
|
+
/* @__PURE__ */ jsxs118("div", { className: style_module_default14["slider-option-wrapper"], children: [
|
|
9573
9617
|
/* @__PURE__ */ jsx178(Icon, { name: rangeRight.icon, size: "xs" }),
|
|
9574
9618
|
/* @__PURE__ */ jsx178(Caption, { size: 1, type: "normal", weight: "medium", className: style_module_default14.optionText, children: rangeRight.text })
|
|
9575
9619
|
] })
|
|
@@ -9615,7 +9659,7 @@ import {
|
|
|
9615
9659
|
useState as useState4
|
|
9616
9660
|
} from "react";
|
|
9617
9661
|
import clsx16 from "clsx";
|
|
9618
|
-
import { jsx as jsx179, jsxs as
|
|
9662
|
+
import { jsx as jsx179, jsxs as jsxs119 } from "react/jsx-runtime";
|
|
9619
9663
|
var Badge = /* @__PURE__ */ __name(({ children }) => /* @__PURE__ */ jsx179("div", { className: style_module_default15.badgeContainer, children: /* @__PURE__ */ jsx179(Caption, { className: style_module_default15.badge, size: 2, type: "normal", weight: "medium", children }) }), "Badge");
|
|
9620
9664
|
var SelectContent = forwardRef16((props, ref) => {
|
|
9621
9665
|
const { id, isResponsive, popSide, sideOffset, listLabel, children, container } = props;
|
|
@@ -9641,8 +9685,8 @@ var SelectContent = forwardRef16((props, ref) => {
|
|
|
9641
9685
|
side: popSide,
|
|
9642
9686
|
sideOffset,
|
|
9643
9687
|
avoidCollisions: false,
|
|
9644
|
-
children: /* @__PURE__ */
|
|
9645
|
-
/* @__PURE__ */ jsx179(SelectPrimitive.Viewport, { asChild: true, children: /* @__PURE__ */ jsx179(ScrollArea.Viewport, { className: style_module_default15.scrollAreaViewport, style: { maxHeight: "268px", overflowY: "auto" }, children: /* @__PURE__ */
|
|
9688
|
+
children: /* @__PURE__ */ jsxs119(ScrollArea.Root, { className: style_module_default15.scrollAreaRoot, type: "always", children: [
|
|
9689
|
+
/* @__PURE__ */ jsx179(SelectPrimitive.Viewport, { asChild: true, children: /* @__PURE__ */ jsx179(ScrollArea.Viewport, { className: style_module_default15.scrollAreaViewport, style: { maxHeight: "268px", overflowY: "auto" }, children: /* @__PURE__ */ jsxs119(SelectPrimitive.Group, { children: [
|
|
9646
9690
|
listLabel && /* @__PURE__ */ jsx179(SelectPrimitive.Label, { asChild: true, children: /* @__PURE__ */ jsx179(Label, { className: style_module_default15["desktop-label"], level: "secondary", size: "m", offset: "low", children: listLabel }) }),
|
|
9647
9691
|
children
|
|
9648
9692
|
] }) }) }),
|
|
@@ -9674,12 +9718,12 @@ var SelectRoot = forwardRef16((props, ref) => {
|
|
|
9674
9718
|
useEffect2(() => {
|
|
9675
9719
|
setIsOpen(open);
|
|
9676
9720
|
}, [open]);
|
|
9677
|
-
return /* @__PURE__ */
|
|
9678
|
-
/* @__PURE__ */
|
|
9721
|
+
return /* @__PURE__ */ jsxs119("div", { children: [
|
|
9722
|
+
/* @__PURE__ */ jsxs119("div", { className: style_module_default15["label-container"], children: [
|
|
9679
9723
|
/* @__PURE__ */ jsx179(Label, { className: style_module_default15["select-label"], level: "secondary", size: "m", offset: "low", htmlFor: id, children: label }),
|
|
9680
9724
|
badge && /* @__PURE__ */ jsx179(Badge, { children: badge })
|
|
9681
9725
|
] }),
|
|
9682
|
-
/* @__PURE__ */
|
|
9726
|
+
/* @__PURE__ */ jsxs119(
|
|
9683
9727
|
SelectPrimitive.Root,
|
|
9684
9728
|
{
|
|
9685
9729
|
...rest,
|
|
@@ -9689,7 +9733,7 @@ var SelectRoot = forwardRef16((props, ref) => {
|
|
|
9689
9733
|
setIsOpen(open2);
|
|
9690
9734
|
},
|
|
9691
9735
|
children: [
|
|
9692
|
-
/* @__PURE__ */
|
|
9736
|
+
/* @__PURE__ */ jsxs119(SelectPrimitive.Trigger, { className: style_module_default15.trigger, ref, id, children: [
|
|
9693
9737
|
/* @__PURE__ */ jsx179(SelectPrimitive.Value, { className: style_module_default15.placeholder, placeholder }),
|
|
9694
9738
|
/* @__PURE__ */ jsx179(SelectPrimitive.Icon, { className: style_module_default15.openIcon, children: /* @__PURE__ */ jsx179(Icon, { name: "arrow-drop-down", fill: true, thick: true, size: "xs" }) })
|
|
9695
9739
|
] }),
|
|
@@ -9699,7 +9743,7 @@ var SelectRoot = forwardRef16((props, ref) => {
|
|
|
9699
9743
|
)
|
|
9700
9744
|
] });
|
|
9701
9745
|
});
|
|
9702
|
-
var SelectItem = /* @__PURE__ */ __name(({ value, text, disabled, icon, onClick }) => /* @__PURE__ */
|
|
9746
|
+
var SelectItem = /* @__PURE__ */ __name(({ value, text, disabled, icon, onClick }) => /* @__PURE__ */ jsxs119(
|
|
9703
9747
|
SelectPrimitive.Item,
|
|
9704
9748
|
{
|
|
9705
9749
|
className: style_module_default15.item,
|
|
@@ -9748,7 +9792,7 @@ var useCollectionContext = /* @__PURE__ */ __name(() => {
|
|
|
9748
9792
|
|
|
9749
9793
|
// src/components/List/index.tsx
|
|
9750
9794
|
import clsx17 from "clsx";
|
|
9751
|
-
import { jsx as jsx181, jsxs as
|
|
9795
|
+
import { jsx as jsx181, jsxs as jsxs120 } from "react/jsx-runtime";
|
|
9752
9796
|
var ListRoot = /* @__PURE__ */ __name(({ children, className, ...props }) => {
|
|
9753
9797
|
return /* @__PURE__ */ jsx181(CollectionProvider, { ...props, children: /* @__PURE__ */ jsx181("ul", { className: clsx17(style_module_default16.list, className), children }) });
|
|
9754
9798
|
}, "ListRoot");
|
|
@@ -9757,7 +9801,7 @@ var Item3 = /* @__PURE__ */ __name(({ value, text, disabled, icon, onClick }) =>
|
|
|
9757
9801
|
const { value: contextValue, onChangeValue } = useCollectionContext();
|
|
9758
9802
|
const isSelected = contextValue === value;
|
|
9759
9803
|
const iconProps = isSelected ? { name: "check-mark", type: "brand-label-primary", thick: true } : icon ? icon : {};
|
|
9760
|
-
return /* @__PURE__ */
|
|
9804
|
+
return /* @__PURE__ */ jsxs120(
|
|
9761
9805
|
"li",
|
|
9762
9806
|
{
|
|
9763
9807
|
className: style_module_default16.item,
|