@liner-fe/prism 1.10.10 → 1.10.12
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.mjs +289 -247
- package/lib/index.mjs.map +3 -3
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -542,9 +542,37 @@ var ICExclamationmarkFill = /* @__PURE__ */ __name((props) => {
|
|
|
542
542
|
}, "ICExclamationmarkFill");
|
|
543
543
|
|
|
544
544
|
// src/assets/plus.tsx
|
|
545
|
-
import { jsx as jsx15 } from "react/jsx-runtime";
|
|
545
|
+
import { jsx as jsx15, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
546
546
|
var ICPlus = /* @__PURE__ */ __name((props) => {
|
|
547
547
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
548
|
+
if (thick && fill) {
|
|
549
|
+
return /* @__PURE__ */ jsxs14("svg", { ...props, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", fill: "none", children: [
|
|
550
|
+
/* @__PURE__ */ jsx15("rect", { width: size, height: size, fill: "white" }),
|
|
551
|
+
/* @__PURE__ */ jsx15(
|
|
552
|
+
"path",
|
|
553
|
+
{
|
|
554
|
+
"fill-rule": "evenodd",
|
|
555
|
+
"clip-rule": "evenodd",
|
|
556
|
+
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",
|
|
557
|
+
fill: color
|
|
558
|
+
}
|
|
559
|
+
)
|
|
560
|
+
] });
|
|
561
|
+
}
|
|
562
|
+
if (fill) {
|
|
563
|
+
return /* @__PURE__ */ jsxs14("svg", { ...props, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", fill: "none", children: [
|
|
564
|
+
/* @__PURE__ */ jsx15("rect", { width: size, height: size, fill: "white" }),
|
|
565
|
+
/* @__PURE__ */ jsx15(
|
|
566
|
+
"path",
|
|
567
|
+
{
|
|
568
|
+
"fill-rule": "evenodd",
|
|
569
|
+
"clip-rule": "evenodd",
|
|
570
|
+
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",
|
|
571
|
+
fill: color
|
|
572
|
+
}
|
|
573
|
+
)
|
|
574
|
+
] });
|
|
575
|
+
}
|
|
548
576
|
if (thick) {
|
|
549
577
|
return /* @__PURE__ */ jsx15("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx15("path", { d: "M22 26V39.9993H26V26H40V22H26V8H22V22H8.00061V26H22Z", fill: color }) });
|
|
550
578
|
}
|
|
@@ -552,11 +580,11 @@ var ICPlus = /* @__PURE__ */ __name((props) => {
|
|
|
552
580
|
}, "ICPlus");
|
|
553
581
|
|
|
554
582
|
// src/assets/minus.tsx
|
|
555
|
-
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
583
|
+
import { jsx as jsx16, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
556
584
|
var ICMinus = /* @__PURE__ */ __name((props) => {
|
|
557
585
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
558
586
|
if (thick && fill) {
|
|
559
|
-
/* @__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(
|
|
587
|
+
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(
|
|
560
588
|
"path",
|
|
561
589
|
{
|
|
562
590
|
"fill-rule": "evenodd",
|
|
@@ -566,6 +594,20 @@ var ICMinus = /* @__PURE__ */ __name((props) => {
|
|
|
566
594
|
}
|
|
567
595
|
) });
|
|
568
596
|
}
|
|
597
|
+
if (fill) {
|
|
598
|
+
return /* @__PURE__ */ jsxs15("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
599
|
+
/* @__PURE__ */ jsx16("rect", { width: "48", height: "48", fill: "white" }),
|
|
600
|
+
/* @__PURE__ */ jsx16(
|
|
601
|
+
"path",
|
|
602
|
+
{
|
|
603
|
+
"fill-rule": "evenodd",
|
|
604
|
+
"clip-rule": "evenodd",
|
|
605
|
+
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 44ZM33 22.5L15 22.5V25.5L33 25.5V22.5Z",
|
|
606
|
+
fill: color
|
|
607
|
+
}
|
|
608
|
+
)
|
|
609
|
+
] });
|
|
610
|
+
}
|
|
569
611
|
if (thick) {
|
|
570
612
|
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", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.00065 22L40 22L40 26L8.00065 26L8.00065 22Z", fill: color }) });
|
|
571
613
|
}
|
|
@@ -581,11 +623,11 @@ var ICMinus = /* @__PURE__ */ __name((props) => {
|
|
|
581
623
|
}, "ICMinus");
|
|
582
624
|
|
|
583
625
|
// src/assets/new-thread.tsx
|
|
584
|
-
import { jsx as jsx17, jsxs as
|
|
626
|
+
import { jsx as jsx17, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
585
627
|
var ICNewThread = /* @__PURE__ */ __name((props) => {
|
|
586
628
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
587
629
|
if (thick) {
|
|
588
|
-
return /* @__PURE__ */
|
|
630
|
+
return /* @__PURE__ */ jsxs16("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
589
631
|
/* @__PURE__ */ jsx17(
|
|
590
632
|
"path",
|
|
591
633
|
{
|
|
@@ -604,7 +646,7 @@ var ICNewThread = /* @__PURE__ */ __name((props) => {
|
|
|
604
646
|
)
|
|
605
647
|
] });
|
|
606
648
|
}
|
|
607
|
-
return /* @__PURE__ */
|
|
649
|
+
return /* @__PURE__ */ jsxs16("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
608
650
|
/* @__PURE__ */ jsx17(
|
|
609
651
|
"path",
|
|
610
652
|
{
|
|
@@ -725,11 +767,11 @@ var ICGraduationcap = /* @__PURE__ */ __name((props) => {
|
|
|
725
767
|
}, "ICGraduationcap");
|
|
726
768
|
|
|
727
769
|
// src/assets/palette.tsx
|
|
728
|
-
import { jsx as jsx22, jsxs as
|
|
770
|
+
import { jsx as jsx22, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
729
771
|
var ICPalette = /* @__PURE__ */ __name((props) => {
|
|
730
772
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
731
773
|
if (thick) {
|
|
732
|
-
return /* @__PURE__ */
|
|
774
|
+
return /* @__PURE__ */ jsxs17("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
733
775
|
/* @__PURE__ */ jsx22(
|
|
734
776
|
"path",
|
|
735
777
|
{
|
|
@@ -769,7 +811,7 @@ var ICPalette = /* @__PURE__ */ __name((props) => {
|
|
|
769
811
|
)
|
|
770
812
|
] });
|
|
771
813
|
}
|
|
772
|
-
return /* @__PURE__ */
|
|
814
|
+
return /* @__PURE__ */ jsxs17("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
773
815
|
/* @__PURE__ */ jsx22(
|
|
774
816
|
"path",
|
|
775
817
|
{
|
|
@@ -811,11 +853,11 @@ var ICPalette = /* @__PURE__ */ __name((props) => {
|
|
|
811
853
|
}, "ICPalette");
|
|
812
854
|
|
|
813
855
|
// src/assets/download.tsx
|
|
814
|
-
import { jsx as jsx23, jsxs as
|
|
856
|
+
import { jsx as jsx23, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
815
857
|
var ICDownload = /* @__PURE__ */ __name((props) => {
|
|
816
858
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
817
859
|
if (thick) {
|
|
818
|
-
return /* @__PURE__ */
|
|
860
|
+
return /* @__PURE__ */ jsxs18("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
819
861
|
/* @__PURE__ */ jsx23(
|
|
820
862
|
"path",
|
|
821
863
|
{
|
|
@@ -826,7 +868,7 @@ var ICDownload = /* @__PURE__ */ __name((props) => {
|
|
|
826
868
|
/* @__PURE__ */ jsx23("path", { d: "M41 39H7V43H41V39Z", fill: color })
|
|
827
869
|
] });
|
|
828
870
|
}
|
|
829
|
-
return /* @__PURE__ */
|
|
871
|
+
return /* @__PURE__ */ jsxs18("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
830
872
|
/* @__PURE__ */ jsx23(
|
|
831
873
|
"path",
|
|
832
874
|
{
|
|
@@ -839,11 +881,11 @@ var ICDownload = /* @__PURE__ */ __name((props) => {
|
|
|
839
881
|
}, "ICDownload");
|
|
840
882
|
|
|
841
883
|
// src/assets/regenerate.tsx
|
|
842
|
-
import { jsx as jsx24, jsxs as
|
|
884
|
+
import { jsx as jsx24, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
843
885
|
var ICRegenerate = /* @__PURE__ */ __name((props) => {
|
|
844
886
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
845
887
|
if (thick) {
|
|
846
|
-
return /* @__PURE__ */
|
|
888
|
+
return /* @__PURE__ */ jsxs19("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
847
889
|
/* @__PURE__ */ jsx24(
|
|
848
890
|
"path",
|
|
849
891
|
{
|
|
@@ -860,7 +902,7 @@ var ICRegenerate = /* @__PURE__ */ __name((props) => {
|
|
|
860
902
|
)
|
|
861
903
|
] });
|
|
862
904
|
}
|
|
863
|
-
return /* @__PURE__ */
|
|
905
|
+
return /* @__PURE__ */ jsxs19("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
864
906
|
/* @__PURE__ */ jsx24(
|
|
865
907
|
"path",
|
|
866
908
|
{
|
|
@@ -879,11 +921,11 @@ var ICRegenerate = /* @__PURE__ */ __name((props) => {
|
|
|
879
921
|
}, "ICRegenerate");
|
|
880
922
|
|
|
881
923
|
// src/assets/credit.tsx
|
|
882
|
-
import { jsx as jsx25, jsxs as
|
|
924
|
+
import { jsx as jsx25, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
883
925
|
var ICCredit = /* @__PURE__ */ __name((props) => {
|
|
884
926
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
885
927
|
if (thick) {
|
|
886
|
-
return /* @__PURE__ */
|
|
928
|
+
return /* @__PURE__ */ jsxs20("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
887
929
|
/* @__PURE__ */ jsx25(
|
|
888
930
|
"path",
|
|
889
931
|
{
|
|
@@ -907,7 +949,7 @@ var ICCredit = /* @__PURE__ */ __name((props) => {
|
|
|
907
949
|
)
|
|
908
950
|
] });
|
|
909
951
|
}
|
|
910
|
-
return /* @__PURE__ */
|
|
952
|
+
return /* @__PURE__ */ jsxs20("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
911
953
|
/* @__PURE__ */ jsx25("path", { d: "M36.249 12.25V18.4996H39.249V12.25H45.5V9.25H39.249V3H36.249V9.25H30.0004V12.25H36.249Z", fill: color }),
|
|
912
954
|
/* @__PURE__ */ jsx25(
|
|
913
955
|
"path",
|
|
@@ -927,11 +969,11 @@ var ICCredit = /* @__PURE__ */ __name((props) => {
|
|
|
927
969
|
}, "ICCredit");
|
|
928
970
|
|
|
929
971
|
// src/assets/feedback.tsx
|
|
930
|
-
import { jsx as jsx26, jsxs as
|
|
972
|
+
import { jsx as jsx26, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
931
973
|
var ICFeedback = /* @__PURE__ */ __name((props) => {
|
|
932
974
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
933
975
|
if (thick) {
|
|
934
|
-
return /* @__PURE__ */
|
|
976
|
+
return /* @__PURE__ */ jsxs21("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
935
977
|
/* @__PURE__ */ jsx26(
|
|
936
978
|
"path",
|
|
937
979
|
{
|
|
@@ -950,7 +992,7 @@ var ICFeedback = /* @__PURE__ */ __name((props) => {
|
|
|
950
992
|
)
|
|
951
993
|
] });
|
|
952
994
|
}
|
|
953
|
-
return /* @__PURE__ */
|
|
995
|
+
return /* @__PURE__ */ jsxs21("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
954
996
|
/* @__PURE__ */ jsx26(
|
|
955
997
|
"path",
|
|
956
998
|
{
|
|
@@ -971,11 +1013,11 @@ var ICFeedback = /* @__PURE__ */ __name((props) => {
|
|
|
971
1013
|
}, "ICFeedback");
|
|
972
1014
|
|
|
973
1015
|
// src/assets/tune.tsx
|
|
974
|
-
import { jsx as jsx27, jsxs as
|
|
1016
|
+
import { jsx as jsx27, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
975
1017
|
var ICTune = /* @__PURE__ */ __name((props) => {
|
|
976
1018
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
977
1019
|
if (thick) {
|
|
978
|
-
return /* @__PURE__ */
|
|
1020
|
+
return /* @__PURE__ */ jsxs22("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
979
1021
|
/* @__PURE__ */ jsx27("path", { d: "M35 9V5H31V17H35V13H41V9H35Z", fill: color }),
|
|
980
1022
|
/* @__PURE__ */ jsx27("path", { d: "M7 9H27V13H7V9Z", fill: color }),
|
|
981
1023
|
/* @__PURE__ */ jsx27("path", { d: "M18 18L18 30H14V26H7V22H14V18H18Z", fill: color }),
|
|
@@ -984,7 +1026,7 @@ var ICTune = /* @__PURE__ */ __name((props) => {
|
|
|
984
1026
|
/* @__PURE__ */ jsx27("path", { d: "M18 35H7V39H18V35Z", fill: color })
|
|
985
1027
|
] });
|
|
986
1028
|
}
|
|
987
|
-
return /* @__PURE__ */
|
|
1029
|
+
return /* @__PURE__ */ jsxs22("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
988
1030
|
/* @__PURE__ */ jsx27("path", { d: "M34.5 9.5V5H31.5V17H34.5V12.5H41V9.5H34.5Z", fill: color }),
|
|
989
1031
|
/* @__PURE__ */ jsx27("path", { d: "M7 9.5H27V12.5H7V9.5Z", fill: color }),
|
|
990
1032
|
/* @__PURE__ */ jsx27("path", { d: "M17.5 18L17.5 30H14.5V25.5H7V22.5H14.5V18H17.5Z", fill: color }),
|
|
@@ -1105,17 +1147,17 @@ var ICArrowDown = /* @__PURE__ */ __name((props) => {
|
|
|
1105
1147
|
}, "ICArrowDown");
|
|
1106
1148
|
|
|
1107
1149
|
// src/assets/menu.tsx
|
|
1108
|
-
import { jsx as jsx32, jsxs as
|
|
1150
|
+
import { jsx as jsx32, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1109
1151
|
var ICMenu = /* @__PURE__ */ __name((props) => {
|
|
1110
1152
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1111
1153
|
if (thick) {
|
|
1112
|
-
return /* @__PURE__ */
|
|
1154
|
+
return /* @__PURE__ */ jsxs23("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1113
1155
|
/* @__PURE__ */ jsx32("path", { d: "M9 9H39V13H9V9Z", fill: color }),
|
|
1114
1156
|
/* @__PURE__ */ jsx32("path", { d: "M9 22H39V26H9V22Z", fill: color }),
|
|
1115
1157
|
/* @__PURE__ */ jsx32("path", { d: "M39 35H9V39H39V35Z", fill: color })
|
|
1116
1158
|
] });
|
|
1117
1159
|
}
|
|
1118
|
-
return /* @__PURE__ */
|
|
1160
|
+
return /* @__PURE__ */ jsxs23("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1119
1161
|
/* @__PURE__ */ jsx32("path", { d: "M9 9.5H39V12.5H9V9.5Z", fill: color }),
|
|
1120
1162
|
/* @__PURE__ */ jsx32("path", { d: "M9 22.5H39V25.5H9V22.5Z", fill: color }),
|
|
1121
1163
|
/* @__PURE__ */ jsx32("path", { d: "M39 35.5H9V38.5H39V35.5Z", fill: color })
|
|
@@ -1123,11 +1165,11 @@ var ICMenu = /* @__PURE__ */ __name((props) => {
|
|
|
1123
1165
|
}, "ICMenu");
|
|
1124
1166
|
|
|
1125
1167
|
// src/assets/document-warning.tsx
|
|
1126
|
-
import { jsx as jsx33, jsxs as
|
|
1168
|
+
import { jsx as jsx33, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1127
1169
|
var ICDocumentWarning = /* @__PURE__ */ __name((props) => {
|
|
1128
1170
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1129
1171
|
if (thick) {
|
|
1130
|
-
return /* @__PURE__ */
|
|
1172
|
+
return /* @__PURE__ */ jsxs24("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1131
1173
|
/* @__PURE__ */ jsx33(
|
|
1132
1174
|
"path",
|
|
1133
1175
|
{
|
|
@@ -1148,7 +1190,7 @@ var ICDocumentWarning = /* @__PURE__ */ __name((props) => {
|
|
|
1148
1190
|
)
|
|
1149
1191
|
] });
|
|
1150
1192
|
}
|
|
1151
|
-
return /* @__PURE__ */
|
|
1193
|
+
return /* @__PURE__ */ jsxs24("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1152
1194
|
/* @__PURE__ */ jsx33(
|
|
1153
1195
|
"path",
|
|
1154
1196
|
{
|
|
@@ -1193,11 +1235,11 @@ var ICArrowRight = /* @__PURE__ */ __name((props) => {
|
|
|
1193
1235
|
}, "ICArrowRight");
|
|
1194
1236
|
|
|
1195
1237
|
// src/assets/step.tsx
|
|
1196
|
-
import { jsx as jsx35, jsxs as
|
|
1238
|
+
import { jsx as jsx35, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1197
1239
|
var ICStep = /* @__PURE__ */ __name((props) => {
|
|
1198
1240
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1199
1241
|
if (thick) {
|
|
1200
|
-
return /* @__PURE__ */
|
|
1242
|
+
return /* @__PURE__ */ jsxs25("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1201
1243
|
/* @__PURE__ */ jsx35(
|
|
1202
1244
|
"path",
|
|
1203
1245
|
{
|
|
@@ -1218,7 +1260,7 @@ var ICStep = /* @__PURE__ */ __name((props) => {
|
|
|
1218
1260
|
)
|
|
1219
1261
|
] });
|
|
1220
1262
|
}
|
|
1221
|
-
return /* @__PURE__ */
|
|
1263
|
+
return /* @__PURE__ */ jsxs25("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1222
1264
|
/* @__PURE__ */ jsx35(
|
|
1223
1265
|
"path",
|
|
1224
1266
|
{
|
|
@@ -1263,11 +1305,11 @@ var ICArrowTurn = /* @__PURE__ */ __name((props) => {
|
|
|
1263
1305
|
}, "ICArrowTurn");
|
|
1264
1306
|
|
|
1265
1307
|
// src/assets/power.tsx
|
|
1266
|
-
import { jsx as jsx37, jsxs as
|
|
1308
|
+
import { jsx as jsx37, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
1267
1309
|
var ICPower = /* @__PURE__ */ __name((props) => {
|
|
1268
1310
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1269
1311
|
if (thick) {
|
|
1270
|
-
return /* @__PURE__ */
|
|
1312
|
+
return /* @__PURE__ */ jsxs26("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1271
1313
|
/* @__PURE__ */ jsx37("path", { d: "M26 24V6H22V24H26Z", fill: color }),
|
|
1272
1314
|
/* @__PURE__ */ jsx37(
|
|
1273
1315
|
"path",
|
|
@@ -1278,7 +1320,7 @@ var ICPower = /* @__PURE__ */ __name((props) => {
|
|
|
1278
1320
|
)
|
|
1279
1321
|
] });
|
|
1280
1322
|
}
|
|
1281
|
-
return /* @__PURE__ */
|
|
1323
|
+
return /* @__PURE__ */ jsxs26("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1282
1324
|
/* @__PURE__ */ jsx37("path", { d: "M25.5 24V6H22.5V24H25.5Z", fill: color }),
|
|
1283
1325
|
/* @__PURE__ */ jsx37(
|
|
1284
1326
|
"path",
|
|
@@ -1317,11 +1359,11 @@ var ICDesktop = /* @__PURE__ */ __name((props) => {
|
|
|
1317
1359
|
}, "ICDesktop");
|
|
1318
1360
|
|
|
1319
1361
|
// src/assets/desktop-on-cursor.tsx
|
|
1320
|
-
import { jsx as jsx39, jsxs as
|
|
1362
|
+
import { jsx as jsx39, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
1321
1363
|
var ICDesktopOnCursor = /* @__PURE__ */ __name((props) => {
|
|
1322
1364
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1323
1365
|
if (thick) {
|
|
1324
|
-
return /* @__PURE__ */
|
|
1366
|
+
return /* @__PURE__ */ jsxs27("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1325
1367
|
/* @__PURE__ */ jsx39(
|
|
1326
1368
|
"path",
|
|
1327
1369
|
{
|
|
@@ -1339,7 +1381,7 @@ var ICDesktopOnCursor = /* @__PURE__ */ __name((props) => {
|
|
|
1339
1381
|
)
|
|
1340
1382
|
] });
|
|
1341
1383
|
}
|
|
1342
|
-
return /* @__PURE__ */
|
|
1384
|
+
return /* @__PURE__ */ jsxs27("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1343
1385
|
/* @__PURE__ */ jsx39(
|
|
1344
1386
|
"path",
|
|
1345
1387
|
{
|
|
@@ -1385,11 +1427,11 @@ var ICViewList = /* @__PURE__ */ __name((props) => {
|
|
|
1385
1427
|
}, "ICViewList");
|
|
1386
1428
|
|
|
1387
1429
|
// src/assets/chart-bar.tsx
|
|
1388
|
-
import { jsx as jsx41, jsxs as
|
|
1430
|
+
import { jsx as jsx41, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
1389
1431
|
var ICChartBar = /* @__PURE__ */ __name((props) => {
|
|
1390
1432
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1391
1433
|
if (thick) {
|
|
1392
|
-
return /* @__PURE__ */
|
|
1434
|
+
return /* @__PURE__ */ jsxs28("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1393
1435
|
/* @__PURE__ */ jsx41(
|
|
1394
1436
|
"path",
|
|
1395
1437
|
{
|
|
@@ -1431,7 +1473,7 @@ var ICChartBar = /* @__PURE__ */ __name((props) => {
|
|
|
1431
1473
|
}
|
|
1432
1474
|
) });
|
|
1433
1475
|
}
|
|
1434
|
-
return /* @__PURE__ */
|
|
1476
|
+
return /* @__PURE__ */ jsxs28("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1435
1477
|
/* @__PURE__ */ jsx41(
|
|
1436
1478
|
"path",
|
|
1437
1479
|
{
|
|
@@ -1464,11 +1506,11 @@ var ICChartBar = /* @__PURE__ */ __name((props) => {
|
|
|
1464
1506
|
}, "ICChartBar");
|
|
1465
1507
|
|
|
1466
1508
|
// src/assets/chart-line-uptrend.tsx
|
|
1467
|
-
import { jsx as jsx42, jsxs as
|
|
1509
|
+
import { jsx as jsx42, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
1468
1510
|
var ICChartLineUptrend = /* @__PURE__ */ __name((props) => {
|
|
1469
1511
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1470
1512
|
if (thick) {
|
|
1471
|
-
return /* @__PURE__ */
|
|
1513
|
+
return /* @__PURE__ */ jsxs29("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1472
1514
|
/* @__PURE__ */ jsx42("path", { d: "M5 6V39C5 41.2091 6.79086 43 9 43H42V39H9V6H5Z", fill: color }),
|
|
1473
1515
|
/* @__PURE__ */ jsx42(
|
|
1474
1516
|
"path",
|
|
@@ -1490,7 +1532,7 @@ var ICChartLineUptrend = /* @__PURE__ */ __name((props) => {
|
|
|
1490
1532
|
}
|
|
1491
1533
|
) });
|
|
1492
1534
|
}
|
|
1493
|
-
return /* @__PURE__ */
|
|
1535
|
+
return /* @__PURE__ */ jsxs29("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1494
1536
|
/* @__PURE__ */ jsx42("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 }),
|
|
1495
1537
|
/* @__PURE__ */ jsx42(
|
|
1496
1538
|
"path",
|
|
@@ -1540,11 +1582,11 @@ var ICFolder = /* @__PURE__ */ __name((props) => {
|
|
|
1540
1582
|
}, "ICFolder");
|
|
1541
1583
|
|
|
1542
1584
|
// src/assets/person.tsx
|
|
1543
|
-
import { jsx as jsx44, jsxs as
|
|
1585
|
+
import { jsx as jsx44, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
1544
1586
|
var ICPerson = /* @__PURE__ */ __name((props) => {
|
|
1545
1587
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1546
1588
|
if (thick) {
|
|
1547
|
-
return /* @__PURE__ */
|
|
1589
|
+
return /* @__PURE__ */ jsxs30("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1548
1590
|
/* @__PURE__ */ jsx44(
|
|
1549
1591
|
"path",
|
|
1550
1592
|
{
|
|
@@ -1566,7 +1608,7 @@ var ICPerson = /* @__PURE__ */ __name((props) => {
|
|
|
1566
1608
|
] });
|
|
1567
1609
|
}
|
|
1568
1610
|
if (fill) {
|
|
1569
|
-
return /* @__PURE__ */
|
|
1611
|
+
return /* @__PURE__ */ jsxs30("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1570
1612
|
/* @__PURE__ */ jsx44(
|
|
1571
1613
|
"path",
|
|
1572
1614
|
{
|
|
@@ -1583,7 +1625,7 @@ var ICPerson = /* @__PURE__ */ __name((props) => {
|
|
|
1583
1625
|
)
|
|
1584
1626
|
] });
|
|
1585
1627
|
}
|
|
1586
|
-
return /* @__PURE__ */
|
|
1628
|
+
return /* @__PURE__ */ jsxs30("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1587
1629
|
/* @__PURE__ */ jsx44(
|
|
1588
1630
|
"path",
|
|
1589
1631
|
{
|
|
@@ -1606,11 +1648,11 @@ var ICPerson = /* @__PURE__ */ __name((props) => {
|
|
|
1606
1648
|
}, "ICPerson");
|
|
1607
1649
|
|
|
1608
1650
|
// src/assets/trash.tsx
|
|
1609
|
-
import { jsx as jsx45, jsxs as
|
|
1651
|
+
import { jsx as jsx45, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
1610
1652
|
var ICTrash = /* @__PURE__ */ __name((props) => {
|
|
1611
1653
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1612
1654
|
if (thick) {
|
|
1613
|
-
return /* @__PURE__ */
|
|
1655
|
+
return /* @__PURE__ */ jsxs31("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1614
1656
|
/* @__PURE__ */ jsx45("path", { d: "M22 18V37H18L18 18H22Z", fill: color }),
|
|
1615
1657
|
/* @__PURE__ */ jsx45("path", { d: "M30 37V18H26V37H30Z", fill: color }),
|
|
1616
1658
|
/* @__PURE__ */ jsx45(
|
|
@@ -1635,7 +1677,7 @@ var ICTrash = /* @__PURE__ */ __name((props) => {
|
|
|
1635
1677
|
}
|
|
1636
1678
|
) });
|
|
1637
1679
|
}
|
|
1638
|
-
return /* @__PURE__ */
|
|
1680
|
+
return /* @__PURE__ */ jsxs31("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1639
1681
|
/* @__PURE__ */ jsx45("path", { d: "M21.5 18.5L21.5 36.5H18.5L18.5 18.5H21.5Z", fill: color }),
|
|
1640
1682
|
/* @__PURE__ */ jsx45("path", { d: "M29.5 36.5V18.5H26.5V36.5H29.5Z", fill: color }),
|
|
1641
1683
|
/* @__PURE__ */ jsx45(
|
|
@@ -1651,7 +1693,7 @@ var ICTrash = /* @__PURE__ */ __name((props) => {
|
|
|
1651
1693
|
}, "ICTrash");
|
|
1652
1694
|
|
|
1653
1695
|
// src/assets/pencil.tsx
|
|
1654
|
-
import { jsx as jsx46, jsxs as
|
|
1696
|
+
import { jsx as jsx46, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
1655
1697
|
var ICPencil = /* @__PURE__ */ __name((props) => {
|
|
1656
1698
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1657
1699
|
if (thick) {
|
|
@@ -1666,7 +1708,7 @@ var ICPencil = /* @__PURE__ */ __name((props) => {
|
|
|
1666
1708
|
) });
|
|
1667
1709
|
}
|
|
1668
1710
|
if (fill) {
|
|
1669
|
-
return /* @__PURE__ */
|
|
1711
|
+
return /* @__PURE__ */ jsxs32("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1670
1712
|
/* @__PURE__ */ jsx46(
|
|
1671
1713
|
"path",
|
|
1672
1714
|
{
|
|
@@ -1695,7 +1737,7 @@ var ICPencil = /* @__PURE__ */ __name((props) => {
|
|
|
1695
1737
|
}, "ICPencil");
|
|
1696
1738
|
|
|
1697
1739
|
// src/assets/copy.tsx
|
|
1698
|
-
import { jsx as jsx47, jsxs as
|
|
1740
|
+
import { jsx as jsx47, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
1699
1741
|
var ICCopy = /* @__PURE__ */ __name((props) => {
|
|
1700
1742
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1701
1743
|
if (thick) {
|
|
@@ -1710,7 +1752,7 @@ var ICCopy = /* @__PURE__ */ __name((props) => {
|
|
|
1710
1752
|
) });
|
|
1711
1753
|
}
|
|
1712
1754
|
if (fill) {
|
|
1713
|
-
return /* @__PURE__ */
|
|
1755
|
+
return /* @__PURE__ */ jsxs33("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1714
1756
|
/* @__PURE__ */ jsx47(
|
|
1715
1757
|
"path",
|
|
1716
1758
|
{
|
|
@@ -1739,7 +1781,7 @@ var ICCopy = /* @__PURE__ */ __name((props) => {
|
|
|
1739
1781
|
}, "ICCopy");
|
|
1740
1782
|
|
|
1741
1783
|
// src/assets/book.tsx
|
|
1742
|
-
import { jsx as jsx48, jsxs as
|
|
1784
|
+
import { jsx as jsx48, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
1743
1785
|
var ICBook = /* @__PURE__ */ __name((props) => {
|
|
1744
1786
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1745
1787
|
if (thick) {
|
|
@@ -1754,7 +1796,7 @@ var ICBook = /* @__PURE__ */ __name((props) => {
|
|
|
1754
1796
|
) });
|
|
1755
1797
|
}
|
|
1756
1798
|
if (fill) {
|
|
1757
|
-
return /* @__PURE__ */
|
|
1799
|
+
return /* @__PURE__ */ jsxs34("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1758
1800
|
/* @__PURE__ */ jsx48(
|
|
1759
1801
|
"path",
|
|
1760
1802
|
{
|
|
@@ -1783,11 +1825,11 @@ var ICBook = /* @__PURE__ */ __name((props) => {
|
|
|
1783
1825
|
}, "ICBook");
|
|
1784
1826
|
|
|
1785
1827
|
// src/assets/description.tsx
|
|
1786
|
-
import { jsx as jsx49, jsxs as
|
|
1828
|
+
import { jsx as jsx49, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
1787
1829
|
var ICDescription = /* @__PURE__ */ __name((props) => {
|
|
1788
1830
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1789
1831
|
if (thick) {
|
|
1790
|
-
return /* @__PURE__ */
|
|
1832
|
+
return /* @__PURE__ */ jsxs35("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1791
1833
|
/* @__PURE__ */ jsx49("path", { d: "M20 22H16V18H20V22Z", fill: color }),
|
|
1792
1834
|
/* @__PURE__ */ jsx49("path", { d: "M32 29.5H16V25.5H32V29.5Z", fill: color }),
|
|
1793
1835
|
/* @__PURE__ */ jsx49("path", { d: "M16 37H32V33H16V37Z", fill: color }),
|
|
@@ -1813,7 +1855,7 @@ var ICDescription = /* @__PURE__ */ __name((props) => {
|
|
|
1813
1855
|
}
|
|
1814
1856
|
) });
|
|
1815
1857
|
}
|
|
1816
|
-
return /* @__PURE__ */
|
|
1858
|
+
return /* @__PURE__ */ jsxs35("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1817
1859
|
/* @__PURE__ */ jsx49("path", { d: "M20 21.5H16V18.5H20V21.5Z", fill: color }),
|
|
1818
1860
|
/* @__PURE__ */ jsx49("path", { d: "M32 29H16V26H32V29Z", fill: color }),
|
|
1819
1861
|
/* @__PURE__ */ jsx49("path", { d: "M16 36.5H32V33.5H16V36.5Z", fill: color }),
|
|
@@ -1865,11 +1907,11 @@ var ICBookmark = /* @__PURE__ */ __name((props) => {
|
|
|
1865
1907
|
}, "ICBookmark");
|
|
1866
1908
|
|
|
1867
1909
|
// src/assets/photo.tsx
|
|
1868
|
-
import { jsx as jsx51, jsxs as
|
|
1910
|
+
import { jsx as jsx51, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
1869
1911
|
var ICPhoto = /* @__PURE__ */ __name((props) => {
|
|
1870
1912
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1871
1913
|
if (thick) {
|
|
1872
|
-
return /* @__PURE__ */
|
|
1914
|
+
return /* @__PURE__ */ jsxs36("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1873
1915
|
/* @__PURE__ */ jsx51(
|
|
1874
1916
|
"path",
|
|
1875
1917
|
{
|
|
@@ -1899,7 +1941,7 @@ var ICPhoto = /* @__PURE__ */ __name((props) => {
|
|
|
1899
1941
|
}
|
|
1900
1942
|
) });
|
|
1901
1943
|
}
|
|
1902
|
-
return /* @__PURE__ */
|
|
1944
|
+
return /* @__PURE__ */ jsxs36("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1903
1945
|
/* @__PURE__ */ jsx51(
|
|
1904
1946
|
"path",
|
|
1905
1947
|
{
|
|
@@ -1920,11 +1962,11 @@ var ICPhoto = /* @__PURE__ */ __name((props) => {
|
|
|
1920
1962
|
}, "ICPhoto");
|
|
1921
1963
|
|
|
1922
1964
|
// src/assets/camera.tsx
|
|
1923
|
-
import { jsx as jsx52, jsxs as
|
|
1965
|
+
import { jsx as jsx52, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
1924
1966
|
var ICCamera = /* @__PURE__ */ __name((props) => {
|
|
1925
1967
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
1926
1968
|
if (thick) {
|
|
1927
|
-
return /* @__PURE__ */
|
|
1969
|
+
return /* @__PURE__ */ jsxs37("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1928
1970
|
/* @__PURE__ */ jsx52(
|
|
1929
1971
|
"path",
|
|
1930
1972
|
{
|
|
@@ -1956,7 +1998,7 @@ var ICCamera = /* @__PURE__ */ __name((props) => {
|
|
|
1956
1998
|
}
|
|
1957
1999
|
) });
|
|
1958
2000
|
}
|
|
1959
|
-
return /* @__PURE__ */
|
|
2001
|
+
return /* @__PURE__ */ jsxs37("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1960
2002
|
/* @__PURE__ */ jsx52(
|
|
1961
2003
|
"path",
|
|
1962
2004
|
{
|
|
@@ -2014,7 +2056,7 @@ var ICBolt = /* @__PURE__ */ __name((props) => {
|
|
|
2014
2056
|
}, "ICBolt");
|
|
2015
2057
|
|
|
2016
2058
|
// src/assets/question-message.tsx
|
|
2017
|
-
import { jsx as jsx54, jsxs as
|
|
2059
|
+
import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
2018
2060
|
var ICQuestionMessage = /* @__PURE__ */ __name((props) => {
|
|
2019
2061
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2020
2062
|
if (fill && thick) {
|
|
@@ -2029,7 +2071,7 @@ var ICQuestionMessage = /* @__PURE__ */ __name((props) => {
|
|
|
2029
2071
|
) });
|
|
2030
2072
|
}
|
|
2031
2073
|
if (thick) {
|
|
2032
|
-
return /* @__PURE__ */
|
|
2074
|
+
return /* @__PURE__ */ jsxs38("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2033
2075
|
/* @__PURE__ */ jsx54(
|
|
2034
2076
|
"path",
|
|
2035
2077
|
{
|
|
@@ -2066,7 +2108,7 @@ var ICQuestionMessage = /* @__PURE__ */ __name((props) => {
|
|
|
2066
2108
|
}
|
|
2067
2109
|
) });
|
|
2068
2110
|
}
|
|
2069
|
-
return /* @__PURE__ */
|
|
2111
|
+
return /* @__PURE__ */ jsxs38("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2070
2112
|
/* @__PURE__ */ jsx54(
|
|
2071
2113
|
"path",
|
|
2072
2114
|
{
|
|
@@ -2094,11 +2136,11 @@ var ICQuestionMessage = /* @__PURE__ */ __name((props) => {
|
|
|
2094
2136
|
}, "ICQuestionMessage");
|
|
2095
2137
|
|
|
2096
2138
|
// src/assets/books.tsx
|
|
2097
|
-
import { jsx as jsx55, jsxs as
|
|
2139
|
+
import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
2098
2140
|
var ICBooks = /* @__PURE__ */ __name((props) => {
|
|
2099
2141
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2100
2142
|
if (fill && thick) {
|
|
2101
|
-
return /* @__PURE__ */
|
|
2143
|
+
return /* @__PURE__ */ jsxs39("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2102
2144
|
/* @__PURE__ */ jsx55(
|
|
2103
2145
|
"path",
|
|
2104
2146
|
{
|
|
@@ -2129,7 +2171,7 @@ var ICBooks = /* @__PURE__ */ __name((props) => {
|
|
|
2129
2171
|
] });
|
|
2130
2172
|
}
|
|
2131
2173
|
if (thick) {
|
|
2132
|
-
return /* @__PURE__ */
|
|
2174
|
+
return /* @__PURE__ */ jsxs39("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2133
2175
|
/* @__PURE__ */ jsx55("path", { d: "M20.3906 24H17.6406V26H20.3906V24Z", fill: color }),
|
|
2134
2176
|
/* @__PURE__ */ jsx55("path", { d: "M20.3906 34H17.6406V36H20.3906V34Z", fill: color }),
|
|
2135
2177
|
/* @__PURE__ */ jsx55(
|
|
@@ -2144,7 +2186,7 @@ var ICBooks = /* @__PURE__ */ __name((props) => {
|
|
|
2144
2186
|
] });
|
|
2145
2187
|
}
|
|
2146
2188
|
if (fill) {
|
|
2147
|
-
return /* @__PURE__ */
|
|
2189
|
+
return /* @__PURE__ */ jsxs39("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2148
2190
|
/* @__PURE__ */ jsx55(
|
|
2149
2191
|
"path",
|
|
2150
2192
|
{
|
|
@@ -2170,7 +2212,7 @@ var ICBooks = /* @__PURE__ */ __name((props) => {
|
|
|
2170
2212
|
)
|
|
2171
2213
|
] });
|
|
2172
2214
|
}
|
|
2173
|
-
return /* @__PURE__ */
|
|
2215
|
+
return /* @__PURE__ */ jsxs39("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2174
2216
|
/* @__PURE__ */ jsx55("path", { d: "M17.4532 23.4649H21.2734V26.0117H17.4532V23.4649Z", fill: color }),
|
|
2175
2217
|
/* @__PURE__ */ jsx55("path", { d: "M21.2734 33.7266H17.4532V36.2734H21.2734V33.7266Z", fill: color }),
|
|
2176
2218
|
/* @__PURE__ */ jsx55(
|
|
@@ -2186,11 +2228,11 @@ var ICBooks = /* @__PURE__ */ __name((props) => {
|
|
|
2186
2228
|
}, "ICBooks");
|
|
2187
2229
|
|
|
2188
2230
|
// src/assets/balance.tsx
|
|
2189
|
-
import { jsx as jsx56, jsxs as
|
|
2231
|
+
import { jsx as jsx56, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
2190
2232
|
var ICBalance = /* @__PURE__ */ __name((props) => {
|
|
2191
2233
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2192
2234
|
if (fill && thick) {
|
|
2193
|
-
return /* @__PURE__ */
|
|
2235
|
+
return /* @__PURE__ */ jsxs40("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2194
2236
|
/* @__PURE__ */ jsx56(
|
|
2195
2237
|
"path",
|
|
2196
2238
|
{
|
|
@@ -2215,7 +2257,7 @@ var ICBalance = /* @__PURE__ */ __name((props) => {
|
|
|
2215
2257
|
] });
|
|
2216
2258
|
}
|
|
2217
2259
|
if (thick) {
|
|
2218
|
-
return /* @__PURE__ */
|
|
2260
|
+
return /* @__PURE__ */ jsxs40("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2219
2261
|
/* @__PURE__ */ jsx56(
|
|
2220
2262
|
"path",
|
|
2221
2263
|
{
|
|
@@ -2244,7 +2286,7 @@ var ICBalance = /* @__PURE__ */ __name((props) => {
|
|
|
2244
2286
|
] });
|
|
2245
2287
|
}
|
|
2246
2288
|
if (fill) {
|
|
2247
|
-
return /* @__PURE__ */
|
|
2289
|
+
return /* @__PURE__ */ jsxs40("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2248
2290
|
/* @__PURE__ */ jsx56(
|
|
2249
2291
|
"path",
|
|
2250
2292
|
{
|
|
@@ -2268,7 +2310,7 @@ var ICBalance = /* @__PURE__ */ __name((props) => {
|
|
|
2268
2310
|
)
|
|
2269
2311
|
] });
|
|
2270
2312
|
}
|
|
2271
|
-
return /* @__PURE__ */
|
|
2313
|
+
return /* @__PURE__ */ jsxs40("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2272
2314
|
/* @__PURE__ */ jsx56(
|
|
2273
2315
|
"path",
|
|
2274
2316
|
{
|
|
@@ -2298,7 +2340,7 @@ var ICBalance = /* @__PURE__ */ __name((props) => {
|
|
|
2298
2340
|
}, "ICBalance");
|
|
2299
2341
|
|
|
2300
2342
|
// src/assets/folder-add.tsx
|
|
2301
|
-
import { jsx as jsx57, jsxs as
|
|
2343
|
+
import { jsx as jsx57, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
2302
2344
|
var ICFolderAdd = /* @__PURE__ */ __name((props) => {
|
|
2303
2345
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2304
2346
|
if (fill && thick) {
|
|
@@ -2313,7 +2355,7 @@ var ICFolderAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2313
2355
|
) });
|
|
2314
2356
|
}
|
|
2315
2357
|
if (thick) {
|
|
2316
|
-
return /* @__PURE__ */
|
|
2358
|
+
return /* @__PURE__ */ jsxs41("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2317
2359
|
/* @__PURE__ */ jsx57("path", { d: "M22 23.5V17.9998H26V23.5H31.75V27.5H26V33.4998H22V27.5H16.25V23.5H22Z", fill: color }),
|
|
2318
2360
|
/* @__PURE__ */ jsx57(
|
|
2319
2361
|
"path",
|
|
@@ -2337,7 +2379,7 @@ var ICFolderAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2337
2379
|
}
|
|
2338
2380
|
) });
|
|
2339
2381
|
}
|
|
2340
|
-
return /* @__PURE__ */
|
|
2382
|
+
return /* @__PURE__ */ jsxs41("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2341
2383
|
/* @__PURE__ */ jsx57("path", { d: "M22.5 24V17.9998H25.5V24H31.75V27H25.5V33.4998H22.5V27H16.25V24H22.5Z", fill: color }),
|
|
2342
2384
|
/* @__PURE__ */ jsx57(
|
|
2343
2385
|
"path",
|
|
@@ -2352,11 +2394,11 @@ var ICFolderAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2352
2394
|
}, "ICFolderAdd");
|
|
2353
2395
|
|
|
2354
2396
|
// src/assets/document.tsx
|
|
2355
|
-
import { jsx as jsx58, jsxs as
|
|
2397
|
+
import { jsx as jsx58, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
2356
2398
|
var ICDocument = /* @__PURE__ */ __name((props) => {
|
|
2357
2399
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2358
2400
|
if (fill && thick) {
|
|
2359
|
-
return /* @__PURE__ */
|
|
2401
|
+
return /* @__PURE__ */ jsxs42("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2360
2402
|
/* @__PURE__ */ jsx58(
|
|
2361
2403
|
"path",
|
|
2362
2404
|
{
|
|
@@ -2379,7 +2421,7 @@ var ICDocument = /* @__PURE__ */ __name((props) => {
|
|
|
2379
2421
|
) });
|
|
2380
2422
|
}
|
|
2381
2423
|
if (fill) {
|
|
2382
|
-
return /* @__PURE__ */
|
|
2424
|
+
return /* @__PURE__ */ jsxs42("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2383
2425
|
/* @__PURE__ */ jsx58(
|
|
2384
2426
|
"path",
|
|
2385
2427
|
{
|
|
@@ -2408,11 +2450,11 @@ var ICDocument = /* @__PURE__ */ __name((props) => {
|
|
|
2408
2450
|
}, "ICDocument");
|
|
2409
2451
|
|
|
2410
2452
|
// src/assets/person-add.tsx
|
|
2411
|
-
import { jsx as jsx59, jsxs as
|
|
2453
|
+
import { jsx as jsx59, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
2412
2454
|
var ICPersonAdd = /* @__PURE__ */ __name((props) => {
|
|
2413
2455
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2414
2456
|
if (fill && thick) {
|
|
2415
|
-
return /* @__PURE__ */
|
|
2457
|
+
return /* @__PURE__ */ jsxs43("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2416
2458
|
/* @__PURE__ */ jsx59(
|
|
2417
2459
|
"path",
|
|
2418
2460
|
{
|
|
@@ -2431,7 +2473,7 @@ var ICPersonAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2431
2473
|
] });
|
|
2432
2474
|
}
|
|
2433
2475
|
if (thick) {
|
|
2434
|
-
return /* @__PURE__ */
|
|
2476
|
+
return /* @__PURE__ */ jsxs43("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2435
2477
|
/* @__PURE__ */ jsx59(
|
|
2436
2478
|
"path",
|
|
2437
2479
|
{
|
|
@@ -2452,7 +2494,7 @@ var ICPersonAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2452
2494
|
] });
|
|
2453
2495
|
}
|
|
2454
2496
|
if (fill) {
|
|
2455
|
-
return /* @__PURE__ */
|
|
2497
|
+
return /* @__PURE__ */ jsxs43("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2456
2498
|
/* @__PURE__ */ jsx59(
|
|
2457
2499
|
"path",
|
|
2458
2500
|
{
|
|
@@ -2476,7 +2518,7 @@ var ICPersonAdd = /* @__PURE__ */ __name((props) => {
|
|
|
2476
2518
|
)
|
|
2477
2519
|
] });
|
|
2478
2520
|
}
|
|
2479
|
-
return /* @__PURE__ */
|
|
2521
|
+
return /* @__PURE__ */ jsxs43("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2480
2522
|
/* @__PURE__ */ jsx59(
|
|
2481
2523
|
"path",
|
|
2482
2524
|
{
|
|
@@ -2590,7 +2632,7 @@ var ICCheckMark = /* @__PURE__ */ __name((props) => {
|
|
|
2590
2632
|
}, "ICCheckMark");
|
|
2591
2633
|
|
|
2592
2634
|
// src/assets/exclamationmark.tsx
|
|
2593
|
-
import { jsx as jsx62, jsxs as
|
|
2635
|
+
import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
2594
2636
|
var ICExclamationmark = /* @__PURE__ */ __name((props) => {
|
|
2595
2637
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2596
2638
|
if (fill && thick) {
|
|
@@ -2605,7 +2647,7 @@ var ICExclamationmark = /* @__PURE__ */ __name((props) => {
|
|
|
2605
2647
|
) });
|
|
2606
2648
|
}
|
|
2607
2649
|
if (thick) {
|
|
2608
|
-
return /* @__PURE__ */
|
|
2650
|
+
return /* @__PURE__ */ jsxs44("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2609
2651
|
/* @__PURE__ */ jsx62("path", { d: "M22 10V29H26V10H22Z", fill: color }),
|
|
2610
2652
|
/* @__PURE__ */ jsx62(
|
|
2611
2653
|
"path",
|
|
@@ -2627,7 +2669,7 @@ var ICExclamationmark = /* @__PURE__ */ __name((props) => {
|
|
|
2627
2669
|
}
|
|
2628
2670
|
) });
|
|
2629
2671
|
}
|
|
2630
|
-
return /* @__PURE__ */
|
|
2672
|
+
return /* @__PURE__ */ jsxs44("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2631
2673
|
/* @__PURE__ */ jsx62("path", { d: "M22.5 10V29H25.5V10H22.5Z", fill: color }),
|
|
2632
2674
|
/* @__PURE__ */ jsx62(
|
|
2633
2675
|
"path",
|
|
@@ -2684,11 +2726,11 @@ var ICClose = /* @__PURE__ */ __name((props) => {
|
|
|
2684
2726
|
}, "ICClose");
|
|
2685
2727
|
|
|
2686
2728
|
// src/assets/lock.tsx
|
|
2687
|
-
import { jsx as jsx64, jsxs as
|
|
2729
|
+
import { jsx as jsx64, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
2688
2730
|
var ICLock = /* @__PURE__ */ __name((props) => {
|
|
2689
2731
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2690
2732
|
if (fill && thick) {
|
|
2691
|
-
return /* @__PURE__ */
|
|
2733
|
+
return /* @__PURE__ */ jsxs45("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2692
2734
|
/* @__PURE__ */ jsx64(
|
|
2693
2735
|
"path",
|
|
2694
2736
|
{
|
|
@@ -2708,7 +2750,7 @@ var ICLock = /* @__PURE__ */ __name((props) => {
|
|
|
2708
2750
|
] });
|
|
2709
2751
|
}
|
|
2710
2752
|
if (thick) {
|
|
2711
|
-
return /* @__PURE__ */
|
|
2753
|
+
return /* @__PURE__ */ jsxs45("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2712
2754
|
/* @__PURE__ */ jsx64(
|
|
2713
2755
|
"path",
|
|
2714
2756
|
{
|
|
@@ -2730,7 +2772,7 @@ var ICLock = /* @__PURE__ */ __name((props) => {
|
|
|
2730
2772
|
] });
|
|
2731
2773
|
}
|
|
2732
2774
|
if (fill) {
|
|
2733
|
-
return /* @__PURE__ */
|
|
2775
|
+
return /* @__PURE__ */ jsxs45("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2734
2776
|
/* @__PURE__ */ jsx64(
|
|
2735
2777
|
"path",
|
|
2736
2778
|
{
|
|
@@ -2749,7 +2791,7 @@ var ICLock = /* @__PURE__ */ __name((props) => {
|
|
|
2749
2791
|
)
|
|
2750
2792
|
] });
|
|
2751
2793
|
}
|
|
2752
|
-
return /* @__PURE__ */
|
|
2794
|
+
return /* @__PURE__ */ jsxs45("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2753
2795
|
/* @__PURE__ */ jsx64(
|
|
2754
2796
|
"path",
|
|
2755
2797
|
{
|
|
@@ -2772,11 +2814,11 @@ var ICLock = /* @__PURE__ */ __name((props) => {
|
|
|
2772
2814
|
}, "ICLock");
|
|
2773
2815
|
|
|
2774
2816
|
// src/assets/ai.tsx
|
|
2775
|
-
import { jsx as jsx65, jsxs as
|
|
2817
|
+
import { jsx as jsx65, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
2776
2818
|
var ICAi = /* @__PURE__ */ __name((props) => {
|
|
2777
2819
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2778
2820
|
if (fill && thick) {
|
|
2779
|
-
return /* @__PURE__ */
|
|
2821
|
+
return /* @__PURE__ */ jsxs46("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2780
2822
|
/* @__PURE__ */ jsx65(
|
|
2781
2823
|
"path",
|
|
2782
2824
|
{
|
|
@@ -2797,7 +2839,7 @@ var ICAi = /* @__PURE__ */ __name((props) => {
|
|
|
2797
2839
|
] });
|
|
2798
2840
|
}
|
|
2799
2841
|
if (thick) {
|
|
2800
|
-
return /* @__PURE__ */
|
|
2842
|
+
return /* @__PURE__ */ jsxs46("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2801
2843
|
/* @__PURE__ */ jsx65(
|
|
2802
2844
|
"path",
|
|
2803
2845
|
{
|
|
@@ -2825,7 +2867,7 @@ var ICAi = /* @__PURE__ */ __name((props) => {
|
|
|
2825
2867
|
] });
|
|
2826
2868
|
}
|
|
2827
2869
|
if (fill) {
|
|
2828
|
-
return /* @__PURE__ */
|
|
2870
|
+
return /* @__PURE__ */ jsxs46("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2829
2871
|
/* @__PURE__ */ jsx65(
|
|
2830
2872
|
"path",
|
|
2831
2873
|
{
|
|
@@ -2852,7 +2894,7 @@ var ICAi = /* @__PURE__ */ __name((props) => {
|
|
|
2852
2894
|
)
|
|
2853
2895
|
] });
|
|
2854
2896
|
}
|
|
2855
|
-
return /* @__PURE__ */
|
|
2897
|
+
return /* @__PURE__ */ jsxs46("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2856
2898
|
/* @__PURE__ */ jsx65(
|
|
2857
2899
|
"path",
|
|
2858
2900
|
{
|
|
@@ -2881,11 +2923,11 @@ var ICAi = /* @__PURE__ */ __name((props) => {
|
|
|
2881
2923
|
}, "ICAi");
|
|
2882
2924
|
|
|
2883
2925
|
// src/assets/stack.tsx
|
|
2884
|
-
import { jsx as jsx66, jsxs as
|
|
2926
|
+
import { jsx as jsx66, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
2885
2927
|
var ICStack = /* @__PURE__ */ __name((props) => {
|
|
2886
2928
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2887
2929
|
if (fill && thick) {
|
|
2888
|
-
return /* @__PURE__ */
|
|
2930
|
+
return /* @__PURE__ */ jsxs47("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2889
2931
|
/* @__PURE__ */ jsx66(
|
|
2890
2932
|
"path",
|
|
2891
2933
|
{
|
|
@@ -2910,7 +2952,7 @@ var ICStack = /* @__PURE__ */ __name((props) => {
|
|
|
2910
2952
|
] });
|
|
2911
2953
|
}
|
|
2912
2954
|
if (thick) {
|
|
2913
|
-
return /* @__PURE__ */
|
|
2955
|
+
return /* @__PURE__ */ jsxs47("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2914
2956
|
/* @__PURE__ */ jsx66(
|
|
2915
2957
|
"path",
|
|
2916
2958
|
{
|
|
@@ -2937,7 +2979,7 @@ var ICStack = /* @__PURE__ */ __name((props) => {
|
|
|
2937
2979
|
] });
|
|
2938
2980
|
}
|
|
2939
2981
|
if (fill) {
|
|
2940
|
-
return /* @__PURE__ */
|
|
2982
|
+
return /* @__PURE__ */ jsxs47("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2941
2983
|
/* @__PURE__ */ jsx66(
|
|
2942
2984
|
"path",
|
|
2943
2985
|
{
|
|
@@ -2961,7 +3003,7 @@ var ICStack = /* @__PURE__ */ __name((props) => {
|
|
|
2961
3003
|
)
|
|
2962
3004
|
] });
|
|
2963
3005
|
}
|
|
2964
|
-
return /* @__PURE__ */
|
|
3006
|
+
return /* @__PURE__ */ jsxs47("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
2965
3007
|
/* @__PURE__ */ jsx66(
|
|
2966
3008
|
"path",
|
|
2967
3009
|
{
|
|
@@ -2989,7 +3031,7 @@ var ICStack = /* @__PURE__ */ __name((props) => {
|
|
|
2989
3031
|
}, "ICStack");
|
|
2990
3032
|
|
|
2991
3033
|
// src/assets/summarize.tsx
|
|
2992
|
-
import { jsx as jsx67, jsxs as
|
|
3034
|
+
import { jsx as jsx67, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
2993
3035
|
var ICSummarize = /* @__PURE__ */ __name((props) => {
|
|
2994
3036
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
2995
3037
|
if (fill && thick) {
|
|
@@ -3004,7 +3046,7 @@ var ICSummarize = /* @__PURE__ */ __name((props) => {
|
|
|
3004
3046
|
) });
|
|
3005
3047
|
}
|
|
3006
3048
|
if (thick) {
|
|
3007
|
-
return /* @__PURE__ */
|
|
3049
|
+
return /* @__PURE__ */ jsxs48("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3008
3050
|
/* @__PURE__ */ jsx67(
|
|
3009
3051
|
"path",
|
|
3010
3052
|
{
|
|
@@ -3035,7 +3077,7 @@ var ICSummarize = /* @__PURE__ */ __name((props) => {
|
|
|
3035
3077
|
}
|
|
3036
3078
|
) });
|
|
3037
3079
|
}
|
|
3038
|
-
return /* @__PURE__ */
|
|
3080
|
+
return /* @__PURE__ */ jsxs48("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3039
3081
|
/* @__PURE__ */ jsx67(
|
|
3040
3082
|
"path",
|
|
3041
3083
|
{
|
|
@@ -3057,7 +3099,7 @@ var ICSummarize = /* @__PURE__ */ __name((props) => {
|
|
|
3057
3099
|
}, "ICSummarize");
|
|
3058
3100
|
|
|
3059
3101
|
// src/assets/memo.tsx
|
|
3060
|
-
import { jsx as jsx68, jsxs as
|
|
3102
|
+
import { jsx as jsx68, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
3061
3103
|
var ICMemo = /* @__PURE__ */ __name((props) => {
|
|
3062
3104
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3063
3105
|
if (fill && thick) {
|
|
@@ -3072,7 +3114,7 @@ var ICMemo = /* @__PURE__ */ __name((props) => {
|
|
|
3072
3114
|
) });
|
|
3073
3115
|
}
|
|
3074
3116
|
if (thick) {
|
|
3075
|
-
return /* @__PURE__ */
|
|
3117
|
+
return /* @__PURE__ */ jsxs49("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3076
3118
|
/* @__PURE__ */ jsx68("path", { d: "M14 14V18H34V14H14Z", fill: color }),
|
|
3077
3119
|
/* @__PURE__ */ jsx68("path", { d: "M14 22H34V26H14V22Z", fill: color }),
|
|
3078
3120
|
/* @__PURE__ */ jsx68("path", { d: "M14 30V34H27V30H14Z", fill: color }),
|
|
@@ -3098,7 +3140,7 @@ var ICMemo = /* @__PURE__ */ __name((props) => {
|
|
|
3098
3140
|
}
|
|
3099
3141
|
) });
|
|
3100
3142
|
}
|
|
3101
|
-
return /* @__PURE__ */
|
|
3143
|
+
return /* @__PURE__ */ jsxs49("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3102
3144
|
/* @__PURE__ */ jsx68("path", { d: "M14.5 14.5V17.5H33.5V14.5H14.5Z", fill: color }),
|
|
3103
3145
|
/* @__PURE__ */ jsx68("path", { d: "M14.5 22.5H33.5V25.5H14.5V22.5Z", fill: color }),
|
|
3104
3146
|
/* @__PURE__ */ jsx68("path", { d: "M14.5 30.5V33.5H26.5V30.5H14.5Z", fill: color }),
|
|
@@ -3115,11 +3157,11 @@ var ICMemo = /* @__PURE__ */ __name((props) => {
|
|
|
3115
3157
|
}, "ICMemo");
|
|
3116
3158
|
|
|
3117
3159
|
// src/assets/highlighter.tsx
|
|
3118
|
-
import { jsx as jsx69, jsxs as
|
|
3160
|
+
import { jsx as jsx69, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
3119
3161
|
var ICHighlighter = /* @__PURE__ */ __name((props) => {
|
|
3120
3162
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3121
3163
|
if (fill && thick) {
|
|
3122
|
-
return /* @__PURE__ */
|
|
3164
|
+
return /* @__PURE__ */ jsxs50("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3123
3165
|
/* @__PURE__ */ jsx69(
|
|
3124
3166
|
"path",
|
|
3125
3167
|
{
|
|
@@ -3138,7 +3180,7 @@ var ICHighlighter = /* @__PURE__ */ __name((props) => {
|
|
|
3138
3180
|
] });
|
|
3139
3181
|
}
|
|
3140
3182
|
if (thick) {
|
|
3141
|
-
return /* @__PURE__ */
|
|
3183
|
+
return /* @__PURE__ */ jsxs50("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3142
3184
|
/* @__PURE__ */ jsx69(
|
|
3143
3185
|
"path",
|
|
3144
3186
|
{
|
|
@@ -3152,7 +3194,7 @@ var ICHighlighter = /* @__PURE__ */ __name((props) => {
|
|
|
3152
3194
|
] });
|
|
3153
3195
|
}
|
|
3154
3196
|
if (fill) {
|
|
3155
|
-
return /* @__PURE__ */
|
|
3197
|
+
return /* @__PURE__ */ jsxs50("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3156
3198
|
/* @__PURE__ */ jsx69(
|
|
3157
3199
|
"path",
|
|
3158
3200
|
{
|
|
@@ -3170,7 +3212,7 @@ var ICHighlighter = /* @__PURE__ */ __name((props) => {
|
|
|
3170
3212
|
/* @__PURE__ */ jsx69("path", { d: "M41 39.5H7V42.5H41V39.5Z", fill: color })
|
|
3171
3213
|
] });
|
|
3172
3214
|
}
|
|
3173
|
-
return /* @__PURE__ */
|
|
3215
|
+
return /* @__PURE__ */ jsxs50("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3174
3216
|
/* @__PURE__ */ jsx69(
|
|
3175
3217
|
"path",
|
|
3176
3218
|
{
|
|
@@ -3185,11 +3227,11 @@ var ICHighlighter = /* @__PURE__ */ __name((props) => {
|
|
|
3185
3227
|
}, "ICHighlighter");
|
|
3186
3228
|
|
|
3187
3229
|
// src/assets/creditcard.tsx
|
|
3188
|
-
import { jsx as jsx70, jsxs as
|
|
3230
|
+
import { jsx as jsx70, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3189
3231
|
var ICCreditcard = /* @__PURE__ */ __name((props) => {
|
|
3190
3232
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3191
3233
|
if (fill && thick) {
|
|
3192
|
-
return /* @__PURE__ */
|
|
3234
|
+
return /* @__PURE__ */ jsxs51("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3193
3235
|
/* @__PURE__ */ jsx70("path", { d: "M6 9C4.89543 9 4 9.89543 4 11V17H44V11C44 9.89543 43.1046 9 42 9H6Z", fill: color }),
|
|
3194
3236
|
/* @__PURE__ */ jsx70(
|
|
3195
3237
|
"path",
|
|
@@ -3203,7 +3245,7 @@ var ICCreditcard = /* @__PURE__ */ __name((props) => {
|
|
|
3203
3245
|
] });
|
|
3204
3246
|
}
|
|
3205
3247
|
if (thick) {
|
|
3206
|
-
return /* @__PURE__ */
|
|
3248
|
+
return /* @__PURE__ */ jsxs51("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3207
3249
|
/* @__PURE__ */ jsx70("path", { d: "M18 27H11V32H18V27Z", fill: color }),
|
|
3208
3250
|
/* @__PURE__ */ jsx70(
|
|
3209
3251
|
"path",
|
|
@@ -3217,7 +3259,7 @@ var ICCreditcard = /* @__PURE__ */ __name((props) => {
|
|
|
3217
3259
|
] });
|
|
3218
3260
|
}
|
|
3219
3261
|
if (fill) {
|
|
3220
|
-
return /* @__PURE__ */
|
|
3262
|
+
return /* @__PURE__ */ jsxs51("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3221
3263
|
/* @__PURE__ */ jsx70("path", { d: "M6 9C4.89543 9 4 9.89543 4 11V17.5H44V11C44 9.89543 43.1046 9 42 9H6Z", fill: color }),
|
|
3222
3264
|
/* @__PURE__ */ jsx70(
|
|
3223
3265
|
"path",
|
|
@@ -3230,7 +3272,7 @@ var ICCreditcard = /* @__PURE__ */ __name((props) => {
|
|
|
3230
3272
|
)
|
|
3231
3273
|
] });
|
|
3232
3274
|
}
|
|
3233
|
-
return /* @__PURE__ */
|
|
3275
|
+
return /* @__PURE__ */ jsxs51("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3234
3276
|
/* @__PURE__ */ jsx70("path", { d: "M18 27H11V32H18V27Z", fill: color }),
|
|
3235
3277
|
/* @__PURE__ */ jsx70(
|
|
3236
3278
|
"path",
|
|
@@ -3245,11 +3287,11 @@ var ICCreditcard = /* @__PURE__ */ __name((props) => {
|
|
|
3245
3287
|
}, "ICCreditcard");
|
|
3246
3288
|
|
|
3247
3289
|
// src/assets/speaker.tsx
|
|
3248
|
-
import { jsx as jsx71, jsxs as
|
|
3290
|
+
import { jsx as jsx71, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3249
3291
|
var ICSpeaker = /* @__PURE__ */ __name((props) => {
|
|
3250
3292
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3251
3293
|
if (fill && thick) {
|
|
3252
|
-
return /* @__PURE__ */
|
|
3294
|
+
return /* @__PURE__ */ jsxs52("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3253
3295
|
/* @__PURE__ */ jsx71(
|
|
3254
3296
|
"path",
|
|
3255
3297
|
{
|
|
@@ -3267,7 +3309,7 @@ var ICSpeaker = /* @__PURE__ */ __name((props) => {
|
|
|
3267
3309
|
] });
|
|
3268
3310
|
}
|
|
3269
3311
|
if (thick) {
|
|
3270
|
-
return /* @__PURE__ */
|
|
3312
|
+
return /* @__PURE__ */ jsxs52("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3271
3313
|
/* @__PURE__ */ jsx71(
|
|
3272
3314
|
"path",
|
|
3273
3315
|
{
|
|
@@ -3287,7 +3329,7 @@ var ICSpeaker = /* @__PURE__ */ __name((props) => {
|
|
|
3287
3329
|
] });
|
|
3288
3330
|
}
|
|
3289
3331
|
if (fill) {
|
|
3290
|
-
return /* @__PURE__ */
|
|
3332
|
+
return /* @__PURE__ */ jsxs52("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3291
3333
|
/* @__PURE__ */ jsx71(
|
|
3292
3334
|
"path",
|
|
3293
3335
|
{
|
|
@@ -3304,7 +3346,7 @@ var ICSpeaker = /* @__PURE__ */ __name((props) => {
|
|
|
3304
3346
|
)
|
|
3305
3347
|
] });
|
|
3306
3348
|
}
|
|
3307
|
-
return /* @__PURE__ */
|
|
3349
|
+
return /* @__PURE__ */ jsxs52("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3308
3350
|
/* @__PURE__ */ jsx71(
|
|
3309
3351
|
"path",
|
|
3310
3352
|
{
|
|
@@ -3325,11 +3367,11 @@ var ICSpeaker = /* @__PURE__ */ __name((props) => {
|
|
|
3325
3367
|
}, "ICSpeaker");
|
|
3326
3368
|
|
|
3327
3369
|
// src/assets/light.tsx
|
|
3328
|
-
import { jsx as jsx72, jsxs as
|
|
3370
|
+
import { jsx as jsx72, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3329
3371
|
var ICLight = /* @__PURE__ */ __name((props) => {
|
|
3330
3372
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3331
3373
|
if (fill && thick) {
|
|
3332
|
-
return /* @__PURE__ */
|
|
3374
|
+
return /* @__PURE__ */ jsxs53("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3333
3375
|
/* @__PURE__ */ jsx72(
|
|
3334
3376
|
"path",
|
|
3335
3377
|
{
|
|
@@ -3347,7 +3389,7 @@ var ICLight = /* @__PURE__ */ __name((props) => {
|
|
|
3347
3389
|
] });
|
|
3348
3390
|
}
|
|
3349
3391
|
if (thick) {
|
|
3350
|
-
return /* @__PURE__ */
|
|
3392
|
+
return /* @__PURE__ */ jsxs53("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3351
3393
|
/* @__PURE__ */ jsx72(
|
|
3352
3394
|
"path",
|
|
3353
3395
|
{
|
|
@@ -3367,7 +3409,7 @@ var ICLight = /* @__PURE__ */ __name((props) => {
|
|
|
3367
3409
|
] });
|
|
3368
3410
|
}
|
|
3369
3411
|
if (fill) {
|
|
3370
|
-
return /* @__PURE__ */
|
|
3412
|
+
return /* @__PURE__ */ jsxs53("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3371
3413
|
/* @__PURE__ */ jsx72(
|
|
3372
3414
|
"path",
|
|
3373
3415
|
{
|
|
@@ -3384,7 +3426,7 @@ var ICLight = /* @__PURE__ */ __name((props) => {
|
|
|
3384
3426
|
)
|
|
3385
3427
|
] });
|
|
3386
3428
|
}
|
|
3387
|
-
return /* @__PURE__ */
|
|
3429
|
+
return /* @__PURE__ */ jsxs53("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3388
3430
|
/* @__PURE__ */ jsx72(
|
|
3389
3431
|
"path",
|
|
3390
3432
|
{
|
|
@@ -3405,11 +3447,11 @@ var ICLight = /* @__PURE__ */ __name((props) => {
|
|
|
3405
3447
|
}, "ICLight");
|
|
3406
3448
|
|
|
3407
3449
|
// src/assets/document-add.tsx
|
|
3408
|
-
import { jsx as jsx73, jsxs as
|
|
3450
|
+
import { jsx as jsx73, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3409
3451
|
var ICDocumentAdd = /* @__PURE__ */ __name((props) => {
|
|
3410
3452
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3411
3453
|
if (fill && thick) {
|
|
3412
|
-
return /* @__PURE__ */
|
|
3454
|
+
return /* @__PURE__ */ jsxs54("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3413
3455
|
/* @__PURE__ */ jsx73(
|
|
3414
3456
|
"path",
|
|
3415
3457
|
{
|
|
@@ -3422,7 +3464,7 @@ var ICDocumentAdd = /* @__PURE__ */ __name((props) => {
|
|
|
3422
3464
|
] });
|
|
3423
3465
|
}
|
|
3424
3466
|
if (thick) {
|
|
3425
|
-
return /* @__PURE__ */
|
|
3467
|
+
return /* @__PURE__ */ jsxs54("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3426
3468
|
/* @__PURE__ */ jsx73(
|
|
3427
3469
|
"path",
|
|
3428
3470
|
{
|
|
@@ -3436,7 +3478,7 @@ var ICDocumentAdd = /* @__PURE__ */ __name((props) => {
|
|
|
3436
3478
|
] });
|
|
3437
3479
|
}
|
|
3438
3480
|
if (fill) {
|
|
3439
|
-
return /* @__PURE__ */
|
|
3481
|
+
return /* @__PURE__ */ jsxs54("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3440
3482
|
/* @__PURE__ */ jsx73(
|
|
3441
3483
|
"path",
|
|
3442
3484
|
{
|
|
@@ -3454,7 +3496,7 @@ var ICDocumentAdd = /* @__PURE__ */ __name((props) => {
|
|
|
3454
3496
|
/* @__PURE__ */ jsx73("path", { d: "M35.9996 43.9996V38H30V35H35.9996V29H38.9996V35H45V38H38.9996V43.9996H35.9996Z", fill: color })
|
|
3455
3497
|
] });
|
|
3456
3498
|
}
|
|
3457
|
-
return /* @__PURE__ */
|
|
3499
|
+
return /* @__PURE__ */ jsxs54("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3458
3500
|
/* @__PURE__ */ jsx73(
|
|
3459
3501
|
"path",
|
|
3460
3502
|
{
|
|
@@ -3565,7 +3607,7 @@ var ICThumbDown = /* @__PURE__ */ __name((props) => {
|
|
|
3565
3607
|
}, "ICThumbDown");
|
|
3566
3608
|
|
|
3567
3609
|
// src/assets/shield.tsx
|
|
3568
|
-
import { jsx as jsx76, jsxs as
|
|
3610
|
+
import { jsx as jsx76, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3569
3611
|
var ICShield = /* @__PURE__ */ __name((props) => {
|
|
3570
3612
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3571
3613
|
if (fill && thick) {
|
|
@@ -3580,7 +3622,7 @@ var ICShield = /* @__PURE__ */ __name((props) => {
|
|
|
3580
3622
|
) });
|
|
3581
3623
|
}
|
|
3582
3624
|
if (thick) {
|
|
3583
|
-
return /* @__PURE__ */
|
|
3625
|
+
return /* @__PURE__ */ jsxs55("svg", { ...props, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", fill: "none", children: [
|
|
3584
3626
|
/* @__PURE__ */ jsx76(
|
|
3585
3627
|
"path",
|
|
3586
3628
|
{
|
|
@@ -3610,7 +3652,7 @@ var ICShield = /* @__PURE__ */ __name((props) => {
|
|
|
3610
3652
|
}
|
|
3611
3653
|
) });
|
|
3612
3654
|
}
|
|
3613
|
-
return /* @__PURE__ */
|
|
3655
|
+
return /* @__PURE__ */ jsxs55("svg", { ...props, width: size, height: size, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", fill: "none", children: [
|
|
3614
3656
|
/* @__PURE__ */ jsx76(
|
|
3615
3657
|
"path",
|
|
3616
3658
|
{
|
|
@@ -3657,11 +3699,11 @@ var ICHome = /* @__PURE__ */ __name((props) => {
|
|
|
3657
3699
|
}, "ICHome");
|
|
3658
3700
|
|
|
3659
3701
|
// src/assets/visibility.tsx
|
|
3660
|
-
import { jsx as jsx78, jsxs as
|
|
3702
|
+
import { jsx as jsx78, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3661
3703
|
var ICVisibility = /* @__PURE__ */ __name((props) => {
|
|
3662
3704
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3663
3705
|
if (thick) {
|
|
3664
|
-
return /* @__PURE__ */
|
|
3706
|
+
return /* @__PURE__ */ jsxs56("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3665
3707
|
/* @__PURE__ */ jsx78(
|
|
3666
3708
|
"path",
|
|
3667
3709
|
{
|
|
@@ -3682,7 +3724,7 @@ var ICVisibility = /* @__PURE__ */ __name((props) => {
|
|
|
3682
3724
|
)
|
|
3683
3725
|
] });
|
|
3684
3726
|
}
|
|
3685
|
-
return /* @__PURE__ */
|
|
3727
|
+
return /* @__PURE__ */ jsxs56("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3686
3728
|
/* @__PURE__ */ jsx78(
|
|
3687
3729
|
"path",
|
|
3688
3730
|
{
|
|
@@ -3705,11 +3747,11 @@ var ICVisibility = /* @__PURE__ */ __name((props) => {
|
|
|
3705
3747
|
}, "ICVisibility");
|
|
3706
3748
|
|
|
3707
3749
|
// src/assets/visibility-off.tsx
|
|
3708
|
-
import { jsx as jsx79, jsxs as
|
|
3750
|
+
import { jsx as jsx79, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
3709
3751
|
var ICVisibilityOff = /* @__PURE__ */ __name((props) => {
|
|
3710
3752
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3711
3753
|
if (thick) {
|
|
3712
|
-
return /* @__PURE__ */
|
|
3754
|
+
return /* @__PURE__ */ jsxs57("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3713
3755
|
/* @__PURE__ */ jsx79("path", { d: "M39.5568 36.7276L36.7284 39.5561L8.44409 11.2718L11.2725 8.44336L39.5568 36.7276Z", fill: color }),
|
|
3714
3756
|
/* @__PURE__ */ jsx79(
|
|
3715
3757
|
"path",
|
|
@@ -3741,7 +3783,7 @@ var ICVisibilityOff = /* @__PURE__ */ __name((props) => {
|
|
|
3741
3783
|
)
|
|
3742
3784
|
] });
|
|
3743
3785
|
}
|
|
3744
|
-
return /* @__PURE__ */
|
|
3786
|
+
return /* @__PURE__ */ jsxs57("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3745
3787
|
/* @__PURE__ */ jsx79("path", { d: "M10.9186 8.79785L39.2028 37.0821L37.0815 39.2034L8.79724 10.9192L10.9186 8.79785Z", fill: color }),
|
|
3746
3788
|
/* @__PURE__ */ jsx79(
|
|
3747
3789
|
"path",
|
|
@@ -3779,11 +3821,11 @@ var ICVisibilityOff = /* @__PURE__ */ __name((props) => {
|
|
|
3779
3821
|
}, "ICVisibilityOff");
|
|
3780
3822
|
|
|
3781
3823
|
// src/assets/magic-wand.tsx
|
|
3782
|
-
import { jsx as jsx80, jsxs as
|
|
3824
|
+
import { jsx as jsx80, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
3783
3825
|
var ICMagicWand = /* @__PURE__ */ __name((props) => {
|
|
3784
3826
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3785
3827
|
if (thick) {
|
|
3786
|
-
return /* @__PURE__ */
|
|
3828
|
+
return /* @__PURE__ */ jsxs58("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3787
3829
|
/* @__PURE__ */ jsx80(
|
|
3788
3830
|
"path",
|
|
3789
3831
|
{
|
|
@@ -3816,7 +3858,7 @@ var ICMagicWand = /* @__PURE__ */ __name((props) => {
|
|
|
3816
3858
|
)
|
|
3817
3859
|
] });
|
|
3818
3860
|
}
|
|
3819
|
-
return /* @__PURE__ */
|
|
3861
|
+
return /* @__PURE__ */ jsxs58("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3820
3862
|
/* @__PURE__ */ jsx80(
|
|
3821
3863
|
"path",
|
|
3822
3864
|
{
|
|
@@ -3851,11 +3893,11 @@ var ICMagicWand = /* @__PURE__ */ __name((props) => {
|
|
|
3851
3893
|
}, "ICMagicWand");
|
|
3852
3894
|
|
|
3853
3895
|
// src/assets/magic-pencil.tsx
|
|
3854
|
-
import { jsx as jsx81, jsxs as
|
|
3896
|
+
import { jsx as jsx81, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
3855
3897
|
var ICMagicPencil = /* @__PURE__ */ __name((props) => {
|
|
3856
3898
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3857
3899
|
if (thick) {
|
|
3858
|
-
return /* @__PURE__ */
|
|
3900
|
+
return /* @__PURE__ */ jsxs59("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3859
3901
|
/* @__PURE__ */ jsx81(
|
|
3860
3902
|
"path",
|
|
3861
3903
|
{
|
|
@@ -3889,7 +3931,7 @@ var ICMagicPencil = /* @__PURE__ */ __name((props) => {
|
|
|
3889
3931
|
)
|
|
3890
3932
|
] });
|
|
3891
3933
|
}
|
|
3892
|
-
return /* @__PURE__ */
|
|
3934
|
+
return /* @__PURE__ */ jsxs59("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3893
3935
|
/* @__PURE__ */ jsx81(
|
|
3894
3936
|
"path",
|
|
3895
3937
|
{
|
|
@@ -3925,11 +3967,11 @@ var ICMagicPencil = /* @__PURE__ */ __name((props) => {
|
|
|
3925
3967
|
}, "ICMagicPencil");
|
|
3926
3968
|
|
|
3927
3969
|
// src/assets/bulb-exclamtionmark.tsx
|
|
3928
|
-
import { jsx as jsx82, jsxs as
|
|
3970
|
+
import { jsx as jsx82, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
3929
3971
|
var ICBulbExclamtionmark = /* @__PURE__ */ __name((props) => {
|
|
3930
3972
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3931
3973
|
if (thick) {
|
|
3932
|
-
return /* @__PURE__ */
|
|
3974
|
+
return /* @__PURE__ */ jsxs60("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3933
3975
|
/* @__PURE__ */ jsx82(
|
|
3934
3976
|
"path",
|
|
3935
3977
|
{
|
|
@@ -3950,7 +3992,7 @@ var ICBulbExclamtionmark = /* @__PURE__ */ __name((props) => {
|
|
|
3950
3992
|
/* @__PURE__ */ jsx82("path", { d: "M18 39V43H30V39H18Z", fill: color })
|
|
3951
3993
|
] });
|
|
3952
3994
|
}
|
|
3953
|
-
return /* @__PURE__ */
|
|
3995
|
+
return /* @__PURE__ */ jsxs60("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3954
3996
|
/* @__PURE__ */ jsx82(
|
|
3955
3997
|
"path",
|
|
3956
3998
|
{
|
|
@@ -3973,11 +4015,11 @@ var ICBulbExclamtionmark = /* @__PURE__ */ __name((props) => {
|
|
|
3973
4015
|
}, "ICBulbExclamtionmark");
|
|
3974
4016
|
|
|
3975
4017
|
// src/assets/bulb.tsx
|
|
3976
|
-
import { jsx as jsx83, jsxs as
|
|
4018
|
+
import { jsx as jsx83, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
3977
4019
|
var ICBulb = /* @__PURE__ */ __name((props) => {
|
|
3978
4020
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
3979
4021
|
if (thick) {
|
|
3980
|
-
return /* @__PURE__ */
|
|
4022
|
+
return /* @__PURE__ */ jsxs61("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3981
4023
|
/* @__PURE__ */ jsx83("path", { d: "M31 6H7V10H31V6Z", fill: "black" }),
|
|
3982
4024
|
/* @__PURE__ */ jsx83("path", { d: "M31 15H7V19H31V15Z", fill: "black" }),
|
|
3983
4025
|
/* @__PURE__ */ jsx83("path", { d: "M7 24H21V28H7V24Z", fill: "black" }),
|
|
@@ -3992,7 +4034,7 @@ var ICBulb = /* @__PURE__ */ __name((props) => {
|
|
|
3992
4034
|
)
|
|
3993
4035
|
] });
|
|
3994
4036
|
}
|
|
3995
|
-
return /* @__PURE__ */
|
|
4037
|
+
return /* @__PURE__ */ jsxs61("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
3996
4038
|
/* @__PURE__ */ jsx83("path", { d: "M31 6.5H7V9.5H31V6.5Z", fill: "black" }),
|
|
3997
4039
|
/* @__PURE__ */ jsx83("path", { d: "M31 15.5H7V18.5H31V15.5Z", fill: "black" }),
|
|
3998
4040
|
/* @__PURE__ */ jsx83("path", { d: "M7 24.5H21V27.5H7V24.5Z", fill: "black" }),
|
|
@@ -4009,11 +4051,11 @@ var ICBulb = /* @__PURE__ */ __name((props) => {
|
|
|
4009
4051
|
}, "ICBulb");
|
|
4010
4052
|
|
|
4011
4053
|
// src/assets/paraphase.tsx
|
|
4012
|
-
import { jsx as jsx84, jsxs as
|
|
4054
|
+
import { jsx as jsx84, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
4013
4055
|
var ICParaphase = /* @__PURE__ */ __name((props) => {
|
|
4014
4056
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4015
4057
|
if (thick) {
|
|
4016
|
-
return /* @__PURE__ */
|
|
4058
|
+
return /* @__PURE__ */ jsxs62("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4017
4059
|
/* @__PURE__ */ jsx84("path", { d: "M31 6H7V10H31V6Z", fill: color }),
|
|
4018
4060
|
/* @__PURE__ */ jsx84("path", { d: "M31 15H7V19H31V15Z", fill: color }),
|
|
4019
4061
|
/* @__PURE__ */ jsx84("path", { d: "M7 24H21V28H7V24Z", fill: color }),
|
|
@@ -4028,7 +4070,7 @@ var ICParaphase = /* @__PURE__ */ __name((props) => {
|
|
|
4028
4070
|
)
|
|
4029
4071
|
] });
|
|
4030
4072
|
}
|
|
4031
|
-
return /* @__PURE__ */
|
|
4073
|
+
return /* @__PURE__ */ jsxs62("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4032
4074
|
/* @__PURE__ */ jsx84("path", { d: "M31 6.5H7V9.5H31V6.5Z", fill: color }),
|
|
4033
4075
|
/* @__PURE__ */ jsx84("path", { d: "M31 15.5H7V18.5H31V15.5Z", fill: color }),
|
|
4034
4076
|
/* @__PURE__ */ jsx84("path", { d: "M7 24.5H21V27.5H7V24.5Z", fill: color }),
|
|
@@ -4045,11 +4087,11 @@ var ICParaphase = /* @__PURE__ */ __name((props) => {
|
|
|
4045
4087
|
}, "ICParaphase");
|
|
4046
4088
|
|
|
4047
4089
|
// src/assets/make-easy.tsx
|
|
4048
|
-
import { jsx as jsx85, jsxs as
|
|
4090
|
+
import { jsx as jsx85, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
4049
4091
|
var ICMakeEasy = /* @__PURE__ */ __name((props) => {
|
|
4050
4092
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4051
4093
|
if (thick) {
|
|
4052
|
-
return /* @__PURE__ */
|
|
4094
|
+
return /* @__PURE__ */ jsxs63("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4053
4095
|
/* @__PURE__ */ jsx85(
|
|
4054
4096
|
"path",
|
|
4055
4097
|
{
|
|
@@ -4081,7 +4123,7 @@ var ICMakeEasy = /* @__PURE__ */ __name((props) => {
|
|
|
4081
4123
|
/* @__PURE__ */ jsx85("path", { d: "M26 36.0003V40.0003H41V36.0003H26Z", fill: color })
|
|
4082
4124
|
] });
|
|
4083
4125
|
}
|
|
4084
|
-
return /* @__PURE__ */
|
|
4126
|
+
return /* @__PURE__ */ jsxs63("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4085
4127
|
/* @__PURE__ */ jsx85(
|
|
4086
4128
|
"path",
|
|
4087
4129
|
{
|
|
@@ -4115,11 +4157,11 @@ var ICMakeEasy = /* @__PURE__ */ __name((props) => {
|
|
|
4115
4157
|
}, "ICMakeEasy");
|
|
4116
4158
|
|
|
4117
4159
|
// src/assets/translate.tsx
|
|
4118
|
-
import { jsx as jsx86, jsxs as
|
|
4160
|
+
import { jsx as jsx86, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
4119
4161
|
var ICTranslate = /* @__PURE__ */ __name((props) => {
|
|
4120
4162
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4121
4163
|
if (thick) {
|
|
4122
|
-
return /* @__PURE__ */
|
|
4164
|
+
return /* @__PURE__ */ jsxs64("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4123
4165
|
/* @__PURE__ */ jsx86(
|
|
4124
4166
|
"path",
|
|
4125
4167
|
{
|
|
@@ -4138,7 +4180,7 @@ var ICTranslate = /* @__PURE__ */ __name((props) => {
|
|
|
4138
4180
|
)
|
|
4139
4181
|
] });
|
|
4140
4182
|
}
|
|
4141
|
-
return /* @__PURE__ */
|
|
4183
|
+
return /* @__PURE__ */ jsxs64("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4142
4184
|
/* @__PURE__ */ jsx86(
|
|
4143
4185
|
"path",
|
|
4144
4186
|
{
|
|
@@ -4159,11 +4201,11 @@ var ICTranslate = /* @__PURE__ */ __name((props) => {
|
|
|
4159
4201
|
}, "ICTranslate");
|
|
4160
4202
|
|
|
4161
4203
|
// src/assets/Info.tsx
|
|
4162
|
-
import { jsx as jsx87, jsxs as
|
|
4204
|
+
import { jsx as jsx87, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
4163
4205
|
var ICInfo = /* @__PURE__ */ __name((props) => {
|
|
4164
4206
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4165
4207
|
if (thick) {
|
|
4166
|
-
return /* @__PURE__ */
|
|
4208
|
+
return /* @__PURE__ */ jsxs65("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4167
4209
|
/* @__PURE__ */ jsx87(
|
|
4168
4210
|
"path",
|
|
4169
4211
|
{
|
|
@@ -4183,7 +4225,7 @@ var ICInfo = /* @__PURE__ */ __name((props) => {
|
|
|
4183
4225
|
)
|
|
4184
4226
|
] });
|
|
4185
4227
|
}
|
|
4186
|
-
return /* @__PURE__ */
|
|
4228
|
+
return /* @__PURE__ */ jsxs65("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4187
4229
|
/* @__PURE__ */ jsx87(
|
|
4188
4230
|
"path",
|
|
4189
4231
|
{
|
|
@@ -4205,7 +4247,7 @@ var ICInfo = /* @__PURE__ */ __name((props) => {
|
|
|
4205
4247
|
}, "ICInfo");
|
|
4206
4248
|
|
|
4207
4249
|
// src/assets/folder-open.tsx
|
|
4208
|
-
import { jsx as jsx88, jsxs as
|
|
4250
|
+
import { jsx as jsx88, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
4209
4251
|
var ICFolderOpen = /* @__PURE__ */ __name((props) => {
|
|
4210
4252
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F", ...rest } = props;
|
|
4211
4253
|
if (fill && thick) {
|
|
@@ -4227,7 +4269,7 @@ var ICFolderOpen = /* @__PURE__ */ __name((props) => {
|
|
|
4227
4269
|
) });
|
|
4228
4270
|
}
|
|
4229
4271
|
if (thick) {
|
|
4230
|
-
return /* @__PURE__ */
|
|
4272
|
+
return /* @__PURE__ */ jsxs66("svg", { ...rest, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4231
4273
|
/* @__PURE__ */ jsx88("g", { "clip-path": "url(#clip0_975_1749)", children: /* @__PURE__ */ jsx88(
|
|
4232
4274
|
"path",
|
|
4233
4275
|
{
|
|
@@ -4240,7 +4282,7 @@ var ICFolderOpen = /* @__PURE__ */ __name((props) => {
|
|
|
4240
4282
|
/* @__PURE__ */ jsx88("defs", { children: /* @__PURE__ */ jsx88("clipPath", { id: "clip0_975_1749", children: /* @__PURE__ */ jsx88("rect", { width: "48", height: "48", fill: "white" }) }) })
|
|
4241
4283
|
] });
|
|
4242
4284
|
}
|
|
4243
|
-
return /* @__PURE__ */
|
|
4285
|
+
return /* @__PURE__ */ jsxs66("svg", { ...rest, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4244
4286
|
/* @__PURE__ */ jsx88("g", { "clip-path": "url(#clip0_975_1738)", children: /* @__PURE__ */ jsx88(
|
|
4245
4287
|
"path",
|
|
4246
4288
|
{
|
|
@@ -4255,11 +4297,11 @@ var ICFolderOpen = /* @__PURE__ */ __name((props) => {
|
|
|
4255
4297
|
}, "ICFolderOpen");
|
|
4256
4298
|
|
|
4257
4299
|
// src/assets/highlight-edit.tsx
|
|
4258
|
-
import { jsx as jsx89, jsxs as
|
|
4300
|
+
import { jsx as jsx89, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
4259
4301
|
var ICHighlightEdit = /* @__PURE__ */ __name((props) => {
|
|
4260
4302
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4261
4303
|
if (thick) {
|
|
4262
|
-
return /* @__PURE__ */
|
|
4304
|
+
return /* @__PURE__ */ jsxs67("svg", { ...props, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 48 48", fill: "none", children: [
|
|
4263
4305
|
/* @__PURE__ */ jsx89(
|
|
4264
4306
|
"path",
|
|
4265
4307
|
{
|
|
@@ -4278,7 +4320,7 @@ var ICHighlightEdit = /* @__PURE__ */ __name((props) => {
|
|
|
4278
4320
|
)
|
|
4279
4321
|
] });
|
|
4280
4322
|
}
|
|
4281
|
-
return /* @__PURE__ */
|
|
4323
|
+
return /* @__PURE__ */ jsxs67("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", xmlns: "http://www.w3.org/2000/svg", fill: "none", children: [
|
|
4282
4324
|
/* @__PURE__ */ jsx89(
|
|
4283
4325
|
"path",
|
|
4284
4326
|
{
|
|
@@ -4299,11 +4341,11 @@ var ICHighlightEdit = /* @__PURE__ */ __name((props) => {
|
|
|
4299
4341
|
}, "ICHighlightEdit");
|
|
4300
4342
|
|
|
4301
4343
|
// src/assets/apple.tsx
|
|
4302
|
-
import { jsx as jsx90, jsxs as
|
|
4344
|
+
import { jsx as jsx90, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
4303
4345
|
var ICApple = /* @__PURE__ */ __name((props) => {
|
|
4304
4346
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4305
4347
|
if (fill) {
|
|
4306
|
-
return /* @__PURE__ */
|
|
4348
|
+
return /* @__PURE__ */ jsxs68("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4307
4349
|
/* @__PURE__ */ jsx90(
|
|
4308
4350
|
"path",
|
|
4309
4351
|
{
|
|
@@ -4320,7 +4362,7 @@ var ICApple = /* @__PURE__ */ __name((props) => {
|
|
|
4320
4362
|
)
|
|
4321
4363
|
] });
|
|
4322
4364
|
}
|
|
4323
|
-
return /* @__PURE__ */
|
|
4365
|
+
return /* @__PURE__ */ jsxs68("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4324
4366
|
/* @__PURE__ */ jsx90(
|
|
4325
4367
|
"path",
|
|
4326
4368
|
{
|
|
@@ -4405,11 +4447,11 @@ var ICFacebook = /* @__PURE__ */ __name((props) => {
|
|
|
4405
4447
|
}, "ICFacebook");
|
|
4406
4448
|
|
|
4407
4449
|
// src/assets/google.tsx
|
|
4408
|
-
import { jsx as jsx94, jsxs as
|
|
4450
|
+
import { jsx as jsx94, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4409
4451
|
var ICGoogle = /* @__PURE__ */ __name((props) => {
|
|
4410
4452
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4411
4453
|
if (fill) {
|
|
4412
|
-
return /* @__PURE__ */
|
|
4454
|
+
return /* @__PURE__ */ jsxs69("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4413
4455
|
/* @__PURE__ */ jsx94(
|
|
4414
4456
|
"path",
|
|
4415
4457
|
{
|
|
@@ -4452,11 +4494,11 @@ var ICGoogle = /* @__PURE__ */ __name((props) => {
|
|
|
4452
4494
|
}, "ICGoogle");
|
|
4453
4495
|
|
|
4454
4496
|
// src/assets/paraphrase.tsx
|
|
4455
|
-
import { jsx as jsx95, jsxs as
|
|
4497
|
+
import { jsx as jsx95, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4456
4498
|
var ICParaphrase = /* @__PURE__ */ __name((props) => {
|
|
4457
4499
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4458
4500
|
if (thick) {
|
|
4459
|
-
return /* @__PURE__ */
|
|
4501
|
+
return /* @__PURE__ */ jsxs70("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4460
4502
|
/* @__PURE__ */ jsx95("path", { d: "M31 6H7V10H31V6Z", fill: color }),
|
|
4461
4503
|
/* @__PURE__ */ jsx95("path", { d: "M31 15H7V19H31V15Z", fill: color }),
|
|
4462
4504
|
/* @__PURE__ */ jsx95("path", { d: "M7 24H21V28H7V24Z", fill: color }),
|
|
@@ -4471,7 +4513,7 @@ var ICParaphrase = /* @__PURE__ */ __name((props) => {
|
|
|
4471
4513
|
)
|
|
4472
4514
|
] });
|
|
4473
4515
|
}
|
|
4474
|
-
return /* @__PURE__ */
|
|
4516
|
+
return /* @__PURE__ */ jsxs70("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4475
4517
|
/* @__PURE__ */ jsx95("path", { d: "M31 6.5H7V9.5H31V6.5Z", fill: color }),
|
|
4476
4518
|
/* @__PURE__ */ jsx95("path", { d: "M31 15.5H7V18.5H31V15.5Z", fill: color }),
|
|
4477
4519
|
/* @__PURE__ */ jsx95("path", { d: "M7 24.5H21V27.5H7V24.5Z", fill: color }),
|
|
@@ -4540,11 +4582,11 @@ var ICAirplane = /* @__PURE__ */ __name((props) => {
|
|
|
4540
4582
|
}, "ICAirplane");
|
|
4541
4583
|
|
|
4542
4584
|
// src/assets/rocket.tsx
|
|
4543
|
-
import { jsx as jsx98, jsxs as
|
|
4585
|
+
import { jsx as jsx98, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4544
4586
|
var ICRocket = /* @__PURE__ */ __name((props) => {
|
|
4545
4587
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4546
4588
|
if (thick) {
|
|
4547
|
-
return /* @__PURE__ */
|
|
4589
|
+
return /* @__PURE__ */ jsxs71("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4548
4590
|
/* @__PURE__ */ jsx98(
|
|
4549
4591
|
"path",
|
|
4550
4592
|
{
|
|
@@ -4563,7 +4605,7 @@ var ICRocket = /* @__PURE__ */ __name((props) => {
|
|
|
4563
4605
|
)
|
|
4564
4606
|
] });
|
|
4565
4607
|
}
|
|
4566
|
-
return /* @__PURE__ */
|
|
4608
|
+
return /* @__PURE__ */ jsxs71("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4567
4609
|
/* @__PURE__ */ jsx98(
|
|
4568
4610
|
"path",
|
|
4569
4611
|
{
|
|
@@ -4584,11 +4626,11 @@ var ICRocket = /* @__PURE__ */ __name((props) => {
|
|
|
4584
4626
|
}, "ICRocket");
|
|
4585
4627
|
|
|
4586
4628
|
// src/assets/source.tsx
|
|
4587
|
-
import { jsx as jsx99, jsxs as
|
|
4629
|
+
import { jsx as jsx99, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
4588
4630
|
var ICSource = /* @__PURE__ */ __name((props) => {
|
|
4589
4631
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4590
4632
|
if (thick) {
|
|
4591
|
-
return /* @__PURE__ */
|
|
4633
|
+
return /* @__PURE__ */ jsxs72("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4592
4634
|
/* @__PURE__ */ jsx99(
|
|
4593
4635
|
"path",
|
|
4594
4636
|
{
|
|
@@ -4627,7 +4669,7 @@ var ICSource = /* @__PURE__ */ __name((props) => {
|
|
|
4627
4669
|
)
|
|
4628
4670
|
] });
|
|
4629
4671
|
}
|
|
4630
|
-
return /* @__PURE__ */
|
|
4672
|
+
return /* @__PURE__ */ jsxs72("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4631
4673
|
/* @__PURE__ */ jsx99(
|
|
4632
4674
|
"path",
|
|
4633
4675
|
{
|
|
@@ -4668,11 +4710,11 @@ var ICSource = /* @__PURE__ */ __name((props) => {
|
|
|
4668
4710
|
}, "ICSource");
|
|
4669
4711
|
|
|
4670
4712
|
// src/assets/setting.tsx
|
|
4671
|
-
import { jsx as jsx100, jsxs as
|
|
4713
|
+
import { jsx as jsx100, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
4672
4714
|
var ICSetting = /* @__PURE__ */ __name((props) => {
|
|
4673
4715
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4674
4716
|
if (thick) {
|
|
4675
|
-
return /* @__PURE__ */
|
|
4717
|
+
return /* @__PURE__ */ jsxs73("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4676
4718
|
/* @__PURE__ */ jsx100(
|
|
4677
4719
|
"path",
|
|
4678
4720
|
{
|
|
@@ -4693,7 +4735,7 @@ var ICSetting = /* @__PURE__ */ __name((props) => {
|
|
|
4693
4735
|
)
|
|
4694
4736
|
] });
|
|
4695
4737
|
}
|
|
4696
|
-
return /* @__PURE__ */
|
|
4738
|
+
return /* @__PURE__ */ jsxs73("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4697
4739
|
/* @__PURE__ */ jsx100(
|
|
4698
4740
|
"path",
|
|
4699
4741
|
{
|
|
@@ -4738,11 +4780,11 @@ var ICExtend = /* @__PURE__ */ __name((props) => {
|
|
|
4738
4780
|
}, "ICExtend");
|
|
4739
4781
|
|
|
4740
4782
|
// src/assets/shorten.tsx
|
|
4741
|
-
import { jsx as jsx102, jsxs as
|
|
4783
|
+
import { jsx as jsx102, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4742
4784
|
var ICShorten = /* @__PURE__ */ __name((props) => {
|
|
4743
4785
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4744
4786
|
if (thick) {
|
|
4745
|
-
return /* @__PURE__ */
|
|
4787
|
+
return /* @__PURE__ */ jsxs74("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4746
4788
|
/* @__PURE__ */ jsx102(
|
|
4747
4789
|
"path",
|
|
4748
4790
|
{
|
|
@@ -4759,7 +4801,7 @@ var ICShorten = /* @__PURE__ */ __name((props) => {
|
|
|
4759
4801
|
)
|
|
4760
4802
|
] });
|
|
4761
4803
|
}
|
|
4762
|
-
return /* @__PURE__ */
|
|
4804
|
+
return /* @__PURE__ */ jsxs74("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4763
4805
|
/* @__PURE__ */ jsx102(
|
|
4764
4806
|
"path",
|
|
4765
4807
|
{
|
|
@@ -4778,11 +4820,11 @@ var ICShorten = /* @__PURE__ */ __name((props) => {
|
|
|
4778
4820
|
}, "ICShorten");
|
|
4779
4821
|
|
|
4780
4822
|
// src/assets/sun.tsx
|
|
4781
|
-
import { jsx as jsx103, jsxs as
|
|
4823
|
+
import { jsx as jsx103, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4782
4824
|
var ICSun = /* @__PURE__ */ __name((props) => {
|
|
4783
4825
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4784
4826
|
if (thick) {
|
|
4785
|
-
return /* @__PURE__ */
|
|
4827
|
+
return /* @__PURE__ */ jsxs75("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4786
4828
|
/* @__PURE__ */ jsx103("path", { d: "M26 4V12H22V4H26Z", fill: color }),
|
|
4787
4829
|
/* @__PURE__ */ jsx103(
|
|
4788
4830
|
"path",
|
|
@@ -4802,7 +4844,7 @@ var ICSun = /* @__PURE__ */ __name((props) => {
|
|
|
4802
4844
|
/* @__PURE__ */ jsx103("path", { d: "M8.44382 11.272L14.1007 16.9289L16.9291 14.1004L11.2723 8.44358L8.44382 11.272Z", fill: color })
|
|
4803
4845
|
] });
|
|
4804
4846
|
}
|
|
4805
|
-
return /* @__PURE__ */
|
|
4847
|
+
return /* @__PURE__ */ jsxs75("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4806
4848
|
/* @__PURE__ */ jsx103("path", { d: "M25.5 4V12H22.5V4H25.5Z", fill: color }),
|
|
4807
4849
|
/* @__PURE__ */ jsx103(
|
|
4808
4850
|
"path",
|
|
@@ -4850,11 +4892,11 @@ var ICMoon = /* @__PURE__ */ __name((props) => {
|
|
|
4850
4892
|
}, "ICMoon");
|
|
4851
4893
|
|
|
4852
4894
|
// src/assets/fire.tsx
|
|
4853
|
-
import { jsx as jsx105, jsxs as
|
|
4895
|
+
import { jsx as jsx105, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
4854
4896
|
var ICFire = /* @__PURE__ */ __name((props) => {
|
|
4855
4897
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4856
4898
|
if (thick) {
|
|
4857
|
-
return /* @__PURE__ */
|
|
4899
|
+
return /* @__PURE__ */ jsxs76("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4858
4900
|
/* @__PURE__ */ jsx105(
|
|
4859
4901
|
"path",
|
|
4860
4902
|
{
|
|
@@ -4886,7 +4928,7 @@ var ICFire = /* @__PURE__ */ __name((props) => {
|
|
|
4886
4928
|
}
|
|
4887
4929
|
) });
|
|
4888
4930
|
}
|
|
4889
|
-
return /* @__PURE__ */
|
|
4931
|
+
return /* @__PURE__ */ jsxs76("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4890
4932
|
/* @__PURE__ */ jsx105(
|
|
4891
4933
|
"path",
|
|
4892
4934
|
{
|
|
@@ -4961,11 +5003,11 @@ var ICArrowDownward = /* @__PURE__ */ __name((props) => {
|
|
|
4961
5003
|
}, "ICArrowDownward");
|
|
4962
5004
|
|
|
4963
5005
|
// src/assets/light-mode.tsx
|
|
4964
|
-
import { jsx as jsx108, jsxs as
|
|
5006
|
+
import { jsx as jsx108, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
4965
5007
|
var ICLightMode = /* @__PURE__ */ __name((props) => {
|
|
4966
5008
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
4967
5009
|
if (thick) {
|
|
4968
|
-
return /* @__PURE__ */
|
|
5010
|
+
return /* @__PURE__ */ jsxs77("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4969
5011
|
/* @__PURE__ */ jsx108("path", { d: "M26 2V11H22V2H26Z", fill: color }),
|
|
4970
5012
|
/* @__PURE__ */ jsx108(
|
|
4971
5013
|
"path",
|
|
@@ -4985,7 +5027,7 @@ var ICLightMode = /* @__PURE__ */ __name((props) => {
|
|
|
4985
5027
|
/* @__PURE__ */ jsx108("path", { d: "M7.02978 9.85802L13.3937 16.222L16.2222 13.3936L9.85821 7.02959L7.02978 9.85802Z", fill: color })
|
|
4986
5028
|
] });
|
|
4987
5029
|
}
|
|
4988
|
-
return /* @__PURE__ */
|
|
5030
|
+
return /* @__PURE__ */ jsxs77("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
4989
5031
|
/* @__PURE__ */ jsx108("path", { d: "M25.5 2V11H22.5V2H25.5Z", fill: color }),
|
|
4990
5032
|
/* @__PURE__ */ jsx108(
|
|
4991
5033
|
"path",
|
|
@@ -5033,11 +5075,11 @@ var ICDarkMode = /* @__PURE__ */ __name((props) => {
|
|
|
5033
5075
|
}, "ICDarkMode");
|
|
5034
5076
|
|
|
5035
5077
|
// src/assets/target.tsx
|
|
5036
|
-
import { jsx as jsx110, jsxs as
|
|
5078
|
+
import { jsx as jsx110, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
5037
5079
|
var ICTarget = /* @__PURE__ */ __name((props) => {
|
|
5038
5080
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5039
5081
|
if (thick) {
|
|
5040
|
-
return /* @__PURE__ */
|
|
5082
|
+
return /* @__PURE__ */ jsxs78("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5041
5083
|
/* @__PURE__ */ jsx110(
|
|
5042
5084
|
"path",
|
|
5043
5085
|
{
|
|
@@ -5061,7 +5103,7 @@ var ICTarget = /* @__PURE__ */ __name((props) => {
|
|
|
5061
5103
|
)
|
|
5062
5104
|
] });
|
|
5063
5105
|
}
|
|
5064
|
-
return /* @__PURE__ */
|
|
5106
|
+
return /* @__PURE__ */ jsxs78("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5065
5107
|
/* @__PURE__ */ jsx110(
|
|
5066
5108
|
"path",
|
|
5067
5109
|
{
|
|
@@ -5087,7 +5129,7 @@ var ICTarget = /* @__PURE__ */ __name((props) => {
|
|
|
5087
5129
|
}, "ICTarget");
|
|
5088
5130
|
|
|
5089
5131
|
// src/assets/question-box.tsx
|
|
5090
|
-
import { jsx as jsx111, jsxs as
|
|
5132
|
+
import { jsx as jsx111, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
5091
5133
|
var ICQuestionBox = /* @__PURE__ */ __name((props) => {
|
|
5092
5134
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5093
5135
|
if (fill && thick) {
|
|
@@ -5102,7 +5144,7 @@ var ICQuestionBox = /* @__PURE__ */ __name((props) => {
|
|
|
5102
5144
|
) });
|
|
5103
5145
|
}
|
|
5104
5146
|
if (thick) {
|
|
5105
|
-
return /* @__PURE__ */
|
|
5147
|
+
return /* @__PURE__ */ jsxs79("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5106
5148
|
/* @__PURE__ */ jsx111(
|
|
5107
5149
|
"path",
|
|
5108
5150
|
{
|
|
@@ -5139,7 +5181,7 @@ var ICQuestionBox = /* @__PURE__ */ __name((props) => {
|
|
|
5139
5181
|
}
|
|
5140
5182
|
) });
|
|
5141
5183
|
}
|
|
5142
|
-
return /* @__PURE__ */
|
|
5184
|
+
return /* @__PURE__ */ jsxs79("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5143
5185
|
/* @__PURE__ */ jsx111(
|
|
5144
5186
|
"path",
|
|
5145
5187
|
{
|
|
@@ -5167,11 +5209,11 @@ var ICQuestionBox = /* @__PURE__ */ __name((props) => {
|
|
|
5167
5209
|
}, "ICQuestionBox");
|
|
5168
5210
|
|
|
5169
5211
|
// src/assets/new-tab.tsx
|
|
5170
|
-
import { jsx as jsx112, jsxs as
|
|
5212
|
+
import { jsx as jsx112, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
5171
5213
|
var ICNewTab = /* @__PURE__ */ __name((props) => {
|
|
5172
5214
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5173
5215
|
if (fill && thick) {
|
|
5174
|
-
return /* @__PURE__ */
|
|
5216
|
+
return /* @__PURE__ */ jsxs80("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5175
5217
|
/* @__PURE__ */ jsx112(
|
|
5176
5218
|
"path",
|
|
5177
5219
|
{
|
|
@@ -5188,7 +5230,7 @@ var ICNewTab = /* @__PURE__ */ __name((props) => {
|
|
|
5188
5230
|
)
|
|
5189
5231
|
] });
|
|
5190
5232
|
}
|
|
5191
|
-
return /* @__PURE__ */
|
|
5233
|
+
return /* @__PURE__ */ jsxs80("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5192
5234
|
/* @__PURE__ */ jsx112(
|
|
5193
5235
|
"path",
|
|
5194
5236
|
{
|
|
@@ -5207,11 +5249,11 @@ var ICNewTab = /* @__PURE__ */ __name((props) => {
|
|
|
5207
5249
|
}, "ICNewTab");
|
|
5208
5250
|
|
|
5209
5251
|
// src/assets/example.tsx
|
|
5210
|
-
import { jsx as jsx113, jsxs as
|
|
5252
|
+
import { jsx as jsx113, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
5211
5253
|
var ICExample = /* @__PURE__ */ __name((props) => {
|
|
5212
5254
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5213
5255
|
if (fill && thick) {
|
|
5214
|
-
return /* @__PURE__ */
|
|
5256
|
+
return /* @__PURE__ */ jsxs81("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5215
5257
|
/* @__PURE__ */ jsx113(
|
|
5216
5258
|
"path",
|
|
5217
5259
|
{
|
|
@@ -5225,7 +5267,7 @@ var ICExample = /* @__PURE__ */ __name((props) => {
|
|
|
5225
5267
|
] });
|
|
5226
5268
|
}
|
|
5227
5269
|
if (fill) {
|
|
5228
|
-
return /* @__PURE__ */
|
|
5270
|
+
return /* @__PURE__ */ jsxs81("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5229
5271
|
/* @__PURE__ */ jsx113(
|
|
5230
5272
|
"path",
|
|
5231
5273
|
{
|
|
@@ -5238,7 +5280,7 @@ var ICExample = /* @__PURE__ */ __name((props) => {
|
|
|
5238
5280
|
/* @__PURE__ */ jsx113("rect", { x: "18", y: "18", width: size, height: size, fill: color })
|
|
5239
5281
|
] });
|
|
5240
5282
|
}
|
|
5241
|
-
return /* @__PURE__ */
|
|
5283
|
+
return /* @__PURE__ */ jsxs81("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5242
5284
|
/* @__PURE__ */ jsx113(
|
|
5243
5285
|
"path",
|
|
5244
5286
|
{
|
|
@@ -5253,11 +5295,11 @@ var ICExample = /* @__PURE__ */ __name((props) => {
|
|
|
5253
5295
|
}, "ICExample");
|
|
5254
5296
|
|
|
5255
5297
|
// src/assets/quote.tsx
|
|
5256
|
-
import { jsx as jsx114, jsxs as
|
|
5298
|
+
import { jsx as jsx114, jsxs as jsxs82 } from "react/jsx-runtime";
|
|
5257
5299
|
var ICQuote = /* @__PURE__ */ __name((props) => {
|
|
5258
5300
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5259
5301
|
if (thick) {
|
|
5260
|
-
return /* @__PURE__ */
|
|
5302
|
+
return /* @__PURE__ */ jsxs82("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5261
5303
|
/* @__PURE__ */ jsx114(
|
|
5262
5304
|
"path",
|
|
5263
5305
|
{
|
|
@@ -5279,7 +5321,7 @@ var ICQuote = /* @__PURE__ */ __name((props) => {
|
|
|
5279
5321
|
] });
|
|
5280
5322
|
}
|
|
5281
5323
|
if (fill) {
|
|
5282
|
-
return /* @__PURE__ */
|
|
5324
|
+
return /* @__PURE__ */ jsxs82("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5283
5325
|
/* @__PURE__ */ jsx114(
|
|
5284
5326
|
"path",
|
|
5285
5327
|
{
|
|
@@ -5296,7 +5338,7 @@ var ICQuote = /* @__PURE__ */ __name((props) => {
|
|
|
5296
5338
|
)
|
|
5297
5339
|
] });
|
|
5298
5340
|
}
|
|
5299
|
-
return /* @__PURE__ */
|
|
5341
|
+
return /* @__PURE__ */ jsxs82("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5300
5342
|
/* @__PURE__ */ jsx114(
|
|
5301
5343
|
"path",
|
|
5302
5344
|
{
|
|
@@ -5319,11 +5361,11 @@ var ICQuote = /* @__PURE__ */ __name((props) => {
|
|
|
5319
5361
|
}, "ICQuote");
|
|
5320
5362
|
|
|
5321
5363
|
// src/assets/document-check.tsx
|
|
5322
|
-
import { jsx as jsx115, jsxs as
|
|
5364
|
+
import { jsx as jsx115, jsxs as jsxs83 } from "react/jsx-runtime";
|
|
5323
5365
|
var ICDocumentCheck = /* @__PURE__ */ __name((props) => {
|
|
5324
5366
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5325
5367
|
if (fill && thick) {
|
|
5326
|
-
return /* @__PURE__ */
|
|
5368
|
+
return /* @__PURE__ */ jsxs83("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5327
5369
|
/* @__PURE__ */ jsx115(
|
|
5328
5370
|
"path",
|
|
5329
5371
|
{
|
|
@@ -5342,7 +5384,7 @@ var ICDocumentCheck = /* @__PURE__ */ __name((props) => {
|
|
|
5342
5384
|
] });
|
|
5343
5385
|
}
|
|
5344
5386
|
if (thick) {
|
|
5345
|
-
return /* @__PURE__ */
|
|
5387
|
+
return /* @__PURE__ */ jsxs83("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5346
5388
|
/* @__PURE__ */ jsx115(
|
|
5347
5389
|
"path",
|
|
5348
5390
|
{
|
|
@@ -5362,7 +5404,7 @@ var ICDocumentCheck = /* @__PURE__ */ __name((props) => {
|
|
|
5362
5404
|
] });
|
|
5363
5405
|
}
|
|
5364
5406
|
if (fill) {
|
|
5365
|
-
return /* @__PURE__ */
|
|
5407
|
+
return /* @__PURE__ */ jsxs83("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5366
5408
|
/* @__PURE__ */ jsx115(
|
|
5367
5409
|
"path",
|
|
5368
5410
|
{
|
|
@@ -5386,7 +5428,7 @@ var ICDocumentCheck = /* @__PURE__ */ __name((props) => {
|
|
|
5386
5428
|
)
|
|
5387
5429
|
] });
|
|
5388
5430
|
}
|
|
5389
|
-
return /* @__PURE__ */
|
|
5431
|
+
return /* @__PURE__ */ jsxs83("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5390
5432
|
/* @__PURE__ */ jsx115(
|
|
5391
5433
|
"path",
|
|
5392
5434
|
{
|
|
@@ -5433,11 +5475,11 @@ var ICBlock = /* @__PURE__ */ __name((props) => {
|
|
|
5433
5475
|
}, "ICBlock");
|
|
5434
5476
|
|
|
5435
5477
|
// src/assets/bookmark-cancel.tsx
|
|
5436
|
-
import { jsx as jsx117, jsxs as
|
|
5478
|
+
import { jsx as jsx117, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
5437
5479
|
var ICBookmarkCancel = /* @__PURE__ */ __name((props) => {
|
|
5438
5480
|
const { thick = false, fill = false, size = 32, color = "#1E1E1F" } = props;
|
|
5439
5481
|
if (fill && thick) {
|
|
5440
|
-
return /* @__PURE__ */
|
|
5482
|
+
return /* @__PURE__ */ jsxs84("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5441
5483
|
/* @__PURE__ */ jsx117("path", { d: "M3.67651 6.50421L6.50494 3.67578L44.3233 41.4941L41.4949 44.3226L3.67651 6.50421Z", fill: "#1E1E1F" }),
|
|
5442
5484
|
/* @__PURE__ */ jsx117("path", { d: "M12.0713 5L41.0001 33.9287V7C41.0001 5.89543 40.1046 5 39.0001 5H12.0713Z", fill: "#1E1E1F" }),
|
|
5443
5485
|
/* @__PURE__ */ jsx117(
|
|
@@ -5450,7 +5492,7 @@ var ICBookmarkCancel = /* @__PURE__ */ __name((props) => {
|
|
|
5450
5492
|
] });
|
|
5451
5493
|
}
|
|
5452
5494
|
if (thick) {
|
|
5453
|
-
return /* @__PURE__ */
|
|
5495
|
+
return /* @__PURE__ */ jsxs84("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5454
5496
|
/* @__PURE__ */ jsx117(
|
|
5455
5497
|
"path",
|
|
5456
5498
|
{
|
|
@@ -5475,7 +5517,7 @@ var ICBookmarkCancel = /* @__PURE__ */ __name((props) => {
|
|
|
5475
5517
|
] });
|
|
5476
5518
|
}
|
|
5477
5519
|
if (fill) {
|
|
5478
|
-
return /* @__PURE__ */
|
|
5520
|
+
return /* @__PURE__ */ jsxs84("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5479
5521
|
/* @__PURE__ */ jsx117("path", { d: "M41.9395 44.0608L44.0608 41.9395L6.06077 3.93945L3.93945 6.06077L41.9395 44.0608Z", fill: "#1E1E1F" }),
|
|
5480
5522
|
/* @__PURE__ */ jsx117("path", { d: "M39 5.00023C40.1046 5.00023 41 5.89566 41 7.00023V34.6361L11.3642 5.00023H39Z", fill: "#1E1E1F" }),
|
|
5481
5523
|
/* @__PURE__ */ jsx117(
|
|
@@ -5487,7 +5529,7 @@ var ICBookmarkCancel = /* @__PURE__ */ __name((props) => {
|
|
|
5487
5529
|
)
|
|
5488
5530
|
] });
|
|
5489
5531
|
}
|
|
5490
|
-
return /* @__PURE__ */
|
|
5532
|
+
return /* @__PURE__ */ jsxs84("svg", { ...props, width: size, height: size, viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
5491
5533
|
/* @__PURE__ */ jsx117("path", { d: "M41.9393 44.0608L44.0606 41.9395L6.06065 3.93945L3.93933 6.06077L41.9393 44.0608Z", fill: "#1E1E1F" }),
|
|
5492
5534
|
/* @__PURE__ */ jsx117(
|
|
5493
5535
|
"path",
|
|
@@ -5760,7 +5802,7 @@ var Icon = /* @__PURE__ */ __name((props) => {
|
|
|
5760
5802
|
}, "Icon");
|
|
5761
5803
|
|
|
5762
5804
|
// src/components/Button/index.tsx
|
|
5763
|
-
import { jsx as jsx119, jsxs as
|
|
5805
|
+
import { jsx as jsx119, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
5764
5806
|
var buttonIconSizeMap = {
|
|
5765
5807
|
cta: "m",
|
|
5766
5808
|
l: "s",
|
|
@@ -5847,7 +5889,7 @@ var DefaultButton = forwardRef(
|
|
|
5847
5889
|
className: clsx2(defaultButtonVariants({ level, fill, align, size, width }), className),
|
|
5848
5890
|
ref
|
|
5849
5891
|
},
|
|
5850
|
-
/* @__PURE__ */
|
|
5892
|
+
/* @__PURE__ */ jsxs85("span", { className: clsx2(defaultButtonChildrenVariants({ size })), children: [
|
|
5851
5893
|
!!leftIcon && /* @__PURE__ */ jsx119(Icon, { name: leftIcon.name, size: buttonIconSizeMap[size], thick: buttonSizeIconThickMap[size] }),
|
|
5852
5894
|
/* @__PURE__ */ jsx119("p", { className: style_module_default.content, children: newChildren }),
|
|
5853
5895
|
!!rightIcon && /* @__PURE__ */ jsx119(Icon, { name: rightIcon.name, size: buttonIconSizeMap[size], thick: buttonSizeIconThickMap[size] })
|
|
@@ -5861,7 +5903,7 @@ var DefaultButton = forwardRef(
|
|
|
5861
5903
|
...rest,
|
|
5862
5904
|
className: clsx2(defaultButtonVariants({ level, fill, align, size, width }), className),
|
|
5863
5905
|
ref,
|
|
5864
|
-
children: /* @__PURE__ */
|
|
5906
|
+
children: /* @__PURE__ */ jsxs85("span", { className: clsx2(defaultButtonChildrenVariants({ size })), children: [
|
|
5865
5907
|
!!leftIcon && /* @__PURE__ */ jsx119(Icon, { name: leftIcon.name, size: buttonIconSizeMap[size], thick: buttonSizeIconThickMap[size] }),
|
|
5866
5908
|
/* @__PURE__ */ jsx119("p", { className: style_module_default.content, children }),
|
|
5867
5909
|
!!rightIcon && /* @__PURE__ */ jsx119(Icon, { name: rightIcon.name, size: buttonIconSizeMap[size], thick: buttonSizeIconThickMap[size] })
|
|
@@ -5898,7 +5940,7 @@ var useToast = /* @__PURE__ */ __name(() => {
|
|
|
5898
5940
|
return {
|
|
5899
5941
|
open: /* @__PURE__ */ __name((toast) => {
|
|
5900
5942
|
const toastId = Date.now() + Math.random();
|
|
5901
|
-
const timer = toast.button ? ONE_SECOND *
|
|
5943
|
+
const timer = toast.button ? ONE_SECOND * 5 : ONE_SECOND + 800;
|
|
5902
5944
|
const list = { toastId, timer, ...toast };
|
|
5903
5945
|
setToasts({
|
|
5904
5946
|
list: [...toasts.list, list]
|
|
@@ -5989,11 +6031,11 @@ var Paragraph = /* @__PURE__ */ __name(({
|
|
|
5989
6031
|
|
|
5990
6032
|
// src/components/Toast/index.tsx
|
|
5991
6033
|
import { useRecoilValue, useSetRecoilState as useSetRecoilState2 } from "recoil";
|
|
5992
|
-
import { jsx as jsx121, jsxs as
|
|
6034
|
+
import { jsx as jsx121, jsxs as jsxs86 } from "react/jsx-runtime";
|
|
5993
6035
|
import { createElement } from "react";
|
|
5994
6036
|
var Toaster = /* @__PURE__ */ __name(() => {
|
|
5995
6037
|
const { list } = useRecoilValue(toastAtom);
|
|
5996
|
-
return /* @__PURE__ */
|
|
6038
|
+
return /* @__PURE__ */ jsxs86(Provider, { children: [
|
|
5997
6039
|
list.map((props) => /* @__PURE__ */ createElement(SingleToast, { ...props, key: props.toastId })),
|
|
5998
6040
|
/* @__PURE__ */ jsx121(Viewport, { className: style_module_default3.ToastViewport })
|
|
5999
6041
|
] });
|
|
@@ -6024,9 +6066,9 @@ var SingleToast = /* @__PURE__ */ __name((props) => {
|
|
|
6024
6066
|
clearTimeout(timerRef.current);
|
|
6025
6067
|
};
|
|
6026
6068
|
}, []);
|
|
6027
|
-
return /* @__PURE__ */
|
|
6069
|
+
return /* @__PURE__ */ jsxs86(Root, { className: style_module_default3.ToastRoot, open: isOpen, ...props, children: [
|
|
6028
6070
|
icon && /* @__PURE__ */ jsx121("i", { className: style_module_default3.Icon, children: /* @__PURE__ */ jsx121(Icon, { ...icon, size: "s" }) }),
|
|
6029
|
-
/* @__PURE__ */
|
|
6071
|
+
/* @__PURE__ */ jsxs86(Title, { className: style_module_default3.ToastTitle, children: [
|
|
6030
6072
|
/* @__PURE__ */ jsx121(
|
|
6031
6073
|
Paragraph,
|
|
6032
6074
|
{
|
|
@@ -6159,7 +6201,7 @@ var style_module_default5 = {
|
|
|
6159
6201
|
// src/components/Popover/index.tsx
|
|
6160
6202
|
import { cva as cva4 } from "class-variance-authority";
|
|
6161
6203
|
import { clsx as clsx8 } from "clsx";
|
|
6162
|
-
import { jsx as jsx126, jsxs as
|
|
6204
|
+
import { jsx as jsx126, jsxs as jsxs87 } from "react/jsx-runtime";
|
|
6163
6205
|
var DEFAULT_OFFSET = -6;
|
|
6164
6206
|
var popoverVariants = cva4(style_module_default5.content, {
|
|
6165
6207
|
variants: {
|
|
@@ -6218,7 +6260,7 @@ var PopoverContent = React.forwardRef(
|
|
|
6218
6260
|
onClose,
|
|
6219
6261
|
className,
|
|
6220
6262
|
...props
|
|
6221
|
-
}, ref) => /* @__PURE__ */ jsx126(PopoverPrimitive.Portal, { children: /* @__PURE__ */
|
|
6263
|
+
}, ref) => /* @__PURE__ */ jsx126(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsxs87(
|
|
6222
6264
|
PopoverPrimitive.Content,
|
|
6223
6265
|
{
|
|
6224
6266
|
ref,
|
|
@@ -6228,8 +6270,8 @@ var PopoverContent = React.forwardRef(
|
|
|
6228
6270
|
className: clsx8(popoverVariants({ level }), className),
|
|
6229
6271
|
...props,
|
|
6230
6272
|
children: [
|
|
6231
|
-
/* @__PURE__ */
|
|
6232
|
-
/* @__PURE__ */
|
|
6273
|
+
/* @__PURE__ */ jsxs87("div", { className: style_module_default5.contentContainer, children: [
|
|
6274
|
+
/* @__PURE__ */ jsxs87("div", { className: style_module_default5.heading, children: [
|
|
6233
6275
|
tag && /* @__PURE__ */ jsx126("span", { className: popoverTagVariants(), children: tag }),
|
|
6234
6276
|
icon && /* @__PURE__ */ jsx126(Icon, { name: icon.name, size: "xs", thick: icon.thick, fill: icon.fill }),
|
|
6235
6277
|
/* @__PURE__ */ jsx126("p", { className: popoverTitleVariants(), children: title }),
|