@aivex/ui 1.1.0-dev.2 → 1.1.0-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Button/Button.d.ts +4 -5
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +414 -429
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -68,7 +68,7 @@ function _({ variant: e = "default", className: t }) {
|
|
|
68
68
|
}
|
|
69
69
|
//#endregion
|
|
70
70
|
//#region src/components/Button/Button.tsx
|
|
71
|
-
var v = t("aivex:relative aivex:overflow-hidden aivex:group aivex:inline-flex aivex:items-center aivex:justify-center aivex:
|
|
71
|
+
var v = t("aivex:relative aivex:overflow-hidden aivex:group aivex:inline-flex aivex:items-center aivex:justify-center aivex:border aivex:border-transparent aivex:transition-colors aivex:disabled:pointer-events-none aivex:disabled:opacity-disable aivex:focus-visible:outline-none aivex:focus-visible:ring-2 aivex:focus-visible:ring-border-brand", {
|
|
72
72
|
variants: {
|
|
73
73
|
variant: {
|
|
74
74
|
solid: "",
|
|
@@ -81,9 +81,12 @@ var v = t("aivex:relative aivex:overflow-hidden aivex:group aivex:inline-flex ai
|
|
|
81
81
|
danger: ""
|
|
82
82
|
},
|
|
83
83
|
size: {
|
|
84
|
-
sm: "aivex:h-6 aivex:gap-2xs aivex:px-sm aivex:text-label-md",
|
|
85
|
-
md: "aivex:h-8 aivex:gap-xs aivex:px-
|
|
86
|
-
lg: "aivex:h-10 aivex:gap-xs aivex:px-
|
|
84
|
+
sm: "aivex:h-6 aivex:gap-2xs aivex:px-sm aivex:rounded-sm aivex:text-label-md",
|
|
85
|
+
md: "aivex:h-8 aivex:gap-xs aivex:px-md aivex:rounded-md aivex:text-label-lg",
|
|
86
|
+
lg: "aivex:h-10 aivex:gap-xs aivex:px-lg aivex:rounded-md aivex:text-label-xl",
|
|
87
|
+
"icon-sm": "aivex:h-6 aivex:w-6 aivex:px-0 aivex:rounded-sm",
|
|
88
|
+
"icon-md": "aivex:h-8 aivex:w-8 aivex:px-0 aivex:rounded-md",
|
|
89
|
+
"icon-lg": "aivex:h-10 aivex:w-10 aivex:px-0 aivex:rounded-md"
|
|
87
90
|
}
|
|
88
91
|
},
|
|
89
92
|
compoundVariants: [
|
|
@@ -137,56 +140,38 @@ var v = t("aivex:relative aivex:overflow-hidden aivex:group aivex:inline-flex ai
|
|
|
137
140
|
variant: "solid",
|
|
138
141
|
size: "md"
|
|
139
142
|
}
|
|
140
|
-
})
|
|
141
|
-
|
|
142
|
-
md: "aivex:w-4 aivex:h-4",
|
|
143
|
-
lg: "aivex:w-5 aivex:h-5"
|
|
144
|
-
};
|
|
145
|
-
function b(e = "solid", t) {
|
|
143
|
+
});
|
|
144
|
+
function y(e = "solid", t) {
|
|
146
145
|
return t ?? (e === "solid" ? "primary" : "secondary");
|
|
147
146
|
}
|
|
148
|
-
function
|
|
147
|
+
function b(e, t) {
|
|
149
148
|
return e === "solid" ? t === "secondary" ? "default" : "strong" : t === "danger" ? "danger" : "default";
|
|
150
149
|
}
|
|
151
|
-
function
|
|
150
|
+
function x({ variant: e = "solid", color: t, size: n = "md", className: r } = {}) {
|
|
152
151
|
let i = e ?? "solid";
|
|
153
152
|
return v({
|
|
154
153
|
variant: i,
|
|
155
|
-
color:
|
|
154
|
+
color: y(i, t),
|
|
156
155
|
size: n,
|
|
157
156
|
className: r
|
|
158
157
|
});
|
|
159
158
|
}
|
|
160
|
-
function
|
|
161
|
-
let
|
|
162
|
-
return /* @__PURE__ */ a(
|
|
159
|
+
function S({ className: t, variant: n = "solid", color: r, size: o = "md", asChild: s = !1, ref: c, children: l, ...u }) {
|
|
160
|
+
let d = s ? e : "button", f = n ?? "solid", p = y(f, r);
|
|
161
|
+
return /* @__PURE__ */ a(d, {
|
|
163
162
|
ref: c,
|
|
164
|
-
className: h(
|
|
165
|
-
variant:
|
|
166
|
-
color:
|
|
167
|
-
size:
|
|
163
|
+
className: h(x({
|
|
164
|
+
variant: f,
|
|
165
|
+
color: p,
|
|
166
|
+
size: o ?? "md"
|
|
168
167
|
}), t),
|
|
169
|
-
...
|
|
170
|
-
children: [
|
|
171
|
-
/* @__PURE__ */ i(_, { variant: x(m, g) }),
|
|
172
|
-
l && /* @__PURE__ */ i("span", {
|
|
173
|
-
className: h("aivex:inline-flex aivex:shrink-0 aivex:items-center aivex:justify-center", y[v]),
|
|
174
|
-
children: l
|
|
175
|
-
}),
|
|
176
|
-
/* @__PURE__ */ i("span", {
|
|
177
|
-
className: "aivex:min-w-0",
|
|
178
|
-
children: d
|
|
179
|
-
}),
|
|
180
|
-
u && /* @__PURE__ */ i("span", {
|
|
181
|
-
className: h("aivex:inline-flex aivex:shrink-0 aivex:items-center aivex:justify-center", y[v]),
|
|
182
|
-
children: u
|
|
183
|
-
})
|
|
184
|
-
]
|
|
168
|
+
...u,
|
|
169
|
+
children: [/* @__PURE__ */ i(_, { variant: b(f, p) }), l]
|
|
185
170
|
});
|
|
186
171
|
}
|
|
187
172
|
//#endregion
|
|
188
173
|
//#region src/components/Icon/index.tsx
|
|
189
|
-
var
|
|
174
|
+
var C = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
190
175
|
xmlns: "http://www.w3.org/2000/svg",
|
|
191
176
|
width: e,
|
|
192
177
|
height: e,
|
|
@@ -277,7 +262,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
277
262
|
})
|
|
278
263
|
] })
|
|
279
264
|
]
|
|
280
|
-
}),
|
|
265
|
+
}), w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
281
266
|
xmlns: "http://www.w3.org/2000/svg",
|
|
282
267
|
width: e,
|
|
283
268
|
height: e,
|
|
@@ -386,7 +371,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
386
371
|
})
|
|
387
372
|
] })
|
|
388
373
|
]
|
|
389
|
-
}),
|
|
374
|
+
}), T = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
390
375
|
xmlns: "http://www.w3.org/2000/svg",
|
|
391
376
|
width: e,
|
|
392
377
|
height: e,
|
|
@@ -481,7 +466,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
481
466
|
})
|
|
482
467
|
] })
|
|
483
468
|
]
|
|
484
|
-
}),
|
|
469
|
+
}), E = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
485
470
|
xmlns: "http://www.w3.org/2000/svg",
|
|
486
471
|
width: e,
|
|
487
472
|
height: e,
|
|
@@ -528,7 +513,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
528
513
|
fill: t
|
|
529
514
|
})
|
|
530
515
|
]
|
|
531
|
-
}),
|
|
516
|
+
}), D = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
532
517
|
xmlns: "http://www.w3.org/2000/svg",
|
|
533
518
|
width: e,
|
|
534
519
|
height: e,
|
|
@@ -540,7 +525,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
540
525
|
d: "M5.59964 2.99998C5.59964 2.66861 5.33101 2.39998 4.99964 2.39998C4.66827 2.39998 4.39964 2.66861 4.39964 2.99998V6.11418C4.59186 6.06683 4.79283 6.04171 4.99966 6.04171C5.20648 6.04171 5.40744 6.06682 5.59964 6.11417V2.99998ZM5.59964 10.9693C5.40744 11.0166 5.20648 11.0417 4.99966 11.0417C4.79283 11.0417 4.59186 11.0166 4.39964 10.9692V17C4.39964 17.3314 4.66827 17.6 4.99964 17.6C5.33101 17.6 5.59964 17.3314 5.59964 17V10.9693ZM9.99964 2.39998C10.331 2.39998 10.5996 2.66861 10.5996 2.99998V10.2808C10.4074 10.2335 10.2065 10.2084 9.99966 10.2084C9.79283 10.2084 9.59186 10.2335 9.39964 10.2808V2.99998C9.39964 2.66861 9.66827 2.39998 9.99964 2.39998ZM9.99966 15.2084C10.2065 15.2084 10.4074 15.1833 10.5996 15.1359V17C10.5996 17.3314 10.331 17.6 9.99964 17.6C9.66827 17.6 9.39964 17.3314 9.39964 17V15.1359C9.59186 15.1833 9.79283 15.2084 9.99966 15.2084ZM14.9996 2.39998C15.331 2.39998 15.5996 2.66861 15.5996 2.99998V6.11417C15.4074 6.06682 15.2065 6.04171 14.9997 6.04171C14.7928 6.04171 14.5919 6.06683 14.3996 6.11418V2.99998C14.3996 2.66861 14.6683 2.39998 14.9996 2.39998ZM14.9997 11.0417C15.2065 11.0417 15.4074 11.0166 15.5996 10.9693V17C15.5996 17.3314 15.331 17.6 14.9996 17.6C14.6683 17.6 14.3996 17.3314 14.3996 17V10.9692C14.5919 11.0166 14.7928 11.0417 14.9997 11.0417ZM9.99967 11.0417C10.9201 11.0417 11.6663 11.7879 11.6663 12.7083C11.6663 13.6288 10.9201 14.375 9.99967 14.375C9.0792 14.375 8.33301 13.6288 8.33301 12.7083C8.33301 11.7879 9.0792 11.0417 9.99967 11.0417ZM16.6663 8.54167C16.6663 7.6212 15.9201 6.875 14.9997 6.875C14.0792 6.875 13.333 7.6212 13.333 8.54167C13.333 9.46214 14.0792 10.2083 14.9997 10.2083C15.9201 10.2083 16.6663 9.46214 16.6663 8.54167ZM4.99967 6.875C5.92015 6.875 6.66634 7.6212 6.66634 8.54167C6.66634 9.46214 5.92015 10.2083 4.99967 10.2083C4.0792 10.2083 3.33301 9.46214 3.33301 8.54167C3.33301 7.6212 4.0792 6.875 4.99967 6.875Z",
|
|
541
526
|
fill: t
|
|
542
527
|
})
|
|
543
|
-
}),
|
|
528
|
+
}), O = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
544
529
|
xmlns: "http://www.w3.org/2000/svg",
|
|
545
530
|
width: e,
|
|
546
531
|
height: e,
|
|
@@ -572,7 +557,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
572
557
|
fill: t
|
|
573
558
|
})
|
|
574
559
|
]
|
|
575
|
-
}),
|
|
560
|
+
}), k = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
576
561
|
xmlns: "http://www.w3.org/2000/svg",
|
|
577
562
|
width: e,
|
|
578
563
|
height: e,
|
|
@@ -692,7 +677,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
692
677
|
d: "M4.57613 11.0757C4.81044 10.8414 5.19034 10.8414 5.42465 11.0757L10.0004 15.6515L14.5761 11.0757C14.8104 10.8414 15.1903 10.8414 15.4247 11.0757C15.659 11.3101 15.659 11.6899 15.4247 11.9243L10.4247 16.9243C10.1903 17.1586 9.81044 17.1586 9.57613 16.9243L4.57613 11.9243C4.34181 11.6899 4.34181 11.3101 4.57613 11.0757Z",
|
|
693
678
|
fill: t
|
|
694
679
|
})]
|
|
695
|
-
}),
|
|
680
|
+
}), ee = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
696
681
|
xmlns: "http://www.w3.org/2000/svg",
|
|
697
682
|
width: e,
|
|
698
683
|
height: e,
|
|
@@ -709,7 +694,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
709
694
|
d: "M8.92465 4.57574C9.15897 4.81005 9.15897 5.18995 8.92465 5.42427L4.34892 10L8.92465 14.5757C9.15897 14.8101 9.15897 15.19 8.92465 15.4243C8.69034 15.6586 8.31044 15.6586 8.07613 15.4243L3.07613 10.4243C2.84181 10.19 2.84181 9.81005 3.07613 9.57574L8.07613 4.57574C8.31044 4.34142 8.69034 4.34142 8.92465 4.57574Z",
|
|
710
695
|
fill: t
|
|
711
696
|
})]
|
|
712
|
-
}),
|
|
697
|
+
}), te = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
713
698
|
xmlns: "http://www.w3.org/2000/svg",
|
|
714
699
|
width: e,
|
|
715
700
|
height: e,
|
|
@@ -726,7 +711,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
726
711
|
d: "M11.0761 4.57574C11.3104 4.34142 11.6903 4.34142 11.9247 4.57574L16.9247 9.57574C17.159 9.81005 17.159 10.19 16.9247 10.4243L11.9247 15.4243C11.6903 15.6586 11.3104 15.6586 11.0761 15.4243C10.8418 15.19 10.8418 14.8101 11.0761 14.5757L15.6519 10L11.0761 5.42427C10.8418 5.18995 10.8418 4.81005 11.0761 4.57574Z",
|
|
727
712
|
fill: t
|
|
728
713
|
})]
|
|
729
|
-
}),
|
|
714
|
+
}), ne = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
730
715
|
xmlns: "http://www.w3.org/2000/svg",
|
|
731
716
|
width: e,
|
|
732
717
|
height: e,
|
|
@@ -743,7 +728,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
743
728
|
d: "M9.57613 3.07574C9.81044 2.84142 10.1903 2.84142 10.4247 3.07574L15.4247 8.07574C15.659 8.31005 15.659 8.68995 15.4247 8.92427C15.1903 9.15858 14.8104 9.15858 14.5761 8.92427L10.0004 4.34853L5.42465 8.92427C5.19034 9.15858 4.81044 9.15858 4.57613 8.92427C4.34181 8.68995 4.34181 8.31005 4.57613 8.07574L9.57613 3.07574Z",
|
|
744
729
|
fill: t
|
|
745
730
|
})]
|
|
746
|
-
}),
|
|
731
|
+
}), re = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
747
732
|
xmlns: "http://www.w3.org/2000/svg",
|
|
748
733
|
width: e,
|
|
749
734
|
height: e,
|
|
@@ -755,7 +740,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
755
740
|
d: "M16.0004 5.4C16.3318 5.4 16.6004 5.66863 16.6004 6V12C16.6004 12.3314 16.3318 12.6 16.0004 12.6H4.94892L6.92465 14.5757C7.15897 14.8101 7.15897 15.19 6.92465 15.4243C6.69034 15.6586 6.31044 15.6586 6.07613 15.4243L3.07613 12.4243C2.84181 12.19 2.84181 11.8101 3.07613 11.5757L6.07613 8.57574C6.31044 8.34142 6.69034 8.34142 6.92465 8.57574C7.15897 8.81005 7.15897 9.18995 6.92465 9.42427L4.94892 11.4H15.4004V6C15.4004 5.66863 15.669 5.4 16.0004 5.4Z",
|
|
756
741
|
fill: t
|
|
757
742
|
})
|
|
758
|
-
}),
|
|
743
|
+
}), ie = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
759
744
|
xmlns: "http://www.w3.org/2000/svg",
|
|
760
745
|
width: e,
|
|
761
746
|
height: e,
|
|
@@ -781,7 +766,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
781
766
|
fill: t
|
|
782
767
|
})
|
|
783
768
|
]
|
|
784
|
-
}),
|
|
769
|
+
}), ae = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
785
770
|
xmlns: "http://www.w3.org/2000/svg",
|
|
786
771
|
width: e,
|
|
787
772
|
height: e,
|
|
@@ -807,7 +792,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
807
792
|
fill: t
|
|
808
793
|
})
|
|
809
794
|
]
|
|
810
|
-
}),
|
|
795
|
+
}), oe = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
811
796
|
xmlns: "http://www.w3.org/2000/svg",
|
|
812
797
|
width: e,
|
|
813
798
|
height: e,
|
|
@@ -833,7 +818,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
833
818
|
fill: t
|
|
834
819
|
})
|
|
835
820
|
]
|
|
836
|
-
}),
|
|
821
|
+
}), se = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
837
822
|
xmlns: "http://www.w3.org/2000/svg",
|
|
838
823
|
width: e,
|
|
839
824
|
height: e,
|
|
@@ -859,7 +844,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
859
844
|
fill: t
|
|
860
845
|
})
|
|
861
846
|
]
|
|
862
|
-
}),
|
|
847
|
+
}), ce = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
863
848
|
xmlns: "http://www.w3.org/2000/svg",
|
|
864
849
|
width: e,
|
|
865
850
|
height: e,
|
|
@@ -871,7 +856,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
871
856
|
d: "M10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18ZM10.5994 13.5V7.96715L12.3213 9.72039C12.5535 9.9568 12.9334 9.96023 13.1698 9.72803C13.4063 9.49584 13.4097 9.11595 13.1775 8.87954L10.4275 6.07954C10.3147 5.96467 10.1604 5.89996 9.99941 5.89996C9.83841 5.89996 9.68416 5.96467 9.57135 6.07954L6.82135 8.87954C6.58915 9.11595 6.59257 9.49584 6.82899 9.72803C7.06541 9.96023 7.44529 9.9568 7.67748 9.72039L9.39941 7.96715V13.5C9.39941 13.8313 9.66804 14.1 9.99941 14.1C10.3308 14.1 10.5994 13.8313 10.5994 13.5Z",
|
|
872
857
|
fill: t
|
|
873
858
|
})
|
|
874
|
-
}),
|
|
859
|
+
}), le = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
875
860
|
xmlns: "http://www.w3.org/2000/svg",
|
|
876
861
|
width: e,
|
|
877
862
|
height: e,
|
|
@@ -881,7 +866,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
881
866
|
d: "M9.77072 2.44555C9.69996 2.47483 9.63366 2.51823 9.57614 2.57575C9.57606 2.57583 9.57622 2.57566 9.57614 2.57575L7.57613 4.57576C7.34181 4.81008 7.34181 5.18997 7.57613 5.42429C7.81044 5.6586 8.19034 5.6586 8.42465 5.42429L9.40039 4.44855V8.00002C9.40039 9.43596 10.5645 10.6 12.0004 10.6H17.0004C17.3318 10.6 17.6004 10.3314 17.6004 10C17.6004 9.66865 17.3318 9.40002 17.0004 9.40002H12.0004C11.2272 9.40002 10.6004 8.77322 10.6004 8.00002V4.44855L11.5761 5.42429C11.8104 5.6586 12.1903 5.6586 12.4247 5.42429C12.659 5.18997 12.659 4.81008 12.4247 4.57576L10.4247 2.57576C10.3075 2.4586 10.1539 2.40002 10.0004 2.40002C9.91904 2.40002 9.84146 2.41622 9.77072 2.44555Z",
|
|
882
867
|
fill: t
|
|
883
868
|
})
|
|
884
|
-
}),
|
|
869
|
+
}), ue = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
885
870
|
xmlns: "http://www.w3.org/2000/svg",
|
|
886
871
|
width: e,
|
|
887
872
|
height: e,
|
|
@@ -898,7 +883,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
898
883
|
d: "M12.5761 3.42443C12.3417 3.19021 12.3415 2.81031 12.5758 2.5759C12.81 2.34149 13.1899 2.34134 13.4243 2.57556L16.4243 5.57318C16.5369 5.68566 16.6001 5.83824 16.6002 5.99737C16.6002 6.05021 16.5933 6.10233 16.5799 6.1525C16.5493 6.26911 16.4845 6.37187 16.3969 6.44942L13.4246 9.42409C13.1904 9.6585 12.8105 9.65865 12.5761 9.42443C12.3417 9.1902 12.3415 8.81031 12.5758 8.5759L14.5501 6.59999H3.99941C3.66804 6.59999 3.39941 6.33136 3.39941 5.99999C3.39941 5.66862 3.66804 5.39999 3.99941 5.39999H14.5532L12.5761 3.42443Z",
|
|
899
884
|
fill: t
|
|
900
885
|
})]
|
|
901
|
-
}),
|
|
886
|
+
}), de = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
902
887
|
xmlns: "http://www.w3.org/2000/svg",
|
|
903
888
|
width: e,
|
|
904
889
|
height: e,
|
|
@@ -915,7 +900,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
915
900
|
d: "M13.5458 16.3914C13.6558 16.5191 13.8188 16.6 14.0006 16.6L14.0018 16.6L14.0032 16.6C14.1623 16.5999 14.3149 16.5367 14.4274 16.4241L17.425 13.4241C17.6592 13.1897 17.6591 12.8098 17.4247 12.5756C17.1903 12.3413 16.8104 12.3415 16.5762 12.5759L14.6006 14.553L14.6006 3.99999C14.6006 3.66862 14.332 3.39999 14.0006 3.39999C13.6692 3.39999 13.4006 3.66862 13.4006 3.99999L13.4006 14.5499L11.4247 12.5756C11.1903 12.3413 10.8104 12.3415 10.5762 12.5759C10.3419 12.8103 10.3421 13.1902 10.5765 13.4244L13.5458 16.3914Z",
|
|
916
901
|
fill: t
|
|
917
902
|
})]
|
|
918
|
-
}),
|
|
903
|
+
}), fe = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
919
904
|
xmlns: "http://www.w3.org/2000/svg",
|
|
920
905
|
width: e,
|
|
921
906
|
height: e,
|
|
@@ -965,7 +950,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
965
950
|
fill: t
|
|
966
951
|
})
|
|
967
952
|
]
|
|
968
|
-
}),
|
|
953
|
+
}), pe = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
969
954
|
xmlns: "http://www.w3.org/2000/svg",
|
|
970
955
|
width: e,
|
|
971
956
|
height: e,
|
|
@@ -991,7 +976,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
991
976
|
fill: t
|
|
992
977
|
})
|
|
993
978
|
]
|
|
994
|
-
}),
|
|
979
|
+
}), me = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
995
980
|
xmlns: "http://www.w3.org/2000/svg",
|
|
996
981
|
width: e,
|
|
997
982
|
height: e,
|
|
@@ -1003,7 +988,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1003
988
|
d: "M1.40039 3C1.40039 2.66863 1.66902 2.4 2.00039 2.4H5.00039C5.33176 2.4 5.60039 2.66863 5.60039 3C5.60039 3.33137 5.33176 3.6 5.00039 3.6H2.60039V6C2.60039 6.33137 2.33176 6.6 2.00039 6.6C1.66902 6.6 1.40039 6.33137 1.40039 6V3ZM14.4004 3C14.4004 2.66863 14.669 2.4 15.0004 2.4H18.0004C18.3318 2.4 18.6004 2.66863 18.6004 3V6C18.6004 6.33137 18.3318 6.6 18.0004 6.6C17.669 6.6 17.4004 6.33137 17.4004 6V3.6H15.0004C14.669 3.6 14.4004 3.33137 14.4004 3ZM5.50039 5.9C5.83176 5.9 6.10039 6.16863 6.10039 6.5V13.5C6.10039 13.8314 5.83176 14.1 5.50039 14.1C5.16902 14.1 4.90039 13.8314 4.90039 13.5V6.5C4.90039 6.16863 5.16902 5.9 5.50039 5.9ZM8.50039 5.9C8.83176 5.9 9.10039 6.16863 9.10039 6.5V13.5C9.10039 13.8314 8.83176 14.1 8.50039 14.1C8.16902 14.1 7.90039 13.8314 7.90039 13.5V6.5C7.90039 6.16863 8.16902 5.9 8.50039 5.9ZM11.5004 5.9C11.8318 5.9 12.1004 6.16863 12.1004 6.5V13.5C12.1004 13.8314 11.8318 14.1 11.5004 14.1C11.169 14.1 10.9004 13.8314 10.9004 13.5V6.5C10.9004 6.16863 11.169 5.9 11.5004 5.9ZM14.5004 5.9C14.8318 5.9 15.1004 6.16863 15.1004 6.5V13.5C15.1004 13.8314 14.8318 14.1 14.5004 14.1C14.169 14.1 13.9004 13.8314 13.9004 13.5V6.5C13.9004 6.16863 14.169 5.9 14.5004 5.9ZM2.00039 13.4C2.33176 13.4 2.60039 13.6686 2.60039 14V16.4H5.00039C5.33176 16.4 5.60039 16.6686 5.60039 17C5.60039 17.3314 5.33176 17.6 5.00039 17.6H2.00039C1.66902 17.6 1.40039 17.3314 1.40039 17V14C1.40039 13.6686 1.66902 13.4 2.00039 13.4ZM18.0004 13.4C18.3318 13.4 18.6004 13.6686 18.6004 14V17C18.6004 17.3314 18.3318 17.6 18.0004 17.6H15.0004C14.669 17.6 14.4004 17.3314 14.4004 17C14.4004 16.6686 14.669 16.4 15.0004 16.4H17.4004V14C17.4004 13.6686 17.669 13.4 18.0004 13.4Z",
|
|
1004
989
|
fill: t
|
|
1005
990
|
})
|
|
1006
|
-
}),
|
|
991
|
+
}), he = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1007
992
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1008
993
|
width: e,
|
|
1009
994
|
height: e,
|
|
@@ -1059,7 +1044,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1059
1044
|
fill: t
|
|
1060
1045
|
})
|
|
1061
1046
|
]
|
|
1062
|
-
}),
|
|
1047
|
+
}), ge = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1063
1048
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1064
1049
|
width: e,
|
|
1065
1050
|
height: e,
|
|
@@ -1085,7 +1070,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1085
1070
|
fill: t
|
|
1086
1071
|
})
|
|
1087
1072
|
]
|
|
1088
|
-
}),
|
|
1073
|
+
}), _e = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
1089
1074
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1090
1075
|
width: e,
|
|
1091
1076
|
height: e,
|
|
@@ -1097,7 +1082,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1097
1082
|
d: "M5.10039 4.1C4.54811 4.1 4.10039 4.54772 4.10039 5.1V16.3729L9.66536 12.6272C9.86791 12.4909 10.1329 12.4909 10.3354 12.6272L15.9004 16.3729V5.1C15.9004 4.54772 15.4527 4.1 14.9004 4.1H5.10039ZM2.90039 5.1C2.90039 3.88498 3.88536 2.9 5.10039 2.9H14.9004C16.1154 2.9 17.1004 3.88497 17.1004 5.1V17.5C17.1004 17.7218 16.9781 17.9254 16.7823 18.0296C16.5866 18.1338 16.3493 18.1216 16.1654 17.9978L10.0004 13.8483L3.83542 17.9978C3.65145 18.1216 3.41419 18.1338 3.21845 18.0296C3.0227 17.9254 2.90039 17.7218 2.90039 17.5V5.1Z",
|
|
1098
1083
|
fill: t
|
|
1099
1084
|
})
|
|
1100
|
-
}),
|
|
1085
|
+
}), ve = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1101
1086
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1102
1087
|
width: e,
|
|
1103
1088
|
height: e,
|
|
@@ -1112,7 +1097,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1112
1097
|
d: "M5.10039 4.1C4.54811 4.1 4.10039 4.54772 4.10039 5.1V16.3729L9.66536 12.6272C9.86791 12.4909 10.1329 12.4909 10.3354 12.6272L15.9004 16.3729V5.1C15.9004 4.54772 15.4527 4.1 14.9004 4.1H5.10039ZM2.90039 5.1C2.90039 3.88498 3.88536 2.9 5.10039 2.9H14.9004C16.1154 2.9 17.1004 3.88497 17.1004 5.1V17.5C17.1004 17.7218 16.9781 17.9254 16.7823 18.0296C16.5866 18.1338 16.3493 18.1216 16.1654 17.9978L10.0004 13.8483L3.83542 17.9978C3.65145 18.1216 3.41419 18.1338 3.21845 18.0296C3.0227 17.9254 2.90039 17.7218 2.90039 17.5V5.1Z",
|
|
1113
1098
|
fill: t
|
|
1114
1099
|
})]
|
|
1115
|
-
}),
|
|
1100
|
+
}), ye = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
1116
1101
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1117
1102
|
width: e,
|
|
1118
1103
|
height: e,
|
|
@@ -1124,7 +1109,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1124
1109
|
d: "M9.99981 1.4C10.3312 1.4 10.5998 1.66863 10.5998 2V3.6C10.5998 3.93137 10.3312 4.2 9.99981 4.2C9.66843 4.2 9.39981 3.93137 9.39981 3.6V2C9.39981 1.66863 9.66843 1.4 9.99981 1.4ZM3.91878 3.91885C4.15309 3.68454 4.53299 3.68454 4.76731 3.91885L5.89868 5.05022C6.13299 5.28454 6.13299 5.66444 5.89868 5.89875C5.66436 6.13307 5.28446 6.13307 5.05015 5.89875L3.91878 4.76738C3.68446 4.53307 3.68446 4.15317 3.91878 3.91885ZM16.0813 3.91888C16.3156 4.15319 16.3156 4.53309 16.0813 4.76741L14.9499 5.89878C14.7156 6.13309 14.3357 6.13309 14.1014 5.89878C13.8671 5.66446 13.8671 5.28456 14.1014 5.05025L15.2328 3.91888C15.4671 3.68456 15.847 3.68456 16.0813 3.91888ZM9.99981 6.6C8.12204 6.6 6.5998 8.12223 6.5998 10C6.5998 11.8778 8.12204 13.4 9.99981 13.4C11.8776 13.4 13.3998 11.8778 13.3998 10C13.3998 8.12223 11.8776 6.6 9.99981 6.6ZM5.39981 10C5.39981 7.45949 7.4593 5.4 9.99981 5.4C12.5403 5.4 14.5998 7.45949 14.5998 10C14.5998 12.5405 12.5403 14.6 9.99981 14.6C7.4593 14.6 5.39981 12.5405 5.39981 10ZM1.39941 10C1.39941 9.66863 1.66804 9.4 1.99941 9.4H3.59941C3.93079 9.4 4.19941 9.66863 4.19941 10C4.19941 10.3314 3.93079 10.6 3.59941 10.6H1.99941C1.66804 10.6 1.39941 10.3314 1.39941 10ZM15.7998 10C15.7998 9.66863 16.0684 9.4 16.3998 9.4H17.9998C18.3312 9.4 18.5998 9.66863 18.5998 10C18.5998 10.3314 18.3312 10.6 17.9998 10.6H16.3998C16.0684 10.6 15.7998 10.3314 15.7998 10ZM14.1014 14.1012C14.3357 13.8669 14.7156 13.8669 14.9499 14.1012L16.0813 15.2326C16.3156 15.4669 16.3156 15.8468 16.0813 16.0811C15.847 16.3154 15.4671 16.3154 15.2328 16.0811L14.1014 14.9498C13.8671 14.7154 13.8671 14.3355 14.1014 14.1012ZM5.89868 14.1013C6.13299 14.3356 6.13299 14.7155 5.89868 14.9498L4.76731 16.0811C4.53299 16.3155 4.15309 16.3155 3.91878 16.0811C3.68446 15.8468 3.68446 15.4669 3.91878 15.2326L5.05015 14.1013C5.28447 13.8669 5.66436 13.8669 5.89868 14.1013ZM9.99981 15.8C10.3312 15.8 10.5998 16.0687 10.5998 16.4V18C10.5998 18.3314 10.3312 18.6 9.99981 18.6C9.66843 18.6 9.39981 18.3314 9.39981 18V16.4C9.39981 16.0687 9.66843 15.8 9.99981 15.8Z",
|
|
1125
1110
|
fill: t
|
|
1126
1111
|
})
|
|
1127
|
-
}),
|
|
1112
|
+
}), be = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1128
1113
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1129
1114
|
width: e,
|
|
1130
1115
|
height: e,
|
|
@@ -1156,7 +1141,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1156
1141
|
fill: t
|
|
1157
1142
|
})
|
|
1158
1143
|
]
|
|
1159
|
-
}),
|
|
1144
|
+
}), xe = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1160
1145
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1161
1146
|
width: e,
|
|
1162
1147
|
height: e,
|
|
@@ -1173,7 +1158,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1173
1158
|
d: "M8.04934 4.1C7.91258 4.1 7.7853 4.16987 7.71187 4.28525L6.60659 6.02213C6.49645 6.1952 6.30553 6.3 6.10039 6.3H3.70039C3.36902 6.3 3.10039 6.56863 3.10039 6.9V15.3C3.10039 15.6314 3.36902 15.9 3.70039 15.9H16.3004C16.6318 15.9 16.9004 15.6314 16.9004 15.3V6.9C16.9004 6.56863 16.6318 6.3 16.3004 6.3H13.9104C13.7059 6.3 13.5156 6.19589 13.4052 6.02376L12.2903 4.28416C12.2168 4.16941 12.0898 4.1 11.9535 4.1H8.04934ZM6.69948 3.641C6.99317 3.17948 7.5023 2.9 8.04934 2.9H11.9535C12.4987 2.9 13.0064 3.17763 13.3006 3.63665L14.2385 5.1H16.3004C17.2945 5.1 18.1004 5.90589 18.1004 6.9V15.3C18.1004 16.2941 17.2945 17.1 16.3004 17.1H3.70039C2.70628 17.1 1.90039 16.2941 1.90039 15.3V6.9C1.90039 5.90589 2.70628 5.1 3.70039 5.1H5.77102L6.69948 3.641Z",
|
|
1174
1159
|
fill: t
|
|
1175
1160
|
})]
|
|
1176
|
-
}),
|
|
1161
|
+
}), Se = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1177
1162
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1178
1163
|
width: e,
|
|
1179
1164
|
height: e,
|
|
@@ -1190,7 +1175,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1190
1175
|
d: "M3.40039 15C3.40039 14.6686 3.66902 14.4 4.00039 14.4H16.0004C16.3318 14.4 16.6004 14.6686 16.6004 15C16.6004 15.3314 16.3318 15.6 16.0004 15.6H4.00039C3.66902 15.6 3.40039 15.3314 3.40039 15Z",
|
|
1191
1176
|
fill: t
|
|
1192
1177
|
})]
|
|
1193
|
-
}),
|
|
1178
|
+
}), Ce = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1194
1179
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1195
1180
|
width: e,
|
|
1196
1181
|
height: e,
|
|
@@ -1207,7 +1192,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1207
1192
|
d: "M5.50039 3.4C5.83176 3.4 6.10039 3.66863 6.10039 4V16C6.10039 16.3314 5.83176 16.6 5.50039 16.6C5.16902 16.6 4.90039 16.3314 4.90039 16V4C4.90039 3.66863 5.16902 3.4 5.50039 3.4Z",
|
|
1208
1193
|
fill: t
|
|
1209
1194
|
})]
|
|
1210
|
-
}),
|
|
1195
|
+
}), we = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1211
1196
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1212
1197
|
width: e,
|
|
1213
1198
|
height: e,
|
|
@@ -1224,7 +1209,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1224
1209
|
d: "M14.5004 3.39999C14.8318 3.39999 15.1004 3.66862 15.1004 3.99999V16C15.1004 16.3314 14.8318 16.6 14.5004 16.6C14.169 16.6 13.9004 16.3314 13.9004 16V3.99999C13.9004 3.66862 14.169 3.39999 14.5004 3.39999Z",
|
|
1225
1210
|
fill: t
|
|
1226
1211
|
})]
|
|
1227
|
-
}),
|
|
1212
|
+
}), Te = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1228
1213
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1229
1214
|
width: e,
|
|
1230
1215
|
height: e,
|
|
@@ -1241,7 +1226,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1241
1226
|
d: "M3.40039 4.99999C3.40039 4.66862 3.66902 4.39999 4.00039 4.39999H16.5004C16.8318 4.39999 17.1004 4.66862 17.1004 4.99999C17.1004 5.33136 16.8318 5.59999 16.5004 5.59999H4.00039C3.66902 5.59999 3.40039 5.33136 3.40039 4.99999Z",
|
|
1242
1227
|
fill: t
|
|
1243
1228
|
})]
|
|
1244
|
-
}),
|
|
1229
|
+
}), Ee = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1245
1230
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1246
1231
|
width: e,
|
|
1247
1232
|
height: e,
|
|
@@ -1258,7 +1243,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1258
1243
|
d: "M9.57613 2.57573C9.81044 2.34142 10.1903 2.34142 10.4247 2.57573L14.4247 6.57573C14.659 6.81004 14.659 7.18994 14.4247 7.42426C14.1903 7.65857 13.8104 7.65857 13.5761 7.42426L10.0004 3.84852L6.42465 7.42426C6.19034 7.65857 5.81044 7.65857 5.57613 7.42426C5.34181 7.18994 5.34181 6.81004 5.57613 6.57573L9.57613 2.57573Z",
|
|
1259
1244
|
fill: t
|
|
1260
1245
|
})]
|
|
1261
|
-
}),
|
|
1246
|
+
}), De = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1262
1247
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1263
1248
|
width: e,
|
|
1264
1249
|
height: e,
|
|
@@ -1284,7 +1269,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1284
1269
|
fill: t
|
|
1285
1270
|
})
|
|
1286
1271
|
]
|
|
1287
|
-
}),
|
|
1272
|
+
}), Oe = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
1288
1273
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1289
1274
|
width: e,
|
|
1290
1275
|
height: e,
|
|
@@ -1360,7 +1345,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1360
1345
|
fill: t
|
|
1361
1346
|
})
|
|
1362
1347
|
});
|
|
1363
|
-
},
|
|
1348
|
+
}, ke = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1364
1349
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1365
1350
|
width: e,
|
|
1366
1351
|
height: e,
|
|
@@ -1406,7 +1391,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1406
1391
|
d: "M10.0004 1.89999C5.52688 1.89999 1.90039 5.52649 1.90039 9.99999C1.90039 14.4735 5.52688 18.1 10.0004 18.1C14.4739 18.1 18.1004 14.4735 18.1004 9.99999C18.1004 5.52649 14.4739 1.89999 10.0004 1.89999ZM8.40599 12.7611C8.51945 12.8746 8.67334 12.9383 8.83379 12.9383C8.99425 12.9383 9.14813 12.8746 9.26159 12.7611L13.9283 8.09443C14.1645 7.85816 14.1645 7.47509 13.9283 7.23883C13.692 7.00256 13.3089 7.00256 13.0727 7.23883L8.83379 11.4777L6.92827 9.57216C6.692 9.33589 6.30894 9.33589 6.07267 9.57216C5.8364 9.80843 5.8364 10.1915 6.07267 10.4278L8.40599 12.7611Z",
|
|
1407
1392
|
fill: t
|
|
1408
1393
|
})
|
|
1409
|
-
}),
|
|
1394
|
+
}), Ae = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
1410
1395
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1411
1396
|
width: e,
|
|
1412
1397
|
height: e,
|
|
@@ -1416,7 +1401,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1416
1401
|
d: "M18 9.99951C18 14.4178 14.4183 17.9995 10 17.9995C5.58172 17.9995 2 14.4178 2 9.99951C2 5.58123 5.58172 1.99951 10 1.99951C14.4183 1.99951 18 5.58123 18 9.99951Z",
|
|
1417
1402
|
fill: t
|
|
1418
1403
|
})
|
|
1419
|
-
}),
|
|
1404
|
+
}), je = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
1420
1405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1421
1406
|
width: e,
|
|
1422
1407
|
height: e,
|
|
@@ -1440,7 +1425,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1440
1425
|
d: "M15.4594 5.45963C15.7132 5.20578 15.7132 4.79423 15.4594 4.54039C15.2055 4.28655 14.794 4.28655 14.5401 4.54039L9.99962 9.08091L5.45923 4.54052C5.20539 4.28668 4.79383 4.28668 4.53999 4.54052C4.28615 4.79436 4.28615 5.20592 4.53999 5.45976L9.08038 10.0002L4.54028 14.5402C4.28644 14.7941 4.28644 15.2056 4.54028 15.4595C4.79412 15.7133 5.20568 15.7133 5.45952 15.4595L9.99962 10.9194L14.5398 15.4596C14.7937 15.7135 15.2052 15.7135 15.4591 15.4596C15.7129 15.2058 15.7129 14.7942 15.4591 14.5404L10.9189 10.0002L15.4594 5.45963Z",
|
|
1441
1426
|
fill: t
|
|
1442
1427
|
})
|
|
1443
|
-
}),
|
|
1428
|
+
}), Me = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1444
1429
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1445
1430
|
width: e,
|
|
1446
1431
|
height: e,
|
|
@@ -1457,7 +1442,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1457
1442
|
d: "M10.0004 3.09999C6.18963 3.09999 3.10039 6.18923 3.10039 9.99999C3.10039 13.8108 6.18963 16.9 10.0004 16.9C13.8112 16.9 16.9004 13.8108 16.9004 9.99999C16.9004 6.18923 13.8112 3.09999 10.0004 3.09999ZM1.90039 9.99999C1.90039 5.52649 5.52688 1.89999 10.0004 1.89999C14.4739 1.89999 18.1004 5.52649 18.1004 9.99999C18.1004 14.4735 14.4739 18.1 10.0004 18.1C5.52688 18.1 1.90039 14.4735 1.90039 9.99999Z",
|
|
1458
1443
|
fill: t
|
|
1459
1444
|
})]
|
|
1460
|
-
}),
|
|
1445
|
+
}), Ne = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1461
1446
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1462
1447
|
width: e,
|
|
1463
1448
|
height: e,
|
|
@@ -1501,7 +1486,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1501
1486
|
fill: t
|
|
1502
1487
|
})
|
|
1503
1488
|
]
|
|
1504
|
-
}),
|
|
1489
|
+
}), Pe = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
1505
1490
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1506
1491
|
width: e,
|
|
1507
1492
|
height: e,
|
|
@@ -1513,7 +1498,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1513
1498
|
d: "M11.558 2.80777C12.1395 2.22636 12.928 1.89972 13.7503 1.89972C14.5725 1.89972 15.3611 2.22636 15.9425 2.80777C16.5239 3.38919 16.8506 4.17776 16.8506 5C16.8506 5.82153 16.5245 6.60945 15.944 7.19072C15.9435 7.19122 15.943 7.19173 15.9425 7.19224L8.17786 15.064C7.82932 15.4027 7.36143 15.5905 6.87548 15.587C6.38952 15.5836 5.92443 15.3891 5.58073 15.0455C5.23702 14.702 5.0423 14.237 5.03864 13.751C5.03498 13.2651 5.22268 12.7972 5.56118 12.4485L5.56394 12.4456L12.0725 5.82924C12.3049 5.59301 12.6848 5.58989 12.921 5.82227C13.1573 6.05465 13.1604 6.43454 12.928 6.67077L6.4222 13.2843C6.4218 13.2847 6.42141 13.2852 6.42101 13.2856C6.30283 13.4079 6.23732 13.5718 6.2386 13.742C6.23989 13.9127 6.30831 14.0761 6.42907 14.1968C6.54983 14.3175 6.71324 14.3859 6.88398 14.3871C7.05293 14.3883 7.21563 14.3236 7.33768 14.207L15.0911 6.34663L15.094 6.34371C15.4504 5.98734 15.6506 5.50399 15.6506 5C15.6506 4.49602 15.4504 4.01267 15.094 3.6563C14.7376 3.29993 14.2543 3.09972 13.7503 3.09972C13.2469 3.09972 12.7642 3.29942 12.4079 3.65493C12.4075 3.65539 12.407 3.65584 12.4066 3.6563L4.65142 11.5192C4.65139 11.5193 4.65145 11.5192 4.65142 11.5192C4.06869 12.1116 3.74352 12.9103 3.7469 13.7412C3.75028 14.5722 4.08189 15.3682 4.66949 15.9558C5.25709 16.5434 6.05307 16.875 6.88405 16.8784C7.71433 16.8818 8.51234 16.5572 9.10455 15.9753L15.5138 9.57543C15.7483 9.34129 16.1282 9.34157 16.3624 9.57605C16.5965 9.81054 16.5962 10.1904 16.3617 10.4246L9.94765 16.8293C9.12962 17.6341 8.02671 18.083 6.87916 18.0784C5.73162 18.0737 4.6324 17.6158 3.82096 16.8043C3.00952 15.9929 2.55158 14.8937 2.54691 13.7461C2.54224 12.5986 2.9912 11.4957 3.79601 10.6776L11.5551 2.81071L11.558 2.80777Z",
|
|
1514
1499
|
fill: t
|
|
1515
1500
|
})
|
|
1516
|
-
}),
|
|
1501
|
+
}), Fe = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1517
1502
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1518
1503
|
width: e,
|
|
1519
1504
|
height: e,
|
|
@@ -1539,7 +1524,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1539
1524
|
fill: t
|
|
1540
1525
|
})
|
|
1541
1526
|
]
|
|
1542
|
-
}),
|
|
1527
|
+
}), Ie = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1543
1528
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1544
1529
|
width: e,
|
|
1545
1530
|
height: e,
|
|
@@ -1554,7 +1539,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1554
1539
|
d: "M10.0004 3.09999C6.18963 3.09999 3.10039 6.18923 3.10039 9.99999C3.10039 13.8108 6.18963 16.9 10.0004 16.9C13.8112 16.9 16.9004 13.8108 16.9004 9.99999C16.9004 6.18923 13.8112 3.09999 10.0004 3.09999ZM1.90039 9.99999C1.90039 5.52649 5.52688 1.89999 10.0004 1.89999C14.4739 1.89999 18.1004 5.52649 18.1004 9.99999C18.1004 14.4735 14.4739 18.1 10.0004 18.1C5.52688 18.1 1.90039 14.4735 1.90039 9.99999Z",
|
|
1555
1540
|
fill: t
|
|
1556
1541
|
})]
|
|
1557
|
-
}),
|
|
1542
|
+
}), Le = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1558
1543
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1559
1544
|
width: e,
|
|
1560
1545
|
height: e,
|
|
@@ -1571,7 +1556,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1571
1556
|
d: "M6.40039 5.50001V3.41072C6.40039 2.80305 6.92428 2.40001 7.45039 2.40001L15.5504 2.40001C16.0765 2.40001 16.6004 2.80305 16.6004 3.41072V14.0893C16.6004 14.697 16.0765 15.1 15.5504 15.1H13.0004L13.0004 13.9H15.4004V3.60001L7.60039 3.60001V5.50001L6.40039 5.50001Z",
|
|
1572
1557
|
fill: t
|
|
1573
1558
|
})]
|
|
1574
|
-
}),
|
|
1559
|
+
}), Re = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1575
1560
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1576
1561
|
width: e,
|
|
1577
1562
|
height: e,
|
|
@@ -1612,7 +1597,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1612
1597
|
fill: t
|
|
1613
1598
|
})
|
|
1614
1599
|
]
|
|
1615
|
-
}),
|
|
1600
|
+
}), ze = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1616
1601
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1617
1602
|
width: e,
|
|
1618
1603
|
height: e,
|
|
@@ -1637,7 +1622,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1637
1622
|
fill: t
|
|
1638
1623
|
})
|
|
1639
1624
|
]
|
|
1640
|
-
}),
|
|
1625
|
+
}), Be = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1641
1626
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1642
1627
|
width: e,
|
|
1643
1628
|
height: e,
|
|
@@ -1663,7 +1648,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1663
1648
|
fill: t
|
|
1664
1649
|
})
|
|
1665
1650
|
]
|
|
1666
|
-
}),
|
|
1651
|
+
}), Ve = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1667
1652
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1668
1653
|
width: e,
|
|
1669
1654
|
height: e,
|
|
@@ -1689,7 +1674,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1689
1674
|
fill: t
|
|
1690
1675
|
})
|
|
1691
1676
|
]
|
|
1692
|
-
}),
|
|
1677
|
+
}), He = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1693
1678
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1694
1679
|
width: e,
|
|
1695
1680
|
height: e,
|
|
@@ -1715,7 +1700,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1715
1700
|
fill: t
|
|
1716
1701
|
})
|
|
1717
1702
|
]
|
|
1718
|
-
}),
|
|
1703
|
+
}), Ue = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
1719
1704
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1720
1705
|
width: e,
|
|
1721
1706
|
height: e,
|
|
@@ -1727,7 +1712,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1727
1712
|
d: "M7.68984 7.85083L6.659 7.03327C6.32869 6.77129 5.85445 6.79856 5.55635 7.09667L5.049 7.60402C4.72486 7.92816 4.72486 8.45368 5.049 8.77782L11.413 15.1418C11.7371 15.4659 12.2626 15.4659 12.5868 15.1418L13.0941 14.6344C13.3922 14.3363 13.4195 13.8621 13.1575 13.5318L12.3399 12.5009L7.68984 7.85083ZM9.78867 8.29503L11.8957 10.4021C11.9911 10.1001 12.1525 9.81743 12.3756 9.57817L10.6126 7.81514C10.3734 8.03829 10.0907 8.19972 9.78867 8.29503ZM11.2933 6.84122L13.3496 8.89747L15.3304 7.71597C15.4719 7.63162 15.6023 7.53007 15.7187 7.41364L15.7687 7.3636C16.581 6.55131 16.581 5.23433 15.7687 4.42204C14.9564 3.60975 13.6395 3.60975 12.8272 4.42204L12.7771 4.47207C12.6607 4.58851 12.5592 4.71892 12.4748 4.86034L11.2933 6.84122ZM13.4524 10.1985C12.9329 10.5083 12.8053 11.2048 13.1811 11.6787L13.2148 11.7212L13.2228 11.7292L13.8652 12.5391C13.8816 12.5599 13.8976 12.5808 13.9133 12.6018L14.0742 12.8047C14.7055 13.6007 14.6398 14.7434 13.9214 15.4617L13.4141 15.9691C12.633 16.7501 11.3667 16.7501 10.5856 15.9691L4.22168 9.60513C3.44063 8.82408 3.44063 7.55775 4.22168 6.77671L4.72903 6.26936C5.44736 5.55102 6.5901 5.48532 7.38603 6.11658L7.59113 6.27924C7.61162 6.29445 7.63194 6.31004 7.65206 6.32601L8.46205 6.9684L8.46959 6.97594L8.51209 7.00965C8.98599 7.38551 9.68248 7.25788 9.99232 6.73841L11.47 4.261C11.6038 4.03655 11.765 3.82956 11.9498 3.64476L11.9999 3.59473C13.2691 2.32552 15.3268 2.32552 16.5961 3.59473C17.8653 4.86393 17.8653 6.92172 16.5961 8.19092L16.546 8.24095C16.3612 8.42575 16.1542 8.58693 15.9298 8.72081L14.2029 9.7508L13.4524 10.1985ZM5.7499 15.25C5.19759 15.25 4.74988 14.8022 4.74994 14.2499L4.75004 13.25L3.75009 13.25C3.19781 13.25 2.75009 12.8022 2.7501 12.25L2.75009 11.2499L1.74997 11.2499C1.47383 11.2499 1.24998 11.026 1.25 10.7498C1.25002 10.4737 1.47389 10.2499 1.75003 10.2499L2.75016 10.2499C3.30242 10.25 3.7501 10.6977 3.7501 11.2499L3.75009 12.25H4.75004C5.30237 12.25 5.7501 12.6977 5.75004 13.2501L5.74994 14.25L6.75007 14.2501C7.3023 14.2501 7.74997 14.6977 7.75003 15.25L5.7499 15.25ZM7.75003 15.25L7.75014 16.2501L8.75008 16.2501C9.30243 16.2502 9.75016 16.698 9.75006 17.2503L9.74988 18.2501C9.74983 18.5262 9.52593 18.75 9.24979 18.75C8.97364 18.7499 8.74983 18.526 8.74988 18.2499L8.75006 17.2501L7.75012 17.2501C7.19788 17.2501 6.7502 16.8025 6.75014 16.2502L6.75003 15.2501L7.75003 15.25Z",
|
|
1728
1713
|
fill: t
|
|
1729
1714
|
})
|
|
1730
|
-
}),
|
|
1715
|
+
}), We = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
1731
1716
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1732
1717
|
width: e,
|
|
1733
1718
|
height: e,
|
|
@@ -1739,7 +1724,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1739
1724
|
d: "M4.16641 4.4H3.3334C3.00203 4.4 2.7334 4.66863 2.7334 5C2.7334 5.33137 3.00203 5.6 3.3334 5.6H3.61126L4.39694 15.7016C4.50223 17.0553 5.63137 18.1 6.98911 18.1H13.0104C14.3681 18.1 15.4973 17.0553 15.6025 15.7016L16.3882 5.6H16.6667C16.9981 5.6 17.2667 5.33137 17.2667 5C17.2667 4.66863 16.9981 4.4 16.6667 4.4H15.8331H14.7648C14.7123 3.01041 13.5692 1.90001 12.1667 1.90001H7.8334C6.43095 1.90001 5.28784 3.01041 5.23529 4.4H4.16641ZM6.43692 4.4H13.5632C13.5119 3.67348 12.9063 3.10001 12.1667 3.10001H7.8334C7.09383 3.10001 6.4882 3.67348 6.43692 4.4ZM15.1846 5.6H14.1706L14.1667 5.60001H5.8334L5.82954 5.6H4.81489L5.59333 15.6086C5.65002 16.3375 6.25802 16.9 6.98911 16.9H13.0104C13.7415 16.9 14.3495 16.3375 14.4062 15.6086L15.1846 5.6ZM8.5853 14.7651C8.25477 14.7888 7.96769 14.5399 7.94408 14.2094L7.52741 8.37608C7.5038 8.04555 7.75261 7.75847 8.08314 7.73486C8.41367 7.71125 8.70075 7.96006 8.72436 8.29059L9.14103 14.1239C9.16464 14.4545 8.91583 14.7415 8.5853 14.7651ZM12.474 8.37608C12.4976 8.04556 12.2488 7.75847 11.9183 7.73486C11.5878 7.71125 11.3007 7.96006 11.2771 8.29059L10.8604 14.1239C10.8368 14.4544 11.0856 14.7415 11.4161 14.7651C11.7467 14.7888 12.0338 14.5399 12.0574 14.2094L12.474 8.37608Z",
|
|
1740
1725
|
fill: t
|
|
1741
1726
|
})
|
|
1742
|
-
}),
|
|
1727
|
+
}), Ge = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1743
1728
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1744
1729
|
width: e,
|
|
1745
1730
|
height: e,
|
|
@@ -1780,7 +1765,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1780
1765
|
fill: t
|
|
1781
1766
|
})
|
|
1782
1767
|
]
|
|
1783
|
-
}),
|
|
1768
|
+
}), Ke = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1784
1769
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1785
1770
|
width: e,
|
|
1786
1771
|
height: e,
|
|
@@ -1797,7 +1782,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1797
1782
|
d: "M3.57613 10.5757C3.81044 10.3414 4.19034 10.3414 4.42465 10.5757L10.0004 16.1515L15.5761 10.5757C15.8104 10.3414 16.1903 10.3414 16.4247 10.5757C16.659 10.81 16.659 11.1899 16.4247 11.4243L10.4247 17.4243C10.1903 17.6586 9.81044 17.6586 9.57613 17.4243L3.57613 11.4243C3.34181 11.1899 3.34181 10.81 3.57613 10.5757Z",
|
|
1798
1783
|
fill: t
|
|
1799
1784
|
})]
|
|
1800
|
-
}),
|
|
1785
|
+
}), qe = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1801
1786
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1802
1787
|
width: e,
|
|
1803
1788
|
height: e,
|
|
@@ -1814,7 +1799,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1814
1799
|
d: "M15.4247 3.57573C15.659 3.81004 15.659 4.18994 15.4247 4.42426L9.84892 9.99999L15.4247 15.5757C15.659 15.81 15.659 16.1899 15.4247 16.4243C15.1903 16.6586 14.8104 16.6586 14.5761 16.4243L8.57613 10.4243C8.34181 10.1899 8.34181 9.81004 8.57613 9.57573L14.5761 3.57573C14.8104 3.34142 15.1903 3.34142 15.4247 3.57573Z",
|
|
1815
1800
|
fill: t
|
|
1816
1801
|
})]
|
|
1817
|
-
}),
|
|
1802
|
+
}), Je = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1818
1803
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1819
1804
|
width: e,
|
|
1820
1805
|
height: e,
|
|
@@ -1831,7 +1816,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1831
1816
|
d: "M10.5761 3.57573C10.8104 3.34142 11.1903 3.34142 11.4247 3.57573L17.4247 9.57573C17.659 9.81004 17.659 10.1899 17.4247 10.4243L11.4247 16.4243C11.1903 16.6586 10.8104 16.6586 10.5761 16.4243C10.3418 16.1899 10.3418 15.81 10.5761 15.5757L16.1519 9.99999L10.5761 4.42426C10.3418 4.18994 10.3418 3.81004 10.5761 3.57573Z",
|
|
1832
1817
|
fill: t
|
|
1833
1818
|
})]
|
|
1834
|
-
}),
|
|
1819
|
+
}), Ye = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1835
1820
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1836
1821
|
width: e,
|
|
1837
1822
|
height: e,
|
|
@@ -1887,7 +1872,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1887
1872
|
strokeLinecap: "round",
|
|
1888
1873
|
strokeLinejoin: "round"
|
|
1889
1874
|
})
|
|
1890
|
-
}),
|
|
1875
|
+
}), Xe = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
1891
1876
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1892
1877
|
width: e,
|
|
1893
1878
|
height: e,
|
|
@@ -1900,7 +1885,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1900
1885
|
strokeLinecap: "round",
|
|
1901
1886
|
strokeLinejoin: "round"
|
|
1902
1887
|
})
|
|
1903
|
-
}),
|
|
1888
|
+
}), Ze = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1904
1889
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1905
1890
|
width: e,
|
|
1906
1891
|
height: e,
|
|
@@ -1944,7 +1929,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1944
1929
|
fill: t
|
|
1945
1930
|
})
|
|
1946
1931
|
]
|
|
1947
|
-
}),
|
|
1932
|
+
}), Qe = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
1948
1933
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1949
1934
|
width: e,
|
|
1950
1935
|
height: e,
|
|
@@ -1956,7 +1941,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1956
1941
|
r: "2",
|
|
1957
1942
|
fill: t
|
|
1958
1943
|
})
|
|
1959
|
-
}),
|
|
1944
|
+
}), $e = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1960
1945
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1961
1946
|
width: e,
|
|
1962
1947
|
height: e,
|
|
@@ -1988,7 +1973,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
1988
1973
|
fill: t
|
|
1989
1974
|
})
|
|
1990
1975
|
]
|
|
1991
|
-
}),
|
|
1976
|
+
}), et = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
1992
1977
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1993
1978
|
width: e,
|
|
1994
1979
|
height: e,
|
|
@@ -2020,7 +2005,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2020
2005
|
fill: t
|
|
2021
2006
|
})
|
|
2022
2007
|
]
|
|
2023
|
-
}),
|
|
2008
|
+
}), tt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2024
2009
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2025
2010
|
width: e,
|
|
2026
2011
|
height: e,
|
|
@@ -2058,7 +2043,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2058
2043
|
d: "M8.64365 2.01322C9.08519 1.93872 9.5385 1.89999 10.0004 1.89999C10.4623 1.89999 10.9156 1.93872 11.3571 2.01322C11.6839 2.06835 11.9041 2.37793 11.8489 2.70468C11.7938 3.03144 11.4842 3.25163 11.1575 3.19649C10.7816 3.13308 10.3951 3.09999 10.0004 3.09999C9.60567 3.09999 9.21914 3.13308 8.8433 3.19649C8.51655 3.25163 8.20697 3.03144 8.15184 2.70468C8.0967 2.37793 8.3169 2.06835 8.64365 2.01322ZM6.1491 3.53514C6.34109 3.80524 6.27777 4.17982 6.00768 4.3718C5.37525 4.82134 4.82174 5.37485 4.3722 6.00728C4.18022 6.27737 3.80563 6.34069 3.53554 6.14871C3.26545 5.95673 3.20213 5.58214 3.39411 5.31205C3.92145 4.57017 4.57057 3.92105 5.31245 3.39372C5.58254 3.20173 5.95712 3.26505 6.1491 3.53514ZM13.8517 3.53514C14.0437 3.26505 14.4182 3.20173 14.6883 3.39372C15.4302 3.92105 16.0793 4.57017 16.6067 5.31205C16.7987 5.58214 16.7353 5.95673 16.4652 6.14871C16.1951 6.34069 15.8206 6.27737 15.6286 6.00728C15.179 5.37485 14.6255 4.82134 13.9931 4.3718C13.723 4.17982 13.6597 3.80524 13.8517 3.53514ZM2.70508 8.15144C3.03183 8.20657 3.25202 8.51615 3.19689 8.84291C3.13347 9.21875 3.10039 9.60528 3.10039 9.99999C3.10039 10.3947 3.13347 10.7812 3.19689 11.1571C3.25202 11.4838 3.03183 11.7934 2.70508 11.8485C2.37833 11.9037 2.06875 11.6835 2.01362 11.3567C1.93911 10.9152 1.90039 10.4619 1.90039 9.99999C1.90039 9.5381 1.93911 9.08479 2.01362 8.64325C2.06875 8.3165 2.37833 8.09631 2.70508 8.15144ZM17.2957 8.15144C17.6225 8.09631 17.932 8.3165 17.9872 8.64325C18.0617 9.08479 18.1004 9.5381 18.1004 9.99999C18.1004 10.4619 18.0617 10.9152 17.9872 11.3567C17.932 11.6835 17.6225 11.9037 17.2957 11.8485C16.9689 11.7934 16.7488 11.4838 16.8039 11.1571C16.8673 10.7812 16.9004 10.3947 16.9004 9.99999C16.9004 9.60528 16.8673 9.21875 16.8039 8.84291C16.7488 8.51616 16.9689 8.20658 17.2957 8.15144ZM3.53554 13.8513C3.80563 13.6593 4.18022 13.7226 4.3722 13.9927C4.82174 14.6251 5.37525 15.1786 6.00768 15.6282C6.27777 15.8202 6.34109 16.1948 6.1491 16.4648C5.95712 16.7349 5.58254 16.7983 5.31245 16.6063C4.57057 16.0789 3.92145 15.4298 3.39411 14.6879C3.20213 14.4178 3.26545 14.0433 3.53554 13.8513ZM16.4652 13.8513C16.7353 14.0433 16.7987 14.4178 16.6067 14.6879C16.0793 15.4298 15.4302 16.0789 14.6883 16.6063C14.4182 16.7983 14.0437 16.7349 13.8517 16.4648C13.6597 16.1948 13.723 15.8202 13.9931 15.6282C14.6255 15.1786 15.179 14.6251 15.6286 13.9927C15.8206 13.7226 16.1951 13.6593 16.4652 13.8513ZM8.15184 17.2953C8.20697 16.9686 8.51655 16.7484 8.8433 16.8035C9.21914 16.8669 9.60567 16.9 10.0004 16.9C10.3951 16.9 10.7816 16.8669 11.1575 16.8035C11.4842 16.7484 11.7938 16.9686 11.8489 17.2953C11.9041 17.6221 11.6839 17.9316 11.3571 17.9868C10.9156 18.0613 10.4623 18.1 10.0004 18.1C9.5385 18.1 9.08519 18.0613 8.64365 17.9868C8.31689 17.9316 8.0967 17.6221 8.15184 17.2953Z",
|
|
2059
2044
|
fill: t
|
|
2060
2045
|
})
|
|
2061
|
-
}),
|
|
2046
|
+
}), nt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
2062
2047
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2063
2048
|
width: e,
|
|
2064
2049
|
height: e,
|
|
@@ -2068,7 +2053,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2068
2053
|
d: "M2.40039 15.4004V14.1543C2.40039 13.8229 2.66863 13.5537 3 13.5537C3.33137 13.5537 3.59961 13.8229 3.59961 14.1543V15.4004C3.59982 15.9524 4.04763 16.4002 4.59961 16.4004H5.8457C6.17707 16.4004 6.44629 16.6686 6.44629 17C6.44629 17.3314 6.17707 17.5996 5.8457 17.5996H4.59961C3.38489 17.5994 2.4006 16.6151 2.40039 15.4004ZM11.2461 16.4004C11.5775 16.4004 11.8457 16.6686 11.8457 17C11.8457 17.3314 11.5775 17.5996 11.2461 17.5996H8.75391C8.42254 17.5996 8.1543 17.3314 8.1543 17C8.1543 16.6686 8.42254 16.4004 8.75391 16.4004H11.2461ZM16.4004 15.4004V14.1543C16.4004 13.8229 16.6686 13.5537 17 13.5537C17.3314 13.5537 17.5996 13.8229 17.5996 14.1543V15.4004C17.5994 16.6151 16.6151 17.5994 15.4004 17.5996H14.1543C13.8229 17.5996 13.5537 17.3314 13.5537 17C13.5537 16.6686 13.8229 16.4004 14.1543 16.4004H15.4004C15.9524 16.4002 16.4002 15.9524 16.4004 15.4004ZM2.40039 11.2461V8.75391C2.40039 8.42254 2.66863 8.1543 3 8.1543C3.33137 8.1543 3.59961 8.42254 3.59961 8.75391V11.2461C3.59961 11.5775 3.33137 11.8457 3 11.8457C2.66863 11.8457 2.40039 11.5775 2.40039 11.2461ZM16.4004 11.2461V8.75391C16.4004 8.42254 16.6686 8.1543 17 8.1543C17.3314 8.1543 17.5996 8.42254 17.5996 8.75391V11.2461C17.5996 11.5775 17.3314 11.8457 17 11.8457C16.6686 11.8457 16.4004 11.5775 16.4004 11.2461ZM2.40039 5.8457V4.59961C2.4006 3.38489 3.38489 2.4006 4.59961 2.40039H5.8457C6.17707 2.40039 6.44629 2.66863 6.44629 3C6.44629 3.33137 6.17707 3.59961 5.8457 3.59961H4.59961C4.04763 3.59982 3.59982 4.04763 3.59961 4.59961V5.8457C3.59961 6.17707 3.33137 6.44629 3 6.44629C2.66863 6.44629 2.40039 6.17707 2.40039 5.8457ZM16.4004 5.8457V4.59961C16.4002 4.04763 15.9524 3.59982 15.4004 3.59961H14.1543C13.8229 3.59961 13.5537 3.33137 13.5537 3C13.5537 2.66863 13.8229 2.40039 14.1543 2.40039H15.4004C16.6151 2.4006 17.5994 3.38489 17.5996 4.59961V5.8457C17.5996 6.17707 17.3314 6.44629 17 6.44629C16.6686 6.44629 16.4004 6.17707 16.4004 5.8457ZM11.2461 2.40039C11.5775 2.40039 11.8457 2.66863 11.8457 3C11.8457 3.33137 11.5775 3.59961 11.2461 3.59961H8.75391C8.42254 3.59961 8.1543 3.33137 8.1543 3C8.1543 2.66863 8.42254 2.40039 8.75391 2.40039H11.2461Z",
|
|
2069
2054
|
fill: t
|
|
2070
2055
|
})
|
|
2071
|
-
}),
|
|
2056
|
+
}), rt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
2072
2057
|
width: e,
|
|
2073
2058
|
height: e,
|
|
2074
2059
|
viewBox: "0 0 20 20",
|
|
@@ -2102,7 +2087,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2102
2087
|
fill: t
|
|
2103
2088
|
})
|
|
2104
2089
|
]
|
|
2105
|
-
}),
|
|
2090
|
+
}), it = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
2106
2091
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2107
2092
|
width: e,
|
|
2108
2093
|
height: e,
|
|
@@ -2114,7 +2099,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2114
2099
|
d: "M12.3097 2.66604C12.5342 2.57304 12.7748 2.52518 13.0178 2.52518C13.2608 2.52518 13.5014 2.57304 13.7258 2.66604C13.9503 2.75903 14.1542 2.89532 14.326 3.06713M14.326 3.06713L17.558 6.29911C17.558 6.2991 17.558 6.29913 17.558 6.29911C17.7298 6.4709 17.8662 6.67489 17.9592 6.89935C18.0521 7.12383 18.1 7.36443 18.1 7.60741C18.1 7.85039 18.0521 8.09099 17.9592 8.31547C17.8662 8.53993 17.7299 8.74387 17.5581 8.91566C17.558 8.91567 17.5581 8.91564 17.5581 8.91566L10.1987 16.275H16.8752C17.2066 16.275 17.4752 16.5436 17.4752 16.875C17.4752 17.2064 17.2066 17.475 16.8752 17.475H5.21505C5.05592 17.475 4.9033 17.4118 4.79078 17.2993L2.44239 14.9509C2.44238 14.9508 2.44241 14.9509 2.44239 14.9509C2.27058 14.7791 2.13424 14.5751 2.04125 14.3506C1.94826 14.1261 1.90039 13.8855 1.90039 13.6426C1.90039 13.3996 1.94826 13.159 2.04125 12.9345C2.13425 12.71 2.27056 12.5061 2.44239 12.3343L11.7095 3.06718C11.8813 2.89534 12.0852 2.75904 12.3097 2.66604M8.50167 16.275L16.7095 8.06713C16.7699 8.00677 16.8178 7.93506 16.8505 7.85619C16.8832 7.77731 16.9 7.69278 16.9 7.60741C16.9 7.52204 16.8832 7.43751 16.8505 7.35863C16.8178 7.27976 16.77 7.2081 16.7096 7.14774L13.4775 3.91566C13.4171 3.85528 13.3454 3.80734 13.2666 3.77467C13.1877 3.74199 13.1032 3.72518 13.0178 3.72518C12.9324 3.72518 12.8479 3.74199 12.769 3.77467C12.6901 3.80734 12.6185 3.85524 12.5581 3.91561L3.29087 13.1828C3.2305 13.2432 3.18256 13.3149 3.14988 13.3938C3.11721 13.4727 3.10039 13.5572 3.10039 13.6426C3.10039 13.7279 3.11721 13.8125 3.14988 13.8913C3.18256 13.9702 3.23045 14.0419 3.29082 14.1022L5.46357 16.275H8.50167Z",
|
|
2115
2100
|
fill: t
|
|
2116
2101
|
})
|
|
2117
|
-
}),
|
|
2102
|
+
}), at = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2118
2103
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2119
2104
|
width: e,
|
|
2120
2105
|
height: e,
|
|
@@ -2169,7 +2154,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2169
2154
|
d: "M12.0004 1.89999C12.3318 1.89999 12.6004 2.16862 12.6004 2.49999V5.39999H15.5004C15.8318 5.39999 16.1004 5.66862 16.1004 5.99999C16.1004 6.33136 15.8318 6.59999 15.5004 6.59999H12.0004C11.669 6.59999 11.4004 6.33136 11.4004 5.99999V2.49999C11.4004 2.16862 11.669 1.89999 12.0004 1.89999Z",
|
|
2170
2155
|
fill: t
|
|
2171
2156
|
})]
|
|
2172
|
-
}),
|
|
2157
|
+
}), ot = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
2173
2158
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2174
2159
|
width: e,
|
|
2175
2160
|
height: e,
|
|
@@ -2181,7 +2166,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2181
2166
|
d: "M9.13581 9.83348C9.25228 10.0227 9.31395 10.2405 9.31395 10.4626V15.957L10.4896 14.6023C10.6159 14.4568 10.6854 14.2706 10.6854 14.0779V10.4643C10.6854 10.2421 10.7471 10.0243 10.8636 9.83514L14.6408 3.7L5.35958 3.7L9.13581 9.83348ZM11.8854 10.4643L15.8504 4.02428C16.2606 3.35802 15.7812 2.5 14.9988 2.5H5.00158C4.21916 2.5 3.73983 3.35802 4.15003 4.02428L8.11395 10.4626V16.4926C8.11395 17.418 9.26268 17.8469 9.86921 17.148L11.3959 15.3888C11.7116 15.025 11.8854 14.5596 11.8854 14.0779V10.4643Z",
|
|
2182
2167
|
fill: t
|
|
2183
2168
|
})
|
|
2184
|
-
}),
|
|
2169
|
+
}), st = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
2185
2170
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2186
2171
|
width: e,
|
|
2187
2172
|
height: e,
|
|
@@ -2191,7 +2176,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2191
2176
|
d: "M11.8854 10.4643L15.8504 4.02428C16.2606 3.35802 15.7812 2.5 14.9988 2.5H5.00158C4.21916 2.5 3.73983 3.35802 4.15003 4.02428L8.11395 10.4626V16.4926C8.11395 17.418 9.26268 17.8469 9.8692 17.148L11.3959 15.3888C11.7116 15.025 11.8854 14.5596 11.8854 14.0779V10.4643Z",
|
|
2192
2177
|
fill: t
|
|
2193
2178
|
})
|
|
2194
|
-
}),
|
|
2179
|
+
}), ct = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2195
2180
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2196
2181
|
width: e,
|
|
2197
2182
|
height: e,
|
|
@@ -2240,7 +2225,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2240
2225
|
d: "M1.90039 7.09999C1.90039 5.88497 2.88536 4.89999 4.10039 4.89999H15.9004C17.1151 4.89999 18.1004 5.88412 18.1004 7.09943V14.9C18.1004 16.115 17.1155 17.1 15.9005 17.1H4.10039C2.88536 17.1 1.90039 16.115 1.90039 14.9V7.09999ZM4.10039 6.09999C3.54811 6.09999 3.10039 6.54771 3.10039 7.09999V14.9C3.10039 15.4523 3.54811 15.9 4.10039 15.9H15.9005C16.4528 15.9 16.9004 15.4523 16.9004 14.9V7.09943C16.9004 6.54742 16.453 6.09999 15.9004 6.09999L4.10039 6.09999Z",
|
|
2241
2226
|
fill: t
|
|
2242
2227
|
})]
|
|
2243
|
-
}),
|
|
2228
|
+
}), lt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2244
2229
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2245
2230
|
width: e,
|
|
2246
2231
|
height: e,
|
|
@@ -2257,7 +2242,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2257
2242
|
d: "M3.13625 8.62275C3.35994 7.61616 4.25273 6.89999 5.28387 6.89999H16.7538C17.7774 6.89999 18.5377 7.84786 18.3157 8.84708L16.8645 15.3772C16.6408 16.3838 15.7481 17.1 14.7169 17.1H3.99498C2.58753 17.1 1.54205 15.7967 1.84736 14.4227L3.13625 8.62275ZM5.28387 8.09999C4.81517 8.09999 4.40935 8.42553 4.30768 8.88306L3.01879 14.6831C2.88001 15.3076 3.35523 15.9 3.99498 15.9H14.7169C15.1856 15.9 15.5914 15.5745 15.6931 15.1169L17.1442 8.58677C17.1998 8.33696 17.0097 8.09999 16.7538 8.09999H5.28387Z",
|
|
2258
2243
|
fill: t
|
|
2259
2244
|
})]
|
|
2260
|
-
}),
|
|
2245
|
+
}), ut = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2261
2246
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2262
2247
|
width: e,
|
|
2263
2248
|
height: e,
|
|
@@ -2283,7 +2268,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2283
2268
|
fill: t
|
|
2284
2269
|
})
|
|
2285
2270
|
]
|
|
2286
|
-
}),
|
|
2271
|
+
}), dt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
2287
2272
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2288
2273
|
width: e,
|
|
2289
2274
|
height: e,
|
|
@@ -2295,7 +2280,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2295
2280
|
d: "M3.7 3.7V16.3H16.3V3.7H3.7ZM3.5 2.5C2.94772 2.5 2.5 2.94772 2.5 3.5V16.5C2.5 17.0523 2.94772 17.5 3.5 17.5H16.5C17.0523 17.5 17.5 17.0523 17.5 16.5V3.5C17.5 2.94772 17.0523 2.5 16.5 2.5H3.5Z",
|
|
2296
2281
|
fill: t
|
|
2297
2282
|
})
|
|
2298
|
-
}),
|
|
2283
|
+
}), ft = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
2299
2284
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2300
2285
|
width: e,
|
|
2301
2286
|
height: e,
|
|
@@ -2307,7 +2292,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2307
2292
|
d: "M3.6 3.6V8.525H8.525V3.6H3.6ZM3.25 2.5C2.83579 2.5 2.5 2.83579 2.5 3.25V8.875C2.5 9.28921 2.83579 9.625 3.25 9.625H8.875C9.28921 9.625 9.625 9.28921 9.625 8.875V3.25C9.625 2.83579 9.28921 2.5 8.875 2.5H3.25ZM11.475 3.6V8.525H16.4V3.6H11.475ZM11.125 2.5C10.7108 2.5 10.375 2.83579 10.375 3.25V8.875C10.375 9.28921 10.7108 9.625 11.125 9.625H16.75C17.1642 9.625 17.5 9.28921 17.5 8.875V3.25C17.5 2.83579 17.1642 2.5 16.75 2.5H11.125ZM3.6 11.475V16.4H8.525V11.475H3.6ZM3.25 10.375C2.83579 10.375 2.5 10.7108 2.5 11.125V16.75C2.5 17.1642 2.83579 17.5 3.25 17.5H8.875C9.28921 17.5 9.625 17.1642 9.625 16.75V11.125C9.625 10.7108 9.28921 10.375 8.875 10.375H3.25ZM11.475 11.475V16.4H16.4V11.475H11.475ZM11.125 10.375C10.7108 10.375 10.375 10.7108 10.375 11.125V16.75C10.375 17.1642 10.7108 17.5 11.125 17.5H16.75C17.1642 17.5 17.5 17.1642 17.5 16.75V11.125C17.5 10.7108 17.1642 10.375 16.75 10.375H11.125Z",
|
|
2308
2293
|
fill: t
|
|
2309
2294
|
})
|
|
2310
|
-
}),
|
|
2295
|
+
}), pt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
2311
2296
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2312
2297
|
width: e,
|
|
2313
2298
|
height: e,
|
|
@@ -2319,7 +2304,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2319
2304
|
d: "M3.5 3.5V6H6V3.5H3.5ZM3 2.5C2.72386 2.5 2.5 2.72386 2.5 3V6.5C2.5 6.77614 2.72386 7 3 7H6.5C6.77614 7 7 6.77614 7 6.5V3C7 2.72386 6.77614 2.5 6.5 2.5H3ZM8.75 3.5V6H11.25V3.5H8.75ZM8.25 2.5C7.97386 2.5 7.75 2.72386 7.75 3V6.5C7.75 6.77614 7.97386 7 8.25 7H11.75C12.0261 7 12.25 6.77614 12.25 6.5V3C12.25 2.72386 12.0261 2.5 11.75 2.5H8.25ZM14 6V3.5H16.5V6H14ZM13 3C13 2.72386 13.2239 2.5 13.5 2.5H17C17.2761 2.5 17.5 2.72386 17.5 3V6.5C17.5 6.77614 17.2761 7 17 7H13.5C13.2239 7 13 6.77614 13 6.5V3ZM3.5 8.7V11.2H6V8.7H3.5ZM3 7.7C2.72386 7.7 2.5 7.92386 2.5 8.2V11.7C2.5 11.9761 2.72386 12.2 3 12.2H6.5C6.77614 12.2 7 11.9761 7 11.7V8.2C7 7.92386 6.77614 7.7 6.5 7.7H3ZM8.75 8.7V11.2H11.25V8.7H8.75ZM8.25 7.7C7.97386 7.7 7.75 7.92386 7.75 8.2V11.7C7.75 11.9761 7.97386 12.2 8.25 12.2H11.75C12.0261 12.2 12.25 11.9761 12.25 11.7V8.2C12.25 7.92386 12.0261 7.7 11.75 7.7H8.25ZM14 11.2V8.7H16.5V11.2H14ZM13 8.2C13 7.92386 13.2239 7.7 13.5 7.7H17C17.2761 7.7 17.5 7.92386 17.5 8.2V11.7C17.5 11.9761 17.2761 12.2 17 12.2H13.5C13.2239 12.2 13 11.9761 13 11.7V8.2ZM3.5 16.4V13.9H6V16.4H3.5ZM2.5 13.4C2.5 13.1239 2.72386 12.9 3 12.9H6.5C6.77614 12.9 7 13.1239 7 13.4V16.9C7 17.1761 6.77614 17.4 6.5 17.4H3C2.72386 17.4 2.5 17.1761 2.5 16.9V13.4ZM8.75 16.4V13.9H11.25V16.4H8.75ZM7.75 13.4C7.75 13.1239 7.97386 12.9 8.25 12.9H11.75C12.0261 12.9 12.25 13.1239 12.25 13.4V16.9C12.25 17.1761 12.0261 17.4 11.75 17.4H8.25C7.97386 17.4 7.75 17.1761 7.75 16.9V13.4ZM14 13.9V16.4H16.5V13.9H14ZM13.5 12.9C13.2239 12.9 13 13.1239 13 13.4V16.9C13 17.1761 13.2239 17.4 13.5 17.4H17C17.2761 17.4 17.5 17.1761 17.5 16.9V13.4C17.5 13.1239 17.2761 12.9 17 12.9H13.5Z",
|
|
2320
2305
|
fill: t
|
|
2321
2306
|
})
|
|
2322
|
-
}),
|
|
2307
|
+
}), mt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2323
2308
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2324
2309
|
width: e,
|
|
2325
2310
|
height: e,
|
|
@@ -2357,7 +2342,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2357
2342
|
fill: t
|
|
2358
2343
|
})
|
|
2359
2344
|
]
|
|
2360
|
-
}),
|
|
2345
|
+
}), ht = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2361
2346
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2362
2347
|
width: e,
|
|
2363
2348
|
height: e,
|
|
@@ -2374,7 +2359,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2374
2359
|
d: "M17.9519 7.10489C18.1702 7.35427 18.1449 7.73333 17.8955 7.95154L12.8955 12.3265C12.6821 12.5132 12.3672 12.5251 12.1404 12.355L7.52948 8.89681L2.8955 12.9515C2.64612 13.1697 2.26706 13.1445 2.04885 12.8951C1.83064 12.6457 1.85591 12.2667 2.1053 12.0484L7.1053 7.67345C7.31866 7.48675 7.63359 7.47489 7.8604 7.64499L12.4713 11.1032L17.1053 7.04845C17.3547 6.83024 17.7337 6.85551 17.9519 7.10489Z",
|
|
2375
2360
|
fill: t
|
|
2376
2361
|
})]
|
|
2377
|
-
}),
|
|
2362
|
+
}), gt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2378
2363
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2379
2364
|
width: e,
|
|
2380
2365
|
height: e,
|
|
@@ -2412,7 +2397,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2412
2397
|
fill: t
|
|
2413
2398
|
})
|
|
2414
2399
|
]
|
|
2415
|
-
}),
|
|
2400
|
+
}), _t = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2416
2401
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2417
2402
|
width: e,
|
|
2418
2403
|
height: e,
|
|
@@ -2429,7 +2414,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2429
2414
|
d: "M9.57569 2.0757C9.68823 1.96317 9.84087 1.89997 10 1.89999C11.4192 1.90021 12.8133 2.27327 14.043 2.98181C15.2726 3.69036 16.2944 4.70953 17.0062 5.93726C17.718 7.16498 18.0948 8.55817 18.0988 9.97732C18.1027 11.3965 17.7338 12.7917 17.0289 14.0234C16.324 15.2551 15.3078 16.28 14.0822 16.9954C12.8566 17.7108 11.4645 18.0917 10.0454 18.0999C8.62625 18.108 7.22989 17.7432 5.99612 17.0419C4.76235 16.3406 3.73449 15.3275 3.01545 14.104C2.93462 13.9665 2.9119 13.8024 2.95229 13.6481C2.99269 13.4937 3.09289 13.3618 3.23073 13.2815L9.39993 9.68794V2.49999C9.39993 2.34085 9.46315 2.18822 9.57569 2.0757ZM10.5999 3.12623V10.0328C10.5999 10.2463 10.4864 10.4438 10.3019 10.5513L4.37796 14.002C4.95941 14.8187 5.71337 15.5009 6.58911 15.9987C7.64009 16.5961 8.82959 16.9068 10.0385 16.8999C11.2474 16.8929 12.4332 16.5685 13.4772 15.9591C14.5213 15.3496 15.3869 14.4766 15.9874 13.4274C16.5879 12.3781 16.9022 11.1896 16.8988 9.98068C16.8954 8.77178 16.5745 7.58499 15.9681 6.53914C15.3617 5.4933 14.4913 4.62512 13.4438 4.02155C12.5704 3.51822 11.5994 3.21363 10.5999 3.12623Z",
|
|
2430
2415
|
fill: t
|
|
2431
2416
|
})]
|
|
2432
|
-
}),
|
|
2417
|
+
}), vt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2433
2418
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2434
2419
|
width: e,
|
|
2435
2420
|
height: e,
|
|
@@ -2455,7 +2440,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2455
2440
|
fill: t
|
|
2456
2441
|
})
|
|
2457
2442
|
]
|
|
2458
|
-
}),
|
|
2443
|
+
}), yt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2459
2444
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2460
2445
|
width: e,
|
|
2461
2446
|
height: e,
|
|
@@ -2485,7 +2470,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2485
2470
|
fill: t
|
|
2486
2471
|
})
|
|
2487
2472
|
]
|
|
2488
|
-
}),
|
|
2473
|
+
}), bt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2489
2474
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2490
2475
|
width: e,
|
|
2491
2476
|
height: e,
|
|
@@ -2502,7 +2487,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2502
2487
|
d: "M1 9.9C1 9.56863 1.26863 9.3 1.6 9.3H2.72C3.05137 9.3 3.32 9.56863 3.32 9.9C3.32 10.2314 3.05137 10.5 2.72 10.5H1.6C1.26863 10.5 1 10.2314 1 9.9ZM5.48 9.9C5.48 9.56863 5.74863 9.3 6.08 9.3H8.32C8.65137 9.3 8.92 9.56863 8.92 9.9C8.92 10.2314 8.65137 10.5 8.32 10.5H6.08C5.74863 10.5 5.48 10.2314 5.48 9.9ZM11.08 9.9C11.08 9.56863 11.3486 9.3 11.68 9.3H13.92C14.2514 9.3 14.52 9.56863 14.52 9.9C14.52 10.2314 14.2514 10.5 13.92 10.5H11.68C11.3486 10.5 11.08 10.2314 11.08 9.9ZM16.68 9.9C16.68 9.56863 16.9486 9.3 17.28 9.3H18.4C18.7314 9.3 19 9.56863 19 9.9C19 10.2314 18.7314 10.5 18.4 10.5H17.28C16.9486 10.5 16.68 10.2314 16.68 9.9Z",
|
|
2503
2488
|
fill: t
|
|
2504
2489
|
})]
|
|
2505
|
-
}),
|
|
2490
|
+
}), xt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2506
2491
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2507
2492
|
width: e,
|
|
2508
2493
|
height: e,
|
|
@@ -2528,7 +2513,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2528
2513
|
fill: t
|
|
2529
2514
|
})
|
|
2530
2515
|
]
|
|
2531
|
-
}),
|
|
2516
|
+
}), St = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
2532
2517
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2533
2518
|
width: e,
|
|
2534
2519
|
height: e,
|
|
@@ -2540,7 +2525,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2540
2525
|
d: "M10.3629 3.49998C10.0868 3.49998 9.86294 3.72384 9.86294 3.99998V8.99998C9.86294 9.27613 9.63908 9.49998 9.36294 9.49998C9.08679 9.49998 8.86294 9.27613 8.86294 8.99998V5.05881C8.86294 4.78267 8.63908 4.55881 8.36294 4.55881C8.08679 4.55881 7.86294 4.78267 7.86294 5.05881V11.0588C7.86294 11.2762 7.72251 11.4686 7.51552 11.535C7.30854 11.6013 7.0824 11.5263 6.95607 11.3494L5.92109 9.90047C5.54889 9.37939 4.74272 9.50062 4.54022 10.1081C4.46223 10.3421 4.49895 10.5991 4.63932 10.8019L7.26242 14.5908C8.11573 15.8233 9.51945 16.5588 11.0186 16.5588C13.1417 16.5588 14.8629 14.8376 14.8629 12.7144V5.58822C14.8629 5.31208 14.6391 5.08822 14.3629 5.08822C14.0868 5.08822 13.8629 5.31208 13.8629 5.58822V9.38234C13.8629 9.65848 13.6391 9.88234 13.3629 9.88234C13.0868 9.88234 12.8629 9.65848 12.8629 9.38234V4.49998C12.8629 4.22384 12.6391 3.99998 12.3629 3.99998C12.0868 3.99998 11.8629 4.22384 11.8629 4.49998V8.99998C11.8629 9.27613 11.6391 9.49998 11.3629 9.49998C11.0868 9.49998 10.8629 9.27613 10.8629 8.99998V3.99998C10.8629 3.72384 10.6391 3.49998 10.3629 3.49998ZM11.6273 3.19248C11.3607 2.77603 10.8941 2.49998 10.3629 2.49998C9.65195 2.49998 9.05651 2.99464 8.90196 3.65857C8.73468 3.59413 8.55293 3.55881 8.36294 3.55881C7.53451 3.55881 6.86294 4.23038 6.86294 5.05881V9.49859L6.73483 9.31923C5.88759 8.1331 4.05248 8.40904 3.59153 9.79188C3.41401 10.3244 3.49759 10.9095 3.81713 11.3711L6.44023 15.16C7.48032 16.6623 9.1913 17.5588 11.0186 17.5588C13.694 17.5588 15.8629 15.3899 15.8629 12.7144V5.58822C15.8629 4.75979 15.1914 4.08822 14.3629 4.08822C14.1752 4.08822 13.9956 4.1227 13.83 4.18567C13.6855 3.50814 13.0836 2.99998 12.3629 2.99998C12.0956 2.99998 11.8446 3.06991 11.6273 3.19248Z",
|
|
2541
2526
|
fill: t
|
|
2542
2527
|
})
|
|
2543
|
-
}),
|
|
2528
|
+
}), Ct = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2544
2529
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2545
2530
|
width: e,
|
|
2546
2531
|
height: e,
|
|
@@ -2564,7 +2549,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2564
2549
|
fill: t
|
|
2565
2550
|
})
|
|
2566
2551
|
]
|
|
2567
|
-
}),
|
|
2552
|
+
}), wt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
2568
2553
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2569
2554
|
width: e,
|
|
2570
2555
|
height: e,
|
|
@@ -2577,7 +2562,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2577
2562
|
strokeLinecap: "round",
|
|
2578
2563
|
strokeLinejoin: "round"
|
|
2579
2564
|
})
|
|
2580
|
-
}),
|
|
2565
|
+
}), Tt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2581
2566
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2582
2567
|
width: e,
|
|
2583
2568
|
height: e,
|
|
@@ -2609,7 +2594,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2609
2594
|
fill: t
|
|
2610
2595
|
})
|
|
2611
2596
|
]
|
|
2612
|
-
}),
|
|
2597
|
+
}), Et = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2613
2598
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2614
2599
|
width: e,
|
|
2615
2600
|
height: e,
|
|
@@ -2635,7 +2620,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2635
2620
|
fill: t
|
|
2636
2621
|
})
|
|
2637
2622
|
]
|
|
2638
|
-
}),
|
|
2623
|
+
}), Dt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2639
2624
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2640
2625
|
width: e,
|
|
2641
2626
|
height: e,
|
|
@@ -2665,7 +2650,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2665
2650
|
fill: t
|
|
2666
2651
|
})
|
|
2667
2652
|
]
|
|
2668
|
-
}),
|
|
2653
|
+
}), Ot = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2669
2654
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2670
2655
|
width: e,
|
|
2671
2656
|
height: e,
|
|
@@ -2691,7 +2676,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2691
2676
|
fill: t
|
|
2692
2677
|
})
|
|
2693
2678
|
]
|
|
2694
|
-
}),
|
|
2679
|
+
}), kt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2695
2680
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2696
2681
|
width: e,
|
|
2697
2682
|
height: e,
|
|
@@ -2741,7 +2726,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2741
2726
|
fill: t
|
|
2742
2727
|
})
|
|
2743
2728
|
]
|
|
2744
|
-
}),
|
|
2729
|
+
}), At = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2745
2730
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2746
2731
|
width: e,
|
|
2747
2732
|
height: e,
|
|
@@ -2761,7 +2746,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2761
2746
|
fill: t
|
|
2762
2747
|
})
|
|
2763
2748
|
]
|
|
2764
|
-
}),
|
|
2749
|
+
}), jt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2765
2750
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2766
2751
|
width: e,
|
|
2767
2752
|
height: e,
|
|
@@ -2805,7 +2790,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2805
2790
|
fill: t
|
|
2806
2791
|
})
|
|
2807
2792
|
]
|
|
2808
|
-
}),
|
|
2793
|
+
}), Mt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2809
2794
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2810
2795
|
width: e,
|
|
2811
2796
|
height: e,
|
|
@@ -2831,7 +2816,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2831
2816
|
fill: t
|
|
2832
2817
|
})
|
|
2833
2818
|
]
|
|
2834
|
-
}),
|
|
2819
|
+
}), Nt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2835
2820
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2836
2821
|
width: e,
|
|
2837
2822
|
height: e,
|
|
@@ -2857,7 +2842,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2857
2842
|
fill: t
|
|
2858
2843
|
})
|
|
2859
2844
|
]
|
|
2860
|
-
}),
|
|
2845
|
+
}), Pt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2861
2846
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2862
2847
|
width: e,
|
|
2863
2848
|
height: e,
|
|
@@ -2889,7 +2874,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2889
2874
|
fill: t
|
|
2890
2875
|
})
|
|
2891
2876
|
]
|
|
2892
|
-
}),
|
|
2877
|
+
}), Ft = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2893
2878
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2894
2879
|
width: e,
|
|
2895
2880
|
height: e,
|
|
@@ -2933,7 +2918,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2933
2918
|
fill: t
|
|
2934
2919
|
})
|
|
2935
2920
|
]
|
|
2936
|
-
}),
|
|
2921
|
+
}), It = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
2937
2922
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2938
2923
|
width: e,
|
|
2939
2924
|
height: e,
|
|
@@ -2945,7 +2930,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2945
2930
|
d: "M15.7242 4.27575C15.9585 4.51006 15.9585 4.88996 15.7242 5.12428L5.11757 15.7309C4.88326 15.9652 4.50336 15.9652 4.26904 15.7309C4.03473 15.4966 4.03473 15.1167 4.26904 14.8823L14.8756 4.27575C15.11 4.04143 15.4899 4.04143 15.7242 4.27575Z",
|
|
2946
2931
|
fill: t
|
|
2947
2932
|
})
|
|
2948
|
-
}),
|
|
2933
|
+
}), Lt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2949
2934
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2950
2935
|
width: e,
|
|
2951
2936
|
height: e,
|
|
@@ -2962,7 +2947,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2962
2947
|
d: "M5.79956 16.3C6.19914 16.3 6.5948 16.2213 6.96395 16.0683C7.33311 15.9154 7.66851 15.6912 7.95102 15.4087L8.81045 14.5492C9.04477 14.3149 9.42466 14.3149 9.65898 14.5492C9.89329 14.7835 9.89329 15.1634 9.65898 15.3978L8.79966 16.2571C8.40574 16.6511 7.93799 16.9637 7.42325 17.177C6.90849 17.3902 6.35675 17.5 5.79956 17.5C5.24236 17.5 4.69063 17.3902 4.17587 17.177C3.66116 16.9637 3.19349 16.6512 2.79957 16.2572C2.40552 15.8632 2.09294 15.3955 1.87967 14.8808C1.66641 14.366 1.55664 13.8143 1.55664 13.2571C1.55664 12.6999 1.66641 12.1482 1.87967 11.6334C2.09294 11.1186 2.40552 10.6509 2.79958 10.257L5.51198 7.54457C5.90636 7.15013 6.37468 6.8373 6.89007 6.62402C7.40547 6.41073 7.95788 6.30117 8.51567 6.30159C9.07346 6.30202 9.6257 6.41242 10.1408 6.62648C10.6557 6.84048 11.1234 7.15387 11.5171 7.54874C11.9247 7.9563 12.2447 8.44285 12.4576 8.97854C12.5799 9.28649 12.4295 9.63532 12.1215 9.75768C11.8136 9.88003 11.4647 9.72957 11.3424 9.42162C11.1899 9.03774 10.9605 8.68908 10.6683 8.39705L10.6676 8.39629C10.3852 8.11297 10.0497 7.88812 9.68025 7.73459C9.31085 7.58107 8.9148 7.50189 8.51476 7.50159C8.11472 7.50129 7.71855 7.57987 7.34891 7.73283C6.97927 7.88579 6.64342 8.11014 6.36058 8.39303L3.64804 11.1056C3.36546 11.3881 3.14123 11.7235 2.9883 12.0927C2.83536 12.4618 2.75664 12.8575 2.75664 13.2571C2.75664 13.6567 2.83536 14.0523 2.9883 14.4215C3.14123 14.7906 3.3654 15.126 3.64798 15.4085C3.93049 15.6911 4.26601 15.9154 4.63517 16.0683C5.00432 16.2213 5.39998 16.3 5.79956 16.3Z",
|
|
2963
2948
|
fill: t
|
|
2964
2949
|
})]
|
|
2965
|
-
}),
|
|
2950
|
+
}), Rt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2966
2951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2967
2952
|
width: e,
|
|
2968
2953
|
height: e,
|
|
@@ -2979,7 +2964,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
2979
2964
|
d: "M5.2 8.99999C4.53726 8.99999 4 9.53725 4 10.2V16.8C4 17.4627 4.53726 18 5.2 18H14.8C15.4627 18 16 17.4627 16 16.8V10.2C16 9.53725 15.4627 8.99999 14.8 8.99999H5.2Z",
|
|
2980
2965
|
fill: t
|
|
2981
2966
|
})]
|
|
2982
|
-
}),
|
|
2967
|
+
}), zt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
2983
2968
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2984
2969
|
width: e,
|
|
2985
2970
|
height: e,
|
|
@@ -3005,7 +2990,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3005
2990
|
fill: t
|
|
3006
2991
|
})
|
|
3007
2992
|
]
|
|
3008
|
-
}),
|
|
2993
|
+
}), Bt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3009
2994
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3010
2995
|
width: e,
|
|
3011
2996
|
height: e,
|
|
@@ -3031,7 +3016,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3031
3016
|
fill: t
|
|
3032
3017
|
})
|
|
3033
3018
|
]
|
|
3034
|
-
}),
|
|
3019
|
+
}), Vt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3035
3020
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3036
3021
|
width: e,
|
|
3037
3022
|
height: e,
|
|
@@ -3048,7 +3033,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3048
3033
|
d: "M2.47905 6.70232C2.64346 6.41461 3.00997 6.31465 3.29768 6.47905L9.30541 9.91204C9.73581 10.158 10.2642 10.158 10.6946 9.91204L16.7023 6.47905C16.99 6.31465 17.3565 6.41461 17.5209 6.70232C17.6854 6.99003 17.5854 7.35654 17.2977 7.52095L11.29 10.9539C10.4906 11.4107 9.50936 11.4107 8.71004 10.9539L2.70232 7.52095C2.41461 7.35654 2.31465 6.99003 2.47905 6.70232Z",
|
|
3049
3034
|
fill: t
|
|
3050
3035
|
})]
|
|
3051
|
-
}),
|
|
3036
|
+
}), Ht = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3052
3037
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3053
3038
|
width: e,
|
|
3054
3039
|
height: e,
|
|
@@ -3074,7 +3059,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3074
3059
|
fill: t
|
|
3075
3060
|
})
|
|
3076
3061
|
]
|
|
3077
|
-
}),
|
|
3062
|
+
}), Ut = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3078
3063
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3079
3064
|
width: e,
|
|
3080
3065
|
height: e,
|
|
@@ -3091,7 +3076,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3091
3076
|
d: "M10.0004 3.09999C8.56079 3.09999 7.18467 3.6501 6.17362 4.62226C5.16336 5.59366 4.60039 6.90602 4.60039 8.26922C4.60039 10.641 5.97894 12.8077 7.4454 14.4293C8.17029 15.2308 8.8969 15.8773 9.44259 16.3233C9.66284 16.5033 9.85285 16.65 10.0004 16.7605C10.1479 16.65 10.3379 16.5033 10.5582 16.3233C11.1039 15.8773 11.8305 15.2308 12.5554 14.4293C14.0218 12.8077 15.4004 10.641 15.4004 8.26922C15.4004 6.90602 14.8374 5.59366 13.8272 4.62226C12.8161 3.6501 11.44 3.09999 10.0004 3.09999ZM10.0004 17.5C9.66536 17.9977 9.66501 17.9975 9.66501 17.9975L9.66311 17.9962L9.65867 17.9932L9.64342 17.9828C9.63496 17.977 9.62415 17.9695 9.6111 17.9604C9.60413 17.9556 9.59653 17.9502 9.5883 17.9445C9.54098 17.9113 9.47299 17.8628 9.38727 17.7998C9.21589 17.6739 8.97329 17.4895 8.68319 17.2524C8.10388 16.779 7.33049 16.0913 6.55538 15.2342C5.02185 13.5384 3.40039 11.0897 3.40039 8.26922C3.40039 6.57224 4.1017 4.94975 5.34188 3.75726C6.58127 2.56555 8.25739 1.89999 10.0004 1.89999C11.7434 1.89999 13.4195 2.56555 14.6589 3.75726C15.8991 4.94975 16.6004 6.57224 16.6004 8.26922C16.6004 11.0897 14.9789 13.5384 13.4454 15.2342C12.6703 16.0913 11.8969 16.779 11.3176 17.2524C11.0275 17.4895 10.7849 17.6739 10.6135 17.7998C10.5278 17.8628 10.4598 17.9113 10.4125 17.9445C10.3888 17.9611 10.3703 17.9739 10.3574 17.9828L10.3421 17.9932L10.3377 17.9962L10.3363 17.9972C10.3363 17.9972 10.3354 17.9977 10.0004 17.5ZM10.0004 17.5L10.3354 17.9977C10.1329 18.1341 9.86755 18.1338 9.66501 17.9975L10.0004 17.5Z",
|
|
3092
3077
|
fill: t
|
|
3093
3078
|
})]
|
|
3094
|
-
}),
|
|
3079
|
+
}), Wt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3095
3080
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3096
3081
|
width: e,
|
|
3097
3082
|
height: e,
|
|
@@ -3111,7 +3096,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3111
3096
|
fill: t
|
|
3112
3097
|
})
|
|
3113
3098
|
]
|
|
3114
|
-
}),
|
|
3099
|
+
}), Gt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
3115
3100
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3116
3101
|
width: e,
|
|
3117
3102
|
height: e,
|
|
@@ -3123,7 +3108,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3123
3108
|
d: "M17.1504 10C17.1504 10.359 16.8594 10.65 16.5004 10.65L3.50039 10.65C3.14141 10.65 2.85039 10.359 2.85039 10C2.85039 9.64102 3.14141 9.35001 3.50039 9.35001L16.5004 9.35001C16.8594 9.35001 17.1504 9.64102 17.1504 10Z",
|
|
3124
3109
|
fill: t
|
|
3125
3110
|
})
|
|
3126
|
-
}),
|
|
3111
|
+
}), Kt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3127
3112
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3128
3113
|
width: e,
|
|
3129
3114
|
height: e,
|
|
@@ -3140,7 +3125,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3140
3125
|
d: "M10.0004 3.09999C6.18963 3.09999 3.10039 6.18923 3.10039 9.99999C3.10039 13.8108 6.18963 16.9 10.0004 16.9C13.8112 16.9 16.9004 13.8108 16.9004 9.99999C16.9004 6.18923 13.8112 3.09999 10.0004 3.09999ZM1.90039 9.99999C1.90039 5.52649 5.52688 1.89999 10.0004 1.89999C14.4739 1.89999 18.1004 5.52649 18.1004 9.99999C18.1004 14.4735 14.4739 18.1 10.0004 18.1C5.52688 18.1 1.90039 14.4735 1.90039 9.99999Z",
|
|
3141
3126
|
fill: t
|
|
3142
3127
|
})]
|
|
3143
|
-
}),
|
|
3128
|
+
}), qt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3144
3129
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3145
3130
|
width: e,
|
|
3146
3131
|
height: e,
|
|
@@ -3206,7 +3191,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3206
3191
|
fill: t
|
|
3207
3192
|
})
|
|
3208
3193
|
]
|
|
3209
|
-
}),
|
|
3194
|
+
}), Jt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3210
3195
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3211
3196
|
width: e,
|
|
3212
3197
|
height: e,
|
|
@@ -3230,7 +3215,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3230
3215
|
fill: t
|
|
3231
3216
|
})
|
|
3232
3217
|
]
|
|
3233
|
-
}),
|
|
3218
|
+
}), Yt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3234
3219
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3235
3220
|
width: e,
|
|
3236
3221
|
height: e,
|
|
@@ -3254,7 +3239,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3254
3239
|
fill: t
|
|
3255
3240
|
})
|
|
3256
3241
|
]
|
|
3257
|
-
}),
|
|
3242
|
+
}), Xt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
3258
3243
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3259
3244
|
width: e,
|
|
3260
3245
|
height: e,
|
|
@@ -3264,7 +3249,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3264
3249
|
d: "M5.83301 16.2148V3.78892C5.83301 3.3888 6.32586 3.18318 6.62044 3.46104L15.6901 11.9691C15.9903 12.2525 15.7864 12.7527 15.3672 12.7527H10.484L6.63177 16.5315C6.33719 16.8205 5.83867 16.6149 5.83867 16.2092L5.83301 16.2148Z",
|
|
3265
3250
|
fill: t
|
|
3266
3251
|
})
|
|
3267
|
-
}),
|
|
3252
|
+
}), Zt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3268
3253
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3269
3254
|
width: e,
|
|
3270
3255
|
height: e,
|
|
@@ -3326,7 +3311,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3326
3311
|
fill: t
|
|
3327
3312
|
})
|
|
3328
3313
|
]
|
|
3329
|
-
}),
|
|
3314
|
+
}), Qt = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3330
3315
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3331
3316
|
width: e,
|
|
3332
3317
|
height: e,
|
|
@@ -3358,7 +3343,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3358
3343
|
fill: t
|
|
3359
3344
|
})
|
|
3360
3345
|
]
|
|
3361
|
-
}),
|
|
3346
|
+
}), $t = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3362
3347
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3363
3348
|
width: e,
|
|
3364
3349
|
height: e,
|
|
@@ -3384,7 +3369,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3384
3369
|
fill: t
|
|
3385
3370
|
})
|
|
3386
3371
|
]
|
|
3387
|
-
}),
|
|
3372
|
+
}), en = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3388
3373
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3389
3374
|
width: e,
|
|
3390
3375
|
height: e,
|
|
@@ -3399,7 +3384,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3399
3384
|
d: "M10.0002 13C11.657 13 13.0002 11.6568 13.0002 9.99999C13.0002 8.34314 11.657 6.99999 10.0002 6.99999C8.34333 6.99999 7.00018 8.34314 7.00018 9.99999C7.00018 11.6568 8.34333 13 10.0002 13Z",
|
|
3400
3385
|
fill: t
|
|
3401
3386
|
})]
|
|
3402
|
-
}),
|
|
3387
|
+
}), tn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3403
3388
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3404
3389
|
width: e,
|
|
3405
3390
|
height: e,
|
|
@@ -3440,7 +3425,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3440
3425
|
fill: t
|
|
3441
3426
|
})
|
|
3442
3427
|
]
|
|
3443
|
-
}),
|
|
3428
|
+
}), nn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3444
3429
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3445
3430
|
width: e,
|
|
3446
3431
|
height: e,
|
|
@@ -3457,7 +3442,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3457
3442
|
d: "M12 3C11.4477 3 11 3.44772 11 4V16C11 16.5523 11.4477 17 12 17H14C14.5523 17 15 16.5523 15 16V4C15 3.44772 14.5523 3 14 3H12Z",
|
|
3458
3443
|
fill: t
|
|
3459
3444
|
})]
|
|
3460
|
-
}),
|
|
3445
|
+
}), rn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3461
3446
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3462
3447
|
width: e,
|
|
3463
3448
|
height: e,
|
|
@@ -3483,7 +3468,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3483
3468
|
fill: t
|
|
3484
3469
|
})
|
|
3485
3470
|
]
|
|
3486
|
-
}),
|
|
3471
|
+
}), an = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
3487
3472
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3488
3473
|
width: e,
|
|
3489
3474
|
height: e,
|
|
@@ -3495,7 +3480,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3495
3480
|
d: "M11.0249 4.52371L15.4756 8.97444C15.7113 9.21011 16.0706 9.23303 16.2782 9.02563L17.5296 7.77509C17.7372 7.56769 17.7144 7.2085 17.4787 6.97283L13.028 2.5221C12.7923 2.28643 12.433 2.26351 12.2254 2.47091L10.974 3.72145C10.7664 3.92885 10.7892 4.28804 11.0249 4.52371ZM14.8376 9.31325L14.832 9.30748L12.7657 7.24118L10.6936 5.16916C10.4703 4.94586 10.1157 4.94586 9.87929 5.15602C7.70547 7.11311 5.32807 7.6188 4.38893 7.74358C4.13936 7.77642 3.94234 7.97344 3.89637 8.22301L2.38745 16.6455C2.28511 17.2168 2.78342 17.7151 3.35467 17.6128L11.7773 16.1039C12.0268 16.0645 12.2239 15.8675 12.2567 15.6114C12.3815 14.6722 12.8872 12.2948 14.8443 10.121C15.0523 9.88688 15.0544 9.53688 14.8376 9.31325ZM4.97246 8.8323L3.80031 15.375L7.55558 11.6197C7.51945 11.5029 7.5 11.3787 7.5 11.25C7.5 10.5597 8.05964 10 8.75 10C9.44036 10 10 10.5597 10 11.25C10 11.9404 9.44036 12.5 8.75 12.5C8.62143 12.5 8.49739 12.4806 8.38066 12.4445L4.62532 16.1999L11.168 15.0278C11.3792 13.8622 11.9731 11.7645 13.6249 9.75033L11.9407 8.06614L10.2499 6.37538C8.23574 8.02714 6.13812 8.62105 4.97246 8.8323Z",
|
|
3496
3481
|
fill: t
|
|
3497
3482
|
})
|
|
3498
|
-
}),
|
|
3483
|
+
}), on = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3499
3484
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3500
3485
|
width: e,
|
|
3501
3486
|
height: e,
|
|
@@ -3512,7 +3497,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3512
3497
|
d: "M10.2011 4.57573C10.4354 4.34142 10.8153 4.34142 11.0497 4.57573L15.4247 8.95073C15.659 9.18504 15.659 9.56494 15.4247 9.79926C15.1903 10.0336 14.8104 10.0336 14.5761 9.79926L10.2011 5.42426C9.96681 5.18994 9.96681 4.81004 10.2011 4.57573Z",
|
|
3513
3498
|
fill: t
|
|
3514
3499
|
})]
|
|
3515
|
-
}),
|
|
3500
|
+
}), sn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3516
3501
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3517
3502
|
width: e,
|
|
3518
3503
|
height: e,
|
|
@@ -3536,7 +3521,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3536
3521
|
fill: t
|
|
3537
3522
|
})
|
|
3538
3523
|
]
|
|
3539
|
-
}),
|
|
3524
|
+
}), cn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3540
3525
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3541
3526
|
width: e,
|
|
3542
3527
|
height: e,
|
|
@@ -3672,7 +3657,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3672
3657
|
fill: t
|
|
3673
3658
|
})
|
|
3674
3659
|
]
|
|
3675
|
-
}),
|
|
3660
|
+
}), ln = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
3676
3661
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3677
3662
|
width: e,
|
|
3678
3663
|
height: e,
|
|
@@ -3684,7 +3669,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3684
3669
|
stroke: t,
|
|
3685
3670
|
strokeWidth: "1.2"
|
|
3686
3671
|
})
|
|
3687
|
-
}),
|
|
3672
|
+
}), un = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3688
3673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3689
3674
|
width: e,
|
|
3690
3675
|
height: e,
|
|
@@ -3699,7 +3684,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3699
3684
|
d: "M10.0004 3.09999C6.18963 3.09999 3.10039 6.18923 3.10039 9.99999C3.10039 13.8108 6.18963 16.9 10.0004 16.9C13.8112 16.9 16.9004 13.8108 16.9004 9.99999C16.9004 6.18923 13.8112 3.09999 10.0004 3.09999ZM1.90039 9.99999C1.90039 5.52649 5.52688 1.89999 10.0004 1.89999C14.4739 1.89999 18.1004 5.52649 18.1004 9.99999C18.1004 14.4735 14.4739 18.1 10.0004 18.1C5.52688 18.1 1.90039 14.4735 1.90039 9.99999Z",
|
|
3700
3685
|
fill: t
|
|
3701
3686
|
})]
|
|
3702
|
-
}),
|
|
3687
|
+
}), dn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
3703
3688
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3704
3689
|
width: e,
|
|
3705
3690
|
height: e,
|
|
@@ -3711,7 +3696,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3711
3696
|
d: "M10.6498 3.50001C10.6498 3.14102 10.3588 2.85001 9.9998 2.85001C9.64082 2.85001 9.3498 3.14102 9.3498 3.50001V9.35001L3.50059 9.35001C3.1416 9.35001 2.85059 9.64102 2.85059 10C2.85059 10.359 3.1416 10.65 3.50059 10.65H9.3498V16.5C9.3498 16.859 9.64082 17.15 9.9998 17.15C10.3588 17.15 10.6498 16.859 10.6498 16.5V10.65H16.5006C16.8596 10.65 17.1506 10.359 17.1506 10C17.1506 9.64102 16.8596 9.35001 16.5006 9.35001L10.6498 9.35001V3.50001Z",
|
|
3712
3697
|
fill: t
|
|
3713
3698
|
})
|
|
3714
|
-
}),
|
|
3699
|
+
}), fn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3715
3700
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3716
3701
|
width: e,
|
|
3717
3702
|
height: e,
|
|
@@ -3737,7 +3722,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3737
3722
|
fill: t
|
|
3738
3723
|
})
|
|
3739
3724
|
]
|
|
3740
|
-
}),
|
|
3725
|
+
}), pn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3741
3726
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3742
3727
|
width: e,
|
|
3743
3728
|
height: e,
|
|
@@ -3752,7 +3737,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3752
3737
|
d: "M8.42023 2.05416C8.93178 1.95296 9.4602 1.89999 10.0004 1.89999C10.5406 1.89999 11.069 1.95296 11.5805 2.05416C11.9056 2.11847 12.117 2.43412 12.0527 2.75919C11.9884 3.08426 11.6727 3.29565 11.3477 3.23134C10.9124 3.14523 10.462 3.09999 10.0004 3.09999C9.5388 3.09999 9.08838 3.14523 8.65312 3.23134C8.32805 3.29565 8.01239 3.08426 7.94808 2.75919C7.88377 2.43412 8.09516 2.11847 8.42023 2.05416ZM13.6689 3.42946C13.8533 3.1541 14.2259 3.08032 14.5013 3.26467C15.3844 3.85586 16.1445 4.61603 16.7357 5.49908C16.9201 5.77444 16.8463 6.14711 16.5709 6.33146C16.2956 6.51581 15.9229 6.44203 15.7386 6.16667C15.2346 5.41395 14.5864 4.76576 13.8337 4.26183C13.5584 4.07749 13.4846 3.70482 13.6689 3.42946ZM6.33185 3.42946C6.5162 3.70482 6.44242 4.07749 6.16706 4.26183C5.41435 4.76576 4.76616 5.41395 4.26223 6.16667C4.07788 6.44203 3.70522 6.51581 3.42986 6.33146C3.1545 6.14711 3.08072 5.77444 3.26507 5.49908C3.85626 4.61603 4.61642 3.85586 5.49948 3.26467C5.77484 3.08032 6.14751 3.1541 6.33185 3.42946ZM2.75959 7.94768C3.08466 8.01199 3.29605 8.32765 3.23174 8.65272C3.14563 9.08798 3.10039 9.53841 3.10039 9.99999C3.10039 10.4616 3.14563 10.912 3.23174 11.3473C3.29605 11.6723 3.08466 11.988 2.75959 12.0523C2.43452 12.1166 2.11886 11.9052 2.05455 11.5802C1.95335 11.0686 1.90039 10.5402 1.90039 9.99999C1.90039 9.4598 1.95335 8.93138 2.05455 8.41984C2.11886 8.09477 2.43452 7.88338 2.75959 7.94768ZM17.2412 7.94769C17.5663 7.88338 17.8819 8.09477 17.9462 8.41984C18.0474 8.93138 18.1004 9.4598 18.1004 9.99999C18.1004 10.5402 18.0474 11.0686 17.9462 11.5802C17.8819 11.9052 17.5663 12.1166 17.2412 12.0523C16.9161 11.988 16.7047 11.6723 16.769 11.3473C16.8552 10.912 16.9004 10.4616 16.9004 9.99999C16.9004 9.53841 16.8552 9.08798 16.769 8.65272C16.7047 8.32765 16.9161 8.01199 17.2412 7.94769ZM3.42986 13.6685C3.70522 13.4842 4.07788 13.558 4.26223 13.8333C4.76616 14.586 5.41435 15.2342 6.16706 15.7382C6.44242 15.9225 6.5162 16.2952 6.33185 16.5705C6.14751 16.8459 5.77484 16.9197 5.49948 16.7353C4.61642 16.1441 3.85626 15.384 3.26507 14.5009C3.08072 14.2255 3.1545 13.8529 3.42986 13.6685ZM16.5709 13.6685C16.8463 13.8529 16.9201 14.2255 16.7357 14.5009C16.1445 15.384 15.3844 16.1441 14.5013 16.7353C14.2259 16.9197 13.8533 16.8459 13.6689 16.5705C13.4846 16.2952 13.5584 15.9225 13.8337 15.7382C14.5864 15.2342 15.2346 14.586 15.7386 13.8333C15.9229 13.558 16.2956 13.4842 16.5709 13.6685ZM7.94808 17.2408C8.01239 16.9157 8.32804 16.7043 8.65312 16.7686C9.08838 16.8548 9.5388 16.9 10.0004 16.9C10.462 16.9 10.9124 16.8548 11.3477 16.7686C11.6727 16.7043 11.9884 16.9157 12.0527 17.2408C12.117 17.5659 11.9056 17.8815 11.5805 17.9458C11.069 18.047 10.5406 18.1 10.0004 18.1C9.4602 18.1 8.93178 18.047 8.42023 17.9458C8.09516 17.8815 7.88377 17.5659 7.94808 17.2408Z",
|
|
3753
3738
|
fill: t
|
|
3754
3739
|
})]
|
|
3755
|
-
}),
|
|
3740
|
+
}), mn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3756
3741
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3757
3742
|
width: e,
|
|
3758
3743
|
height: e,
|
|
@@ -3767,7 +3752,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3767
3752
|
d: "M1.91602 5.83332C1.91602 3.67021 3.66957 1.91666 5.83268 1.91666C7.74079 1.91666 9.33021 3.28113 9.67844 5.08759C9.70168 5.08477 9.72535 5.08332 9.74935 5.08332H16.916C17.2382 5.08332 17.4993 5.34449 17.4993 5.66666C17.4993 5.98882 17.2382 6.24999 16.916 6.24999H9.74935C9.74203 6.24999 9.73474 6.24986 9.72749 6.24959C9.5341 8.08022 8.07958 9.53474 6.24895 9.72813C6.24921 9.73538 6.24935 9.74267 6.24935 9.74999L6.24935 16.9167C6.24935 17.2388 5.98818 17.5 5.66602 17.5C5.34385 17.5 5.08268 17.2388 5.08268 16.9167L5.08268 9.74999C5.08268 9.72599 5.08413 9.70232 5.08695 9.67908C3.28049 9.33086 1.91602 7.74143 1.91602 5.83332ZM5.83268 3.08332C4.3139 3.08332 3.08268 4.31454 3.08268 5.83332C3.08268 7.35211 4.3139 8.58332 5.83268 8.58332C7.35146 8.58332 8.58268 7.35211 8.58268 5.83332C8.58268 4.31454 7.35146 3.08332 5.83268 3.08332Z",
|
|
3768
3753
|
fill: t
|
|
3769
3754
|
})]
|
|
3770
|
-
}),
|
|
3755
|
+
}), hn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3771
3756
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3772
3757
|
width: e,
|
|
3773
3758
|
height: e,
|
|
@@ -3784,7 +3769,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3784
3769
|
d: "M7.94737 12.0531C8.18168 12.2874 8.18168 12.6673 7.94737 12.9016L4.17471 16.6743C3.9404 16.9086 3.5605 16.9086 3.32618 16.6743C3.09187 16.44 3.09187 16.0601 3.32618 15.8257L7.09884 12.0531C7.33315 11.8188 7.71305 11.8188 7.94737 12.0531Z",
|
|
3785
3770
|
fill: t
|
|
3786
3771
|
})]
|
|
3787
|
-
}),
|
|
3772
|
+
}), gn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3788
3773
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3789
3774
|
width: e,
|
|
3790
3775
|
height: e,
|
|
@@ -3801,7 +3786,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3801
3786
|
d: "M7.94731 12.053C8.18163 12.2873 8.18163 12.6672 7.94731 12.9016L4.17465 16.6742C3.94034 16.9085 3.56044 16.9085 3.32613 16.6742C3.09181 16.4399 3.09181 16.06 3.32613 15.8257L7.09878 12.053C7.3331 11.8187 7.713 11.8187 7.94731 12.053Z",
|
|
3802
3787
|
fill: t
|
|
3803
3788
|
})]
|
|
3804
|
-
}),
|
|
3789
|
+
}), _n = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
3805
3790
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3806
3791
|
width: e,
|
|
3807
3792
|
height: e,
|
|
@@ -3811,7 +3796,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3811
3796
|
d: "M16.4004 4.2002C16.4004 3.86882 16.1312 3.59961 15.7998 3.59961H4.2002C3.86882 3.59961 3.59961 3.86882 3.59961 4.2002V15.7998C3.59961 16.1312 3.86882 16.4004 4.2002 16.4004H15.7998C16.1312 16.4004 16.4004 16.1312 16.4004 15.7998V4.2002ZM17.5996 15.7998C17.5996 16.7939 16.7939 17.5996 15.7998 17.5996H4.2002C3.20608 17.5996 2.40039 16.7939 2.40039 15.7998V4.2002C2.40039 3.20608 3.20608 2.40039 4.2002 2.40039H15.7998C16.7939 2.40039 17.5996 3.20608 17.5996 4.2002V15.7998Z",
|
|
3812
3797
|
fill: t
|
|
3813
3798
|
})
|
|
3814
|
-
}),
|
|
3799
|
+
}), vn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3815
3800
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3816
3801
|
width: e,
|
|
3817
3802
|
height: e,
|
|
@@ -3828,7 +3813,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3828
3813
|
d: "M12.0877 4.58767C12.3154 4.35978 12.6847 4.35963 12.9126 4.58735L15.4126 7.08536C15.5221 7.19471 15.5836 7.34306 15.5837 7.49777C15.5837 7.65248 15.5223 7.80088 15.413 7.91032L12.913 10.4123C12.6853 10.6402 12.3159 10.6403 12.088 10.4126C11.8601 10.1849 11.86 9.81557 12.0877 9.58767L14.1754 7.49833L12.088 5.41263C11.8601 5.18492 11.86 4.81557 12.0877 4.58767Z",
|
|
3829
3814
|
fill: t
|
|
3830
3815
|
})]
|
|
3831
|
-
}),
|
|
3816
|
+
}), yn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3832
3817
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3833
3818
|
width: e,
|
|
3834
3819
|
height: e,
|
|
@@ -3845,7 +3830,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3845
3830
|
d: "M10.0869 3.46437C8.66994 3.26501 7.22657 3.53156 5.97426 4.22385C4.72196 4.91613 3.72856 5.99666 3.14375 7.30262C2.55894 8.60858 2.41441 10.0692 2.73192 11.4645C3.04942 12.8597 3.81178 14.114 4.90412 15.0383C5.99645 15.9626 7.35959 16.5069 8.78815 16.5891C10.2167 16.6713 11.6333 16.287 12.8245 15.4942C13.1003 15.3105 13.1751 14.9381 12.9915 14.6622C12.8078 14.3864 12.4354 14.3116 12.1595 14.4952C11.1849 15.1439 10.0259 15.4583 8.8571 15.3911C7.68828 15.3238 6.57298 14.8785 5.67926 14.1222C4.78553 13.366 4.16178 12.3398 3.902 11.1982C3.64222 10.0566 3.76048 8.86157 4.23896 7.79305C4.71744 6.72454 5.53022 5.84047 6.55483 5.27406C7.57944 4.70764 8.76039 4.48956 9.91972 4.65267C11.0791 4.81578 12.154 5.35125 12.9825 6.1784L12.9956 6.19103L16.0889 9.09769C16.3304 9.3246 16.7101 9.31279 16.937 9.0713C17.1639 8.82982 17.1521 8.4501 16.9106 8.22319L13.8238 5.32259C12.812 4.31536 11.5008 3.6633 10.0869 3.46437Z",
|
|
3846
3831
|
fill: t
|
|
3847
3832
|
})]
|
|
3848
|
-
}),
|
|
3833
|
+
}), bn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3849
3834
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3850
3835
|
width: e,
|
|
3851
3836
|
height: e,
|
|
@@ -3877,7 +3862,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3877
3862
|
fill: t
|
|
3878
3863
|
})
|
|
3879
3864
|
]
|
|
3880
|
-
}),
|
|
3865
|
+
}), xn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3881
3866
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3882
3867
|
width: e,
|
|
3883
3868
|
height: e,
|
|
@@ -3915,7 +3900,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3915
3900
|
fill: t
|
|
3916
3901
|
})
|
|
3917
3902
|
]
|
|
3918
|
-
}),
|
|
3903
|
+
}), Sn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3919
3904
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3920
3905
|
width: e,
|
|
3921
3906
|
height: e,
|
|
@@ -3947,7 +3932,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3947
3932
|
fill: t
|
|
3948
3933
|
})
|
|
3949
3934
|
]
|
|
3950
|
-
}),
|
|
3935
|
+
}), Cn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3951
3936
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3952
3937
|
width: e,
|
|
3953
3938
|
height: e,
|
|
@@ -3991,7 +3976,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
3991
3976
|
fill: t
|
|
3992
3977
|
})
|
|
3993
3978
|
]
|
|
3994
|
-
}),
|
|
3979
|
+
}), wn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
3995
3980
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3996
3981
|
width: e,
|
|
3997
3982
|
height: e,
|
|
@@ -4053,7 +4038,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4053
4038
|
fill: t
|
|
4054
4039
|
})
|
|
4055
4040
|
]
|
|
4056
|
-
}),
|
|
4041
|
+
}), Tn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4057
4042
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4058
4043
|
width: e,
|
|
4059
4044
|
height: e,
|
|
@@ -4085,7 +4070,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4085
4070
|
fill: t
|
|
4086
4071
|
})
|
|
4087
4072
|
]
|
|
4088
|
-
}),
|
|
4073
|
+
}), En = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
4089
4074
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4090
4075
|
width: e,
|
|
4091
4076
|
height: e,
|
|
@@ -4097,7 +4082,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4097
4082
|
d: "M3.11953 8.77499C3.4509 8.77499 3.71953 9.04362 3.71953 9.37499V16.275H10.6195C10.9509 16.275 11.2195 16.5436 11.2195 16.875C11.2195 17.2064 10.9509 17.475 10.6195 17.475H3.11953C2.78816 17.475 2.51953 17.2064 2.51953 16.875V9.37499C2.51953 9.04362 2.78816 8.77499 3.11953 8.77499Z",
|
|
4098
4083
|
fill: t
|
|
4099
4084
|
})
|
|
4100
|
-
}),
|
|
4085
|
+
}), Dn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
4101
4086
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4102
4087
|
width: e,
|
|
4103
4088
|
height: e,
|
|
@@ -4109,7 +4094,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4109
4094
|
d: "M2.69527 2.70073C2.80779 2.58821 2.9604 2.52499 3.11953 2.52499L10.6195 2.52499C10.9509 2.52499 11.2195 2.79362 11.2195 3.12499C11.2195 3.45637 10.9509 3.72499 10.6195 3.72499L3.71953 3.72499L3.71953 10.625C3.71953 10.9564 3.4509 11.225 3.11953 11.225C2.78816 11.225 2.51953 10.9564 2.51953 10.625L2.51953 3.12499C2.51953 2.96586 2.58275 2.81325 2.69527 2.70073Z",
|
|
4110
4095
|
fill: t
|
|
4111
4096
|
})
|
|
4112
|
-
}),
|
|
4097
|
+
}), On = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
4113
4098
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4114
4099
|
width: e,
|
|
4115
4100
|
height: e,
|
|
@@ -4121,7 +4106,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4121
4106
|
d: "M16.8803 8.77499C17.2116 8.77499 17.4803 9.04362 17.4803 9.37499V16.875C17.4803 17.2064 17.2116 17.475 16.8803 17.475H9.38027C9.0489 17.475 8.78027 17.2064 8.78027 16.875C8.78027 16.5436 9.0489 16.275 9.38027 16.275H16.2803V9.37499C16.2803 9.04362 16.5489 8.77499 16.8803 8.77499Z",
|
|
4122
4107
|
fill: t
|
|
4123
4108
|
})
|
|
4124
|
-
}),
|
|
4109
|
+
}), kn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
4125
4110
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4126
4111
|
width: e,
|
|
4127
4112
|
height: e,
|
|
@@ -4133,7 +4118,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4133
4118
|
d: "M16.2803 3.72499L9.38027 3.72499C9.0489 3.72499 8.78027 3.45637 8.78027 3.12499C8.78027 2.79362 9.0489 2.52499 9.38027 2.52499L16.8803 2.52499C17.2116 2.52499 17.4803 2.79362 17.4803 3.12499V10.625C17.4803 10.9564 17.2116 11.225 16.8803 11.225C16.5489 11.225 16.2803 10.9564 16.2803 10.625L16.2803 3.72499Z",
|
|
4134
4119
|
fill: t
|
|
4135
4120
|
})
|
|
4136
|
-
}),
|
|
4121
|
+
}), An = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4137
4122
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4138
4123
|
width: e,
|
|
4139
4124
|
height: e,
|
|
@@ -4150,7 +4135,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4150
4135
|
d: "M13.0007 13.0014C13.235 12.767 13.6149 12.767 13.8492 13.0014L17.4237 16.5758C17.658 16.8101 17.658 17.19 17.4237 17.4243C17.1894 17.6587 16.8095 17.6587 16.5751 17.4243L13.0007 13.8499C12.7664 13.6156 12.7664 13.2357 13.0007 13.0014Z",
|
|
4151
4136
|
fill: t
|
|
4152
4137
|
})]
|
|
4153
|
-
}),
|
|
4138
|
+
}), jn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4154
4139
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4155
4140
|
width: e,
|
|
4156
4141
|
height: e,
|
|
@@ -4167,7 +4152,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4167
4152
|
d: "M7.84195 1.91982C8.02554 1.87139 8.22121 1.91271 8.36954 2.03123L9.82302 3.19263C9.93948 3.1897 10.056 3.1897 10.1724 3.19264L11.626 2.0319C11.7745 1.91324 11.9706 1.87204 12.1543 1.92084C12.8657 2.10972 13.5488 2.39224 14.1858 2.761C14.3505 2.85635 14.4602 3.02417 14.4814 3.21329L14.6891 5.06208C14.7734 5.14228 14.8558 5.22461 14.936 5.30898L16.784 5.51663C16.9728 5.53785 17.1405 5.64728 17.2359 5.81162C17.6055 6.44824 17.8887 7.13125 18.0779 7.84264C18.1268 8.02655 18.0856 8.22277 17.9668 8.37144L16.8054 9.82492C16.8083 9.94138 16.8083 10.0579 16.8054 10.1743L17.9661 11.6279C18.0846 11.7762 18.1259 11.9718 18.0775 12.1553C17.8899 12.8664 17.6088 13.5495 17.2415 14.1867C17.1462 14.3519 16.9781 14.462 16.7886 14.4833L14.9398 14.691C14.8596 14.7753 14.7773 14.8577 14.6929 14.9379L14.4853 16.7859C14.4641 16.9747 14.3546 17.1424 14.1903 17.2378C13.5537 17.6074 12.8707 17.8906 12.1593 18.0798C11.9754 18.1287 11.7792 18.0875 11.6305 17.9687L10.177 16.8073C10.0605 16.8102 9.94403 16.8102 9.82758 16.8073L8.37406 17.968C8.22575 18.0865 8.03015 18.1278 7.84663 18.0794C7.13549 17.8918 6.45238 17.6107 5.8152 17.2434C5.64999 17.1481 5.53989 16.98 5.5186 16.7905L5.31095 14.9417C5.22618 14.8612 5.14347 14.7784 5.06292 14.6936L3.21165 14.4768C3.0239 14.4548 2.85749 14.3456 2.76257 14.1821C2.39297 13.5455 2.10981 12.8625 1.92056 12.1511C1.87164 11.9672 1.91286 11.771 2.03166 11.6223L3.19306 10.1688C3.19012 10.0524 3.19013 9.93585 3.19306 9.81939L2.03232 8.36587C1.91367 8.21729 1.87247 8.02126 1.92127 7.83748C2.11015 7.12613 2.39267 6.44302 2.76143 5.80606C2.85677 5.64136 3.0246 5.53166 3.21372 5.51042L5.06251 5.30277C5.14271 5.21839 5.22504 5.13606 5.30941 5.05586L5.51706 3.20783C5.53834 3.01842 5.64835 2.85039 5.81344 2.75513C6.44962 2.38806 7.13176 2.10716 7.84195 1.91982ZM6.67484 3.6508L6.47686 5.41277C6.46031 5.5601 6.38979 5.69609 6.2789 5.79451C6.11031 5.94415 5.95078 6.10368 5.80114 6.27227C5.70272 6.38316 5.56672 6.45368 5.41937 6.47023L3.65606 6.66828C3.45616 7.04957 3.2913 7.44823 3.1635 7.85933L4.27076 9.24589C4.36328 9.36174 4.40962 9.50774 4.40086 9.65574C4.38752 9.88115 4.38752 10.1072 4.40086 10.3326C4.40963 10.4806 4.36324 10.6267 4.27065 10.7426L3.16288 12.1289C3.29109 12.5404 3.45655 12.9393 3.65721 13.3208L5.42376 13.5277C5.57005 13.5448 5.70492 13.6152 5.80269 13.7253C5.95233 13.8939 6.11187 14.0535 6.28046 14.2031C6.39135 14.3015 6.46187 14.4375 6.47842 14.5849L6.67638 16.3475C7.05763 16.5464 7.45614 16.7103 7.86701 16.8373L9.25407 15.7296C9.36992 15.6371 9.51593 15.5907 9.66393 15.5995C9.88934 15.6128 10.1153 15.6128 10.3407 15.5995C10.4888 15.5907 10.6349 15.6371 10.7507 15.7297L12.1371 16.8375C12.548 16.7095 12.9464 16.5443 13.3274 16.344L13.5255 14.581C13.542 14.4336 13.6126 14.2976 13.7234 14.1992C13.892 14.0496 14.0516 13.8901 14.2012 13.7215C14.2996 13.6106 14.4356 13.5401 14.583 13.5235L16.3456 13.3255C16.5445 12.9443 16.7084 12.5458 16.8354 12.1349L15.7277 10.7478C15.6352 10.632 15.5888 10.486 15.5976 10.338C15.6109 10.1126 15.6109 9.88658 15.5976 9.66117C15.5888 9.51311 15.6352 9.36705 15.7278 9.25118L16.8356 7.86482C16.7076 7.4539 16.5424 7.05549 16.3421 6.67452L14.5791 6.47643C14.4317 6.45988 14.2957 6.38936 14.1973 6.27848C14.0477 6.10989 13.8882 5.95035 13.7196 5.80071C13.6087 5.70229 13.5382 5.56629 13.5216 5.41895L13.3236 3.65563C12.9423 3.45574 12.5436 3.29087 12.1325 3.16307L10.7459 4.27033C10.6301 4.36285 10.4841 4.4092 10.3361 4.40044C10.1107 4.3871 9.88468 4.3871 9.65927 4.40044C9.51121 4.4092 9.36515 4.36281 9.24928 4.27022L7.86228 3.16195C7.45249 3.28864 7.05505 3.45226 6.67484 3.6508Z",
|
|
4168
4153
|
fill: t
|
|
4169
4154
|
})]
|
|
4170
|
-
}),
|
|
4155
|
+
}), Mn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4171
4156
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4172
4157
|
width: e,
|
|
4173
4158
|
height: e,
|
|
@@ -4205,7 +4190,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4205
4190
|
fill: t
|
|
4206
4191
|
})
|
|
4207
4192
|
]
|
|
4208
|
-
}),
|
|
4193
|
+
}), Nn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4209
4194
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4210
4195
|
width: e,
|
|
4211
4196
|
height: e,
|
|
@@ -4222,7 +4207,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4222
4207
|
d: "M1.40039 5.20002C1.40039 4.20591 2.20628 3.40002 3.20039 3.40002H16.8004C17.7945 3.40002 18.6004 4.20591 18.6004 5.20002V14.8C18.6004 15.7941 17.7945 16.6 16.8004 16.6H3.20039C2.20628 16.6 1.40039 15.7941 1.40039 14.8V5.20002ZM3.20039 4.60002C2.86902 4.60002 2.60039 4.86865 2.60039 5.20002V14.8C2.60039 15.1314 2.86902 15.4 3.20039 15.4H16.8004C17.1318 15.4 17.4004 15.1314 17.4004 14.8V5.20002C17.4004 4.86865 17.1318 4.60002 16.8004 4.60002H3.20039Z",
|
|
4223
4208
|
fill: t
|
|
4224
4209
|
})]
|
|
4225
|
-
}),
|
|
4210
|
+
}), Pn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4226
4211
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4227
4212
|
width: e,
|
|
4228
4213
|
height: e,
|
|
@@ -4240,7 +4225,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4240
4225
|
d: "M3.62138 3.95902C3.73607 3.65796 4.0731 3.50687 4.37416 3.62156L13.3775 7.05141L16.3837 15.6406C16.4902 15.9447 16.3299 16.2775 16.0259 16.3839C15.7218 16.4904 15.389 16.3301 15.2826 16.0261L12.4555 7.94862L3.95883 4.7118C3.65777 4.59711 3.50669 4.26008 3.62138 3.95902Z",
|
|
4241
4226
|
fill: t
|
|
4242
4227
|
})]
|
|
4243
|
-
}),
|
|
4228
|
+
}), Fn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4244
4229
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4245
4230
|
width: e,
|
|
4246
4231
|
height: e,
|
|
@@ -4331,7 +4316,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4331
4316
|
fill: t
|
|
4332
4317
|
})
|
|
4333
4318
|
]
|
|
4334
|
-
}),
|
|
4319
|
+
}), In = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4335
4320
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4336
4321
|
width: e,
|
|
4337
4322
|
height: e,
|
|
@@ -4363,7 +4348,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4363
4348
|
fill: t
|
|
4364
4349
|
})
|
|
4365
4350
|
]
|
|
4366
|
-
}),
|
|
4351
|
+
}), Ln = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
4367
4352
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4368
4353
|
width: e,
|
|
4369
4354
|
height: e,
|
|
@@ -4375,7 +4360,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4375
4360
|
d: "M9.30073 1.48795C9.50737 1.34911 9.75067 1.27496 9.99961 1.27496C10.2486 1.27496 10.4919 1.34911 10.6985 1.48795C10.9048 1.62654 11.0652 1.82333 11.1593 2.0533C11.1595 2.0537 11.1596 2.0541 11.1598 2.0545L12.9422 6.36925L17.5769 6.74635C17.8221 6.7694 18.0552 6.86381 18.2474 7.01782C18.4395 7.17183 18.5824 7.37875 18.6584 7.61305C18.7343 7.84733 18.7399 8.09873 18.6746 8.3362C18.6093 8.57367 18.4759 8.78681 18.2908 8.94931L18.2868 8.95283L14.7581 11.996L15.8357 16.5431C15.8358 16.5438 15.836 16.5445 15.8362 16.5452C15.8944 16.7859 15.8802 17.0384 15.7954 17.2711C15.7102 17.5044 15.5579 17.7073 15.3575 17.8541C15.1571 18.0008 14.9177 18.0849 14.6695 18.0957C14.4214 18.1064 14.1756 18.0434 13.9633 17.9145L13.9603 17.9127L9.99961 15.477L6.03891 17.9127L6.03597 17.9145C5.82364 18.0434 5.57787 18.1064 5.32971 18.0957C5.08155 18.0849 4.84215 18.0009 4.64176 17.8541C4.44137 17.7073 4.28899 17.5044 4.20387 17.2711C4.119 17.0384 4.10481 16.7858 4.16306 16.5451C4.16322 16.5444 4.16339 16.5437 4.16356 16.5431L5.24105 11.9999L1.71244 8.95672C1.52489 8.79473 1.3889 8.58076 1.32208 8.34212C1.25527 8.10347 1.26026 7.85043 1.33643 7.6146C1.4126 7.37877 1.55657 7.17062 1.75036 7.01615C1.94415 6.86168 2.17916 6.76773 2.42604 6.74606L2.42986 6.74572L7.05705 6.36925L8.83942 2.0545C8.8396 2.05406 8.83979 2.05361 8.83997 2.05317C8.93412 1.82326 9.0945 1.62652 9.30073 1.48795ZM9.99961 2.47496C9.98906 2.47496 9.97874 2.47811 9.96998 2.48399C9.96122 2.48988 9.95442 2.49824 9.95043 2.50801L9.94947 2.51033L8.02603 7.16658C7.94003 7.37478 7.74466 7.51726 7.52014 7.53553L2.53011 7.94154C2.5185 7.94273 2.50748 7.94723 2.49834 7.95451C2.48898 7.96198 2.48202 7.97204 2.47834 7.98343C2.47466 7.99483 2.47442 8.00706 2.47765 8.01859C2.48087 8.0301 2.4874 8.0404 2.49643 8.04822C2.49641 8.04821 2.49645 8.04824 2.49643 8.04822L6.30084 11.3292C6.47047 11.4755 6.54448 11.7041 6.49279 11.9221L5.33029 16.8236L5.32941 16.8273C5.32678 16.8381 5.32741 16.8494 5.33122 16.8599C5.33503 16.8703 5.34185 16.8794 5.35083 16.886C5.3598 16.8925 5.37052 16.8963 5.38163 16.8968C5.39248 16.8973 5.40323 16.8946 5.41258 16.8891C5.41236 16.8892 5.41281 16.8889 5.41258 16.8891L9.68532 14.2616C9.87808 14.143 10.1211 14.143 10.3139 14.2616L14.586 16.8887C14.5858 16.8886 14.5862 16.8888 14.586 16.8887C14.5953 16.8942 14.6067 16.8973 14.6176 16.8968C14.6287 16.8963 14.6394 16.8925 14.6484 16.886C14.6574 16.8794 14.6642 16.8703 14.668 16.8599C14.6718 16.8494 14.6724 16.8381 14.6698 16.8273L14.6689 16.8235L13.5064 11.9181C13.4548 11.7001 13.5288 11.4716 13.6984 11.3253L17.5 8.04675C17.5084 8.03901 17.5145 8.02903 17.5176 8.01795C17.5207 8.00648 17.5205 7.99433 17.5168 7.98301C17.5131 7.97169 17.5062 7.96169 17.4969 7.95424C17.4881 7.94716 17.4775 7.94269 17.4663 7.94131L12.4791 7.53553C12.2546 7.51726 12.0592 7.37478 11.9732 7.16658L10.0498 2.51033L10.0488 2.50801C10.0448 2.49824 10.038 2.48988 10.0292 2.48399C10.0205 2.47811 10.0102 2.47496 9.99961 2.47496Z",
|
|
4376
4361
|
fill: t
|
|
4377
4362
|
})
|
|
4378
|
-
}),
|
|
4363
|
+
}), Rn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
4379
4364
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4380
4365
|
width: e,
|
|
4381
4366
|
height: e,
|
|
@@ -4387,7 +4372,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4387
4372
|
d: "M9.30073 1.48795C9.50737 1.34911 9.75067 1.27496 9.99961 1.27496C10.2486 1.27496 10.4919 1.34911 10.6985 1.48795C10.9048 1.62654 11.0652 1.82333 11.1593 2.0533L11.1598 2.0545L12.9422 6.36925L17.5769 6.74635C17.8221 6.7694 18.0552 6.86381 18.2474 7.01782C18.4395 7.17183 18.5824 7.37875 18.6584 7.61305C18.7343 7.84733 18.7399 8.09873 18.6746 8.3362C18.6093 8.57367 18.4759 8.78681 18.2908 8.94931L18.2868 8.95283L14.7581 11.996L15.8357 16.5431L15.8362 16.5452C15.8944 16.7859 15.8802 17.0384 15.7954 17.2711C15.7102 17.5044 15.5579 17.7073 15.3575 17.8541C15.1571 18.0008 14.9177 18.0849 14.6695 18.0957C14.4214 18.1064 14.1756 18.0434 13.9633 17.9145L13.9603 17.9127L9.99961 15.477L6.03891 17.9127L6.03597 17.9145C5.82364 18.0434 5.57787 18.1064 5.32971 18.0957C5.08155 18.0849 4.84215 18.0009 4.64176 17.8541C4.44137 17.7073 4.28899 17.5044 4.20387 17.2711C4.119 17.0384 4.10481 16.7858 4.16306 16.5451L4.16356 16.5431L5.24105 11.9999L1.71244 8.95672C1.52489 8.79473 1.3889 8.58076 1.32208 8.34212C1.25527 8.10347 1.26026 7.85043 1.33643 7.6146C1.4126 7.37877 1.55657 7.17062 1.75036 7.01615C1.94415 6.86168 2.17916 6.76773 2.42604 6.74606L2.42986 6.74572L7.05705 6.36925L8.83942 2.0545L8.83997 2.05317C8.93412 1.82326 9.0945 1.62652 9.30073 1.48795Z",
|
|
4388
4373
|
fill: t
|
|
4389
4374
|
})
|
|
4390
|
-
}),
|
|
4375
|
+
}), zn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
4391
4376
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4392
4377
|
width: e,
|
|
4393
4378
|
height: e,
|
|
@@ -4399,7 +4384,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4399
4384
|
d: "M4 3C3.44772 3 3 3.44772 3 4V16C3 16.5523 3.44772 17 4 17H16C16.5523 17 17 16.5523 17 16V4C17 3.44772 16.5523 3 16 3H4Z",
|
|
4400
4385
|
fill: t
|
|
4401
4386
|
})
|
|
4402
|
-
}),
|
|
4387
|
+
}), Bn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4403
4388
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4404
4389
|
width: e,
|
|
4405
4390
|
height: e,
|
|
@@ -4414,7 +4399,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4414
4399
|
d: "M10.0004 3.10002C6.18963 3.10002 3.10039 6.18926 3.10039 10C3.10039 13.8108 6.18963 16.9 10.0004 16.9C13.8112 16.9 16.9004 13.8108 16.9004 10C16.9004 6.18926 13.8112 3.10002 10.0004 3.10002ZM1.90039 10C1.90039 5.52652 5.52688 1.90002 10.0004 1.90002C14.4739 1.90002 18.1004 5.52652 18.1004 10C18.1004 14.4735 14.4739 18.1 10.0004 18.1C5.52688 18.1 1.90039 14.4735 1.90039 10Z",
|
|
4415
4400
|
fill: t
|
|
4416
4401
|
})]
|
|
4417
|
-
}),
|
|
4402
|
+
}), Vn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4418
4403
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4419
4404
|
width: e,
|
|
4420
4405
|
height: e,
|
|
@@ -4440,7 +4425,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4440
4425
|
fill: t
|
|
4441
4426
|
})
|
|
4442
4427
|
]
|
|
4443
|
-
}),
|
|
4428
|
+
}), Hn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4444
4429
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4445
4430
|
width: e,
|
|
4446
4431
|
height: e,
|
|
@@ -4457,7 +4442,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4457
4442
|
d: "M9.61883 2.81669C10.043 2.97935 10.4382 3.20046 10.7946 3.47017C11.126 3.29743 11.5026 3.2 11.9022 3.2C13.2277 3.2 14.3022 4.27452 14.3022 5.6C14.3022 6.65831 13.6172 7.55663 12.6664 7.87577C12.6038 8.3988 12.457 8.89596 12.2403 9.35326C15.0652 9.52775 17.3023 11.8741 17.3023 14.7428C17.3023 14.8849 17.1872 15 17.0451 15H15.5675C15.6405 15.3905 15.6845 15.7913 15.697 16.2H17.0451C17.8499 16.2 18.5023 15.5476 18.5023 14.7428C18.5023 11.846 16.636 9.38504 14.0401 8.49678C14.9271 7.84109 15.5023 6.78771 15.5023 5.6C15.5023 3.61177 13.8905 2 11.9022 2C11.0355 2 10.2399 2.3068 9.61883 2.81669Z",
|
|
4458
4443
|
fill: t
|
|
4459
4444
|
})]
|
|
4460
|
-
}),
|
|
4445
|
+
}), Un = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4461
4446
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4462
4447
|
width: e,
|
|
4463
4448
|
height: e,
|
|
@@ -4483,7 +4468,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4483
4468
|
fill: t
|
|
4484
4469
|
})
|
|
4485
4470
|
]
|
|
4486
|
-
}),
|
|
4471
|
+
}), Wn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4487
4472
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4488
4473
|
width: e,
|
|
4489
4474
|
height: e,
|
|
@@ -4509,7 +4494,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4509
4494
|
fill: t
|
|
4510
4495
|
})
|
|
4511
4496
|
]
|
|
4512
|
-
}),
|
|
4497
|
+
}), Gn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
4513
4498
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4514
4499
|
width: e,
|
|
4515
4500
|
height: e,
|
|
@@ -4521,7 +4506,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4521
4506
|
d: "M5.25 3.75C5.25 3.19772 5.69772 2.75 6.25 2.75H11.5625C12.5736 2.75 13.5434 3.15167 14.2583 3.86666C14.9733 4.58164 15.375 5.55136 15.375 6.5625C15.375 7.42353 15.0837 8.25452 14.5558 8.92376C14.8679 9.10318 15.1578 9.32418 15.4168 9.58318C16.1904 10.3568 16.625 11.406 16.625 12.5C16.625 13.594 16.1904 14.6432 15.4168 15.4168C14.6432 16.1904 13.594 16.625 12.5 16.625H6.25C5.69772 16.625 5.25 16.1773 5.25 15.625V3.75ZM7.25 10.375V14.625H12.5C13.0636 14.625 13.6041 14.4011 14.0026 14.0026C14.4011 13.6041 14.625 13.0636 14.625 12.5C14.625 11.9364 14.4011 11.3959 14.0026 10.9974C13.6041 10.5989 13.0636 10.375 12.5 10.375H7.25ZM11.5625 8.375H7.25V4.75H11.5625C12.0432 4.75 12.5042 4.94096 12.8441 5.28087C13.184 5.62078 13.375 6.0818 13.375 6.5625C13.375 7.0432 13.184 7.50422 12.8441 7.84413C12.5042 8.18404 12.0432 8.375 11.5625 8.375Z",
|
|
4522
4507
|
fill: t
|
|
4523
4508
|
})
|
|
4524
|
-
}),
|
|
4509
|
+
}), Kn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4525
4510
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4526
4511
|
width: e,
|
|
4527
4512
|
height: e,
|
|
@@ -4547,7 +4532,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4547
4532
|
fill: t
|
|
4548
4533
|
})
|
|
4549
4534
|
]
|
|
4550
|
-
}),
|
|
4535
|
+
}), qn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4551
4536
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4552
4537
|
width: e,
|
|
4553
4538
|
height: e,
|
|
@@ -4573,7 +4558,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4573
4558
|
fill: t
|
|
4574
4559
|
})
|
|
4575
4560
|
]
|
|
4576
|
-
}),
|
|
4561
|
+
}), Jn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4577
4562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4578
4563
|
width: e,
|
|
4579
4564
|
height: e,
|
|
@@ -4590,7 +4575,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4590
4575
|
d: "M5.62539 3.77502C5.95676 3.77502 6.22539 4.04365 6.22539 4.37502V10.625C6.22539 11.6262 6.62311 12.5864 7.33106 13.2944C8.03901 14.0023 8.9992 14.4 10.0004 14.4C11.0016 14.4 11.9618 14.0023 12.6697 13.2944C13.3777 12.5864 13.7754 11.6262 13.7754 10.625V4.37502C13.7754 4.04365 14.044 3.77502 14.3754 3.77502C14.7068 3.77502 14.9754 4.04365 14.9754 4.37502V10.625C14.9754 11.9445 14.4512 13.2099 13.5182 14.1429C12.5853 15.0759 11.3198 15.6 10.0004 15.6C8.68094 15.6 7.41553 15.0759 6.48253 14.1429C5.54954 13.2099 5.02539 11.9445 5.02539 10.625V4.37502C5.02539 4.04365 5.29402 3.77502 5.62539 3.77502Z",
|
|
4591
4576
|
fill: t
|
|
4592
4577
|
})]
|
|
4593
|
-
}),
|
|
4578
|
+
}), Yn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4594
4579
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4595
4580
|
width: e,
|
|
4596
4581
|
height: e,
|
|
@@ -4616,7 +4601,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4616
4601
|
fill: t
|
|
4617
4602
|
})
|
|
4618
4603
|
]
|
|
4619
|
-
}),
|
|
4604
|
+
}), Xn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4620
4605
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4621
4606
|
width: e,
|
|
4622
4607
|
height: e,
|
|
@@ -4642,7 +4627,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4642
4627
|
fill: t
|
|
4643
4628
|
})
|
|
4644
4629
|
]
|
|
4645
|
-
}),
|
|
4630
|
+
}), Zn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4646
4631
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4647
4632
|
width: e,
|
|
4648
4633
|
height: e,
|
|
@@ -4668,7 +4653,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4668
4653
|
fill: t
|
|
4669
4654
|
})
|
|
4670
4655
|
]
|
|
4671
|
-
}),
|
|
4656
|
+
}), Qn = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4672
4657
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4673
4658
|
width: e,
|
|
4674
4659
|
height: e,
|
|
@@ -4687,7 +4672,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4687
4672
|
strokeLinecap: "round",
|
|
4688
4673
|
strokeLinejoin: "round"
|
|
4689
4674
|
})]
|
|
4690
|
-
}),
|
|
4675
|
+
}), $n = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4691
4676
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4692
4677
|
width: e,
|
|
4693
4678
|
height: e,
|
|
@@ -4704,7 +4689,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4704
4689
|
d: "M7.91297 4.58764C8.14068 4.81554 8.14054 5.18489 7.91264 5.4126L5.82528 7.4983L7.91297 9.58764C8.14068 9.81554 8.14054 10.1849 7.91264 10.4126C7.68474 10.6403 7.3154 10.6402 7.08768 10.4123L4.58768 7.91029C4.47833 7.80085 4.41693 7.65245 4.41699 7.49774C4.41705 7.34303 4.47857 7.19468 4.58801 7.08533L7.08801 4.58732C7.31591 4.3596 7.68525 4.35975 7.91297 4.58764Z",
|
|
4705
4690
|
fill: t
|
|
4706
4691
|
})]
|
|
4707
|
-
}),
|
|
4692
|
+
}), er = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4708
4693
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4709
4694
|
width: e,
|
|
4710
4695
|
height: e,
|
|
@@ -4736,7 +4721,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4736
4721
|
fill: t
|
|
4737
4722
|
})
|
|
4738
4723
|
]
|
|
4739
|
-
}),
|
|
4724
|
+
}), tr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4740
4725
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4741
4726
|
width: e,
|
|
4742
4727
|
height: e,
|
|
@@ -4753,7 +4738,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4753
4738
|
d: "M13.8 10.2H4.2L4.2 16.8H13.8V10.2ZM4.2 9.00002C3.53726 9.00002 3 9.53727 3 10.2V16.8C3 17.4628 3.53726 18 4.2 18H13.8C14.4627 18 15 17.4628 15 16.8V10.2C15 9.53727 14.4627 9.00002 13.8 9.00002H4.2Z",
|
|
4754
4739
|
fill: t
|
|
4755
4740
|
})]
|
|
4756
|
-
}),
|
|
4741
|
+
}), nr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4757
4742
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4758
4743
|
width: e,
|
|
4759
4744
|
height: e,
|
|
@@ -4785,7 +4770,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4785
4770
|
fill: t
|
|
4786
4771
|
})
|
|
4787
4772
|
]
|
|
4788
|
-
}),
|
|
4773
|
+
}), rr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
4789
4774
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4790
4775
|
width: e,
|
|
4791
4776
|
height: e,
|
|
@@ -4797,7 +4782,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4797
4782
|
d: "M12.3 6.5C12.3 7.77026 11.2703 8.8 10 8.8C8.72974 8.8 7.7 7.77026 7.7 6.5C7.7 5.22975 8.72974 4.2 10 4.2C11.2703 4.2 12.3 5.22975 12.3 6.5ZM12.0809 9.3145C12.9419 8.67689 13.5 7.65362 13.5 6.5C13.5 4.567 11.933 3 10 3C8.067 3 6.5 4.567 6.5 6.5C6.5 7.65362 7.05813 8.67689 7.91909 9.3145C5.06926 10.2006 3 12.8586 3 16C3 16.5523 3.44772 17 4 17H16C16.5523 17 17 16.5523 17 16C17 12.8586 14.9307 10.2006 12.0809 9.3145ZM10 10.2C13.1363 10.2 15.6912 12.6894 15.7966 15.8H4.20338C4.30879 12.6894 6.86369 10.2 10 10.2Z",
|
|
4798
4783
|
fill: t
|
|
4799
4784
|
})
|
|
4800
|
-
}),
|
|
4785
|
+
}), ir = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4801
4786
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4802
4787
|
width: e,
|
|
4803
4788
|
height: e,
|
|
@@ -4829,7 +4814,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4829
4814
|
fill: t
|
|
4830
4815
|
})
|
|
4831
4816
|
]
|
|
4832
|
-
}),
|
|
4817
|
+
}), ar = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4833
4818
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4834
4819
|
width: e,
|
|
4835
4820
|
height: e,
|
|
@@ -4861,7 +4846,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4861
4846
|
fill: t
|
|
4862
4847
|
})
|
|
4863
4848
|
]
|
|
4864
|
-
}),
|
|
4849
|
+
}), or = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
4865
4850
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4866
4851
|
width: e,
|
|
4867
4852
|
height: e,
|
|
@@ -4873,7 +4858,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4873
4858
|
d: "M1.40039 4.00002C1.40039 3.66865 1.66902 3.40002 2.00039 3.40002H5.00039C5.33176 3.40002 5.60039 3.66865 5.60039 4.00002C5.60039 4.3314 5.33176 4.60002 5.00039 4.60002H2.60039V7.00002C2.60039 7.3314 2.33176 7.60002 2.00039 7.60002C1.66902 7.60002 1.40039 7.3314 1.40039 7.00002V4.00002ZM14.4004 4.00002C14.4004 3.66865 14.669 3.40002 15.0004 3.40002H18.0004C18.3318 3.40002 18.6004 3.66865 18.6004 4.00002V7.00002C18.6004 7.3314 18.3318 7.60002 18.0004 7.60002C17.669 7.60002 17.4004 7.3314 17.4004 7.00002V4.60002H15.0004C14.669 4.60002 14.4004 4.3314 14.4004 4.00002ZM2.60039 13C2.60039 12.6687 2.33176 12.4 2.00039 12.4C1.66902 12.4 1.40039 12.6687 1.40039 13V16C1.40039 16.3314 1.66902 16.6 2.00039 16.6H5.00039C5.33176 16.6 5.60039 16.3314 5.60039 16C5.60039 15.6687 5.33176 15.4 5.00039 15.4H2.60039V13ZM18.0004 12.4C18.3318 12.4 18.6004 12.6687 18.6004 13V16C18.6004 16.3314 18.3318 16.6 18.0004 16.6H15.0004C14.669 16.6 14.4004 16.3314 14.4004 16C14.4004 15.6687 14.669 15.4 15.0004 15.4H17.4004V13C17.4004 12.6687 17.669 12.4 18.0004 12.4ZM8.41485 10C8.41485 9.35646 8.5444 8.92639 8.71219 8.67612C8.86188 8.45283 9.05239 8.35002 9.31485 8.35002C9.57732 8.35002 9.76783 8.45283 9.91752 8.67612C10.0853 8.92639 10.2149 9.35646 10.2149 10C10.2149 10.6518 10.0859 11.0807 9.91982 11.3282C9.77304 11.5469 9.58412 11.65 9.31485 11.65C9.04193 11.65 8.85371 11.5462 8.7082 11.3288C8.54281 11.0817 8.41485 10.6529 8.41485 10ZM9.31485 7.15002C8.64123 7.15002 8.08174 7.46153 7.71545 8.0079C7.36726 8.52728 7.21485 9.22222 7.21485 10C7.21485 10.7806 7.36322 11.4768 7.71098 11.9963C8.07863 12.5456 8.64041 12.85 9.31485 12.85C9.98732 12.85 10.5484 12.5449 10.9162 11.997C11.2647 11.4778 11.4149 10.7818 11.4149 10C11.4149 9.22222 11.2625 8.52728 10.9143 8.0079C10.548 7.46153 9.98848 7.15002 9.31485 7.15002ZM13.2147 10C13.2147 9.35646 13.3442 8.92639 13.512 8.67612C13.6617 8.45283 13.8522 8.35002 14.1147 8.35002C14.3771 8.35002 14.5676 8.45283 14.7173 8.67612C14.8851 8.92639 15.0147 9.35646 15.0147 10C15.0147 10.6518 14.8857 11.0807 14.7196 11.3282C14.5728 11.5469 14.3839 11.65 14.1147 11.65C13.8417 11.65 13.6535 11.5462 13.508 11.3288C13.3426 11.0817 13.2147 10.6529 13.2147 10ZM14.1147 7.15002C13.441 7.15002 12.8815 7.46153 12.5153 8.0079C12.1671 8.52728 12.0147 9.22222 12.0147 10C12.0147 10.7806 12.163 11.4768 12.5108 11.9963C12.8784 12.5456 13.4402 12.85 14.1147 12.85C14.7871 12.85 15.3482 12.5449 15.716 11.997C16.0645 11.4778 16.2147 10.7818 16.2147 10C16.2147 9.22222 16.0623 8.52728 15.7141 8.0079C15.3478 7.46153 14.7883 7.15002 14.1147 7.15002ZM6.48572 7.92465C6.48572 7.68989 6.34881 7.47669 6.13533 7.37903C5.92185 7.28137 5.67103 7.31718 5.49341 7.47068L4.20769 8.58179C3.95697 8.79846 3.92937 9.17735 4.14604 9.42807C4.36271 9.67879 4.74161 9.7064 4.99233 9.48972L5.28572 9.23617V12.1675C5.28572 12.4989 5.55435 12.7675 5.88572 12.7675C6.21709 12.7675 6.48572 12.4989 6.48572 12.1675V7.92465Z",
|
|
4874
4859
|
fill: t
|
|
4875
4860
|
})
|
|
4876
|
-
}),
|
|
4861
|
+
}), sr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4877
4862
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4878
4863
|
width: e,
|
|
4879
4864
|
height: e,
|
|
@@ -4905,7 +4890,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4905
4890
|
fill: t
|
|
4906
4891
|
})
|
|
4907
4892
|
]
|
|
4908
|
-
}),
|
|
4893
|
+
}), cr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4909
4894
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4910
4895
|
width: e,
|
|
4911
4896
|
height: e,
|
|
@@ -4931,7 +4916,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4931
4916
|
fill: t
|
|
4932
4917
|
})
|
|
4933
4918
|
]
|
|
4934
|
-
}),
|
|
4919
|
+
}), lr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
4935
4920
|
width: e,
|
|
4936
4921
|
height: e,
|
|
4937
4922
|
viewBox: "0 0 20 20",
|
|
@@ -4943,7 +4928,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4943
4928
|
d: "M6.37292 4.45896L3.67252 5.93744L9.99953 9.40036L12.7003 7.92215L6.37292 4.45896ZM6.04885 3.26831L2.53739 5.19084C2.34498 5.29611 2.18437 5.45112 2.07231 5.63966C2.05651 5.66625 2.04176 5.69337 2.02807 5.72096L2.02789 5.72128C2.012 5.75032 1.99876 5.7801 1.98809 5.81033C1.93071 5.95369 1.90074 6.10715 1.90039 6.26271V6.26407V13.7375V13.7389C1.90089 13.9582 1.96026 14.1734 2.07231 14.3619C2.18437 14.5505 2.34498 14.7055 2.53739 14.8107L9.41239 18.5748C9.59268 18.6735 9.79489 18.7252 10.0004 18.7252C10.2059 18.7252 10.4082 18.6734 10.5885 18.5747L17.4635 14.8107C17.6563 14.7052 17.8172 14.5497 17.9292 14.3606C18.0413 14.1715 18.1004 13.9556 18.1004 13.7358V6.26407L18.1004 6.26271C18.0999 6.04338 18.0405 5.82821 17.9285 5.63966C17.8164 5.45112 17.6558 5.29611 17.4634 5.19084L10.5884 1.42677C10.4081 1.32813 10.2059 1.27643 10.0004 1.27643C9.79488 1.27643 9.59268 1.32813 9.41239 1.42677L6.11828 3.2303C6.0944 3.2414 6.0712 3.25409 6.04885 3.26831ZM7.62242 3.77487L13.95 7.23816L16.3274 5.93696L10.0124 2.4795C10.0087 2.4775 10.0046 2.47643 10.0004 2.47643C9.99621 2.47643 9.99206 2.4775 9.98839 2.4795L7.62242 3.77487ZM13.1497 9.04417V11.875C13.1497 12.2064 13.4184 12.475 13.7497 12.475C14.0811 12.475 14.3497 12.2064 14.3497 11.875V8.38738L16.9004 6.99133V13.7361C16.9004 13.7406 16.8992 13.745 16.8969 13.7488C16.8946 13.7527 16.8912 13.7559 16.8872 13.7581L10.6004 17.2002V10.4395L13.1497 9.04417ZM9.40039 10.4404L3.10039 6.99228V13.7364C3.10044 13.7408 3.10165 13.7451 3.1039 13.7489C3.10618 13.7527 3.10946 13.7559 3.11339 13.758L9.40039 17.2002V10.4404Z",
|
|
4944
4929
|
fill: t
|
|
4945
4930
|
})
|
|
4946
|
-
}),
|
|
4931
|
+
}), ur = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4947
4932
|
width: e,
|
|
4948
4933
|
height: e,
|
|
4949
4934
|
viewBox: "0 0 20 20",
|
|
@@ -4987,7 +4972,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
4987
4972
|
fill: t
|
|
4988
4973
|
})
|
|
4989
4974
|
]
|
|
4990
|
-
}),
|
|
4975
|
+
}), dr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
4991
4976
|
width: e,
|
|
4992
4977
|
height: e,
|
|
4993
4978
|
viewBox: "0 0 20 20",
|
|
@@ -5002,7 +4987,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5002
4987
|
d: "M6.53437 5.73466C6.9762 5.73466 7.33437 6.09283 7.33437 6.53466C7.33438 6.97648 6.9762 7.33466 6.53438 7.33466C6.09255 7.33466 5.73437 6.97648 5.73437 6.53466C5.73437 6.09283 6.09255 5.73466 6.53437 5.73466Z",
|
|
5003
4988
|
fill: t
|
|
5004
4989
|
})]
|
|
5005
|
-
}),
|
|
4990
|
+
}), fr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5006
4991
|
width: e,
|
|
5007
4992
|
height: e,
|
|
5008
4993
|
viewBox: "0 0 20 20",
|
|
@@ -5014,7 +4999,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5014
4999
|
d: "M10.7642 2.84438C10.3362 2.41638 9.75073 2.18362 9.14569 2.20091L4.09331 2.34526C3.13951 2.37252 2.3727 3.13932 2.34545 4.09312L2.20109 9.14551C2.18381 9.75054 2.41656 10.336 2.84456 10.764L9.90722 17.8266C10.7664 18.6858 12.1593 18.6858 13.0185 17.8266L17.8268 13.0183C18.686 12.1592 18.686 10.7662 17.8268 9.90703L10.7642 2.84438ZM7.33437 6.53466C7.33437 6.09283 6.9762 5.73466 6.53437 5.73466C6.09255 5.73466 5.73438 6.09283 5.73438 6.53466C5.73438 6.97648 6.09255 7.33466 6.53438 7.33466C6.9762 7.33466 7.33437 6.97648 7.33437 6.53466Z",
|
|
5015
5000
|
fill: t
|
|
5016
5001
|
})
|
|
5017
|
-
}),
|
|
5002
|
+
}), pr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5018
5003
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5019
5004
|
width: e,
|
|
5020
5005
|
height: e,
|
|
@@ -5027,7 +5012,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5027
5012
|
d: "M12.5257 9.99997L12.5257 6.87497C12.5257 6.5436 12.794 6.27536 13.1253 6.27536C13.4567 6.27536 13.7249 6.5436 13.7249 6.87497L13.7249 9.99997C13.7249 10.8056 13.874 11.4598 14.1429 11.8925C14.3896 12.2893 14.7475 12.5254 15.3128 12.5254C15.8782 12.5254 16.2361 12.2893 16.4828 11.8925C16.7517 11.4598 16.9007 10.8056 16.9007 9.99997C16.9007 8.63543 16.4957 7.30158 15.7376 6.16696C14.9795 5.03227 13.9018 4.14722 12.641 3.62497C11.3803 3.10278 9.99297 2.96627 8.65463 3.23239C7.31617 3.49863 6.08641 4.15608 5.12143 5.12107C4.15645 6.08605 3.499 7.3158 3.23276 8.65427C2.96664 9.9926 3.10315 11.3799 3.62534 12.6406C4.14758 13.9014 5.03263 14.9791 6.16733 15.7373C7.30195 16.4953 8.6358 16.9004 10.0003 16.9004L10.2699 16.8945C11.6205 16.8443 13.0324 16.4219 14.0433 15.75C14.3193 15.5667 14.692 15.642 14.8753 15.9179C15.0586 16.1939 14.9833 16.5666 14.7074 16.75C13.4904 17.5588 11.8573 18.038 10.3089 18.0947L10.0003 18.0996C8.39842 18.0996 6.83231 17.6252 5.50034 16.7353C4.1683 15.8453 3.13001 14.5797 2.51694 13.0996C1.90392 11.6196 1.74351 9.99106 2.056 8.41989C2.36854 6.84865 3.13999 5.40524 4.2728 4.27243C5.4056 3.13963 6.84901 2.36818 8.42026 2.05564C9.99143 1.74314 11.6199 1.90356 13.0999 2.51657C14.58 3.12964 15.8456 4.16793 16.7357 5.49997C17.6256 6.83195 18.0999 8.39806 18.0999 9.99997C18.0999 10.92 17.9363 11.828 17.5023 12.5263C17.0458 13.2606 16.31 13.7246 15.3128 13.7246C14.3157 13.7246 13.5799 13.2606 13.1234 12.5263C12.6893 11.828 12.5257 10.92 12.5257 9.99997Z",
|
|
5028
5013
|
fill: t
|
|
5029
5014
|
})]
|
|
5030
|
-
}),
|
|
5015
|
+
}), mr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5031
5016
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5032
5017
|
width: e,
|
|
5033
5018
|
height: e,
|
|
@@ -5039,7 +5024,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5039
5024
|
d: "M8.89941 0.675069C9.59221 0.308262 10.4078 0.308261 11.1006 0.675069L11.2471 0.76003L11.2588 0.766866L11.2705 0.774678L13.6309 2.40065H14.5C15.3837 2.40065 16.0996 3.11661 16.0996 4.00026V4.09987L17.1475 4.82253L17.2568 4.90261C17.7871 5.31798 18.0996 5.9565 18.0996 6.63503V14.3675C18.0993 15.5515 17.2066 16.5999 16 16.5999H4C2.7934 16.5999 1.90066 15.5515 1.90039 14.3675V6.63503C1.90039 5.91126 2.25649 5.23309 2.85254 4.82253L3.90039 4.09987V4.00026C3.90039 3.11661 4.61634 2.40065 5.5 2.40065H6.36914L8.72949 0.774678L8.74121 0.766866L8.75293 0.76003L8.89941 0.675069ZM11.2461 11.0149L11.2344 11.0217L11.2236 11.0276C10.459 11.4354 9.54101 11.4354 8.77637 11.0276L8.76562 11.0217L8.75391 11.0149L3.09961 7.68386V14.3675C3.09986 14.9867 3.55005 15.4007 4 15.4007H16C16.4499 15.4007 16.9001 14.9867 16.9004 14.3675V7.68386L11.2461 11.0149ZM5.5 3.59987C5.27909 3.59987 5.09961 3.77935 5.09961 4.00026V7.46901L9.34473 9.96999C9.75445 10.1871 10.2445 10.1868 10.6543 9.96999L14.9004 7.46804V4.00026C14.9004 3.77935 14.7209 3.59987 14.5 3.59987H5.5Z",
|
|
5040
5025
|
fill: t
|
|
5041
5026
|
})
|
|
5042
|
-
}),
|
|
5027
|
+
}), hr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5043
5028
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5044
5029
|
width: e,
|
|
5045
5030
|
height: e,
|
|
@@ -5063,7 +5048,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5063
5048
|
fill: t
|
|
5064
5049
|
})
|
|
5065
5050
|
]
|
|
5066
|
-
}),
|
|
5051
|
+
}), gr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5067
5052
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5068
5053
|
width: e,
|
|
5069
5054
|
height: e,
|
|
@@ -5087,7 +5072,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5087
5072
|
fill: t
|
|
5088
5073
|
})
|
|
5089
5074
|
]
|
|
5090
|
-
}),
|
|
5075
|
+
}), _r = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5091
5076
|
width: e,
|
|
5092
5077
|
height: e,
|
|
5093
5078
|
viewBox: "0 0 20 20",
|
|
@@ -5111,7 +5096,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5111
5096
|
fill: t
|
|
5112
5097
|
})
|
|
5113
5098
|
]
|
|
5114
|
-
}),
|
|
5099
|
+
}), vr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5115
5100
|
width: e,
|
|
5116
5101
|
height: e,
|
|
5117
5102
|
viewBox: "0 0 20 20",
|
|
@@ -5124,7 +5109,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5124
5109
|
d: "M2.69141 15.25V4.75C2.69141 4.19305 2.91184 3.65847 3.30566 3.26465C3.69949 2.87082 4.23406 2.65039 4.79102 2.65039H13.041L13.1621 2.66211C13.4354 2.71811 13.6406 2.9601 13.6406 3.25C13.6406 3.5399 13.4354 3.78189 13.1621 3.83789L13.041 3.84961H4.79102C4.55232 3.84961 4.32308 3.9445 4.1543 4.11328C3.98551 4.28206 3.89062 4.51131 3.89062 4.75V15.25C3.89062 15.4887 3.98551 15.7179 4.1543 15.8867C4.32308 16.0555 4.55232 16.1504 4.79102 16.1504H15.291C15.5297 16.1504 15.759 16.0555 15.9277 15.8867C16.0965 15.7179 16.1914 15.4887 16.1914 15.25V10C16.1914 9.66863 16.4596 9.40039 16.791 9.40039C17.1224 9.40039 17.3906 9.66863 17.3906 10V15.25C17.3906 15.807 17.1702 16.3415 16.7764 16.7354C16.3825 17.1292 15.848 17.3496 15.291 17.3496H4.79102C4.23406 17.3496 3.69949 17.1292 3.30566 16.7354C2.91184 16.3415 2.69141 15.807 2.69141 15.25Z",
|
|
5125
5110
|
fill: t
|
|
5126
5111
|
})]
|
|
5127
|
-
}),
|
|
5112
|
+
}), yr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5128
5113
|
width: e,
|
|
5129
5114
|
height: e,
|
|
5130
5115
|
viewBox: "0 0 20 20",
|
|
@@ -5137,7 +5122,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5137
5122
|
d: "M15.9993 6C17.1039 6 17.9993 5.10457 17.9993 4C17.9993 2.89543 17.1039 2 15.9993 2C14.8948 2 13.9993 2.89543 13.9993 4C13.9993 5.10457 14.8948 6 15.9993 6Z",
|
|
5138
5123
|
fill: t
|
|
5139
5124
|
})]
|
|
5140
|
-
}),
|
|
5125
|
+
}), br = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5141
5126
|
width: e,
|
|
5142
5127
|
height: e,
|
|
5143
5128
|
viewBox: "0 0 20 20",
|
|
@@ -5161,7 +5146,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5161
5146
|
fill: t
|
|
5162
5147
|
})
|
|
5163
5148
|
]
|
|
5164
|
-
}),
|
|
5149
|
+
}), xr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5165
5150
|
width: e,
|
|
5166
5151
|
height: e,
|
|
5167
5152
|
viewBox: "0 0 20 20",
|
|
@@ -5185,7 +5170,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5185
5170
|
fill: t
|
|
5186
5171
|
})
|
|
5187
5172
|
]
|
|
5188
|
-
}),
|
|
5173
|
+
}), Sr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5189
5174
|
width: e,
|
|
5190
5175
|
height: e,
|
|
5191
5176
|
viewBox: "0 0 20 20",
|
|
@@ -5198,7 +5183,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5198
5183
|
d: "M13.912 7.08815C14.4643 7.08815 14.912 6.64044 14.912 6.08815C14.912 5.53587 14.4643 5.08815 13.912 5.08815C13.3597 5.08815 12.912 5.53587 12.912 6.08815C12.912 6.64044 13.3597 7.08815 13.912 7.08815Z",
|
|
5199
5184
|
fill: t
|
|
5200
5185
|
})]
|
|
5201
|
-
}),
|
|
5186
|
+
}), Cr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5202
5187
|
width: e,
|
|
5203
5188
|
height: e,
|
|
5204
5189
|
viewBox: "0 0 20 20",
|
|
@@ -5211,7 +5196,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5211
5196
|
d: "M17.3 9.99963V6.33655H13.636C13.2494 6.33655 12.9358 6.02295 12.9358 5.63635C12.9358 5.24975 13.2494 4.93616 13.636 4.93616H17.9992C18.3858 4.93616 18.6994 5.24975 18.6994 5.63635V9.99963C18.6994 10.3862 18.3858 10.6998 17.9992 10.6998C17.6128 10.6996 17.3 10.3861 17.3 9.99963Z",
|
|
5212
5197
|
fill: t
|
|
5213
5198
|
})]
|
|
5214
|
-
}),
|
|
5199
|
+
}), wr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5215
5200
|
width: e,
|
|
5216
5201
|
height: e,
|
|
5217
5202
|
viewBox: "0 0 20 20",
|
|
@@ -5224,7 +5209,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5224
5209
|
d: "M17.301 9.99998C17.301 9.6135 17.6138 9.29998 18.0002 9.29979C18.3868 9.29979 18.7004 9.61338 18.7004 9.99998V14.3633C18.7004 14.7499 18.3868 15.0635 18.0002 15.0635H13.6369C13.2503 15.0635 12.9367 14.7499 12.9367 14.3633C12.9369 13.9768 13.2504 13.664 13.6369 13.664H17.301V9.99998Z",
|
|
5225
5210
|
fill: t
|
|
5226
5211
|
})]
|
|
5227
|
-
}),
|
|
5212
|
+
}), Tr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5228
5213
|
width: e,
|
|
5229
5214
|
height: e,
|
|
5230
5215
|
viewBox: "0 0 20 20",
|
|
@@ -5237,7 +5222,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5237
5222
|
d: "M6.41602 5.9258C6.41616 4.43085 7.38475 3.18104 8.62988 2.62306C9.90736 2.0506 11.5145 2.18522 12.7686 3.46486C13.715 4.43081 13.916 5.5606 13.707 6.58693C13.5053 7.57751 12.9298 8.4575 12.3369 9.06252C11.2475 10.1741 10.3927 10.9965 10.3926 12.4971C10.3926 12.8836 10.0789 13.1972 9.69238 13.1973C9.30578 13.1973 8.99219 12.8837 8.99219 12.4971C8.99233 10.3361 10.3235 9.11609 11.3369 8.08205C11.7955 7.61411 12.2017 6.96647 12.3359 6.30763C12.4627 5.68475 12.3544 5.04219 11.7686 4.44435C10.9535 3.61262 9.98336 3.5513 9.20215 3.90138C8.38903 4.26597 7.81656 5.05722 7.81641 5.9258C7.81641 6.3124 7.50281 6.62599 7.11621 6.62599C6.72961 6.62599 6.41602 6.3124 6.41602 5.9258Z",
|
|
5238
5223
|
fill: t
|
|
5239
5224
|
})]
|
|
5240
|
-
}),
|
|
5225
|
+
}), Er = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5241
5226
|
width: e,
|
|
5242
5227
|
height: e,
|
|
5243
5228
|
viewBox: "0 0 20 20",
|
|
@@ -5247,7 +5232,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5247
5232
|
d: "M16.5624 2.04222C16.7558 1.98773 16.9604 1.98606 17.1547 2.03677C17.3491 2.08752 17.5268 2.18902 17.6689 2.3311C17.811 2.47319 17.9125 2.65086 17.9632 2.84527C18.0139 3.03965 18.0123 3.24422 17.9578 3.43757L17.9541 3.44756L13.7908 17.1758C13.7283 17.3972 13.6004 17.5953 13.4229 17.7417C13.2454 17.8881 13.0272 17.9768 12.7979 17.9961C12.5685 18.0153 12.3387 17.9638 12.1393 17.8489C11.9398 17.734 11.7799 17.561 11.6814 17.3529V17.352L8.72357 11.2746L2.64162 8.31584V8.31493C2.43625 8.21631 2.2649 8.05906 2.15106 7.86162C2.03625 7.66228 1.98479 7.43225 2.0039 7.20301C2.0231 6.97363 2.11181 6.75469 2.25826 6.5771C2.40244 6.40238 2.59602 6.27544 2.81331 6.21191L16.5524 2.04585L16.5624 2.04222ZM9.81732 10.9712L12.688 16.8705L12.6907 16.876C12.6919 16.8783 12.6939 16.8801 12.6961 16.8814C12.6986 16.8828 12.7015 16.8843 12.7043 16.8842C12.7072 16.8839 12.7102 16.8824 12.7125 16.8805C12.7147 16.8787 12.7162 16.876 12.717 16.8732L12.7198 16.8633L16.5461 4.24244L9.81732 10.9712ZM3.13671 7.28023L3.12672 7.28295C3.12398 7.28373 3.1213 7.28532 3.11945 7.2875C3.11759 7.28975 3.11606 7.29275 3.11582 7.29567C3.11557 7.29859 3.11708 7.30131 3.11854 7.30385L3.12399 7.31021L3.12944 7.31202L9.02789 10.1827L15.7585 3.4521L3.13671 7.28023Z",
|
|
5248
5233
|
fill: t
|
|
5249
5234
|
})
|
|
5250
|
-
}),
|
|
5235
|
+
}), Dr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5251
5236
|
width: e,
|
|
5252
5237
|
height: e,
|
|
5253
5238
|
viewBox: "0 0 20 20",
|
|
@@ -5257,7 +5242,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5257
5242
|
d: "M11.5029 1.40039C11.9803 1.40039 12.4388 1.58927 12.7764 1.92676L16.0732 5.22461C16.4107 5.56215 16.6006 6.01977 16.6006 6.49707V8H17C17.5523 8 18 8.44772 18 9V14C18 14.5523 17.5523 15 17 15H16.6006V16.7998C16.6006 17.7938 15.7947 18.5994 14.8008 18.5996H5.2002C4.20617 18.5995 3.40039 17.7938 3.40039 16.7998V15H3C2.44772 15 2 14.5523 2 14V9C2 8.44772 2.44772 8 3 8H3.40039V3.2002C3.40039 2.20615 4.20617 1.4005 5.2002 1.40039H11.5029ZM4.60059 16.7998C4.60059 17.1311 4.86891 17.4003 5.2002 17.4004H14.8008C15.132 17.4002 15.4004 17.131 15.4004 16.7998V15H4.60059V16.7998ZM5.85645 9.3125C5.47837 9.31253 5.1396 9.39993 4.83984 9.57422C4.53995 9.74671 4.30335 9.99785 4.13086 10.3271C3.9604 10.6564 3.875 11.0473 3.875 11.5C3.875 11.9507 3.96039 12.3416 4.13086 12.6729C4.30132 13.002 4.53524 13.2543 4.83301 13.4287C5.13285 13.6012 5.47431 13.6875 5.85645 13.6875C6.20338 13.6875 6.51077 13.6187 6.77734 13.4814C7.04373 13.3423 7.25538 13.1579 7.41211 12.9287C7.56885 12.6994 7.66395 12.4501 7.69727 12.1816L6.80371 12.1758C6.76259 12.4029 6.65755 12.5816 6.48926 12.7109C6.32069 12.8383 6.11318 12.9033 5.86816 12.9053C5.64874 12.9033 5.45658 12.848 5.29199 12.7402C5.12954 12.6325 5.00221 12.4741 4.91016 12.2646C4.81999 12.0549 4.77442 11.7999 4.77441 11.5C4.77441 11.206 4.81999 10.9539 4.91016 10.7441C5.00031 10.5326 5.12741 10.3714 5.29199 10.2617C5.45851 10.152 5.65269 10.0967 5.87402 10.0947C6.12492 10.0967 6.33437 10.1655 6.50098 10.3008C6.66732 10.436 6.76846 10.6205 6.80371 10.8535H7.69727C7.65808 10.5322 7.55513 10.2556 7.38867 10.0244C7.22402 9.79312 7.00875 9.61664 6.74414 9.49512C6.47959 9.37367 6.18368 9.3125 5.85645 9.3125ZM9.89551 9.3125C9.5859 9.3125 9.30844 9.36687 9.06348 9.47461C8.82042 9.58241 8.62843 9.73368 8.48926 9.92969C8.35207 10.1237 8.28418 10.3478 8.28418 10.6006C8.28431 11.1826 8.67024 11.5687 9.44238 11.7588L9.90723 11.8701C10.156 11.9309 10.3395 12.0027 10.457 12.085C10.5764 12.1653 10.6357 12.2741 10.6357 12.4111C10.6357 12.5169 10.6046 12.6101 10.542 12.6904C10.4793 12.7708 10.39 12.8338 10.2744 12.8789C10.1589 12.9239 10.0248 12.9462 9.87207 12.9463C9.62902 12.9463 9.43023 12.892 9.27734 12.7822C9.12647 12.6705 9.04401 12.5095 9.03027 12.2998H8.17188C8.17973 12.5997 8.2544 12.8538 8.39551 13.0615C8.53656 13.2691 8.73372 13.4254 8.98633 13.5312C9.23918 13.6371 9.53881 13.6895 9.88379 13.6875C10.2247 13.6875 10.5188 13.6351 10.7656 13.5312C11.0124 13.4274 11.2017 13.2799 11.333 13.0879C11.4643 12.8958 11.5303 12.6699 11.5303 12.4111C11.5282 12.0761 11.4129 11.8073 11.1855 11.6055C10.9582 11.4018 10.6476 11.2552 10.2539 11.165L9.87207 11.0703C9.66254 11.0233 9.49552 10.9601 9.37207 10.8799C9.25054 10.7976 9.18945 10.6851 9.18945 10.5439C9.18955 10.4502 9.2169 10.3662 9.27148 10.292C9.32634 10.2176 9.40597 10.1593 9.50977 10.1182C9.61561 10.075 9.74264 10.0537 9.88965 10.0537C10.1048 10.0538 10.276 10.1005 10.4033 10.1943C10.5327 10.2884 10.6064 10.4203 10.624 10.5889H11.4707C11.4668 10.3399 11.3999 10.1188 11.2686 9.92676C11.1373 9.73284 10.9528 9.5824 10.7158 9.47461C10.4788 9.36685 10.205 9.31255 9.89551 9.3125ZM13.3418 13.6289H14.4766L15.9463 9.37109H14.9707L13.9297 12.6172H13.8887L12.8535 9.37109H11.8652L13.3418 13.6289ZM5.2002 2.59961C4.86891 2.59971 4.60059 2.86889 4.60059 3.2002V8H15.4004V6.59961H12C11.6688 6.5994 11.4004 6.33124 11.4004 6V2.59961H5.2002ZM12.6006 5.40039H14.5518L12.6006 3.44824V5.40039Z",
|
|
5258
5243
|
fill: t
|
|
5259
5244
|
})
|
|
5260
|
-
}),
|
|
5245
|
+
}), Or = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5261
5246
|
width: e,
|
|
5262
5247
|
height: e,
|
|
5263
5248
|
viewBox: "0 0 20 20",
|
|
@@ -5295,7 +5280,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5295
5280
|
fill: t
|
|
5296
5281
|
})
|
|
5297
5282
|
]
|
|
5298
|
-
}),
|
|
5283
|
+
}), kr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5299
5284
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5300
5285
|
width: e,
|
|
5301
5286
|
height: e,
|
|
@@ -5344,7 +5329,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5344
5329
|
fill: t
|
|
5345
5330
|
})
|
|
5346
5331
|
]
|
|
5347
|
-
}),
|
|
5332
|
+
}), Ar = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5348
5333
|
width: e,
|
|
5349
5334
|
height: e,
|
|
5350
5335
|
viewBox: "0 0 20 20",
|
|
@@ -5370,7 +5355,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5370
5355
|
fill: t
|
|
5371
5356
|
})
|
|
5372
5357
|
]
|
|
5373
|
-
}),
|
|
5358
|
+
}), jr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5374
5359
|
width: e,
|
|
5375
5360
|
height: e,
|
|
5376
5361
|
viewBox: "0 0 20 20",
|
|
@@ -5383,7 +5368,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5383
5368
|
d: "M15.4524 1.02355C15.507 0.857385 15.7421 0.857384 15.7967 1.02355L16.3787 2.79311C16.4686 3.06652 16.683 3.28095 16.9564 3.37087L18.726 3.95285C18.8922 4.0075 18.8922 4.24255 18.726 4.2972L16.9564 4.87918C16.683 4.9691 16.4686 5.18353 16.3787 5.45694L15.7967 7.2265C15.7421 7.39267 15.507 7.39267 15.4524 7.2265L14.8704 5.45694C14.7805 5.18353 14.566 4.9691 14.2926 4.87918L12.5231 4.2972C12.3569 4.24255 12.3569 4.0075 12.5231 3.95285L14.2926 3.37087C14.566 3.28095 14.7805 3.06652 14.8704 2.79311L15.4524 1.02355Z",
|
|
5384
5369
|
fill: t
|
|
5385
5370
|
})]
|
|
5386
|
-
}),
|
|
5371
|
+
}), Mr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5387
5372
|
width: e,
|
|
5388
5373
|
height: e,
|
|
5389
5374
|
viewBox: "0 0 20 20",
|
|
@@ -5446,7 +5431,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5446
5431
|
]
|
|
5447
5432
|
})] })
|
|
5448
5433
|
]
|
|
5449
|
-
}),
|
|
5434
|
+
}), Nr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5450
5435
|
width: e,
|
|
5451
5436
|
height: e,
|
|
5452
5437
|
viewBox: "0 0 20 20",
|
|
@@ -5461,7 +5446,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5461
5446
|
d: "M10.625 13.125C10.9702 13.125 11.25 13.4048 11.25 13.75C11.25 14.0952 10.9702 14.375 10.625 14.375H5.625C5.27982 14.375 5 14.0952 5 13.75C5 13.4048 5.27982 13.125 5.625 13.125H10.625Z",
|
|
5462
5447
|
fill: t
|
|
5463
5448
|
})]
|
|
5464
|
-
}),
|
|
5449
|
+
}), Pr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5465
5450
|
width: e,
|
|
5466
5451
|
height: e,
|
|
5467
5452
|
viewBox: "0 0 20 20",
|
|
@@ -5481,7 +5466,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5481
5466
|
fill: t
|
|
5482
5467
|
})
|
|
5483
5468
|
]
|
|
5484
|
-
}),
|
|
5469
|
+
}), Fr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5485
5470
|
width: e,
|
|
5486
5471
|
height: e,
|
|
5487
5472
|
viewBox: "0 0 20 20",
|
|
@@ -5491,7 +5476,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5491
5476
|
d: "M17.3181 15.6068L12.4986 7.57163V3.12476H13.1236C13.2893 3.12476 13.4483 3.05891 13.5655 2.9417C13.6827 2.82449 13.7486 2.66552 13.7486 2.49976C13.7486 2.334 13.6827 2.17502 13.5655 2.05781C13.4483 1.9406 13.2893 1.87476 13.1236 1.87476H6.87355C6.70779 1.87476 6.54882 1.9406 6.43161 2.05781C6.3144 2.17502 6.24855 2.334 6.24855 2.49976C6.24855 2.66552 6.3144 2.82449 6.43161 2.9417C6.54882 3.05891 6.70779 3.12476 6.87355 3.12476H7.49855V7.57163L2.67902 15.6068C2.56535 15.7963 2.50395 16.0125 2.50108 16.2335C2.49821 16.4545 2.55397 16.6723 2.66267 16.8647C2.77138 17.057 2.92914 17.2172 3.1199 17.3288C3.31065 17.4403 3.52757 17.4993 3.74855 17.4998H16.2486C16.4697 17.4997 16.687 17.441 16.878 17.3296C17.0691 17.2182 17.2272 17.0581 17.3362 16.8657C17.4452 16.6732 17.5011 16.4553 17.4984 16.2341C17.4956 16.0129 17.4342 15.7965 17.3204 15.6068H17.3181ZM8.65949 8.06616C8.71794 7.96927 8.74875 7.85822 8.74855 7.74507V3.12476H11.2486V7.74507C11.2484 7.85822 11.2792 7.96927 11.3376 8.06616L14.3236 13.0466C13.3861 13.2318 12.0525 13.1537 10.2806 12.2568C9.03761 11.6279 7.8548 11.2943 6.74777 11.256L8.65949 8.06616ZM3.74855 16.2498L5.97824 12.5326C7.09152 12.3966 8.34621 12.6771 9.71418 13.3701C11.1986 14.1208 12.4486 14.3763 13.4642 14.3763C13.9807 14.3786 14.4949 14.3076 14.9915 14.1654L16.2486 16.2498H3.74855Z",
|
|
5492
5477
|
fill: t
|
|
5493
5478
|
})
|
|
5494
|
-
}),
|
|
5479
|
+
}), Ir = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5495
5480
|
width: e,
|
|
5496
5481
|
height: e,
|
|
5497
5482
|
viewBox: "0 0 20 20",
|
|
@@ -5501,7 +5486,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5501
5486
|
d: "M18.7045 10.3908L16.2045 4.14081C16.1495 4.00314 16.0473 3.88953 15.9162 3.82026C15.7851 3.75099 15.6336 3.73059 15.4889 3.76268L10.624 4.84393V3.12518C10.624 2.95942 10.5582 2.80045 10.441 2.68324C10.3238 2.56603 10.1648 2.50018 9.99903 2.50018C9.83327 2.50018 9.6743 2.56603 9.55709 2.68324C9.43988 2.80045 9.37403 2.95942 9.37403 3.12518V5.12362L4.2381 6.26503C4.13907 6.2869 4.04686 6.33254 3.96941 6.39801C3.89197 6.46348 3.83162 6.54681 3.79357 6.64081V6.6455L1.29357 12.8908C1.26366 12.9653 1.24853 13.0449 1.24904 13.1252C1.24904 14.9463 3.16622 15.6252 4.37404 15.6252C5.58185 15.6252 7.49903 14.9463 7.49903 13.1252C7.49954 13.0449 7.48441 12.9653 7.4545 12.8908L5.22716 7.32596L9.37403 6.40643V16.2502H8.12403C7.95827 16.2502 7.7993 16.316 7.68209 16.4332C7.56488 16.5505 7.49903 16.7094 7.49903 16.8752C7.49903 17.0409 7.56488 17.1999 7.68209 17.3171C7.7993 17.4343 7.95827 17.5002 8.12403 17.5002H11.874C12.0398 17.5002 12.1988 17.4343 12.316 17.3171C12.4332 17.1999 12.499 17.0409 12.499 16.8752C12.499 16.7094 12.4332 16.5505 12.316 16.4332C12.1988 16.316 12.0398 16.2502 11.874 16.2502H10.624V6.12675L14.6084 5.24237L12.5436 10.3908C12.5137 10.4653 12.4985 10.5449 12.499 10.6252C12.499 12.4463 14.4162 13.1252 15.624 13.1252C16.8318 13.1252 18.749 12.4463 18.749 10.6252C18.7495 10.5449 18.7344 10.4653 18.7045 10.3908ZM4.37404 14.3752C3.78575 14.3752 2.59591 14.0932 2.5045 13.2314L4.37404 8.558L6.24357 13.2314C6.15216 14.0932 4.96232 14.3752 4.37404 14.3752ZM15.624 11.8752C15.0358 11.8752 13.8459 11.5932 13.7545 10.7314L15.624 6.058L17.4936 10.7314C17.4022 11.5932 16.2123 11.8752 15.624 11.8752Z",
|
|
5502
5487
|
fill: t
|
|
5503
5488
|
})
|
|
5504
|
-
}),
|
|
5489
|
+
}), Lr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5505
5490
|
width: e,
|
|
5506
5491
|
height: e,
|
|
5507
5492
|
viewBox: "0 0 20 20",
|
|
@@ -5511,7 +5496,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5511
5496
|
d: "M17.0579 2.05763C17.3019 1.8139 17.6977 1.81385 17.9417 2.05763C18.1858 2.30171 18.1858 2.69832 17.9417 2.9424L10.4417 10.4424C10.1977 10.6862 9.80192 10.6861 9.55789 10.4424C9.31381 10.1983 9.31381 9.80171 9.55789 9.55763L11.72 7.39455C11.2923 7.11257 10.8001 6.93652 10.2835 6.88966C9.55584 6.82367 8.82824 7.01481 8.22684 7.4297C7.62552 7.84454 7.1882 8.45663 6.99148 9.16017C6.7948 9.86383 6.85057 10.6147 7.14969 11.2813C7.4488 11.9479 7.97278 12.4887 8.62918 12.8096C9.28549 13.1303 10.0338 13.2105 10.7434 13.0371C11.453 12.8636 12.0796 12.4467 12.5139 11.8594C12.9481 11.2721 13.1633 10.5514 13.1214 9.82228C13.1015 9.47767 13.3647 9.18198 13.7093 9.16212C14.0538 9.14237 14.3496 9.40547 14.3694 9.75001C14.4283 10.7712 14.127 11.7811 13.5188 12.6035C12.9106 13.4258 12.0329 14.0092 11.0393 14.252C10.046 14.4946 8.99903 14.3816 8.08035 13.9326C7.16148 13.4835 6.42882 12.7261 6.01004 11.793C5.59133 10.8598 5.51213 9.80926 5.78738 8.82423C6.06274 7.83911 6.67491 6.98125 7.51687 6.4004C8.35882 5.81959 9.37808 5.55216 10.3968 5.64455C11.2057 5.71798 11.973 6.016 12.6175 6.49708L14.3968 4.71779C13.2438 3.76076 11.8047 3.20208 10.2962 3.13966C8.57776 3.06858 6.89508 3.6459 5.58133 4.75587C4.26784 5.86576 3.41834 7.42792 3.20144 9.1338C2.98462 10.8399 3.41622 12.5655 4.41043 13.9688C5.40478 15.3721 6.88998 16.3519 8.57156 16.7129C10.253 17.0738 12.0089 16.7904 13.4915 15.919C14.9742 15.0474 16.0758 13.6507 16.5784 12.0059C17.0809 10.3611 16.9477 8.58752 16.2054 7.03615C16.0564 6.7248 16.188 6.35115 16.4993 6.20216C16.8106 6.05321 17.1843 6.18574 17.3333 6.49708C18.2106 8.33081 18.3677 10.427 17.7737 12.3711C17.1797 14.3153 15.8778 15.9659 14.1253 16.9961C12.3726 18.0263 10.2966 18.3613 8.30887 17.9346C6.32114 17.5078 4.56628 16.3502 3.3909 14.6914C2.21557 13.0326 1.7049 10.9933 1.96121 8.97658C2.21752 6.95983 3.22181 5.11286 4.77469 3.8008C6.32765 2.48872 8.31663 1.80659 10.3479 1.89064C12.17 1.96603 13.9062 2.65412 15.2835 3.83107L17.0579 2.05763Z",
|
|
5512
5497
|
fill: t
|
|
5513
5498
|
})
|
|
5514
|
-
}),
|
|
5499
|
+
}), Rr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5515
5500
|
width: e,
|
|
5516
5501
|
height: e,
|
|
5517
5502
|
viewBox: "0 0 20 20",
|
|
@@ -5521,7 +5506,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5521
5506
|
d: "M15.7871 2.70365C16.0193 2.44858 16.4156 2.42976 16.6709 2.66166C16.9262 2.89378 16.9448 3.29004 16.7129 3.54544L13.6865 6.87455H16.875C17.22 6.87455 17.4998 7.15457 17.5 7.49955C17.5 7.84472 17.2202 8.12455 16.875 8.12455H12.5498L9.14062 11.8745H16.875C17.22 11.8745 17.4998 12.1546 17.5 12.4995C17.5 12.8447 17.2202 13.1245 16.875 13.1245H8.00488L4.21289 17.2954C3.98069 17.5508 3.5845 17.5696 3.3291 17.3374C3.07394 17.1052 3.055 16.709 3.28711 16.4536L6.31348 13.1245H3.125C2.77982 13.1245 2.5 12.8447 2.5 12.4995C2.50024 12.1546 2.77997 11.8745 3.125 11.8745H7.4502L10.8594 8.12455H3.125C2.77982 8.12455 2.5 7.84472 2.5 7.49955C2.50024 7.15457 2.77997 6.87455 3.125 6.87455H11.9951L15.7871 2.70365Z",
|
|
5522
5507
|
fill: t
|
|
5523
5508
|
})
|
|
5524
|
-
}),
|
|
5509
|
+
}), zr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5525
5510
|
width: e,
|
|
5526
5511
|
height: e,
|
|
5527
5512
|
viewBox: "0 0 20 20",
|
|
@@ -5533,7 +5518,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5533
5518
|
d: "M10 1.90039C11.9789 1.90039 13.8003 2.33605 15.1484 3.07129C16.4739 3.79426 17.4746 4.89197 17.4746 6.25V13.75C17.4746 15.108 16.4739 16.2057 15.1484 16.9287C13.8003 17.664 11.9789 18.0996 10 18.0996C8.02109 18.0996 6.19968 17.664 4.85156 16.9287C3.52611 16.2057 2.52539 15.108 2.52539 13.75V6.25C2.52539 4.89197 3.52612 3.79426 4.85156 3.07129C6.19967 2.33605 8.02107 1.90039 10 1.90039ZM16.2754 12.3945C15.9452 12.6902 15.5627 12.9528 15.1484 13.1787C13.8003 13.914 11.9789 14.3496 10 14.3496C8.02109 14.3496 6.19968 13.914 4.85156 13.1787C4.43731 12.9528 4.05478 12.6902 3.72461 12.3945V13.75C3.72461 14.463 4.26304 15.2408 5.42578 15.875C6.56592 16.4969 8.18217 16.9004 10 16.9004C11.8178 16.9004 13.4341 16.4969 14.5742 15.875C15.737 15.2408 16.2754 14.463 16.2754 13.75V12.3945ZM16.2754 8.64453C15.9452 8.9402 15.5627 9.20276 15.1484 9.42871C13.8003 10.164 11.9789 10.5996 10 10.5996C8.02107 10.5996 6.19967 10.164 4.85156 9.42871C4.43731 9.20276 4.05478 8.9402 3.72461 8.64453V10C3.72461 10.713 4.26304 11.4908 5.42578 12.125C6.56592 12.7469 8.18217 13.1504 10 13.1504C11.8178 13.1504 13.4341 12.7469 14.5742 12.125C15.737 11.4908 16.2754 10.713 16.2754 10V8.64453ZM10 3.09961C8.18213 3.09961 6.56591 3.50311 5.42578 4.125C4.26303 4.75925 3.72461 5.53698 3.72461 6.25C3.72461 6.96302 4.26303 7.74075 5.42578 8.375C6.56591 8.99689 8.18213 9.40039 10 9.40039C11.8179 9.40039 13.4341 8.99689 14.5742 8.375C15.737 7.74075 16.2754 6.96302 16.2754 6.25C16.2754 5.53698 15.737 4.75925 14.5742 4.125C13.4341 3.50311 11.8179 3.09961 10 3.09961Z",
|
|
5534
5519
|
fill: t
|
|
5535
5520
|
})
|
|
5536
|
-
}),
|
|
5521
|
+
}), Br = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5537
5522
|
width: e,
|
|
5538
5523
|
height: e,
|
|
5539
5524
|
viewBox: "0 0 20 20",
|
|
@@ -5555,7 +5540,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5555
5540
|
fill: t
|
|
5556
5541
|
})
|
|
5557
5542
|
]
|
|
5558
|
-
}),
|
|
5543
|
+
}), Vr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5559
5544
|
width: e,
|
|
5560
5545
|
height: e,
|
|
5561
5546
|
viewBox: "0 0 20 20",
|
|
@@ -5565,7 +5550,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5565
5550
|
d: "M10 1.90039C14.4735 1.90039 18.0996 5.52649 18.0996 10C18.0996 14.4735 14.4735 18.0996 10 18.0996C5.52649 18.0996 1.90039 14.4735 1.90039 10C1.90039 5.52649 5.52649 1.90039 10 1.90039ZM10 12.4004C9.55817 12.4004 9.2002 12.7584 9.2002 13.2002C9.20028 13.642 9.55822 14 10 14C10.4417 13.9999 10.7997 13.6419 10.7998 13.2002C10.7998 12.7584 10.4417 12.4005 10 12.4004ZM10 5.7998C9.6134 5.7998 9.2998 6.108 9.2998 6.4873V10.7129C9.2998 11.0922 9.6134 11.4004 10 11.4004C10.3866 11.4004 10.7002 11.0922 10.7002 10.7129V6.4873C10.7002 6.108 10.3866 5.7998 10 5.7998Z",
|
|
5566
5551
|
fill: t
|
|
5567
5552
|
})
|
|
5568
|
-
}),
|
|
5553
|
+
}), Hr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5569
5554
|
width: e,
|
|
5570
5555
|
height: e,
|
|
5571
5556
|
viewBox: "0 0 20 20",
|
|
@@ -5575,7 +5560,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5575
5560
|
d: "M4.98042 4.97998C5.21474 4.74567 5.59377 4.74567 5.82808 4.97998L13.997 13.1489V7.5249C13.9971 7.19364 14.2653 6.9253 14.5966 6.92529C14.9279 6.92529 15.1961 7.19364 15.1962 7.5249V14.5962C15.1962 14.9276 14.928 15.1958 14.5966 15.1958H7.52535C7.19408 15.1957 6.92574 14.9275 6.92574 14.5962C6.92574 14.2649 7.19408 13.9967 7.52535 13.9966H13.1494L4.98042 5.82764C4.74611 5.59332 4.74611 5.2143 4.98042 4.97998Z",
|
|
5576
5561
|
fill: t
|
|
5577
5562
|
})
|
|
5578
|
-
}),
|
|
5563
|
+
}), Ur = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5579
5564
|
width: e,
|
|
5580
5565
|
height: e,
|
|
5581
5566
|
viewBox: "0 0 20 20",
|
|
@@ -5585,7 +5570,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5585
5570
|
d: "M4.80371 12.4751V5.40381C4.80371 5.24469 4.86698 5.0925 4.97949 4.97998C5.09201 4.86746 5.24419 4.8042 5.40332 4.8042H12.4746C12.806 4.8042 13.0752 5.07244 13.0752 5.40381C13.0752 5.73518 12.806 6.00342 12.4746 6.00342H6.85059L15.0195 14.1724C15.2538 14.4067 15.2538 14.7857 15.0195 15.02C14.7852 15.2543 14.4062 15.2543 14.1719 15.02L6.00293 6.85107L6.00391 12.4751C6.00379 12.8063 5.7346 13.0747 5.40332 13.0747C5.07223 13.0745 4.80383 12.8062 4.80371 12.4751Z",
|
|
5586
5571
|
fill: t
|
|
5587
5572
|
})
|
|
5588
|
-
}),
|
|
5573
|
+
}), Wr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5589
5574
|
width: e,
|
|
5590
5575
|
height: e,
|
|
5591
5576
|
viewBox: "0 0 20 20",
|
|
@@ -5595,7 +5580,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5595
5580
|
d: "M15.1962 12.4751C15.1961 12.8064 14.9279 13.0747 14.5966 13.0747C14.2653 13.0747 13.9971 12.8064 13.997 12.4751V6.85107L5.82808 15.02C5.59376 15.2543 5.21474 15.2543 4.98042 15.02C4.74611 14.7857 4.74611 14.4067 4.98042 14.1724L13.1494 6.00342H7.52534C7.19408 6.0033 6.92573 5.7351 6.92573 5.40381C6.92573 5.07251 7.19408 4.80432 7.52534 4.8042H14.5966C14.928 4.8042 15.1962 5.07244 15.1962 5.40381V12.4751Z",
|
|
5596
5581
|
fill: t
|
|
5597
5582
|
})
|
|
5598
|
-
}),
|
|
5583
|
+
}), Gr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5599
5584
|
width: e,
|
|
5600
5585
|
height: e,
|
|
5601
5586
|
viewBox: "0 0 20 20",
|
|
@@ -5615,7 +5600,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5615
5600
|
d: "M10 1.90039C14.4735 1.90039 18.1006 5.5265 18.1006 10C18.1006 14.4735 14.4735 18.0996 10 18.0996C5.52667 18.0994 1.90039 14.4734 1.90039 10C1.9004 5.52664 5.52668 1.9006 10 1.90039ZM10 8.59961C9.6134 8.59961 9.2998 8.9078 9.2998 9.28711V13.5137C9.30003 13.8928 9.61354 14.2002 10 14.2002C10.3865 14.2002 10.7 13.8928 10.7002 13.5137V9.28711C10.7002 8.9078 10.3866 8.59961 10 8.59961ZM10 6C9.55835 6.00011 9.20033 6.35816 9.2002 6.7998C9.2002 7.24157 9.55826 7.5995 10 7.59961C10.4418 7.59961 10.7998 7.24163 10.7998 6.7998C10.7997 6.35809 10.4417 6 10 6Z",
|
|
5616
5601
|
fill: t
|
|
5617
5602
|
})
|
|
5618
|
-
}),
|
|
5603
|
+
}), Kr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5619
5604
|
width: e,
|
|
5620
5605
|
height: e,
|
|
5621
5606
|
viewBox: "0 0 20 20",
|
|
@@ -5625,7 +5610,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5625
5610
|
d: "M10 1.90039C14.4735 1.90039 18.1006 5.5265 18.1006 10C18.1006 14.4735 14.4735 18.0996 10 18.0996C5.52667 18.0994 1.90039 14.4734 1.90039 10C1.9004 5.52664 5.52668 1.9006 10 1.90039ZM8.125 6.7002C7.68327 6.7003 7.3252 7.05824 7.3252 7.5V12.5C7.3252 12.9418 7.68326 13.2997 8.125 13.2998C8.56683 13.2998 8.9248 12.9418 8.9248 12.5V7.5C8.9248 7.05818 8.56682 6.7002 8.125 6.7002ZM11.875 6.7002C11.4333 6.7003 11.0752 7.05824 11.0752 7.5V12.5C11.0752 12.9418 11.4333 13.2997 11.875 13.2998C12.3168 13.2998 12.6748 12.9418 12.6748 12.5V7.5C12.6748 7.05818 12.3168 6.7002 11.875 6.7002Z",
|
|
5626
5611
|
fill: t
|
|
5627
5612
|
})
|
|
5628
|
-
}),
|
|
5613
|
+
}), qr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5629
5614
|
width: e,
|
|
5630
5615
|
height: e,
|
|
5631
5616
|
viewBox: "0 0 20 20",
|
|
@@ -5635,7 +5620,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5635
5620
|
d: "M10 1.90039C14.4735 1.90039 18.1006 5.5265 18.1006 10C18.1006 14.4735 14.4735 18.0996 10 18.0996C5.52667 18.0994 1.90039 14.4734 1.90039 10C1.9004 5.52664 5.52668 1.9006 10 1.90039ZM8 7C7.44772 7 7 7.44772 7 8V12C7 12.5523 7.44772 13 8 13H12C12.5523 13 13 12.5523 13 12V8C13 7.44772 12.5523 7 12 7H8Z",
|
|
5636
5621
|
fill: t
|
|
5637
5622
|
})
|
|
5638
|
-
}),
|
|
5623
|
+
}), Jr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5639
5624
|
width: e,
|
|
5640
5625
|
height: e,
|
|
5641
5626
|
viewBox: "0 0 20 20",
|
|
@@ -5645,7 +5630,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5645
5630
|
d: "M10 1.90039C14.4735 1.90039 18.1006 5.5265 18.1006 10C18.1006 14.4735 14.4735 18.0996 10 18.0996C5.52667 18.0994 1.90039 14.4734 1.90039 10C1.9004 5.52664 5.52668 1.9006 10 1.90039ZM9.04102 6.49023C8.3755 6.06241 7.5 6.54087 7.5 7.33203V12.668C7.5 13.4591 8.3755 13.9376 9.04102 13.5098L13.1914 10.8408C13.8036 10.4472 13.8036 9.55282 13.1914 9.15918L9.04102 6.49023Z",
|
|
5646
5631
|
fill: t
|
|
5647
5632
|
})
|
|
5648
|
-
}),
|
|
5633
|
+
}), Yr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5649
5634
|
width: e,
|
|
5650
5635
|
height: e,
|
|
5651
5636
|
viewBox: "0 0 20 20",
|
|
@@ -5657,7 +5642,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5657
5642
|
d: "M10.0996 2C14.5731 2 18.2002 5.62611 18.2002 10.0996C18.2002 14.5731 14.5731 18.1992 10.0996 18.1992C5.62628 18.199 2 14.573 2 10.0996C2.00001 5.62624 5.62629 2.00021 10.0996 2ZM11.3203 7.02148C11.0839 6.78929 10.7039 6.79289 10.4717 7.0293C10.2395 7.26571 10.2431 7.64574 10.4795 7.87793L12.2334 9.59961H6.69922C6.36816 9.59982 6.09982 9.86816 6.09961 10.1992C6.09961 10.5305 6.36803 10.7996 6.69922 10.7998H12.2324L10.4795 12.5215C10.2431 12.7537 10.2395 13.1337 10.4717 13.3701C10.7039 13.6064 11.0839 13.6101 11.3203 13.3779L14.1201 10.6279L14.1211 10.625C14.2036 10.5433 14.263 10.4385 14.2871 10.3203C14.2952 10.2809 14.2998 10.2401 14.2998 10.1992C14.2998 10.1432 14.2885 10.089 14.2734 10.0361C14.2448 9.93545 14.1935 9.84504 14.1211 9.77344L14.1201 9.77148L11.3203 7.02148Z",
|
|
5658
5643
|
fill: t
|
|
5659
5644
|
})
|
|
5660
|
-
}),
|
|
5645
|
+
}), Xr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5661
5646
|
width: e,
|
|
5662
5647
|
height: e,
|
|
5663
5648
|
viewBox: "0 0 20 20",
|
|
@@ -5667,7 +5652,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5667
5652
|
d: "M10 1.90039C14.4735 1.90039 18.1006 5.5265 18.1006 10C18.1006 14.4735 14.4735 18.0996 10 18.0996C5.52667 18.0994 1.90039 14.4734 1.90039 10C1.9004 5.52664 5.52668 1.9006 10 1.90039ZM9.99902 5.90039C9.66778 5.90053 9.39943 6.16873 9.39941 6.5V12.0322L7.67773 10.2793C7.44567 10.043 7.06555 10.0397 6.8291 10.2715C6.59273 10.5036 6.58923 10.8837 6.82129 11.1201L9.57129 13.9209C9.63821 13.9889 9.72077 14.0367 9.80957 14.0664C9.86935 14.0864 9.93251 14.0996 9.99902 14.0996C10.0593 14.0996 10.117 14.0879 10.1719 14.0713C10.2674 14.0424 10.3565 13.9934 10.4277 13.9209L13.1777 11.1201C13.4095 10.8837 13.4062 10.5036 13.1699 10.2715C12.9336 10.0395 12.5535 10.0432 12.3213 10.2793L10.5996 12.0312V6.5C10.5996 6.16867 10.3303 5.90044 9.99902 5.90039Z",
|
|
5668
5653
|
fill: t
|
|
5669
5654
|
})
|
|
5670
|
-
}),
|
|
5655
|
+
}), Zr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5671
5656
|
width: e,
|
|
5672
5657
|
height: e,
|
|
5673
5658
|
viewBox: "0 0 20 20",
|
|
@@ -5687,7 +5672,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5687
5672
|
d: "M8.44043 3.50037C9.13325 2.30037 10.8658 2.30037 11.5586 3.50037L18.1396 14.8998C18.8325 16.0998 17.9667 17.6 16.5811 17.6H3.41797C2.03233 17.6 1.16559 16.0998 1.8584 14.8998L8.44043 3.50037ZM10 13.6C9.55823 13.6 9.20029 13.958 9.2002 14.3998C9.2002 14.8416 9.55817 15.1996 10 15.1996C10.4418 15.1995 10.7998 14.8416 10.7998 14.3998C10.7997 13.9581 10.4417 13.6001 10 13.6ZM10 7.00037C9.6134 7.00037 9.2998 7.30758 9.2998 7.68689V11.9135C9.29995 12.2926 9.61349 12.6 10 12.6C10.3863 12.5998 10.6991 12.2925 10.6992 11.9135V7.68689C10.6992 7.3077 10.3864 7.00055 10 7.00037Z",
|
|
5688
5673
|
fill: t
|
|
5689
5674
|
})
|
|
5690
|
-
}),
|
|
5675
|
+
}), Qr = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5691
5676
|
width: e,
|
|
5692
5677
|
height: e,
|
|
5693
5678
|
viewBox: "0 0 20 20",
|
|
@@ -5712,7 +5697,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5712
5697
|
fill: t
|
|
5713
5698
|
})
|
|
5714
5699
|
]
|
|
5715
|
-
}),
|
|
5700
|
+
}), $r = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5716
5701
|
width: e,
|
|
5717
5702
|
height: e,
|
|
5718
5703
|
viewBox: "0 0 20 20",
|
|
@@ -5724,7 +5709,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5724
5709
|
d: "M10 1.90039C14.4735 1.90039 18.1006 5.5265 18.1006 10C18.1006 14.4735 14.4735 18.0996 10 18.0996C5.52667 18.0994 1.90039 14.4734 1.90039 10C1.9004 5.52664 5.52668 1.9006 10 1.90039ZM12.9248 7.07617C12.6905 6.84186 12.3105 6.84186 12.0762 7.07617L10 9.15137L7.9248 7.07617C7.69049 6.84186 7.31049 6.84186 7.07617 7.07617C6.84211 7.31043 6.84213 7.68956 7.07617 7.92383L9.15234 10L7.07617 12.0762C6.84211 12.3104 6.84213 12.6896 7.07617 12.9238C7.31049 13.1581 7.69049 13.1581 7.9248 12.9238L10 10.8486L12.0762 12.9238C12.3105 13.1581 12.6905 13.1581 12.9248 12.9238C13.1587 12.6896 13.1587 12.3104 12.9248 12.0762L10.8486 10L12.9248 7.92383C13.1587 7.68958 13.1587 7.31041 12.9248 7.07617Z",
|
|
5725
5710
|
fill: t
|
|
5726
5711
|
})
|
|
5727
|
-
}),
|
|
5712
|
+
}), ei = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5728
5713
|
width: e,
|
|
5729
5714
|
height: e,
|
|
5730
5715
|
viewBox: "0 0 20 20",
|
|
@@ -5736,7 +5721,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5736
5721
|
d: "M10 1.90039C14.4735 1.90039 18.1006 5.5265 18.1006 10C18.1006 14.4735 14.4735 18.0996 10 18.0996C5.52667 18.0994 1.90039 14.4734 1.90039 10C1.9004 5.52664 5.52668 1.9006 10 1.90039ZM10 5.90039C9.66882 5.9006 9.4004 6.16877 9.40039 6.5V9.40039H6.5C6.16882 9.4006 5.9004 9.66877 5.90039 10C5.90039 10.3312 6.16881 10.5994 6.5 10.5996H9.40039V13.5C9.40039 13.8312 9.66881 14.0994 10 14.0996C10.3314 14.0996 10.6006 13.8314 10.6006 13.5V10.5996H13.5C13.8314 10.5996 14.1006 10.3314 14.1006 10C14.1006 9.66864 13.8314 9.40039 13.5 9.40039H10.6006V6.5C10.6006 6.16864 10.3314 5.90039 10 5.90039Z",
|
|
5737
5722
|
fill: t
|
|
5738
5723
|
})
|
|
5739
|
-
}),
|
|
5724
|
+
}), ti = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5740
5725
|
width: e,
|
|
5741
5726
|
height: e,
|
|
5742
5727
|
viewBox: "0 0 20 20",
|
|
@@ -5748,7 +5733,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5748
5733
|
d: "M10 2.49955C11.7171 2.49955 13.2983 3.07859 14.5625 4.04935L15.7871 2.70365C16.0193 2.44858 16.4156 2.42976 16.6709 2.66166C16.9262 2.89378 16.9448 3.29004 16.7129 3.54544L15.4883 4.89115C16.7355 6.23037 17.4999 8.02519 17.5 9.99955C17.5 14.1417 14.1421 17.4995 10 17.4995C8.28213 17.4995 6.70004 16.9213 5.43555 15.9497L4.21289 17.2954C3.98069 17.5508 3.5845 17.5696 3.3291 17.3374C3.07394 17.1052 3.055 16.709 3.28711 16.4536L4.50977 15.107C3.26357 13.7679 2.5 11.9731 2.5 9.99955C2.50024 5.85761 5.85801 2.49955 10 2.49955ZM6.2793 15.021C7.31891 15.7927 8.60584 16.2495 10 16.2495C13.4518 16.2495 16.25 13.4513 16.25 9.99955C16.2499 8.39175 15.6421 6.9263 14.6445 5.81888L6.2793 15.021ZM10 3.74955C6.54837 3.74955 3.75024 6.54797 3.75 9.99955C3.75 11.6066 4.35693 13.072 5.35352 14.1792L13.7188 4.97708C12.6795 4.2064 11.3932 3.74955 10 3.74955Z",
|
|
5749
5734
|
fill: t
|
|
5750
5735
|
})
|
|
5751
|
-
}),
|
|
5736
|
+
}), ni = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5752
5737
|
width: e,
|
|
5753
5738
|
height: e,
|
|
5754
5739
|
viewBox: "0 0 20 20",
|
|
@@ -5761,7 +5746,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5761
5746
|
d: "M16.375 6.875C16.7202 6.875 17 7.15482 17 7.5C17 7.84518 16.7202 8.125 16.375 8.125H3.625C3.27982 8.125 3 7.84518 3 7.5C3 7.15482 3.27982 6.875 3.625 6.875H16.375Z",
|
|
5762
5747
|
fill: t
|
|
5763
5748
|
})]
|
|
5764
|
-
}),
|
|
5749
|
+
}), ri = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5765
5750
|
width: e,
|
|
5766
5751
|
height: e,
|
|
5767
5752
|
viewBox: "0 0 20 20",
|
|
@@ -5783,7 +5768,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5783
5768
|
fill: t
|
|
5784
5769
|
})
|
|
5785
5770
|
]
|
|
5786
|
-
}),
|
|
5771
|
+
}), ii = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5787
5772
|
width: e,
|
|
5788
5773
|
height: e,
|
|
5789
5774
|
viewBox: "0 0 20 20",
|
|
@@ -5805,7 +5790,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5805
5790
|
fill: t
|
|
5806
5791
|
})
|
|
5807
5792
|
]
|
|
5808
|
-
}),
|
|
5793
|
+
}), ai = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5809
5794
|
width: e,
|
|
5810
5795
|
height: e,
|
|
5811
5796
|
viewBox: "0 0 20 20",
|
|
@@ -5815,7 +5800,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5815
5800
|
d: "M15.0002 2.375L15.0851 2.38086C15.2807 2.40766 15.4544 2.52569 15.55 2.70215C15.6591 2.90389 15.649 3.14976 15.5236 3.3418L11.9055 8.875H14.7502C15.0093 8.875 15.2417 9.03529 15.3342 9.27734C15.4264 9.51925 15.3601 9.79313 15.1672 9.96582L5.66717 18.4658C5.45414 18.6564 5.13877 18.678 4.90155 18.5186C4.66441 18.3591 4.56535 18.0592 4.66131 17.79L6.86346 11.625H5.25018C5.05136 11.625 4.86404 11.5303 4.74627 11.3701C4.62864 11.21 4.59422 11.0032 4.6535 10.8135L7.1535 2.81348L7.19159 2.71973C7.29622 2.511 7.51103 2.375 7.75018 2.375H15.0002ZM6.10077 10.375H7.75018C7.95331 10.375 8.14382 10.4737 8.26092 10.6396C8.37794 10.8057 8.40726 11.0186 8.33905 11.21L6.66522 15.8936L13.1144 10.125H10.7502C10.5208 10.125 10.3096 9.99951 10.2004 9.79785C10.0912 9.59611 10.1013 9.35024 10.2267 9.1582L13.8449 3.625H8.21014L6.10077 10.375Z",
|
|
5816
5801
|
fill: t
|
|
5817
5802
|
})
|
|
5818
|
-
}),
|
|
5803
|
+
}), oi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5819
5804
|
width: e,
|
|
5820
5805
|
height: e,
|
|
5821
5806
|
viewBox: "0 0 20 20",
|
|
@@ -5825,7 +5810,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5825
5810
|
d: "M15.0051 2.375L15.09 2.38086C15.2856 2.40766 15.4593 2.52569 15.5549 2.70215C15.664 2.90389 15.6539 3.14976 15.5285 3.3418L11.9103 8.875H14.7551C15.0142 8.875 15.2466 9.03529 15.339 9.27734C15.4313 9.51925 15.365 9.79313 15.1721 9.96582L5.67205 18.4658C5.45902 18.6564 5.14365 18.678 4.90643 18.5186C4.66929 18.3591 4.57023 18.0592 4.66619 17.79L6.86834 11.625H5.25506C5.05624 11.625 4.86893 11.5303 4.75116 11.3701C4.63352 11.21 4.59911 11.0032 4.65838 10.8135L7.15838 2.81348L7.19647 2.71973C7.30111 2.511 7.51591 2.375 7.75506 2.375H15.0051Z",
|
|
5826
5811
|
fill: t
|
|
5827
5812
|
})
|
|
5828
|
-
}),
|
|
5813
|
+
}), si = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5829
5814
|
width: e,
|
|
5830
5815
|
height: e,
|
|
5831
5816
|
viewBox: "0 0 20 20",
|
|
@@ -5835,7 +5820,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5835
5820
|
d: "M16.25 3.125C16.7473 3.125 17.2245 3.3222 17.5762 3.67383C17.9278 4.02546 18.125 4.50272 18.125 5V13.75C18.125 14.2473 17.9278 14.7245 17.5762 15.0762C17.2245 15.4278 16.7473 15.625 16.25 15.625H10.625V16.875H12.5C12.6658 16.875 12.8252 16.9404 12.9424 17.0576C13.0596 17.1748 13.125 17.3342 13.125 17.5C13.125 17.6658 13.0596 17.8252 12.9424 17.9424C12.8252 18.0596 12.6658 18.125 12.5 18.125H7.5C7.33424 18.125 7.17483 18.0596 7.05762 17.9424C6.94041 17.8252 6.875 17.6658 6.875 17.5C6.875 17.3342 6.94041 17.1748 7.05762 17.0576C7.17483 16.9404 7.33424 16.875 7.5 16.875H9.375V15.625H3.75C3.25272 15.625 2.77546 15.4278 2.42383 15.0762C2.0722 14.7245 1.875 14.2473 1.875 13.75V5C1.875 4.50272 2.0722 4.02546 2.42383 3.67383C2.77546 3.3222 3.25272 3.125 3.75 3.125H16.25ZM3.75 4.375C3.58424 4.375 3.42483 4.44041 3.30762 4.55762C3.19041 4.67483 3.125 4.83424 3.125 5V13.75C3.125 13.9158 3.19041 14.0752 3.30762 14.1924C3.42483 14.3096 3.58424 14.375 3.75 14.375H16.25C16.4158 14.375 16.5752 14.3096 16.6924 14.1924C16.8096 14.0752 16.875 13.9158 16.875 13.75V5C16.875 4.83424 16.8096 4.67483 16.6924 4.55762C16.5752 4.44041 16.4158 4.375 16.25 4.375H3.75ZM8.78027 6.25C8.89322 6.25547 9.00259 6.29177 9.09668 6.35449L12.8467 8.85449C12.9324 8.91154 13.0031 8.9893 13.0518 9.08008C13.1003 9.17079 13.126 9.27212 13.126 9.375C13.126 9.47788 13.1003 9.57921 13.0518 9.66992C13.0031 9.7607 12.9324 9.83846 12.8467 9.89551L9.09668 12.3955C9.00259 12.4582 8.89322 12.4945 8.78027 12.5C8.6673 12.5055 8.55481 12.4801 8.45508 12.4268C8.3553 12.3733 8.27199 12.2934 8.21387 12.1963C8.15575 12.0992 8.12493 11.9882 8.125 11.875V6.875C8.12493 6.76182 8.15575 6.65083 8.21387 6.55371C8.27199 6.4566 8.3553 6.37666 8.45508 6.32324C8.55481 6.2699 8.6673 6.24453 8.78027 6.25ZM9.375 10.707L11.373 9.375L9.375 8.04688V10.707Z",
|
|
5836
5821
|
fill: t
|
|
5837
5822
|
})
|
|
5838
|
-
}),
|
|
5823
|
+
}), ci = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5839
5824
|
width: e,
|
|
5840
5825
|
height: e,
|
|
5841
5826
|
viewBox: "0 0 20 20",
|
|
@@ -5845,7 +5830,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5845
5830
|
d: "M17.3846 7.53846H15.5385V3.84615H17.3846C17.5478 3.84615 17.7044 3.78132 17.8198 3.66591C17.9352 3.5505 18 3.39398 18 3.23077C18 3.06756 17.9352 2.91103 17.8198 2.79563C17.7044 2.68022 17.5478 2.61538 17.3846 2.61538H15.3715C15.2637 2.42858 15.1086 2.2734 14.9219 2.1654C14.7352 2.05739 14.5234 2.00036 14.3077 2H13.0769C12.8612 2.00036 12.6494 2.05739 12.4627 2.1654C12.276 2.2734 12.1209 2.42858 12.0131 2.61538H10.6154C8.49434 2.61762 6.46081 3.4612 4.961 4.961C3.4612 6.46081 2.61762 8.49434 2.61538 10.6154V12.0123C2.42847 12.1202 2.27322 12.2754 2.16521 12.4623C2.0572 12.6491 2.00022 12.8611 2 13.0769V14.3077C2.00022 14.5235 2.0572 14.7355 2.16521 14.9224C2.27322 15.1092 2.42847 15.2644 2.61538 15.3723V17.3846C2.61538 17.5478 2.68022 17.7044 2.79563 17.8198C2.91103 17.9352 3.06756 18 3.23077 18C3.39398 18 3.5505 17.9352 3.66591 17.8198C3.78132 17.7044 3.84615 17.5478 3.84615 17.3846V15.5385H7.53846V17.3846C7.53846 17.5478 7.6033 17.7044 7.7187 17.8198C7.83411 17.9352 7.99064 18 8.15385 18C8.31706 18 8.47358 17.9352 8.58899 17.8198C8.7044 17.7044 8.76923 17.5478 8.76923 17.3846V15.3723C8.95615 15.2644 9.1114 15.1092 9.21941 14.9224C9.32742 14.7355 9.38439 14.5235 9.38462 14.3077V13.0769C9.38439 12.8611 9.32742 12.6491 9.21941 12.4623C9.1114 12.2754 8.95615 12.1202 8.76923 12.0123V10.6154C8.76923 10.1258 8.96374 9.65618 9.30996 9.30996C9.65618 8.96374 10.1258 8.76923 10.6154 8.76923H12.0131C12.1209 8.95603 12.276 9.11121 12.4627 9.21922C12.6494 9.32722 12.8612 9.38426 13.0769 9.38462H14.3077C14.5234 9.38426 14.7352 9.32722 14.9219 9.21922C15.1086 9.11121 15.2637 8.95603 15.3715 8.76923H17.3846C17.5478 8.76923 17.7044 8.7044 17.8198 8.58899C17.9352 8.47358 18 8.31706 18 8.15385C18 7.99064 17.9352 7.83411 17.8198 7.7187C17.7044 7.6033 17.5478 7.53846 17.3846 7.53846ZM8.15385 13.0769V14.3077H3.23077V13.0769H8.15385ZM7.53846 10.6154V11.8462H3.84615V10.6154C3.84819 8.8207 4.56203 7.1001 5.83106 5.83106C7.1001 4.56203 8.8207 3.84819 10.6154 3.84615H11.8462V7.53846H10.6154C9.79933 7.53846 9.01671 7.86264 8.43967 8.43967C7.86264 9.01671 7.53846 9.79933 7.53846 10.6154ZM13.0769 8.15385V3.23077H14.3077V8.13846C14.3077 8.14385 14.3077 8.14846 14.3077 8.15385H13.0769Z",
|
|
5846
5831
|
fill: t
|
|
5847
5832
|
})
|
|
5848
|
-
}),
|
|
5833
|
+
}), li = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5849
5834
|
width: e,
|
|
5850
5835
|
height: e,
|
|
5851
5836
|
viewBox: "0 0 20 20",
|
|
@@ -5855,7 +5840,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5855
5840
|
d: "M10.9395 6.47721C10.9395 6.12613 11.0771 5.78864 11.3229 5.53793L13.6411 3.21879C13.1025 3.09815 12.5428 3.08341 11.9942 3.18336C11.1662 3.33423 10.4037 3.73379 9.80859 4.32885C9.21353 4.92391 8.81404 5.68657 8.6631 6.51445C8.51222 7.34251 8.61677 8.19757 8.96378 8.9644C9.05949 9.17597 9.01435 9.42422 8.85023 9.58847L3.4389 15.0007C3.23223 15.2075 3.11557 15.4877 3.11551 15.7801C3.11551 16.0727 3.23203 16.3535 3.4389 16.5604C3.64578 16.7673 3.92665 16.8838 4.21922 16.8838C4.51159 16.8838 4.79182 16.7671 4.99862 16.5604L10.4109 11.1491L10.4754 11.0928C10.6359 10.9753 10.8497 10.9517 11.0349 11.0356C11.8018 11.3826 12.6568 11.4871 13.4849 11.3362C14.3128 11.1853 15.0754 10.7858 15.6705 10.1907C16.2655 9.59562 16.6651 8.83309 16.816 8.00514C16.916 7.45619 16.9005 6.8962 16.7796 6.3573L14.4614 8.67644C14.2107 8.92219 13.8732 9.05978 13.5221 9.05978C13.1712 9.05969 12.8344 8.92211 12.5837 8.67644L12.5792 8.67281L11.3265 7.42013L11.3229 7.41559C11.0772 7.16496 10.9396 6.82815 10.9395 6.47721ZM12.056 6.47721C12.0561 6.5359 12.0785 6.59241 12.1196 6.63436L13.365 7.87978L13.3995 7.90703C13.4357 7.9307 13.4782 7.94329 13.5221 7.94336C13.5793 7.94336 13.634 7.92144 13.6756 7.8825L16.6288 4.93112L16.6797 4.8857C16.8043 4.78844 16.9654 4.74799 17.123 4.77669C17.3033 4.80953 17.4563 4.92861 17.5318 5.09554C17.9723 6.06902 18.1057 7.15378 17.9142 8.20498C17.7227 9.25627 17.2146 10.2245 16.459 10.9801C15.7034 11.7355 14.7358 12.2429 13.6847 12.4345C12.7622 12.6026 11.814 12.5196 10.9377 12.1992L5.78802 17.3498C5.37188 17.7658 4.80764 17.9993 4.21922 17.9993C3.6306 17.9993 3.06572 17.766 2.6495 17.3498C2.23329 16.9336 2 16.3687 2 15.7801C2.00006 15.1917 2.23349 14.6274 2.6495 14.2113L7.79921 9.06069C7.4792 8.18468 7.39683 7.23676 7.56485 6.31461C7.7564 5.26353 8.26378 4.29588 9.01919 3.54036C9.7748 2.78475 10.7431 2.27665 11.7943 2.08511C12.8456 1.89361 13.9303 2.02704 14.9038 2.46754C15.0707 2.54308 15.1898 2.69607 15.2226 2.87632C15.2554 3.05648 15.1976 3.24096 15.0682 3.37049L12.1159 6.32369C12.0772 6.36527 12.056 6.42028 12.056 6.47721Z",
|
|
5856
5841
|
fill: t
|
|
5857
5842
|
})
|
|
5858
|
-
}),
|
|
5843
|
+
}), ui = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5859
5844
|
width: e,
|
|
5860
5845
|
height: e,
|
|
5861
5846
|
viewBox: "0 0 20 20",
|
|
@@ -5883,7 +5868,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5883
5868
|
fill: t
|
|
5884
5869
|
})
|
|
5885
5870
|
]
|
|
5886
|
-
}),
|
|
5871
|
+
}), di = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5887
5872
|
width: e,
|
|
5888
5873
|
height: e,
|
|
5889
5874
|
viewBox: "0 0 20 20",
|
|
@@ -5895,7 +5880,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5895
5880
|
d: "M15.0762 3.32623C15.3105 3.09191 15.6895 3.09191 15.9238 3.32623L18.4238 5.82623C18.4667 5.86907 18.4992 5.91806 18.5264 5.9688C18.5714 6.05299 18.5996 6.14783 18.5996 6.25005C18.5996 6.35198 18.5712 6.44632 18.5264 6.53033C18.4991 6.58134 18.4669 6.63084 18.4238 6.67388L15.9238 9.17388C15.6895 9.40817 15.3105 9.40814 15.0762 9.17388C14.8419 8.93957 14.8419 8.56054 15.0762 8.32623L16.5527 6.84966H13.3125C12.5393 6.84966 11.9121 7.47686 11.9121 8.25005V11.7501C11.9121 13.186 10.7484 14.3497 9.3125 14.3497H6.82324C6.65232 15.62 5.56722 16.5997 4.25 16.5997C2.81408 16.5997 1.65042 15.436 1.65039 14.0001C1.65039 12.5641 2.81406 11.4004 4.25 11.4004C5.38813 11.4004 6.35289 12.1322 6.70508 13.1504H9.3125C10.0857 13.1504 10.7129 12.5232 10.7129 11.7501V8.25005C10.7129 6.81411 11.8766 5.65044 13.3125 5.65044H16.5527L15.0762 4.17388C14.8419 3.93957 14.8419 3.56054 15.0762 3.32623ZM4.25 12.5997C3.4768 12.5997 2.84961 13.2269 2.84961 14.0001C2.84964 14.7732 3.47682 15.4004 4.25 15.4004C5.02318 15.4004 5.65036 14.7732 5.65039 14.0001C5.65039 13.2269 5.0232 12.5997 4.25 12.5997Z",
|
|
5896
5881
|
fill: t
|
|
5897
5882
|
})
|
|
5898
|
-
}),
|
|
5883
|
+
}), fi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5899
5884
|
width: e,
|
|
5900
5885
|
height: e,
|
|
5901
5886
|
viewBox: "0 0 20 20",
|
|
@@ -5915,7 +5900,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5915
5900
|
fill: t
|
|
5916
5901
|
})
|
|
5917
5902
|
]
|
|
5918
|
-
}),
|
|
5903
|
+
}), pi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5919
5904
|
width: e,
|
|
5920
5905
|
height: e,
|
|
5921
5906
|
viewBox: "0 0 20 20",
|
|
@@ -5939,7 +5924,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5939
5924
|
fill: t
|
|
5940
5925
|
})
|
|
5941
5926
|
]
|
|
5942
|
-
}),
|
|
5927
|
+
}), mi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5943
5928
|
width: e,
|
|
5944
5929
|
height: e,
|
|
5945
5930
|
viewBox: "0 0 20 20",
|
|
@@ -5949,7 +5934,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5949
5934
|
d: "M12.5996 1C14.8398 1 15.9608 0.999573 16.8164 1.43555C17.5689 1.81902 18.181 2.43109 18.5645 3.18359C19.0004 4.03924 19 5.16018 19 7.40039V12.5996C19 14.8398 19.0004 15.9608 18.5645 16.8164L18.4102 17.0918C18.0259 17.7183 17.4749 18.2289 16.8164 18.5645L16.6523 18.6406C15.816 18.9999 14.6999 19 12.5996 19H7.40039L5.91602 18.9932C4.72431 18.9744 3.96088 18.9041 3.34766 18.6406L3.18359 18.5645C2.52512 18.2289 1.97413 17.7183 1.58984 17.0918L1.43555 16.8164C0.999573 15.9608 1 14.8398 1 12.5996V7.40039C1 5.16018 0.999573 4.03924 1.43555 3.18359C1.81902 2.43109 2.43109 1.81902 3.18359 1.43555C3.82525 1.10861 4.61607 1.02728 5.91602 1.00684L7.40039 1H12.5996ZM7.40039 2.2002C6.26048 2.2002 5.47692 2.2014 4.87012 2.25098C4.2776 2.29942 3.95892 2.38749 3.72852 2.50488C3.20176 2.77331 2.77331 3.20176 2.50488 3.72852C2.38749 3.95892 2.29942 4.2776 2.25098 4.87012C2.2014 5.47692 2.2002 6.26048 2.2002 7.40039V12.5996C2.2002 13.7395 2.2014 14.5231 2.25098 15.1299C2.29942 15.7224 2.38749 16.0411 2.50488 16.2715C2.77331 16.7982 3.20176 17.2267 3.72852 17.4951C3.95892 17.6125 4.2776 17.7006 4.87012 17.749C5.47692 17.7986 6.26048 17.7998 7.40039 17.7998H12.5996C13.7395 17.7998 14.5231 17.7986 15.1299 17.749C15.7224 17.7006 16.0411 17.6125 16.2715 17.4951C16.7982 17.2267 17.2267 16.7982 17.4951 16.2715C17.6125 16.0411 17.7006 15.7224 17.749 15.1299C17.7986 14.5231 17.7998 13.7395 17.7998 12.5996V7.40039C17.7998 6.26048 17.7986 5.47692 17.749 4.87012C17.7006 4.2776 17.6125 3.95892 17.4951 3.72852C17.2267 3.20176 16.7982 2.77331 16.2715 2.50488C16.0411 2.38749 15.7224 2.29942 15.1299 2.25098C14.5231 2.2014 13.7395 2.2002 12.5996 2.2002H7.40039ZM10.001 5.51562C10.5622 5.51578 11.0628 5.86938 11.25 6.39844L13.5771 12.9824C13.7527 13.4791 13.3843 14 12.8574 14C12.5295 13.9998 12.2381 13.7904 12.1338 13.4795L11.6055 11.9023H8.40625L7.87793 13.4785C7.77356 13.7899 7.48172 14 7.15332 14C6.62651 14 6.25783 13.4793 6.43262 12.9824L8.75098 6.40039C8.93774 5.87027 9.43891 5.51562 10.001 5.51562ZM8.81641 10.6719H11.1953L10.0352 7.25H9.96484L8.81641 10.6719Z",
|
|
5950
5935
|
fill: t
|
|
5951
5936
|
})
|
|
5952
|
-
}),
|
|
5937
|
+
}), hi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5953
5938
|
width: e,
|
|
5954
5939
|
height: e,
|
|
5955
5940
|
viewBox: "0 0 20 20",
|
|
@@ -5959,7 +5944,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5959
5944
|
d: "M12.5996 1C14.8398 1 15.9608 0.999573 16.8164 1.43555C17.5689 1.81902 18.181 2.43109 18.5645 3.18359C19.0004 4.03924 19 5.16018 19 7.40039V12.5996C19 14.8398 19.0004 15.9608 18.5645 16.8164L18.4102 17.0918C18.0259 17.7183 17.4749 18.2289 16.8164 18.5645L16.6523 18.6406C15.816 18.9999 14.6999 19 12.5996 19H7.40039L5.91602 18.9932C4.72431 18.9744 3.96088 18.9041 3.34766 18.6406L3.18359 18.5645C2.52512 18.2289 1.97413 17.7183 1.58984 17.0918L1.43555 16.8164C0.999573 15.9608 1 14.8398 1 12.5996V7.40039C1 5.16018 0.999573 4.03924 1.43555 3.18359C1.81902 2.43109 2.43109 1.81902 3.18359 1.43555C3.82525 1.10861 4.61607 1.02728 5.91602 1.00684L7.40039 1H12.5996ZM7.40039 2.2002C6.26048 2.2002 5.47692 2.2014 4.87012 2.25098C4.2776 2.29942 3.95892 2.38749 3.72852 2.50488C3.20176 2.77331 2.77331 3.20176 2.50488 3.72852C2.38749 3.95892 2.29942 4.2776 2.25098 4.87012C2.2014 5.47692 2.2002 6.26048 2.2002 7.40039V12.5996C2.2002 13.7395 2.2014 14.5231 2.25098 15.1299C2.29942 15.7224 2.38749 16.0411 2.50488 16.2715C2.77331 16.7982 3.20176 17.2267 3.72852 17.4951C3.95892 17.6125 4.2776 17.7006 4.87012 17.749C5.47692 17.7986 6.26048 17.7998 7.40039 17.7998H12.5996C13.7395 17.7998 14.5231 17.7986 15.1299 17.749C15.7224 17.7006 16.0411 17.6125 16.2715 17.4951C16.7982 17.2267 17.2267 16.7982 17.4951 16.2715C17.6125 16.0411 17.7006 15.7224 17.749 15.1299C17.7986 14.5231 17.7998 13.7395 17.7998 12.5996V7.40039C17.7998 6.26048 17.7986 5.47692 17.749 4.87012C17.7006 4.2776 17.6125 3.95892 17.4951 3.72852C17.2267 3.20176 16.7982 2.77331 16.2715 2.50488C16.0411 2.38749 15.7224 2.29942 15.1299 2.25098C14.5231 2.2014 13.7395 2.2002 12.5996 2.2002H7.40039ZM7.38672 11.75C7.74592 11.75 8.03711 12.0412 8.03711 12.4004V13.7773H13.416C13.7073 13.7773 13.9434 14.0134 13.9434 14.3047C13.9434 14.5959 13.7073 14.832 13.416 14.832H7.44727C7.0547 14.8319 6.73649 14.5137 6.73633 14.1211V12.4004C6.73633 12.0412 7.02752 11.75 7.38672 11.75ZM12.8711 4.46094C13.2303 4.46094 13.5215 4.75213 13.5215 5.11133V7.78906H14.459C14.7567 7.78906 14.998 8.03041 14.998 8.32812C14.998 8.62584 14.7567 8.86719 14.459 8.86719H13.5215V11.7207C13.5215 12.0799 13.2303 12.3711 12.8711 12.3711C12.5119 12.3711 12.2207 12.0799 12.2207 11.7207V5.11133C12.2207 4.75213 12.5119 4.46094 12.8711 4.46094ZM8.31836 7.10938C9.8418 7.10938 10.8965 7.91797 10.9082 9.13672C10.8965 10.3438 9.8418 11.1406 8.31836 11.1406C6.7832 11.1406 5.7168 10.3438 5.7168 9.13672C5.7168 7.91797 6.7832 7.10938 8.31836 7.10938ZM8.31836 8.11719C7.50977 8.11719 6.98242 8.49219 6.98242 9.13672C6.98242 9.76953 7.50977 10.1445 8.31836 10.1328C9.12695 10.1445 9.66602 9.76953 9.66602 9.13672C9.66602 8.49219 9.12695 8.11719 8.31836 8.11719ZM8.32422 4.44922C8.68342 4.44922 8.97461 4.74041 8.97461 5.09961V5.63281H10.9375C11.2255 5.63281 11.459 5.86629 11.459 6.1543C11.459 6.4423 11.2255 6.67578 10.9375 6.67578H5.69922C5.41121 6.67578 5.17773 6.4423 5.17773 6.1543C5.17773 5.86629 5.41121 5.63281 5.69922 5.63281H7.67383V5.09961C7.67383 4.74041 7.96502 4.44922 8.32422 4.44922Z",
|
|
5960
5945
|
fill: t
|
|
5961
5946
|
})
|
|
5962
|
-
}),
|
|
5947
|
+
}), gi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg", {
|
|
5963
5948
|
width: e,
|
|
5964
5949
|
height: e,
|
|
5965
5950
|
viewBox: "0 0 20 20",
|
|
@@ -5973,7 +5958,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5973
5958
|
d: "M16 17V18H4V17H16ZM17 16V4C17 3.44772 16.5523 3 16 3H4C3.44772 3 3 3.44772 3 4V16C3 16.5523 3.44772 17 4 17V18C2.89543 18 2 17.1046 2 16V4C2 2.89543 2.89543 2 4 2H16C17.1046 2 18 2.89543 18 4V16C18 17.1046 17.1046 18 16 18V17C16.5523 17 17 16.5523 17 16Z",
|
|
5974
5959
|
fill: t
|
|
5975
5960
|
})]
|
|
5976
|
-
}),
|
|
5961
|
+
}), _i = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5977
5962
|
width: e,
|
|
5978
5963
|
height: e,
|
|
5979
5964
|
viewBox: "0 0 20 20",
|
|
@@ -5985,7 +5970,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5985
5970
|
d: "M4.49961 5.39999C4.16824 5.39999 3.89961 5.66862 3.89961 5.99999V12C3.89961 12.3314 4.16824 12.6 4.49961 12.6H15.5511L13.5753 14.5757C13.341 14.81 13.341 15.1899 13.5753 15.4243C13.8097 15.6586 14.1896 15.6586 14.4239 15.4243L17.4239 12.4243C17.6582 12.1899 17.6582 11.81 17.4239 11.5757L14.4239 8.57573C14.1896 8.34142 13.8097 8.34142 13.5753 8.57573C13.341 8.81004 13.341 9.18994 13.5753 9.42426L15.5511 11.4H5.09961V5.99999C5.09961 5.66862 4.83098 5.39999 4.49961 5.39999Z",
|
|
5986
5971
|
fill: t
|
|
5987
5972
|
})
|
|
5988
|
-
}),
|
|
5973
|
+
}), vi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5989
5974
|
width: e,
|
|
5990
5975
|
height: e,
|
|
5991
5976
|
viewBox: "0 0 20 20",
|
|
@@ -5995,7 +5980,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
5995
5980
|
d: "M14.375 1.875H5.625C5.29348 1.875 4.97554 2.0067 4.74112 2.24112C4.5067 2.47554 4.375 2.79348 4.375 3.125V5.9375C4.37542 6.13148 4.42079 6.32273 4.50754 6.49623C4.59429 6.66973 4.72007 6.82077 4.875 6.9375L8.95859 10L4.875 13.0625C4.72007 13.1792 4.59429 13.3303 4.50754 13.5038C4.42079 13.6773 4.37542 13.8685 4.375 14.0625V16.875C4.375 17.2065 4.5067 17.5245 4.74112 17.7589C4.97554 17.9933 5.29348 18.125 5.625 18.125H14.375C14.7065 18.125 15.0245 17.9933 15.2589 17.7589C15.4933 17.5245 15.625 17.2065 15.625 16.875V14.0906C15.6246 13.8974 15.5796 13.7069 15.4935 13.5338C15.4075 13.3608 15.2827 13.2099 15.1289 13.093L11.0367 10L15.1289 6.90625C15.2828 6.78952 15.4076 6.63882 15.4937 6.4659C15.5797 6.29298 15.6247 6.10252 15.625 5.90938V3.125C15.625 2.79348 15.4933 2.47554 15.2589 2.24112C15.0245 2.0067 14.7065 1.875 14.375 1.875ZM14.375 3.125V4.375H5.625V3.125H14.375ZM14.375 16.875H5.625V14.0625L10 10.7812L14.375 14.0898V16.875ZM10 9.21875L5.625 5.9375V5.625H14.375V5.90938L10 9.21875Z",
|
|
5996
5981
|
fill: t
|
|
5997
5982
|
})
|
|
5998
|
-
}),
|
|
5983
|
+
}), yi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
5999
5984
|
width: e,
|
|
6000
5985
|
height: e,
|
|
6001
5986
|
viewBox: "0 0 20 20",
|
|
@@ -6005,7 +5990,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
6005
5990
|
d: "M10.7345 5.47989C10.7345 5.10995 10.5875 4.75542 10.3259 4.49384C10.1444 4.31235 9.91796 4.18715 9.67281 4.12681L7.29887 9.47027V15.9156H14.0469C14.2275 15.9176 14.4034 15.854 14.541 15.737C14.6784 15.6201 14.7689 15.4575 14.7961 15.2791V15.2776L15.6875 9.46573C15.7036 9.35875 15.6965 9.24952 15.6663 9.14562C15.6361 9.04134 15.5832 8.94454 15.5119 8.86259C15.4408 8.78085 15.3527 8.71556 15.2539 8.67113C15.1548 8.62667 15.0469 8.60407 14.9383 8.6053H11.2771C10.9776 8.6053 10.7345 8.36229 10.7345 8.0627V5.47989ZM4.07054 15.1664C4.07054 15.365 4.14952 15.5556 4.29 15.6961C4.43047 15.8365 4.62112 15.9156 4.81973 15.9156H6.21443V9.89708H4.81973C4.62106 9.89708 4.43048 9.97606 4.29 10.1165C4.14952 10.257 4.07054 10.4476 4.07054 10.6463V15.1664ZM11.8197 7.52086H14.9323C15.196 7.51878 15.4575 7.57329 15.6981 7.6813C15.9405 7.79015 16.1564 7.95072 16.3308 8.15124C16.5051 8.35181 16.6343 8.58769 16.7084 8.84292C16.7825 9.09824 16.7997 9.3671 16.7598 9.62995V9.6307L15.8684 15.4403L15.8691 15.4411C15.8028 15.8784 15.5803 16.2776 15.2433 16.5641C14.9078 16.8492 14.4809 17.0028 14.0408 16.9992V17H4.81973C4.33339 17 3.86657 16.8073 3.52265 16.4635C3.17871 16.1195 2.98535 15.6528 2.98535 15.1664V10.6463C2.98535 10.1599 3.17871 9.69313 3.52265 9.34919C3.86659 9.00525 4.33333 8.81189 4.81973 8.81189H6.40438L8.84416 3.32238L8.882 3.252C8.98047 3.09678 9.15239 3 9.33984 3C9.99751 3 10.6282 3.26144 11.0932 3.72649C11.5583 4.19153 11.8197 4.82222 11.8197 5.47989V7.52086Z",
|
|
6006
5991
|
fill: t
|
|
6007
5992
|
})
|
|
6008
|
-
}),
|
|
5993
|
+
}), bi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
6009
5994
|
width: e,
|
|
6010
5995
|
height: e,
|
|
6011
5996
|
viewBox: "0 0 20 20",
|
|
@@ -6015,7 +6000,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
6015
6000
|
d: "M9.03136 14.5197C9.03136 14.8896 9.17841 15.2441 9.43999 15.5057C9.62147 15.6872 9.8479 15.8124 10.093 15.8727L12.4669 10.5295L12.4669 4.0844L5.71915 4.08439C5.5385 4.08235 5.36265 4.14598 5.225 4.26298C5.0876 4.37989 4.99712 4.54246 4.96998 4.7208L4.96998 4.72232L4.07856 10.534C4.06248 10.641 4.0696 10.7502 4.09974 10.8541C4.13002 10.9584 4.18286 11.0552 4.25412 11.1371C4.32525 11.2189 4.41333 11.2842 4.51216 11.3286C4.61122 11.373 4.71914 11.3956 4.82772 11.3944L8.48878 11.3944C8.78835 11.3944 9.03136 11.6374 9.03136 11.937L9.03136 14.5197ZM15.6951 4.83356C15.6951 4.6349 15.6161 4.44432 15.4757 4.30385C15.3352 4.16345 15.1446 4.0844 14.946 4.0844L13.5513 4.0844L13.5513 10.1027L14.946 10.1027C15.1446 10.1027 15.3352 10.0237 15.4757 9.88322C15.6161 9.74274 15.6951 9.55217 15.6951 9.35351L15.6951 4.83356ZM7.9462 12.4788L4.83377 12.4788C4.57006 12.4809 4.3086 12.4264 4.06796 12.3184C3.82556 12.2095 3.6097 12.049 3.43533 11.8484C3.26097 11.6479 3.13183 11.412 3.05773 11.1568C2.9836 10.9015 2.96637 10.6326 3.00627 10.3698L3.00627 10.369L3.8977 4.55962L3.89694 4.55886C3.96326 4.12156 4.18575 3.72233 4.52276 3.43588C4.85823 3.1508 5.2851 2.9972 5.7252 3.00076L5.7252 3L14.946 3C15.4323 3 15.8991 3.19268 16.243 3.53652C16.5869 3.88045 16.7803 4.34717 16.7803 4.83356L16.7803 9.35351C16.7803 9.83989 16.5869 10.3066 16.243 10.6505C15.8991 10.9945 15.4323 11.1878 14.946 11.1878L13.3614 11.1878L10.9217 16.6771L10.8838 16.7475C10.7854 16.9027 10.6135 16.9995 10.426 16.9995C9.76836 16.9995 9.13769 16.7381 8.67266 16.273C8.20764 15.808 7.9462 15.1774 7.9462 14.5197L7.9462 12.4788Z",
|
|
6016
6001
|
fill: t
|
|
6017
6002
|
})
|
|
6018
|
-
}),
|
|
6003
|
+
}), xi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
6019
6004
|
width: e,
|
|
6020
6005
|
height: e,
|
|
6021
6006
|
viewBox: "0 0 20 20",
|
|
@@ -6025,7 +6010,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
6025
6010
|
d: "M8.97589 15.561C8.97589 16.0063 9.1529 16.4331 9.46776 16.7479C9.68622 16.9664 9.95877 17.1171 10.2538 17.1897L13.1113 10.758L13.1113 3.00006L4.98898 3.00006C4.77154 2.9976 4.55987 3.07419 4.39418 3.21503C4.2288 3.35574 4.11988 3.55143 4.08722 3.76611L4.08722 3.76793L3.0142 10.7635C2.99485 10.8922 3.00342 11.0237 3.03971 11.1488C3.07615 11.2743 3.13976 11.3908 3.22553 11.4894C3.31115 11.5878 3.41717 11.6664 3.53613 11.7199C3.65538 11.7734 3.78528 11.8006 3.91597 11.7991L8.32279 11.7991C8.68339 11.7991 8.97589 12.0916 8.97589 12.4522L8.97589 15.561ZM16.9971 3.90183C16.9971 3.6627 16.902 3.43331 16.7329 3.26421C16.5638 3.09522 16.3344 3.00006 16.0953 3.00006L14.4166 3.00006L14.4166 10.2443L16.0953 10.2443C16.3344 10.2443 16.5638 10.1492 16.7329 9.98011C16.902 9.81102 16.9971 9.58163 16.9971 9.34249L16.9971 3.90183Z",
|
|
6026
6011
|
fill: t
|
|
6027
6012
|
})
|
|
6028
|
-
}),
|
|
6013
|
+
}), Si = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
6029
6014
|
width: e,
|
|
6030
6015
|
height: e,
|
|
6031
6016
|
viewBox: "0 0 20 20",
|
|
@@ -6035,7 +6020,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
6035
6020
|
d: "M16.751 3C17.0822 3.00007 17.3996 3.13193 17.6338 3.36621C17.8681 3.60062 18 3.9185 18 4.25V15.75C18 16.0815 17.8681 16.3994 17.6338 16.6338C17.3996 16.8681 17.0822 16.9999 16.751 17H3.24902C2.91785 16.9999 2.60042 16.8681 2.36621 16.6338C2.13193 16.3994 2.00001 16.0815 2 15.75L2.00879 4.25C2.00879 3.91851 2.14075 3.60062 2.375 3.36621C2.60929 3.13179 2.92746 3 3.25879 3H16.751ZM3.24902 15.75H10.0049V11.375C10.0049 11.2094 10.0705 11.0508 10.1875 10.9336C10.3046 10.8165 10.4633 10.7501 10.6289 10.75H16.751V4.25H3.25879L3.24902 15.75ZM11.2539 15.75H16.751V12H11.2539V15.75ZM4.57617 5.57617C4.81048 5.34186 5.19049 5.34188 5.4248 5.57617L8.40039 8.55176V6.57129C8.40052 6.24003 8.66871 5.97168 9 5.97168C9.33129 5.97168 9.59948 6.24003 9.59961 6.57129V10C9.59957 10.1067 9.56834 10.2052 9.51953 10.292C9.51212 10.3052 9.50653 10.3193 9.49805 10.332C9.47609 10.3649 9.45169 10.3959 9.42383 10.4238C9.38077 10.4669 9.33131 10.4991 9.28027 10.5264C9.2628 10.5357 9.246 10.5461 9.22754 10.5537C9.21616 10.5584 9.20398 10.5605 9.19238 10.5645C9.16705 10.5731 9.14197 10.5827 9.11523 10.5879C9.07718 10.5953 9.03864 10.5996 9 10.5996H5.57129C5.24008 10.5995 4.97179 10.3312 4.97168 10C4.97181 9.66881 5.24009 9.39952 5.57129 9.39941H7.55176L4.57617 6.42383C4.34193 6.18953 4.34193 5.81047 4.57617 5.57617Z",
|
|
6036
6021
|
fill: t
|
|
6037
6022
|
})
|
|
6038
|
-
}),
|
|
6023
|
+
}), Ci = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
6039
6024
|
width: e,
|
|
6040
6025
|
height: e,
|
|
6041
6026
|
viewBox: "0 0 20 20",
|
|
@@ -6045,7 +6030,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
6045
6030
|
d: "M16.751 3C17.0822 3.00007 17.3996 3.13193 17.6338 3.36621C17.8681 3.60062 18 3.9185 18 4.25V15.75C18 16.0815 17.8681 16.3994 17.6338 16.6338C17.3996 16.8681 17.0822 16.9999 16.751 17H3.24902C2.91785 16.9999 2.60042 16.8681 2.36621 16.6338C2.13193 16.3994 2.00001 16.0815 2 15.75L2.00879 4.25C2.00879 3.91851 2.14075 3.60062 2.375 3.36621C2.60929 3.13179 2.92746 3 3.25879 3H16.751ZM3.24902 15.75H10.0049V11.375C10.0049 11.2094 10.0705 11.0508 10.1875 10.9336C10.3046 10.8165 10.4633 10.7501 10.6289 10.75H16.751V4.25H3.25879L3.24902 15.75ZM11.2539 15.75H16.751V12H11.2539V15.75ZM8.42871 5.40039C8.75992 5.4005 9.02821 5.66879 9.02832 6C9.02821 6.33121 8.75992 6.60048 8.42871 6.60059H6.44824L9.42383 9.57617C9.65808 9.81046 9.65805 10.1895 9.42383 10.4238C9.18951 10.6581 8.80951 10.6581 8.5752 10.4238L5.59961 7.44824V9.42871C5.5995 9.75999 5.3313 10.0283 5 10.0283C4.6687 10.0283 4.4005 9.75999 4.40039 9.42871V5.99121C4.40154 5.91643 4.41638 5.84171 4.44531 5.77148C4.45464 5.74885 4.46758 5.72818 4.47949 5.70703C4.48633 5.69492 4.49128 5.68164 4.49902 5.66992L4.50293 5.66406C4.54609 5.60025 4.60116 5.54501 4.66504 5.50195C4.68208 5.49046 4.70087 5.48221 4.71875 5.47266C4.73618 5.46334 4.75308 5.4529 4.77148 5.44531C4.78284 5.44064 4.79508 5.43852 4.80664 5.43457C4.83192 5.42593 4.85712 5.41636 4.88379 5.41113C4.92209 5.4036 4.96111 5.40039 5 5.40039H8.42871Z",
|
|
6046
6031
|
fill: t
|
|
6047
6032
|
})
|
|
6048
|
-
}),
|
|
6033
|
+
}), wi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
6049
6034
|
width: e,
|
|
6050
6035
|
height: e,
|
|
6051
6036
|
viewBox: "0 0 20 20",
|
|
@@ -6055,7 +6040,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
6055
6040
|
d: "M16.7507 3.00005L3.25842 3C2.92709 3 2.60932 3.1317 2.37504 3.36612C2.14075 3.60053 2.00913 3.91848 2.00913 4.25L2 15.75C2 16.0815 2.13162 16.3994 2.36591 16.6338C2.60019 16.8683 2.91796 17 3.24929 17L16.7507 17C17.082 17 17.3998 16.8683 17.6341 16.6339C17.8684 16.3995 18 16.0815 18 15.75V4.25004C18 3.91852 17.8684 3.60058 17.6341 3.36616C17.3998 3.13174 17.082 3.00005 16.7507 3.00005ZM3.25842 4.25L16.7507 4.25004V10.75L10.6292 10.75C10.4635 10.75 10.3047 10.8159 10.1875 10.9331C10.0704 11.0503 10.0046 11.2093 10.0046 11.375V15.7501L3.24929 15.75L3.25842 4.25ZM16.7507 15.75L11.2539 15.7501V12L16.7507 12V15.75Z",
|
|
6056
6041
|
fill: t
|
|
6057
6042
|
})
|
|
6058
|
-
}),
|
|
6043
|
+
}), Ti = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
6059
6044
|
width: e,
|
|
6060
6045
|
height: e,
|
|
6061
6046
|
viewBox: "0 0 20 20",
|
|
@@ -6067,7 +6052,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
6067
6052
|
d: "M17 15.65C17 16.009 16.709 16.3 16.35 16.3L3.65018 16.3C3.29119 16.3 3.00018 16.009 3.00018 15.65C3.00018 15.291 3.29119 15 3.65018 15L16.35 15C16.709 15 17 15.291 17 15.65Z",
|
|
6068
6053
|
fill: t
|
|
6069
6054
|
})
|
|
6070
|
-
}),
|
|
6055
|
+
}), Ei = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
6071
6056
|
width: e,
|
|
6072
6057
|
height: e,
|
|
6073
6058
|
viewBox: "0 0 20 20",
|
|
@@ -6077,7 +6062,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
6077
6062
|
d: "M14.1074 3C14.9317 3.00041 15.5994 3.66884 15.5996 4.49316V4.97559C16.1468 5.19699 16.5329 5.73285 16.5332 6.35938V6.84277C17.0803 7.06434 17.4668 7.59997 17.4668 8.22656V15.5068C17.4667 16.3314 16.7982 16.9998 15.9736 17H4.02637C3.20182 16.9998 2.53329 16.3314 2.5332 15.5068V8.22656C2.53325 7.59997 2.91966 7.06434 3.4668 6.84277V6.35938C3.46705 5.73285 3.85319 5.19699 4.40039 4.97559V4.49316C4.40059 3.66884 5.0683 3.00041 5.89258 3H14.1074ZM4.02637 7.85352C3.82035 7.85368 3.65338 8.02052 3.65332 8.22656V15.5068C3.65341 15.7128 3.82038 15.8797 4.02637 15.8799H15.9736C16.1796 15.8797 16.3466 15.7128 16.3467 15.5068V8.22656C16.3466 8.02052 16.1796 7.85368 15.9736 7.85352H4.02637ZM4.95996 5.9873C4.75415 5.9875 4.58725 6.1536 4.58691 6.35938V6.7334H15.4131V6.35938C15.4127 6.1536 15.2458 5.9875 15.04 5.9873H4.95996ZM5.89258 4.12012C5.68686 4.12052 5.5207 4.2874 5.52051 4.49316V4.86621H14.4795V4.49316C14.4793 4.2874 14.3131 4.12052 14.1074 4.12012H5.89258Z",
|
|
6078
6063
|
fill: t
|
|
6079
6064
|
})
|
|
6080
|
-
}),
|
|
6065
|
+
}), Di = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
6081
6066
|
width: e,
|
|
6082
6067
|
height: e,
|
|
6083
6068
|
viewBox: "0 0 20 20",
|
|
@@ -6089,7 +6074,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
6089
6074
|
d: "M8.58625 10.7786C8.71056 10.7787 8.83458 10.8154 8.94172 10.888C9.01003 10.9342 9.06871 10.9933 9.11457 11.0618C9.1237 11.0755 9.13004 11.0906 9.13801 11.1048C9.15042 11.1269 9.16341 11.1486 9.17316 11.1722C9.17825 11.1845 9.1806 11.1977 9.18488 11.2103C9.20692 11.2748 9.22199 11.3433 9.22199 11.4153V15.6575C9.22199 16.0089 8.93757 16.2931 8.58625 16.2933C8.23477 16.2933 7.94953 16.009 7.94953 15.6575V12.9505L4.08625 16.8138C3.83772 17.0623 3.43439 17.0623 3.18586 16.8138C2.93805 16.5654 2.93805 16.1637 3.18586 15.9153L7.05012 12.0511H4.34308C3.99178 12.051 3.7075 11.7666 3.70734 11.4153C3.70734 11.0639 3.99168 10.7787 4.34308 10.7786H8.58625ZM15.9153 3.18682C16.1638 2.93852 16.5653 2.93852 16.8138 3.18682C17.0622 3.43536 17.0623 3.83776 16.8138 4.08624L12.9505 7.94952H15.6575C16.0089 7.94962 16.2933 8.23482 16.2933 8.58624C16.2931 8.93752 16.0088 9.22188 15.6575 9.22198H11.4144C11.3731 9.22195 11.332 9.21729 11.2913 9.20928C11.2633 9.20378 11.2369 9.19393 11.2103 9.18487C11.1977 9.18059 11.1845 9.17824 11.1722 9.17315C11.1486 9.1634 11.1269 9.1504 11.1048 9.138C11.0906 9.13003 11.0755 9.12369 11.0618 9.11456C10.9919 9.0678 10.9317 9.00786 10.8851 8.9378C10.876 8.92413 10.8696 8.90902 10.8616 8.89483C10.8493 8.87275 10.8362 8.85106 10.8265 8.82745C10.8214 8.81512 10.819 8.80193 10.8148 8.78936C10.7931 8.72534 10.7787 8.65761 10.7786 8.58624V4.34307C10.7787 3.9918 11.0631 3.7075 11.4144 3.70733C11.7658 3.70734 12.051 3.9917 12.0511 4.34307V7.05011L15.9153 3.18682Z",
|
|
6090
6075
|
fill: t
|
|
6091
6076
|
})
|
|
6092
|
-
}),
|
|
6077
|
+
}), Oi = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ i("svg", {
|
|
6093
6078
|
width: e,
|
|
6094
6079
|
height: e,
|
|
6095
6080
|
viewBox: "0 0 20 20",
|
|
@@ -6099,7 +6084,7 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
6099
6084
|
d: "M8.13574 10.9648C8.38421 10.7165 8.78664 10.7166 9.03516 10.9648C9.28346 11.2133 9.28346 11.6158 9.03516 11.8643L5.17285 15.7275H7.87891C8.23027 15.7277 8.51464 16.0129 8.51465 16.3643C8.51452 16.7155 8.23019 16.9999 7.87891 17H3.63574C3.59446 17 3.55335 16.9953 3.5127 16.9873C3.49526 16.9839 3.4788 16.9775 3.46191 16.9727C3.39953 16.9549 3.33885 16.9298 3.2832 16.8926C3.21325 16.8458 3.15306 16.7859 3.10645 16.7158C3.09734 16.7021 3.09094 16.687 3.08301 16.6729C3.07066 16.6508 3.05754 16.6291 3.04785 16.6055C3.0428 16.5931 3.04038 16.5799 3.03613 16.5674C3.01446 16.5034 3.00003 16.4356 3 16.3643V12.1211C3.00013 11.7698 3.28446 11.4855 3.63574 11.4854C3.98714 11.4854 4.27233 11.7697 4.27246 12.1211V14.8281L8.13574 10.9648ZM16.3926 3.00195C16.424 3.00339 16.4554 3.00566 16.4863 3.01172C16.5566 3.02538 16.6217 3.05221 16.6816 3.08691C16.693 3.09347 16.7048 3.09913 16.7158 3.10645C16.8205 3.17608 16.9026 3.27594 16.9512 3.39355C16.9563 3.40588 16.9586 3.41908 16.9629 3.43164C16.9848 3.49601 17 3.56392 17 3.63574V7.87891C16.9999 8.23019 16.7155 8.51452 16.3643 8.51465C16.0129 8.51464 15.7277 8.23027 15.7275 7.87891V5.1709L11.8633 9.03516C11.6148 9.28346 11.2124 9.28346 10.9639 9.03516C10.7159 8.7867 10.7158 8.38415 10.9639 8.13574L14.8271 4.27246H12.1211C11.7697 4.27233 11.4854 3.98714 11.4854 3.63574C11.4855 3.28446 11.7698 3.00013 12.1211 3H16.3643C16.3738 3 16.3832 3.00154 16.3926 3.00195Z",
|
|
6100
6085
|
fill: t
|
|
6101
6086
|
})
|
|
6102
|
-
}),
|
|
6087
|
+
}), ki = {
|
|
6103
6088
|
basic: null,
|
|
6104
6089
|
info: {
|
|
6105
6090
|
component: X,
|
|
@@ -6114,12 +6099,12 @@ var w = ({ size: e = 20, color: t = "currentColor" }) => /* @__PURE__ */ a("svg"
|
|
|
6114
6099
|
className: "aivex:text-icon-warning"
|
|
6115
6100
|
},
|
|
6116
6101
|
failed: {
|
|
6117
|
-
component:
|
|
6102
|
+
component: $r,
|
|
6118
6103
|
className: "aivex:text-icon-danger"
|
|
6119
6104
|
}
|
|
6120
6105
|
};
|
|
6121
|
-
function
|
|
6122
|
-
let u =
|
|
6106
|
+
function Ai({ className: e, type: t = "basic", title: n, description: r, secondaryAction: o, primaryAction: s, ref: c, ...l }) {
|
|
6107
|
+
let u = ki[t], d = u?.component;
|
|
6123
6108
|
return /* @__PURE__ */ a("div", {
|
|
6124
6109
|
ref: c,
|
|
6125
6110
|
role: "alert",
|
|
@@ -6142,13 +6127,13 @@ function ji({ className: e, type: t = "basic", title: n, description: r, seconda
|
|
|
6142
6127
|
})]
|
|
6143
6128
|
}), (o || s) && /* @__PURE__ */ a("div", {
|
|
6144
6129
|
className: "aivex:flex aivex:items-center aivex:justify-end aivex:gap-2",
|
|
6145
|
-
children: [o && /* @__PURE__ */ i(
|
|
6130
|
+
children: [o && /* @__PURE__ */ i(S, {
|
|
6146
6131
|
variant: "solid",
|
|
6147
6132
|
color: "secondary",
|
|
6148
6133
|
size: "md",
|
|
6149
6134
|
onClick: o.onClick,
|
|
6150
6135
|
children: o.label
|
|
6151
|
-
}), s && /* @__PURE__ */ i(
|
|
6136
|
+
}), s && /* @__PURE__ */ i(S, {
|
|
6152
6137
|
variant: "solid",
|
|
6153
6138
|
color: "primary",
|
|
6154
6139
|
size: "md",
|
|
@@ -6160,7 +6145,7 @@ function ji({ className: e, type: t = "basic", title: n, description: r, seconda
|
|
|
6160
6145
|
}
|
|
6161
6146
|
//#endregion
|
|
6162
6147
|
//#region src/components/Avatar/Avatar.tsx
|
|
6163
|
-
var
|
|
6148
|
+
var ji = t("aivex:inline-flex aivex:items-center aivex:justify-center aivex:shrink-0 aivex:overflow-hidden aivex:bg-bg-secondary aivex:text-text-secondary aivex:select-none", {
|
|
6164
6149
|
variants: {
|
|
6165
6150
|
size: {
|
|
6166
6151
|
xxs: "aivex:w-4 aivex:h-4 aivex:text-[8px] aivex:font-medium",
|
|
@@ -6182,10 +6167,10 @@ var Mi = t("aivex:inline-flex aivex:items-center aivex:justify-center aivex:shri
|
|
|
6182
6167
|
type: "round"
|
|
6183
6168
|
}
|
|
6184
6169
|
});
|
|
6185
|
-
function
|
|
6170
|
+
function Mi({ className: e, size: t, type: n, src: r, alt: a, initials: o, icon: s, ref: c, ...l }) {
|
|
6186
6171
|
return /* @__PURE__ */ i("div", {
|
|
6187
6172
|
ref: c,
|
|
6188
|
-
className: h(
|
|
6173
|
+
className: h(ji({
|
|
6189
6174
|
size: t,
|
|
6190
6175
|
type: n
|
|
6191
6176
|
}), e),
|
|
@@ -6199,7 +6184,7 @@ function Ni({ className: e, size: t, type: n, src: r, alt: a, initials: o, icon:
|
|
|
6199
6184
|
}
|
|
6200
6185
|
//#endregion
|
|
6201
6186
|
//#region src/components/Badge/Badge.tsx
|
|
6202
|
-
var
|
|
6187
|
+
var Ni = t("aivex:inline-flex aivex:items-center aivex:justify-center", {
|
|
6203
6188
|
variants: {
|
|
6204
6189
|
radius: {
|
|
6205
6190
|
rect: "aivex:rounded-xs",
|
|
@@ -6358,10 +6343,10 @@ var Pi = t("aivex:inline-flex aivex:items-center aivex:justify-center", {
|
|
|
6358
6343
|
color: "gray"
|
|
6359
6344
|
}
|
|
6360
6345
|
});
|
|
6361
|
-
function
|
|
6346
|
+
function Pi({ className: e, radius: t, size: n, style: r, color: a, children: o, ref: s, ...c }) {
|
|
6362
6347
|
return /* @__PURE__ */ i("span", {
|
|
6363
6348
|
ref: s,
|
|
6364
|
-
className: h(
|
|
6349
|
+
className: h(Ni({
|
|
6365
6350
|
radius: t,
|
|
6366
6351
|
size: n,
|
|
6367
6352
|
style: r,
|
|
@@ -6371,7 +6356,7 @@ function Fi({ className: e, radius: t, size: n, style: r, color: a, children: o,
|
|
|
6371
6356
|
children: o
|
|
6372
6357
|
});
|
|
6373
6358
|
}
|
|
6374
|
-
var
|
|
6359
|
+
var Fi = t("aivex:rounded-full aivex:inline-block aivex:shrink-0", {
|
|
6375
6360
|
variants: {
|
|
6376
6361
|
type: {
|
|
6377
6362
|
essential: "aivex:bg-bg-brand",
|
|
@@ -6388,10 +6373,10 @@ var Ii = t("aivex:rounded-full aivex:inline-block aivex:shrink-0", {
|
|
|
6388
6373
|
size: "md"
|
|
6389
6374
|
}
|
|
6390
6375
|
});
|
|
6391
|
-
function
|
|
6376
|
+
function Ii({ className: e, type: t, size: n, ref: r, ...a }) {
|
|
6392
6377
|
return /* @__PURE__ */ i("span", {
|
|
6393
6378
|
ref: r,
|
|
6394
|
-
className: h(
|
|
6379
|
+
className: h(Fi({
|
|
6395
6380
|
type: t,
|
|
6396
6381
|
size: n
|
|
6397
6382
|
}), e),
|
|
@@ -6400,12 +6385,12 @@ function Li({ className: e, type: t, size: n, ref: r, ...a }) {
|
|
|
6400
6385
|
}
|
|
6401
6386
|
//#endregion
|
|
6402
6387
|
//#region src/components/BreadCrumb/BreadCrumb.tsx
|
|
6403
|
-
var
|
|
6388
|
+
var Li = () => /* @__PURE__ */ i("span", {
|
|
6404
6389
|
"aria-hidden": "true",
|
|
6405
6390
|
className: "aivex:text-text-tertiary aivex:text-sm aivex:select-none",
|
|
6406
6391
|
children: "/"
|
|
6407
6392
|
});
|
|
6408
|
-
function
|
|
6393
|
+
function Ri({ className: e, label: t, href: n, current: r = !1, ref: a, ...o }) {
|
|
6409
6394
|
return r ? /* @__PURE__ */ i("span", {
|
|
6410
6395
|
"aria-current": "page",
|
|
6411
6396
|
className: h("aivex:text-sm aivex:font-medium aivex:text-text-primary", e),
|
|
@@ -6418,7 +6403,7 @@ function zi({ className: e, label: t, href: n, current: r = !1, ref: a, ...o })
|
|
|
6418
6403
|
children: t
|
|
6419
6404
|
});
|
|
6420
6405
|
}
|
|
6421
|
-
function
|
|
6406
|
+
function zi({ className: e, items: t, ref: n, ...r }) {
|
|
6422
6407
|
return /* @__PURE__ */ i("nav", {
|
|
6423
6408
|
ref: n,
|
|
6424
6409
|
"aria-label": "Breadcrumb",
|
|
@@ -6428,7 +6413,7 @@ function Bi({ className: e, items: t, ref: n, ...r }) {
|
|
|
6428
6413
|
className: "aivex:flex aivex:items-center aivex:gap-sm",
|
|
6429
6414
|
children: t.map((e, t) => /* @__PURE__ */ a("li", {
|
|
6430
6415
|
className: "aivex:flex aivex:items-center aivex:gap-sm",
|
|
6431
|
-
children: [t > 0 && /* @__PURE__ */ i(
|
|
6416
|
+
children: [t > 0 && /* @__PURE__ */ i(Li, {}), /* @__PURE__ */ i(Ri, {
|
|
6432
6417
|
label: e.label,
|
|
6433
6418
|
href: e.href,
|
|
6434
6419
|
current: e.current
|
|
@@ -6439,7 +6424,7 @@ function Bi({ className: e, items: t, ref: n, ...r }) {
|
|
|
6439
6424
|
}
|
|
6440
6425
|
//#endregion
|
|
6441
6426
|
//#region src/components/Card/Card.tsx
|
|
6442
|
-
function
|
|
6427
|
+
function Bi({ className: e, children: t, ref: n, ...r }) {
|
|
6443
6428
|
return /* @__PURE__ */ i("div", {
|
|
6444
6429
|
ref: n,
|
|
6445
6430
|
className: h("aivex:bg-bg-primary aivex:rounded-md aivex:shadow-sm aivex:p-xl", e),
|
|
@@ -6449,19 +6434,19 @@ function Vi({ className: e, children: t, ref: n, ...r }) {
|
|
|
6449
6434
|
}
|
|
6450
6435
|
//#endregion
|
|
6451
6436
|
//#region src/components/Checkbox/Checkbox.tsx
|
|
6452
|
-
var
|
|
6437
|
+
var Vi = t("aivex:relative aivex:m-0 aivex:shrink-0 aivex:rounded-xs aivex:border aivex:border-border-default aivex:bg-bg-primary aivex:appearance-none aivex:cursor-pointer aivex:transition-colors aivex:peer", {
|
|
6453
6438
|
variants: { size: {
|
|
6454
6439
|
sm: "aivex:w-4 aivex:h-4",
|
|
6455
6440
|
md: "aivex:w-5 aivex:h-5",
|
|
6456
6441
|
lg: "aivex:w-6 aivex:h-6"
|
|
6457
6442
|
} },
|
|
6458
6443
|
defaultVariants: { size: "md" }
|
|
6459
|
-
}),
|
|
6444
|
+
}), Hi = {
|
|
6460
6445
|
sm: "aivex:h-4",
|
|
6461
6446
|
md: "aivex:h-5",
|
|
6462
6447
|
lg: "aivex:h-6"
|
|
6463
6448
|
};
|
|
6464
|
-
function
|
|
6449
|
+
function Ui({ className: e, label: t, size: n = "md", indeterminate: r = !1, disabled: o, checked: s, defaultChecked: c, onChange: f, id: p, ref: m, ...g }) {
|
|
6465
6450
|
let _ = u(null), v = s !== void 0, [y, b] = d(!!c), x = typeof m == "object" && m ? m : _;
|
|
6466
6451
|
l(() => {
|
|
6467
6452
|
x && "current" in x && x.current && (x.current.indeterminate = r);
|
|
@@ -6480,21 +6465,21 @@ function Wi({ className: e, label: t, size: n = "md", indeterminate: r = !1, dis
|
|
|
6480
6465
|
onChange: (e) => {
|
|
6481
6466
|
v || b(e.target.checked), f?.(e);
|
|
6482
6467
|
},
|
|
6483
|
-
className: h(
|
|
6468
|
+
className: h(Vi({ size: w }), C && "aivex:border-transparent aivex:bg-bg-brand", e),
|
|
6484
6469
|
...g
|
|
6485
6470
|
}), C && /* @__PURE__ */ i("span", {
|
|
6486
6471
|
className: "aivex:absolute aivex:inset-0 aivex:flex aivex:items-center aivex:justify-center aivex:text-white aivex:pointer-events-none",
|
|
6487
6472
|
children: i(r ? F : P, { size: w })
|
|
6488
6473
|
})]
|
|
6489
6474
|
}), t && /* @__PURE__ */ i("span", {
|
|
6490
|
-
className: h("aivex:inline-flex aivex:items-center aivex:text-label-lg aivex:text-text-primary",
|
|
6475
|
+
className: h("aivex:inline-flex aivex:items-center aivex:text-label-lg aivex:text-text-primary", Hi[w]),
|
|
6491
6476
|
children: t
|
|
6492
6477
|
})]
|
|
6493
6478
|
});
|
|
6494
6479
|
}
|
|
6495
6480
|
//#endregion
|
|
6496
6481
|
//#region src/components/Chips/Chips.tsx
|
|
6497
|
-
var
|
|
6482
|
+
var Wi = t("aivex:relative aivex:overflow-hidden aivex:group aivex:inline-flex aivex:items-center aivex:justify-center aivex:gap-[2px] aivex:border aivex:transition-colors aivex:cursor-pointer aivex:select-none aivex:focus-visible:outline-none aivex:focus-visible:ring-2 aivex:focus-visible:ring-border-brand aivex:disabled:pointer-events-none aivex:disabled:opacity-disable", {
|
|
6498
6483
|
variants: {
|
|
6499
6484
|
shape: {
|
|
6500
6485
|
rectangle: "",
|
|
@@ -6542,11 +6527,11 @@ var Gi = t("aivex:relative aivex:overflow-hidden aivex:group aivex:inline-flex a
|
|
|
6542
6527
|
active: !1
|
|
6543
6528
|
}
|
|
6544
6529
|
});
|
|
6545
|
-
function
|
|
6530
|
+
function Gi({ className: e, shape: t, size: n, type: r, active: o, defaultActive: s, children: c, ref: l, onClick: u, ...f }) {
|
|
6546
6531
|
let p = o !== void 0, [m, g] = d(!!s);
|
|
6547
6532
|
return /* @__PURE__ */ a("button", {
|
|
6548
6533
|
ref: l,
|
|
6549
|
-
className: h(
|
|
6534
|
+
className: h(Wi({
|
|
6550
6535
|
shape: t,
|
|
6551
6536
|
size: n,
|
|
6552
6537
|
type: r,
|
|
@@ -6561,7 +6546,7 @@ function Ki({ className: e, shape: t, size: n, type: r, active: o, defaultActive
|
|
|
6561
6546
|
}
|
|
6562
6547
|
//#endregion
|
|
6563
6548
|
//#region src/components/Divider/Divider.tsx
|
|
6564
|
-
var
|
|
6549
|
+
var Ki = t("aivex:shrink-0", {
|
|
6565
6550
|
variants: {
|
|
6566
6551
|
strength: {
|
|
6567
6552
|
basic: "",
|
|
@@ -6599,11 +6584,11 @@ var qi = t("aivex:shrink-0", {
|
|
|
6599
6584
|
direction: "horizontal"
|
|
6600
6585
|
}
|
|
6601
6586
|
});
|
|
6602
|
-
function
|
|
6587
|
+
function qi({ className: e, strength: t, direction: n, ref: r, ...a }) {
|
|
6603
6588
|
return /* @__PURE__ */ i("hr", {
|
|
6604
6589
|
ref: r,
|
|
6605
6590
|
"aria-orientation": n === "vertical" ? "vertical" : "horizontal",
|
|
6606
|
-
className: h(
|
|
6591
|
+
className: h(Ki({
|
|
6607
6592
|
strength: t,
|
|
6608
6593
|
direction: n
|
|
6609
6594
|
}), e),
|
|
@@ -6612,7 +6597,7 @@ function Ji({ className: e, strength: t, direction: n, ref: r, ...a }) {
|
|
|
6612
6597
|
}
|
|
6613
6598
|
//#endregion
|
|
6614
6599
|
//#region src/components/IconButton/IconButton.tsx
|
|
6615
|
-
var
|
|
6600
|
+
var Ji = t("aivex:relative aivex:overflow-hidden aivex:group aivex:inline-flex aivex:items-center aivex:justify-center aivex:transition-colors aivex:disabled:pointer-events-none aivex:disabled:opacity-disable aivex:focus-visible:outline-none aivex:focus-visible:ring-2 aivex:focus-visible:ring-border-brand", {
|
|
6616
6601
|
variants: {
|
|
6617
6602
|
size: {
|
|
6618
6603
|
sm: "aivex:w-6 aivex:h-6",
|
|
@@ -6628,29 +6613,29 @@ var Yi = t("aivex:relative aivex:overflow-hidden aivex:group aivex:inline-flex a
|
|
|
6628
6613
|
size: "sm",
|
|
6629
6614
|
shape: "rectangle"
|
|
6630
6615
|
}
|
|
6631
|
-
}),
|
|
6616
|
+
}), Yi = {
|
|
6632
6617
|
sm: "aivex:w-4 aivex:h-4",
|
|
6633
6618
|
md: "aivex:w-5 aivex:h-5",
|
|
6634
6619
|
lg: "aivex:w-6 aivex:h-6"
|
|
6635
6620
|
};
|
|
6636
|
-
function
|
|
6621
|
+
function Xi({ className: t, size: n = "sm", shape: r = "rectangle", variant: o = "default", asChild: s = !1, children: c, ref: l, ...u }) {
|
|
6637
6622
|
return /* @__PURE__ */ a(s ? e : "button", {
|
|
6638
6623
|
ref: l,
|
|
6639
6624
|
type: s ? void 0 : "button",
|
|
6640
|
-
className: h(
|
|
6625
|
+
className: h(Ji({
|
|
6641
6626
|
size: n,
|
|
6642
6627
|
shape: r
|
|
6643
6628
|
}), t),
|
|
6644
6629
|
...u,
|
|
6645
6630
|
children: [/* @__PURE__ */ i(_, { variant: o === "on-color" ? "white" : "default" }), /* @__PURE__ */ i("span", {
|
|
6646
|
-
className: h("aivex:flex aivex:items-center aivex:justify-center aivex:shrink-0",
|
|
6631
|
+
className: h("aivex:flex aivex:items-center aivex:justify-center aivex:shrink-0", Yi[n ?? "sm"]),
|
|
6647
6632
|
children: c
|
|
6648
6633
|
})]
|
|
6649
6634
|
});
|
|
6650
6635
|
}
|
|
6651
6636
|
//#endregion
|
|
6652
6637
|
//#region src/components/Input/Input.tsx
|
|
6653
|
-
var
|
|
6638
|
+
var Zi = t("aivex:flex aivex:items-center aivex:w-full aivex:border aivex:border-border-default aivex:bg-bg-primary aivex:px-xl aivex:transition-colors", {
|
|
6654
6639
|
variants: {
|
|
6655
6640
|
state: {
|
|
6656
6641
|
default: "aivex:border-border-default aivex:hover:border-border-brand",
|
|
@@ -6667,14 +6652,14 @@ var Qi = t("aivex:flex aivex:items-center aivex:w-full aivex:border aivex:border
|
|
|
6667
6652
|
state: "default",
|
|
6668
6653
|
size: "md"
|
|
6669
6654
|
}
|
|
6670
|
-
}),
|
|
6655
|
+
}), Qi = t("aivex:m-0 aivex:w-full aivex:appearance-none aivex:border-0 aivex:bg-transparent aivex:p-0 aivex:text-text-primary aivex:placeholder:text-text-tertiary aivex:outline-none", {
|
|
6671
6656
|
variants: { size: {
|
|
6672
6657
|
sm: "aivex:text-body-md-regular",
|
|
6673
6658
|
md: "aivex:text-body-lg-regular"
|
|
6674
6659
|
} },
|
|
6675
6660
|
defaultVariants: { size: "md" }
|
|
6676
6661
|
});
|
|
6677
|
-
function
|
|
6662
|
+
function $i({ className: e, label: t, error: n, disabled: r, size: o, id: s, ref: c, onFocus: l, onBlur: u, ...f }) {
|
|
6678
6663
|
let [p, m] = d(!1);
|
|
6679
6664
|
return /* @__PURE__ */ a("div", {
|
|
6680
6665
|
className: "aivex:flex aivex:flex-col aivex:gap-xs aivex:w-full",
|
|
@@ -6683,7 +6668,7 @@ function ea({ className: e, label: t, error: n, disabled: r, size: o, id: s, ref
|
|
|
6683
6668
|
className: "aivex:text-label-md aivex:text-text-secondary",
|
|
6684
6669
|
children: t
|
|
6685
6670
|
}), /* @__PURE__ */ i("div", {
|
|
6686
|
-
className: h(
|
|
6671
|
+
className: h(Zi({
|
|
6687
6672
|
state: r ? "disabled" : n ? "error" : p ? "focused" : "default",
|
|
6688
6673
|
size: o
|
|
6689
6674
|
}), e),
|
|
@@ -6691,7 +6676,7 @@ function ea({ className: e, label: t, error: n, disabled: r, size: o, id: s, ref
|
|
|
6691
6676
|
ref: c,
|
|
6692
6677
|
id: s,
|
|
6693
6678
|
disabled: r,
|
|
6694
|
-
className:
|
|
6679
|
+
className: Qi({ size: o }),
|
|
6695
6680
|
onFocus: (e) => {
|
|
6696
6681
|
m(!0), l?.(e);
|
|
6697
6682
|
},
|
|
@@ -6705,7 +6690,7 @@ function ea({ className: e, label: t, error: n, disabled: r, size: o, id: s, ref
|
|
|
6705
6690
|
}
|
|
6706
6691
|
//#endregion
|
|
6707
6692
|
//#region src/components/Menu/Menu.tsx
|
|
6708
|
-
var
|
|
6693
|
+
var ea = t("aivex:relative aivex:overflow-hidden aivex:group aivex:flex aivex:h-8 aivex:w-full aivex:items-center aivex:gap-md aivex:px-lg aivex:text-body-md-regular aivex:rounded-sm aivex:transition-colors aivex:cursor-pointer aivex:select-none aivex:disabled:opacity-disable aivex:disabled:pointer-events-none", {
|
|
6709
6694
|
variants: {
|
|
6710
6695
|
danger: {
|
|
6711
6696
|
true: "aivex:text-text-danger",
|
|
@@ -6721,14 +6706,14 @@ var ta = t("aivex:relative aivex:overflow-hidden aivex:group aivex:flex aivex:h-
|
|
|
6721
6706
|
activated: !1
|
|
6722
6707
|
}
|
|
6723
6708
|
});
|
|
6724
|
-
function
|
|
6709
|
+
function ta({ className: e, label: t, icon: n, danger: r = !1, activated: o = !1, disabled: s, onClick: c, ref: l, ...u }) {
|
|
6725
6710
|
return /* @__PURE__ */ a("button", {
|
|
6726
6711
|
ref: l,
|
|
6727
6712
|
type: "button",
|
|
6728
6713
|
role: "menuitem",
|
|
6729
6714
|
disabled: s,
|
|
6730
6715
|
onClick: c,
|
|
6731
|
-
className: h(
|
|
6716
|
+
className: h(ea({
|
|
6732
6717
|
danger: r,
|
|
6733
6718
|
activated: o
|
|
6734
6719
|
}), e),
|
|
@@ -6746,7 +6731,7 @@ function na({ className: e, label: t, icon: n, danger: r = !1, activated: o = !1
|
|
|
6746
6731
|
]
|
|
6747
6732
|
});
|
|
6748
6733
|
}
|
|
6749
|
-
function
|
|
6734
|
+
function na({ className: e, children: t, ref: n, ...r }) {
|
|
6750
6735
|
return /* @__PURE__ */ i("div", {
|
|
6751
6736
|
ref: n,
|
|
6752
6737
|
role: "menu",
|
|
@@ -6757,7 +6742,7 @@ function ra({ className: e, children: t, ref: n, ...r }) {
|
|
|
6757
6742
|
}
|
|
6758
6743
|
//#endregion
|
|
6759
6744
|
//#region src/components/Messagebox/Messagebox.tsx
|
|
6760
|
-
var
|
|
6745
|
+
var ra = t("aivex:inline-flex aivex:h-10 aivex:items-center aivex:gap-md aivex:rounded-md aivex:px-xl aivex:border aivex:text-body-md-regular", {
|
|
6761
6746
|
variants: { type: {
|
|
6762
6747
|
basic: "aivex:bg-bg-secondary aivex:border-border-default aivex:text-text-primary",
|
|
6763
6748
|
info: "aivex:bg-bg-info-subtle aivex:border-border-info-subtle aivex:text-text-brand",
|
|
@@ -6766,7 +6751,7 @@ var ia = t("aivex:inline-flex aivex:h-10 aivex:items-center aivex:gap-md aivex:r
|
|
|
6766
6751
|
danger: "aivex:bg-bg-danger-subtle aivex:border-border-danger-subtle aivex:text-text-danger"
|
|
6767
6752
|
} },
|
|
6768
6753
|
defaultVariants: { type: "basic" }
|
|
6769
|
-
}),
|
|
6754
|
+
}), ia = {
|
|
6770
6755
|
basic: {
|
|
6771
6756
|
Icon: q,
|
|
6772
6757
|
className: "aivex:text-icon-primary"
|
|
@@ -6788,12 +6773,12 @@ var ia = t("aivex:inline-flex aivex:h-10 aivex:items-center aivex:gap-md aivex:r
|
|
|
6788
6773
|
className: "aivex:text-icon-danger"
|
|
6789
6774
|
}
|
|
6790
6775
|
};
|
|
6791
|
-
function
|
|
6792
|
-
let { Icon: s, className: c } =
|
|
6776
|
+
function aa({ className: e, type: t = "basic", message: n, ref: r, ...o }) {
|
|
6777
|
+
let { Icon: s, className: c } = ia[t ?? "basic"];
|
|
6793
6778
|
return /* @__PURE__ */ a("div", {
|
|
6794
6779
|
ref: r,
|
|
6795
6780
|
role: "status",
|
|
6796
|
-
className: h(
|
|
6781
|
+
className: h(ra({ type: t }), e),
|
|
6797
6782
|
...o,
|
|
6798
6783
|
children: [/* @__PURE__ */ i("span", {
|
|
6799
6784
|
className: h("aivex:inline-flex aivex:shrink-0 aivex:items-center aivex:justify-center", c),
|
|
@@ -6806,7 +6791,7 @@ function oa({ className: e, type: t = "basic", message: n, ref: r, ...o }) {
|
|
|
6806
6791
|
}
|
|
6807
6792
|
//#endregion
|
|
6808
6793
|
//#region src/components/Modal/Modal.tsx
|
|
6809
|
-
var
|
|
6794
|
+
var oa = t("aivex:relative aivex:flex aivex:gap-md aivex:p-2xl", {
|
|
6810
6795
|
variants: { type: {
|
|
6811
6796
|
basic: "aivex:items-start aivex:justify-between",
|
|
6812
6797
|
"alert-center": "aivex:flex-col aivex:items-center aivex:text-center",
|
|
@@ -6814,10 +6799,10 @@ var sa = t("aivex:relative aivex:flex aivex:gap-md aivex:p-2xl", {
|
|
|
6814
6799
|
} },
|
|
6815
6800
|
defaultVariants: { type: "basic" }
|
|
6816
6801
|
});
|
|
6817
|
-
function
|
|
6802
|
+
function sa({ className: e, type: t = "basic", title: n, description: r, onClose: o, ref: s, ...c }) {
|
|
6818
6803
|
return /* @__PURE__ */ a("div", {
|
|
6819
6804
|
ref: s,
|
|
6820
|
-
className: h(
|
|
6805
|
+
className: h(oa({ type: t }), e),
|
|
6821
6806
|
...c,
|
|
6822
6807
|
children: [
|
|
6823
6808
|
/* @__PURE__ */ a("div", {
|
|
@@ -6847,22 +6832,22 @@ function ca({ className: e, type: t = "basic", title: n, description: r, onClose
|
|
|
6847
6832
|
]
|
|
6848
6833
|
});
|
|
6849
6834
|
}
|
|
6850
|
-
var
|
|
6835
|
+
var ca = t("aivex:flex aivex:gap-md aivex:px-2xl aivex:pb-2xl", {
|
|
6851
6836
|
variants: { type: {
|
|
6852
6837
|
flex: "aivex:justify-end",
|
|
6853
6838
|
fixed: "aivex:justify-stretch aivex:[&>*]:flex-1"
|
|
6854
6839
|
} },
|
|
6855
6840
|
defaultVariants: { type: "flex" }
|
|
6856
6841
|
});
|
|
6857
|
-
function
|
|
6842
|
+
function la({ className: e, type: t = "flex", children: n, ref: r, ...a }) {
|
|
6858
6843
|
return /* @__PURE__ */ i("div", {
|
|
6859
6844
|
ref: r,
|
|
6860
|
-
className: h(
|
|
6845
|
+
className: h(ca({ type: t }), e),
|
|
6861
6846
|
...a,
|
|
6862
6847
|
children: n
|
|
6863
6848
|
});
|
|
6864
6849
|
}
|
|
6865
|
-
function
|
|
6850
|
+
function ua({ className: e, open: t, onClose: n, children: r, ref: o, ...s }) {
|
|
6866
6851
|
return l(() => {
|
|
6867
6852
|
let e = (e) => {
|
|
6868
6853
|
e.key === "Escape" && t && n();
|
|
@@ -6888,20 +6873,20 @@ function da({ className: e, open: t, onClose: n, children: r, ref: o, ...s }) {
|
|
|
6888
6873
|
}
|
|
6889
6874
|
//#endregion
|
|
6890
6875
|
//#region src/components/Nav/Nav.tsx
|
|
6891
|
-
var
|
|
6876
|
+
var da = t("aivex:relative aivex:overflow-hidden aivex:group aivex:inline-flex aivex:flex-col aivex:items-center aivex:w-14 aivex:px-0.5 aivex:py-1 aivex:rounded-[6px] aivex:transition-colors aivex:cursor-pointer aivex:select-none", {
|
|
6892
6877
|
variants: { active: {
|
|
6893
6878
|
true: "aivex:bg-bg-brand-subtle",
|
|
6894
6879
|
false: "aivex:bg-transparent"
|
|
6895
6880
|
} },
|
|
6896
6881
|
defaultVariants: { active: !1 }
|
|
6897
6882
|
});
|
|
6898
|
-
function
|
|
6883
|
+
function fa({ className: e, active: t, icon: n, label: r, children: o, ref: s, ...c }) {
|
|
6899
6884
|
let l = t ?? !1;
|
|
6900
6885
|
return /* @__PURE__ */ a("button", {
|
|
6901
6886
|
ref: s,
|
|
6902
6887
|
type: "button",
|
|
6903
6888
|
"aria-pressed": l,
|
|
6904
|
-
className: h(
|
|
6889
|
+
className: h(da({ active: t }), e),
|
|
6905
6890
|
...c,
|
|
6906
6891
|
children: [
|
|
6907
6892
|
/* @__PURE__ */ i(_, {}),
|
|
@@ -6920,19 +6905,19 @@ function pa({ className: e, active: t, icon: n, label: r, children: o, ref: s, .
|
|
|
6920
6905
|
]
|
|
6921
6906
|
});
|
|
6922
6907
|
}
|
|
6923
|
-
var
|
|
6908
|
+
var pa = t("aivex:relative aivex:overflow-hidden aivex:group aivex:flex aivex:w-full aivex:items-center aivex:gap-md aivex:px-lg aivex:py-md aivex:rounded-md aivex:text-body-lg-medium aivex:transition-colors aivex:cursor-pointer", {
|
|
6924
6909
|
variants: { selected: {
|
|
6925
6910
|
true: "aivex:bg-bg-brand-subtle aivex:text-text-brand",
|
|
6926
6911
|
false: "aivex:bg-transparent aivex:text-text-secondary"
|
|
6927
6912
|
} },
|
|
6928
6913
|
defaultVariants: { selected: !1 }
|
|
6929
6914
|
});
|
|
6930
|
-
function
|
|
6915
|
+
function ma({ className: e, selected: t, icon: n, label: r, children: o, ref: s, ...c }) {
|
|
6931
6916
|
return /* @__PURE__ */ a("button", {
|
|
6932
6917
|
ref: s,
|
|
6933
6918
|
type: "button",
|
|
6934
6919
|
"aria-current": t ? "page" : void 0,
|
|
6935
|
-
className: h(
|
|
6920
|
+
className: h(pa({ selected: t }), e),
|
|
6936
6921
|
...c,
|
|
6937
6922
|
children: [
|
|
6938
6923
|
/* @__PURE__ */ i(_, {}),
|
|
@@ -6947,7 +6932,7 @@ function ha({ className: e, selected: t, icon: n, label: r, children: o, ref: s,
|
|
|
6947
6932
|
]
|
|
6948
6933
|
});
|
|
6949
6934
|
}
|
|
6950
|
-
function
|
|
6935
|
+
function ha({ className: e, children: t, ref: n, ...r }) {
|
|
6951
6936
|
return /* @__PURE__ */ i("nav", {
|
|
6952
6937
|
ref: n,
|
|
6953
6938
|
className: h("aivex:flex aivex:flex-col aivex:gap-xs", e),
|
|
@@ -6957,24 +6942,24 @@ function ga({ className: e, children: t, ref: n, ...r }) {
|
|
|
6957
6942
|
}
|
|
6958
6943
|
//#endregion
|
|
6959
6944
|
//#region src/components/Overlay/Overlay.tsx
|
|
6960
|
-
var
|
|
6945
|
+
var ga = t("aivex:fixed aivex:inset-0 aivex:z-40", {
|
|
6961
6946
|
variants: { type: {
|
|
6962
6947
|
dim: "aivex:bg-black/50",
|
|
6963
6948
|
frost: "aivex:backdrop-blur-sm aivex:bg-white/30"
|
|
6964
6949
|
} },
|
|
6965
6950
|
defaultVariants: { type: "dim" }
|
|
6966
6951
|
});
|
|
6967
|
-
function
|
|
6952
|
+
function _a({ className: e, type: t = "dim", ref: n, ...r }) {
|
|
6968
6953
|
return /* @__PURE__ */ i("div", {
|
|
6969
6954
|
ref: n,
|
|
6970
6955
|
"aria-hidden": "true",
|
|
6971
|
-
className: h(
|
|
6956
|
+
className: h(ga({ type: t }), e),
|
|
6972
6957
|
...r
|
|
6973
6958
|
});
|
|
6974
6959
|
}
|
|
6975
6960
|
//#endregion
|
|
6976
6961
|
//#region src/components/Pagination/Pagination.tsx
|
|
6977
|
-
function
|
|
6962
|
+
function va(e, t) {
|
|
6978
6963
|
if (t <= 7) return Array.from({ length: t }, (e, t) => t + 1);
|
|
6979
6964
|
let n = [1];
|
|
6980
6965
|
e > 3 && n.push("...");
|
|
@@ -6982,8 +6967,8 @@ function ya(e, t) {
|
|
|
6982
6967
|
for (let e = r; e <= i; e++) n.push(e);
|
|
6983
6968
|
return e < t - 2 && n.push("..."), n.push(t), n;
|
|
6984
6969
|
}
|
|
6985
|
-
function
|
|
6986
|
-
let u = n !== void 0, [f, p] = d(r), m = u ? n : f, g = Math.max(1, Math.ceil(t / o)), v =
|
|
6970
|
+
function ya({ className: e, total: t, page: n, defaultPage: r = 1, pageSize: o = 10, onChange: s, ref: c, ...l }) {
|
|
6971
|
+
let u = n !== void 0, [f, p] = d(r), m = u ? n : f, g = Math.max(1, Math.ceil(t / o)), v = va(m, g), y = (e) => {
|
|
6987
6972
|
u || p(e), s?.(e);
|
|
6988
6973
|
};
|
|
6989
6974
|
return /* @__PURE__ */ a("nav", {
|
|
@@ -7028,19 +7013,19 @@ function ba({ className: e, total: t, page: n, defaultPage: r = 1, pageSize: o =
|
|
|
7028
7013
|
}
|
|
7029
7014
|
//#endregion
|
|
7030
7015
|
//#region src/components/Radio/Radio.tsx
|
|
7031
|
-
var
|
|
7016
|
+
var ba = t("aivex:peer aivex:relative aivex:m-0 aivex:shrink-0 aivex:rounded-full aivex:border aivex:border-border-default aivex:bg-bg-primary aivex:appearance-none aivex:cursor-pointer aivex:transition-colors aivex:checked:border-transparent aivex:checked:bg-bg-brand", {
|
|
7032
7017
|
variants: { size: {
|
|
7033
7018
|
sm: "aivex:w-4 aivex:h-4",
|
|
7034
7019
|
md: "aivex:w-5 aivex:h-5",
|
|
7035
7020
|
lg: "aivex:w-6 aivex:h-6"
|
|
7036
7021
|
} },
|
|
7037
7022
|
defaultVariants: { size: "md" }
|
|
7038
|
-
}),
|
|
7023
|
+
}), xa = {
|
|
7039
7024
|
sm: "aivex:h-4",
|
|
7040
7025
|
md: "aivex:h-5",
|
|
7041
7026
|
lg: "aivex:h-6"
|
|
7042
7027
|
};
|
|
7043
|
-
function
|
|
7028
|
+
function Sa({ className: e, label: t, size: n = "md", disabled: r, checked: o, id: s, ref: c, ...l }) {
|
|
7044
7029
|
let u = n ?? "md", d = {
|
|
7045
7030
|
sm: "aivex:w-2 aivex:h-2",
|
|
7046
7031
|
md: "aivex:w-2.5 aivex:h-2.5",
|
|
@@ -7056,18 +7041,18 @@ function Ca({ className: e, label: t, size: n = "md", disabled: r, checked: o, i
|
|
|
7056
7041
|
type: "radio",
|
|
7057
7042
|
disabled: r,
|
|
7058
7043
|
checked: o,
|
|
7059
|
-
className: h(
|
|
7044
|
+
className: h(ba({ size: u }), e),
|
|
7060
7045
|
...l
|
|
7061
7046
|
}), /* @__PURE__ */ i("span", { className: h("aivex:pointer-events-none aivex:absolute aivex:rounded-full aivex:bg-white aivex:opacity-0 aivex:transition-opacity aivex:peer-checked:opacity-100", d) })]
|
|
7062
7047
|
}), t && /* @__PURE__ */ i("span", {
|
|
7063
|
-
className: h("aivex:inline-flex aivex:items-center aivex:text-label-lg aivex:text-text-primary",
|
|
7048
|
+
className: h("aivex:inline-flex aivex:items-center aivex:text-label-lg aivex:text-text-primary", xa[u]),
|
|
7064
7049
|
children: t
|
|
7065
7050
|
})]
|
|
7066
7051
|
});
|
|
7067
7052
|
}
|
|
7068
7053
|
//#endregion
|
|
7069
7054
|
//#region src/components/Segmented/Segmented.tsx
|
|
7070
|
-
var
|
|
7055
|
+
var Ca = s({}), wa = t("aivex:inline-flex aivex:items-center aivex:gap-xs aivex:rounded-sm aivex:bg-bg-tertiary aivex:p-2xs", {
|
|
7071
7056
|
variants: { size: {
|
|
7072
7057
|
sm: "aivex:h-9",
|
|
7073
7058
|
md: "aivex:h-10",
|
|
@@ -7075,9 +7060,9 @@ var wa = s({}), Ta = t("aivex:inline-flex aivex:items-center aivex:gap-xs aivex:
|
|
|
7075
7060
|
} },
|
|
7076
7061
|
defaultVariants: { size: "md" }
|
|
7077
7062
|
});
|
|
7078
|
-
function
|
|
7063
|
+
function Ta({ className: e, size: t, value: n, defaultValue: r, onChange: a, iconOnly: o, children: s, ref: c, ...l }) {
|
|
7079
7064
|
let u = n !== void 0, [f, p] = d(r ?? ""), m = u ? n : f;
|
|
7080
|
-
return /* @__PURE__ */ i(
|
|
7065
|
+
return /* @__PURE__ */ i(Ca.Provider, {
|
|
7081
7066
|
value: {
|
|
7082
7067
|
value: m,
|
|
7083
7068
|
onChange: (e) => {
|
|
@@ -7089,13 +7074,13 @@ function Ea({ className: e, size: t, value: n, defaultValue: r, onChange: a, ico
|
|
|
7089
7074
|
children: /* @__PURE__ */ i("div", {
|
|
7090
7075
|
ref: c,
|
|
7091
7076
|
role: "tablist",
|
|
7092
|
-
className: h(
|
|
7077
|
+
className: h(wa({ size: t }), e),
|
|
7093
7078
|
...l,
|
|
7094
7079
|
children: s
|
|
7095
7080
|
})
|
|
7096
7081
|
});
|
|
7097
7082
|
}
|
|
7098
|
-
var
|
|
7083
|
+
var Ea = t("aivex:inline-flex aivex:items-center aivex:justify-center aivex:gap-xs aivex:rounded-xs aivex:transition-all aivex:cursor-pointer aivex:select-none aivex:focus-visible:outline-none aivex:focus-visible:ring-2 aivex:focus-visible:ring-border-brand aivex:disabled:pointer-events-none aivex:disabled:opacity-disable", {
|
|
7099
7084
|
variants: {
|
|
7100
7085
|
size: {
|
|
7101
7086
|
sm: "aivex:h-7 aivex:px-md aivex:text-label-md",
|
|
@@ -7134,13 +7119,13 @@ var Da = t("aivex:inline-flex aivex:items-center aivex:justify-center aivex:gap-
|
|
|
7134
7119
|
iconOnly: !1
|
|
7135
7120
|
}
|
|
7136
7121
|
});
|
|
7137
|
-
function
|
|
7138
|
-
let s = c(
|
|
7122
|
+
function Da({ className: e, value: t, children: n, onClick: r, ref: a, ...o }) {
|
|
7123
|
+
let s = c(Ca), l = s.value === t;
|
|
7139
7124
|
return /* @__PURE__ */ i("button", {
|
|
7140
7125
|
ref: a,
|
|
7141
7126
|
role: "tab",
|
|
7142
7127
|
"aria-selected": l,
|
|
7143
|
-
className: h(
|
|
7128
|
+
className: h(Ea({
|
|
7144
7129
|
size: s.size ?? "md",
|
|
7145
7130
|
selected: l,
|
|
7146
7131
|
iconOnly: s.iconOnly ?? !1
|
|
@@ -7154,7 +7139,7 @@ function Oa({ className: e, value: t, children: n, onClick: r, ref: a, ...o }) {
|
|
|
7154
7139
|
}
|
|
7155
7140
|
//#endregion
|
|
7156
7141
|
//#region src/components/Select/Select.tsx
|
|
7157
|
-
var
|
|
7142
|
+
var Oa = t("aivex:relative aivex:flex aivex:items-center aivex:w-full aivex:rounded-md aivex:border aivex:bg-bg-primary aivex:transition-colors", {
|
|
7158
7143
|
variants: {
|
|
7159
7144
|
state: {
|
|
7160
7145
|
default: "aivex:border-border-default aivex:hover:border-border-brand",
|
|
@@ -7172,7 +7157,7 @@ var ka = t("aivex:relative aivex:flex aivex:items-center aivex:w-full aivex:roun
|
|
|
7172
7157
|
size: "md"
|
|
7173
7158
|
}
|
|
7174
7159
|
});
|
|
7175
|
-
function
|
|
7160
|
+
function ka({ className: e, label: t, error: n, disabled: r, size: o, id: s, children: c, ref: l, onFocus: u, onBlur: f, ...p }) {
|
|
7176
7161
|
let [m, g] = d(!1);
|
|
7177
7162
|
return /* @__PURE__ */ a("div", {
|
|
7178
7163
|
className: "aivex:flex aivex:flex-col aivex:gap-xs aivex:w-full",
|
|
@@ -7181,7 +7166,7 @@ function Aa({ className: e, label: t, error: n, disabled: r, size: o, id: s, chi
|
|
|
7181
7166
|
className: "aivex:text-sm aivex:font-medium aivex:text-text-primary",
|
|
7182
7167
|
children: t
|
|
7183
7168
|
}), /* @__PURE__ */ a("div", {
|
|
7184
|
-
className: h(
|
|
7169
|
+
className: h(Oa({
|
|
7185
7170
|
state: r ? "disabled" : n ? "error" : m ? "focused" : "default",
|
|
7186
7171
|
size: o
|
|
7187
7172
|
}), e),
|
|
@@ -7207,7 +7192,7 @@ function Aa({ className: e, label: t, error: n, disabled: r, size: o, id: s, chi
|
|
|
7207
7192
|
}
|
|
7208
7193
|
//#endregion
|
|
7209
7194
|
//#region src/components/Shortcut/Shortcut.tsx
|
|
7210
|
-
function
|
|
7195
|
+
function Aa({ className: e, keys: t, ref: n, ...r }) {
|
|
7211
7196
|
return /* @__PURE__ */ i("span", {
|
|
7212
7197
|
ref: n,
|
|
7213
7198
|
className: h("aivex:inline-flex aivex:items-center aivex:gap-1", e),
|
|
@@ -7223,27 +7208,27 @@ function ja({ className: e, keys: t, ref: n, ...r }) {
|
|
|
7223
7208
|
}
|
|
7224
7209
|
//#endregion
|
|
7225
7210
|
//#region src/components/Switch/Switch.tsx
|
|
7226
|
-
var
|
|
7211
|
+
var ja = t("aivex:block aivex:rounded-full aivex:transition-colors aivex:duration-200", {
|
|
7227
7212
|
variants: { size: {
|
|
7228
7213
|
sm: "aivex:w-6 aivex:h-4",
|
|
7229
7214
|
md: "aivex:w-8 aivex:h-5",
|
|
7230
7215
|
lg: "aivex:w-10 aivex:h-6"
|
|
7231
7216
|
} },
|
|
7232
7217
|
defaultVariants: { size: "md" }
|
|
7233
|
-
}),
|
|
7218
|
+
}), Ma = {
|
|
7234
7219
|
sm: "aivex:w-3 aivex:h-3",
|
|
7235
7220
|
md: "aivex:w-4 aivex:h-4",
|
|
7236
7221
|
lg: "aivex:w-5 aivex:h-5"
|
|
7237
|
-
},
|
|
7222
|
+
}, Na = {
|
|
7238
7223
|
sm: "aivex:translate-x-2",
|
|
7239
7224
|
md: "aivex:translate-x-3",
|
|
7240
7225
|
lg: "aivex:translate-x-4"
|
|
7241
|
-
},
|
|
7226
|
+
}, Pa = {
|
|
7242
7227
|
sm: "aivex:h-4",
|
|
7243
7228
|
md: "aivex:h-5",
|
|
7244
7229
|
lg: "aivex:h-6"
|
|
7245
7230
|
};
|
|
7246
|
-
function
|
|
7231
|
+
function Fa({ className: e, label: t, size: n = "md", checked: r, defaultChecked: o, disabled: s, id: c, onChange: l, ref: u, ...f }) {
|
|
7247
7232
|
let p = r !== void 0, [m, g] = d(!!o), _ = p ? !!r : m, v = n ?? "md";
|
|
7248
7233
|
return /* @__PURE__ */ a("label", {
|
|
7249
7234
|
className: h("aivex:inline-flex aivex:items-center aivex:gap-md aivex:cursor-pointer aivex:select-none", s && "aivex:opacity-disable aivex:pointer-events-none"),
|
|
@@ -7264,26 +7249,26 @@ function Ia({ className: e, label: t, size: n = "md", checked: r, defaultChecked
|
|
|
7264
7249
|
className: "aivex:sr-only aivex:peer",
|
|
7265
7250
|
...f
|
|
7266
7251
|
}),
|
|
7267
|
-
/* @__PURE__ */ i("span", { className: h(
|
|
7268
|
-
/* @__PURE__ */ i("span", { className: h("aivex:absolute aivex:top-0.5 aivex:left-0.5 aivex:rounded-full aivex:bg-white aivex:shadow aivex:transition-transform aivex:duration-200",
|
|
7252
|
+
/* @__PURE__ */ i("span", { className: h(ja({ size: v }), _ ? "aivex:bg-bg-brand" : "aivex:bg-border-default", e) }),
|
|
7253
|
+
/* @__PURE__ */ i("span", { className: h("aivex:absolute aivex:top-0.5 aivex:left-0.5 aivex:rounded-full aivex:bg-white aivex:shadow aivex:transition-transform aivex:duration-200", Ma[v], _ && Na[v]) })
|
|
7269
7254
|
]
|
|
7270
7255
|
}), t && /* @__PURE__ */ i("span", {
|
|
7271
|
-
className: h("aivex:inline-flex aivex:items-center aivex:text-label-lg aivex:text-text-primary",
|
|
7256
|
+
className: h("aivex:inline-flex aivex:items-center aivex:text-label-lg aivex:text-text-primary", Pa[v]),
|
|
7272
7257
|
children: t
|
|
7273
7258
|
})]
|
|
7274
7259
|
});
|
|
7275
7260
|
}
|
|
7276
7261
|
//#endregion
|
|
7277
7262
|
//#region src/components/Tab/Tab.tsx
|
|
7278
|
-
var
|
|
7263
|
+
var Ia = s(null);
|
|
7279
7264
|
function La() {
|
|
7280
|
-
let e = c(
|
|
7265
|
+
let e = c(Ia);
|
|
7281
7266
|
if (!e) throw Error("TabItem must be used within TabRoot");
|
|
7282
7267
|
return e;
|
|
7283
7268
|
}
|
|
7284
7269
|
function Ra({ className: e, value: t, defaultValue: n, onChange: r, children: a, ref: o, ...s }) {
|
|
7285
7270
|
let c = t !== void 0, [l, u] = d(n ?? ""), f = c ? t : l;
|
|
7286
|
-
return /* @__PURE__ */ i(
|
|
7271
|
+
return /* @__PURE__ */ i(Ia.Provider, {
|
|
7287
7272
|
value: {
|
|
7288
7273
|
value: f,
|
|
7289
7274
|
onChange: (e) => {
|
|
@@ -7299,14 +7284,14 @@ function Ra({ className: e, value: t, defaultValue: n, onChange: r, children: a,
|
|
|
7299
7284
|
})
|
|
7300
7285
|
});
|
|
7301
7286
|
}
|
|
7302
|
-
var
|
|
7287
|
+
var Q = t("aivex:relative aivex:group aivex:flex aivex:flex-col aivex:items-center aivex:py-2 aivex:cursor-pointer aivex:focus-visible:outline-none aivex:disabled:cursor-not-allowed aivex:disabled:opacity-40", {
|
|
7303
7288
|
variants: { active: {
|
|
7304
7289
|
true: "",
|
|
7305
7290
|
false: ""
|
|
7306
7291
|
} },
|
|
7307
7292
|
defaultVariants: { active: !1 }
|
|
7308
7293
|
});
|
|
7309
|
-
function
|
|
7294
|
+
function za({ className: e, value: t, children: n, active: r, ref: o, ...s }) {
|
|
7310
7295
|
let { value: c, onChange: l } = La(), u = r ?? c === t;
|
|
7311
7296
|
return /* @__PURE__ */ a("button", {
|
|
7312
7297
|
ref: o,
|
|
@@ -7314,7 +7299,7 @@ function Ba({ className: e, value: t, children: n, active: r, ref: o, ...s }) {
|
|
|
7314
7299
|
role: "tab",
|
|
7315
7300
|
"aria-selected": u,
|
|
7316
7301
|
onClick: () => l(t),
|
|
7317
|
-
className: h(
|
|
7302
|
+
className: h(Q({ active: u }), e),
|
|
7318
7303
|
...s,
|
|
7319
7304
|
children: [/* @__PURE__ */ a("span", {
|
|
7320
7305
|
className: "aivex:relative aivex:flex aivex:items-center aivex:gap-1.5 aivex:overflow-hidden aivex:rounded-md aivex:px-2 aivex:py-1 aivex:text-base aivex:font-medium aivex:text-text-primary",
|
|
@@ -7324,8 +7309,8 @@ function Ba({ className: e, value: t, children: n, active: r, ref: o, ...s }) {
|
|
|
7324
7309
|
}
|
|
7325
7310
|
//#endregion
|
|
7326
7311
|
//#region src/components/Table/Table.tsx
|
|
7327
|
-
var
|
|
7328
|
-
function
|
|
7312
|
+
var Ba = ({ direction: e }) => i(e === "asc" ? J : e === "desc" ? Y : Ee, { size: 16 });
|
|
7313
|
+
function Va({ className: e, children: t, ref: n, ...r }) {
|
|
7329
7314
|
return /* @__PURE__ */ i("div", {
|
|
7330
7315
|
ref: n,
|
|
7331
7316
|
className: h("aivex:w-full aivex:overflow-auto aivex:rounded-md aivex:border aivex:border-border-default", e),
|
|
@@ -7336,7 +7321,7 @@ function Ha({ className: e, children: t, ref: n, ...r }) {
|
|
|
7336
7321
|
})
|
|
7337
7322
|
});
|
|
7338
7323
|
}
|
|
7339
|
-
function
|
|
7324
|
+
function Ha({ className: e, children: t, ref: n, ...r }) {
|
|
7340
7325
|
return /* @__PURE__ */ i("thead", {
|
|
7341
7326
|
ref: n,
|
|
7342
7327
|
className: h("aivex:bg-bg-secondary", e),
|
|
@@ -7344,7 +7329,7 @@ function Ua({ className: e, children: t, ref: n, ...r }) {
|
|
|
7344
7329
|
children: t
|
|
7345
7330
|
});
|
|
7346
7331
|
}
|
|
7347
|
-
function
|
|
7332
|
+
function Ua({ className: e, children: t, ref: n, ...r }) {
|
|
7348
7333
|
return /* @__PURE__ */ i("tbody", {
|
|
7349
7334
|
ref: n,
|
|
7350
7335
|
className: h("aivex:bg-bg-primary", e),
|
|
@@ -7352,7 +7337,7 @@ function Wa({ className: e, children: t, ref: n, ...r }) {
|
|
|
7352
7337
|
children: t
|
|
7353
7338
|
});
|
|
7354
7339
|
}
|
|
7355
|
-
function
|
|
7340
|
+
function Wa({ className: e, children: t, ref: n, ...r }) {
|
|
7356
7341
|
return /* @__PURE__ */ i("tr", {
|
|
7357
7342
|
ref: n,
|
|
7358
7343
|
className: h("aivex:h-12 aivex:border-b aivex:border-border-default aivex:last:border-b-0 aivex:transition-colors aivex:hover:bg-bg-secondary", e),
|
|
@@ -7360,7 +7345,7 @@ function Ga({ className: e, children: t, ref: n, ...r }) {
|
|
|
7360
7345
|
children: t
|
|
7361
7346
|
});
|
|
7362
7347
|
}
|
|
7363
|
-
function
|
|
7348
|
+
function Ga({ className: e, children: t, sortable: n, sortDirection: r, onSort: o, ref: s, ...c }) {
|
|
7364
7349
|
return /* @__PURE__ */ i("th", {
|
|
7365
7350
|
ref: s,
|
|
7366
7351
|
className: h("aivex:h-12 aivex:px-md aivex:text-left aivex:align-middle aivex:text-xs aivex:font-medium aivex:text-text-secondary aivex:whitespace-nowrap", e),
|
|
@@ -7371,12 +7356,12 @@ function Ka({ className: e, children: t, sortable: n, sortDirection: r, onSort:
|
|
|
7371
7356
|
className: "aivex:inline-flex aivex:items-center aivex:gap-[2px] aivex:group aivex:text-text-secondary aivex:hover:text-text-primary aivex:transition-colors",
|
|
7372
7357
|
children: [t, /* @__PURE__ */ i("span", {
|
|
7373
7358
|
className: "aivex:text-text-tertiary aivex:group-hover:text-text-secondary aivex:transition-colors",
|
|
7374
|
-
children: /* @__PURE__ */ i(
|
|
7359
|
+
children: /* @__PURE__ */ i(Ba, { direction: r })
|
|
7375
7360
|
})]
|
|
7376
7361
|
}) : t
|
|
7377
7362
|
});
|
|
7378
7363
|
}
|
|
7379
|
-
function
|
|
7364
|
+
function Ka({ className: e, children: t, ref: n, ...r }) {
|
|
7380
7365
|
return /* @__PURE__ */ i("td", {
|
|
7381
7366
|
ref: n,
|
|
7382
7367
|
className: h("aivex:h-12 aivex:px-md aivex:align-middle aivex:text-sm aivex:text-text-primary", e),
|
|
@@ -7386,7 +7371,7 @@ function qa({ className: e, children: t, ref: n, ...r }) {
|
|
|
7386
7371
|
}
|
|
7387
7372
|
//#endregion
|
|
7388
7373
|
//#region src/components/Tag/Tag.tsx
|
|
7389
|
-
var
|
|
7374
|
+
var qa = t("aivex:inline-flex aivex:items-center aivex:gap-[2px] aivex:rounded-full aivex:overflow-hidden", {
|
|
7390
7375
|
variants: {
|
|
7391
7376
|
size: {
|
|
7392
7377
|
sm: "aivex:min-h-6 aivex:px-[6px] aivex:py-[2px]",
|
|
@@ -7402,10 +7387,10 @@ var Ja = t("aivex:inline-flex aivex:items-center aivex:gap-[2px] aivex:rounded-f
|
|
|
7402
7387
|
type: "default"
|
|
7403
7388
|
}
|
|
7404
7389
|
});
|
|
7405
|
-
function
|
|
7390
|
+
function Ja({ className: e, size: t = "sm", type: n = "default", showIcon: r = !1, disabled: o = !1, onRemove: s, children: c, ref: l, ...u }) {
|
|
7406
7391
|
return /* @__PURE__ */ a("div", {
|
|
7407
7392
|
ref: l,
|
|
7408
|
-
className: h(
|
|
7393
|
+
className: h(qa({
|
|
7409
7394
|
size: t,
|
|
7410
7395
|
type: n
|
|
7411
7396
|
}), o && "aivex:opacity-disable", e),
|
|
@@ -7433,21 +7418,21 @@ function Ya({ className: e, size: t = "sm", type: n = "default", showIcon: r = !
|
|
|
7433
7418
|
}
|
|
7434
7419
|
//#endregion
|
|
7435
7420
|
//#region src/components/Tagbox/Tagbox.tsx
|
|
7436
|
-
function
|
|
7437
|
-
let S = s !== void 0, [C, w] = d(c), T = S ? s : C, [E, D] = d(""), O = u(""), k = u(!1), [
|
|
7421
|
+
function Ya({ className: e, size: t = "sm", label: n, error: r, disabled: o, value: s, defaultValue: c = [], onChange: l, placeholder: f, id: p, ref: m, onBlur: g, onCompositionEnd: _, onCompositionStart: v, onFocus: y, onKeyDown: b, ...x }) {
|
|
7422
|
+
let S = s !== void 0, [C, w] = d(c), T = S ? s : C, [E, D] = d(""), O = u(""), k = u(!1), [A, j] = d(!1), M = (e) => {
|
|
7438
7423
|
let t = e.trim();
|
|
7439
7424
|
if (!t) return;
|
|
7440
7425
|
let n = [...T, t];
|
|
7441
7426
|
S || w(n), l?.(n), O.current = "", D("");
|
|
7442
|
-
},
|
|
7427
|
+
}, N = (e) => {
|
|
7443
7428
|
let t = T.filter((t, n) => n !== e);
|
|
7444
7429
|
S || w(t), l?.(t);
|
|
7445
|
-
},
|
|
7430
|
+
}, ee = (e) => {
|
|
7446
7431
|
if (b?.(e), !e.defaultPrevented) if (e.key === "Enter") {
|
|
7447
7432
|
if (k.current || e.nativeEvent.isComposing || e.nativeEvent.keyCode === 229) return;
|
|
7448
|
-
e.preventDefault(), O.current &&
|
|
7449
|
-
} else e.key === "Backspace" && !O.current && T.length > 0 &&
|
|
7450
|
-
}, te = h("aivex:flex aivex:flex-wrap aivex:content-center aivex:gap-xs aivex:px-md aivex:py-xs aivex:min-h-9 aivex:w-full aivex:rounded-md aivex:border aivex:border-border-default aivex:bg-bg-primary aivex:transition-colors", t === "md" && "aivex:min-h-11",
|
|
7433
|
+
e.preventDefault(), O.current && M(O.current);
|
|
7434
|
+
} else e.key === "Backspace" && !O.current && T.length > 0 && N(T.length - 1);
|
|
7435
|
+
}, te = h("aivex:flex aivex:flex-wrap aivex:content-center aivex:gap-xs aivex:px-md aivex:py-xs aivex:min-h-9 aivex:w-full aivex:rounded-md aivex:border aivex:border-border-default aivex:bg-bg-primary aivex:transition-colors", t === "md" && "aivex:min-h-11", A && !r && !o && "aivex:border-border-brand", r && !o && "aivex:border-border-danger", o && "aivex:border-border-disabled aivex:bg-bg-disabled aivex:opacity-disable aivex:pointer-events-none", e);
|
|
7451
7436
|
return /* @__PURE__ */ a("div", {
|
|
7452
7437
|
className: "aivex:flex aivex:flex-col aivex:gap-xs aivex:w-full",
|
|
7453
7438
|
children: [n && /* @__PURE__ */ i("label", {
|
|
@@ -7456,11 +7441,11 @@ function Xa({ className: e, size: t = "sm", label: n, error: r, disabled: o, val
|
|
|
7456
7441
|
children: n
|
|
7457
7442
|
}), /* @__PURE__ */ a("div", {
|
|
7458
7443
|
className: te,
|
|
7459
|
-
children: [T.map((e, n) => /* @__PURE__ */ i(
|
|
7444
|
+
children: [T.map((e, n) => /* @__PURE__ */ i(Ja, {
|
|
7460
7445
|
size: t === "md" ? "md" : "sm",
|
|
7461
7446
|
type: r ? "error" : "default",
|
|
7462
7447
|
disabled: o,
|
|
7463
|
-
onRemove: () =>
|
|
7448
|
+
onRemove: () => N(n),
|
|
7464
7449
|
children: e
|
|
7465
7450
|
}, `${e}-${n}`)), /* @__PURE__ */ i("input", {
|
|
7466
7451
|
ref: m,
|
|
@@ -7471,7 +7456,7 @@ function Xa({ className: e, size: t = "sm", label: n, error: r, disabled: o, val
|
|
|
7471
7456
|
onChange: (e) => {
|
|
7472
7457
|
O.current = e.target.value, D(e.target.value);
|
|
7473
7458
|
},
|
|
7474
|
-
onKeyDown:
|
|
7459
|
+
onKeyDown: ee,
|
|
7475
7460
|
onCompositionStart: (e) => {
|
|
7476
7461
|
k.current = !0, v?.(e);
|
|
7477
7462
|
},
|
|
@@ -7479,10 +7464,10 @@ function Xa({ className: e, size: t = "sm", label: n, error: r, disabled: o, val
|
|
|
7479
7464
|
k.current = !1, O.current = e.currentTarget.value, D(e.currentTarget.value), _?.(e);
|
|
7480
7465
|
},
|
|
7481
7466
|
onFocus: (e) => {
|
|
7482
|
-
|
|
7467
|
+
j(!0), y?.(e);
|
|
7483
7468
|
},
|
|
7484
7469
|
onBlur: (e) => {
|
|
7485
|
-
|
|
7470
|
+
j(!1), g?.(e), !k.current && O.current && M(O.current);
|
|
7486
7471
|
},
|
|
7487
7472
|
className: h("aivex:bg-transparent aivex:outline-none aivex:text-text-primary aivex:placeholder:text-text-tertiary aivex:min-w-[80px] aivex:flex-1", t === "sm" ? "aivex:text-body-md-regular" : "aivex:text-body-lg-regular"),
|
|
7488
7473
|
...x
|
|
@@ -7492,7 +7477,7 @@ function Xa({ className: e, size: t = "sm", label: n, error: r, disabled: o, val
|
|
|
7492
7477
|
}
|
|
7493
7478
|
//#endregion
|
|
7494
7479
|
//#region src/components/Textarea/Textarea.tsx
|
|
7495
|
-
var
|
|
7480
|
+
var Xa = t("aivex:flex aivex:w-full aivex:rounded-md aivex:border aivex:border-border-default aivex:bg-bg-primary aivex:px-xl aivex:py-lg aivex:transition-colors", {
|
|
7496
7481
|
variants: {
|
|
7497
7482
|
state: {
|
|
7498
7483
|
default: "aivex:border-border-default aivex:hover:border-border-brand",
|
|
@@ -7510,7 +7495,7 @@ var Za = t("aivex:flex aivex:w-full aivex:rounded-md aivex:border aivex:border-b
|
|
|
7510
7495
|
size: "md"
|
|
7511
7496
|
}
|
|
7512
7497
|
});
|
|
7513
|
-
function
|
|
7498
|
+
function Za({ className: e, label: t, error: n, disabled: r, size: o, id: s, ref: c, onFocus: l, onBlur: u, ...f }) {
|
|
7514
7499
|
let [p, m] = d(!1);
|
|
7515
7500
|
return /* @__PURE__ */ a("div", {
|
|
7516
7501
|
className: "aivex:flex aivex:flex-col aivex:gap-xs aivex:w-full",
|
|
@@ -7519,7 +7504,7 @@ function Qa({ className: e, label: t, error: n, disabled: r, size: o, id: s, ref
|
|
|
7519
7504
|
className: "aivex:text-sm aivex:font-medium aivex:text-text-primary",
|
|
7520
7505
|
children: t
|
|
7521
7506
|
}), /* @__PURE__ */ i("div", {
|
|
7522
|
-
className: h(
|
|
7507
|
+
className: h(Xa({
|
|
7523
7508
|
state: r ? "disabled" : n ? "error" : p ? "focused" : "default",
|
|
7524
7509
|
size: o
|
|
7525
7510
|
}), e),
|
|
@@ -7549,7 +7534,7 @@ var $ = t("aivex:inline-flex aivex:min-h-10 aivex:w-fit aivex:items-center aivex
|
|
|
7549
7534
|
} },
|
|
7550
7535
|
defaultVariants: { type: "default" }
|
|
7551
7536
|
});
|
|
7552
|
-
function
|
|
7537
|
+
function Qa({ className: e, type: t = "default", open: n = !0, message: r, onClose: o, ref: s, ...c }) {
|
|
7553
7538
|
return n ? /* @__PURE__ */ a("div", {
|
|
7554
7539
|
ref: s,
|
|
7555
7540
|
role: "status",
|
|
@@ -7568,7 +7553,7 @@ function $a({ className: e, type: t = "default", open: n = !0, message: r, onClo
|
|
|
7568
7553
|
})]
|
|
7569
7554
|
}) : null;
|
|
7570
7555
|
}
|
|
7571
|
-
function
|
|
7556
|
+
function $a({ position: e = "bottom-center", duration: t = 4e3, visibleToasts: n = 3, gap: r = 8, toastOptions: a, ...o }) {
|
|
7572
7557
|
return /* @__PURE__ */ i(f, {
|
|
7573
7558
|
position: e,
|
|
7574
7559
|
duration: t,
|
|
@@ -7590,7 +7575,7 @@ function eo({ position: e = "bottom-center", duration: t = 4e3, visibleToasts: n
|
|
|
7590
7575
|
}
|
|
7591
7576
|
//#endregion
|
|
7592
7577
|
//#region src/components/Tooltip/Tooltip.tsx
|
|
7593
|
-
var
|
|
7578
|
+
var eo = t("aivex:absolute aivex:z-50 aivex:rounded-sm aivex:bg-static-gray aivex:px-md aivex:py-xs aivex:text-body-md-regular aivex:text-text-on-color aivex:whitespace-nowrap aivex:pointer-events-none", {
|
|
7594
7579
|
variants: { placement: {
|
|
7595
7580
|
top: "aivex:bottom-full aivex:left-1/2 aivex:-translate-x-1/2 aivex:mb-2",
|
|
7596
7581
|
bottom: "aivex:top-full aivex:left-1/2 aivex:-translate-x-1/2 aivex:mt-2",
|
|
@@ -7598,7 +7583,7 @@ var to = t("aivex:absolute aivex:z-50 aivex:rounded-sm aivex:bg-static-gray aive
|
|
|
7598
7583
|
right: "aivex:left-full aivex:top-1/2 aivex:-translate-y-1/2 aivex:ml-2"
|
|
7599
7584
|
} },
|
|
7600
7585
|
defaultVariants: { placement: "top" }
|
|
7601
|
-
}),
|
|
7586
|
+
}), to = t("aivex:absolute aivex:w-2 aivex:h-2 aivex:bg-static-gray aivex:rotate-45", {
|
|
7602
7587
|
variants: { placement: {
|
|
7603
7588
|
top: "aivex:top-full aivex:left-1/2 aivex:-translate-x-1/2 aivex:-translate-y-1/2",
|
|
7604
7589
|
bottom: "aivex:bottom-full aivex:left-1/2 aivex:-translate-x-1/2 aivex:translate-y-1/2",
|
|
@@ -7607,7 +7592,7 @@ var to = t("aivex:absolute aivex:z-50 aivex:rounded-sm aivex:bg-static-gray aive
|
|
|
7607
7592
|
} },
|
|
7608
7593
|
defaultVariants: { placement: "top" }
|
|
7609
7594
|
});
|
|
7610
|
-
function
|
|
7595
|
+
function no({ className: e, content: t, children: n, placement: r = "top", showArrow: o = !0, ref: s, ...c }) {
|
|
7611
7596
|
let [l, f] = d(!1), p = u(null);
|
|
7612
7597
|
return /* @__PURE__ */ a("div", {
|
|
7613
7598
|
ref: s,
|
|
@@ -7620,14 +7605,14 @@ function ro({ className: e, content: t, children: n, placement: r = "top", showA
|
|
|
7620
7605
|
children: [n, l && /* @__PURE__ */ a("div", {
|
|
7621
7606
|
ref: p,
|
|
7622
7607
|
role: "tooltip",
|
|
7623
|
-
className: h(
|
|
7624
|
-
children: [o && /* @__PURE__ */ i("span", { className: h(
|
|
7608
|
+
className: h(eo({ placement: r })),
|
|
7609
|
+
children: [o && /* @__PURE__ */ i("span", { className: h(to({ placement: r })) }), t]
|
|
7625
7610
|
})]
|
|
7626
7611
|
});
|
|
7627
7612
|
}
|
|
7628
7613
|
//#endregion
|
|
7629
7614
|
//#region src/components/Typography/Typography.tsx
|
|
7630
|
-
var
|
|
7615
|
+
var ro = t("", {
|
|
7631
7616
|
variants: { variant: {
|
|
7632
7617
|
"display-lg": "aivex:text-display-lg",
|
|
7633
7618
|
"display-md": "aivex:text-display-md",
|
|
@@ -7649,7 +7634,7 @@ var io = t("", {
|
|
|
7649
7634
|
"caption-md": "aivex:text-caption-md"
|
|
7650
7635
|
} },
|
|
7651
7636
|
defaultVariants: { variant: "body-md-regular" }
|
|
7652
|
-
}),
|
|
7637
|
+
}), io = {
|
|
7653
7638
|
"display-lg": "h1",
|
|
7654
7639
|
"display-md": "h1",
|
|
7655
7640
|
"heading-xl": "h1",
|
|
@@ -7669,17 +7654,17 @@ var io = t("", {
|
|
|
7669
7654
|
"label-sm": "span",
|
|
7670
7655
|
"caption-md": "span"
|
|
7671
7656
|
};
|
|
7672
|
-
function
|
|
7673
|
-
return /* @__PURE__ */ i(e ??
|
|
7657
|
+
function ao({ as: e, variant: t = "body-md-regular", className: n, children: r, ref: a, ...o }) {
|
|
7658
|
+
return /* @__PURE__ */ i(e ?? io[t], {
|
|
7674
7659
|
ref: a,
|
|
7675
|
-
className: h(
|
|
7660
|
+
className: h(ro({ variant: t }), n),
|
|
7676
7661
|
...o,
|
|
7677
7662
|
children: r
|
|
7678
7663
|
});
|
|
7679
7664
|
}
|
|
7680
7665
|
//#endregion
|
|
7681
7666
|
//#region src/components/UploadArea/UploadArea.tsx
|
|
7682
|
-
function
|
|
7667
|
+
function oo({ className: e, formats: t = [
|
|
7683
7668
|
"jpg",
|
|
7684
7669
|
"bmp",
|
|
7685
7670
|
"png",
|
|
@@ -7707,7 +7692,7 @@ function so({ className: e, formats: t = [
|
|
|
7707
7692
|
className: "aivex:flex aivex:flex-col aivex:items-center aivex:gap-6",
|
|
7708
7693
|
children: [/* @__PURE__ */ a("div", {
|
|
7709
7694
|
className: "aivex:flex aivex:flex-col aivex:items-center aivex:gap-3 aivex:pt-3",
|
|
7710
|
-
children: [/* @__PURE__ */ i(
|
|
7695
|
+
children: [/* @__PURE__ */ i(ce, {
|
|
7711
7696
|
size: 28,
|
|
7712
7697
|
color: "var(--aivex-icon-tertiary)"
|
|
7713
7698
|
}), /* @__PURE__ */ a("div", {
|
|
@@ -7763,6 +7748,6 @@ function so({ className: e, formats: t = [
|
|
|
7763
7748
|
});
|
|
7764
7749
|
}
|
|
7765
7750
|
//#endregion
|
|
7766
|
-
export {
|
|
7751
|
+
export { xr as AddFolderIcon, E as AddPointIcon, D as AdjustIcon, Mr as AiSparkleGradientIcon, jr as AiSparkleIcon, C as AiVDataIcon, w as AiVOpsIcon, T as AiVisionIcon, Ai as Alert, O as AlignCenterIcon, k as AlignLeftIcon, A as AlignRightIcon, j as AngleIcon, fe as ApertureIcon, M as ArchiveIcon, Xr as ArrowCircleDownFilledIcon, ie as ArrowCircleDownIcon, Zr as ArrowCircleLeftFilledIcon, ae as ArrowCircleLeftIcon, Yr as ArrowCircleRightFilledIcon, oe as ArrowCircleRightIcon, ce as ArrowCircleUpFilledIcon, se as ArrowCircleUpIcon, le as ArrowCornerLeftTopIcon, N as ArrowDownIcon, re as ArrowElbowDownLeftIcon, di as ArrowFlowIcon, wr as ArrowGoingDownIcon, Cr as ArrowGoingUpIcon, Gr as ArrowLeftDownIcon, ee as ArrowLeftIcon, ue as ArrowLeftRightIcon, Ur as ArrowLeftUpIcon, Hr as ArrowRightDownIcon, te as ArrowRightIcon, Wr as ArrowRightUpIcon, de as ArrowUpDownIcon, ne as ArrowUpIcon, _i as ArrowelbowDownRightIcon, kr as AssistantPolyIcon, pe as AssistantRectIcon, pr as AtIcon, Mi as Avatar, Ii as BadgeDot, Pi as BadgeLabel, me as BarcodeIcon, ge as BellIcon, ve as BookmarkFilledIcon, _e as BookmarkIcon, he as BoundingBoxIcon, zi as BreadCrumb, Ri as BreadCrumbItem, ye as BrightIcon, S as Button, Dr as CSVFileIcon, be as CalendarIcon, xe as CameraIcon, Bi as Card, Se as CaretLineDownIcon, Ce as CaretLineLeftIcon, we as CaretLineRightIcon, Te as CaretLineUpIcon, Ee as CaretUpDownIcon, De as ChatIcon, L as CheckCircleFilledIcon, I as CheckCircleIcon, ke as CheckDoubleIcon, Oe as CheckIcon, Ui as Checkbox, P as CheckboxCheckIcon, F as CheckboxIndeterminateIcon, Gi as Chips, H as CircleDashedIcon, Ae as CircleFilledIcon, je as CircleOutlineIcon, Pe as ClipIcon, ri as ClipboardIcon, $r as CloseCircleFilledIcon, Me as CloseCircleIcon, R as CloseIcon, Ne as ClosedEyesIcon, fi as CodeIcon, Ir as CompareIcon, vr as ConfirmIcon, Fe as ConnectedIcon, Ie as ContrastIcon, ur as ControlIcon, Re as Copy1Icon, ze as Copy2Icon, Le as CopyIcon, Be as CreditCardIcon, Ve as CropIcon, He as CuttingIcon, zr as DatabaseIcon, Ue as DefectGeneratorIcon, We as DeleteIcon, Ge as DeletePointIcon, Ke as DirectionDoubleDownIcon, qe as DirectionDoubleLeftIcon, Je as DirectionDoubleRightIcon, Ye as DirectionDoubleUpIcon, z as DirectionDownIcon, B as DirectionLeftIcon, V as DirectionRightIcon, Xe as DirectionUpIcon, Ze as DisconnectedIcon, qi as Divider, Qe as DotIcon, $e as DownloadIcon, et as DragHandleIcon, tt as EditIcon, ti as EmptyIcon, mi as EnglishIcon, ni as EqualIcon, it as EraserIcon, Oi as ExpandIcon, Fr as ExperimentIcon, at as ExportIcon, W as FailedIcon, G as FileIcon, st as FilterFilledIcon, ot as FilterIcon, ct as FitIcon, ut as FloppyDiskIcon, K as FolderCloseIcon, lt as FolderOpenIcon, dt as GalleryViewLargeIcon, ft as GalleryViewMediumIcon, pt as GalleryViewSmallIcon, mt as GlobalIcon, ht as GraphIcon, _t as GraphPieIcon, gt as GraphScatterIcon, vt as GridIcon, yt as GuideHandleIcon, bt as GuideLineIcon, xt as HamburgerIcon, St as HandIcon, Ct as HelpIcon, Tt as HistoryIcon, wt as HomeIcon, vi as HourglassIcon, Xi as IconButton, Ot as ImageBrokenIcon, Et as ImageIcon, Dt as ImagesIcon, kt as ImportIcon, X as InfoFilledIcon, q as InfoIcon, $i as Input, _ as InteractionLayer, At as KebabIcon, Mt as KeyDeleteIcon, Sr as KeyIcon, Nt as KeyReturnIcon, jt as KeyboardIcon, hi as KoreanIcon, Pt as LabelPointIcon, Ft as LanguageIcon, ii as LightbulbIcon, oi as LightingFilledIcon, ai as LightingIcon, It as LineIcon, Lt as LinkIcon, pi as ListPlayIcon, Rt as LockIcon, zt as LoginIcon, Bt as LogoutIcon, Ar as MagicWandIcon, Vt as MailIcon, Ht as MapIcon, Ut as MapPinIcon, Wt as MeatballIcon, ta as MenuItem, na as MenuRoot, aa as Messagebox, Nr as MicroscopeIcon, gr as MinimizeIcon, Ti as MinimizeWindowIcon, Kt as MinusCircleIcon, Gt as MinusIcon, la as ModalFooter, sa as ModalHeader, ua as ModalRoot, qt as ModelIcon, si as MonitorIcon, Jt as MouseClickLeftIcon, Yt as MouseClickRightIcon, br as MoveFolderIcon, Xt as MoveIcon, Zt as MultiSelectionIcon, Qt as MuteIcon, ha as Nav, ma as NavItem, fa as NavTile, $t as NewTabIcon, Rr as NotEqualIcon, en as OpenEyesIcon, _a as Overlay, lr as PackageIcon, wi as PageIcon, Ci as PageMaximizeIcon, Si as PageMinimizeIcon, ya as Pagination, tn as PasteIcon, Kr as PauseCircleFilledIcon, rn as PauseCircleIcon, nn as PauseIcon, an as PenIcon, on as PencilIcon, sn as PinIcon, ci as PipelineIcon, cn as PixelIcon, Jr as PlayCircleFilledIcon, un as PlayCircleIcon, ln as PlayIcon, ui as PlayProgressIcon, ei as PlusCircleFilledIcon, fn as PlusCircleIcon, dn as PlusIcon, mn as PointEditIcon, pn as PointIcon, gn as PushPinFilledIcon, hn as PushPinIcon, Tr as QuestionIcon, Sa as Radio, mr as ReadedMailIcon, nt as RectDashedIcon, _n as RectIcon, vn as RedoIcon, yn as RefreshIcon, bn as RepeatIcon, xn as RepeatOnceIcon, Or as RequestStatusIcon, Sn as RocketIcon, Cn as RotateRectIcon, wn as RotateRectOCRIcon, Tn as RulerIcon, En as ScaleLeftBottomIcon, Dn as ScaleLeftTopIcon, On as ScaleRightBottomIcon, kn as ScaleRightTopIcon, An as SearchIcon, Da as SegmentedItem, Ta as SegmentedRoot, ka as Select, Er as SendIcon, jn as SettingIcon, Pr as ShapesIcon, Aa as Shortcut, Di as ShrinkIcon, Mn as ShuffleIcon, Nn as SidebarIcon, Pn as SimplificationIcon, Fn as SmoothIcon, J as SortAscendingIcon, Y as SortDescendingIcon, In as SoundIcon, gi as SpecificAreaIcon, Rn as StarFilledIcon, Ln as StarIcon, qr as StopCircleFilledIcon, Bn as StopCircleIcon, zn as StopIcon, _r as StorageIcon, Vn as StrokeIcon, Fa as Switch, za as TabItem, Ra as TabRoot, Va as Table, Ua as TableBody, Ka as TableCell, Ga as TableHead, Ha as TableHeader, Wa as TableRow, fr as TagFilledIcon, Qr as TagFilledOpacityIcon, dr as TagIcon, Ya as Tagbox, Lr as TargetIcon, Ei as TaskQueueIcon, Hn as TeamIcon, Un as TempIcon, hr as TestIcon, Gn as TextBoldIcon, Yn as TextH1Icon, Xn as TextH2Icon, Zn as TextH3Icon, Wn as TextIcon, Kn as TextItalicIcon, qn as TextStrikethroughIcon, Jn as TextUnderlineIcon, Za as Textarea, xi as ThumbsDownFilledIcon, bi as ThumbsDownIcon, yi as ThumbsUpIcon, Qn as TimeIcon, Qa as Toast, $a as ToastToaster, li as ToolIcon, no as Tooltip, rt as TriangleDashedIcon, ao as Typography, $n as UndoIcon, er as UneditableIcon, tr as UnlockIcon, yr as UnreadIcon, oo as UploadArea, nr as UploadIcon, rr as UserIcon, Vr as WarningCircleFilledIcon, Br as WarningCircleIcon, Z as WarningTriangleFilledIcon, U as WarningTriangleIcon, ir as WheelIcon, ar as WorkspaceIcon, or as Zoom100Icon, sr as ZoomInIcon, cr as ZoomOutIcon, ji as avatarVariants, Fi as badgeDotVariants, Ni as badgeLabelVariants, x as buttonVariants, Vi as checkboxVariants, Wi as chipsVariants, h as cn, Ki as dividerVariants, Ji as iconButtonVariants, Zi as inputWrapperVariants, ea as menuItemVariants, ra as messageboxVariants, pa as navItemVariants, da as navTileVariants, ga as overlayVariants, ba as radioVariants, Oa as selectWrapperVariants, Q as tabItemVariants, Xa as textareaWrapperVariants, p as toast, $ as toastVariants, eo as tooltipContentVariants, ro as typographyVariants };
|
|
7767
7752
|
|
|
7768
7753
|
//# sourceMappingURL=index.js.map
|