@deepnoid/ui 0.0.39 → 0.0.47
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/{chunk-U5BM5CA4.mjs → chunk-BE2OG6M4.mjs} +6 -6
- package/dist/{chunk-QA3NLB7A.mjs → chunk-DLVQWKQG.mjs} +20 -32
- package/dist/{chunk-NTTHTGDK.mjs → chunk-FNPWLOGV.mjs} +37 -39
- package/dist/{chunk-73CY6EMJ.mjs → chunk-G3CX6IWH.mjs} +6 -2
- package/dist/{chunk-AIHAY5WF.mjs → chunk-H737LHAY.mjs} +3 -7
- package/dist/{chunk-ILMIS63S.mjs → chunk-H7BLXC5M.mjs} +14 -14
- package/dist/{chunk-ADDUBJ4I.mjs → chunk-S4DTK5GI.mjs} +1 -1
- package/dist/{chunk-4AEJS4SD.mjs → chunk-TDMXAHWR.mjs} +22 -6
- package/dist/components/accordion/accordion.test.js +37 -39
- package/dist/components/accordion/accordion.test.mjs +3 -3
- package/dist/components/button/button-group.test.js +37 -39
- package/dist/components/button/button-group.test.mjs +4 -4
- package/dist/components/button/button.test.js +50 -52
- package/dist/components/button/button.test.mjs +5 -5
- package/dist/components/card/card.test.js +37 -39
- package/dist/components/card/card.test.mjs +1 -1
- package/dist/components/checkbox/checkbox.js +6 -6
- package/dist/components/checkbox/checkbox.mjs +1 -1
- package/dist/components/checkbox/checkbox.test.js +43 -45
- package/dist/components/checkbox/checkbox.test.mjs +6 -6
- package/dist/components/checkbox/index.js +6 -6
- package/dist/components/checkbox/index.mjs +1 -1
- package/dist/components/input/index.js +2 -6
- package/dist/components/input/index.mjs +1 -1
- package/dist/components/input/input.js +2 -6
- package/dist/components/input/input.mjs +1 -1
- package/dist/components/input/input.test.js +54 -60
- package/dist/components/input/input.test.mjs +6 -6
- package/dist/components/list/list.test.js +37 -39
- package/dist/components/list/list.test.mjs +2 -2
- package/dist/components/modal/index.mjs +3 -3
- package/dist/components/modal/modal.mjs +3 -3
- package/dist/components/modal/modal.test.js +37 -39
- package/dist/components/modal/modal.test.mjs +6 -6
- package/dist/components/pagination/pagination.test.js +37 -39
- package/dist/components/pagination/pagination.test.mjs +2 -2
- package/dist/components/progress/progress.test.js +37 -39
- package/dist/components/progress/progress.test.mjs +1 -1
- package/dist/components/radio/radio.test.js +37 -39
- package/dist/components/radio/radio.test.mjs +2 -2
- package/dist/components/select/select.test.js +37 -39
- package/dist/components/select/select.test.mjs +7 -7
- package/dist/components/slider/slider.test.js +37 -39
- package/dist/components/slider/slider.test.mjs +1 -1
- package/dist/components/switch/switch.test.js +37 -39
- package/dist/components/switch/switch.test.mjs +2 -2
- package/dist/components/table/index.js +536 -329
- package/dist/components/table/index.mjs +7 -4
- package/dist/components/table/table-body.d.mts +3 -1
- package/dist/components/table/table-body.d.ts +3 -1
- package/dist/components/table/table-body.js +250 -42
- package/dist/components/table/table-body.mjs +6 -2
- package/dist/components/table/table-head.d.mts +4 -1
- package/dist/components/table/table-head.d.ts +4 -1
- package/dist/components/table/table-head.js +234 -10
- package/dist/components/table/table-head.mjs +5 -1
- package/dist/components/table/table.d.mts +21 -0
- package/dist/components/table/table.d.ts +21 -0
- package/dist/components/table/table.js +536 -329
- package/dist/components/table/table.mjs +7 -4
- package/dist/components/table/table.test.js +576 -371
- package/dist/components/table/table.test.mjs +10 -7
- package/dist/components/tabs/tabs.test.js +37 -39
- package/dist/components/tabs/tabs.test.mjs +5 -5
- package/dist/components/textarea/textarea.test.js +50 -52
- package/dist/components/textarea/textarea.test.mjs +2 -2
- package/dist/components/tooltip/tooltip.test.js +37 -39
- package/dist/components/tooltip/tooltip.test.mjs +4 -4
- package/dist/index.js +284 -284
- package/dist/index.mjs +17 -17
- package/package.json +2 -3
- package/dist/{chunk-UTFSB4JG.mjs → chunk-7LYJAJIS.mjs} +3 -3
|
@@ -26,9 +26,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
26
26
|
mod
|
|
27
27
|
));
|
|
28
28
|
|
|
29
|
-
// ../../node_modules
|
|
29
|
+
// ../../node_modules/pretty-format/node_modules/ansi-styles/index.js
|
|
30
30
|
var require_ansi_styles = __commonJS({
|
|
31
|
-
"../../node_modules
|
|
31
|
+
"../../node_modules/pretty-format/node_modules/ansi-styles/index.js"(exports2, module2) {
|
|
32
32
|
"use strict";
|
|
33
33
|
var ANSI_BACKGROUND_OFFSET = 10;
|
|
34
34
|
var wrapAnsi256 = (offset = 0) => (code) => `\x1B[${38 + offset};5;${code}m`;
|
|
@@ -164,9 +164,9 @@ var require_ansi_styles = __commonJS({
|
|
|
164
164
|
}
|
|
165
165
|
});
|
|
166
166
|
|
|
167
|
-
// ../../node_modules
|
|
167
|
+
// ../../node_modules/pretty-format/build/collections.js
|
|
168
168
|
var require_collections = __commonJS({
|
|
169
|
-
"../../node_modules
|
|
169
|
+
"../../node_modules/pretty-format/build/collections.js"(exports2) {
|
|
170
170
|
"use strict";
|
|
171
171
|
Object.defineProperty(exports2, "__esModule", {
|
|
172
172
|
value: true
|
|
@@ -282,9 +282,9 @@ var require_collections = __commonJS({
|
|
|
282
282
|
}
|
|
283
283
|
});
|
|
284
284
|
|
|
285
|
-
// ../../node_modules
|
|
285
|
+
// ../../node_modules/pretty-format/build/plugins/AsymmetricMatcher.js
|
|
286
286
|
var require_AsymmetricMatcher = __commonJS({
|
|
287
|
-
"../../node_modules
|
|
287
|
+
"../../node_modules/pretty-format/build/plugins/AsymmetricMatcher.js"(exports2) {
|
|
288
288
|
"use strict";
|
|
289
289
|
Object.defineProperty(exports2, "__esModule", {
|
|
290
290
|
value: true
|
|
@@ -369,9 +369,9 @@ var require_ansi_regex = __commonJS({
|
|
|
369
369
|
}
|
|
370
370
|
});
|
|
371
371
|
|
|
372
|
-
// ../../node_modules
|
|
372
|
+
// ../../node_modules/pretty-format/build/plugins/ConvertAnsi.js
|
|
373
373
|
var require_ConvertAnsi = __commonJS({
|
|
374
|
-
"../../node_modules
|
|
374
|
+
"../../node_modules/pretty-format/build/plugins/ConvertAnsi.js"(exports2) {
|
|
375
375
|
"use strict";
|
|
376
376
|
Object.defineProperty(exports2, "__esModule", {
|
|
377
377
|
value: true
|
|
@@ -440,9 +440,9 @@ var require_ConvertAnsi = __commonJS({
|
|
|
440
440
|
}
|
|
441
441
|
});
|
|
442
442
|
|
|
443
|
-
// ../../node_modules
|
|
443
|
+
// ../../node_modules/pretty-format/build/plugins/DOMCollection.js
|
|
444
444
|
var require_DOMCollection = __commonJS({
|
|
445
|
-
"../../node_modules
|
|
445
|
+
"../../node_modules/pretty-format/build/plugins/DOMCollection.js"(exports2) {
|
|
446
446
|
"use strict";
|
|
447
447
|
Object.defineProperty(exports2, "__esModule", {
|
|
448
448
|
value: true
|
|
@@ -490,9 +490,9 @@ var require_DOMCollection = __commonJS({
|
|
|
490
490
|
}
|
|
491
491
|
});
|
|
492
492
|
|
|
493
|
-
// ../../node_modules
|
|
493
|
+
// ../../node_modules/pretty-format/build/plugins/lib/escapeHTML.js
|
|
494
494
|
var require_escapeHTML = __commonJS({
|
|
495
|
-
"../../node_modules
|
|
495
|
+
"../../node_modules/pretty-format/build/plugins/lib/escapeHTML.js"(exports2) {
|
|
496
496
|
"use strict";
|
|
497
497
|
Object.defineProperty(exports2, "__esModule", {
|
|
498
498
|
value: true
|
|
@@ -504,9 +504,9 @@ var require_escapeHTML = __commonJS({
|
|
|
504
504
|
}
|
|
505
505
|
});
|
|
506
506
|
|
|
507
|
-
// ../../node_modules
|
|
507
|
+
// ../../node_modules/pretty-format/build/plugins/lib/markup.js
|
|
508
508
|
var require_markup = __commonJS({
|
|
509
|
-
"../../node_modules
|
|
509
|
+
"../../node_modules/pretty-format/build/plugins/lib/markup.js"(exports2) {
|
|
510
510
|
"use strict";
|
|
511
511
|
Object.defineProperty(exports2, "__esModule", {
|
|
512
512
|
value: true
|
|
@@ -559,9 +559,9 @@ var require_markup = __commonJS({
|
|
|
559
559
|
}
|
|
560
560
|
});
|
|
561
561
|
|
|
562
|
-
// ../../node_modules
|
|
562
|
+
// ../../node_modules/pretty-format/build/plugins/DOMElement.js
|
|
563
563
|
var require_DOMElement = __commonJS({
|
|
564
|
-
"../../node_modules
|
|
564
|
+
"../../node_modules/pretty-format/build/plugins/DOMElement.js"(exports2) {
|
|
565
565
|
"use strict";
|
|
566
566
|
Object.defineProperty(exports2, "__esModule", {
|
|
567
567
|
value: true
|
|
@@ -647,9 +647,9 @@ var require_DOMElement = __commonJS({
|
|
|
647
647
|
}
|
|
648
648
|
});
|
|
649
649
|
|
|
650
|
-
// ../../node_modules
|
|
650
|
+
// ../../node_modules/pretty-format/build/plugins/Immutable.js
|
|
651
651
|
var require_Immutable = __commonJS({
|
|
652
|
-
"../../node_modules
|
|
652
|
+
"../../node_modules/pretty-format/build/plugins/Immutable.js"(exports2) {
|
|
653
653
|
"use strict";
|
|
654
654
|
Object.defineProperty(exports2, "__esModule", {
|
|
655
655
|
value: true
|
|
@@ -804,9 +804,9 @@ var require_Immutable = __commonJS({
|
|
|
804
804
|
}
|
|
805
805
|
});
|
|
806
806
|
|
|
807
|
-
// ../../node_modules
|
|
807
|
+
// ../../node_modules/react-is/cjs/react-is.production.min.js
|
|
808
808
|
var require_react_is_production_min = __commonJS({
|
|
809
|
-
"../../node_modules
|
|
809
|
+
"../../node_modules/react-is/cjs/react-is.production.min.js"(exports2) {
|
|
810
810
|
"use strict";
|
|
811
811
|
var b = 60103;
|
|
812
812
|
var c = 60106;
|
|
@@ -942,9 +942,9 @@ var require_react_is_production_min = __commonJS({
|
|
|
942
942
|
}
|
|
943
943
|
});
|
|
944
944
|
|
|
945
|
-
// ../../node_modules
|
|
945
|
+
// ../../node_modules/react-is/cjs/react-is.development.js
|
|
946
946
|
var require_react_is_development = __commonJS({
|
|
947
|
-
"../../node_modules
|
|
947
|
+
"../../node_modules/react-is/cjs/react-is.development.js"(exports2) {
|
|
948
948
|
"use strict";
|
|
949
949
|
if (process.env.NODE_ENV !== "production") {
|
|
950
950
|
(function() {
|
|
@@ -1134,9 +1134,9 @@ var require_react_is_development = __commonJS({
|
|
|
1134
1134
|
}
|
|
1135
1135
|
});
|
|
1136
1136
|
|
|
1137
|
-
// ../../node_modules
|
|
1137
|
+
// ../../node_modules/react-is/index.js
|
|
1138
1138
|
var require_react_is = __commonJS({
|
|
1139
|
-
"../../node_modules
|
|
1139
|
+
"../../node_modules/react-is/index.js"(exports2, module2) {
|
|
1140
1140
|
"use strict";
|
|
1141
1141
|
if (process.env.NODE_ENV === "production") {
|
|
1142
1142
|
module2.exports = require_react_is_production_min();
|
|
@@ -1146,9 +1146,9 @@ var require_react_is = __commonJS({
|
|
|
1146
1146
|
}
|
|
1147
1147
|
});
|
|
1148
1148
|
|
|
1149
|
-
// ../../node_modules
|
|
1149
|
+
// ../../node_modules/pretty-format/build/plugins/ReactElement.js
|
|
1150
1150
|
var require_ReactElement = __commonJS({
|
|
1151
|
-
"../../node_modules
|
|
1151
|
+
"../../node_modules/pretty-format/build/plugins/ReactElement.js"(exports2) {
|
|
1152
1152
|
"use strict";
|
|
1153
1153
|
Object.defineProperty(exports2, "__esModule", {
|
|
1154
1154
|
value: true
|
|
@@ -1276,9 +1276,9 @@ var require_ReactElement = __commonJS({
|
|
|
1276
1276
|
}
|
|
1277
1277
|
});
|
|
1278
1278
|
|
|
1279
|
-
// ../../node_modules
|
|
1279
|
+
// ../../node_modules/pretty-format/build/plugins/ReactTestComponent.js
|
|
1280
1280
|
var require_ReactTestComponent = __commonJS({
|
|
1281
|
-
"../../node_modules
|
|
1281
|
+
"../../node_modules/pretty-format/build/plugins/ReactTestComponent.js"(exports2) {
|
|
1282
1282
|
"use strict";
|
|
1283
1283
|
Object.defineProperty(exports2, "__esModule", {
|
|
1284
1284
|
value: true
|
|
@@ -1338,9 +1338,9 @@ var require_ReactTestComponent = __commonJS({
|
|
|
1338
1338
|
}
|
|
1339
1339
|
});
|
|
1340
1340
|
|
|
1341
|
-
// ../../node_modules
|
|
1341
|
+
// ../../node_modules/pretty-format/build/index.js
|
|
1342
1342
|
var require_build = __commonJS({
|
|
1343
|
-
"../../node_modules
|
|
1343
|
+
"../../node_modules/pretty-format/build/index.js"(exports2) {
|
|
1344
1344
|
"use strict";
|
|
1345
1345
|
Object.defineProperty(exports2, "__esModule", {
|
|
1346
1346
|
value: true
|
|
@@ -8771,9 +8771,7 @@ var require_lz_string = __commonJS({
|
|
|
8771
8771
|
return keyStrBase64.charAt(a);
|
|
8772
8772
|
});
|
|
8773
8773
|
switch (res.length % 4) {
|
|
8774
|
-
// To produce valid Base64
|
|
8775
8774
|
default:
|
|
8776
|
-
// When could this happen ?
|
|
8777
8775
|
case 0:
|
|
8778
8776
|
return res;
|
|
8779
8777
|
case 1:
|
|
@@ -9215,7 +9213,7 @@ var ReactDOMClient = __toESM(require("react-dom/client"));
|
|
|
9215
9213
|
// ../../node_modules/@testing-library/dom/dist/@testing-library/dom.esm.js
|
|
9216
9214
|
var prettyFormat = __toESM(require_build());
|
|
9217
9215
|
|
|
9218
|
-
// ../../node_modules
|
|
9216
|
+
// ../../node_modules/dom-accessibility-api/dist/polyfills/array.from.mjs
|
|
9219
9217
|
var toStr = Object.prototype.toString;
|
|
9220
9218
|
function isCallable(fn) {
|
|
9221
9219
|
return typeof fn === "function" || toStr.call(fn) === "[object Function]";
|
|
@@ -9263,7 +9261,7 @@ function arrayFrom(arrayLike, mapFn) {
|
|
|
9263
9261
|
return A;
|
|
9264
9262
|
}
|
|
9265
9263
|
|
|
9266
|
-
// ../../node_modules
|
|
9264
|
+
// ../../node_modules/dom-accessibility-api/dist/polyfills/SetLike.mjs
|
|
9267
9265
|
function _typeof(obj) {
|
|
9268
9266
|
"@babel/helpers - typeof";
|
|
9269
9267
|
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj2) {
|
|
@@ -9367,7 +9365,7 @@ var SetLike = /* @__PURE__ */ function() {
|
|
|
9367
9365
|
}();
|
|
9368
9366
|
var SetLike_default = typeof Set === "undefined" ? Set : SetLike;
|
|
9369
9367
|
|
|
9370
|
-
// ../../node_modules
|
|
9368
|
+
// ../../node_modules/dom-accessibility-api/dist/getRole.mjs
|
|
9371
9369
|
function getLocalName(element) {
|
|
9372
9370
|
var _element$localName;
|
|
9373
9371
|
return (
|
|
@@ -9550,7 +9548,7 @@ function getExplicitRole(element) {
|
|
|
9550
9548
|
return null;
|
|
9551
9549
|
}
|
|
9552
9550
|
|
|
9553
|
-
// ../../node_modules
|
|
9551
|
+
// ../../node_modules/dom-accessibility-api/dist/util.mjs
|
|
9554
9552
|
function isElement(node) {
|
|
9555
9553
|
return node !== null && node.nodeType === node.ELEMENT_NODE;
|
|
9556
9554
|
}
|
|
@@ -9619,7 +9617,7 @@ function hasAnyConcreteRoles(node, roles2) {
|
|
|
9619
9617
|
return false;
|
|
9620
9618
|
}
|
|
9621
9619
|
|
|
9622
|
-
// ../../node_modules
|
|
9620
|
+
// ../../node_modules/dom-accessibility-api/dist/accessible-name-and-description.mjs
|
|
9623
9621
|
function asFlatString(s) {
|
|
9624
9622
|
return s.trim().replace(/\s\s+/g, " ");
|
|
9625
9623
|
}
|
|
@@ -9988,7 +9986,7 @@ function computeTextAlternative(root) {
|
|
|
9988
9986
|
}));
|
|
9989
9987
|
}
|
|
9990
9988
|
|
|
9991
|
-
// ../../node_modules
|
|
9989
|
+
// ../../node_modules/dom-accessibility-api/dist/accessible-description.mjs
|
|
9992
9990
|
function _typeof2(obj) {
|
|
9993
9991
|
"@babel/helpers - typeof";
|
|
9994
9992
|
return _typeof2 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj2) {
|
|
@@ -10055,7 +10053,7 @@ function computeAccessibleDescription(root) {
|
|
|
10055
10053
|
return description;
|
|
10056
10054
|
}
|
|
10057
10055
|
|
|
10058
|
-
// ../../node_modules
|
|
10056
|
+
// ../../node_modules/dom-accessibility-api/dist/accessible-name.mjs
|
|
10059
10057
|
function prohibitsNaming(node) {
|
|
10060
10058
|
return hasAnyConcreteRoles(node, ["caption", "code", "deletion", "emphasis", "generic", "insertion", "paragraph", "presentation", "strong", "subscript", "superscript"]);
|
|
10061
10059
|
}
|
|
@@ -12873,7 +12871,7 @@ if (typeof process === "undefined" || !((_a = process.env) == null ? void 0 : _a
|
|
|
12873
12871
|
}
|
|
12874
12872
|
|
|
12875
12873
|
// src/components/table/table.tsx
|
|
12876
|
-
var
|
|
12874
|
+
var import_react6 = require("react");
|
|
12877
12875
|
|
|
12878
12876
|
// src/utils/props.ts
|
|
12879
12877
|
var mapPropsVariants = (props, variantKeys, removeVariantProps = true) => {
|
|
@@ -12936,46 +12934,252 @@ function toVal(mix) {
|
|
|
12936
12934
|
}
|
|
12937
12935
|
|
|
12938
12936
|
// src/components/table/table-head.tsx
|
|
12937
|
+
var import_react2 = require("react");
|
|
12938
|
+
|
|
12939
|
+
// src/components/checkbox/checkbox.tsx
|
|
12939
12940
|
var import_react = require("react");
|
|
12941
|
+
|
|
12942
|
+
// src/utils/tailwind-variants.ts
|
|
12943
|
+
var import_tailwind_variants = require("tailwind-variants");
|
|
12944
|
+
var COMMON_SIZE = ["sm", "md", "lg"];
|
|
12945
|
+
var COMMON_RADIUS = ["xlg", "xxlg", "none", "full"];
|
|
12946
|
+
var COMMON_FONTSIZE = ["h1", "h2", "h3", "h4", "h5"];
|
|
12947
|
+
var COMMON_SHADOW = ["inner", "drop"];
|
|
12948
|
+
var tv = (0, import_tailwind_variants.createTV)({
|
|
12949
|
+
// twMerge: false,
|
|
12950
|
+
twMergeConfig: {
|
|
12951
|
+
classGroups: {
|
|
12952
|
+
fontSize: [{ text: [...COMMON_SIZE, ...COMMON_FONTSIZE] }],
|
|
12953
|
+
borderRadius: [{ rounded: [...COMMON_RADIUS, ...COMMON_SIZE] }],
|
|
12954
|
+
boxShadow: [{ shadow: [...COMMON_SHADOW] }],
|
|
12955
|
+
padding: [{ p: [...COMMON_SIZE] }],
|
|
12956
|
+
gap: [{ gap: [...COMMON_SIZE] }]
|
|
12957
|
+
}
|
|
12958
|
+
}
|
|
12959
|
+
});
|
|
12960
|
+
|
|
12961
|
+
// src/components/checkbox/checkbox.tsx
|
|
12940
12962
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
12941
|
-
var
|
|
12942
|
-
|
|
12943
|
-
const
|
|
12963
|
+
var CheckBox = (0, import_react.forwardRef)((originalProps, ref) => {
|
|
12964
|
+
const [props, variantProps] = mapPropsVariants(originalProps, checkbox.variantKeys);
|
|
12965
|
+
const { children, classNames, ...inputProps } = props;
|
|
12966
|
+
const slots = (0, import_react.useMemo)(() => checkbox({ ...variantProps }), [...Object.values(variantProps)]);
|
|
12967
|
+
const getBaseProps = (0, import_react.useCallback)(
|
|
12968
|
+
() => ({
|
|
12969
|
+
className: slots.base({ class: classNames == null ? void 0 : classNames.base })
|
|
12970
|
+
}),
|
|
12971
|
+
[slots, classNames]
|
|
12972
|
+
);
|
|
12973
|
+
const getInputProps = (0, import_react.useCallback)(() => {
|
|
12974
|
+
return {
|
|
12975
|
+
...inputProps,
|
|
12976
|
+
type: "checkbox",
|
|
12977
|
+
ref,
|
|
12978
|
+
size: 0
|
|
12979
|
+
};
|
|
12980
|
+
}, [slots, classNames, inputProps]);
|
|
12981
|
+
const getWrapperProps = (0, import_react.useCallback)(() => {
|
|
12982
|
+
return {
|
|
12983
|
+
className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper })
|
|
12984
|
+
};
|
|
12985
|
+
}, [slots, classNames]);
|
|
12986
|
+
const getLabelProps = (0, import_react.useCallback)(() => {
|
|
12987
|
+
return {
|
|
12988
|
+
className: slots.label({ class: classNames == null ? void 0 : classNames.label })
|
|
12989
|
+
};
|
|
12990
|
+
}, [classNames == null ? void 0 : classNames.label, slots]);
|
|
12991
|
+
const getIconProps = (0, import_react.useCallback)(() => {
|
|
12992
|
+
return {
|
|
12993
|
+
isSelected: true,
|
|
12994
|
+
className: slots.icon({ class: classNames == null ? void 0 : classNames.icon })
|
|
12995
|
+
};
|
|
12996
|
+
}, [slots, classNames]);
|
|
12997
|
+
const CheckBoxIcon = (props2) => {
|
|
12998
|
+
const { isSelected, ...otherProps } = props2;
|
|
12999
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { "aria-hidden": "true", role: "presentation", viewBox: "0 0 17 18", ...otherProps, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
13000
|
+
"polyline",
|
|
13001
|
+
{
|
|
13002
|
+
fill: "none",
|
|
13003
|
+
points: "1 9 7 14 15 4",
|
|
13004
|
+
stroke: "currentColor",
|
|
13005
|
+
strokeDasharray: 22,
|
|
13006
|
+
strokeDashoffset: isSelected ? 44 : 66,
|
|
13007
|
+
strokeLinecap: "round",
|
|
13008
|
+
strokeLinejoin: "round",
|
|
13009
|
+
strokeWidth: 3,
|
|
13010
|
+
style: isSelected ? {
|
|
13011
|
+
transition: "stroke-dashoffset 250ms linear 0.2s"
|
|
13012
|
+
} : {}
|
|
13013
|
+
}
|
|
13014
|
+
) });
|
|
13015
|
+
};
|
|
13016
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("label", { ...getBaseProps(), children: [
|
|
13017
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "hidden", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("input", { ...getInputProps() }) }),
|
|
13018
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { ...getWrapperProps(), children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(CheckBoxIcon, { ...getIconProps() }) }),
|
|
13019
|
+
children && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { ...getLabelProps(), children })
|
|
13020
|
+
] });
|
|
13021
|
+
});
|
|
13022
|
+
CheckBox.displayName = "CheckBox";
|
|
13023
|
+
var checkbox_default = CheckBox;
|
|
13024
|
+
var checkbox = tv({
|
|
13025
|
+
slots: {
|
|
13026
|
+
base: "group relative inline-flex items-center cursor-pointer",
|
|
13027
|
+
wrapper: [
|
|
13028
|
+
"relative",
|
|
13029
|
+
"inline-flex",
|
|
13030
|
+
"items-center",
|
|
13031
|
+
"justify-center",
|
|
13032
|
+
// before
|
|
13033
|
+
"before:content-['']",
|
|
13034
|
+
"before:absolute",
|
|
13035
|
+
"before:inset-0",
|
|
13036
|
+
"before:border-solid",
|
|
13037
|
+
"before:border-[1px]",
|
|
13038
|
+
"before:box-border",
|
|
13039
|
+
"before:z-10",
|
|
13040
|
+
"before:border-neutral-main",
|
|
13041
|
+
// after
|
|
13042
|
+
"after:content-['']",
|
|
13043
|
+
"after:absolute",
|
|
13044
|
+
"after:inset-0",
|
|
13045
|
+
"after:scale-50",
|
|
13046
|
+
"after:opacity-0",
|
|
13047
|
+
"group-has-[:checked]:after:scale-100",
|
|
13048
|
+
"group-has-[:checked]:after:opacity-100",
|
|
13049
|
+
// hover
|
|
13050
|
+
"group-hover:before:bg-neutral-soft",
|
|
13051
|
+
"before:transition duration-200"
|
|
13052
|
+
],
|
|
13053
|
+
icon: "z-10 opacity-0 group-has-[:checked]:opacity-100 text-white",
|
|
13054
|
+
label: "relative text-foreground select-none"
|
|
13055
|
+
},
|
|
13056
|
+
variants: {
|
|
13057
|
+
color: {
|
|
13058
|
+
primary: {
|
|
13059
|
+
wrapper: "group-has-[:checked]:before:border-primary-main group-has-[:checked]:before:bg-primary-main"
|
|
13060
|
+
},
|
|
13061
|
+
secondary: {
|
|
13062
|
+
wrapper: "group-has-[:checked]:before:border-secondary-main group-has-[:checked]:before:bg-secondary-main"
|
|
13063
|
+
}
|
|
13064
|
+
},
|
|
13065
|
+
size: {
|
|
13066
|
+
sm: {
|
|
13067
|
+
wrapper: ["w-[15px] h-[15px] rounded-sm", "before:rounded-[4px]", "after:rounded-[4px]"],
|
|
13068
|
+
label: "text-sm ml-[8px]",
|
|
13069
|
+
icon: "w-[10px] h-[10px]"
|
|
13070
|
+
},
|
|
13071
|
+
md: {
|
|
13072
|
+
wrapper: ["w-[17px] h-[17px] rounded-md", "before:rounded-[5px]", "after:rounded-[5px]"],
|
|
13073
|
+
label: "text-md ml-[9px]",
|
|
13074
|
+
icon: "w-[12px] h-[12px]"
|
|
13075
|
+
},
|
|
13076
|
+
lg: {
|
|
13077
|
+
wrapper: ["w-[20px] h-[20px] rounded-lg", "before:rounded-[6px]", "after:rounded-[6px]"],
|
|
13078
|
+
label: "text-lg ml-[10px]",
|
|
13079
|
+
icon: "w-[15px] h-[15px]"
|
|
13080
|
+
}
|
|
13081
|
+
},
|
|
13082
|
+
lineThrough: {
|
|
13083
|
+
true: {
|
|
13084
|
+
label: [
|
|
13085
|
+
"inline-flex",
|
|
13086
|
+
"items-center",
|
|
13087
|
+
"justify-center",
|
|
13088
|
+
"before:content-['']",
|
|
13089
|
+
"before:absolute",
|
|
13090
|
+
"before:bg-black",
|
|
13091
|
+
"before:w-0",
|
|
13092
|
+
"before:h-0.5",
|
|
13093
|
+
"group-has-[:checked]:opacity-60",
|
|
13094
|
+
"group-has-[:checked]:before:w-full"
|
|
13095
|
+
]
|
|
13096
|
+
}
|
|
13097
|
+
},
|
|
13098
|
+
isInvalid: {
|
|
13099
|
+
true: {
|
|
13100
|
+
wrapper: "before:border-danger-main group-has-[:checked]:before:bg-danger-main",
|
|
13101
|
+
label: "text-danger-main"
|
|
13102
|
+
}
|
|
13103
|
+
},
|
|
13104
|
+
isDisabled: {
|
|
13105
|
+
true: {
|
|
13106
|
+
base: "opacity-disabled pointer-events-none text-neutral-light",
|
|
13107
|
+
wrapper: "after:bg-neutral-soft before:border-neutral-light before:bg-neutral-soft group-has-[:checked]:before:bg-neutral-soft",
|
|
13108
|
+
label: "text-neutral-light",
|
|
13109
|
+
icon: "text-neutral-light"
|
|
13110
|
+
}
|
|
13111
|
+
},
|
|
13112
|
+
disableAnimation: {
|
|
13113
|
+
true: {
|
|
13114
|
+
wrapper: "transition-none",
|
|
13115
|
+
icon: "transition-none",
|
|
13116
|
+
label: "transition-none"
|
|
13117
|
+
},
|
|
13118
|
+
false: {
|
|
13119
|
+
wrapper: [
|
|
13120
|
+
"before:transition-colors",
|
|
13121
|
+
"group-data-[pressed=true]:scale-95",
|
|
13122
|
+
"transition-transform",
|
|
13123
|
+
"after:transition-transform-opacity",
|
|
13124
|
+
"after:!ease-linear",
|
|
13125
|
+
"after:!duration-200",
|
|
13126
|
+
"motion-reduce:transition-none"
|
|
13127
|
+
],
|
|
13128
|
+
icon: "transition-opacity motion-reduce:transition-none",
|
|
13129
|
+
label: "transition-colors-opacity before:transition-width motion-reduce:transition-none"
|
|
13130
|
+
}
|
|
13131
|
+
}
|
|
13132
|
+
},
|
|
13133
|
+
defaultVariants: {
|
|
13134
|
+
color: "primary",
|
|
13135
|
+
size: "md",
|
|
13136
|
+
isDisabled: false,
|
|
13137
|
+
lineThrough: false,
|
|
13138
|
+
disableAnimation: false
|
|
13139
|
+
}
|
|
13140
|
+
});
|
|
13141
|
+
|
|
13142
|
+
// src/components/table/table-head.tsx
|
|
13143
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
13144
|
+
var import_react3 = require("react");
|
|
13145
|
+
var TableHead = ({ columns: columns2, slots, size, color, isSelected, isExpanded, classNames }) => {
|
|
13146
|
+
const getTheadProps = (0, import_react2.useCallback)(
|
|
12944
13147
|
() => ({
|
|
12945
13148
|
className: slots.thead({ class: clsx(classNames == null ? void 0 : classNames.thead) })
|
|
12946
13149
|
}),
|
|
12947
13150
|
[classNames == null ? void 0 : classNames.thead, slots]
|
|
12948
13151
|
);
|
|
12949
|
-
const getTrProps = (0,
|
|
13152
|
+
const getTrProps = (0, import_react2.useCallback)(
|
|
12950
13153
|
() => ({
|
|
12951
13154
|
className: slots.tr({ class: clsx(classNames == null ? void 0 : classNames.tr) })
|
|
12952
13155
|
}),
|
|
12953
13156
|
[classNames == null ? void 0 : classNames.tr, slots]
|
|
12954
13157
|
);
|
|
12955
|
-
const getThProps = (0,
|
|
13158
|
+
const getThProps = (0, import_react2.useCallback)(
|
|
12956
13159
|
({ className }) => ({
|
|
12957
13160
|
className: slots.th({ class: clsx(classNames == null ? void 0 : classNames.th, className) })
|
|
12958
13161
|
}),
|
|
12959
13162
|
[classNames == null ? void 0 : classNames.th, columns2, slots]
|
|
12960
13163
|
);
|
|
12961
|
-
return /* @__PURE__ */ (0,
|
|
12962
|
-
|
|
13164
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("thead", { ...getTheadProps(), children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("tr", { ...getTrProps(), children: [
|
|
13165
|
+
isSelected && /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("th", { className: "w-[40px]", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(checkbox_default, { size, color, classNames: { wrapper: "bg-background" } }) }),
|
|
13166
|
+
isExpanded && /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("th", { className: "w-[40px]" }),
|
|
12963
13167
|
columns2.map((column, index) => {
|
|
12964
|
-
return /* @__PURE__ */ (0,
|
|
13168
|
+
return /* @__PURE__ */ (0, import_react3.createElement)("th", { ...getThProps(column), key: column.field + index + "th" }, column.headerName);
|
|
12965
13169
|
})
|
|
12966
13170
|
] }) });
|
|
12967
13171
|
};
|
|
12968
13172
|
var table_head_default = TableHead;
|
|
12969
13173
|
|
|
12970
13174
|
// src/components/table/table-body.tsx
|
|
12971
|
-
var
|
|
13175
|
+
var import_react4 = __toESM(require("react"));
|
|
12972
13176
|
|
|
12973
13177
|
// src/components/icon/template.tsx
|
|
12974
|
-
var
|
|
13178
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
12975
13179
|
var template = {
|
|
12976
13180
|
// ** Base **
|
|
12977
13181
|
add: ({ className, fill }) => {
|
|
12978
|
-
return /* @__PURE__ */ (0,
|
|
13182
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
12979
13183
|
"svg",
|
|
12980
13184
|
{
|
|
12981
13185
|
width: "24",
|
|
@@ -12984,12 +13188,12 @@ var template = {
|
|
|
12984
13188
|
fill: "none",
|
|
12985
13189
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12986
13190
|
className,
|
|
12987
|
-
children: /* @__PURE__ */ (0,
|
|
13191
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 4.5V19.5M19.5 12H4.5", stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round" })
|
|
12988
13192
|
}
|
|
12989
13193
|
);
|
|
12990
13194
|
},
|
|
12991
13195
|
"add-circle": ({ className, fill }) => {
|
|
12992
|
-
return /* @__PURE__ */ (0,
|
|
13196
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
12993
13197
|
"svg",
|
|
12994
13198
|
{
|
|
12995
13199
|
width: "24",
|
|
@@ -12998,7 +13202,7 @@ var template = {
|
|
|
12998
13202
|
fill: "none",
|
|
12999
13203
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13000
13204
|
className,
|
|
13001
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13205
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13002
13206
|
"path",
|
|
13003
13207
|
{
|
|
13004
13208
|
"fill-rule": "evenodd",
|
|
@@ -13006,7 +13210,7 @@ var template = {
|
|
|
13006
13210
|
d: "M12 2.25C6.615 2.25 2.25 6.615 2.25 12C2.25 17.385 6.615 21.75 12 21.75C17.385 21.75 21.75 17.385 21.75 12C21.75 6.615 17.385 2.25 12 2.25ZM12.75 9C12.75 8.80109 12.671 8.61032 12.5303 8.46967C12.3897 8.32902 12.1989 8.25 12 8.25C11.8011 8.25 11.6103 8.32902 11.4697 8.46967C11.329 8.61032 11.25 8.80109 11.25 9V11.25H9C8.80109 11.25 8.61032 11.329 8.46967 11.4697C8.32902 11.6103 8.25 11.8011 8.25 12C8.25 12.1989 8.32902 12.3897 8.46967 12.5303C8.61032 12.671 8.80109 12.75 9 12.75H11.25V15C11.25 15.1989 11.329 15.3897 11.4697 15.5303C11.6103 15.671 11.8011 15.75 12 15.75C12.1989 15.75 12.3897 15.671 12.5303 15.5303C12.671 15.3897 12.75 15.1989 12.75 15V12.75H15C15.1989 12.75 15.3897 12.671 15.5303 12.5303C15.671 12.3897 15.75 12.1989 15.75 12C15.75 11.8011 15.671 11.6103 15.5303 11.4697C15.3897 11.329 15.1989 11.25 15 11.25H12.75V9Z",
|
|
13007
13211
|
fill: "currentColor"
|
|
13008
13212
|
}
|
|
13009
|
-
) : /* @__PURE__ */ (0,
|
|
13213
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13010
13214
|
"path",
|
|
13011
13215
|
{
|
|
13012
13216
|
d: "M12 9V15M15 12H9M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12Z",
|
|
@@ -13019,7 +13223,7 @@ var template = {
|
|
|
13019
13223
|
);
|
|
13020
13224
|
},
|
|
13021
13225
|
close: ({ className, fill }) => {
|
|
13022
|
-
return /* @__PURE__ */ (0,
|
|
13226
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13023
13227
|
"svg",
|
|
13024
13228
|
{
|
|
13025
13229
|
width: "24",
|
|
@@ -13028,12 +13232,12 @@ var template = {
|
|
|
13028
13232
|
fill: "none",
|
|
13029
13233
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13030
13234
|
className,
|
|
13031
|
-
children: /* @__PURE__ */ (0,
|
|
13235
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 18L18 6M6 6L18 18", stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round" })
|
|
13032
13236
|
}
|
|
13033
13237
|
);
|
|
13034
13238
|
},
|
|
13035
13239
|
"close-circle": ({ className, fill }) => {
|
|
13036
|
-
return /* @__PURE__ */ (0,
|
|
13240
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13037
13241
|
"svg",
|
|
13038
13242
|
{
|
|
13039
13243
|
width: "24",
|
|
@@ -13042,7 +13246,7 @@ var template = {
|
|
|
13042
13246
|
fill: "none",
|
|
13043
13247
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13044
13248
|
className,
|
|
13045
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13249
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13046
13250
|
"path",
|
|
13047
13251
|
{
|
|
13048
13252
|
"fill-rule": "evenodd",
|
|
@@ -13050,7 +13254,7 @@ var template = {
|
|
|
13050
13254
|
d: "M12 2.25C6.615 2.25 2.25 6.615 2.25 12C2.25 17.385 6.615 21.75 12 21.75C17.385 21.75 21.75 17.385 21.75 12C21.75 6.615 17.385 2.25 12 2.25ZM10.28 9.22C10.2113 9.14631 10.1285 9.08721 10.0365 9.04622C9.94454 9.00523 9.84522 8.98318 9.74452 8.98141C9.64382 8.97963 9.54379 8.99816 9.4504 9.03588C9.35701 9.0736 9.27218 9.12974 9.20096 9.20096C9.12974 9.27218 9.0736 9.35701 9.03588 9.4504C8.99816 9.54379 8.97963 9.64382 8.98141 9.74452C8.98318 9.84522 9.00523 9.94454 9.04622 10.0365C9.08721 10.1285 9.14631 10.2113 9.22 10.28L10.94 12L9.22 13.72C9.14631 13.7887 9.08721 13.8715 9.04622 13.9635C9.00523 14.0555 8.98318 14.1548 8.98141 14.2555C8.97963 14.3562 8.99816 14.4562 9.03588 14.5496C9.0736 14.643 9.12974 14.7278 9.20096 14.799C9.27218 14.8703 9.35701 14.9264 9.4504 14.9641C9.54379 15.0018 9.64382 15.0204 9.74452 15.0186C9.84522 15.0168 9.94454 14.9948 10.0365 14.9538C10.1285 14.9128 10.2113 14.8537 10.28 14.78L12 13.06L13.72 14.78C13.7887 14.8537 13.8715 14.9128 13.9635 14.9538C14.0555 14.9948 14.1548 15.0168 14.2555 15.0186C14.3562 15.0204 14.4562 15.0018 14.5496 14.9641C14.643 14.9264 14.7278 14.8703 14.799 14.799C14.8703 14.7278 14.9264 14.643 14.9641 14.5496C15.0018 14.4562 15.0204 14.3562 15.0186 14.2555C15.0168 14.1548 14.9948 14.0555 14.9538 13.9635C14.9128 13.8715 14.8537 13.7887 14.78 13.72L13.06 12L14.78 10.28C14.8537 10.2113 14.9128 10.1285 14.9538 10.0365C14.9948 9.94454 15.0168 9.84522 15.0186 9.74452C15.0204 9.64382 15.0018 9.54379 14.9641 9.4504C14.9264 9.35701 14.8703 9.27218 14.799 9.20096C14.7278 9.12974 14.643 9.0736 14.5496 9.03588C14.4562 8.99816 14.3562 8.97963 14.2555 8.98141C14.1548 8.98318 14.0555 9.00523 13.9635 9.04622C13.8715 9.08721 13.7887 9.14631 13.72 9.22L12 10.94L10.28 9.22Z",
|
|
13051
13255
|
fill: "currentColor"
|
|
13052
13256
|
}
|
|
13053
|
-
) : /* @__PURE__ */ (0,
|
|
13257
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13054
13258
|
"path",
|
|
13055
13259
|
{
|
|
13056
13260
|
d: "M9.75 9.75L14.25 14.25M14.25 9.75L9.75 14.25M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12Z",
|
|
@@ -13063,7 +13267,7 @@ var template = {
|
|
|
13063
13267
|
);
|
|
13064
13268
|
},
|
|
13065
13269
|
"dot-circle": ({ className, fill }) => {
|
|
13066
|
-
return /* @__PURE__ */ (0,
|
|
13270
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13067
13271
|
"svg",
|
|
13068
13272
|
{
|
|
13069
13273
|
width: "24",
|
|
@@ -13072,7 +13276,7 @@ var template = {
|
|
|
13072
13276
|
fill: "none",
|
|
13073
13277
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13074
13278
|
className,
|
|
13075
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13279
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13076
13280
|
"path",
|
|
13077
13281
|
{
|
|
13078
13282
|
"fill-rule": "evenodd",
|
|
@@ -13080,7 +13284,7 @@ var template = {
|
|
|
13080
13284
|
d: "M12 2.25C6.615 2.25 2.25 6.615 2.25 12C2.25 17.385 6.615 21.75 12 21.75C17.385 21.75 21.75 17.385 21.75 12C21.75 6.615 17.385 2.25 12 2.25ZM12 10.875C11.7016 10.875 11.4155 10.9935 11.2045 11.2045C10.9935 11.4155 10.875 11.7016 10.875 12C10.875 12.2984 10.9935 12.5845 11.2045 12.7955C11.4155 13.0065 11.7016 13.125 12 13.125C12.2984 13.125 12.5845 13.0065 12.7955 12.7955C13.0065 12.5845 13.125 12.2984 13.125 12C13.125 11.7016 13.0065 11.4155 12.7955 11.2045C12.5845 10.9935 12.2984 10.875 12 10.875ZM15.375 12C15.375 11.7016 15.4935 11.4155 15.7045 11.2045C15.9155 10.9935 16.2016 10.875 16.5 10.875C16.7984 10.875 17.0845 10.9935 17.2955 11.2045C17.5065 11.4155 17.625 11.7016 17.625 12C17.625 12.2984 17.5065 12.5845 17.2955 12.7955C17.0845 13.0065 16.7984 13.125 16.5 13.125C16.2016 13.125 15.9155 13.0065 15.7045 12.7955C15.4935 12.5845 15.375 12.2984 15.375 12ZM7.5 10.875C7.20163 10.875 6.91548 10.9935 6.7045 11.2045C6.49353 11.4155 6.375 11.7016 6.375 12C6.375 12.2984 6.49353 12.5845 6.7045 12.7955C6.91548 13.0065 7.20163 13.125 7.5 13.125C7.79837 13.125 8.08452 13.0065 8.2955 12.7955C8.50647 12.5845 8.625 12.2984 8.625 12C8.625 11.7016 8.50647 11.4155 8.2955 11.2045C8.08452 10.9935 7.79837 10.875 7.5 10.875Z",
|
|
13081
13285
|
fill: "currentColor"
|
|
13082
13286
|
}
|
|
13083
|
-
) : /* @__PURE__ */ (0,
|
|
13287
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13084
13288
|
"path",
|
|
13085
13289
|
{
|
|
13086
13290
|
d: "M8.625 12C8.625 12.0995 8.58549 12.1948 8.51517 12.2652C8.44484 12.3355 8.34946 12.375 8.25 12.375C8.15054 12.375 8.05516 12.3355 7.98484 12.2652C7.91451 12.1948 7.875 12.0995 7.875 12C7.875 11.9005 7.91451 11.8052 7.98484 11.7348C8.05516 11.6645 8.15054 11.625 8.25 11.625C8.34946 11.625 8.44484 11.6645 8.51517 11.7348C8.58549 11.8052 8.625 11.9005 8.625 12ZM8.625 12H8.25M12.375 12C12.375 12.0995 12.3355 12.1948 12.2652 12.2652C12.1948 12.3355 12.0995 12.375 12 12.375C11.9005 12.375 11.8052 12.3355 11.7348 12.2652C11.6645 12.1948 11.625 12.0995 11.625 12C11.625 11.9005 11.6645 11.8052 11.7348 11.7348C11.8052 11.6645 11.9005 11.625 12 11.625C12.0995 11.625 12.1948 11.6645 12.2652 11.7348C12.3355 11.8052 12.375 11.9005 12.375 12ZM12.375 12H12M16.125 12C16.125 12.0995 16.0855 12.1948 16.0152 12.2652C15.9448 12.3355 15.8495 12.375 15.75 12.375C15.6505 12.375 15.5552 12.3355 15.4848 12.2652C15.4145 12.1948 15.375 12.0995 15.375 12C15.375 11.9005 15.4145 11.8052 15.4848 11.7348C15.5552 11.6645 15.6505 11.625 15.75 11.625C15.8495 11.625 15.9448 11.6645 16.0152 11.7348C16.0855 11.8052 16.125 11.9005 16.125 12ZM16.125 12H15.75M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12Z",
|
|
@@ -13093,7 +13297,7 @@ var template = {
|
|
|
13093
13297
|
);
|
|
13094
13298
|
},
|
|
13095
13299
|
"dot-horizontal": ({ className, fill }) => {
|
|
13096
|
-
return /* @__PURE__ */ (0,
|
|
13300
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13097
13301
|
"svg",
|
|
13098
13302
|
{
|
|
13099
13303
|
width: "24",
|
|
@@ -13102,7 +13306,7 @@ var template = {
|
|
|
13102
13306
|
fill: "none",
|
|
13103
13307
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13104
13308
|
className,
|
|
13105
|
-
children: /* @__PURE__ */ (0,
|
|
13309
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13106
13310
|
"path",
|
|
13107
13311
|
{
|
|
13108
13312
|
d: "M6.75 12C6.75 12.1989 6.67098 12.3897 6.53033 12.5303C6.38968 12.671 6.19891 12.75 6 12.75C5.80109 12.75 5.61032 12.671 5.46967 12.5303C5.32902 12.3897 5.25 12.1989 5.25 12C5.25 11.8011 5.32902 11.6103 5.46967 11.4697C5.61032 11.329 5.80109 11.25 6 11.25C6.19891 11.25 6.38968 11.329 6.53033 11.4697C6.67098 11.6103 6.75 11.8011 6.75 12ZM12.75 12C12.75 12.1989 12.671 12.3897 12.5303 12.5303C12.3897 12.671 12.1989 12.75 12 12.75C11.8011 12.75 11.6103 12.671 11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12C11.25 11.8011 11.329 11.6103 11.4697 11.4697C11.6103 11.329 11.8011 11.25 12 11.25C12.1989 11.25 12.3897 11.329 12.5303 11.4697C12.671 11.6103 12.75 11.8011 12.75 12ZM18.75 12C18.75 12.1989 18.671 12.3897 18.5303 12.5303C18.3897 12.671 18.1989 12.75 18 12.75C17.8011 12.75 17.6103 12.671 17.4697 12.5303C17.329 12.3897 17.25 12.1989 17.25 12C17.25 11.8011 17.329 11.6103 17.4697 11.4697C17.6103 11.329 17.8011 11.25 18 11.25C18.1989 11.25 18.3897 11.329 18.5303 11.4697C18.671 11.6103 18.75 11.8011 18.75 12Z",
|
|
@@ -13115,7 +13319,7 @@ var template = {
|
|
|
13115
13319
|
);
|
|
13116
13320
|
},
|
|
13117
13321
|
"dot-vertical": ({ className, fill }) => {
|
|
13118
|
-
return /* @__PURE__ */ (0,
|
|
13322
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13119
13323
|
"svg",
|
|
13120
13324
|
{
|
|
13121
13325
|
width: "24",
|
|
@@ -13124,7 +13328,7 @@ var template = {
|
|
|
13124
13328
|
fill: "none",
|
|
13125
13329
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13126
13330
|
className,
|
|
13127
|
-
children: /* @__PURE__ */ (0,
|
|
13331
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13128
13332
|
"path",
|
|
13129
13333
|
{
|
|
13130
13334
|
d: "M12 6.75C11.8011 6.75 11.6103 6.67098 11.4697 6.53033C11.329 6.38968 11.25 6.19891 11.25 6C11.25 5.80109 11.329 5.61032 11.4697 5.46967C11.6103 5.32902 11.8011 5.25 12 5.25C12.1989 5.25 12.3897 5.32902 12.5303 5.46967C12.671 5.61032 12.75 5.80109 12.75 6C12.75 6.19891 12.671 6.38968 12.5303 6.53033C12.3897 6.67098 12.1989 6.75 12 6.75ZM12 12.75C11.8011 12.75 11.6103 12.671 11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12C11.25 11.8011 11.329 11.6103 11.4697 11.4697C11.6103 11.329 11.8011 11.25 12 11.25C12.1989 11.25 12.3897 11.329 12.5303 11.4697C12.671 11.6103 12.75 11.8011 12.75 12C12.75 12.1989 12.671 12.3897 12.5303 12.5303C12.3897 12.671 12.1989 12.75 12 12.75ZM12 18.75C11.8011 18.75 11.6103 18.671 11.4697 18.5303C11.329 18.3897 11.25 18.1989 11.25 18C11.25 17.8011 11.329 17.6103 11.4697 17.4697C11.6103 17.329 11.8011 17.25 12 17.25C12.1989 17.25 12.3897 17.329 12.5303 17.4697C12.671 17.6103 12.75 17.8011 12.75 18C12.75 18.1989 12.671 18.3897 12.5303 18.5303C12.3897 18.671 12.1989 18.75 12 18.75Z",
|
|
@@ -13138,7 +13342,7 @@ var template = {
|
|
|
13138
13342
|
},
|
|
13139
13343
|
// ** Common **
|
|
13140
13344
|
home: ({ className }) => {
|
|
13141
|
-
return /* @__PURE__ */ (0,
|
|
13345
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13142
13346
|
"svg",
|
|
13143
13347
|
{
|
|
13144
13348
|
width: "15",
|
|
@@ -13147,7 +13351,7 @@ var template = {
|
|
|
13147
13351
|
fill: "none",
|
|
13148
13352
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13149
13353
|
className,
|
|
13150
|
-
children: /* @__PURE__ */ (0,
|
|
13354
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13151
13355
|
"path",
|
|
13152
13356
|
{
|
|
13153
13357
|
d: "M0.59375 7.5L6.93617 1.15688C7.24783 0.845921 7.75217 0.845921 8.06312 1.15688L14.4062 7.5M2.1875 5.90625V13.0781C2.1875 13.518 2.5445 13.875 2.98437 13.875H5.90625V10.4219C5.90625 9.982 6.26325 9.625 6.70312 9.625H8.29687C8.73675 9.625 9.09375 9.982 9.09375 10.4219V13.875H12.0156C12.4555 13.875 12.8125 13.518 12.8125 13.0781V5.90625M4.84375 13.875H10.6875",
|
|
@@ -13160,7 +13364,7 @@ var template = {
|
|
|
13160
13364
|
);
|
|
13161
13365
|
},
|
|
13162
13366
|
email: ({ className }) => {
|
|
13163
|
-
return /* @__PURE__ */ (0,
|
|
13367
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13164
13368
|
"svg",
|
|
13165
13369
|
{
|
|
13166
13370
|
width: "17",
|
|
@@ -13169,7 +13373,7 @@ var template = {
|
|
|
13169
13373
|
fill: "none",
|
|
13170
13374
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13171
13375
|
className,
|
|
13172
|
-
children: /* @__PURE__ */ (0,
|
|
13376
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13173
13377
|
"path",
|
|
13174
13378
|
{
|
|
13175
13379
|
d: "M15.4062 4.78125V12.2187C15.4062 12.6414 15.2383 13.0468 14.9395 13.3457C14.6406 13.6446 14.2352 13.8125 13.8125 13.8125H3.1875C2.76481 13.8125 2.35943 13.6446 2.06055 13.3457C1.76166 13.0468 1.59375 12.6414 1.59375 12.2187V4.78125M15.4062 4.78125C15.4062 4.35856 15.2383 3.95318 14.9395 3.6543C14.6406 3.35541 14.2352 3.1875 13.8125 3.1875H3.1875C2.76481 3.1875 2.35943 3.35541 2.06055 3.6543C1.76166 3.95318 1.59375 4.35856 1.59375 4.78125M15.4062 4.78125V4.95337C15.4063 5.22548 15.3366 5.49306 15.204 5.73063C15.0713 5.96819 14.88 6.16784 14.6483 6.31054L9.33583 9.5795C9.08452 9.73429 8.79516 9.81626 8.5 9.81626C8.20484 9.81626 7.91548 9.73429 7.66417 9.5795L2.35167 6.31125C2.11999 6.16855 1.9287 5.9689 1.79603 5.73133C1.66336 5.49377 1.59372 5.22619 1.59375 4.95408V4.78125",
|
|
@@ -13182,7 +13386,7 @@ var template = {
|
|
|
13182
13386
|
);
|
|
13183
13387
|
},
|
|
13184
13388
|
contact: ({ className }) => {
|
|
13185
|
-
return /* @__PURE__ */ (0,
|
|
13389
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13186
13390
|
"svg",
|
|
13187
13391
|
{
|
|
13188
13392
|
width: "22",
|
|
@@ -13191,7 +13395,7 @@ var template = {
|
|
|
13191
13395
|
fill: "none",
|
|
13192
13396
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13193
13397
|
className,
|
|
13194
|
-
children: /* @__PURE__ */ (0,
|
|
13398
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13195
13399
|
"path",
|
|
13196
13400
|
{
|
|
13197
13401
|
d: "M18.5625 7.80175C19.3728 8.06208 19.9375 8.83575 19.9375 9.724V13.6528C19.9375 14.6942 19.1611 15.5778 18.1225 15.6631C17.8108 15.6878 17.4992 15.7108 17.1875 15.7291V18.5625L14.4375 15.8125C13.1963 15.8125 11.968 15.7621 10.7525 15.6631C10.4879 15.6417 10.2305 15.5662 9.99625 15.4413M18.5625 7.80175C18.4209 7.75616 18.2745 7.72694 18.1262 7.71467C15.6713 7.51088 13.2037 7.51088 10.7488 7.71467C9.71208 7.80084 8.9375 8.68358 8.9375 9.724V13.6528C8.9375 14.4201 9.35917 15.1012 9.99625 15.4413M18.5625 7.80175V6.08392C18.5625 4.598 17.5065 3.31008 16.0325 3.1185C14.1358 2.87264 12.2251 2.74955 10.3125 2.75C8.37375 2.75 6.46433 2.87558 4.5925 3.1185C3.1185 3.31008 2.0625 4.598 2.0625 6.08392V11.7911C2.0625 13.277 3.1185 14.5649 4.5925 14.7565C5.12142 14.8253 5.65308 14.8848 6.1875 14.9343V19.25L9.99625 15.4413",
|
|
@@ -13204,7 +13408,7 @@ var template = {
|
|
|
13204
13408
|
);
|
|
13205
13409
|
},
|
|
13206
13410
|
tag: ({ className }) => {
|
|
13207
|
-
return /* @__PURE__ */ (0,
|
|
13411
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13208
13412
|
"svg",
|
|
13209
13413
|
{
|
|
13210
13414
|
width: "22",
|
|
@@ -13213,7 +13417,7 @@ var template = {
|
|
|
13213
13417
|
fill: "none",
|
|
13214
13418
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13215
13419
|
className,
|
|
13216
|
-
children: /* @__PURE__ */ (0,
|
|
13420
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13217
13421
|
"path",
|
|
13218
13422
|
{
|
|
13219
13423
|
fillRule: "evenodd",
|
|
@@ -13226,7 +13430,7 @@ var template = {
|
|
|
13226
13430
|
);
|
|
13227
13431
|
},
|
|
13228
13432
|
calendar: ({ className, fill }) => {
|
|
13229
|
-
return /* @__PURE__ */ (0,
|
|
13433
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13230
13434
|
"svg",
|
|
13231
13435
|
{
|
|
13232
13436
|
width: "24",
|
|
@@ -13235,15 +13439,15 @@ var template = {
|
|
|
13235
13439
|
fill: "none",
|
|
13236
13440
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13237
13441
|
className,
|
|
13238
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13239
|
-
/* @__PURE__ */ (0,
|
|
13442
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
13443
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13240
13444
|
"path",
|
|
13241
13445
|
{
|
|
13242
13446
|
d: "M12 11.993C11.8011 11.993 11.6103 12.0721 11.4697 12.2127C11.329 12.3534 11.25 12.5441 11.25 12.743V12.749C11.25 13.163 11.586 13.499 12 13.499H12.006C12.2049 13.499 12.3957 13.42 12.5363 13.2794C12.677 13.1387 12.756 12.948 12.756 12.749V12.743C12.756 12.5441 12.677 12.3534 12.5363 12.2127C12.3957 12.0721 12.2049 11.993 12.006 11.993H12ZM12 16.494C11.8011 16.494 11.6103 16.5731 11.4697 16.7137C11.329 16.8544 11.25 17.0451 11.25 17.244V17.249C11.25 17.663 11.585 17.999 12 17.999H12.005C12.2039 17.999 12.3947 17.92 12.5353 17.7794C12.676 17.6387 12.755 17.448 12.755 17.249V17.244C12.755 17.0451 12.676 16.8544 12.5353 16.7137C12.3947 16.5731 12.2039 16.494 12.005 16.494H12ZM8.99899 17.244C8.99899 17.0451 9.078 16.8544 9.21866 16.7137C9.35931 16.5731 9.55007 16.494 9.74899 16.494H9.75499C9.9539 16.494 10.1447 16.5731 10.2853 16.7137C10.426 16.8544 10.505 17.0451 10.505 17.244V17.25C10.505 17.449 10.426 17.6397 10.2853 17.7804C10.1447 17.921 9.9539 18 9.75499 18H9.74899C9.55007 18 9.35931 17.921 9.21866 17.7804C9.078 17.6397 8.99899 17.449 8.99899 17.25V17.244ZM7.49899 16.494C7.30007 16.494 7.10931 16.5731 6.96866 16.7137C6.828 16.8544 6.74899 17.0451 6.74899 17.244V17.249C6.74899 17.663 7.08499 17.999 7.49899 17.999H7.50399C7.7029 17.999 7.89366 17.92 8.03432 17.7794C8.17497 17.6387 8.25399 17.448 8.25399 17.249V17.244C8.25399 17.0451 8.17497 16.8544 8.03432 16.7137C7.89366 16.5731 7.7029 16.494 7.50399 16.494H7.49899ZM13.499 14.997C13.499 14.7981 13.578 14.6074 13.7187 14.4667C13.8593 14.3261 14.0501 14.247 14.249 14.247H14.255C14.4539 14.247 14.6447 14.3261 14.7853 14.4667C14.926 14.6074 15.005 14.7981 15.005 14.997V15.002C15.005 15.201 14.926 15.3917 14.7853 15.5324C14.6447 15.673 14.4539 15.752 14.255 15.752H14.249C14.0501 15.752 13.8593 15.673 13.7187 15.5324C13.578 15.3917 13.499 15.201 13.499 15.002V14.997ZM14.25 16.494C14.0511 16.494 13.8603 16.5731 13.7197 16.7137C13.579 16.8544 13.5 17.0451 13.5 17.244V17.25C13.5 17.664 13.835 18 14.25 18H14.255C14.4539 18 14.6447 17.921 14.7853 17.7804C14.926 17.6397 15.005 17.449 15.005 17.25V17.244C15.005 17.0451 14.926 16.8544 14.7853 16.7137C14.6447 16.5731 14.4539 16.494 14.255 16.494H14.25ZM15.75 14.995C15.75 14.7961 15.829 14.6054 15.9697 14.4647C16.1103 14.3241 16.3011 14.245 16.5 14.245H16.505C16.7039 14.245 16.8947 14.3241 17.0353 14.4647C17.176 14.6054 17.255 14.7961 17.255 14.995V15.001C17.255 15.2 17.176 15.3907 17.0353 15.5314C16.8947 15.672 16.7039 15.751 16.505 15.751H16.5C16.3011 15.751 16.1103 15.672 15.9697 15.5314C15.829 15.3907 15.75 15.2 15.75 15.001V14.995ZM13.498 12.743C13.498 12.5441 13.577 12.3534 13.7177 12.2127C13.8583 12.0721 14.0491 11.993 14.248 11.993H16.498C16.6969 11.993 16.8877 12.0721 17.0283 12.2127C17.169 12.3534 17.248 12.5441 17.248 12.743C17.248 12.942 17.169 13.1327 17.0283 13.2734C16.8877 13.414 16.6969 13.493 16.498 13.493H14.248C14.0491 13.493 13.8583 13.414 13.7177 13.2734C13.577 13.1327 13.498 12.942 13.498 12.743ZM6.74799 14.993C6.74799 14.7941 6.827 14.6034 6.96766 14.4627C7.10831 14.3221 7.29907 14.243 7.49799 14.243H11.998C12.1969 14.243 12.3877 14.3221 12.5283 14.4627C12.669 14.6034 12.748 14.7941 12.748 14.993C12.748 15.192 12.669 15.3827 12.5283 15.5234C12.3877 15.664 12.1969 15.743 11.998 15.743H7.49799C7.29907 15.743 7.10831 15.664 6.96766 15.5234C6.827 15.3827 6.74799 15.192 6.74799 14.993Z",
|
|
13243
13447
|
fill: "currentColor"
|
|
13244
13448
|
}
|
|
13245
13449
|
),
|
|
13246
|
-
/* @__PURE__ */ (0,
|
|
13450
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13247
13451
|
"path",
|
|
13248
13452
|
{
|
|
13249
13453
|
"fill-rule": "evenodd",
|
|
@@ -13252,7 +13456,7 @@ var template = {
|
|
|
13252
13456
|
fill: "currentColor"
|
|
13253
13457
|
}
|
|
13254
13458
|
)
|
|
13255
|
-
] }) : /* @__PURE__ */ (0,
|
|
13459
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13256
13460
|
"path",
|
|
13257
13461
|
{
|
|
13258
13462
|
d: "M6.74999 2.99402V5.24402M17.25 2.99402V5.24402M2.99799 18.744V7.49102C2.99799 6.89428 3.23504 6.32199 3.657 5.90003C4.07895 5.47807 4.65125 5.24102 5.24799 5.24102H18.748C19.3447 5.24102 19.917 5.47807 20.339 5.90003C20.7609 6.32199 20.998 6.89428 20.998 7.49102V18.742M20.998 18.742C20.998 19.3388 20.7609 19.9111 20.339 20.333C19.917 20.755 19.3447 20.992 18.748 20.992H5.24799C4.65125 20.992 4.07895 20.755 3.657 20.333C3.23504 19.9111 2.99799 19.3388 2.99799 18.742V11.242C2.99799 10.6453 3.23504 10.073 3.657 9.65103C4.07895 9.22907 4.65125 8.99202 5.24799 8.99202H18.748C19.3447 8.99202 19.917 9.22907 20.339 9.65103C20.7609 10.073 20.998 10.6453 20.998 11.242V18.742ZM14.248 12.742H16.498M7.49799 14.992H11.998M12 12.742H12.005V12.748H12V12.742ZM11.999 17.242H12.005V17.248H11.999V17.242ZM9.74899 17.243H9.75399V17.249H9.74999V17.243H9.74899ZM7.49899 17.243H7.50399V17.248H7.49799V17.243H7.49899ZM14.249 14.996H14.254V15.001H14.249V14.996ZM14.249 17.243H14.255V17.249H14.249V17.243ZM16.499 14.995H16.505V15H16.5L16.499 14.995Z",
|
|
@@ -13265,7 +13469,7 @@ var template = {
|
|
|
13265
13469
|
);
|
|
13266
13470
|
},
|
|
13267
13471
|
clock: ({ className, fill }) => {
|
|
13268
|
-
return /* @__PURE__ */ (0,
|
|
13472
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13269
13473
|
"svg",
|
|
13270
13474
|
{
|
|
13271
13475
|
width: "24",
|
|
@@ -13274,7 +13478,7 @@ var template = {
|
|
|
13274
13478
|
fill: "none",
|
|
13275
13479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13276
13480
|
className,
|
|
13277
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13481
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13278
13482
|
"path",
|
|
13279
13483
|
{
|
|
13280
13484
|
"fill-rule": "evenodd",
|
|
@@ -13282,7 +13486,7 @@ var template = {
|
|
|
13282
13486
|
d: "M12 2.25C6.615 2.25 2.25 6.615 2.25 12C2.25 17.385 6.615 21.75 12 21.75C17.385 21.75 21.75 17.385 21.75 12C21.75 6.615 17.385 2.25 12 2.25ZM12.75 6C12.75 5.80109 12.671 5.61032 12.5303 5.46967C12.3897 5.32902 12.1989 5.25 12 5.25C11.8011 5.25 11.6103 5.32902 11.4697 5.46967C11.329 5.61032 11.25 5.80109 11.25 6V12C11.25 12.414 11.586 12.75 12 12.75H16.5C16.6989 12.75 16.8897 12.671 17.0303 12.5303C17.171 12.3897 17.25 12.1989 17.25 12C17.25 11.8011 17.171 11.6103 17.0303 11.4697C16.8897 11.329 16.6989 11.25 16.5 11.25H12.75V6Z",
|
|
13283
13487
|
fill: "currentColor"
|
|
13284
13488
|
}
|
|
13285
|
-
) : /* @__PURE__ */ (0,
|
|
13489
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13286
13490
|
"path",
|
|
13287
13491
|
{
|
|
13288
13492
|
d: "M12 6V12H16.5M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12Z",
|
|
@@ -13295,7 +13499,7 @@ var template = {
|
|
|
13295
13499
|
);
|
|
13296
13500
|
},
|
|
13297
13501
|
pencil: ({ className, fill }) => {
|
|
13298
|
-
return /* @__PURE__ */ (0,
|
|
13502
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13299
13503
|
"svg",
|
|
13300
13504
|
{
|
|
13301
13505
|
width: "24",
|
|
@@ -13304,7 +13508,7 @@ var template = {
|
|
|
13304
13508
|
fill: "none",
|
|
13305
13509
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13306
13510
|
className,
|
|
13307
|
-
children: /* @__PURE__ */ (0,
|
|
13511
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13308
13512
|
"path",
|
|
13309
13513
|
{
|
|
13310
13514
|
d: "M16.862 4.487L18.549 2.799C18.9007 2.44733 19.3777 2.24976 19.875 2.24976C20.3723 2.24976 20.8493 2.44733 21.201 2.799C21.5527 3.15068 21.7502 3.62766 21.7502 4.125C21.7502 4.62235 21.5527 5.09933 21.201 5.451L6.832 19.82C6.30332 20.3484 5.65137 20.7367 4.935 20.95L2.25 21.75L3.05 19.065C3.26328 18.3486 3.65163 17.6967 4.18 17.168L16.863 4.487H16.862ZM16.862 4.487L19.5 7.125",
|
|
@@ -13317,7 +13521,7 @@ var template = {
|
|
|
13317
13521
|
);
|
|
13318
13522
|
},
|
|
13319
13523
|
"pencil-square": ({ className, fill }) => {
|
|
13320
|
-
return /* @__PURE__ */ (0,
|
|
13524
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13321
13525
|
"svg",
|
|
13322
13526
|
{
|
|
13323
13527
|
width: "24",
|
|
@@ -13326,7 +13530,7 @@ var template = {
|
|
|
13326
13530
|
fill: "none",
|
|
13327
13531
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13328
13532
|
className,
|
|
13329
|
-
children: /* @__PURE__ */ (0,
|
|
13533
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13330
13534
|
"path",
|
|
13331
13535
|
{
|
|
13332
13536
|
d: "M16.862 4.487L18.549 2.799C18.9007 2.44733 19.3777 2.24976 19.875 2.24976C20.3723 2.24976 20.8493 2.44733 21.201 2.799C21.5527 3.15068 21.7502 3.62766 21.7502 4.125C21.7502 4.62235 21.5527 5.09933 21.201 5.451L10.582 16.07C10.0533 16.5984 9.40137 16.9867 8.685 17.2L6 18L6.8 15.315C7.01328 14.5986 7.40163 13.9467 7.93 13.418L16.862 4.487ZM16.862 4.487L19.5 7.125M18 14V18.75C18 19.3467 17.7629 19.919 17.341 20.341C16.919 20.763 16.3467 21 15.75 21H5.25C4.65326 21 4.08097 20.763 3.65901 20.341C3.23705 19.919 3 19.3467 3 18.75V8.25C3 7.65327 3.23705 7.08097 3.65901 6.65901C4.08097 6.23706 4.65326 6 5.25 6H10",
|
|
@@ -13339,7 +13543,7 @@ var template = {
|
|
|
13339
13543
|
);
|
|
13340
13544
|
},
|
|
13341
13545
|
chart: ({ className, fill }) => {
|
|
13342
|
-
return /* @__PURE__ */ (0,
|
|
13546
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13343
13547
|
"svg",
|
|
13344
13548
|
{
|
|
13345
13549
|
width: "24",
|
|
@@ -13348,13 +13552,13 @@ var template = {
|
|
|
13348
13552
|
fill: "none",
|
|
13349
13553
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13350
13554
|
className,
|
|
13351
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13555
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13352
13556
|
"path",
|
|
13353
13557
|
{
|
|
13354
13558
|
d: "M18.375 2.25C17.34 2.25 16.5 3.09 16.5 4.125V19.875C16.5 20.91 17.34 21.75 18.375 21.75H19.125C20.16 21.75 21 20.91 21 19.875V4.125C21 3.089 20.16 2.25 19.125 2.25H18.375ZM9.75 8.625C9.75 7.589 10.59 6.75 11.625 6.75H12.375C13.411 6.75 14.25 7.59 14.25 8.625V19.875C14.25 20.91 13.41 21.75 12.375 21.75H11.625C11.1277 21.75 10.6508 21.5525 10.2992 21.2008C9.94754 20.8492 9.75 20.3723 9.75 19.875V8.625ZM3 13.125C3 12.089 3.84 11.25 4.875 11.25H5.625C6.661 11.25 7.5 12.09 7.5 13.125V19.875C7.5 20.91 6.66 21.75 5.625 21.75H4.875C4.37772 21.75 3.90081 21.5525 3.54917 21.2008C3.19754 20.8492 3 20.3723 3 19.875V13.125Z",
|
|
13355
13559
|
fill: "currentColor"
|
|
13356
13560
|
}
|
|
13357
|
-
) : /* @__PURE__ */ (0,
|
|
13561
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13358
13562
|
"path",
|
|
13359
13563
|
{
|
|
13360
13564
|
d: "M3 13.125C3 12.504 3.504 12 4.125 12H6.375C6.996 12 7.5 12.504 7.5 13.125V19.875C7.5 20.496 6.996 21 6.375 21H4.125C3.82663 21 3.54048 20.8815 3.3295 20.6705C3.11853 20.4595 3 20.1734 3 19.875V13.125ZM9.75 8.625C9.75 8.004 10.254 7.5 10.875 7.5H13.125C13.746 7.5 14.25 8.004 14.25 8.625V19.875C14.25 20.496 13.746 21 13.125 21H10.875C10.5766 21 10.2905 20.8815 10.0795 20.6705C9.86853 20.4595 9.75 20.1734 9.75 19.875V8.625ZM16.5 4.125C16.5 3.504 17.004 3 17.625 3H19.875C20.496 3 21 3.504 21 4.125V19.875C21 20.496 20.496 21 19.875 21H17.625C17.3266 21 17.0405 20.8815 16.8295 20.6705C16.6185 20.4595 16.5 20.1734 16.5 19.875V4.125Z",
|
|
@@ -13367,7 +13571,7 @@ var template = {
|
|
|
13367
13571
|
);
|
|
13368
13572
|
},
|
|
13369
13573
|
"chart-square": ({ className, fill }) => {
|
|
13370
|
-
return /* @__PURE__ */ (0,
|
|
13574
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13371
13575
|
"svg",
|
|
13372
13576
|
{
|
|
13373
13577
|
width: "24",
|
|
@@ -13376,7 +13580,7 @@ var template = {
|
|
|
13376
13580
|
fill: "none",
|
|
13377
13581
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13378
13582
|
className,
|
|
13379
|
-
children: /* @__PURE__ */ (0,
|
|
13583
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13380
13584
|
"path",
|
|
13381
13585
|
{
|
|
13382
13586
|
d: "M7.5 14.25V16.5M10.5 7.5V16.5M13.5 12.5V16.5M16.5 9V16.5M6 20.25H18C18.5967 20.25 19.169 20.0129 19.591 19.591C20.0129 19.169 20.25 18.5967 20.25 18V6C20.25 5.40326 20.0129 4.83097 19.591 4.40901C19.169 3.98705 18.5967 3.75 18 3.75H6C5.40326 3.75 4.83097 3.98705 4.40901 4.40901C3.98705 4.83097 3.75 5.40326 3.75 6V18C3.75 18.5967 3.98705 19.169 4.40901 19.591C4.83097 20.0129 5.40326 20.25 6 20.25Z",
|
|
@@ -13389,7 +13593,7 @@ var template = {
|
|
|
13389
13593
|
);
|
|
13390
13594
|
},
|
|
13391
13595
|
camera: ({ className, fill }) => {
|
|
13392
|
-
return /* @__PURE__ */ (0,
|
|
13596
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13393
13597
|
"svg",
|
|
13394
13598
|
{
|
|
13395
13599
|
width: "24",
|
|
@@ -13398,15 +13602,15 @@ var template = {
|
|
|
13398
13602
|
fill: "none",
|
|
13399
13603
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13400
13604
|
className,
|
|
13401
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13402
|
-
/* @__PURE__ */ (0,
|
|
13605
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
13606
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13403
13607
|
"path",
|
|
13404
13608
|
{
|
|
13405
13609
|
d: "M12 9C11.0054 9 10.0516 9.39509 9.34835 10.0983C8.64509 10.8016 8.25 11.7554 8.25 12.75C8.25 13.7446 8.64509 14.6984 9.34835 15.4017C10.0516 16.1049 11.0054 16.5 12 16.5C12.9946 16.5 13.9484 16.1049 14.6517 15.4017C15.3549 14.6984 15.75 13.7446 15.75 12.75C15.75 11.7554 15.3549 10.8016 14.6517 10.0983C13.9484 9.39509 12.9946 9 12 9Z",
|
|
13406
13610
|
fill: "currentColor"
|
|
13407
13611
|
}
|
|
13408
13612
|
),
|
|
13409
|
-
/* @__PURE__ */ (0,
|
|
13613
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13410
13614
|
"path",
|
|
13411
13615
|
{
|
|
13412
13616
|
"fill-rule": "evenodd",
|
|
@@ -13415,8 +13619,8 @@ var template = {
|
|
|
13415
13619
|
fill: "currentColor"
|
|
13416
13620
|
}
|
|
13417
13621
|
)
|
|
13418
|
-
] }) : /* @__PURE__ */ (0,
|
|
13419
|
-
/* @__PURE__ */ (0,
|
|
13622
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
13623
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13420
13624
|
"path",
|
|
13421
13625
|
{
|
|
13422
13626
|
d: "M6.827 6.17496C6.64699 6.45987 6.40682 6.70194 6.12334 6.88419C5.83985 7.06645 5.51993 7.18446 5.186 7.22996C4.806 7.28396 4.429 7.34196 4.052 7.40496C2.999 7.57996 2.25 8.50696 2.25 9.57396V18C2.25 18.5967 2.48705 19.169 2.90901 19.591C3.33097 20.0129 3.90326 20.25 4.5 20.25H19.5C20.0967 20.25 20.669 20.0129 21.091 19.591C21.5129 19.169 21.75 18.5967 21.75 18V9.57396C21.75 8.50696 21 7.57996 19.948 7.40496C19.5707 7.3421 19.1927 7.28376 18.814 7.22996C18.4802 7.18432 18.1605 7.06624 17.8772 6.884C17.5939 6.70175 17.3539 6.45975 17.174 6.17496L16.352 4.85896C16.1674 4.55906 15.9132 4.30805 15.611 4.1272C15.3089 3.94634 14.9675 3.84095 14.616 3.81996C12.8733 3.72635 11.1267 3.72635 9.384 3.81996C9.03245 3.84095 8.69114 3.94634 8.38896 4.1272C8.08678 4.30805 7.83262 4.55906 7.648 4.85896L6.827 6.17496Z",
|
|
@@ -13425,7 +13629,7 @@ var template = {
|
|
|
13425
13629
|
"stroke-linejoin": "round"
|
|
13426
13630
|
}
|
|
13427
13631
|
),
|
|
13428
|
-
/* @__PURE__ */ (0,
|
|
13632
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13429
13633
|
"path",
|
|
13430
13634
|
{
|
|
13431
13635
|
d: "M16.5 12.75C16.5 13.9435 16.0259 15.0881 15.182 15.932C14.3381 16.7759 13.1935 17.25 12 17.25C10.8065 17.25 9.66193 16.7759 8.81802 15.932C7.97411 15.0881 7.5 13.9435 7.5 12.75C7.5 11.5565 7.97411 10.4119 8.81802 9.56802C9.66193 8.72411 10.8065 8.25 12 8.25C13.1935 8.25 14.3381 8.72411 15.182 9.56802C16.0259 10.4119 16.5 11.5565 16.5 12.75ZM18.75 10.5H18.758V10.508H18.75V10.5Z",
|
|
@@ -13439,7 +13643,7 @@ var template = {
|
|
|
13439
13643
|
);
|
|
13440
13644
|
},
|
|
13441
13645
|
photo: ({ className, fill }) => {
|
|
13442
|
-
return /* @__PURE__ */ (0,
|
|
13646
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13443
13647
|
"svg",
|
|
13444
13648
|
{
|
|
13445
13649
|
width: "24",
|
|
@@ -13448,7 +13652,7 @@ var template = {
|
|
|
13448
13652
|
fill: "none",
|
|
13449
13653
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13450
13654
|
className,
|
|
13451
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13655
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13452
13656
|
"path",
|
|
13453
13657
|
{
|
|
13454
13658
|
"fill-rule": "evenodd",
|
|
@@ -13456,7 +13660,7 @@ var template = {
|
|
|
13456
13660
|
d: "M1.5 6C1.5 5.40326 1.73705 4.83097 2.15901 4.40901C2.58097 3.98705 3.15326 3.75 3.75 3.75H20.25C20.8467 3.75 21.419 3.98705 21.841 4.40901C22.2629 4.83097 22.5 5.40326 22.5 6V18C22.5 18.5967 22.2629 19.169 21.841 19.591C21.419 20.0129 20.8467 20.25 20.25 20.25H3.75C3.15326 20.25 2.58097 20.0129 2.15901 19.591C1.73705 19.169 1.5 18.5967 1.5 18V6ZM3 16.06V18C3 18.414 3.336 18.75 3.75 18.75H20.25C20.4489 18.75 20.6397 18.671 20.7803 18.5303C20.921 18.3897 21 18.1989 21 18V16.06L18.31 13.371C18.0287 13.0901 17.6475 12.9323 17.25 12.9323C16.8525 12.9323 16.4713 13.0901 16.19 13.371L15.31 14.25L16.28 15.22C16.3537 15.2887 16.4128 15.3715 16.4538 15.4635C16.4948 15.5555 16.5168 15.6548 16.5186 15.7555C16.5204 15.8562 16.5018 15.9562 16.4641 16.0496C16.4264 16.143 16.3703 16.2278 16.299 16.299C16.2278 16.3703 16.143 16.4264 16.0496 16.4641C15.9562 16.5018 15.8562 16.5204 15.7555 16.5186C15.6548 16.5168 15.5555 16.4948 15.4635 16.4538C15.3715 16.4128 15.2887 16.3537 15.22 16.28L10.06 11.121C9.77875 10.8401 9.3975 10.6823 9 10.6823C8.6025 10.6823 8.22125 10.8401 7.94 11.121L3 16.061V16.06ZM13.125 8.25C13.125 7.95163 13.2435 7.66548 13.4545 7.4545C13.6655 7.24353 13.9516 7.125 14.25 7.125C14.5484 7.125 14.8345 7.24353 15.0455 7.4545C15.2565 7.66548 15.375 7.95163 15.375 8.25C15.375 8.54837 15.2565 8.83452 15.0455 9.0455C14.8345 9.25647 14.5484 9.375 14.25 9.375C13.9516 9.375 13.6655 9.25647 13.4545 9.0455C13.2435 8.83452 13.125 8.54837 13.125 8.25Z",
|
|
13457
13661
|
fill: "currentColor"
|
|
13458
13662
|
}
|
|
13459
|
-
) : /* @__PURE__ */ (0,
|
|
13663
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13460
13664
|
"path",
|
|
13461
13665
|
{
|
|
13462
13666
|
d: "M2.25 15.75L7.409 10.591C7.61793 10.3821 7.86597 10.2163 8.13896 10.1033C8.41194 9.99018 8.70452 9.93198 9 9.93198C9.29548 9.93198 9.58806 9.99018 9.86104 10.1033C10.134 10.2163 10.3821 10.3821 10.591 10.591L15.75 15.75M14.25 14.25L15.659 12.841C15.8679 12.6321 16.116 12.4663 16.389 12.3533C16.6619 12.2402 16.9545 12.182 17.25 12.182C17.5455 12.182 17.8381 12.2402 18.111 12.3533C18.384 12.4663 18.6321 12.6321 18.841 12.841L21.75 15.75M3.75 19.5H20.25C20.6478 19.5 21.0294 19.342 21.3107 19.0607C21.592 18.7794 21.75 18.3978 21.75 18V6C21.75 5.60218 21.592 5.22064 21.3107 4.93934C21.0294 4.65804 20.6478 4.5 20.25 4.5H3.75C3.35218 4.5 2.97064 4.65804 2.68934 4.93934C2.40804 5.22064 2.25 5.60218 2.25 6V18C2.25 18.3978 2.40804 18.7794 2.68934 19.0607C2.97064 19.342 3.35218 19.5 3.75 19.5ZM14.25 8.25H14.258V8.258H14.25V8.25ZM14.625 8.25C14.625 8.34946 14.5855 8.44484 14.5152 8.51517C14.4448 8.58549 14.3495 8.625 14.25 8.625C14.1505 8.625 14.0552 8.58549 13.9848 8.51517C13.9145 8.44484 13.875 8.34946 13.875 8.25C13.875 8.15054 13.9145 8.05516 13.9848 7.98484C14.0552 7.91451 14.1505 7.875 14.25 7.875C14.3495 7.875 14.4448 7.91451 14.5152 7.98484C14.5855 8.05516 14.625 8.15054 14.625 8.25Z",
|
|
@@ -13469,7 +13673,7 @@ var template = {
|
|
|
13469
13673
|
);
|
|
13470
13674
|
},
|
|
13471
13675
|
setting: ({ className, fill }) => {
|
|
13472
|
-
return /* @__PURE__ */ (0,
|
|
13676
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13473
13677
|
"svg",
|
|
13474
13678
|
{
|
|
13475
13679
|
width: "24",
|
|
@@ -13478,7 +13682,7 @@ var template = {
|
|
|
13478
13682
|
fill: "none",
|
|
13479
13683
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13480
13684
|
className,
|
|
13481
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13685
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13482
13686
|
"path",
|
|
13483
13687
|
{
|
|
13484
13688
|
"fill-rule": "evenodd",
|
|
@@ -13486,8 +13690,8 @@ var template = {
|
|
|
13486
13690
|
d: "M11.828 2.25C10.912 2.25 10.129 2.913 9.978 3.817L9.887 4.366C9.86178 4.50381 9.80072 4.63255 9.70997 4.73927C9.61921 4.846 9.50196 4.92696 9.37 4.974C9.20842 5.03445 9.04899 5.10049 8.892 5.172C8.76539 5.23219 8.62516 5.25797 8.48542 5.24673C8.34568 5.2355 8.21137 5.18765 8.096 5.108L7.643 4.784C7.28179 4.52594 6.84074 4.4044 6.39833 4.44103C5.95592 4.47765 5.54086 4.67005 5.227 4.984L4.984 5.227C4.67005 5.54086 4.47765 5.95592 4.44103 6.39833C4.4044 6.84074 4.52594 7.28179 4.784 7.643L5.108 8.096C5.18765 8.21137 5.2355 8.34568 5.24673 8.48542C5.25797 8.62516 5.23219 8.76539 5.172 8.892C5.10048 9.04899 5.03444 9.20842 4.974 9.37C4.92696 9.50196 4.846 9.61921 4.73927 9.70997C4.63255 9.80072 4.50381 9.86178 4.366 9.887L3.816 9.979C3.37842 10.0521 2.98094 10.278 2.69421 10.6166C2.40748 10.9551 2.25009 11.3844 2.25 11.828V12.172C2.25 13.088 2.913 13.871 3.817 14.022L4.366 14.113C4.647 14.16 4.874 14.363 4.974 14.63C5.034 14.792 5.101 14.951 5.172 15.108C5.23219 15.2346 5.25797 15.3748 5.24673 15.5146C5.2355 15.6543 5.18765 15.7886 5.108 15.904L4.784 16.357C4.52594 16.7182 4.4044 17.1593 4.44103 17.6017C4.47765 18.0441 4.67005 18.4591 4.984 18.773L5.227 19.016C5.875 19.664 6.897 19.749 7.643 19.216L8.096 18.892C8.21137 18.8124 8.34568 18.7645 8.48542 18.7533C8.62516 18.742 8.76539 18.7678 8.892 18.828C9.049 18.899 9.208 18.965 9.37 19.026C9.637 19.126 9.84 19.353 9.887 19.634L9.979 20.184C10.129 21.087 10.911 21.75 11.828 21.75H12.172C13.088 21.75 13.871 21.087 14.022 20.183L14.113 19.634C14.1382 19.4962 14.1993 19.3675 14.29 19.2607C14.3808 19.154 14.498 19.073 14.63 19.026C14.7916 18.9655 14.951 18.8995 15.108 18.828C15.2346 18.7678 15.3748 18.742 15.5146 18.7533C15.6543 18.7645 15.7886 18.8124 15.904 18.892L16.357 19.216C16.7182 19.4741 17.1593 19.5956 17.6017 19.559C18.0441 19.5224 18.4591 19.3299 18.773 19.016L19.016 18.773C19.664 18.125 19.749 17.103 19.216 16.357L18.892 15.904C18.8124 15.7886 18.7645 15.6543 18.7533 15.5146C18.742 15.3748 18.7678 15.2346 18.828 15.108C18.899 14.951 18.965 14.792 19.026 14.63C19.126 14.363 19.353 14.16 19.634 14.113L20.184 14.022C20.6218 13.9489 21.0194 13.7228 21.3061 13.3841C21.5929 13.0453 21.7502 12.6158 21.75 12.172V11.828C21.75 10.912 21.087 10.129 20.183 9.978L19.634 9.887C19.4962 9.86178 19.3675 9.80072 19.2607 9.70997C19.154 9.61921 19.073 9.50196 19.026 9.37C18.9655 9.20844 18.8995 9.04901 18.828 8.892C18.7678 8.76539 18.742 8.62516 18.7533 8.48542C18.7645 8.34568 18.8124 8.21137 18.892 8.096L19.216 7.643C19.4741 7.28179 19.5956 6.84074 19.559 6.39833C19.5224 5.95592 19.3299 5.54086 19.016 5.227L18.773 4.984C18.4591 4.67005 18.0441 4.47765 17.6017 4.44103C17.1593 4.4044 16.7182 4.52594 16.357 4.784L15.904 5.108C15.7886 5.18765 15.6543 5.2355 15.5146 5.24673C15.3748 5.25797 15.2346 5.23219 15.108 5.172C14.951 5.10049 14.7916 5.03445 14.63 4.974C14.498 4.92696 14.3808 4.846 14.29 4.73927C14.1993 4.63255 14.1382 4.50381 14.113 4.366L14.022 3.816C13.9489 3.37825 13.7228 2.98063 13.3841 2.69389C13.0453 2.40714 12.6158 2.24985 12.172 2.25H11.828ZM12 15.75C12.9946 15.75 13.9484 15.3549 14.6517 14.6517C15.3549 13.9484 15.75 12.9946 15.75 12C15.75 11.0054 15.3549 10.0516 14.6517 9.34835C13.9484 8.64509 12.9946 8.25 12 8.25C11.0054 8.25 10.0516 8.64509 9.34835 9.34835C8.64509 10.0516 8.25 11.0054 8.25 12C8.25 12.9946 8.64509 13.9484 9.34835 14.6517C10.0516 15.3549 11.0054 15.75 12 15.75Z",
|
|
13487
13691
|
fill: "currentColor"
|
|
13488
13692
|
}
|
|
13489
|
-
) : /* @__PURE__ */ (0,
|
|
13490
|
-
/* @__PURE__ */ (0,
|
|
13693
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
13694
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13491
13695
|
"path",
|
|
13492
13696
|
{
|
|
13493
13697
|
d: "M10.343 3.94C10.433 3.398 10.903 3 11.453 3H12.546C13.096 3 13.566 3.398 13.656 3.94L13.805 4.834C13.875 5.258 14.189 5.598 14.585 5.764C14.983 5.928 15.44 5.906 15.79 5.656L16.527 5.129C16.7438 4.97405 17.0085 4.90107 17.274 4.92305C17.5395 4.94502 17.7887 5.06053 17.977 5.249L18.75 6.023C19.14 6.412 19.19 7.025 18.87 7.473L18.343 8.21C18.093 8.56 18.071 9.016 18.236 9.414C18.401 9.811 18.741 10.124 19.166 10.194L20.059 10.344C20.602 10.434 20.999 10.903 20.999 11.453V12.547C20.999 13.097 20.602 13.567 20.059 13.657L19.165 13.806C18.741 13.876 18.401 14.189 18.236 14.586C18.071 14.984 18.093 15.44 18.343 15.79L18.87 16.528C19.19 16.975 19.139 17.588 18.75 17.978L17.976 18.751C17.7877 18.9392 17.5388 19.0546 17.2735 19.0765C17.0082 19.0985 16.7437 19.0257 16.527 18.871L15.789 18.344C15.439 18.094 14.983 18.072 14.586 18.237C14.188 18.402 13.876 18.742 13.805 19.166L13.656 20.06C13.566 20.602 13.096 21 12.546 21H11.452C10.902 21 10.433 20.602 10.342 20.06L10.194 19.166C10.123 18.742 9.80999 18.402 9.41299 18.236C9.01499 18.072 8.55899 18.094 8.20899 18.344L7.47099 18.871C7.02399 19.191 6.41099 19.14 6.02099 18.751L5.24799 17.977C5.05952 17.7887 4.94401 17.5395 4.92204 17.274C4.90006 17.0085 4.97305 16.7438 5.12799 16.527L5.65499 15.79C5.90499 15.44 5.92699 14.984 5.76299 14.586C5.59799 14.189 5.25699 13.876 4.83299 13.806L3.93899 13.656C3.39699 13.566 2.99899 13.096 2.99899 12.547V11.453C2.99899 10.903 3.39699 10.433 3.93899 10.343L4.83299 10.194C5.25699 10.124 5.59799 9.811 5.76299 9.414C5.92799 9.016 5.90599 8.56 5.65499 8.21L5.12899 7.472C4.97405 7.25524 4.90106 6.99053 4.92304 6.72499C4.94501 6.45945 5.06052 6.21034 5.24899 6.022L6.02199 5.249C6.21033 5.06053 6.45945 4.94502 6.72498 4.92305C6.99052 4.90107 7.25524 4.97405 7.47199 5.129L8.20899 5.656C8.55899 5.906 9.01599 5.928 9.41299 5.763C9.80999 5.598 10.123 5.258 10.193 4.834L10.343 3.94Z",
|
|
@@ -13496,7 +13700,7 @@ var template = {
|
|
|
13496
13700
|
"stroke-linejoin": "round"
|
|
13497
13701
|
}
|
|
13498
13702
|
),
|
|
13499
|
-
/* @__PURE__ */ (0,
|
|
13703
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13500
13704
|
"path",
|
|
13501
13705
|
{
|
|
13502
13706
|
d: "M15 12C15 12.7956 14.6839 13.5587 14.1213 14.1213C13.5587 14.6839 12.7956 15 12 15C11.2044 15 10.4413 14.6839 9.87868 14.1213C9.31607 13.5587 9 12.7956 9 12C9 11.2044 9.31607 10.4413 9.87868 9.87868C10.4413 9.31607 11.2044 9 12 9C12.7956 9 13.5587 9.31607 14.1213 9.87868C14.6839 10.4413 15 11.2044 15 12Z",
|
|
@@ -13510,7 +13714,7 @@ var template = {
|
|
|
13510
13714
|
);
|
|
13511
13715
|
},
|
|
13512
13716
|
"monitor-jaw": ({ className, fill }) => {
|
|
13513
|
-
return /* @__PURE__ */ (0,
|
|
13717
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13514
13718
|
"svg",
|
|
13515
13719
|
{
|
|
13516
13720
|
width: "24",
|
|
@@ -13519,7 +13723,7 @@ var template = {
|
|
|
13519
13723
|
fill: "none",
|
|
13520
13724
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13521
13725
|
className,
|
|
13522
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13726
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13523
13727
|
"path",
|
|
13524
13728
|
{
|
|
13525
13729
|
"fill-rule": "evenodd",
|
|
@@ -13527,7 +13731,7 @@ var template = {
|
|
|
13527
13731
|
d: "M2.25 5.25C2.25 4.45435 2.56607 3.69129 3.12868 3.12868C3.69129 2.56607 4.45435 2.25 5.25 2.25H18.75C19.5456 2.25 20.3087 2.56607 20.8713 3.12868C21.4339 3.69129 21.75 4.45435 21.75 5.25V15C21.75 15.7956 21.4339 16.5587 20.8713 17.1213C20.3087 17.6839 19.5456 18 18.75 18H15.75V18.257C15.75 18.854 15.987 19.427 16.409 19.848L17.03 20.47C17.1348 20.5749 17.2061 20.7085 17.235 20.8539C17.2638 20.9993 17.249 21.15 17.1923 21.2869C17.1356 21.4239 17.0395 21.541 16.9163 21.6234C16.7931 21.7058 16.6482 21.7499 16.5 21.75H7.5C7.35176 21.7499 7.20688 21.7058 7.08367 21.6234C6.96045 21.541 6.86442 21.4239 6.80771 21.2869C6.751 21.15 6.73615 20.9993 6.76503 20.8539C6.79392 20.7085 6.86524 20.5749 6.97 20.47L7.591 19.848C8.01271 19.4263 8.24974 18.8544 8.25 18.258V18H5.25C4.45435 18 3.69129 17.6839 3.12868 17.1213C2.56607 16.5587 2.25 15.7956 2.25 15V5.25ZM3.75 5.25V12.75C3.75 13.1478 3.90804 13.5294 4.18934 13.8107C4.47064 14.092 4.85218 14.25 5.25 14.25H18.75C19.1478 14.25 19.5294 14.092 19.8107 13.8107C20.092 13.5294 20.25 13.1478 20.25 12.75V5.25C20.25 4.85218 20.092 4.47064 19.8107 4.18934C19.5294 3.90804 19.1478 3.75 18.75 3.75H5.25C4.85218 3.75 4.47064 3.90804 4.18934 4.18934C3.90804 4.47064 3.75 4.85218 3.75 5.25Z",
|
|
13528
13732
|
fill: "currentColor"
|
|
13529
13733
|
}
|
|
13530
|
-
) : /* @__PURE__ */ (0,
|
|
13734
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13531
13735
|
"path",
|
|
13532
13736
|
{
|
|
13533
13737
|
d: "M9 17.25V18.257C9.00005 18.6511 8.92244 19.0414 8.77162 19.4055C8.6208 19.7696 8.39971 20.1004 8.121 20.379L7.5 21H16.5L15.879 20.379C15.6003 20.1004 15.3792 19.7696 15.2284 19.4055C15.0776 19.0414 15 18.6511 15 18.257V17.25M21 5.25V15C21 15.5967 20.7629 16.169 20.341 16.591C19.919 17.0129 19.3467 17.25 18.75 17.25H5.25C4.65326 17.25 4.08097 17.0129 3.65901 16.591C3.23705 16.169 3 15.5967 3 15V5.25M21 5.25C21 4.65326 20.7629 4.08097 20.341 3.65901C19.919 3.23705 19.3467 3 18.75 3H5.25C4.65326 3 4.08097 3.23705 3.65901 3.65901C3.23705 4.08097 3 4.65326 3 5.25M21 5.25V12C21 12.5967 20.7629 13.169 20.341 13.591C19.919 14.0129 19.3467 14.25 18.75 14.25H5.25C4.65326 14.25 4.08097 14.0129 3.65901 13.591C3.23705 13.169 3 12.5967 3 12V5.25",
|
|
@@ -13540,7 +13744,7 @@ var template = {
|
|
|
13540
13744
|
);
|
|
13541
13745
|
},
|
|
13542
13746
|
"monitor-neck": ({ className, fill }) => {
|
|
13543
|
-
return /* @__PURE__ */ (0,
|
|
13747
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13544
13748
|
"svg",
|
|
13545
13749
|
{
|
|
13546
13750
|
width: "24",
|
|
@@ -13549,9 +13753,9 @@ var template = {
|
|
|
13549
13753
|
fill: "none",
|
|
13550
13754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13551
13755
|
className,
|
|
13552
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13553
|
-
/* @__PURE__ */ (0,
|
|
13554
|
-
/* @__PURE__ */ (0,
|
|
13756
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
13757
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M19.5 6H4.5V15H19.5V6Z", fill: "currentColor" }),
|
|
13758
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13555
13759
|
"path",
|
|
13556
13760
|
{
|
|
13557
13761
|
"fill-rule": "evenodd",
|
|
@@ -13560,7 +13764,7 @@ var template = {
|
|
|
13560
13764
|
fill: "currentColor"
|
|
13561
13765
|
}
|
|
13562
13766
|
)
|
|
13563
|
-
] }) : /* @__PURE__ */ (0,
|
|
13767
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13564
13768
|
"path",
|
|
13565
13769
|
{
|
|
13566
13770
|
d: "M6 20.25H18M10.5 17.25V20.25M13.5 17.25V20.25M3.375 17.25H20.625C21.246 17.25 21.75 16.746 21.75 16.125V4.875C21.75 4.254 21.246 3.75 20.625 3.75H3.375C2.754 3.75 2.25 4.254 2.25 4.875V16.125C2.25 16.746 2.754 17.25 3.375 17.25Z",
|
|
@@ -13573,7 +13777,7 @@ var template = {
|
|
|
13573
13777
|
);
|
|
13574
13778
|
},
|
|
13575
13779
|
search: ({ className, fill }) => {
|
|
13576
|
-
return /* @__PURE__ */ (0,
|
|
13780
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13577
13781
|
"svg",
|
|
13578
13782
|
{
|
|
13579
13783
|
width: "24",
|
|
@@ -13582,7 +13786,7 @@ var template = {
|
|
|
13582
13786
|
fill: "none",
|
|
13583
13787
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13584
13788
|
className,
|
|
13585
|
-
children: /* @__PURE__ */ (0,
|
|
13789
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13586
13790
|
"path",
|
|
13587
13791
|
{
|
|
13588
13792
|
d: "M21 21L15.803 15.803M15.803 15.803C17.2096 14.3965 17.9998 12.4887 17.9998 10.4995C17.9998 8.51035 17.2096 6.60262 15.803 5.19605C14.3964 3.78947 12.4887 2.99927 10.4995 2.99927C8.51029 2.99927 6.60256 3.78947 5.19599 5.19605C3.78941 6.60262 2.99921 8.51035 2.99921 10.4995C2.99921 12.4887 3.78941 14.3965 5.19599 15.803C6.60256 17.2096 8.51029 17.9998 10.4995 17.9998C12.4887 17.9998 14.3964 17.2096 15.803 15.803Z",
|
|
@@ -13595,7 +13799,7 @@ var template = {
|
|
|
13595
13799
|
);
|
|
13596
13800
|
},
|
|
13597
13801
|
share: ({ className, fill }) => {
|
|
13598
|
-
return /* @__PURE__ */ (0,
|
|
13802
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13599
13803
|
"svg",
|
|
13600
13804
|
{
|
|
13601
13805
|
width: "24",
|
|
@@ -13604,7 +13808,7 @@ var template = {
|
|
|
13604
13808
|
fill: "none",
|
|
13605
13809
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13606
13810
|
className,
|
|
13607
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13811
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13608
13812
|
"path",
|
|
13609
13813
|
{
|
|
13610
13814
|
"fill-rule": "evenodd",
|
|
@@ -13612,7 +13816,7 @@ var template = {
|
|
|
13612
13816
|
d: "M15.75 4.50001C15.7499 3.80263 15.9928 3.12702 16.4369 2.58933C16.881 2.05163 17.4986 1.68546 18.1834 1.55375C18.8682 1.42204 19.5776 1.53303 20.1894 1.86764C20.8013 2.20225 21.2775 2.73957 21.5361 3.38722C21.7947 4.03487 21.8196 4.75238 21.6065 5.41641C21.3934 6.08044 20.9557 6.64949 20.3685 7.02572C19.7813 7.40195 19.0814 7.56187 18.3891 7.47797C17.6968 7.39407 17.0553 7.07161 16.575 6.56601L8.15399 11.245C8.28265 11.7401 8.28265 12.2599 8.15399 12.755L16.575 17.434C17.0782 16.9049 17.7572 16.5775 18.4846 16.5132C19.2119 16.4489 19.9378 16.6521 20.5261 17.0847C21.1144 17.5173 21.5247 18.1496 21.6801 18.8631C21.8355 19.5766 21.7253 20.3223 21.3702 20.9603C21.0151 21.5984 20.4395 22.0851 19.7513 22.3291C19.063 22.5731 18.3094 22.5577 17.6317 22.2858C16.954 22.0139 16.3987 21.5042 16.07 20.8521C15.7412 20.2001 15.6616 19.4506 15.846 18.744L7.42499 14.066C7.01184 14.501 6.47776 14.8021 5.89174 14.9305C5.30571 15.0589 4.69465 15.0086 4.13748 14.7862C3.58032 14.5638 3.10263 14.1794 2.76613 13.6827C2.42962 13.1861 2.24976 12.5999 2.24976 12C2.24976 11.4001 2.42962 10.8139 2.76613 10.3173C3.10263 9.82061 3.58032 9.43624 4.13748 9.21382C4.69465 8.99139 5.30571 8.94112 5.89174 9.0695C6.47776 9.19788 7.01184 9.49902 7.42499 9.93401L15.846 5.25501C15.7821 5.00844 15.7498 4.75473 15.75 4.50001Z",
|
|
13613
13817
|
fill: "currentColor"
|
|
13614
13818
|
}
|
|
13615
|
-
) : /* @__PURE__ */ (0,
|
|
13819
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13616
13820
|
"path",
|
|
13617
13821
|
{
|
|
13618
13822
|
d: "M7.21699 10.907C6.97485 10.4714 6.5949 10.1284 6.13676 9.93202C5.67863 9.73564 5.16825 9.69695 4.68574 9.82202C4.20324 9.94709 3.77592 10.2288 3.47087 10.623C3.16582 11.0172 3.00031 11.5016 3.00031 12C3.00031 12.4985 3.16582 12.9828 3.47087 13.377C3.77592 13.7712 4.20324 14.053 4.68574 14.1781C5.16825 14.3031 5.67863 14.2644 6.13676 14.0681C6.5949 13.8717 6.97485 13.5287 7.21699 13.093M7.21699 10.907C7.39699 11.231 7.49999 11.603 7.49999 12C7.49999 12.397 7.39699 12.77 7.21699 13.093M7.21699 10.907L16.783 5.59304M7.21699 13.093L16.783 18.407M16.783 5.59304C16.9232 5.85718 17.1148 6.0907 17.3463 6.27997C17.5779 6.46923 17.8448 6.61043 18.1316 6.69532C18.4184 6.7802 18.7192 6.80706 19.0165 6.77433C19.3137 6.7416 19.6015 6.64994 19.8629 6.5047C20.1243 6.35946 20.3542 6.16356 20.539 5.92845C20.7239 5.69334 20.86 5.42375 20.9394 5.13542C21.0188 4.8471 21.04 4.54583 21.0016 4.24923C20.9633 3.95264 20.8662 3.66667 20.716 3.40804C20.4201 2.89838 19.936 2.52518 19.3678 2.36865C18.7996 2.21213 18.1927 2.28478 17.6775 2.57099C17.1623 2.8572 16.78 3.33412 16.6127 3.89923C16.4455 4.46434 16.5066 5.07252 16.783 5.59304ZM16.783 18.407C16.6395 18.6654 16.5482 18.9495 16.5145 19.2432C16.4808 19.5368 16.5052 19.8342 16.5864 20.1184C16.6676 20.4026 16.804 20.668 16.9878 20.8995C17.1715 21.131 17.3991 21.324 17.6575 21.4675C17.9159 21.6111 18.2 21.7023 18.4936 21.736C18.7873 21.7698 19.0847 21.7453 19.3689 21.6641C19.653 21.5829 19.9185 21.4465 20.15 21.2628C20.3814 21.079 20.5745 20.8514 20.718 20.593C21.0079 20.0712 21.0786 19.4556 20.9146 18.8817C20.7506 18.3077 20.3653 17.8224 19.8435 17.5325C19.3217 17.2427 18.7061 17.1719 18.1321 17.3359C17.5582 17.4999 17.0729 17.8852 16.783 18.407Z",
|
|
@@ -13625,7 +13829,7 @@ var template = {
|
|
|
13625
13829
|
);
|
|
13626
13830
|
},
|
|
13627
13831
|
power: ({ className, fill }) => {
|
|
13628
|
-
return /* @__PURE__ */ (0,
|
|
13832
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13629
13833
|
"svg",
|
|
13630
13834
|
{
|
|
13631
13835
|
width: "24",
|
|
@@ -13634,7 +13838,7 @@ var template = {
|
|
|
13634
13838
|
fill: "none",
|
|
13635
13839
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13636
13840
|
className,
|
|
13637
|
-
children: /* @__PURE__ */ (0,
|
|
13841
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13638
13842
|
"path",
|
|
13639
13843
|
{
|
|
13640
13844
|
d: "M5.636 5.636C4.37734 6.89468 3.52019 8.49832 3.17293 10.2442C2.82567 11.99 3.00391 13.7996 3.6851 15.4441C4.36629 17.0886 5.51984 18.4942 6.99988 19.4832C8.47992 20.4721 10.22 20.9999 12 20.9999C13.78 20.9999 15.5201 20.4721 17.0001 19.4832C18.4802 18.4942 19.6337 17.0886 20.3149 15.4441C20.9961 13.7996 21.1743 11.99 20.8271 10.2442C20.4798 8.49832 19.6227 6.89468 18.364 5.636M12 3V12",
|
|
@@ -13647,7 +13851,7 @@ var template = {
|
|
|
13647
13851
|
);
|
|
13648
13852
|
},
|
|
13649
13853
|
day: ({ className, fill }) => {
|
|
13650
|
-
return /* @__PURE__ */ (0,
|
|
13854
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13651
13855
|
"svg",
|
|
13652
13856
|
{
|
|
13653
13857
|
width: "24",
|
|
@@ -13656,13 +13860,13 @@ var template = {
|
|
|
13656
13860
|
fill: "none",
|
|
13657
13861
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13658
13862
|
className,
|
|
13659
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13863
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13660
13864
|
"path",
|
|
13661
13865
|
{
|
|
13662
13866
|
d: "M12 2.25C12.1989 2.25 12.3897 2.32902 12.5303 2.46967C12.671 2.61032 12.75 2.80109 12.75 3V5.25C12.75 5.44891 12.671 5.63968 12.5303 5.78033C12.3897 5.92098 12.1989 6 12 6C11.8011 6 11.6103 5.92098 11.4697 5.78033C11.329 5.63968 11.25 5.44891 11.25 5.25V3C11.25 2.80109 11.329 2.61032 11.4697 2.46967C11.6103 2.32902 11.8011 2.25 12 2.25ZM7.5 12C7.5 10.8065 7.97411 9.66193 8.81802 8.81802C9.66193 7.97411 10.8065 7.5 12 7.5C13.1935 7.5 14.3381 7.97411 15.182 8.81802C16.0259 9.66193 16.5 10.8065 16.5 12C16.5 13.1935 16.0259 14.3381 15.182 15.182C14.3381 16.0259 13.1935 16.5 12 16.5C10.8065 16.5 9.66193 16.0259 8.81802 15.182C7.97411 14.3381 7.5 13.1935 7.5 12ZM18.894 6.166C19.0265 6.02382 19.0986 5.83578 19.0952 5.64148C19.0917 5.44718 19.013 5.26179 18.8756 5.12438C18.7382 4.98697 18.5528 4.90825 18.3585 4.90483C18.1642 4.9014 17.9762 4.97352 17.834 5.106L16.243 6.696C16.1713 6.76515 16.1142 6.84788 16.0748 6.93937C16.0355 7.03085 16.0147 7.12926 16.0138 7.22884C16.0129 7.32842 16.0318 7.42719 16.0695 7.51938C16.1072 7.61157 16.1628 7.69534 16.2332 7.76579C16.3036 7.83624 16.3873 7.89197 16.4795 7.92972C16.5716 7.96748 16.6704 7.9865 16.7699 7.98568C16.8695 7.98486 16.968 7.96422 17.0595 7.92496C17.151 7.8857 17.2338 7.8286 17.303 7.757L18.894 6.166ZM21.75 12C21.75 12.1989 21.671 12.3897 21.5303 12.5303C21.3897 12.671 21.1989 12.75 21 12.75H18.75C18.5511 12.75 18.3603 12.671 18.2197 12.5303C18.079 12.3897 18 12.1989 18 12C18 11.8011 18.079 11.6103 18.2197 11.4697C18.3603 11.329 18.5511 11.25 18.75 11.25H21C21.1989 11.25 21.3897 11.329 21.5303 11.4697C21.671 11.6103 21.75 11.8011 21.75 12ZM17.834 18.894C17.9762 19.0265 18.1642 19.0986 18.3585 19.0952C18.5528 19.0917 18.7382 19.013 18.8756 18.8756C19.013 18.7382 19.0917 18.5528 19.0952 18.3585C19.0986 18.1642 19.0265 17.9762 18.894 17.834L17.304 16.243C17.2348 16.1713 17.1521 16.1142 17.0606 16.0748C16.9691 16.0355 16.8707 16.0147 16.7712 16.0138C16.6716 16.0129 16.5728 16.0318 16.4806 16.0695C16.3884 16.1072 16.3047 16.1628 16.2342 16.2332C16.1638 16.3036 16.108 16.3873 16.0703 16.4795C16.0325 16.5716 16.0135 16.6704 16.0143 16.7699C16.0151 16.8695 16.0358 16.968 16.075 17.0595C16.1143 17.151 16.1714 17.2338 16.243 17.303L17.834 18.894ZM12 18C12.1989 18 12.3897 18.079 12.5303 18.2197C12.671 18.3603 12.75 18.5511 12.75 18.75V21C12.75 21.1989 12.671 21.3897 12.5303 21.5303C12.3897 21.671 12.1989 21.75 12 21.75C11.8011 21.75 11.6103 21.671 11.4697 21.5303C11.329 21.3897 11.25 21.1989 11.25 21V18.75C11.25 18.5511 11.329 18.3603 11.4697 18.2197C11.6103 18.079 11.8011 18 12 18ZM7.758 17.303C7.89455 17.1615 7.97006 16.972 7.96826 16.7753C7.96646 16.5787 7.88749 16.3906 7.74837 16.2516C7.60925 16.1126 7.4211 16.0339 7.22445 16.0322C7.0278 16.0306 6.83839 16.1063 6.697 16.243L5.106 17.833C4.96931 17.9744 4.89363 18.1638 4.89524 18.3605C4.89686 18.5571 4.97565 18.7452 5.11464 18.8844C5.25363 19.0235 5.4417 19.1025 5.63835 19.1043C5.835 19.1061 6.02448 19.0306 6.166 18.894L7.757 17.304L7.758 17.303ZM6 12C6 12.1989 5.92098 12.3897 5.78033 12.5303C5.63968 12.671 5.44891 12.75 5.25 12.75H3C2.80109 12.75 2.61032 12.671 2.46967 12.5303C2.32902 12.3897 2.25 12.1989 2.25 12C2.25 11.8011 2.32902 11.6103 2.46967 11.4697C2.61032 11.329 2.80109 11.25 3 11.25H5.25C5.44891 11.25 5.63968 11.329 5.78033 11.4697C5.92098 11.6103 6 11.8011 6 12ZM6.697 7.757C6.83918 7.88948 7.02722 7.9616 7.22152 7.95818C7.41582 7.95475 7.60121 7.87603 7.73862 7.73862C7.87603 7.60121 7.95475 7.41582 7.95818 7.22152C7.9616 7.02722 7.88948 6.83918 7.757 6.697L6.167 5.106C6.02561 4.96931 5.8362 4.89363 5.63955 4.89524C5.4429 4.89686 5.25475 4.97565 5.11563 5.11464C4.97651 5.25363 4.89754 5.4417 4.89574 5.63835C4.89394 5.835 4.96945 6.02448 5.106 6.166L6.697 7.757Z",
|
|
13663
13867
|
fill: "currentColor"
|
|
13664
13868
|
}
|
|
13665
|
-
) : /* @__PURE__ */ (0,
|
|
13869
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13666
13870
|
"path",
|
|
13667
13871
|
{
|
|
13668
13872
|
d: "M12 3V5.25M18.364 5.636L16.773 7.227M21 12H18.75M18.364 18.364L16.773 16.773M12 18.75V21M7.227 16.773L5.636 18.364M5.25 12H3M7.227 7.227L5.636 5.636M15.75 12C15.75 12.9946 15.3549 13.9484 14.6517 14.6517C13.9484 15.3549 12.9946 15.75 12 15.75C11.0054 15.75 10.0516 15.3549 9.34835 14.6517C8.64509 13.9484 8.25 12.9946 8.25 12C8.25 11.0054 8.64509 10.0516 9.34835 9.34835C10.0516 8.64509 11.0054 8.25 12 8.25C12.9946 8.25 13.9484 8.64509 14.6517 9.34835C15.3549 10.0516 15.75 11.0054 15.75 12Z",
|
|
@@ -13675,7 +13879,7 @@ var template = {
|
|
|
13675
13879
|
);
|
|
13676
13880
|
},
|
|
13677
13881
|
night: ({ className, fill }) => {
|
|
13678
|
-
return /* @__PURE__ */ (0,
|
|
13882
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13679
13883
|
"svg",
|
|
13680
13884
|
{
|
|
13681
13885
|
width: "24",
|
|
@@ -13684,7 +13888,7 @@ var template = {
|
|
|
13684
13888
|
fill: "none",
|
|
13685
13889
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13686
13890
|
className,
|
|
13687
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13891
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13688
13892
|
"path",
|
|
13689
13893
|
{
|
|
13690
13894
|
"fill-rule": "evenodd",
|
|
@@ -13692,7 +13896,7 @@ var template = {
|
|
|
13692
13896
|
d: "M9.528 1.71799C9.63312 1.82308 9.70465 1.95704 9.73349 2.10286C9.76234 2.24868 9.7472 2.39979 9.69 2.53699C9.23282 3.6342 8.99828 4.81134 9 5.99999C9 8.38694 9.94821 10.6761 11.636 12.3639C13.3239 14.0518 15.6131 15 18 15C19.1886 15.0017 20.3658 14.7672 21.463 14.31C21.6001 14.2529 21.7511 14.2378 21.8968 14.2666C22.0425 14.2954 22.1763 14.3668 22.2814 14.4717C22.3865 14.5767 22.458 14.7105 22.487 14.8562C22.5159 15.0018 22.501 15.1528 22.444 15.29C21.646 17.2032 20.2997 18.8376 18.5747 19.9871C16.8496 21.1367 14.823 21.7501 12.75 21.75C6.951 21.75 2.25 17.05 2.25 11.25C2.25 6.88199 4.917 3.13799 8.71 1.55599C8.84707 1.49901 8.99797 1.48399 9.14359 1.51282C9.28921 1.54166 9.42299 1.61307 9.528 1.71799Z",
|
|
13693
13897
|
fill: "currentColor"
|
|
13694
13898
|
}
|
|
13695
|
-
) : /* @__PURE__ */ (0,
|
|
13899
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13696
13900
|
"path",
|
|
13697
13901
|
{
|
|
13698
13902
|
d: "M21.752 15.002C20.5632 15.4975 19.2879 15.7517 18 15.75C12.615 15.75 8.25 11.385 8.25 6.00005C8.25 4.67005 8.516 3.40305 8.998 2.24805C7.22147 2.98916 5.70397 4.2394 4.63663 5.8413C3.56928 7.44321 2.99984 9.32513 3 11.25C3 16.635 7.365 21 12.75 21C14.6749 21.0002 16.5568 20.4308 18.1587 19.3634C19.7606 18.2961 21.0109 16.7786 21.752 15.002Z",
|
|
@@ -13705,7 +13909,7 @@ var template = {
|
|
|
13705
13909
|
);
|
|
13706
13910
|
},
|
|
13707
13911
|
trash: ({ className, fill }) => {
|
|
13708
|
-
return /* @__PURE__ */ (0,
|
|
13912
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13709
13913
|
"svg",
|
|
13710
13914
|
{
|
|
13711
13915
|
width: "24",
|
|
@@ -13714,7 +13918,7 @@ var template = {
|
|
|
13714
13918
|
fill: "none",
|
|
13715
13919
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13716
13920
|
className,
|
|
13717
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13921
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13718
13922
|
"path",
|
|
13719
13923
|
{
|
|
13720
13924
|
"fill-rule": "evenodd",
|
|
@@ -13722,7 +13926,7 @@ var template = {
|
|
|
13722
13926
|
d: "M16.5 4.47795V4.70495C17.799 4.82373 19.0927 4.99454 20.378 5.21695C20.4751 5.23376 20.5678 5.26952 20.6511 5.32218C20.7343 5.37485 20.8063 5.4434 20.8631 5.52391C20.9198 5.60441 20.9601 5.69531 20.9817 5.7914C21.0033 5.88749 21.0058 5.9869 20.989 6.08395C20.9722 6.18099 20.9364 6.27378 20.8838 6.35701C20.8311 6.44023 20.7626 6.51227 20.682 6.56901C20.6015 6.62575 20.5106 6.66607 20.4146 6.68768C20.3185 6.70929 20.2191 6.71176 20.122 6.69495L19.913 6.65995L18.908 19.7299C18.8501 20.4835 18.5098 21.1875 17.9553 21.701C17.4008 22.2146 16.6728 22.4999 15.917 22.4999H8.08401C7.3282 22.4999 6.60026 22.2146 6.04573 21.701C5.4912 21.1875 5.15095 20.4835 5.09301 19.7299L4.08701 6.65995L3.87801 6.69495C3.78096 6.71176 3.68155 6.70929 3.58546 6.68768C3.48937 6.66607 3.39847 6.62575 3.31796 6.56901C3.15537 6.45442 3.04495 6.27994 3.01101 6.08395C2.97706 5.88795 3.02236 5.6865 3.13694 5.52391C3.25153 5.36131 3.42601 5.2509 3.62201 5.21695C4.90727 4.99427 6.20099 4.82347 7.50001 4.70495V4.47795C7.50001 2.91395 8.71301 1.57795 10.316 1.52695C11.4387 1.49102 12.5623 1.49102 13.685 1.52695C15.288 1.57795 16.5 2.91395 16.5 4.47795ZM10.364 3.02595C11.4547 2.99106 12.5463 2.99106 13.637 3.02595C14.39 3.04995 15 3.68395 15 4.47795V4.59095C13.0018 4.46959 10.9982 4.46959 9.00001 4.59095V4.47795C9.00001 3.68395 9.60901 3.04995 10.364 3.02595ZM10.009 8.97095C10.0052 8.87246 9.98203 8.77568 9.94082 8.68614C9.89961 8.59661 9.84117 8.51606 9.76883 8.44911C9.69649 8.38216 9.61168 8.33011 9.51923 8.29594C9.42678 8.26177 9.3285 8.24614 9.23001 8.24995C9.13152 8.25376 9.03474 8.27693 8.9452 8.31814C8.85567 8.35935 8.77512 8.41779 8.70817 8.49012C8.64122 8.56246 8.58917 8.64728 8.555 8.73973C8.52083 8.83218 8.5052 8.93046 8.50901 9.02895L8.85601 18.0289C8.8637 18.2277 8.95004 18.4153 9.09604 18.5504C9.16833 18.6173 9.25309 18.6693 9.34548 18.7035C9.43787 18.7376 9.53608 18.7533 9.63451 18.7494C9.73293 18.7456 9.82964 18.7225 9.91912 18.6813C10.0086 18.6401 10.0891 18.5817 10.156 18.5094C10.2229 18.4371 10.2749 18.3524 10.3091 18.26C10.3432 18.1676 10.3588 18.0694 10.355 17.9709L10.009 8.97095ZM15.489 9.02895C15.4963 8.92857 15.4834 8.82773 15.4509 8.73246C15.4185 8.63719 15.3672 8.54942 15.3001 8.47439C15.233 8.39936 15.1515 8.3386 15.0604 8.29574C14.9694 8.25287 14.8706 8.22877 14.77 8.22488C14.6694 8.22098 14.5691 8.23737 14.475 8.27307C14.3809 8.30877 14.2949 8.36304 14.2222 8.43266C14.1496 8.50227 14.0916 8.58581 14.0519 8.67829C14.0122 8.77077 13.9915 8.8703 13.991 8.97095L13.644 17.9709C13.6363 18.1699 13.708 18.3637 13.8432 18.5098C13.9784 18.6559 14.1661 18.7423 14.365 18.7499C14.5639 18.7576 14.7577 18.686 14.9038 18.5508C15.0499 18.4156 15.1363 18.2279 15.144 18.0289L15.489 9.02895Z",
|
|
13723
13927
|
fill: "currentColor"
|
|
13724
13928
|
}
|
|
13725
|
-
) : /* @__PURE__ */ (0,
|
|
13929
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13726
13930
|
"path",
|
|
13727
13931
|
{
|
|
13728
13932
|
d: "M14.74 9.00003L14.394 18M9.606 18L9.26 9.00003M19.228 5.79003C19.57 5.84203 19.91 5.89703 20.25 5.95603M19.228 5.79003L18.16 19.673C18.1164 20.2383 17.8611 20.7662 17.445 21.1513C17.029 21.5364 16.4829 21.7502 15.916 21.75H8.084C7.5171 21.7502 6.97102 21.5364 6.55498 21.1513C6.13894 20.7662 5.88359 20.2383 5.84 19.673L4.772 5.79003M19.228 5.79003C18.0739 5.61555 16.9138 5.48313 15.75 5.39303M4.772 5.79003C4.43 5.84103 4.09 5.89603 3.75 5.95503M4.772 5.79003C5.92613 5.61555 7.08623 5.48313 8.25 5.39303M15.75 5.39303V4.47703C15.75 3.29703 14.84 2.31303 13.66 2.27603C12.5536 2.24067 11.4464 2.24067 10.34 2.27603C9.16 2.31303 8.25 3.29803 8.25 4.47703V5.39303M15.75 5.39303C13.2537 5.20011 10.7463 5.20011 8.25 5.39303",
|
|
@@ -13735,7 +13939,7 @@ var template = {
|
|
|
13735
13939
|
);
|
|
13736
13940
|
},
|
|
13737
13941
|
copy: ({ className, fill }) => {
|
|
13738
|
-
return /* @__PURE__ */ (0,
|
|
13942
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13739
13943
|
"svg",
|
|
13740
13944
|
{
|
|
13741
13945
|
width: "24",
|
|
@@ -13744,22 +13948,22 @@ var template = {
|
|
|
13744
13948
|
fill: "none",
|
|
13745
13949
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13746
13950
|
className,
|
|
13747
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13748
|
-
/* @__PURE__ */ (0,
|
|
13951
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
13952
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13749
13953
|
"path",
|
|
13750
13954
|
{
|
|
13751
13955
|
d: "M16.5 6C16.5 5.20435 16.1839 4.44129 15.6213 3.87868C15.0587 3.31607 14.2956 3 13.5 3H6C5.20435 3 4.44129 3.31607 3.87868 3.87868C3.31607 4.44129 3 5.20435 3 6V13.5C3 14.2956 3.31607 15.0587 3.87868 15.6213C4.44129 16.1839 5.20435 16.5 6 16.5V10.5C6 9.30653 6.47411 8.16193 7.31802 7.31802C8.16193 6.47411 9.30653 6 10.5 6H16.5Z",
|
|
13752
13956
|
fill: "currentColor"
|
|
13753
13957
|
}
|
|
13754
13958
|
),
|
|
13755
|
-
/* @__PURE__ */ (0,
|
|
13959
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13756
13960
|
"path",
|
|
13757
13961
|
{
|
|
13758
13962
|
d: "M18 7.5C18.7956 7.5 19.5587 7.81607 20.1213 8.37868C20.6839 8.94129 21 9.70435 21 10.5V18C21 18.7956 20.6839 19.5587 20.1213 20.1213C19.5587 20.6839 18.7956 21 18 21H10.5C9.70435 21 8.94129 20.6839 8.37868 20.1213C7.81607 19.5587 7.5 18.7956 7.5 18V10.5C7.5 9.70435 7.81607 8.94129 8.37868 8.37868C8.94129 7.81607 9.70435 7.5 10.5 7.5H18Z",
|
|
13759
13963
|
fill: "currentColor"
|
|
13760
13964
|
}
|
|
13761
13965
|
)
|
|
13762
|
-
] }) : /* @__PURE__ */ (0,
|
|
13966
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13763
13967
|
"path",
|
|
13764
13968
|
{
|
|
13765
13969
|
d: "M16.5 8.25V6C16.5 5.40326 16.2629 4.83097 15.841 4.40901C15.419 3.98705 14.8467 3.75 14.25 3.75H6C5.40326 3.75 4.83097 3.98705 4.40901 4.40901C3.98705 4.83097 3.75 5.40326 3.75 6V14.25C3.75 14.8467 3.98705 15.419 4.40901 15.841C4.83097 16.2629 5.40326 16.5 6 16.5H8.25M16.5 8.25H18C18.5967 8.25 19.169 8.48705 19.591 8.90901C20.0129 9.33097 20.25 9.90326 20.25 10.5V18C20.25 18.5967 20.0129 19.169 19.591 19.591C19.169 20.0129 18.5967 20.25 18 20.25H10.5C9.90326 20.25 9.33097 20.0129 8.90901 19.591C8.48705 19.169 8.25 18.5967 8.25 18V16.5M16.5 8.25H10.5C9.90326 8.25 9.33097 8.48705 8.90901 8.90901C8.48705 9.33097 8.25 9.90326 8.25 10.5V16.5",
|
|
@@ -13773,7 +13977,7 @@ var template = {
|
|
|
13773
13977
|
},
|
|
13774
13978
|
// ** Layout **
|
|
13775
13979
|
grid: ({ className, fill }) => {
|
|
13776
|
-
return /* @__PURE__ */ (0,
|
|
13980
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13777
13981
|
"svg",
|
|
13778
13982
|
{
|
|
13779
13983
|
width: "24",
|
|
@@ -13782,7 +13986,7 @@ var template = {
|
|
|
13782
13986
|
fill: "none",
|
|
13783
13987
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13784
13988
|
className,
|
|
13785
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
13989
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13786
13990
|
"path",
|
|
13787
13991
|
{
|
|
13788
13992
|
"fill-rule": "evenodd",
|
|
@@ -13790,7 +13994,7 @@ var template = {
|
|
|
13790
13994
|
d: "M3 6C3 5.20435 3.31607 4.44129 3.87868 3.87868C4.44129 3.31607 5.20435 3 6 3H8.25C9.04565 3 9.80871 3.31607 10.3713 3.87868C10.9339 4.44129 11.25 5.20435 11.25 6V8.25C11.25 9.04565 10.9339 9.80871 10.3713 10.3713C9.80871 10.9339 9.04565 11.25 8.25 11.25H6C5.20435 11.25 4.44129 10.9339 3.87868 10.3713C3.31607 9.80871 3 9.04565 3 8.25V6ZM12.75 6C12.75 5.20435 13.0661 4.44129 13.6287 3.87868C14.1913 3.31607 14.9544 3 15.75 3H18C18.7956 3 19.5587 3.31607 20.1213 3.87868C20.6839 4.44129 21 5.20435 21 6V8.25C21 9.04565 20.6839 9.80871 20.1213 10.3713C19.5587 10.9339 18.7956 11.25 18 11.25H15.75C14.9544 11.25 14.1913 10.9339 13.6287 10.3713C13.0661 9.80871 12.75 9.04565 12.75 8.25V6ZM3 15.75C3 14.9544 3.31607 14.1913 3.87868 13.6287C4.44129 13.0661 5.20435 12.75 6 12.75H8.25C9.04565 12.75 9.80871 13.0661 10.3713 13.6287C10.9339 14.1913 11.25 14.9544 11.25 15.75V18C11.25 18.7956 10.9339 19.5587 10.3713 20.1213C9.80871 20.6839 9.04565 21 8.25 21H6C5.20435 21 4.44129 20.6839 3.87868 20.1213C3.31607 19.5587 3 18.7956 3 18V15.75ZM12.75 15.75C12.75 14.9544 13.0661 14.1913 13.6287 13.6287C14.1913 13.0661 14.9544 12.75 15.75 12.75H18C18.7956 12.75 19.5587 13.0661 20.1213 13.6287C20.6839 14.1913 21 14.9544 21 15.75V18C21 18.7956 20.6839 19.5587 20.1213 20.1213C19.5587 20.6839 18.7956 21 18 21H15.75C14.9544 21 14.1913 20.6839 13.6287 20.1213C13.0661 19.5587 12.75 18.7956 12.75 18V15.75Z",
|
|
13791
13995
|
fill: "currentColor"
|
|
13792
13996
|
}
|
|
13793
|
-
) : /* @__PURE__ */ (0,
|
|
13997
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13794
13998
|
"path",
|
|
13795
13999
|
{
|
|
13796
14000
|
d: "M3.75 6C3.75 5.40326 3.98705 4.83097 4.40901 4.40901C4.83097 3.98705 5.40326 3.75 6 3.75H8.25C8.84674 3.75 9.41903 3.98705 9.84099 4.40901C10.2629 4.83097 10.5 5.40326 10.5 6V8.25C10.5 8.84674 10.2629 9.41903 9.84099 9.84099C9.41903 10.2629 8.84674 10.5 8.25 10.5H6C5.40326 10.5 4.83097 10.2629 4.40901 9.84099C3.98705 9.41903 3.75 8.84674 3.75 8.25V6ZM3.75 15.75C3.75 15.1533 3.98705 14.581 4.40901 14.159C4.83097 13.7371 5.40326 13.5 6 13.5H8.25C8.84674 13.5 9.41903 13.7371 9.84099 14.159C10.2629 14.581 10.5 15.1533 10.5 15.75V18C10.5 18.5967 10.2629 19.169 9.84099 19.591C9.41903 20.0129 8.84674 20.25 8.25 20.25H6C5.40326 20.25 4.83097 20.0129 4.40901 19.591C3.98705 19.169 3.75 18.5967 3.75 18V15.75ZM13.5 6C13.5 5.40326 13.7371 4.83097 14.159 4.40901C14.581 3.98705 15.1533 3.75 15.75 3.75H18C18.5967 3.75 19.169 3.98705 19.591 4.40901C20.0129 4.83097 20.25 5.40326 20.25 6V8.25C20.25 8.84674 20.0129 9.41903 19.591 9.84099C19.169 10.2629 18.5967 10.5 18 10.5H15.75C15.1533 10.5 14.581 10.2629 14.159 9.84099C13.7371 9.41903 13.5 8.84674 13.5 8.25V6ZM13.5 15.75C13.5 15.1533 13.7371 14.581 14.159 14.159C14.581 13.7371 15.1533 13.5 15.75 13.5H18C18.5967 13.5 19.169 13.7371 19.591 14.159C20.0129 14.581 20.25 15.1533 20.25 15.75V18C20.25 18.5967 20.0129 19.169 19.591 19.591C19.169 20.0129 18.5967 20.25 18 20.25H15.75C15.1533 20.25 14.581 20.0129 14.159 19.591C13.7371 19.169 13.5 18.5967 13.5 18V15.75Z",
|
|
@@ -13803,7 +14007,7 @@ var template = {
|
|
|
13803
14007
|
);
|
|
13804
14008
|
},
|
|
13805
14009
|
"list-dot": ({ className, fill }) => {
|
|
13806
|
-
return /* @__PURE__ */ (0,
|
|
14010
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13807
14011
|
"svg",
|
|
13808
14012
|
{
|
|
13809
14013
|
width: "24",
|
|
@@ -13812,7 +14016,7 @@ var template = {
|
|
|
13812
14016
|
fill: "none",
|
|
13813
14017
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13814
14018
|
className,
|
|
13815
|
-
children: /* @__PURE__ */ (0,
|
|
14019
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13816
14020
|
"path",
|
|
13817
14021
|
{
|
|
13818
14022
|
d: "M8.25 6.75H20.25M8.25 12H20.25M8.25 17.25H20.25M3.75 6.75H3.757V6.758H3.75V6.75ZM4.125 6.75C4.125 6.84946 4.08549 6.94484 4.01516 7.01516C3.94484 7.08549 3.84946 7.125 3.75 7.125C3.65054 7.125 3.55516 7.08549 3.48483 7.01516C3.41451 6.94484 3.375 6.84946 3.375 6.75C3.375 6.65054 3.41451 6.55516 3.48483 6.48484C3.55516 6.41451 3.65054 6.375 3.75 6.375C3.84946 6.375 3.94484 6.41451 4.01516 6.48484C4.08549 6.55516 4.125 6.65054 4.125 6.75ZM3.75 12H3.757V12.008H3.75V12ZM4.125 12C4.125 12.0995 4.08549 12.1948 4.01516 12.2652C3.94484 12.3355 3.84946 12.375 3.75 12.375C3.65054 12.375 3.55516 12.3355 3.48483 12.2652C3.41451 12.1948 3.375 12.0995 3.375 12C3.375 11.9005 3.41451 11.8052 3.48483 11.7348C3.55516 11.6645 3.65054 11.625 3.75 11.625C3.84946 11.625 3.94484 11.6645 4.01516 11.7348C4.08549 11.8052 4.125 11.9005 4.125 12ZM3.75 17.25H3.757V17.258H3.75V17.25ZM4.125 17.25C4.125 17.3495 4.08549 17.4448 4.01516 17.5152C3.94484 17.5855 3.84946 17.625 3.75 17.625C3.65054 17.625 3.55516 17.5855 3.48483 17.5152C3.41451 17.4448 3.375 17.3495 3.375 17.25C3.375 17.1505 3.41451 17.0552 3.48483 16.9848C3.55516 16.9145 3.65054 16.875 3.75 16.875C3.84946 16.875 3.94484 16.9145 4.01516 16.9848C4.08549 17.0552 4.125 17.1505 4.125 17.25Z",
|
|
@@ -13826,7 +14030,7 @@ var template = {
|
|
|
13826
14030
|
},
|
|
13827
14031
|
// ** Annotation **
|
|
13828
14032
|
"zoom-in": ({ className, fill }) => {
|
|
13829
|
-
return /* @__PURE__ */ (0,
|
|
14033
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13830
14034
|
"svg",
|
|
13831
14035
|
{
|
|
13832
14036
|
width: "24",
|
|
@@ -13835,7 +14039,7 @@ var template = {
|
|
|
13835
14039
|
fill: "none",
|
|
13836
14040
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13837
14041
|
className,
|
|
13838
|
-
children: /* @__PURE__ */ (0,
|
|
14042
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13839
14043
|
"path",
|
|
13840
14044
|
{
|
|
13841
14045
|
d: "M21 21L15.803 15.803M15.803 15.803C17.2096 14.3965 17.9998 12.4887 17.9998 10.4995C17.9998 8.51035 17.2096 6.60262 15.803 5.19605C14.3964 3.78947 12.4887 2.99927 10.4995 2.99927C8.51029 2.99927 6.60256 3.78947 5.19599 5.19605C3.78941 6.60262 2.99921 8.51035 2.99921 10.4995C2.99921 12.4887 3.78941 14.3965 5.19599 15.803C6.60256 17.2096 8.51029 17.9998 10.4995 17.9998C12.4887 17.9998 14.3964 17.2096 15.803 15.803ZM10.5 7.50005V13.5M13.5 10.5H7.49999",
|
|
@@ -13848,7 +14052,7 @@ var template = {
|
|
|
13848
14052
|
);
|
|
13849
14053
|
},
|
|
13850
14054
|
"zoom-out": ({ className, fill }) => {
|
|
13851
|
-
return /* @__PURE__ */ (0,
|
|
14055
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13852
14056
|
"svg",
|
|
13853
14057
|
{
|
|
13854
14058
|
width: "24",
|
|
@@ -13857,7 +14061,7 @@ var template = {
|
|
|
13857
14061
|
fill: "none",
|
|
13858
14062
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13859
14063
|
className,
|
|
13860
|
-
children: /* @__PURE__ */ (0,
|
|
14064
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13861
14065
|
"path",
|
|
13862
14066
|
{
|
|
13863
14067
|
d: "M21 21L15.803 15.803M15.803 15.803C17.2096 14.3965 17.9998 12.4887 17.9998 10.4995C17.9998 8.51035 17.2096 6.60262 15.803 5.19605C14.3964 3.78947 12.4887 2.99927 10.4995 2.99927C8.51029 2.99927 6.60256 3.78947 5.19599 5.19605C3.78941 6.60262 2.99921 8.51035 2.99921 10.4995C2.99921 12.4887 3.78941 14.3965 5.19599 15.803C6.60256 17.2096 8.51029 17.9998 10.4995 17.9998C12.4887 17.9998 14.3964 17.2096 15.803 15.803ZM13.5 10.5H7.49999",
|
|
@@ -13871,7 +14075,7 @@ var template = {
|
|
|
13871
14075
|
},
|
|
13872
14076
|
// ** Filter **
|
|
13873
14077
|
filter: ({ className, fill }) => {
|
|
13874
|
-
return /* @__PURE__ */ (0,
|
|
14078
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13875
14079
|
"svg",
|
|
13876
14080
|
{
|
|
13877
14081
|
width: "24",
|
|
@@ -13880,7 +14084,7 @@ var template = {
|
|
|
13880
14084
|
fill: "none",
|
|
13881
14085
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13882
14086
|
className,
|
|
13883
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14087
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13884
14088
|
"path",
|
|
13885
14089
|
{
|
|
13886
14090
|
"fill-rule": "evenodd",
|
|
@@ -13888,7 +14092,7 @@ var template = {
|
|
|
13888
14092
|
d: "M3.79198 2.938C6.50386 2.47904 9.24953 2.24889 12 2.25C14.797 2.25 17.54 2.486 20.209 2.938C20.6413 3.01266 21.0333 3.238 21.3154 3.57408C21.5974 3.91015 21.7514 4.33525 21.75 4.774V5.818C21.7498 6.61359 21.4336 7.37653 20.871 7.939L14.689 14.121C14.5497 14.2604 14.4393 14.4258 14.3639 14.6078C14.2886 14.7899 14.2499 14.985 14.25 15.182V18.109C14.2501 18.6662 14.0951 19.2125 13.8023 19.6865C13.5094 20.1606 13.0903 20.5437 12.592 20.793L10.835 21.671C10.7206 21.7281 10.5936 21.755 10.4659 21.7492C10.3383 21.7434 10.2142 21.7051 10.1055 21.6379C9.9968 21.5706 9.90708 21.4768 9.84486 21.3651C9.78264 21.2535 9.74998 21.1278 9.74998 21V15.182C9.74963 14.7843 9.59136 14.403 9.30998 14.122L3.12998 7.938C2.56733 7.37553 2.25115 6.61259 2.25098 5.817V4.774C2.25098 3.877 2.88998 3.091 3.79198 2.938Z",
|
|
13889
14093
|
fill: "currentColor"
|
|
13890
14094
|
}
|
|
13891
|
-
) : /* @__PURE__ */ (0,
|
|
14095
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13892
14096
|
"path",
|
|
13893
14097
|
{
|
|
13894
14098
|
d: "M12 3C14.755 3 17.455 3.232 20.083 3.678C20.616 3.768 21 4.234 21 4.774V5.818C21 6.11348 20.9418 6.40606 20.8287 6.67904C20.7157 6.95203 20.5499 7.20007 20.341 7.409L14.909 12.841C14.7001 13.0499 14.5343 13.298 14.4213 13.571C14.3082 13.8439 14.25 14.1365 14.25 14.432V17.359C14.2501 17.777 14.1337 18.1867 13.914 18.5423C13.6943 18.8978 13.3799 19.1851 13.006 19.372L9.75 21V14.432C9.75 14.1365 9.69181 13.8439 9.57874 13.571C9.46566 13.298 9.29993 13.0499 9.091 12.841L3.659 7.409C3.45007 7.20007 3.28434 6.95203 3.17126 6.67904C3.05819 6.40606 3 6.11348 3 5.818V4.774C3 4.234 3.384 3.768 3.917 3.678C6.58757 3.22586 9.29143 2.99906 12 3Z",
|
|
@@ -13901,7 +14105,7 @@ var template = {
|
|
|
13901
14105
|
);
|
|
13902
14106
|
},
|
|
13903
14107
|
"adjust-horizontal": ({ className, fill }) => {
|
|
13904
|
-
return /* @__PURE__ */ (0,
|
|
14108
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13905
14109
|
"svg",
|
|
13906
14110
|
{
|
|
13907
14111
|
width: "24",
|
|
@@ -13910,7 +14114,7 @@ var template = {
|
|
|
13910
14114
|
fill: "none",
|
|
13911
14115
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13912
14116
|
className,
|
|
13913
|
-
children: /* @__PURE__ */ (0,
|
|
14117
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13914
14118
|
"path",
|
|
13915
14119
|
{
|
|
13916
14120
|
d: "M10.5 6H20.25M10.5 6C10.5 6.39782 10.342 6.77936 10.0607 7.06066C9.77936 7.34196 9.39782 7.5 9 7.5C8.60218 7.5 8.22064 7.34196 7.93934 7.06066C7.65804 6.77936 7.5 6.39782 7.5 6M10.5 6C10.5 5.60218 10.342 5.22064 10.0607 4.93934C9.77936 4.65804 9.39782 4.5 9 4.5C8.60218 4.5 8.22064 4.65804 7.93934 4.93934C7.65804 5.22064 7.5 5.60218 7.5 6M7.5 6H3.75M10.5 18H20.25M10.5 18C10.5 18.3978 10.342 18.7794 10.0607 19.0607C9.77936 19.342 9.39782 19.5 9 19.5C8.60218 19.5 8.22064 19.342 7.93934 19.0607C7.65804 18.7794 7.5 18.3978 7.5 18M10.5 18C10.5 17.6022 10.342 17.2206 10.0607 16.9393C9.77936 16.658 9.39782 16.5 9 16.5C8.60218 16.5 8.22064 16.658 7.93934 16.9393C7.65804 17.2206 7.5 17.6022 7.5 18M7.5 18H3.75M16.5 12H20.25M16.5 12C16.5 12.3978 16.342 12.7794 16.0607 13.0607C15.7794 13.342 15.3978 13.5 15 13.5C14.6022 13.5 14.2206 13.342 13.9393 13.0607C13.658 12.7794 13.5 12.3978 13.5 12M16.5 12C16.5 11.6022 16.342 11.2206 16.0607 10.9393C15.7794 10.658 15.3978 10.5 15 10.5C14.6022 10.5 14.2206 10.658 13.9393 10.9393C13.658 11.2206 13.5 11.6022 13.5 12M13.5 12H3.75",
|
|
@@ -13923,7 +14127,7 @@ var template = {
|
|
|
13923
14127
|
);
|
|
13924
14128
|
},
|
|
13925
14129
|
"adjust-vertical": ({ className, fill }) => {
|
|
13926
|
-
return /* @__PURE__ */ (0,
|
|
14130
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13927
14131
|
"svg",
|
|
13928
14132
|
{
|
|
13929
14133
|
width: "24",
|
|
@@ -13932,7 +14136,7 @@ var template = {
|
|
|
13932
14136
|
fill: "none",
|
|
13933
14137
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13934
14138
|
className,
|
|
13935
|
-
children: /* @__PURE__ */ (0,
|
|
14139
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13936
14140
|
"path",
|
|
13937
14141
|
{
|
|
13938
14142
|
d: "M6 13.5V3.75M6 13.5C6.39782 13.5 6.77936 13.658 7.06066 13.9393C7.34196 14.2206 7.5 14.6022 7.5 15C7.5 15.3978 7.34196 15.7794 7.06066 16.0607C6.77936 16.342 6.39782 16.5 6 16.5M6 13.5C5.60218 13.5 5.22064 13.658 4.93934 13.9393C4.65804 14.2206 4.5 14.6022 4.5 15C4.5 15.3978 4.65804 15.7794 4.93934 16.0607C5.22064 16.342 5.60218 16.5 6 16.5M6 16.5V20.25M18 13.5V3.75M18 13.5C18.3978 13.5 18.7794 13.658 19.0607 13.9393C19.342 14.2206 19.5 14.6022 19.5 15C19.5 15.3978 19.342 15.7794 19.0607 16.0607C18.7794 16.342 18.3978 16.5 18 16.5M18 13.5C17.6022 13.5 17.2206 13.658 16.9393 13.9393C16.658 14.2206 16.5 14.6022 16.5 15C16.5 15.3978 16.658 15.7794 16.9393 16.0607C17.2206 16.342 17.6022 16.5 18 16.5M18 16.5V20.25M12 7.5V3.75M12 7.5C12.3978 7.5 12.7794 7.65804 13.0607 7.93934C13.342 8.22064 13.5 8.60218 13.5 9C13.5 9.39782 13.342 9.77936 13.0607 10.0607C12.7794 10.342 12.3978 10.5 12 10.5M12 7.5C11.6022 7.5 11.2206 7.65804 10.9393 7.93934C10.658 8.22064 10.5 8.60218 10.5 9C10.5 9.39782 10.658 9.77936 10.9393 10.0607C11.2206 10.342 11.6022 10.5 12 10.5M12 10.5V20.25",
|
|
@@ -13945,7 +14149,7 @@ var template = {
|
|
|
13945
14149
|
);
|
|
13946
14150
|
},
|
|
13947
14151
|
"convert-horizontal": ({ className }) => {
|
|
13948
|
-
return /* @__PURE__ */ (0,
|
|
14152
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13949
14153
|
"svg",
|
|
13950
14154
|
{
|
|
13951
14155
|
width: "24",
|
|
@@ -13954,7 +14158,7 @@ var template = {
|
|
|
13954
14158
|
fill: "none",
|
|
13955
14159
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13956
14160
|
className,
|
|
13957
|
-
children: /* @__PURE__ */ (0,
|
|
14161
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13958
14162
|
"path",
|
|
13959
14163
|
{
|
|
13960
14164
|
d: "M7.5 21L3 16.5M3 16.5L7.5 12M3 16.5H16.5M16.5 3L21 7.5M21 7.5L16.5 12M21 7.5H7.5",
|
|
@@ -13967,7 +14171,7 @@ var template = {
|
|
|
13967
14171
|
);
|
|
13968
14172
|
},
|
|
13969
14173
|
"convert-vertical": ({ className }) => {
|
|
13970
|
-
return /* @__PURE__ */ (0,
|
|
14174
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13971
14175
|
"svg",
|
|
13972
14176
|
{
|
|
13973
14177
|
width: "24",
|
|
@@ -13976,7 +14180,7 @@ var template = {
|
|
|
13976
14180
|
fill: "none",
|
|
13977
14181
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13978
14182
|
className,
|
|
13979
|
-
children: /* @__PURE__ */ (0,
|
|
14183
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13980
14184
|
"path",
|
|
13981
14185
|
{
|
|
13982
14186
|
d: "M3 7.5L7.5 3M7.5 3L12 7.5M7.5 3V16.5M21 16.5L16.5 21M16.5 21L12 16.5M16.5 21V7.5",
|
|
@@ -13989,7 +14193,7 @@ var template = {
|
|
|
13989
14193
|
);
|
|
13990
14194
|
},
|
|
13991
14195
|
sparkle: ({ className, fill }) => {
|
|
13992
|
-
return /* @__PURE__ */ (0,
|
|
14196
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
13993
14197
|
"svg",
|
|
13994
14198
|
{
|
|
13995
14199
|
width: "24",
|
|
@@ -13998,7 +14202,7 @@ var template = {
|
|
|
13998
14202
|
fill: "none",
|
|
13999
14203
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14000
14204
|
className,
|
|
14001
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14205
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14002
14206
|
"path",
|
|
14003
14207
|
{
|
|
14004
14208
|
"fill-rule": "evenodd",
|
|
@@ -14006,7 +14210,7 @@ var template = {
|
|
|
14006
14210
|
d: "M9.00001 4.5C9.16297 4.50003 9.32149 4.55315 9.45158 4.6513C9.58167 4.74945 9.67625 4.8873 9.72101 5.044L10.534 7.89C10.7091 8.50292 11.0375 9.0611 11.4882 9.51183C11.9389 9.96255 12.4971 10.2909 13.11 10.466L15.956 11.279C16.1126 11.3239 16.2503 11.4185 16.3484 11.5486C16.4464 11.6786 16.4995 11.8371 16.4995 12C16.4995 12.1629 16.4464 12.3214 16.3484 12.4514C16.2503 12.5815 16.1126 12.6761 15.956 12.721L13.11 13.534C12.4971 13.7091 11.9389 14.0374 11.4882 14.4882C11.0375 14.9389 10.7091 15.4971 10.534 16.11L9.72101 18.956C9.67615 19.1126 9.58153 19.2503 9.45145 19.3484C9.32137 19.4464 9.1629 19.4995 9.00001 19.4995C8.83711 19.4995 8.67865 19.4464 8.54857 19.3484C8.41849 19.2503 8.32387 19.1126 8.27901 18.956L7.46601 16.11C7.29096 15.4971 6.96256 14.9389 6.51184 14.4882C6.06111 14.0374 5.50293 13.7091 4.89001 13.534L2.04401 12.721C1.88741 12.6761 1.74968 12.5815 1.65163 12.4514C1.55358 12.3214 1.50055 12.1629 1.50055 12C1.50055 11.8371 1.55358 11.6786 1.65163 11.5486C1.74968 11.4185 1.88741 11.3239 2.04401 11.279L4.89001 10.466C5.50293 10.2909 6.06111 9.96255 6.51184 9.51183C6.96256 9.0611 7.29096 8.50292 7.46601 7.89L8.27901 5.044C8.32377 4.8873 8.41835 4.74945 8.54844 4.6513C8.67853 4.55315 8.83705 4.50003 9.00001 4.5ZM18 1.5C18.1673 1.49991 18.3299 1.55576 18.4618 1.65869C18.5937 1.76161 18.6874 1.90569 18.728 2.068L18.986 3.104C19.222 4.044 19.956 4.778 20.896 5.014L21.932 5.272C22.0946 5.31228 22.2391 5.40586 22.3423 5.5378C22.4456 5.66974 22.5017 5.83246 22.5017 6C22.5017 6.16754 22.4456 6.33026 22.3423 6.4622C22.2391 6.59414 22.0946 6.68772 21.932 6.728L20.896 6.986C19.956 7.222 19.222 7.956 18.986 8.896L18.728 9.932C18.6877 10.0946 18.5942 10.2391 18.4622 10.3423C18.3303 10.4456 18.1675 10.5017 18 10.5017C17.8325 10.5017 17.6698 10.4456 17.5378 10.3423C17.4059 10.2391 17.3123 10.0946 17.272 9.932L17.014 8.896C16.8986 8.43443 16.66 8.0129 16.3235 7.67648C15.9871 7.34005 15.5656 7.10139 15.104 6.986L14.068 6.728C13.9054 6.68772 13.7609 6.59414 13.6577 6.4622C13.5544 6.33026 13.4983 6.16754 13.4983 6C13.4983 5.83246 13.5544 5.66974 13.6577 5.5378C13.7609 5.40586 13.9054 5.31228 14.068 5.272L15.104 5.014C15.5656 4.89861 15.9871 4.65995 16.3235 4.32352C16.66 3.9871 16.8986 3.56557 17.014 3.104L17.272 2.068C17.3126 1.90569 17.4063 1.76161 17.5382 1.65869C17.6702 1.55576 17.8327 1.49991 18 1.5ZM16.5 15C16.6575 14.9999 16.8111 15.0494 16.9389 15.1415C17.0667 15.2336 17.1622 15.3636 17.212 15.513L17.606 16.696C17.756 17.143 18.106 17.495 18.554 17.644L19.737 18.039C19.886 18.089 20.0155 18.1845 20.1072 18.3121C20.199 18.4397 20.2483 18.5929 20.2483 18.75C20.2483 18.9071 20.199 19.0603 20.1072 19.1879C20.0155 19.3155 19.886 19.411 19.737 19.461L18.554 19.856C18.107 20.006 17.755 20.356 17.606 20.804L17.211 21.987C17.161 22.136 17.0655 22.2655 16.9379 22.3572C16.8103 22.4489 16.6571 22.4983 16.5 22.4983C16.3429 22.4983 16.1897 22.4489 16.0621 22.3572C15.9346 22.2655 15.839 22.136 15.789 21.987L15.394 20.804C15.3203 20.5833 15.1963 20.3827 15.0318 20.2182C14.8673 20.0537 14.6667 19.9297 14.446 19.856L13.263 19.461C13.114 19.411 12.9845 19.3155 12.8928 19.1879C12.8011 19.0603 12.7517 18.9071 12.7517 18.75C12.7517 18.5929 12.8011 18.4397 12.8928 18.3121C12.9845 18.1845 13.114 18.089 13.263 18.039L14.446 17.644C14.893 17.494 15.245 17.144 15.394 16.696L15.789 15.513C15.8387 15.3637 15.9341 15.2339 16.0617 15.1418C16.1893 15.0497 16.3427 15.0001 16.5 15Z",
|
|
14007
14211
|
fill: "currentColor"
|
|
14008
14212
|
}
|
|
14009
|
-
) }) : /* @__PURE__ */ (0,
|
|
14213
|
+
) }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14010
14214
|
"path",
|
|
14011
14215
|
{
|
|
14012
14216
|
d: "M9.813 15.904L9 18.75L8.187 15.904C7.97687 15.1689 7.5829 14.4994 7.04226 13.9587C6.50162 13.4181 5.83214 13.0241 5.097 12.814L2.25 12L5.096 11.187C5.83114 10.9769 6.50062 10.5829 7.04126 10.0423C7.5819 9.50162 7.97587 8.83214 8.186 8.097L9 5.25L9.813 8.096C10.0231 8.83114 10.4171 9.50062 10.9577 10.0413C11.4984 10.5819 12.1679 10.9759 12.903 11.186L15.75 12L12.904 12.813C12.1689 13.0231 11.4994 13.4171 10.9587 13.9577C10.4181 14.4984 10.0241 15.1679 9.814 15.903L9.813 15.904ZM18.259 8.715L18 9.75L17.741 8.715C17.5927 8.12159 17.286 7.57962 16.8536 7.14703C16.4212 6.71444 15.8794 6.40749 15.286 6.259L14.25 6L15.286 5.741C15.8794 5.59251 16.4212 5.28556 16.8536 4.85297C17.286 4.42038 17.5927 3.87841 17.741 3.285L18 2.25L18.259 3.285C18.4073 3.87854 18.7142 4.42059 19.1468 4.85319C19.5794 5.28579 20.1215 5.59267 20.715 5.741L21.75 6L20.715 6.259C20.1215 6.40733 19.5794 6.71421 19.1468 7.14681C18.7142 7.57941 18.4073 8.12147 18.259 8.715ZM16.894 20.567L16.5 21.75L16.106 20.567C15.9955 20.2356 15.8094 19.9345 15.5625 19.6875C15.3155 19.4406 15.0144 19.2545 14.683 19.144L13.5 18.75L14.683 18.356C15.0144 18.2455 15.3155 18.0594 15.5625 17.8125C15.8094 17.5655 15.9955 17.2644 16.106 16.933L16.5 15.75L16.894 16.933C17.0045 17.2644 17.1906 17.5655 17.4375 17.8125C17.6845 18.0594 17.9856 18.2455 18.317 18.356L19.5 18.75L18.317 19.144C17.9856 19.2545 17.6845 19.4406 17.4375 19.6875C17.1906 19.9345 17.0045 20.2356 16.894 20.567Z",
|
|
@@ -14020,7 +14224,7 @@ var template = {
|
|
|
14020
14224
|
},
|
|
14021
14225
|
// ** User **
|
|
14022
14226
|
user: ({ className, fill }) => {
|
|
14023
|
-
return /* @__PURE__ */ (0,
|
|
14227
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14024
14228
|
"svg",
|
|
14025
14229
|
{
|
|
14026
14230
|
width: "24",
|
|
@@ -14029,7 +14233,7 @@ var template = {
|
|
|
14029
14233
|
fill: "none",
|
|
14030
14234
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14031
14235
|
className,
|
|
14032
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14236
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14033
14237
|
"path",
|
|
14034
14238
|
{
|
|
14035
14239
|
"fill-rule": "evenodd",
|
|
@@ -14037,7 +14241,7 @@ var template = {
|
|
|
14037
14241
|
d: "M7.49997 6C7.49997 4.80653 7.97408 3.66193 8.81799 2.81802C9.66191 1.97411 10.8065 1.5 12 1.5C13.1934 1.5 14.338 1.97411 15.182 2.81802C16.0259 3.66193 16.5 4.80653 16.5 6C16.5 7.19347 16.0259 8.33807 15.182 9.18198C14.338 10.0259 13.1934 10.5 12 10.5C10.8065 10.5 9.66191 10.0259 8.81799 9.18198C7.97408 8.33807 7.49997 7.19347 7.49997 6ZM3.75097 20.105C3.78469 17.9395 4.66862 15.8741 6.21193 14.3546C7.75525 12.8351 9.83419 11.9834 12 11.9834C14.1658 11.9834 16.2447 12.8351 17.788 14.3546C19.3313 15.8741 20.2153 17.9395 20.249 20.105C20.2516 20.2508 20.2116 20.3942 20.134 20.5176C20.0564 20.641 19.9445 20.7392 19.812 20.8C17.3611 21.9237 14.6961 22.5037 12 22.5C9.21397 22.5 6.56697 21.892 4.18797 20.8C4.05546 20.7392 3.94355 20.641 3.86594 20.5176C3.78832 20.3942 3.74837 20.2508 3.75097 20.105Z",
|
|
14038
14242
|
fill: "currentColor"
|
|
14039
14243
|
}
|
|
14040
|
-
) : /* @__PURE__ */ (0,
|
|
14244
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14041
14245
|
"path",
|
|
14042
14246
|
{
|
|
14043
14247
|
d: "M15.75 6C15.75 6.99456 15.3549 7.94839 14.6516 8.65165C13.9484 9.35491 12.9945 9.75 12 9.75C11.0054 9.75 10.0516 9.35491 9.34833 8.65165C8.64506 7.94839 8.24998 6.99456 8.24998 6C8.24998 5.00544 8.64506 4.05161 9.34833 3.34835C10.0516 2.64509 11.0054 2.25 12 2.25C12.9945 2.25 13.9484 2.64509 14.6516 3.34835C15.3549 4.05161 15.75 5.00544 15.75 6ZM4.50098 20.118C4.53311 18.1504 5.33731 16.2742 6.74015 14.894C8.14299 13.5139 10.0321 12.7405 12 12.7405C13.9679 12.7405 15.857 13.5139 17.2598 14.894C18.6626 16.2742 19.4668 18.1504 19.499 20.118C17.1464 21.1968 14.5881 21.7535 12 21.75C9.32398 21.75 6.78398 21.166 4.50098 20.118Z",
|
|
@@ -14050,7 +14254,7 @@ var template = {
|
|
|
14050
14254
|
);
|
|
14051
14255
|
},
|
|
14052
14256
|
users: ({ className, fill }) => {
|
|
14053
|
-
return /* @__PURE__ */ (0,
|
|
14257
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14054
14258
|
"svg",
|
|
14055
14259
|
{
|
|
14056
14260
|
width: "24",
|
|
@@ -14059,13 +14263,13 @@ var template = {
|
|
|
14059
14263
|
fill: "none",
|
|
14060
14264
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14061
14265
|
className,
|
|
14062
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14266
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14063
14267
|
"path",
|
|
14064
14268
|
{
|
|
14065
14269
|
d: "M4.5 6.375C4.5 5.28098 4.9346 4.23177 5.70818 3.45818C6.48177 2.6846 7.53098 2.25 8.625 2.25C9.71902 2.25 10.7682 2.6846 11.5418 3.45818C12.3154 4.23177 12.75 5.28098 12.75 6.375C12.75 7.46902 12.3154 8.51823 11.5418 9.29182C10.7682 10.0654 9.71902 10.5 8.625 10.5C7.53098 10.5 6.48177 10.0654 5.70818 9.29182C4.9346 8.51823 4.5 7.46902 4.5 6.375ZM14.25 8.625C14.25 8.18179 14.3373 7.74292 14.5069 7.33344C14.6765 6.92397 14.9251 6.55191 15.2385 6.23851C15.5519 5.92512 15.924 5.67652 16.3334 5.50691C16.7429 5.3373 17.1818 5.25 17.625 5.25C18.0682 5.25 18.5071 5.3373 18.9166 5.50691C19.326 5.67652 19.6981 5.92512 20.0115 6.23851C20.3249 6.55191 20.5735 6.92397 20.7431 7.33344C20.9127 7.74292 21 8.18179 21 8.625C21 9.52011 20.6444 10.3785 20.0115 11.0115C19.3786 11.6444 18.5201 12 17.625 12C16.7299 12 15.8715 11.6444 15.2385 11.0115C14.6056 10.3785 14.25 9.52011 14.25 8.625ZM1.5 19.125C1.5 17.2353 2.25067 15.4231 3.58686 14.0869C4.92306 12.7507 6.73533 12 8.625 12C10.5147 12 12.3269 12.7507 13.6631 14.0869C14.9993 15.4231 15.75 17.2353 15.75 19.125V19.128L15.749 19.247C15.7469 19.3742 15.7125 19.4987 15.6489 19.6089C15.5854 19.7191 15.495 19.8114 15.386 19.877C13.3452 21.106 11.0073 21.7536 8.625 21.75C6.153 21.75 3.839 21.066 1.865 19.877C1.75585 19.8115 1.66517 19.7193 1.60149 19.6091C1.53781 19.4989 1.50323 19.3743 1.501 19.247L1.5 19.125ZM17.25 19.128L17.249 19.272C17.2434 19.6053 17.1638 19.9332 17.016 20.232C18.7617 20.3397 20.5054 19.9916 22.076 19.222C22.1975 19.1626 22.3006 19.0715 22.3745 18.9583C22.4485 18.8451 22.4904 18.7141 22.496 18.579C22.5313 17.7402 22.3494 16.9066 21.9679 16.1588C21.5864 15.4109 21.0183 14.7743 20.3185 14.3105C19.6188 13.8467 18.8111 13.5715 17.9738 13.5115C17.1364 13.4515 16.2977 13.6087 15.539 13.968C16.6522 15.4566 17.2522 17.2662 17.249 19.125L17.25 19.128Z",
|
|
14066
14270
|
fill: "currentColor"
|
|
14067
14271
|
}
|
|
14068
|
-
) : /* @__PURE__ */ (0,
|
|
14272
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14069
14273
|
"path",
|
|
14070
14274
|
{
|
|
14071
14275
|
d: "M15 19.128C15.853 19.3757 16.7368 19.5009 17.625 19.5C19.0534 19.5021 20.4633 19.1764 21.746 18.548C21.7839 17.6517 21.5286 16.7675 21.0188 16.0293C20.509 15.2912 19.7724 14.7394 18.9207 14.4575C18.0691 14.1757 17.1487 14.1791 16.2992 14.4674C15.4497 14.7557 14.7173 15.313 14.213 16.055M15 19.128V19.125C15 18.012 14.714 16.965 14.213 16.055M15 19.128V19.234C13.0755 20.3931 10.8706 21.0038 8.62402 21C6.29302 21 4.11202 20.355 2.25002 19.234L2.24902 19.125C2.24826 17.7095 2.71864 16.3339 3.58601 15.2153C4.45338 14.0966 5.6684 13.2984 7.03951 12.9466C8.41063 12.5948 9.85985 12.7093 11.1587 13.2721C12.4575 13.8349 13.5321 14.814 14.213 16.055M12 6.375C12 7.27011 11.6444 8.12855 11.0115 8.76149C10.3786 9.39442 9.52013 9.75 8.62502 9.75C7.72992 9.75 6.87147 9.39442 6.23854 8.76149C5.6056 8.12855 5.25002 7.27011 5.25002 6.375C5.25002 5.47989 5.6056 4.62145 6.23854 3.98851C6.87147 3.35558 7.72992 3 8.62502 3C9.52013 3 10.3786 3.35558 11.0115 3.98851C11.6444 4.62145 12 5.47989 12 6.375ZM20.25 8.625C20.25 9.32119 19.9735 9.98887 19.4812 10.4812C18.9889 10.9734 18.3212 11.25 17.625 11.25C16.9288 11.25 16.2612 10.9734 15.7689 10.4812C15.2766 9.98887 15 9.32119 15 8.625C15 7.92881 15.2766 7.26113 15.7689 6.76884C16.2612 6.27656 16.9288 6 17.625 6C18.3212 6 18.9889 6.27656 19.4812 6.76884C19.9735 7.26113 20.25 7.92881 20.25 8.625Z",
|
|
@@ -14078,7 +14282,7 @@ var template = {
|
|
|
14078
14282
|
);
|
|
14079
14283
|
},
|
|
14080
14284
|
"user-add": ({ className, fill }) => {
|
|
14081
|
-
return /* @__PURE__ */ (0,
|
|
14285
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14082
14286
|
"svg",
|
|
14083
14287
|
{
|
|
14084
14288
|
width: "24",
|
|
@@ -14087,13 +14291,13 @@ var template = {
|
|
|
14087
14291
|
fill: "none",
|
|
14088
14292
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14089
14293
|
className,
|
|
14090
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14294
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14091
14295
|
"path",
|
|
14092
14296
|
{
|
|
14093
14297
|
d: "M5.25 6.375C5.25 5.28098 5.6846 4.23177 6.45818 3.45818C7.23177 2.6846 8.28098 2.25 9.375 2.25C10.469 2.25 11.5182 2.6846 12.2918 3.45818C13.0654 4.23177 13.5 5.28098 13.5 6.375C13.5 7.46902 13.0654 8.51823 12.2918 9.29182C11.5182 10.0654 10.469 10.5 9.375 10.5C8.28098 10.5 7.23177 10.0654 6.45818 9.29182C5.6846 8.51823 5.25 7.46902 5.25 6.375ZM2.25 19.125C2.25 17.2353 3.00067 15.4231 4.33686 14.0869C5.67306 12.7507 7.48533 12 9.375 12C11.2647 12 13.0769 12.7507 14.4131 14.0869C15.7493 15.4231 16.5 17.2353 16.5 19.125V19.128L16.499 19.247C16.4969 19.3742 16.4624 19.4987 16.3989 19.6089C16.3354 19.7191 16.245 19.8114 16.136 19.877C14.0952 21.106 11.7573 21.7536 9.375 21.75C6.903 21.75 4.589 21.066 2.615 19.877C2.50585 19.8115 2.41517 19.7193 2.35149 19.6091C2.28781 19.4989 2.25323 19.3743 2.251 19.247L2.25 19.125ZM18.75 7.5C18.75 7.30109 18.671 7.11032 18.5303 6.96967C18.3897 6.82902 18.1989 6.75 18 6.75C17.8011 6.75 17.6103 6.82902 17.4697 6.96967C17.329 7.11032 17.25 7.30109 17.25 7.5V9.75H15C14.8011 9.75 14.6103 9.82902 14.4697 9.96967C14.329 10.1103 14.25 10.3011 14.25 10.5C14.25 10.6989 14.329 10.8897 14.4697 11.0303C14.6103 11.171 14.8011 11.25 15 11.25H17.25V13.5C17.25 13.6989 17.329 13.8897 17.4697 14.0303C17.6103 14.171 17.8011 14.25 18 14.25C18.1989 14.25 18.3897 14.171 18.5303 14.0303C18.671 13.8897 18.75 13.6989 18.75 13.5V11.25H21C21.1989 11.25 21.3897 11.171 21.5303 11.0303C21.671 10.8897 21.75 10.6989 21.75 10.5C21.75 10.3011 21.671 10.1103 21.5303 9.96967C21.3897 9.82902 21.1989 9.75 21 9.75H18.75V7.5Z",
|
|
14094
14298
|
fill: "currentColor"
|
|
14095
14299
|
}
|
|
14096
|
-
) : /* @__PURE__ */ (0,
|
|
14300
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14097
14301
|
"path",
|
|
14098
14302
|
{
|
|
14099
14303
|
d: "M18 7.5V10.5M18 10.5V13.5M18 10.5H21M18 10.5H15M12.75 6.375C12.75 7.27011 12.3944 8.12855 11.7615 8.76149C11.1285 9.39442 10.2701 9.75 9.375 9.75C8.47989 9.75 7.62145 9.39442 6.98851 8.76149C6.35558 8.12855 6 7.27011 6 6.375C6 5.47989 6.35558 4.62145 6.98851 3.98851C7.62145 3.35558 8.47989 3 9.375 3C10.2701 3 11.1285 3.35558 11.7615 3.98851C12.3944 4.62145 12.75 5.47989 12.75 6.375ZM3 19.235V19.125C3 17.4342 3.67165 15.8127 4.86719 14.6172C6.06274 13.4216 7.68424 12.75 9.375 12.75C11.0658 12.75 12.6873 13.4216 13.8828 14.6172C15.0784 15.8127 15.75 17.4342 15.75 19.125V19.234C13.8255 20.3931 11.6206 21.0038 9.374 21C7.043 21 4.862 20.355 3 19.234V19.235Z",
|
|
@@ -14106,7 +14310,7 @@ var template = {
|
|
|
14106
14310
|
);
|
|
14107
14311
|
},
|
|
14108
14312
|
"user-remove": ({ className, fill }) => {
|
|
14109
|
-
return /* @__PURE__ */ (0,
|
|
14313
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14110
14314
|
"svg",
|
|
14111
14315
|
{
|
|
14112
14316
|
width: "24",
|
|
@@ -14115,13 +14319,13 @@ var template = {
|
|
|
14115
14319
|
fill: "none",
|
|
14116
14320
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14117
14321
|
className,
|
|
14118
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14322
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14119
14323
|
"path",
|
|
14120
14324
|
{
|
|
14121
14325
|
d: "M10.375 2.25C9.28097 2.25 8.23176 2.6846 7.45817 3.45818C6.68458 4.23177 6.24998 5.28098 6.24998 6.375C6.24998 7.46902 6.68458 8.51823 7.45817 9.29182C8.23176 10.0654 9.28097 10.5 10.375 10.5C11.469 10.5 12.5182 10.0654 13.2918 9.29182C14.0654 8.51823 14.5 7.46902 14.5 6.375C14.5 5.28098 14.0654 4.23177 13.2918 3.45818C12.5182 2.6846 11.469 2.25 10.375 2.25ZM10.375 12C9.42904 12 8.49257 12.1883 7.6202 12.5541C6.74782 12.9198 5.957 13.4556 5.29387 14.1302C4.63074 14.8047 4.10857 15.6046 3.75783 16.4831C3.40708 17.3616 3.23479 18.3012 3.25098 19.247C3.2531 19.3742 3.28753 19.4987 3.35103 19.6089C3.41454 19.7191 3.50502 19.8114 3.61398 19.877C5.65478 21.106 7.99272 21.7536 10.375 21.75C12.847 21.75 15.161 21.066 17.135 19.877C17.2441 19.8115 17.3348 19.7193 17.3985 19.6091C17.4622 19.4989 17.4968 19.3743 17.499 19.247L17.5 19.127V19.125C17.5 17.2353 16.7493 15.4231 15.4131 14.0869C14.0769 12.7507 12.2647 12 10.375 12ZM16 9.75C15.8011 9.75 15.6103 9.82902 15.4697 9.96967C15.329 10.1103 15.25 10.3011 15.25 10.5C15.25 10.6989 15.329 10.8897 15.4697 11.0303C15.6103 11.171 15.8011 11.25 16 11.25H22C22.1989 11.25 22.3897 11.171 22.5303 11.0303C22.671 10.8897 22.75 10.6989 22.75 10.5C22.75 10.3011 22.671 10.1103 22.5303 9.96967C22.3897 9.82902 22.1989 9.75 22 9.75H16Z",
|
|
14122
14326
|
fill: "currentColor"
|
|
14123
14327
|
}
|
|
14124
|
-
) : /* @__PURE__ */ (0,
|
|
14328
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14125
14329
|
"path",
|
|
14126
14330
|
{
|
|
14127
14331
|
d: "M22 10.5H16M13.75 6.375C13.75 6.81821 13.6627 7.25708 13.4931 7.66656C13.3235 8.07603 13.0749 8.44809 12.7615 8.76149C12.4481 9.07488 12.076 9.32348 11.6666 9.49309C11.2571 9.6627 10.8182 9.75 10.375 9.75C9.93179 9.75 9.49292 9.6627 9.08344 9.49309C8.67397 9.32348 8.30191 9.07488 7.98851 8.76149C7.67512 8.44809 7.42652 8.07603 7.25691 7.66656C7.0873 7.25708 7 6.81821 7 6.375C7 5.47989 7.35558 4.62145 7.98851 3.98851C8.62145 3.35558 9.47989 3 10.375 3C11.2701 3 12.1285 3.35558 12.7615 3.98851C13.3944 4.62145 13.75 5.47989 13.75 6.375ZM4 19.235V19.125C4 17.4342 4.67165 15.8127 5.86719 14.6172C7.06274 13.4216 8.68424 12.75 10.375 12.75C12.0658 12.75 13.6873 13.4216 14.8828 14.6172C16.0784 15.8127 16.75 17.4342 16.75 19.125V19.234C14.8255 20.3931 12.6206 21.0038 10.374 21C8.043 21 5.862 20.355 4 19.234V19.235Z",
|
|
@@ -14135,7 +14339,7 @@ var template = {
|
|
|
14135
14339
|
},
|
|
14136
14340
|
// ** Status **
|
|
14137
14341
|
check: ({ className, fill }) => {
|
|
14138
|
-
return /* @__PURE__ */ (0,
|
|
14342
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14139
14343
|
"svg",
|
|
14140
14344
|
{
|
|
14141
14345
|
width: "24",
|
|
@@ -14144,7 +14348,7 @@ var template = {
|
|
|
14144
14348
|
fill: "none",
|
|
14145
14349
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14146
14350
|
className,
|
|
14147
|
-
children: /* @__PURE__ */ (0,
|
|
14351
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14148
14352
|
"path",
|
|
14149
14353
|
{
|
|
14150
14354
|
d: "M4.5 12.75L10.5 18.75L19.5 5.25",
|
|
@@ -14157,7 +14361,7 @@ var template = {
|
|
|
14157
14361
|
);
|
|
14158
14362
|
},
|
|
14159
14363
|
"check-circle": ({ className, fill }) => {
|
|
14160
|
-
return /* @__PURE__ */ (0,
|
|
14364
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14161
14365
|
"svg",
|
|
14162
14366
|
{
|
|
14163
14367
|
width: "24",
|
|
@@ -14166,7 +14370,7 @@ var template = {
|
|
|
14166
14370
|
fill: "none",
|
|
14167
14371
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14168
14372
|
className,
|
|
14169
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14373
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14170
14374
|
"path",
|
|
14171
14375
|
{
|
|
14172
14376
|
"fill-rule": "evenodd",
|
|
@@ -14174,7 +14378,7 @@ var template = {
|
|
|
14174
14378
|
d: "M2.25 12C2.25 6.615 6.615 2.25 12 2.25C17.385 2.25 21.75 6.615 21.75 12C21.75 17.385 17.385 21.75 12 21.75C6.615 21.75 2.25 17.385 2.25 12ZM15.61 10.186C15.67 10.1061 15.7134 10.0149 15.7377 9.91795C15.762 9.82098 15.7666 9.72014 15.7514 9.62135C15.7361 9.52257 15.7012 9.42782 15.6489 9.3427C15.5965 9.25757 15.5276 9.18378 15.4463 9.12565C15.3649 9.06753 15.2728 9.02624 15.1753 9.00423C15.0778 8.98221 14.9769 8.97991 14.8785 8.99746C14.7801 9.01501 14.6862 9.05205 14.6023 9.10641C14.5184 9.16077 14.4462 9.23135 14.39 9.314L11.154 13.844L9.53 12.22C9.38783 12.0875 9.19978 12.0154 9.00548 12.0188C8.81118 12.0223 8.62579 12.101 8.48838 12.2384C8.35097 12.3758 8.27225 12.5612 8.26882 12.7555C8.2654 12.9498 8.33752 13.1378 8.47 13.28L10.72 15.53C10.797 15.6069 10.8898 15.6662 10.992 15.7036C11.0942 15.7411 11.2033 15.7559 11.3118 15.7469C11.4202 15.738 11.5255 15.7055 11.6201 15.6519C11.7148 15.5982 11.7967 15.5245 11.86 15.436L15.61 10.186Z",
|
|
14175
14379
|
fill: "currentColor"
|
|
14176
14380
|
}
|
|
14177
|
-
) : /* @__PURE__ */ (0,
|
|
14381
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14178
14382
|
"path",
|
|
14179
14383
|
{
|
|
14180
14384
|
d: "M9 12.75L11.25 15L15 9.75M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12Z",
|
|
@@ -14187,7 +14391,7 @@ var template = {
|
|
|
14187
14391
|
);
|
|
14188
14392
|
},
|
|
14189
14393
|
"info-circle": ({ className, fill }) => {
|
|
14190
|
-
return /* @__PURE__ */ (0,
|
|
14394
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14191
14395
|
"svg",
|
|
14192
14396
|
{
|
|
14193
14397
|
width: "24",
|
|
@@ -14196,7 +14400,7 @@ var template = {
|
|
|
14196
14400
|
fill: "none",
|
|
14197
14401
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14198
14402
|
className,
|
|
14199
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14403
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14200
14404
|
"path",
|
|
14201
14405
|
{
|
|
14202
14406
|
"fill-rule": "evenodd",
|
|
@@ -14204,7 +14408,7 @@ var template = {
|
|
|
14204
14408
|
d: "M2.25 12C2.25 6.615 6.615 2.25 12 2.25C17.385 2.25 21.75 6.615 21.75 12C21.75 17.385 17.385 21.75 12 21.75C6.615 21.75 2.25 17.385 2.25 12ZM10.956 10.558C12.102 9.985 13.393 11.021 13.082 12.264L12.373 15.1L12.415 15.08C12.5912 15.0025 12.7905 14.9958 12.9715 15.0612C13.1526 15.1265 13.3016 15.259 13.3877 15.4312C13.4737 15.6033 13.4903 15.802 13.434 15.9861C13.3777 16.1702 13.2527 16.3255 13.085 16.42L13.045 16.442C11.898 17.015 10.607 15.979 10.918 14.736L11.628 11.9L11.586 11.92C11.4975 11.9692 11.4 11.9999 11.2994 12.0104C11.1987 12.0209 11.097 12.0109 11.0003 11.981C10.9036 11.9511 10.8139 11.902 10.7367 11.8366C10.6595 11.7711 10.5964 11.6907 10.551 11.6002C10.5057 11.5098 10.4792 11.411 10.4731 11.31C10.4669 11.209 10.4813 11.1078 10.5153 11.0124C10.5493 10.9171 10.6022 10.8297 10.6709 10.7553C10.7396 10.681 10.8226 10.6214 10.915 10.58L10.956 10.558ZM12 9C12.1989 9 12.3897 8.92098 12.5303 8.78033C12.671 8.63968 12.75 8.44891 12.75 8.25C12.75 8.05109 12.671 7.86032 12.5303 7.71967C12.3897 7.57902 12.1989 7.5 12 7.5C11.8011 7.5 11.6103 7.57902 11.4697 7.71967C11.329 7.86032 11.25 8.05109 11.25 8.25C11.25 8.44891 11.329 8.63968 11.4697 8.78033C11.6103 8.92098 11.8011 9 12 9Z",
|
|
14205
14409
|
fill: "currentColor"
|
|
14206
14410
|
}
|
|
14207
|
-
) : /* @__PURE__ */ (0,
|
|
14411
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14208
14412
|
"path",
|
|
14209
14413
|
{
|
|
14210
14414
|
d: "M11.25 11.25L11.291 11.23C11.4192 11.1659 11.5631 11.14 11.7057 11.1552C11.8482 11.1703 11.9834 11.2261 12.0952 11.3157C12.2071 11.4054 12.2909 11.5252 12.3368 11.661C12.3826 11.7968 12.3886 11.9429 12.354 12.082L11.646 14.918C11.6111 15.0572 11.6169 15.2034 11.6627 15.3394C11.7084 15.4754 11.7922 15.5954 11.9041 15.6852C12.016 15.775 12.1513 15.8308 12.294 15.846C12.4367 15.8612 12.5807 15.8352 12.709 15.771L12.75 15.75M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12ZM12 8.25H12.008V8.258H12V8.25Z",
|
|
@@ -14217,7 +14421,7 @@ var template = {
|
|
|
14217
14421
|
);
|
|
14218
14422
|
},
|
|
14219
14423
|
"question-circle": ({ className, fill }) => {
|
|
14220
|
-
return /* @__PURE__ */ (0,
|
|
14424
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14221
14425
|
"svg",
|
|
14222
14426
|
{
|
|
14223
14427
|
width: "24",
|
|
@@ -14226,7 +14430,7 @@ var template = {
|
|
|
14226
14430
|
fill: "none",
|
|
14227
14431
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14228
14432
|
className,
|
|
14229
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14433
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14230
14434
|
"path",
|
|
14231
14435
|
{
|
|
14232
14436
|
"fill-rule": "evenodd",
|
|
@@ -14234,7 +14438,7 @@ var template = {
|
|
|
14234
14438
|
d: "M2.25 12C2.25 6.615 6.615 2.25 12 2.25C17.385 2.25 21.75 6.615 21.75 12C21.75 17.385 17.385 21.75 12 21.75C6.615 21.75 2.25 17.385 2.25 12ZM13.628 8.083C12.738 7.306 11.262 7.306 10.373 8.083C10.2233 8.21402 10.0277 8.28019 9.82915 8.26697C9.63064 8.25375 9.44552 8.16221 9.3145 8.0125C9.18348 7.86279 9.11731 7.66716 9.13053 7.46865C9.14375 7.27014 9.23529 7.08502 9.385 6.954C10.839 5.682 13.161 5.682 14.615 6.954C16.128 8.278 16.128 10.472 14.615 11.796C14.362 12.0166 14.0805 12.2023 13.778 12.348C13.102 12.676 12.75 13.122 12.75 13.5V14.25C12.75 14.4489 12.671 14.6397 12.5303 14.7803C12.3897 14.921 12.1989 15 12 15C11.8011 15 11.6103 14.921 11.4697 14.7803C11.329 14.6397 11.25 14.4489 11.25 14.25V13.5C11.25 12.221 12.31 11.393 13.125 10.998C13.307 10.91 13.476 10.799 13.628 10.667C14.458 9.94 14.458 8.81 13.628 8.083ZM12 18C12.1989 18 12.3897 17.921 12.5303 17.7803C12.671 17.6397 12.75 17.4489 12.75 17.25C12.75 17.0511 12.671 16.8603 12.5303 16.7197C12.3897 16.579 12.1989 16.5 12 16.5C11.8011 16.5 11.6103 16.579 11.4697 16.7197C11.329 16.8603 11.25 17.0511 11.25 17.25C11.25 17.4489 11.329 17.6397 11.4697 17.7803C11.6103 17.921 11.8011 18 12 18Z",
|
|
14235
14439
|
fill: "currentColor"
|
|
14236
14440
|
}
|
|
14237
|
-
) : /* @__PURE__ */ (0,
|
|
14441
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14238
14442
|
"path",
|
|
14239
14443
|
{
|
|
14240
14444
|
d: "M9.879 7.519C11.05 6.494 12.95 6.494 14.121 7.519C15.293 8.544 15.293 10.206 14.121 11.231C13.918 11.41 13.691 11.557 13.451 11.673C12.706 12.034 12.001 12.672 12.001 13.5V14.25M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12ZM12 17.25H12.008V17.258H12V17.25Z",
|
|
@@ -14247,7 +14451,7 @@ var template = {
|
|
|
14247
14451
|
);
|
|
14248
14452
|
},
|
|
14249
14453
|
"exclamation-circle": ({ className, fill }) => {
|
|
14250
|
-
return /* @__PURE__ */ (0,
|
|
14454
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14251
14455
|
"svg",
|
|
14252
14456
|
{
|
|
14253
14457
|
width: "24",
|
|
@@ -14256,7 +14460,7 @@ var template = {
|
|
|
14256
14460
|
fill: "none",
|
|
14257
14461
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14258
14462
|
className,
|
|
14259
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14463
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14260
14464
|
"path",
|
|
14261
14465
|
{
|
|
14262
14466
|
"fill-rule": "evenodd",
|
|
@@ -14264,7 +14468,7 @@ var template = {
|
|
|
14264
14468
|
d: "M2.25 12C2.25 6.615 6.615 2.25 12 2.25C17.385 2.25 21.75 6.615 21.75 12C21.75 17.385 17.385 21.75 12 21.75C6.615 21.75 2.25 17.385 2.25 12ZM12 8.25C12.1989 8.25 12.3897 8.32902 12.5303 8.46967C12.671 8.61032 12.75 8.80109 12.75 9V12.75C12.75 12.9489 12.671 13.1397 12.5303 13.2803C12.3897 13.421 12.1989 13.5 12 13.5C11.8011 13.5 11.6103 13.421 11.4697 13.2803C11.329 13.1397 11.25 12.9489 11.25 12.75V9C11.25 8.80109 11.329 8.61032 11.4697 8.46967C11.6103 8.32902 11.8011 8.25 12 8.25ZM12 16.5C12.1989 16.5 12.3897 16.421 12.5303 16.2803C12.671 16.1397 12.75 15.9489 12.75 15.75C12.75 15.5511 12.671 15.3603 12.5303 15.2197C12.3897 15.079 12.1989 15 12 15C11.8011 15 11.6103 15.079 11.4697 15.2197C11.329 15.3603 11.25 15.5511 11.25 15.75C11.25 15.9489 11.329 16.1397 11.4697 16.2803C11.6103 16.421 11.8011 16.5 12 16.5Z",
|
|
14265
14469
|
fill: "currentColor"
|
|
14266
14470
|
}
|
|
14267
|
-
) : /* @__PURE__ */ (0,
|
|
14471
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14268
14472
|
"path",
|
|
14269
14473
|
{
|
|
14270
14474
|
d: "M12 9V12.75M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12ZM12 15.75H12.008V15.758H12V15.75Z",
|
|
@@ -14277,7 +14481,7 @@ var template = {
|
|
|
14277
14481
|
);
|
|
14278
14482
|
},
|
|
14279
14483
|
"exclamation-triangle": ({ className, fill }) => {
|
|
14280
|
-
return /* @__PURE__ */ (0,
|
|
14484
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14281
14485
|
"svg",
|
|
14282
14486
|
{
|
|
14283
14487
|
width: "24",
|
|
@@ -14286,7 +14490,7 @@ var template = {
|
|
|
14286
14490
|
fill: "none",
|
|
14287
14491
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14288
14492
|
className,
|
|
14289
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14493
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14290
14494
|
"path",
|
|
14291
14495
|
{
|
|
14292
14496
|
"fill-rule": "evenodd",
|
|
@@ -14294,7 +14498,7 @@ var template = {
|
|
|
14294
14498
|
d: "M9.401 3.00293C10.556 1.00293 13.444 1.00293 14.598 3.00293L21.953 15.7509C23.107 17.7509 21.663 20.2509 19.354 20.2509H4.645C2.336 20.2509 0.892995 17.7509 2.047 15.7509L9.4 3.00293H9.401ZM12 8.24993C12.1989 8.24993 12.3897 8.32895 12.5303 8.4696C12.671 8.61025 12.75 8.80102 12.75 8.99993V12.7499C12.75 12.9488 12.671 13.1396 12.5303 13.2803C12.3897 13.4209 12.1989 13.4999 12 13.4999C11.8011 13.4999 11.6103 13.4209 11.4697 13.2803C11.329 13.1396 11.25 12.9488 11.25 12.7499V8.99993C11.25 8.80102 11.329 8.61025 11.4697 8.4696C11.6103 8.32895 11.8011 8.24993 12 8.24993ZM12 16.4999C12.1989 16.4999 12.3897 16.4209 12.5303 16.2803C12.671 16.1396 12.75 15.9488 12.75 15.7499C12.75 15.551 12.671 15.3603 12.5303 15.2196C12.3897 15.0789 12.1989 14.9999 12 14.9999C11.8011 14.9999 11.6103 15.0789 11.4697 15.2196C11.329 15.3603 11.25 15.551 11.25 15.7499C11.25 15.9488 11.329 16.1396 11.4697 16.2803C11.6103 16.4209 11.8011 16.4999 12 16.4999Z",
|
|
14295
14499
|
fill: "currentColor"
|
|
14296
14500
|
}
|
|
14297
|
-
) : /* @__PURE__ */ (0,
|
|
14501
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14298
14502
|
"path",
|
|
14299
14503
|
{
|
|
14300
14504
|
d: "M12 8.99993V12.7499M2.697 16.1259C1.831 17.6259 2.914 19.4999 4.645 19.4999H19.355C21.085 19.4999 22.168 17.6259 21.303 16.1259L13.949 3.37793C13.083 1.87793 10.917 1.87793 10.051 3.37793L2.697 16.1259ZM12 15.7499H12.007V15.7579H12V15.7499Z",
|
|
@@ -14308,7 +14512,7 @@ var template = {
|
|
|
14308
14512
|
},
|
|
14309
14513
|
// ** Arrow Group **
|
|
14310
14514
|
"arrow-up": ({ className, fill }) => {
|
|
14311
|
-
return /* @__PURE__ */ (0,
|
|
14515
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14312
14516
|
"svg",
|
|
14313
14517
|
{
|
|
14314
14518
|
width: "24",
|
|
@@ -14317,12 +14521,12 @@ var template = {
|
|
|
14317
14521
|
fill: "none",
|
|
14318
14522
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14319
14523
|
className,
|
|
14320
|
-
children: /* @__PURE__ */ (0,
|
|
14524
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4.5 15.75L12 8.25L19.5 15.75", stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round" })
|
|
14321
14525
|
}
|
|
14322
14526
|
);
|
|
14323
14527
|
},
|
|
14324
14528
|
"arrow-down": ({ className, fill }) => {
|
|
14325
|
-
return /* @__PURE__ */ (0,
|
|
14529
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14326
14530
|
"svg",
|
|
14327
14531
|
{
|
|
14328
14532
|
width: "24",
|
|
@@ -14331,12 +14535,12 @@ var template = {
|
|
|
14331
14535
|
fill: "none",
|
|
14332
14536
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14333
14537
|
className,
|
|
14334
|
-
children: /* @__PURE__ */ (0,
|
|
14538
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M19.5 8.25L12 15.75L4.5 8.25", stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round" })
|
|
14335
14539
|
}
|
|
14336
14540
|
);
|
|
14337
14541
|
},
|
|
14338
14542
|
"arrow-left": ({ className, fill }) => {
|
|
14339
|
-
return /* @__PURE__ */ (0,
|
|
14543
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14340
14544
|
"svg",
|
|
14341
14545
|
{
|
|
14342
14546
|
width: "24",
|
|
@@ -14345,12 +14549,12 @@ var template = {
|
|
|
14345
14549
|
fill: "none",
|
|
14346
14550
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14347
14551
|
className,
|
|
14348
|
-
children: /* @__PURE__ */ (0,
|
|
14552
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15.75 19.5L8.25 12L15.75 4.5", stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round" })
|
|
14349
14553
|
}
|
|
14350
14554
|
);
|
|
14351
14555
|
},
|
|
14352
14556
|
"arrow-right": ({ className, fill }) => {
|
|
14353
|
-
return /* @__PURE__ */ (0,
|
|
14557
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14354
14558
|
"svg",
|
|
14355
14559
|
{
|
|
14356
14560
|
width: "24",
|
|
@@ -14359,12 +14563,12 @@ var template = {
|
|
|
14359
14563
|
fill: "none",
|
|
14360
14564
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14361
14565
|
className,
|
|
14362
|
-
children: /* @__PURE__ */ (0,
|
|
14566
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8.25 4.5L15.75 12L8.25 19.5", stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round" })
|
|
14363
14567
|
}
|
|
14364
14568
|
);
|
|
14365
14569
|
},
|
|
14366
14570
|
"arrow-double-up": ({ className, fill }) => {
|
|
14367
|
-
return /* @__PURE__ */ (0,
|
|
14571
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
14368
14572
|
"svg",
|
|
14369
14573
|
{
|
|
14370
14574
|
width: "24",
|
|
@@ -14374,14 +14578,14 @@ var template = {
|
|
|
14374
14578
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14375
14579
|
className,
|
|
14376
14580
|
children: [
|
|
14377
|
-
/* @__PURE__ */ (0,
|
|
14378
|
-
/* @__PURE__ */ (0,
|
|
14581
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4.5 18.75L12 11.25L19.5 18.75", stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round" }),
|
|
14582
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4.5 12.75L12 5.25L19.5 12.75", stroke: "currentColor", "stroke-linecap": "round", "stroke-linejoin": "round" })
|
|
14379
14583
|
]
|
|
14380
14584
|
}
|
|
14381
14585
|
);
|
|
14382
14586
|
},
|
|
14383
14587
|
"arrow-double-down": ({ className, fill }) => {
|
|
14384
|
-
return /* @__PURE__ */ (0,
|
|
14588
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14385
14589
|
"svg",
|
|
14386
14590
|
{
|
|
14387
14591
|
width: "24",
|
|
@@ -14390,7 +14594,7 @@ var template = {
|
|
|
14390
14594
|
fill: "none",
|
|
14391
14595
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14392
14596
|
className,
|
|
14393
|
-
children: /* @__PURE__ */ (0,
|
|
14597
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14394
14598
|
"path",
|
|
14395
14599
|
{
|
|
14396
14600
|
d: "M4.5 5.25L12 12.75L19.5 5.25M4.5 11.25L12 18.75L19.5 11.25",
|
|
@@ -14403,7 +14607,7 @@ var template = {
|
|
|
14403
14607
|
);
|
|
14404
14608
|
},
|
|
14405
14609
|
"arrow-double-left": ({ className, fill }) => {
|
|
14406
|
-
return /* @__PURE__ */ (0,
|
|
14610
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14407
14611
|
"svg",
|
|
14408
14612
|
{
|
|
14409
14613
|
width: "24",
|
|
@@ -14412,7 +14616,7 @@ var template = {
|
|
|
14412
14616
|
fill: "none",
|
|
14413
14617
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14414
14618
|
className,
|
|
14415
|
-
children: /* @__PURE__ */ (0,
|
|
14619
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14416
14620
|
"path",
|
|
14417
14621
|
{
|
|
14418
14622
|
d: "M18.75 4.5L11.25 12L18.75 19.5M12.75 4.5L5.25 12L12.75 19.5",
|
|
@@ -14425,7 +14629,7 @@ var template = {
|
|
|
14425
14629
|
);
|
|
14426
14630
|
},
|
|
14427
14631
|
"arrow-triangle-up": ({ className, fill }) => {
|
|
14428
|
-
return /* @__PURE__ */ (0,
|
|
14632
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14429
14633
|
"svg",
|
|
14430
14634
|
{
|
|
14431
14635
|
width: "24",
|
|
@@ -14434,13 +14638,13 @@ var template = {
|
|
|
14434
14638
|
fill: "none",
|
|
14435
14639
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14436
14640
|
className,
|
|
14437
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14641
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14438
14642
|
"path",
|
|
14439
14643
|
{
|
|
14440
14644
|
d: "M12.6094 7.17199C12.8863 7.36603 13.0901 7.62054 13.2991 7.88335C13.4014 8.00971 13.5075 8.13017 13.6172 8.25011C13.8009 8.45167 13.973 8.6607 14.1445 8.87267C14.247 8.99643 14.3527 9.11576 14.4609 9.23449C14.6446 9.43604 14.8168 9.64507 14.9883 9.85704C15.0907 9.9808 15.1965 10.1001 15.3047 10.2189C15.4884 10.4204 15.6605 10.6294 15.832 10.8414C15.9345 10.9652 16.0402 11.0845 16.1484 11.2032C16.3321 11.4048 16.5043 11.6138 16.6758 11.8258C16.7782 11.9496 16.884 12.0689 16.9922 12.1876C17.1759 12.3892 17.348 12.5982 17.5195 12.8102C17.622 12.9339 17.7277 13.0533 17.8359 13.172C18.0151 13.3688 18.1836 13.5723 18.351 13.7792C18.4881 13.9455 18.6289 14.1081 18.7705 14.2706C18.8482 14.3601 18.9259 14.4497 19.0035 14.5392C19.0519 14.5949 19.1003 14.6505 19.1489 14.7061C19.2136 14.7803 19.2778 14.855 19.3418 14.9298C19.3782 14.9719 19.4145 15.0139 19.452 15.0572C19.6986 15.3961 19.7378 15.7178 19.6875 16.1251C19.596 16.4343 19.4409 16.6362 19.1794 16.8209C18.8729 16.9849 18.5891 16.9822 18.2495 16.9811C18.1663 16.9813 18.1663 16.9813 18.0814 16.9816C17.9277 16.982 17.7741 16.982 17.6205 16.9818C17.4546 16.9817 17.2888 16.9821 17.123 16.9825C16.7982 16.9831 16.4734 16.9831 16.1487 16.983C15.8847 16.9829 15.6207 16.983 15.3567 16.9832C15.3003 16.9833 15.3003 16.9833 15.2428 16.9833C15.1665 16.9834 15.0901 16.9834 15.0138 16.9835C14.2978 16.984 13.5819 16.9839 12.866 16.9836C12.2112 16.9834 11.5564 16.9839 10.9017 16.9848C10.2292 16.9857 9.55665 16.9861 8.88414 16.9859C8.50665 16.9858 8.12917 16.9859 7.75168 16.9866C7.43031 16.9872 7.10895 16.9872 6.78758 16.9867C6.62367 16.9864 6.45977 16.9863 6.29586 16.9869C6.11803 16.9874 5.94023 16.987 5.7624 16.9864C5.71079 16.9867 5.65918 16.9871 5.60601 16.9874C5.23204 16.9848 4.89966 16.9356 4.61188 16.6698C4.35171 16.3657 4.28644 16.0623 4.28595 15.6692C4.34462 15.3301 4.53209 15.0807 4.75781 14.8302C4.80812 14.7729 4.85841 14.7157 4.90869 14.6584C4.94703 14.6152 4.94703 14.6152 4.98615 14.571C5.1069 14.4341 5.22525 14.2952 5.34375 14.1564C5.39043 14.1018 5.43712 14.0473 5.48383 13.9928C5.50701 13.9658 5.53019 13.9388 5.55407 13.9109C5.62614 13.8269 5.69834 13.7431 5.77057 13.6592C5.98575 13.4092 6.19958 13.1588 6.40723 12.9025C6.57363 12.6974 6.74792 12.5014 6.92578 12.3063C7.03494 12.1835 7.13886 12.0575 7.24219 11.9298C7.41142 11.7206 7.58833 11.5207 7.76953 11.3219C7.87869 11.1991 7.98261 11.0732 8.08594 10.9454C8.25517 10.7362 8.43208 10.5363 8.61328 10.3375C8.72244 10.2147 8.82636 10.0888 8.92969 9.96105C9.09892 9.75186 9.27583 9.55196 9.45703 9.35314C9.56619 9.23034 9.67011 9.1044 9.77344 8.97667C9.94267 8.76748 10.1196 8.56759 10.3008 8.36876C10.4099 8.24596 10.5139 8.12003 10.6172 7.9923C11.1279 7.36499 11.7404 6.6802 12.6094 7.17199Z",
|
|
14441
14645
|
fill: "currentColor"
|
|
14442
14646
|
}
|
|
14443
|
-
) : /* @__PURE__ */ (0,
|
|
14647
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14444
14648
|
"path",
|
|
14445
14649
|
{
|
|
14446
14650
|
d: "M5.13454 15.1059L11.008 8.13115C11.3997 7.66594 12.1126 7.65525 12.5181 8.1085L18.7587 15.0832C19.335 15.7274 18.8778 16.75 18.0134 16.75H5.89945C5.04919 16.75 4.58686 15.7562 5.13454 15.1059Z",
|
|
@@ -14451,7 +14655,7 @@ var template = {
|
|
|
14451
14655
|
);
|
|
14452
14656
|
},
|
|
14453
14657
|
"arrow-triangle-down": ({ className, fill }) => {
|
|
14454
|
-
return /* @__PURE__ */ (0,
|
|
14658
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14455
14659
|
"svg",
|
|
14456
14660
|
{
|
|
14457
14661
|
width: "24",
|
|
@@ -14460,13 +14664,13 @@ var template = {
|
|
|
14460
14664
|
fill: "none",
|
|
14461
14665
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14462
14666
|
className,
|
|
14463
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14667
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14464
14668
|
"path",
|
|
14465
14669
|
{
|
|
14466
14670
|
d: "M5.75048 7.01906C5.83371 7.0188 5.83371 7.0188 5.91862 7.01852C6.07226 7.01812 6.22588 7.01814 6.37952 7.01834C6.54536 7.01846 6.7112 7.01803 6.87704 7.01768C7.20179 7.01709 7.52655 7.017 7.8513 7.01711C8.1153 7.0172 8.3793 7.01711 8.6433 7.01691C8.68088 7.01689 8.71846 7.01686 8.75718 7.01683C8.83353 7.01677 8.90987 7.01672 8.98622 7.01666C9.70215 7.01615 10.4181 7.01625 11.134 7.01654C11.7888 7.01678 12.4436 7.01625 13.0983 7.01536C13.7708 7.01445 14.4433 7.01406 15.1159 7.01424C15.4933 7.01433 15.8708 7.01421 16.2483 7.01355C16.5697 7.01299 16.891 7.01293 17.2124 7.01349C17.3763 7.01377 17.5402 7.01382 17.7041 7.01326C17.882 7.01277 18.0598 7.01315 18.2376 7.01374C18.2892 7.0134 18.3408 7.01305 18.394 7.0127C18.7679 7.01533 19.1003 7.06459 19.3881 7.3303C19.6483 7.63443 19.7135 7.93787 19.714 8.33097C19.6554 8.67005 19.4679 8.91941 19.2422 9.16996C19.1919 9.22714 19.1417 9.28433 19.0915 9.34153C19.0532 9.38477 19.0532 9.38477 19.014 9.42889C18.8923 9.56688 18.7729 9.70682 18.6533 9.84671C18.6184 9.88747 18.6184 9.88747 18.5827 9.92904C18.4268 10.1109 18.2718 10.2936 18.1172 10.4766C17.8689 10.7706 17.6186 11.0628 17.3679 11.3547C17.2504 11.4916 17.133 11.6287 17.0156 11.7657C16.9687 11.8203 16.9219 11.875 16.875 11.9297C16.8402 11.9703 16.8402 11.9703 16.8047 12.0118C15.7969 13.1875 14.7891 14.3633 13.7812 15.5391C13.758 15.5662 13.7348 15.5933 13.7109 15.6212C13.6642 15.6756 13.6175 15.73 13.5707 15.7843C13.4496 15.925 13.3299 16.0666 13.2121 16.2102C12.6539 16.886 12.6539 16.886 12.2344 16.9688C11.8308 17.0045 11.522 16.9474 11.206 16.6875C11.018 16.5131 10.8603 16.3172 10.7009 16.1168C10.5986 15.9904 10.4924 15.87 10.3828 15.75C10.1991 15.5485 10.0269 15.3394 9.85546 15.1275C9.75303 15.0037 9.64725 14.8844 9.53905 14.7657C9.35535 14.5641 9.18319 14.3551 9.01171 14.1431C8.90928 14.0193 8.8035 13.9 8.6953 13.7813C8.5116 13.5797 8.33944 13.3707 8.16796 13.1587C8.06553 13.035 7.95975 12.9156 7.85155 12.7969C7.66785 12.5954 7.49569 12.3863 7.32421 12.1744C7.22178 12.0506 7.116 11.9313 7.0078 11.8125C6.86611 11.6569 6.73006 11.4986 6.59764 11.335C6.35318 11.0331 6.0978 10.7412 5.84279 10.4483C5.69846 10.2821 5.55529 10.1148 5.41232 9.94742C5.29321 9.80797 5.17354 9.66907 5.05278 9.53104C4.28983 8.6562 4.28983 8.6562 4.29674 8.0358C4.32505 7.74682 4.42908 7.52262 4.63604 7.31821C4.98669 7.0389 5.31543 7.01758 5.75048 7.01906Z",
|
|
14467
14671
|
fill: "currentColor"
|
|
14468
14672
|
}
|
|
14469
|
-
) : /* @__PURE__ */ (0,
|
|
14673
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14470
14674
|
"path",
|
|
14471
14675
|
{
|
|
14472
14676
|
d: "M18.8655 8.89414L12.992 15.8688C12.6003 16.3341 11.8874 16.3448 11.4819 15.8915L5.24134 8.91679C4.66497 8.27261 5.12219 7.25 5.98658 7.25L18.1006 7.25C18.9508 7.25 19.4131 8.24377 18.8655 8.89414Z",
|
|
@@ -14477,7 +14681,7 @@ var template = {
|
|
|
14477
14681
|
);
|
|
14478
14682
|
},
|
|
14479
14683
|
"arrow-triangle-left": ({ className, fill }) => {
|
|
14480
|
-
return /* @__PURE__ */ (0,
|
|
14684
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14481
14685
|
"svg",
|
|
14482
14686
|
{
|
|
14483
14687
|
width: "24",
|
|
@@ -14486,13 +14690,13 @@ var template = {
|
|
|
14486
14690
|
fill: "none",
|
|
14487
14691
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14488
14692
|
className,
|
|
14489
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14693
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14490
14694
|
"path",
|
|
14491
14695
|
{
|
|
14492
14696
|
d: "M16.3799 4.40634C16.6429 4.55727 16.8036 4.75934 16.9245 5.03471C16.9874 5.2742 16.9818 5.50396 16.981 5.75059C16.9812 5.80607 16.9814 5.86156 16.9815 5.91873C16.9819 6.07236 16.9819 6.22599 16.9817 6.37962C16.9816 6.54546 16.982 6.7113 16.9824 6.87714C16.983 7.2019 16.9831 7.52665 16.983 7.85141C16.9829 8.11541 16.983 8.3794 16.9832 8.6434C16.9832 8.68098 16.9832 8.71856 16.9832 8.75728C16.9833 8.83363 16.9833 8.90998 16.9834 8.98633C16.9839 9.70226 16.9838 10.4182 16.9835 11.1341C16.9833 11.7889 16.9838 12.4437 16.9847 13.0984C16.9856 13.7709 16.986 14.4434 16.9858 15.116C16.9857 15.4934 16.9859 15.8709 16.9865 16.2484C16.9871 16.5698 16.9871 16.8911 16.9866 17.2125C16.9863 17.3764 16.9862 17.5403 16.9868 17.7042C16.9873 17.8821 16.9869 18.0599 16.9863 18.2377C16.9867 18.2893 16.987 18.3409 16.9874 18.3941C16.9847 18.7681 16.9355 19.1004 16.6698 19.3882C16.3656 19.6484 16.0622 19.7136 15.6691 19.7141C15.33 19.6555 15.0806 19.468 14.8301 19.2423C14.7729 19.192 14.7156 19.1417 14.6584 19.0914C14.6295 19.0658 14.6007 19.0403 14.571 19.0139C14.4341 18.8932 14.2951 18.7749 14.1563 18.6563C14.1016 18.6095 14.0469 18.5626 13.9922 18.5157C13.9651 18.4925 13.9381 18.4693 13.9102 18.4454C12.3516 17.1095 12.3516 17.1095 12.2695 17.0391C12.215 16.9924 12.1604 16.9456 12.1058 16.8988C11.9672 16.7801 11.8287 16.6612 11.6904 16.542C11.4404 16.3268 11.1899 16.113 10.9336 15.9054C10.7285 15.739 10.5326 15.5647 10.3374 15.3868C10.2146 15.2777 10.0887 15.1737 9.96097 15.0704C9.75178 14.9012 9.55188 14.7243 9.35306 14.5431C9.23026 14.4339 9.10432 14.33 8.97659 14.2267C8.7674 14.0574 8.5675 13.8805 8.36868 13.6993C8.24588 13.5902 8.11994 13.4862 7.99222 13.3829C7.07631 12.6372 7.07631 12.6372 7.01846 12.1198C7.00546 11.7768 7.06039 11.5288 7.26565 11.2501C7.55762 10.9429 7.88999 10.6802 8.21963 10.4148C8.3425 10.3136 8.46057 10.2089 8.57815 10.1017C8.77971 9.91796 8.98874 9.74579 9.20071 9.57431C9.32447 9.47189 9.44381 9.36611 9.56253 9.25791C9.76409 9.07421 9.97312 8.90204 10.1851 8.73056C10.3088 8.62814 10.4282 8.52236 10.5469 8.41416C10.7485 8.23046 10.9575 8.05829 11.1695 7.88681C11.2932 7.78439 11.4126 7.67861 11.5313 7.57041C11.6869 7.42871 11.8452 7.29266 12.0088 7.16025C12.3107 6.91579 12.6026 6.66041 12.8955 6.4054C13.035 6.28432 13.1752 6.16413 13.3155 6.04404C13.3423 6.02103 13.3692 5.99802 13.3969 5.97431C13.4511 5.92796 13.5052 5.88161 13.5594 5.83527C13.6685 5.74185 13.7776 5.64834 13.8867 5.55481C13.9412 5.5081 13.9957 5.46141 14.0503 5.41476C14.1906 5.29478 14.3303 5.17424 14.4692 5.0527C15.6102 4.05776 15.6102 4.05776 16.3799 4.40634Z",
|
|
14493
14697
|
fill: "currentColor"
|
|
14494
14698
|
}
|
|
14495
|
-
) : /* @__PURE__ */ (0,
|
|
14699
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14496
14700
|
"path",
|
|
14497
14701
|
{
|
|
14498
14702
|
d: "M15.1059 18.8655L8.13115 12.992C7.66594 12.6003 7.65525 11.8874 8.10849 11.4819L15.0832 5.24134C15.7274 4.66497 16.75 5.12219 16.75 5.98658L16.75 18.1006C16.75 18.9508 15.7562 19.4131 15.1059 18.8655Z",
|
|
@@ -14503,7 +14707,7 @@ var template = {
|
|
|
14503
14707
|
);
|
|
14504
14708
|
},
|
|
14505
14709
|
"arrow-triangle-right": ({ className, fill }) => {
|
|
14506
|
-
return /* @__PURE__ */ (0,
|
|
14710
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14507
14711
|
"svg",
|
|
14508
14712
|
{
|
|
14509
14713
|
width: "24",
|
|
@@ -14512,13 +14716,13 @@ var template = {
|
|
|
14512
14716
|
fill: "none",
|
|
14513
14717
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14514
14718
|
className,
|
|
14515
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14719
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14516
14720
|
"path",
|
|
14517
14721
|
{
|
|
14518
14722
|
d: "M8.67057 4.39119C8.8617 4.49362 9.01835 4.62175 9.17868 4.76655C9.23583 4.8169 9.29302 4.86719 9.35025 4.91743C9.37818 4.94209 9.4061 4.96674 9.43487 4.99214C9.54927 5.09178 9.66701 5.18701 9.78513 5.28218C9.99021 5.44858 10.1862 5.62287 10.3813 5.80073C10.5041 5.90989 10.6301 6.01381 10.7578 6.11714C10.967 6.28637 11.1669 6.46328 11.3657 6.64448C11.4885 6.75364 11.6144 6.85756 11.7422 6.96089C11.9514 7.13012 12.1512 7.30703 12.3501 7.48823C12.4729 7.59739 12.5988 7.70131 12.7265 7.80464C12.9357 7.97387 13.1356 8.15078 13.3344 8.33198C13.4572 8.44114 13.5832 8.54506 13.7109 8.64839C13.9201 8.81762 14.12 8.99453 14.3188 9.17573C14.4416 9.28489 14.5676 9.38881 14.6953 9.49214C14.9045 9.66137 15.1044 9.83828 15.3032 10.0195C15.426 10.1286 15.5519 10.2326 15.6797 10.3359C15.8925 10.5081 16.097 10.6873 16.2989 10.8722C16.393 10.9568 16.4893 11.0361 16.5879 11.1152C16.8219 11.3139 16.9512 11.5669 16.9782 11.8732C16.9864 12.2987 16.8912 12.5743 16.6005 12.8876C16.4473 13.035 16.283 13.1668 16.1167 13.2991C15.9904 13.4013 15.8699 13.5075 15.75 13.6171C15.5484 13.8008 15.3394 13.973 15.1274 14.1445C15.0037 14.2469 14.8843 14.3527 14.7656 14.4609C14.564 14.6446 14.355 14.8168 14.143 14.9882C14.0193 15.0907 13.8999 15.1964 13.7812 15.3046C13.5797 15.4883 13.3706 15.6605 13.1587 15.832C13.0349 15.9344 12.9156 16.0402 12.7968 16.1484C12.5953 16.3321 12.3863 16.5042 12.1743 16.6757C12.0505 16.7782 11.9312 16.8839 11.8125 16.9921C11.6109 17.1758 11.4019 17.348 11.1899 17.5195C11.0662 17.6219 10.9468 17.7277 10.8281 17.8359C10.6313 18.0151 10.4278 18.1836 10.2209 18.351C10.0546 18.4881 9.89195 18.6289 9.72947 18.7705C9.63996 18.8482 9.55042 18.9258 9.46087 19.0035C9.40518 19.0518 9.34956 19.1003 9.29402 19.1488C9.21978 19.2135 9.1451 19.2777 9.07029 19.3417C9.02823 19.3781 8.98617 19.4145 8.94284 19.452C8.60397 19.6985 8.28225 19.7378 7.87497 19.6875C7.56581 19.596 7.3639 19.4409 7.17917 19.1793C7.01515 18.8729 7.01784 18.589 7.019 18.2495C7.01882 18.194 7.01864 18.1385 7.01846 18.0813C7.01806 17.9277 7.01808 17.7741 7.01828 17.6204C7.0184 17.4546 7.01797 17.2887 7.01762 17.1229C7.01703 16.7981 7.01694 16.4734 7.01705 16.1486C7.01713 15.8846 7.01705 15.6206 7.01685 15.3566C7.01683 15.3191 7.0168 15.2815 7.01677 15.2428C7.01671 15.1664 7.01665 15.0901 7.0166 15.0137C7.01609 14.2978 7.01619 13.5819 7.01648 12.8659C7.01672 12.2111 7.01619 11.5564 7.0153 10.9016C7.01439 10.2291 7.014 9.5566 7.01418 8.88409C7.01427 8.5066 7.01415 8.12912 7.01349 7.75164C7.01293 7.43027 7.01287 7.1089 7.01343 6.78753C7.01371 6.62362 7.01376 6.45972 7.0132 6.29582C7.01271 6.11799 7.01309 5.94018 7.01368 5.76235C7.01334 5.71074 7.01299 5.65913 7.01263 5.60596C7.01527 5.23199 7.06453 4.89961 7.33023 4.61183C7.70539 4.29091 8.21333 4.17769 8.67057 4.39119Z",
|
|
14519
14723
|
fill: "currentColor"
|
|
14520
14724
|
}
|
|
14521
|
-
) : /* @__PURE__ */ (0,
|
|
14725
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14522
14726
|
"path",
|
|
14523
14727
|
{
|
|
14524
14728
|
d: "M8.89414 5.13454L15.8688 11.008C16.3341 11.3997 16.3448 12.1126 15.8915 12.5181L8.91679 18.7587C8.27261 19.335 7.25 18.8778 7.25 18.0134L7.25 5.89945C7.25 5.04919 8.24377 4.58686 8.89414 5.13454Z",
|
|
@@ -14529,7 +14733,7 @@ var template = {
|
|
|
14529
14733
|
);
|
|
14530
14734
|
},
|
|
14531
14735
|
"arrow-double-right": ({ className, fill }) => {
|
|
14532
|
-
return /* @__PURE__ */ (0,
|
|
14736
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14533
14737
|
"svg",
|
|
14534
14738
|
{
|
|
14535
14739
|
width: "24",
|
|
@@ -14538,7 +14742,7 @@ var template = {
|
|
|
14538
14742
|
fill: "none",
|
|
14539
14743
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14540
14744
|
className,
|
|
14541
|
-
children: /* @__PURE__ */ (0,
|
|
14745
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14542
14746
|
"path",
|
|
14543
14747
|
{
|
|
14544
14748
|
d: "M5.25 4.5L12.75 12L5.25 19.5M11.25 4.5L18.75 12L11.25 19.5",
|
|
@@ -14551,7 +14755,7 @@ var template = {
|
|
|
14551
14755
|
);
|
|
14552
14756
|
},
|
|
14553
14757
|
"arrow-uturn-up": ({ className, fill }) => {
|
|
14554
|
-
return /* @__PURE__ */ (0,
|
|
14758
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14555
14759
|
"svg",
|
|
14556
14760
|
{
|
|
14557
14761
|
width: "24",
|
|
@@ -14560,7 +14764,7 @@ var template = {
|
|
|
14560
14764
|
fill: "none",
|
|
14561
14765
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14562
14766
|
className,
|
|
14563
|
-
children: /* @__PURE__ */ (0,
|
|
14767
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14564
14768
|
"path",
|
|
14565
14769
|
{
|
|
14566
14770
|
d: "M9 9L15 3M15 3L21 9M15 3V15C15 16.5913 14.3679 18.1174 13.2426 19.2426C12.1174 20.3679 10.5913 21 9 21C7.4087 21 5.88258 20.3679 4.75736 19.2426C3.63214 18.1174 3 16.5913 3 15V12",
|
|
@@ -14573,7 +14777,7 @@ var template = {
|
|
|
14573
14777
|
);
|
|
14574
14778
|
},
|
|
14575
14779
|
"arrow-uturn-down": ({ className, fill }) => {
|
|
14576
|
-
return /* @__PURE__ */ (0,
|
|
14780
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14577
14781
|
"svg",
|
|
14578
14782
|
{
|
|
14579
14783
|
width: "24",
|
|
@@ -14582,7 +14786,7 @@ var template = {
|
|
|
14582
14786
|
fill: "none",
|
|
14583
14787
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14584
14788
|
className,
|
|
14585
|
-
children: /* @__PURE__ */ (0,
|
|
14789
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14586
14790
|
"path",
|
|
14587
14791
|
{
|
|
14588
14792
|
d: "M15 15L9 21M9 21L3 15M9 21V9C9 7.4087 9.63214 5.88258 10.7574 4.75736C11.8826 3.63214 13.4087 3 15 3C16.5913 3 18.1174 3.63214 19.2426 4.75736C20.3679 5.88258 21 7.4087 21 9V12",
|
|
@@ -14595,7 +14799,7 @@ var template = {
|
|
|
14595
14799
|
);
|
|
14596
14800
|
},
|
|
14597
14801
|
"arrow-uturn-left": ({ className, fill }) => {
|
|
14598
|
-
return /* @__PURE__ */ (0,
|
|
14802
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14599
14803
|
"svg",
|
|
14600
14804
|
{
|
|
14601
14805
|
width: "24",
|
|
@@ -14604,7 +14808,7 @@ var template = {
|
|
|
14604
14808
|
fill: "none",
|
|
14605
14809
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14606
14810
|
className,
|
|
14607
|
-
children: /* @__PURE__ */ (0,
|
|
14811
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14608
14812
|
"path",
|
|
14609
14813
|
{
|
|
14610
14814
|
d: "M9 15L3 9M3 9L9 3M3 9H15C16.5913 9 18.1174 9.63214 19.2426 10.7574C20.3679 11.8826 21 13.4087 21 15C21 16.5913 20.3679 18.1174 19.2426 19.2426C18.1174 20.3679 16.5913 21 15 21H12",
|
|
@@ -14617,7 +14821,7 @@ var template = {
|
|
|
14617
14821
|
);
|
|
14618
14822
|
},
|
|
14619
14823
|
"arrow-uturn-right": ({ className, fill }) => {
|
|
14620
|
-
return /* @__PURE__ */ (0,
|
|
14824
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14621
14825
|
"svg",
|
|
14622
14826
|
{
|
|
14623
14827
|
width: "24",
|
|
@@ -14626,7 +14830,7 @@ var template = {
|
|
|
14626
14830
|
fill: "none",
|
|
14627
14831
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14628
14832
|
className,
|
|
14629
|
-
children: /* @__PURE__ */ (0,
|
|
14833
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14630
14834
|
"path",
|
|
14631
14835
|
{
|
|
14632
14836
|
d: "M15 15L21 9M21 9L15 3M21 9H9C7.4087 9 5.88258 9.63214 4.75736 10.7574C3.63214 11.8826 3 13.4087 3 15C3 16.5913 3.63214 18.1174 4.75736 19.2426C5.88258 20.3679 7.4087 21 9 21H12",
|
|
@@ -14639,7 +14843,7 @@ var template = {
|
|
|
14639
14843
|
);
|
|
14640
14844
|
},
|
|
14641
14845
|
"arrow-both-vertical": ({ className, fill }) => {
|
|
14642
|
-
return /* @__PURE__ */ (0,
|
|
14846
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14643
14847
|
"svg",
|
|
14644
14848
|
{
|
|
14645
14849
|
width: "24",
|
|
@@ -14648,7 +14852,7 @@ var template = {
|
|
|
14648
14852
|
fill: "none",
|
|
14649
14853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14650
14854
|
className,
|
|
14651
|
-
children: /* @__PURE__ */ (0,
|
|
14855
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14652
14856
|
"path",
|
|
14653
14857
|
{
|
|
14654
14858
|
d: "M8.25 15L12 18.75L15.75 15M8.25 9L12 5.25L15.75 9",
|
|
@@ -14662,7 +14866,7 @@ var template = {
|
|
|
14662
14866
|
},
|
|
14663
14867
|
// ** Control **
|
|
14664
14868
|
undo: ({ className, fill }) => {
|
|
14665
|
-
return /* @__PURE__ */ (0,
|
|
14869
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14666
14870
|
"svg",
|
|
14667
14871
|
{
|
|
14668
14872
|
width: "24",
|
|
@@ -14671,7 +14875,7 @@ var template = {
|
|
|
14671
14875
|
fill: "none",
|
|
14672
14876
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14673
14877
|
className,
|
|
14674
|
-
children: /* @__PURE__ */ (0,
|
|
14878
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14675
14879
|
"path",
|
|
14676
14880
|
{
|
|
14677
14881
|
d: "M4.16732 2.3705C4.03061 2.40138 3.97062 2.46618 3.89065 2.57814C3.8375 2.73759 3.83045 2.87234 3.82124 3.04035C3.81941 3.07293 3.81757 3.10551 3.81568 3.13907C3.80964 3.24725 3.8039 3.35544 3.79818 3.46364C3.79405 3.53968 3.78992 3.61572 3.78577 3.69175C3.77709 3.85189 3.76856 4.01204 3.76013 4.17219C3.75158 4.33439 3.74281 4.49657 3.73381 4.65875C3.7047 5.18383 3.67807 5.70895 3.65627 6.23439C3.65375 6.29424 3.65122 6.35409 3.64862 6.41575C3.64287 6.56893 3.6389 6.722 3.63595 6.87526C3.63352 6.93958 3.63352 6.93958 3.63104 7.00519C3.62971 7.18914 3.63255 7.28093 3.74507 7.43074C3.95136 7.52891 4.13901 7.5366 4.36526 7.5458C4.41229 7.5484 4.45932 7.55101 4.50777 7.55369C4.66141 7.56201 4.81508 7.56911 4.96877 7.57619C5.0748 7.58169 5.18083 7.58726 5.28685 7.59291C5.50071 7.60419 5.71458 7.615 5.92848 7.62542C6.20424 7.63895 6.47988 7.65413 6.75552 7.67012C6.90798 7.67887 7.06045 7.68759 7.21291 7.69631C7.24786 7.69832 7.28281 7.70033 7.31882 7.7024C7.53541 7.71471 7.75202 7.72517 7.96877 7.73439C8.02323 7.73733 8.07769 7.74027 8.1338 7.7433C8.20891 7.74587 8.20891 7.74587 8.28555 7.74849C8.32876 7.75033 8.37197 7.75216 8.41649 7.75404C8.57042 7.72769 8.62325 7.66781 8.71877 7.54689C8.77518 7.353 8.78983 7.26326 8.69241 7.084C8.50589 6.9214 8.27724 6.9325 8.03739 6.91929C7.98758 6.91648 7.93777 6.91367 7.88645 6.91077C7.83313 6.90793 7.77981 6.9051 7.72488 6.90218C7.66901 6.89912 7.61315 6.89607 7.55559 6.89292C7.43723 6.8865 7.31887 6.88016 7.20051 6.8739C7.02213 6.86441 6.84378 6.85452 6.66543 6.84459C6.05242 6.8113 5.4421 6.78629 4.82815 6.79689C6.20233 5.19496 8.21522 4.19565 10.3125 3.98439C10.4355 3.97874 10.5574 3.97461 10.6804 3.97322C10.7144 3.97277 10.7484 3.97231 10.7834 3.97183C11.5653 3.96346 12.3153 3.97928 13.0781 4.17189C13.1182 4.18194 13.1582 4.19199 13.1995 4.20234C15.3802 4.76853 17.2618 6.17196 18.4089 8.11445C19.5217 10.0576 19.8575 12.3493 19.2979 14.5254C18.7217 16.6293 17.3561 18.5176 15.4659 19.629C13.4203 20.7872 11.1293 21.1232 8.84604 20.5163C8.08298 20.2985 7.3208 19.9839 6.65627 19.5469C6.62483 19.5262 6.59339 19.5056 6.56099 19.4843C6.07422 19.1603 5.61854 18.8119 5.21743 18.384C5.15627 18.3281 5.15627 18.3281 5.06252 18.3281C5.05068 18.3008 5.03884 18.2735 5.02664 18.2454C4.92398 18.0596 4.76721 17.9318 4.59377 17.8125C4.44436 17.7774 4.44436 17.7774 4.31252 17.8125C4.15138 17.9281 4.08971 18.0048 4.03713 18.1963C4.10263 18.4817 4.29674 18.6414 4.50002 18.8438C4.5361 18.8821 4.57217 18.9204 4.60934 18.9599C4.92087 19.2853 5.26523 19.5589 5.62502 19.8281C5.664 19.8575 5.70297 19.8869 5.74313 19.9171C7.30679 21.0519 9.17413 21.6196 11.0977 21.6211C11.1342 21.6211 11.1707 21.6212 11.2083 21.6212C11.795 21.6204 12.362 21.5908 12.9375 21.4688C12.9762 21.4607 13.0148 21.4527 13.0546 21.4444C14.8331 21.0626 16.3644 20.1905 17.6719 18.9375C17.7071 18.9042 17.7424 18.8709 17.7786 18.8366C19.2814 17.3815 20.3172 15.1034 20.3539 13.0076C20.3544 12.9547 20.3544 12.9547 20.3549 12.9007C20.3554 12.8627 20.3559 12.8247 20.3563 12.7856C20.3644 11.9459 20.3584 11.1329 20.1563 10.3125C20.1457 10.2695 20.1352 10.2265 20.1243 10.1822C19.7479 8.69257 19.0439 7.32785 18.0009 6.19722C17.9185 6.10714 17.8403 6.01518 17.7627 5.92092C17.6082 5.73985 17.4319 5.59034 17.25 5.43752C17.2106 5.40284 17.1712 5.36815 17.1306 5.33242C15.271 3.72446 12.8444 2.98965 10.4043 3.15548C8.17248 3.33391 6.07312 4.30842 4.50002 5.90627C4.50179 5.87208 4.50355 5.83788 4.50536 5.80265C4.52204 5.47859 4.5386 5.15452 4.55503 4.83044C4.56348 4.66388 4.57197 4.49732 4.58057 4.33076C4.59047 4.13877 4.60018 3.94678 4.60989 3.75478C4.61296 3.69568 4.61604 3.63658 4.61921 3.57569C4.66431 2.6743 4.66431 2.6743 4.57034 2.47853C4.42766 2.37153 4.34233 2.35942 4.16732 2.3705Z",
|
|
@@ -14683,7 +14887,7 @@ var template = {
|
|
|
14683
14887
|
);
|
|
14684
14888
|
},
|
|
14685
14889
|
redo: ({ className, fill }) => {
|
|
14686
|
-
return /* @__PURE__ */ (0,
|
|
14890
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14687
14891
|
"svg",
|
|
14688
14892
|
{
|
|
14689
14893
|
width: "24",
|
|
@@ -14692,7 +14896,7 @@ var template = {
|
|
|
14692
14896
|
fill: "none",
|
|
14693
14897
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14694
14898
|
className,
|
|
14695
|
-
children: /* @__PURE__ */ (0,
|
|
14899
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14696
14900
|
"path",
|
|
14697
14901
|
{
|
|
14698
14902
|
d: "M19.8327 2.3705C19.9694 2.40138 20.0294 2.46618 20.1094 2.57814C20.1625 2.73759 20.1696 2.87234 20.1788 3.04035C20.1806 3.07293 20.1824 3.10551 20.1843 3.13907C20.1904 3.24725 20.1961 3.35544 20.2018 3.46364C20.2059 3.53968 20.2101 3.61572 20.2142 3.69175C20.2229 3.85189 20.2314 4.01204 20.2399 4.17219C20.2484 4.33439 20.2572 4.49657 20.2662 4.65875C20.2953 5.18383 20.3219 5.70895 20.3437 6.23439C20.3463 6.29424 20.3488 6.35409 20.3514 6.41575C20.3571 6.56893 20.3611 6.722 20.364 6.87526C20.3665 6.93958 20.3665 6.93958 20.369 7.00519C20.3703 7.18914 20.3675 7.28093 20.2549 7.43074C20.0486 7.52891 19.861 7.5366 19.6347 7.5458C19.5877 7.5484 19.5407 7.55101 19.4922 7.55369C19.3386 7.56201 19.1849 7.56911 19.0312 7.57619C18.9252 7.58169 18.8192 7.58726 18.7131 7.59291C18.4993 7.60419 18.2854 7.615 18.0715 7.62542C17.7958 7.63895 17.5201 7.65413 17.2445 7.67012C17.092 7.67887 16.9396 7.68759 16.7871 7.69631C16.7521 7.69832 16.7172 7.70033 16.6812 7.7024C16.4646 7.71471 16.248 7.72517 16.0312 7.73439C15.9768 7.73733 15.9223 7.74027 15.8662 7.7433C15.7911 7.74587 15.7911 7.74587 15.7145 7.74849C15.6712 7.75033 15.628 7.75216 15.5835 7.75404C15.4296 7.72769 15.3768 7.66781 15.2812 7.54689C15.2248 7.353 15.2102 7.26326 15.3076 7.084C15.4941 6.9214 15.7228 6.9325 15.9626 6.91929C16.0124 6.91648 16.0622 6.91367 16.1135 6.91077C16.1669 6.90793 16.2202 6.9051 16.2751 6.90218C16.331 6.89913 16.3869 6.89607 16.4444 6.89292C16.5628 6.8865 16.6811 6.88016 16.7995 6.8739C16.9779 6.86441 17.1562 6.85452 17.3346 6.84459C17.9476 6.8113 18.5579 6.78629 19.1719 6.79689C17.7977 5.19496 15.7848 4.19565 13.6875 3.98439C13.5645 3.97874 13.4426 3.97461 13.3196 3.97322C13.2856 3.97277 13.2516 3.97231 13.2166 3.97183C12.4347 3.96346 11.6847 3.97928 10.9219 4.17189C10.8818 4.18194 10.8418 4.19199 10.8005 4.20234C8.61983 4.76853 6.73824 6.17196 5.59112 8.11445C4.47825 10.0576 4.14254 12.3493 4.70212 14.5254C5.2783 16.6293 6.64388 18.5176 8.53408 19.629C10.5797 20.7872 12.8707 21.1232 15.154 20.5163C15.917 20.2985 16.6792 19.9839 17.3437 19.5469C17.3752 19.5262 17.4066 19.5056 17.439 19.4843C17.9258 19.1603 18.3815 18.8119 18.7826 18.384C18.8437 18.3281 18.8437 18.3281 18.9375 18.3281C18.9493 18.3008 18.9612 18.2735 18.9734 18.2454C19.076 18.0596 19.2328 17.9318 19.4062 17.8125C19.5556 17.7774 19.5556 17.7774 19.6875 17.8125C19.8486 17.9281 19.9103 18.0048 19.9629 18.1963C19.8974 18.4817 19.7033 18.6414 19.5 18.8438C19.4639 18.8821 19.4278 18.9204 19.3907 18.9599C19.0791 19.2853 18.7348 19.5589 18.375 19.8281C18.336 19.8575 18.297 19.8869 18.2569 19.9171C16.6932 21.0519 14.8259 21.6196 12.9023 21.6211C12.8658 21.6211 12.8293 21.6212 12.7917 21.6212C12.205 21.6204 11.638 21.5908 11.0625 21.4688C11.0238 21.4607 10.9852 21.4527 10.9454 21.4444C9.16692 21.0626 7.63563 20.1905 6.3281 18.9375C6.29287 18.9042 6.25765 18.8709 6.22135 18.8366C4.71857 17.3815 3.68276 15.1034 3.64613 13.0076C3.6456 12.9547 3.6456 12.9547 3.64506 12.9007C3.6446 12.8627 3.64414 12.8247 3.64367 12.7856C3.63561 11.9459 3.6416 11.1329 3.84373 10.3125C3.85427 10.2695 3.86481 10.2265 3.87568 10.1822C4.2521 8.69257 4.95611 7.32785 5.99906 6.19722C6.08149 6.10714 6.15974 6.01518 6.23728 5.92092C6.39182 5.73985 6.56807 5.59034 6.74998 5.43752C6.78937 5.40284 6.82877 5.36815 6.86936 5.33242C8.72904 3.72446 11.1556 2.98965 13.5957 3.15548C15.8275 3.33391 17.9269 4.30842 19.5 5.90627C19.4982 5.87208 19.4965 5.83788 19.4946 5.80265C19.478 5.47859 19.4614 5.15452 19.445 4.83044C19.4365 4.66388 19.428 4.49732 19.4194 4.33076C19.4095 4.13877 19.3998 3.94678 19.3901 3.75478C19.387 3.69568 19.384 3.63658 19.3808 3.57569C19.3357 2.6743 19.3357 2.6743 19.4297 2.47853C19.5723 2.37153 19.6577 2.35942 19.8327 2.3705Z",
|
|
@@ -14704,7 +14908,7 @@ var template = {
|
|
|
14704
14908
|
);
|
|
14705
14909
|
},
|
|
14706
14910
|
upload: ({ className, fill }) => {
|
|
14707
|
-
return /* @__PURE__ */ (0,
|
|
14911
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14708
14912
|
"svg",
|
|
14709
14913
|
{
|
|
14710
14914
|
width: "24",
|
|
@@ -14713,7 +14917,7 @@ var template = {
|
|
|
14713
14917
|
fill: "none",
|
|
14714
14918
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14715
14919
|
className,
|
|
14716
|
-
children: /* @__PURE__ */ (0,
|
|
14920
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14717
14921
|
"path",
|
|
14718
14922
|
{
|
|
14719
14923
|
d: "M3 16.5V18.75C3 19.3467 3.23705 19.919 3.65901 20.341C4.08097 20.7629 4.65326 21 5.25 21H18.75C19.3467 21 19.919 20.7629 20.341 20.341C20.7629 19.919 21 19.3467 21 18.75V16.5M7.5 7.5L12 3M12 3L16.5 7.5M12 3V16.5",
|
|
@@ -14726,7 +14930,7 @@ var template = {
|
|
|
14726
14930
|
);
|
|
14727
14931
|
},
|
|
14728
14932
|
download: ({ className, fill }) => {
|
|
14729
|
-
return /* @__PURE__ */ (0,
|
|
14933
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14730
14934
|
"svg",
|
|
14731
14935
|
{
|
|
14732
14936
|
width: "24",
|
|
@@ -14735,7 +14939,7 @@ var template = {
|
|
|
14735
14939
|
fill: "none",
|
|
14736
14940
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14737
14941
|
className,
|
|
14738
|
-
children: /* @__PURE__ */ (0,
|
|
14942
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14739
14943
|
"path",
|
|
14740
14944
|
{
|
|
14741
14945
|
d: "M3 16.5V18.75C3 19.3467 3.23705 19.919 3.65901 20.341C4.08097 20.7629 4.65326 21 5.25 21H18.75C19.3467 21 19.919 20.7629 20.341 20.341C20.7629 19.919 21 19.3467 21 18.75V16.5M16.5 12L12 16.5M12 16.5L7.5 12M12 16.5V3",
|
|
@@ -14748,7 +14952,7 @@ var template = {
|
|
|
14748
14952
|
);
|
|
14749
14953
|
},
|
|
14750
14954
|
"upload-square": ({ className, fill }) => {
|
|
14751
|
-
return /* @__PURE__ */ (0,
|
|
14955
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14752
14956
|
"svg",
|
|
14753
14957
|
{
|
|
14754
14958
|
width: "24",
|
|
@@ -14757,7 +14961,7 @@ var template = {
|
|
|
14757
14961
|
fill: "none",
|
|
14758
14962
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14759
14963
|
className,
|
|
14760
|
-
children: /* @__PURE__ */ (0,
|
|
14964
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14761
14965
|
"path",
|
|
14762
14966
|
{
|
|
14763
14967
|
d: "M9 8.25H7.5C6.90326 8.25 6.33097 8.48705 5.90901 8.90901C5.48705 9.33097 5.25 9.90326 5.25 10.5V19.5C5.25 20.0967 5.48705 20.669 5.90901 21.091C6.33097 21.5129 6.90326 21.75 7.5 21.75H16.5C17.0967 21.75 17.669 21.5129 18.091 21.091C18.5129 20.669 18.75 20.0967 18.75 19.5V10.5C18.75 9.90326 18.5129 9.33097 18.091 8.90901C17.669 8.48705 17.0967 8.25 16.5 8.25H15M15 5.25L12 2.25M12 2.25L9 5.25M12 2.25V15",
|
|
@@ -14770,7 +14974,7 @@ var template = {
|
|
|
14770
14974
|
);
|
|
14771
14975
|
},
|
|
14772
14976
|
"download-square": ({ className, fill }) => {
|
|
14773
|
-
return /* @__PURE__ */ (0,
|
|
14977
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14774
14978
|
"svg",
|
|
14775
14979
|
{
|
|
14776
14980
|
width: "24",
|
|
@@ -14779,7 +14983,7 @@ var template = {
|
|
|
14779
14983
|
fill: "none",
|
|
14780
14984
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14781
14985
|
className,
|
|
14782
|
-
children: /* @__PURE__ */ (0,
|
|
14986
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14783
14987
|
"path",
|
|
14784
14988
|
{
|
|
14785
14989
|
d: "M9 8.25H7.5C6.90326 8.25 6.33097 8.48705 5.90901 8.90901C5.48705 9.33097 5.25 9.90326 5.25 10.5V19.5C5.25 20.0967 5.48705 20.669 5.90901 21.091C6.33097 21.5129 6.90326 21.75 7.5 21.75H16.5C17.0967 21.75 17.669 21.5129 18.091 21.091C18.5129 20.669 18.75 20.0967 18.75 19.5V10.5C18.75 9.90326 18.5129 9.33097 18.091 8.90901C17.669 8.48705 17.0967 8.25 16.5 8.25H15M9 12L12 15M12 15L15 12M12 15V2.25",
|
|
@@ -14792,7 +14996,7 @@ var template = {
|
|
|
14792
14996
|
);
|
|
14793
14997
|
},
|
|
14794
14998
|
video: ({ className, fill }) => {
|
|
14795
|
-
return /* @__PURE__ */ (0,
|
|
14999
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14796
15000
|
"svg",
|
|
14797
15001
|
{
|
|
14798
15002
|
width: "24",
|
|
@@ -14801,13 +15005,13 @@ var template = {
|
|
|
14801
15005
|
fill: "none",
|
|
14802
15006
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14803
15007
|
className,
|
|
14804
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
15008
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14805
15009
|
"path",
|
|
14806
15010
|
{
|
|
14807
15011
|
d: "M4.5 4.5C3.70435 4.5 2.94129 4.81607 2.37868 5.37868C1.81607 5.94129 1.5 6.70435 1.5 7.5V16.5C1.5 17.2956 1.81607 18.0587 2.37868 18.6213C2.94129 19.1839 3.70435 19.5 4.5 19.5H12.75C13.5456 19.5 14.3087 19.1839 14.8713 18.6213C15.4339 18.0587 15.75 17.2956 15.75 16.5V7.5C15.75 6.70435 15.4339 5.94129 14.8713 5.37868C14.3087 4.81607 13.5456 4.5 12.75 4.5H4.5ZM19.94 18.75L17.25 16.06V7.94L19.94 5.25C20.884 4.305 22.5 4.974 22.5 6.31V17.69C22.5 19.026 20.884 19.695 19.94 18.75Z",
|
|
14808
15012
|
fill: "currentColor"
|
|
14809
15013
|
}
|
|
14810
|
-
) : /* @__PURE__ */ (0,
|
|
15014
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14811
15015
|
"path",
|
|
14812
15016
|
{
|
|
14813
15017
|
d: "M15.75 10.5L20.47 5.78C20.5749 5.67524 20.7085 5.60392 20.8539 5.57503C20.9993 5.54615 21.15 5.561 21.2869 5.61771C21.4239 5.67442 21.541 5.77045 21.6234 5.89367C21.7058 6.01688 21.7499 6.16176 21.75 6.31V17.69C21.7499 17.8382 21.7058 17.9831 21.6234 18.1063C21.541 18.2295 21.4239 18.3256 21.2869 18.3823C21.15 18.439 20.9993 18.4538 20.8539 18.425C20.7085 18.3961 20.5749 18.3248 20.47 18.22L15.75 13.5M4.5 18.75H13.5C14.0967 18.75 14.669 18.5129 15.091 18.091C15.5129 17.669 15.75 17.0967 15.75 16.5V7.5C15.75 6.90326 15.5129 6.33097 15.091 5.90901C14.669 5.48705 14.0967 5.25 13.5 5.25H4.5C3.90326 5.25 3.33097 5.48705 2.90901 5.90901C2.48705 6.33097 2.25 6.90326 2.25 7.5V16.5C2.25 17.0967 2.48705 17.669 2.90901 18.091C3.33097 18.5129 3.90326 18.75 4.5 18.75Z",
|
|
@@ -14820,7 +15024,7 @@ var template = {
|
|
|
14820
15024
|
);
|
|
14821
15025
|
},
|
|
14822
15026
|
"video-off": ({ className, fill }) => {
|
|
14823
|
-
return /* @__PURE__ */ (0,
|
|
15027
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14824
15028
|
"svg",
|
|
14825
15029
|
{
|
|
14826
15030
|
width: "24",
|
|
@@ -14829,13 +15033,13 @@ var template = {
|
|
|
14829
15033
|
fill: "none",
|
|
14830
15034
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14831
15035
|
className,
|
|
14832
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
15036
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14833
15037
|
"path",
|
|
14834
15038
|
{
|
|
14835
15039
|
d: "M0.970011 3.97007C1.11064 3.82962 1.30126 3.75073 1.50001 3.75073C1.69876 3.75073 1.88939 3.82962 2.03001 3.97007L17.03 18.9701C17.1037 19.0387 17.1628 19.1215 17.2038 19.2135C17.2448 19.3055 17.2668 19.4048 17.2686 19.5056C17.2704 19.6063 17.2519 19.7063 17.2141 19.7997C17.1764 19.8931 17.1203 19.9779 17.049 20.0491C16.9778 20.1203 16.893 20.1765 16.7996 20.2142C16.7062 20.2519 16.6062 20.2704 16.5055 20.2687C16.4048 20.2669 16.3055 20.2448 16.2135 20.2039C16.1215 20.1629 16.0387 20.1038 15.97 20.0301L0.970011 5.03007C0.829561 4.88945 0.750671 4.69882 0.750671 4.50007C0.750671 4.30132 0.829561 4.1107 0.970011 3.97007ZM17.25 16.0601L19.94 18.7501C20.884 19.6951 22.5 19.0261 22.5 17.6901V6.31007C22.5 4.97407 20.884 4.30507 19.94 5.25007L17.25 7.94007V16.0601ZM15.75 7.50007V15.5681L4.68201 4.50007H12.75C13.5457 4.50007 14.3087 4.81614 14.8713 5.37875C15.4339 5.94136 15.75 6.70442 15.75 7.50007ZM1.50001 16.5001V7.68207L13.273 19.4551C13.103 19.4851 12.928 19.5001 12.75 19.5001H4.50001C3.70436 19.5001 2.9413 19.184 2.37869 18.6214C1.81608 18.0588 1.50001 17.2957 1.50001 16.5001Z",
|
|
14836
15040
|
fill: "currentColor"
|
|
14837
15041
|
}
|
|
14838
|
-
) : /* @__PURE__ */ (0,
|
|
15042
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14839
15043
|
"path",
|
|
14840
15044
|
{
|
|
14841
15045
|
d: "M15.75 10.5L20.47 5.78C20.5749 5.67524 20.7085 5.60392 20.8539 5.57503C20.9993 5.54615 21.15 5.561 21.2869 5.61771C21.4239 5.67442 21.541 5.77045 21.6234 5.89367C21.7058 6.01688 21.7499 6.16176 21.75 6.31V17.69C21.7499 17.8382 21.7058 17.9831 21.6234 18.1063C21.541 18.2295 21.4239 18.3256 21.2869 18.3823C21.15 18.439 20.9993 18.4538 20.8539 18.425C20.7085 18.3961 20.5749 18.3248 20.47 18.22L15.75 13.5M12 18.75H4.5C3.90326 18.75 3.33097 18.5129 2.90901 18.091C2.48705 17.669 2.25 17.0967 2.25 16.5V9M15.091 18.091L16.5 19.5M15.091 18.091C15.498 17.684 15.75 17.121 15.75 16.5V7.5C15.75 6.90326 15.5129 6.33097 15.091 5.90901C14.669 5.48705 14.0967 5.25 13.5 5.25H4.5C3.879 5.25 3.316 5.502 2.909 5.909M15.091 18.091L2.909 5.909M2.909 5.909L1.5 4.5",
|
|
@@ -14848,7 +15052,7 @@ var template = {
|
|
|
14848
15052
|
);
|
|
14849
15053
|
},
|
|
14850
15054
|
sound: ({ className, fill }) => {
|
|
14851
|
-
return /* @__PURE__ */ (0,
|
|
15055
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14852
15056
|
"svg",
|
|
14853
15057
|
{
|
|
14854
15058
|
width: "24",
|
|
@@ -14857,45 +15061,45 @@ var template = {
|
|
|
14857
15061
|
fill: "none",
|
|
14858
15062
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14859
15063
|
className,
|
|
14860
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14861
|
-
/* @__PURE__ */ (0,
|
|
14862
|
-
/* @__PURE__ */ (0,
|
|
15064
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
15065
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "24", height: "24", fill: "transparent" }),
|
|
15066
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14863
15067
|
"path",
|
|
14864
15068
|
{
|
|
14865
15069
|
d: "M12.2813 3.74989C12.4989 3.85096 12.659 3.994 12.75 4.21864C12.7781 4.42611 12.7753 4.6323 12.7738 4.84139C12.774 4.90562 12.7743 4.96986 12.7747 5.03409C12.7755 5.21035 12.7751 5.3866 12.7745 5.56287C12.7741 5.75305 12.7748 5.94324 12.7753 6.13342C12.7761 6.5059 12.7759 6.87837 12.7754 7.25085C12.775 7.55355 12.7749 7.85626 12.7751 8.15896C12.7751 8.20203 12.7752 8.2451 12.7752 8.28948C12.7753 8.37698 12.7753 8.46448 12.7754 8.55198C12.7759 9.37257 12.7753 10.1932 12.7743 11.0138C12.7735 11.718 12.7736 12.4222 12.7745 13.1264C12.7755 13.944 12.7759 14.7616 12.7753 15.5793C12.7752 15.6665 12.7752 15.7537 12.7751 15.8408C12.7751 15.9052 12.7751 15.9052 12.775 15.9708C12.7749 16.2732 12.7751 16.5755 12.7756 16.8779C12.7761 17.2463 12.776 17.6148 12.775 17.9832C12.7745 18.1712 12.7743 18.3592 12.7749 18.5472C12.7755 18.7194 12.7751 18.8914 12.7741 19.0635C12.7738 19.1553 12.7745 19.2471 12.7751 19.3388C12.7724 19.64 12.7701 19.8359 12.5625 20.0624C12.3447 20.2693 12.1459 20.2718 11.8594 20.2748C11.5384 20.218 11.3211 19.9578 11.1025 19.7335C11.0702 19.7008 11.0379 19.6681 11.0046 19.6344C10.9349 19.5636 10.8652 19.4928 10.7956 19.4218C10.6853 19.3094 10.5746 19.1974 10.4638 19.0856C10.1489 18.7675 9.8344 18.4491 9.52085 18.1297C9.32874 17.934 9.13595 17.7391 8.94271 17.5446C8.86939 17.4705 8.79634 17.3962 8.72356 17.3216C8.62161 17.2171 8.5188 17.1136 8.41576 17.0102C8.38616 16.9794 8.35656 16.9487 8.32607 16.917C8.03321 16.6267 7.73099 16.532 7.32266 16.5284C7.26621 16.5289 7.26621 16.5289 7.20862 16.5295C7.1677 16.5293 7.12679 16.5291 7.08464 16.5289C6.99655 16.5286 6.90847 16.5287 6.82039 16.529C6.68061 16.5294 6.54086 16.5289 6.40109 16.5282C6.00395 16.5263 5.60682 16.5262 5.20968 16.5263C4.96604 16.5263 4.72241 16.5254 4.47878 16.524C4.34173 16.5235 4.20471 16.5241 4.06767 16.5247C3.5256 16.5236 3.06604 16.4996 2.64992 16.111C2.38372 15.8149 2.23877 15.4888 2.23748 15.088C2.23708 15.0315 2.23668 14.975 2.23627 14.9167C2.23631 14.8554 2.23635 14.794 2.2364 14.7308C2.23612 14.665 2.2358 14.5992 2.23544 14.5334C2.23462 14.3552 2.2344 14.177 2.23434 13.9988C2.23427 13.8873 2.23407 13.7758 2.23382 13.6642C2.23295 13.2747 2.23257 12.8851 2.23265 12.4955C2.2327 12.1332 2.23171 11.771 2.23023 11.4087C2.229 11.097 2.2285 10.7852 2.22856 10.4735C2.22859 10.2877 2.22832 10.1018 2.22733 9.91593C2.22641 9.74094 2.22642 9.56597 2.22709 9.39098C2.22724 9.2968 2.22646 9.20263 2.22565 9.10846C2.22887 8.64104 2.31256 8.24925 2.63893 7.8998C2.9827 7.59073 3.33749 7.48576 3.79182 7.48718C3.85328 7.48681 3.85328 7.48681 3.91597 7.48644C4.00459 7.48596 4.09321 7.48569 4.18184 7.4856C4.32237 7.48543 4.46289 7.48464 4.60343 7.48369C5.00288 7.4811 5.40234 7.47966 5.80179 7.47851C6.04649 7.47776 6.29117 7.47634 6.53585 7.47453C6.62879 7.47399 6.72172 7.47371 6.81466 7.4737C6.945 7.47369 7.07531 7.47283 7.20564 7.4718C7.26253 7.47212 7.26253 7.47212 7.32057 7.47245C7.73537 7.46725 8.03575 7.37058 8.33306 7.07581C8.36368 7.04403 8.3943 7.01224 8.42586 6.9795C8.45945 6.94579 8.49304 6.91209 8.52765 6.87737C8.63774 6.76661 8.74681 6.6549 8.85591 6.54317C8.93256 6.46576 9.00928 6.38841 9.08607 6.31113C9.28751 6.1081 9.48812 5.90427 9.68854 5.70022C10.0099 5.37328 10.3325 5.04752 10.6551 4.72182C10.7677 4.60797 10.8799 4.49378 10.992 4.37952C11.0607 4.30983 11.1295 4.24015 11.1983 4.17048C11.2294 4.1386 11.2605 4.10672 11.2925 4.07388C11.3213 4.04477 11.3502 4.01565 11.3799 3.98566C11.4047 3.96035 11.4296 3.93504 11.4552 3.90896C11.6981 3.70036 11.9762 3.71718 12.2813 3.74989Z",
|
|
14866
15070
|
fill: "currentColor"
|
|
14867
15071
|
}
|
|
14868
15072
|
),
|
|
14869
|
-
/* @__PURE__ */ (0,
|
|
15073
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14870
15074
|
"path",
|
|
14871
15075
|
{
|
|
14872
15076
|
d: "M17.1562 4.54695C17.9673 4.94634 18.6632 5.46785 19.3125 6.09382C19.3512 6.1296 19.39 6.16537 19.4299 6.20222C20.5523 7.26879 21.2538 8.72868 21.6094 10.2188C21.6177 10.2522 21.6261 10.2855 21.6346 10.3198C21.8875 11.374 21.8768 12.7317 21.6094 13.7813C21.5988 13.8241 21.5882 13.8669 21.5773 13.911C21.1944 15.4215 20.478 16.6899 19.4062 17.8126C19.3682 17.8531 19.3301 17.8937 19.2909 17.9354C18.2514 19.0136 16.5301 20.0623 15.0088 20.13C14.7034 20.1198 14.5381 20.0251 14.3232 19.8048C14.2152 19.5627 14.2138 19.3391 14.25 19.0782C14.335 18.9112 14.335 18.9112 14.4375 18.7969C14.4574 18.7731 14.4772 18.7493 14.4977 18.7248C14.6057 18.6328 14.7057 18.6092 14.8423 18.5721C14.8952 18.5573 14.948 18.5426 15.0024 18.5273C15.0868 18.5042 15.0868 18.5042 15.1729 18.4805C16.9763 17.9632 18.4795 16.8626 19.3986 15.204C19.9263 14.202 20.167 13.1527 20.168 12.0264C20.168 11.9929 20.168 11.9593 20.1681 11.9247C20.1673 11.42 20.1437 10.9439 20.0156 10.4532C20.0076 10.4211 19.9995 10.389 19.9912 10.3559C19.5476 8.6091 18.4256 7.13599 16.8865 6.20485C16.2612 5.8429 15.5693 5.59379 14.8654 5.43684C14.6437 5.36708 14.4853 5.25355 14.3262 5.08601C14.2137 4.84373 14.215 4.6221 14.25 4.35945C14.342 4.15328 14.4635 4.02477 14.6688 3.92366C15.4157 3.6695 16.4895 4.22654 17.1562 4.54695Z",
|
|
14873
15077
|
fill: "currentColor"
|
|
14874
15078
|
}
|
|
14875
15079
|
),
|
|
14876
|
-
/* @__PURE__ */ (0,
|
|
15080
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14877
15081
|
"path",
|
|
14878
15082
|
{
|
|
14879
15083
|
d: "M15.4748 7.90066C16.6503 8.49561 17.4474 9.47886 17.8715 10.7194C18.2173 11.8746 18.0391 13.1485 17.4844 14.2031C16.9957 15.0635 16.1946 15.8515 15.2534 16.1922C15.0122 16.249 14.788 16.2421 14.5728 16.112C14.4243 15.9912 14.3224 15.8819 14.25 15.7031C14.2381 15.5651 14.2381 15.5651 14.2378 15.401C14.2376 15.3708 14.2374 15.3405 14.2372 15.3094C14.2368 15.2082 14.2369 15.1069 14.2371 15.0057C14.2369 14.9331 14.2367 14.8605 14.2364 14.7879C14.2358 14.5907 14.2357 14.3935 14.2359 14.1963C14.2359 14.0317 14.2357 13.8671 14.2355 13.7025C14.2349 13.3142 14.2349 12.9259 14.2352 12.5376C14.2355 12.137 14.2349 11.7363 14.2339 11.3357C14.2331 10.9918 14.2328 10.6478 14.233 10.3038C14.233 10.0984 14.2329 9.89299 14.2323 9.68756C14.2317 9.49437 14.2318 9.3012 14.2324 9.10801C14.2325 9.03713 14.2324 8.96625 14.232 8.89538C14.2315 8.79857 14.2319 8.7018 14.2325 8.60499C14.2325 8.55083 14.2324 8.49668 14.2324 8.44088C14.2594 8.22021 14.3598 8.07112 14.5313 7.93362C14.8399 7.70212 15.1396 7.75575 15.4748 7.90066Z",
|
|
14880
15084
|
fill: "currentColor"
|
|
14881
15085
|
}
|
|
14882
15086
|
)
|
|
14883
|
-
] }) : /* @__PURE__ */ (0,
|
|
14884
|
-
/* @__PURE__ */ (0,
|
|
15087
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
15088
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14885
15089
|
"path",
|
|
14886
15090
|
{
|
|
14887
15091
|
d: "M13.9834 4.20996C14.3635 4.52013 14.6225 4.90469 14.7188 5.39062C14.7324 5.56982 14.7318 5.74848 14.7313 5.92813C14.7315 5.982 14.7317 6.03586 14.7319 6.09135C14.7325 6.2717 14.7325 6.45204 14.7324 6.63239C14.7326 6.76176 14.733 6.89112 14.7333 7.02049C14.7341 7.33537 14.7344 7.65025 14.7344 7.96513C14.7345 8.22122 14.7347 8.4773 14.735 8.73338C14.7358 9.46009 14.7362 10.1868 14.7361 10.9135C14.7361 10.9526 14.7361 10.9918 14.7361 11.0321C14.7361 11.0713 14.7361 11.1105 14.7361 11.1509C14.7361 11.7859 14.737 12.4208 14.7383 13.0557C14.7397 13.7083 14.7403 14.3609 14.7402 15.0135C14.7402 15.3796 14.7404 15.7458 14.7415 16.1119C14.7423 16.4237 14.7425 16.7354 14.7419 17.0472C14.7416 17.2061 14.7417 17.365 14.7424 17.5239C14.7431 17.6967 14.7427 17.8694 14.7419 18.0421C14.7424 18.0917 14.7429 18.1412 14.7434 18.1923C14.7379 18.7953 14.5399 19.2461 14.1239 19.6756C13.7785 19.9969 13.374 20.1174 12.9111 20.124C12.8805 20.1254 12.8499 20.1267 12.8184 20.1281C12.3492 20.134 11.9415 19.9041 11.5488 19.6699C11.4626 19.6196 11.3763 19.5693 11.2899 19.519C11.2452 19.4929 11.2004 19.4667 11.1543 19.4398C10.9182 19.3029 10.6798 19.1701 10.4414 19.0371C10.3422 18.9816 10.2429 18.9261 10.1437 18.8707C10.0694 18.8292 10.0694 18.8292 9.99368 18.7869C9.32868 18.4154 8.66421 18.043 8.00131 17.6677C7.47583 17.3705 6.94914 17.0754 6.42189 16.7812C6.39167 16.7614 6.36144 16.7415 6.3303 16.721C6.04155 16.5402 5.81095 16.5147 5.4745 16.5203C5.42534 16.5201 5.37618 16.5198 5.32553 16.5195C5.16947 16.5188 5.01349 16.5195 4.85744 16.5205C4.70173 16.5213 4.54606 16.5217 4.39035 16.521C4.29388 16.5206 4.19739 16.521 4.10093 16.5224C3.54821 16.5203 3.06609 16.3143 2.66438 15.9359C2.16667 15.4084 2.04791 14.8435 2.04964 14.137C2.0494 14.0858 2.04916 14.0345 2.04891 13.9816C2.04827 13.8134 2.04831 13.6452 2.04841 13.4769C2.04823 13.3591 2.04803 13.2413 2.04781 13.1236C2.04746 12.8771 2.04746 12.6307 2.04772 12.3843C2.048 12.1008 2.04742 11.8174 2.04642 11.5339C2.04549 11.2596 2.04536 10.9852 2.04552 10.7108C2.0455 10.5949 2.04525 10.4789 2.04478 10.3629C2.0442 10.2003 2.04452 10.0377 2.04506 9.87508C2.0447 9.82787 2.04434 9.78066 2.04398 9.73202C2.04888 9.05982 2.23742 8.52087 2.69551 8.03119C3.12505 7.62988 3.59395 7.47717 4.16933 7.49579C4.26965 7.49727 4.36997 7.49856 4.47029 7.49968C4.52212 7.50033 4.57395 7.50098 4.62735 7.50165C5.85431 7.51624 5.85431 7.51624 6.9219 6.97105C7.12244 6.82357 7.34344 6.71096 7.56154 6.5918C7.6519 6.54075 7.74217 6.48954 7.83235 6.43817C8.11749 6.27645 8.40339 6.11611 8.68947 5.95605C8.7624 5.91524 8.7624 5.91524 8.83681 5.8736C9.03441 5.76304 9.23204 5.65252 9.42967 5.54201C9.96367 5.24334 10.4975 4.9443 11.0303 4.64355C11.0753 4.61821 11.1202 4.59286 11.1666 4.56675C11.3976 4.43624 11.6263 4.30302 11.8535 4.16601C12.53 3.77544 13.3263 3.74841 13.9834 4.20996ZM11.3385 5.56073C11.0393 5.73282 10.7375 5.90022 10.4356 6.06738C9.99604 6.31085 9.55767 6.55619 9.12057 6.80398C8.8381 6.96404 8.55503 7.12297 8.27155 7.28123C7.85671 7.51286 7.44265 7.74567 7.03126 7.9834C6.99369 8.00507 6.95613 8.02674 6.91742 8.04906C6.75398 8.13663 6.75398 8.13663 6.60939 8.25C6.60403 8.34615 6.60201 8.44249 6.60123 8.53879C6.60077 8.58454 6.60077 8.58454 6.60031 8.63122C6.59934 8.73417 6.59873 8.83712 6.59812 8.94008C6.59752 9.0136 6.5969 9.08711 6.59627 9.16063C6.59083 9.83218 6.58818 10.5038 6.58611 11.1753C6.58455 11.672 6.58176 12.1687 6.57732 12.6653C6.57431 13.0143 6.57273 13.3632 6.5722 13.7121C6.57184 13.9207 6.57085 14.1291 6.56831 14.3377C6.56595 14.5339 6.56535 14.7301 6.56612 14.9263C6.56609 14.9984 6.56542 15.0704 6.56406 15.1424C6.54183 15.5181 6.54183 15.5181 6.6911 15.8432C6.78754 15.9046 6.87712 15.9457 6.98439 15.9844C7.05024 16.0226 7.05024 16.0226 7.11743 16.0616C7.1577 16.0839 7.19797 16.1063 7.23945 16.1294C7.30861 16.168 7.30861 16.168 7.37916 16.2073C7.42775 16.2343 7.47633 16.2613 7.52638 16.2891C7.63143 16.3476 7.73647 16.4062 7.84151 16.4648C7.89426 16.4943 7.94702 16.5237 8.00138 16.554C8.23316 16.6836 8.46427 16.8144 8.69533 16.9453C9.06786 17.1562 9.44092 17.3661 9.81447 17.5752C9.86303 17.6024 9.9116 17.6296 9.96164 17.6576C10.2098 17.7964 10.458 17.9351 10.7062 18.0738C10.8054 18.1293 10.9047 18.1847 11.0039 18.2402C11.052 18.2671 11.1001 18.294 11.1496 18.3216C11.5212 18.5298 11.8912 18.7407 12.2598 18.9543C12.3166 18.987 12.3166 18.987 12.3746 19.0204C12.4242 19.0492 12.4242 19.0492 12.4748 19.0785C12.6708 19.1824 12.8609 19.1994 13.0781 19.1719C13.3541 19.0831 13.526 18.9406 13.6875 18.7031C13.8047 18.4404 13.7945 18.1851 13.7935 17.903C13.7937 17.8506 13.7938 17.7981 13.794 17.7441C13.7945 17.5684 13.7943 17.3926 13.7941 17.2169C13.7943 17.0909 13.7946 16.9649 13.7949 16.839C13.7955 16.5323 13.7955 16.2256 13.7954 15.9188C13.7954 15.6695 13.7954 15.4202 13.7956 15.1708C13.7957 15.1176 13.7957 15.1176 13.7957 15.0633C13.7958 14.9911 13.7958 14.919 13.7959 14.8469C13.7964 14.1707 13.7963 13.4944 13.796 12.8182C13.7958 12.1998 13.7963 11.5814 13.7972 10.963C13.7981 10.3278 13.7985 9.69258 13.7983 9.05736C13.7982 8.70083 13.7983 8.34431 13.799 7.98779C13.7996 7.68426 13.7996 7.38073 13.7991 7.07721C13.7988 6.92241 13.7988 6.76763 13.7993 6.61283C13.7998 6.44485 13.7994 6.2769 13.7988 6.10893C13.7992 6.06024 13.7995 6.01154 13.7999 5.96138C13.7975 5.64635 13.7701 5.36202 13.5634 5.10828C13.329 4.92478 13.1296 4.79428 12.8181 4.80524C12.3026 4.90785 11.7883 5.30128 11.3385 5.56073ZM3.36366 8.7171C3.02725 9.12353 2.99296 9.48122 2.9932 9.99697C2.99305 10.0448 2.99289 10.0926 2.99273 10.1419C2.99228 10.2997 2.99219 10.4574 2.99214 10.6152C2.99199 10.7252 2.99183 10.8351 2.99167 10.9451C2.99139 11.1756 2.9913 11.4061 2.99133 11.6365C2.99133 11.9313 2.99069 12.226 2.98989 12.5208C2.98936 12.7479 2.98927 12.9751 2.98929 13.2023C2.98924 13.3109 2.98903 13.4195 2.98867 13.5282C2.98821 13.6804 2.98835 13.8326 2.98863 13.9848C2.98836 14.0293 2.9881 14.0738 2.98783 14.1197C2.98988 14.5583 3.03348 14.9415 3.35817 15.2639C4.01849 15.8596 4.65455 15.5625 5.67189 15.5625C5.67189 13.2112 5.67189 10.86 5.67189 8.4375C4.40324 8.28986 4.40324 8.28986 3.36366 8.7171Z",
|
|
14888
15092
|
fill: "currentColor"
|
|
14889
15093
|
}
|
|
14890
15094
|
),
|
|
14891
|
-
/* @__PURE__ */ (0,
|
|
15095
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14892
15096
|
"path",
|
|
14893
15097
|
{
|
|
14894
15098
|
d: "M19.9687 6.14057C20.1652 6.30636 20.296 6.50095 20.4287 6.71772C20.449 6.75064 20.4692 6.78355 20.4901 6.81747C21.8748 9.10162 22.2792 11.8446 21.6468 14.4351C21.3961 15.3933 21.0246 16.3019 20.5195 17.1533C20.4963 17.1924 20.4731 17.2315 20.4492 17.2719C20.3224 17.479 20.1957 17.6493 20.0156 17.8124C20.0002 17.8279 19.9847 17.8434 19.9687 17.8593C19.7472 17.8914 19.5935 17.8914 19.4062 17.7626C19.2898 17.5917 19.2587 17.5045 19.2656 17.2968C19.3243 17.1447 19.4131 17.0124 19.5 16.8749C20.3091 15.5626 20.9008 14.0667 20.9174 12.5039C20.9181 12.4499 20.9181 12.4499 20.9188 12.3949C20.9271 11.5748 20.9119 10.7862 20.7187 9.98432C20.7089 9.94267 20.6992 9.90102 20.6891 9.85811C20.446 8.855 20.03 7.83078 19.4187 6.99274C19.3061 6.83467 19.2656 6.75527 19.2656 6.56245C19.356 6.27715 19.356 6.27715 19.4853 6.16694C19.6478 6.12741 19.8065 6.09735 19.9687 6.14057Z",
|
|
14895
15099
|
fill: "currentColor"
|
|
14896
15100
|
}
|
|
14897
15101
|
),
|
|
14898
|
-
/* @__PURE__ */ (0,
|
|
15102
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14899
15103
|
"path",
|
|
14900
15104
|
{
|
|
14901
15105
|
d: "M17.1563 8.48447C17.8829 9.07677 18.2017 10.4352 18.3091 11.3186C18.442 12.6395 18.1663 13.996 17.458 15.1261C17.4324 15.1675 17.4324 15.1675 17.4063 15.2097C17.2972 15.3766 17.1965 15.4779 17.0156 15.5626C16.7989 15.5897 16.6725 15.5561 16.5 15.422C16.4007 15.2586 16.3897 15.1286 16.4156 14.9377C16.4707 14.7539 16.5726 14.6072 16.6769 14.4475C17.0762 13.8273 17.3113 13.0183 17.3438 12.2813C17.3474 12.2225 17.3474 12.2225 17.3511 12.1625C17.3863 11.0958 17.04 10.1352 16.5 9.23447C16.4077 9.06699 16.3865 8.95958 16.4063 8.76572C16.5572 8.43366 16.8228 8.36425 17.1563 8.48447Z",
|
|
@@ -14907,7 +15111,7 @@ var template = {
|
|
|
14907
15111
|
);
|
|
14908
15112
|
},
|
|
14909
15113
|
"sound-off": ({ className, fill }) => {
|
|
14910
|
-
return /* @__PURE__ */ (0,
|
|
15114
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14911
15115
|
"svg",
|
|
14912
15116
|
{
|
|
14913
15117
|
width: "24",
|
|
@@ -14916,59 +15120,59 @@ var template = {
|
|
|
14916
15120
|
fill: "none",
|
|
14917
15121
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14918
15122
|
className,
|
|
14919
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14920
|
-
/* @__PURE__ */ (0,
|
|
14921
|
-
/* @__PURE__ */ (0,
|
|
15123
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
15124
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "24", height: "24", fill: "transparent" }),
|
|
15125
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14922
15126
|
"path",
|
|
14923
15127
|
{
|
|
14924
15128
|
d: "M3.28127 2.99988C3.50263 3.1311 3.67639 3.28793 3.85601 3.46908C3.88433 3.49725 3.91264 3.52543 3.94181 3.55446C4.03665 3.64896 4.13116 3.74379 4.22567 3.83863C4.29427 3.90712 4.3629 3.9756 4.43154 4.04405C4.62013 4.23225 4.80842 4.42074 4.99667 4.60928C5.19972 4.81254 5.40304 5.01554 5.60633 5.21856C5.98149 5.59333 6.35644 5.96832 6.73128 6.34341C7.0775 6.68986 7.4238 7.03623 7.7702 7.38251C7.79317 7.40548 7.81614 7.42844 7.83981 7.4521C7.93305 7.54532 8.0263 7.63854 8.11955 7.73176C8.99429 8.6062 9.86875 9.48093 10.7431 10.3558C11.5202 11.1333 12.2975 11.9106 13.075 12.6877C13.9484 13.5605 14.8216 14.4336 15.6946 15.3068C15.7876 15.3999 15.8807 15.4929 15.9737 15.586C15.9966 15.6089 16.0195 15.6318 16.0431 15.6554C16.3892 16.0017 16.7355 16.3478 17.0819 16.6939C17.4755 17.0873 17.869 17.4809 18.2622 17.8746C18.463 18.0757 18.6639 18.2766 18.8649 18.4774C19.0488 18.6609 19.2324 18.8447 19.4159 19.0287C19.4825 19.0954 19.5491 19.162 19.6159 19.2285C19.7063 19.3186 19.7964 19.409 19.8864 19.4994C19.9258 19.5385 19.9258 19.5385 19.966 19.5784C20.1836 19.7982 20.2637 19.9352 20.2676 20.244C20.2628 20.4881 20.2359 20.6298 20.0625 20.8124C19.8447 21.0193 19.6459 21.0218 19.3594 21.0248C19.034 20.9672 18.8194 20.7036 18.6004 20.4746C18.5362 20.4087 18.472 20.3429 18.4077 20.2771C18.3073 20.1738 18.2071 20.0703 18.1075 19.9663C18.0107 19.8655 17.9131 19.7657 17.8153 19.666C17.7856 19.6345 17.7559 19.6031 17.7253 19.5707C17.5708 19.4029 17.5708 19.4029 17.3593 19.3581C17.3232 19.3739 17.2872 19.3898 17.25 19.4061C17.1998 19.4257 17.1998 19.4257 17.1487 19.4457C17.1149 19.4614 17.0812 19.477 17.0464 19.4931C15.2898 20.2876 15.2898 20.2876 14.6688 20.0763C14.4636 19.9752 14.3421 19.8467 14.25 19.6405C14.2144 19.373 14.2114 19.1539 14.335 18.911C14.3857 18.8545 14.3857 18.8545 14.4375 18.7968C14.4571 18.773 14.4767 18.7493 14.4969 18.7249C14.6084 18.6305 14.7151 18.6057 14.8555 18.567C14.9105 18.5513 14.9655 18.5357 15.0221 18.5196C15.0796 18.5038 15.1371 18.4879 15.1963 18.4716C15.3094 18.4402 15.4224 18.4086 15.5352 18.3765C15.5854 18.3627 15.6356 18.3489 15.6872 18.3346C15.8852 18.2709 15.8852 18.2709 16.2188 18.0936C15.0895 16.9644 13.9603 15.8352 12.7969 14.6718C12.7957 15.0373 12.7945 15.4029 12.7932 15.7795C12.7921 16.0111 12.7908 16.2427 12.7894 16.4742C12.7871 16.8418 12.7851 17.2094 12.7842 17.577C12.7835 17.8733 12.7819 18.1696 12.7796 18.466C12.7789 18.579 12.7786 18.6921 12.7785 18.8052C12.7784 18.9635 12.7771 19.1218 12.7756 19.2802C12.776 19.3503 12.776 19.3503 12.7763 19.4219C12.7723 19.6907 12.7441 19.8501 12.5625 20.0624C12.3447 20.2693 12.1459 20.2718 11.8594 20.2748C11.5384 20.2179 11.3211 19.9578 11.1025 19.7335C11.0702 19.7008 11.0379 19.6681 11.0046 19.6344C10.9349 19.5636 10.8652 19.4928 10.7956 19.4218C10.6853 19.3094 10.5746 19.1974 10.4638 19.0855C10.1489 18.7675 9.83439 18.4491 9.52085 18.1296C9.32874 17.934 9.13595 17.7391 8.94271 17.5445C8.86939 17.4705 8.79634 17.3961 8.72356 17.3216C8.62161 17.2171 8.5188 17.1136 8.41576 17.0102C8.38616 16.9794 8.35656 16.9487 8.32606 16.917C8.03321 16.6267 7.73099 16.532 7.32266 16.5284C7.26621 16.5289 7.26621 16.5289 7.20862 16.5295C7.1677 16.5293 7.12679 16.5291 7.08464 16.5289C6.99655 16.5286 6.90847 16.5286 6.82039 16.5289C6.68061 16.5294 6.54086 16.5289 6.40109 16.5282C6.00395 16.5263 5.60682 16.5262 5.20968 16.5263C4.96604 16.5263 4.72241 16.5254 4.47878 16.524C4.34173 16.5235 4.20471 16.5241 4.06767 16.5247C3.5256 16.5236 3.06604 16.4996 2.64992 16.111C2.38372 15.8149 2.23877 15.4888 2.23748 15.088C2.23708 15.0315 2.23668 14.9749 2.23627 14.9167C2.23631 14.8554 2.23635 14.794 2.2364 14.7308C2.23612 14.665 2.2358 14.5992 2.23544 14.5334C2.23462 14.3552 2.2344 14.177 2.23434 13.9988C2.23427 13.8873 2.23407 13.7757 2.23382 13.6642C2.23295 13.2746 2.23257 12.8851 2.23265 12.4955C2.2327 12.1332 2.23171 11.7709 2.23023 11.4087C2.229 11.0969 2.2285 10.7852 2.22856 10.4735C2.22859 10.2876 2.22832 10.1018 2.22733 9.91592C2.22641 9.74093 2.22642 9.56596 2.22709 9.39096C2.22724 9.29679 2.22646 9.20261 2.22565 9.10844C2.22887 8.64103 2.31256 8.24923 2.63893 7.89978C3.01373 7.56281 3.3931 7.48616 3.88442 7.48047C3.93292 7.47956 3.98142 7.47865 4.03139 7.47772C4.18564 7.47493 4.3399 7.47275 4.49416 7.47058C4.59902 7.46879 4.70388 7.46696 4.80873 7.46509C5.0652 7.4606 5.32166 7.45661 5.57814 7.453C5.53783 7.4129 5.49752 7.3728 5.45598 7.33148C5.07637 6.95376 4.697 6.5758 4.31787 6.19759C4.12294 6.00315 3.92793 5.8088 3.73271 5.61465C3.54437 5.42733 3.35627 5.23978 3.16831 5.05207C3.09652 4.98045 3.02464 4.9089 2.95267 4.83745C2.852 4.73746 2.75163 4.63718 2.65132 4.53682C2.62141 4.50725 2.5915 4.47768 2.56069 4.44722C2.53335 4.41974 2.506 4.39227 2.47783 4.36397C2.45407 4.34029 2.4303 4.31661 2.40582 4.29221C2.22645 4.0795 2.23014 3.87405 2.23537 3.60523C2.26202 3.35672 2.38027 3.24177 2.5547 3.07605C2.79179 2.96598 3.02424 2.95437 3.28127 2.99988Z",
|
|
14925
15129
|
fill: "currentColor"
|
|
14926
15130
|
}
|
|
14927
15131
|
),
|
|
14928
|
-
/* @__PURE__ */ (0,
|
|
15132
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14929
15133
|
"path",
|
|
14930
15134
|
{
|
|
14931
15135
|
d: "M17.1562 4.54695C17.9673 4.94634 18.6632 5.46785 19.3125 6.09382C19.3512 6.1296 19.3899 6.16537 19.4298 6.20222C20.5523 7.26879 21.2538 8.72868 21.6094 10.2188C21.6177 10.2522 21.626 10.2855 21.6346 10.3198C21.8874 11.374 21.8768 12.7317 21.6094 13.7813C21.5988 13.8241 21.5882 13.8669 21.5773 13.911C21.312 14.9576 20.8983 16.1103 20.1562 16.9219C19.9318 17.0467 19.7555 17.094 19.5 17.0626C19.2528 16.9762 19.0812 16.865 18.9375 16.6407C18.896 16.5164 18.8803 16.4324 18.876 16.3038C18.8742 16.2702 18.8724 16.2367 18.8706 16.2022C18.916 15.9202 19.0925 15.6753 19.2422 15.437C19.884 14.405 20.167 13.2599 20.1679 12.0528C20.168 12.018 20.168 11.9832 20.168 11.9474C20.1673 11.4352 20.1468 10.951 20.0156 10.4532C20.0076 10.4212 19.9995 10.3891 19.9912 10.3561C19.5476 8.60913 18.4257 7.13618 16.8865 6.20487C16.2604 5.84247 15.5611 5.58229 14.8528 5.43689C14.5841 5.37353 14.4516 5.2411 14.2969 5.0157C14.1987 4.81936 14.2304 4.57327 14.25 4.35945C14.342 4.15328 14.4635 4.02477 14.6687 3.92366C15.4157 3.6695 16.4895 4.22654 17.1562 4.54695Z",
|
|
14932
15136
|
fill: "currentColor"
|
|
14933
15137
|
}
|
|
14934
15138
|
),
|
|
14935
|
-
/* @__PURE__ */ (0,
|
|
15139
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14936
15140
|
"path",
|
|
14937
15141
|
{
|
|
14938
15142
|
d: "M15.4748 7.90075C16.6503 8.4957 17.4474 9.47895 17.8714 10.7195C18.1297 11.5823 18.0978 12.6019 17.8125 13.4532C17.7944 13.5076 17.7763 13.562 17.7577 13.618C17.6369 13.9419 17.5184 14.1393 17.2031 14.297C17.1135 14.3052 17.0235 14.3095 16.9336 14.3116C16.8855 14.3134 16.8374 14.3151 16.7878 14.3169C16.4127 14.2661 16.1478 13.9115 15.8943 13.6568C15.8497 13.6124 15.8052 13.5679 15.7606 13.5234C15.6676 13.4306 15.5748 13.3376 15.4821 13.2445C15.3635 13.1253 15.2445 13.0066 15.1253 12.888C15.0333 12.7964 14.9416 12.7045 14.85 12.6127C14.7849 12.5475 14.7197 12.4826 14.6545 12.4176C14.615 12.3779 14.5756 12.3381 14.5349 12.2972C14.5002 12.2624 14.4654 12.2275 14.4296 12.1917C14.251 11.9883 14.2362 11.8224 14.2371 11.5575C14.2369 11.5226 14.2366 11.4878 14.2364 11.4518C14.2357 11.3368 14.2358 11.2218 14.2359 11.1067C14.2357 11.0266 14.2355 10.9466 14.2353 10.8665C14.2349 10.6986 14.2349 10.5308 14.2352 10.363C14.2355 10.1481 14.2347 9.93323 14.2336 9.71833C14.2329 9.55293 14.2328 9.38754 14.233 9.22214C14.233 9.14292 14.2327 9.0637 14.2322 8.98448C14.2317 8.87362 14.232 8.7628 14.2325 8.65195C14.2322 8.61933 14.2318 8.58672 14.2314 8.55312C14.234 8.31242 14.294 8.16223 14.4609 7.9901C14.7974 7.7202 15.0908 7.73478 15.4748 7.90075Z",
|
|
14939
15143
|
fill: "currentColor"
|
|
14940
15144
|
}
|
|
14941
15145
|
),
|
|
14942
|
-
/* @__PURE__ */ (0,
|
|
15146
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14943
15147
|
"path",
|
|
14944
15148
|
{
|
|
14945
15149
|
d: "M12.2812 3.74991C12.514 3.85798 12.6287 3.99485 12.75 4.21866C12.7767 4.37145 12.7756 4.52162 12.7743 4.67642C12.7746 4.72173 12.7749 4.76704 12.7753 4.81372C12.7761 4.96304 12.7755 5.11231 12.7749 5.26163C12.775 5.36564 12.7752 5.46966 12.7754 5.57368C12.7757 5.79151 12.7753 6.00932 12.7744 6.22714C12.7734 6.50614 12.774 6.78511 12.7751 7.06411C12.7758 7.27885 12.7756 7.49358 12.7751 7.70832C12.775 7.81118 12.7751 7.91405 12.7756 8.01691C12.776 8.16076 12.7753 8.30455 12.7743 8.44839C12.7746 8.49077 12.775 8.53315 12.7754 8.57681C12.7719 8.835 12.7341 8.98237 12.5625 9.18741C12.3447 9.39432 12.1459 9.39682 11.8594 9.39981C11.5886 9.35186 11.3987 9.16033 11.2091 8.97116C11.1663 8.92861 11.1234 8.88606 11.0793 8.84222C11.0334 8.79616 10.9875 8.75009 10.9417 8.70401C10.8939 8.65637 10.8462 8.60874 10.7985 8.56113C10.6989 8.46167 10.5995 8.36205 10.5002 8.26231C10.373 8.13464 10.2455 8.00739 10.1178 7.88026C10.0193 7.78215 9.92112 7.68382 9.82296 7.58541C9.77601 7.5384 9.72899 7.49145 9.68189 7.44458C9.61616 7.37908 9.55075 7.31325 9.48537 7.2474C9.42949 7.19142 9.42949 7.19142 9.37249 7.1343C9.20936 6.94988 9.17304 6.813 9.16992 6.56827C9.16859 6.52101 9.16726 6.47376 9.16589 6.42508C9.20698 6.15142 9.40133 5.96182 9.59125 5.77153C9.65507 5.70726 9.65507 5.70726 9.72019 5.64169C9.76625 5.5958 9.81232 5.54992 9.8584 5.50406C9.90604 5.45635 9.95366 5.40864 10.0013 5.36091C10.1007 5.26131 10.2004 5.16189 10.3001 5.06259C10.4278 4.93545 10.555 4.80789 10.6821 4.6802C10.7803 4.58175 10.8786 4.48353 10.977 4.38537C11.024 4.33842 11.071 4.29139 11.1178 4.2443C11.1833 4.17856 11.2492 4.11316 11.315 4.04777C11.3523 4.01052 11.3896 3.97328 11.4281 3.9349C11.6853 3.70738 11.9501 3.71439 12.2812 3.74991Z",
|
|
14946
15150
|
fill: "currentColor"
|
|
14947
15151
|
}
|
|
14948
15152
|
)
|
|
14949
|
-
] }) : /* @__PURE__ */ (0,
|
|
14950
|
-
/* @__PURE__ */ (0,
|
|
15153
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
15154
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14951
15155
|
"path",
|
|
14952
15156
|
{
|
|
14953
15157
|
d: "M4.07814 4.96867C4.21547 5.04814 4.21547 5.04814 4.35353 5.16203C4.37909 5.18273 4.40466 5.20343 4.43099 5.22476C4.51717 5.29487 4.60233 5.36611 4.68751 5.43742C4.75198 5.49052 4.81649 5.54356 4.88106 5.59654C4.98266 5.68 5.08417 5.76357 5.1854 5.84748C5.39582 6.02181 5.60849 6.19259 5.82423 6.36027C6.06177 6.54502 6.29244 6.73627 6.52104 6.93191C6.7255 7.10609 6.93549 7.27213 7.14749 7.43699C7.40895 7.64102 7.66454 7.85186 7.92009 8.0632C8.12798 8.23508 8.3371 8.40512 8.54829 8.57292C8.71145 8.70345 8.87323 8.83566 9.03517 8.9677C9.27441 9.1627 9.51528 9.35522 9.7588 9.54485C9.99722 9.73064 10.2289 9.92289 10.4585 10.1194C10.663 10.2936 10.873 10.4596 11.085 10.6245C11.3464 10.8285 11.602 11.0394 11.8576 11.2507C12.0655 11.4226 12.2746 11.5926 12.4858 11.7604C12.649 11.891 12.8107 12.0232 12.9727 12.1552C13.2119 12.3502 13.4528 12.5427 13.6963 12.7323C13.9347 12.9181 14.1664 13.1104 14.396 13.3069C14.6005 13.4811 14.8105 13.6471 15.0225 13.812C15.2839 14.016 15.5395 14.2269 15.7951 14.4382C16.003 14.6101 16.2121 14.7801 16.4233 14.9479C16.5865 15.0785 16.7482 15.2107 16.9102 15.3427C17.1494 15.5377 17.3903 15.7302 17.6338 15.9198C17.8722 16.1056 18.1039 16.2979 18.3335 16.4944C18.538 16.6686 18.748 16.8346 18.96 16.9995C19.221 17.2032 19.4764 17.4134 19.7311 17.6248C19.9509 17.8069 20.1732 17.9845 20.4007 18.157C20.5333 18.2795 20.5738 18.3815 20.5928 18.5595C20.5759 18.7245 20.5389 18.807 20.4375 18.9374C20.2766 19.0343 20.1421 19.0565 19.9534 19.0303C19.695 18.9354 19.5002 18.7228 19.2994 18.5401C19.1718 18.4271 19.0373 18.3236 18.9024 18.2196C18.6526 18.0257 18.4076 17.8267 18.1641 17.6249C17.9243 17.4263 17.6832 17.2302 17.4375 17.039C17.1249 16.7955 16.8195 16.5438 16.5141 16.2914C15.9243 15.8038 15.3318 15.3175 14.7188 14.8593C14.7192 14.905 14.7196 14.9508 14.72 14.9979C14.7238 15.4309 14.7266 15.8639 14.7285 16.297C14.7295 16.5196 14.7308 16.7421 14.7329 16.9647C14.735 17.1799 14.7361 17.3951 14.7366 17.6102C14.7369 17.6919 14.7376 17.7736 14.7386 17.8553C14.7474 18.5873 14.651 19.1313 14.1239 19.6755C13.7785 19.9968 13.374 20.1174 12.9111 20.1239C12.8805 20.1253 12.8499 20.1267 12.8184 20.1281C12.3492 20.1339 11.9415 19.904 11.5488 19.6698C11.4626 19.6195 11.3763 19.5692 11.2899 19.519C11.2452 19.4928 11.2004 19.4666 11.1543 19.4397C10.9182 19.3028 10.6798 19.17 10.4414 19.037C10.3422 18.9816 10.2429 18.9261 10.1437 18.8706C10.0694 18.8291 10.0694 18.8291 9.99368 18.7868C9.32868 18.4153 8.66421 18.0429 8.00131 17.6677C7.47583 17.3704 6.94914 17.0753 6.42189 16.7812C6.39165 16.7613 6.3614 16.7414 6.33025 16.7209C6.04194 16.5405 5.81207 16.5146 5.47615 16.5202C5.4271 16.52 5.37805 16.5197 5.32751 16.5194C5.17177 16.5187 5.0161 16.5194 4.86037 16.5204C3.27871 16.5284 3.27871 16.5284 2.62813 15.8962C2.15079 15.3881 2.04798 14.8128 2.04964 14.137C2.0494 14.0857 2.04916 14.0344 2.04891 13.9816C2.04827 13.8133 2.04831 13.6451 2.04841 13.4769C2.04823 13.3591 2.04803 13.2413 2.04781 13.1235C2.04746 12.8771 2.04746 12.6307 2.04772 12.3842C2.048 12.1008 2.04742 11.8173 2.04642 11.5338C2.04549 11.2595 2.04536 10.9851 2.04552 10.7108C2.0455 10.5948 2.04525 10.4788 2.04478 10.3628C2.0442 10.2002 2.04452 10.0376 2.04506 9.87501C2.0447 9.8278 2.04434 9.78059 2.04398 9.73195C2.04944 8.98294 2.28529 8.44361 2.81251 7.9218C3.33242 7.44589 3.98749 7.46966 4.64943 7.46477C4.73967 7.46344 4.82991 7.46204 4.92015 7.46056C5.13948 7.45712 5.35879 7.45478 5.57814 7.45305C5.4813 7.37086 5.38444 7.28871 5.28755 7.20659C5.26038 7.18352 5.2332 7.16045 5.2052 7.13668C5.0166 6.97688 4.82535 6.82096 4.63167 6.66734C4.458 6.52894 4.28563 6.38899 4.1133 6.24895C4.0817 6.2233 4.05011 6.19766 4.01757 6.17124C3.95684 6.12188 3.89624 6.07235 3.83579 6.02265C3.7801 5.97746 3.72371 5.93314 3.66653 5.88985C3.55669 5.80497 3.47824 5.74243 3.4261 5.61174C3.41415 5.43767 3.41115 5.32337 3.47755 5.1591C3.65577 4.95631 3.81257 4.94724 4.07814 4.96867ZM6.60939 8.24992C6.60063 9.22375 6.59402 10.1976 6.58996 11.1714C6.58803 11.6236 6.58539 12.0757 6.5811 12.5279C6.57736 12.922 6.57494 13.316 6.57411 13.7101C6.57362 13.9188 6.57247 14.1275 6.56974 14.3362C6.56719 14.5326 6.56641 14.729 6.56697 14.9254C6.56687 14.9975 6.56612 15.0696 6.56469 15.1417C6.542 15.5177 6.542 15.5177 6.69106 15.8432C6.78751 15.9046 6.87709 15.9457 6.98439 15.9843C7.05024 16.0225 7.05024 16.0225 7.11743 16.0615C7.1577 16.0839 7.19797 16.1063 7.23945 16.1293C7.30861 16.1679 7.30861 16.1679 7.37916 16.2072C7.42775 16.2342 7.47633 16.2612 7.52638 16.289C7.63143 16.3476 7.73647 16.4062 7.84151 16.4648C7.89426 16.4942 7.94702 16.5236 8.00138 16.5539C8.23316 16.6835 8.46427 16.8143 8.69533 16.9452C9.06786 17.1561 9.44092 17.366 9.81447 17.5751C9.86303 17.6023 9.9116 17.6295 9.96164 17.6575C10.2098 17.7963 10.458 17.9351 10.7062 18.0737C10.8054 18.1292 10.9047 18.1847 11.0039 18.2402C11.076 18.2805 11.076 18.2805 11.1496 18.3216C11.5212 18.5297 11.8912 18.7406 12.2598 18.9542C12.2977 18.976 12.3356 18.9979 12.3746 19.0204C12.4242 19.0491 12.4242 19.0491 12.4748 19.0784C12.6708 19.1824 12.8609 19.1993 13.0781 19.1718C13.3541 19.083 13.526 18.9405 13.6875 18.703C13.7878 18.4652 13.7968 18.2501 13.7993 17.9964C13.8001 17.9545 13.8009 17.9126 13.8017 17.8695C13.804 17.7315 13.8055 17.5935 13.8069 17.4555C13.8076 17.3846 13.8076 17.3846 13.8084 17.3122C13.8109 17.0619 13.8127 16.8116 13.8141 16.5612C13.8153 16.3546 13.8179 16.148 13.8218 15.9413C13.8264 15.6912 13.8287 15.4411 13.8294 15.1909C13.83 15.0958 13.8314 15.0008 13.8337 14.9058C13.8609 14.3837 13.8609 14.3837 13.6793 13.9124C13.562 13.8055 13.448 13.7224 13.3125 13.6405C13.2581 13.5977 13.2043 13.5541 13.1512 13.5096C13.0788 13.4541 13.0788 13.4541 13.0049 13.3974C12.752 13.2017 12.504 13.0009 12.2578 12.7968C12.0181 12.5982 11.7769 12.4021 11.5313 12.2109C11.2185 11.9673 10.913 11.7155 10.6075 11.4629C10.3231 11.2278 10.0363 10.9956 9.74967 10.7633C9.65488 10.6863 9.56025 10.6092 9.46565 10.532C9.17276 10.2931 8.87909 10.0556 8.58107 9.82317C8.2684 9.57914 7.96263 9.32712 7.65694 9.07445C7.44995 8.90337 7.24231 8.7331 7.03419 8.5634C7.0023 8.53727 6.9704 8.51115 6.93754 8.48423C6.78186 8.35459 6.78186 8.35459 6.60939 8.24992ZM3.36366 8.71703C3.02725 9.12345 2.99296 9.48114 2.9932 9.9969C2.99305 10.0447 2.99289 10.0926 2.99273 10.1418C2.99228 10.2996 2.99219 10.4573 2.99214 10.6151C2.99199 10.7251 2.99183 10.8351 2.99167 10.9451C2.99139 11.1755 2.9913 11.406 2.99133 11.6365C2.99133 11.9312 2.99069 12.2259 2.98989 12.5207C2.98936 12.7479 2.98927 12.975 2.98929 13.2022C2.98924 13.3108 2.98903 13.4195 2.98867 13.5281C2.98821 13.6803 2.98835 13.8325 2.98863 13.9848C2.98836 14.0293 2.9881 14.0738 2.98783 14.1196C2.98988 14.5582 3.03348 14.9414 3.35817 15.2638C4.01849 15.8595 4.65455 15.5624 5.67189 15.5624C5.67189 13.2112 5.67189 10.8599 5.67189 8.43742C4.40324 8.28979 4.40324 8.28979 3.36366 8.71703Z",
|
|
14954
15158
|
fill: "currentColor"
|
|
14955
15159
|
}
|
|
14956
15160
|
),
|
|
14957
|
-
/* @__PURE__ */ (0,
|
|
15161
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14958
15162
|
"path",
|
|
14959
15163
|
{
|
|
14960
15164
|
d: "M13.9834 4.20996C14.3619 4.51877 14.6259 4.90546 14.7188 5.39062C14.7327 5.5897 14.7321 5.78835 14.7316 5.98785C14.7319 6.04741 14.7321 6.10697 14.7324 6.16834C14.733 6.33095 14.733 6.49354 14.7329 6.65615C14.7328 6.7921 14.7331 6.92805 14.7333 7.064C14.7338 7.38468 14.7338 7.70537 14.7336 8.02606C14.7333 8.35664 14.7339 8.68721 14.7349 9.01778C14.7357 9.30202 14.736 9.58627 14.7358 9.87051C14.7357 10.0401 14.7358 10.2097 14.7365 10.3793C14.7372 10.5682 14.7368 10.7572 14.7362 10.9462C14.7366 11.0022 14.7369 11.0583 14.7373 11.116C14.737 11.1676 14.7366 11.2191 14.7363 11.2722C14.7363 11.3168 14.7363 11.3614 14.7363 11.4074C14.7153 11.5558 14.6644 11.6442 14.5781 11.7656C14.4273 11.8749 14.292 11.8813 14.1094 11.8594C13.8418 11.713 13.8418 11.713 13.7813 11.5312C13.7768 11.4512 13.775 11.371 13.7748 11.2909C13.7745 11.2411 13.7743 11.1914 13.774 11.1401C13.774 11.0856 13.7739 11.031 13.7739 10.9748C13.7736 10.9173 13.7734 10.8598 13.7731 10.8006C13.7726 10.6755 13.7722 10.5504 13.7719 10.4253C13.7714 10.2273 13.7705 10.0293 13.7694 9.83134C13.7665 9.26827 13.764 8.70521 13.7624 8.14214C13.7616 7.83118 13.7602 7.52023 13.7583 7.20927C13.7573 7.04484 13.7566 6.88041 13.7565 6.71597C13.7564 6.53229 13.7552 6.34862 13.7539 6.16494C13.7541 6.11085 13.7542 6.05675 13.7543 6.00101C13.7512 5.69234 13.7473 5.37621 13.5307 5.13201C13.3206 4.94545 13.1023 4.84179 12.8178 4.85229C12.5398 4.90735 12.2921 5.06632 12.0469 5.20312C12.0085 5.2245 11.9701 5.24587 11.9305 5.2679C11.7062 5.39325 11.4826 5.51988 11.2594 5.64715C10.968 5.81321 10.6756 5.97709 10.3828 6.14062C9.93803 6.38931 9.49406 6.63942 9.05073 6.89072C9.00843 6.91467 8.96614 6.93863 8.92256 6.96332C8.86673 6.99498 8.86673 6.99498 8.80978 7.02728C8.6234 7.1314 8.46232 7.1555 8.25001 7.125C8.11829 7.04092 8.03863 6.98349 7.96876 6.84375C7.95074 6.60493 7.96862 6.4748 8.10939 6.28125C8.21433 6.20481 8.21433 6.20481 8.33827 6.13788C8.38465 6.1124 8.43104 6.08693 8.47882 6.06069C8.529 6.03389 8.57918 6.0071 8.63087 5.97949C8.73781 5.92103 8.84475 5.86256 8.95167 5.80408C9.00702 5.77405 9.06238 5.74404 9.11775 5.71403C9.37078 5.57625 9.62189 5.43508 9.87306 5.29394C9.97004 5.23962 10.067 5.1853 10.164 5.13098C10.453 4.96892 10.7417 4.80642 11.0303 4.64355C11.0753 4.61821 11.1202 4.59286 11.1666 4.56675C11.3976 4.43624 11.6263 4.30302 11.8535 4.16601C12.53 3.77544 13.3263 3.74841 13.9834 4.20996Z",
|
|
14961
15165
|
fill: "currentColor"
|
|
14962
15166
|
}
|
|
14963
15167
|
),
|
|
14964
|
-
/* @__PURE__ */ (0,
|
|
15168
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14965
15169
|
"path",
|
|
14966
15170
|
{
|
|
14967
15171
|
d: "M19.752 6.12018C19.8047 6.11737 19.8047 6.11737 19.8585 6.1145C20.1068 6.17347 20.2421 6.41973 20.3713 6.62416C20.3903 6.65508 20.4092 6.68599 20.4287 6.71783C20.4489 6.75065 20.4692 6.78346 20.49 6.81727C21.8736 9.09718 22.2783 11.8479 21.647 14.4348C21.4904 15.0318 21.2827 15.6143 21.0381 16.1807C21.0236 16.2147 21.0092 16.2486 20.9943 16.2836C20.8903 16.5136 20.7651 16.7112 20.5312 16.8282C20.314 16.8475 20.1889 16.8223 20.0156 16.6876C19.8945 16.526 19.9083 16.3681 19.9219 16.1719C19.9732 16.0469 20.0262 15.9333 20.0889 15.8145C20.4436 15.1006 20.6752 14.3316 20.8125 13.5469C20.8208 13.5005 20.8291 13.454 20.8376 13.4062C20.9119 12.9461 20.925 12.4941 20.9238 12.0294C20.9238 11.9903 20.9238 11.9513 20.9238 11.911C20.9218 11.2538 20.8731 10.6254 20.7188 9.98444C20.709 9.94279 20.6992 9.90114 20.6891 9.85823C20.4465 8.8572 20.0323 7.82876 19.4187 6.99451C19.298 6.8232 19.2656 6.72438 19.2656 6.51569C19.3629 6.25801 19.4691 6.12838 19.752 6.12018Z",
|
|
14968
15172
|
fill: "currentColor"
|
|
14969
15173
|
}
|
|
14970
15174
|
),
|
|
14971
|
-
/* @__PURE__ */ (0,
|
|
15175
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14972
15176
|
"path",
|
|
14973
15177
|
{
|
|
14974
15178
|
d: "M17.1563 8.48447C17.9014 9.09186 18.2003 10.4675 18.3091 11.3684C18.4038 12.3042 18.3553 13.5382 17.8125 14.3438C17.6785 14.4778 17.5774 14.4751 17.3906 14.4845C17.2024 14.4134 17.128 14.3717 17.0156 14.2032C16.9805 13.9124 17.0403 13.6773 17.127 13.4005C17.5145 12.1615 17.3696 10.8729 16.7794 9.72568C16.6906 9.55729 16.5966 9.39267 16.5 9.22861C16.4092 9.06715 16.3721 8.95378 16.4063 8.76572C16.5572 8.43366 16.8228 8.36425 17.1563 8.48447Z",
|
|
@@ -14980,7 +15184,7 @@ var template = {
|
|
|
14980
15184
|
);
|
|
14981
15185
|
},
|
|
14982
15186
|
eye: ({ className, fill }) => {
|
|
14983
|
-
return /* @__PURE__ */ (0,
|
|
15187
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14984
15188
|
"svg",
|
|
14985
15189
|
{
|
|
14986
15190
|
width: "24",
|
|
@@ -14989,15 +15193,15 @@ var template = {
|
|
|
14989
15193
|
fill: "none",
|
|
14990
15194
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14991
15195
|
className,
|
|
14992
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
14993
|
-
/* @__PURE__ */ (0,
|
|
15196
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
15197
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
14994
15198
|
"path",
|
|
14995
15199
|
{
|
|
14996
15200
|
d: "M12 15C12.7956 15 13.5587 14.6839 14.1213 14.1213C14.6839 13.5587 15 12.7956 15 12C15 11.2044 14.6839 10.4413 14.1213 9.87868C13.5587 9.31607 12.7956 9 12 9C11.2044 9 10.4413 9.31607 9.87868 9.87868C9.31607 10.4413 9 11.2044 9 12C9 12.7956 9.31607 13.5587 9.87868 14.1213C10.4413 14.6839 11.2044 15 12 15Z",
|
|
14997
15201
|
fill: "currentColor"
|
|
14998
15202
|
}
|
|
14999
15203
|
),
|
|
15000
|
-
/* @__PURE__ */ (0,
|
|
15204
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15001
15205
|
"path",
|
|
15002
15206
|
{
|
|
15003
15207
|
"fill-rule": "evenodd",
|
|
@@ -15006,8 +15210,8 @@ var template = {
|
|
|
15006
15210
|
fill: "currentColor"
|
|
15007
15211
|
}
|
|
15008
15212
|
)
|
|
15009
|
-
] }) : /* @__PURE__ */ (0,
|
|
15010
|
-
/* @__PURE__ */ (0,
|
|
15213
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
15214
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15011
15215
|
"path",
|
|
15012
15216
|
{
|
|
15013
15217
|
d: "M2.03601 12.322C1.967 12.1146 1.967 11.8904 2.03601 11.683C3.42301 7.51 7.36001 4.5 12 4.5C16.638 4.5 20.573 7.507 21.963 11.678C22.033 11.885 22.033 12.109 21.963 12.317C20.577 16.49 16.64 19.5 12 19.5C7.36201 19.5 3.42601 16.493 2.03601 12.322Z",
|
|
@@ -15016,7 +15220,7 @@ var template = {
|
|
|
15016
15220
|
"stroke-linejoin": "round"
|
|
15017
15221
|
}
|
|
15018
15222
|
),
|
|
15019
|
-
/* @__PURE__ */ (0,
|
|
15223
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15020
15224
|
"path",
|
|
15021
15225
|
{
|
|
15022
15226
|
d: "M15 12C15 12.7956 14.6839 13.5587 14.1213 14.1213C13.5587 14.6839 12.7956 15 12 15C11.2044 15 10.4413 14.6839 9.87868 14.1213C9.31607 13.5587 9 12.7956 9 12C9 11.2044 9.31607 10.4413 9.87868 9.87868C10.4413 9.31607 11.2044 9 12 9C12.7956 9 13.5587 9.31607 14.1213 9.87868C14.6839 10.4413 15 11.2044 15 12Z",
|
|
@@ -15030,7 +15234,7 @@ var template = {
|
|
|
15030
15234
|
);
|
|
15031
15235
|
},
|
|
15032
15236
|
"eye-off": ({ className, fill }) => {
|
|
15033
|
-
return /* @__PURE__ */ (0,
|
|
15237
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15034
15238
|
"svg",
|
|
15035
15239
|
{
|
|
15036
15240
|
width: "24",
|
|
@@ -15039,29 +15243,29 @@ var template = {
|
|
|
15039
15243
|
fill: "none",
|
|
15040
15244
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15041
15245
|
className,
|
|
15042
|
-
children: fill ? /* @__PURE__ */ (0,
|
|
15043
|
-
/* @__PURE__ */ (0,
|
|
15246
|
+
children: fill ? /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
15247
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15044
15248
|
"path",
|
|
15045
15249
|
{
|
|
15046
15250
|
d: "M3.53003 2.47009C3.38785 2.33761 3.19981 2.26549 3.00551 2.26892C2.81121 2.27234 2.62582 2.35106 2.48841 2.48847C2.35099 2.62588 2.27228 2.81127 2.26885 3.00557C2.26543 3.19987 2.33755 3.38792 2.47003 3.53009L20.47 21.5301C20.5387 21.6038 20.6215 21.6629 20.7135 21.7039C20.8055 21.7449 20.9048 21.7669 21.0055 21.7687C21.1062 21.7705 21.2062 21.7519 21.2996 21.7142C21.393 21.6765 21.4778 21.6203 21.5491 21.5491C21.6203 21.4779 21.6764 21.3931 21.7142 21.2997C21.7519 21.2063 21.7704 21.1063 21.7686 21.0056C21.7668 20.9049 21.7448 20.8056 21.7038 20.7136C21.6628 20.6216 21.6037 20.5388 21.53 20.4701L3.53003 2.47009ZM22.676 12.5531C22.137 14.1706 21.2373 15.6444 20.045 16.8631L16.946 13.7641C17.2804 12.828 17.3421 11.8163 17.124 10.8465C16.906 9.87669 16.4171 8.98874 15.7142 8.28588C15.0114 7.58301 14.1234 7.09413 13.1536 6.87607C12.1839 6.65802 11.1721 6.71975 10.236 7.05409L7.75903 4.57709C9.10605 4.02905 10.5468 3.74817 12.001 3.75009C16.971 3.75009 21.186 6.97309 22.676 11.4401C22.796 11.8021 22.796 12.1921 22.676 12.5531Z",
|
|
15047
15251
|
fill: "currentColor"
|
|
15048
15252
|
}
|
|
15049
15253
|
),
|
|
15050
|
-
/* @__PURE__ */ (0,
|
|
15254
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15051
15255
|
"path",
|
|
15052
15256
|
{
|
|
15053
15257
|
d: "M15.75 12.0001C15.75 12.1801 15.737 12.3571 15.713 12.5301L11.469 8.28705C12.001 8.21096 12.5431 8.25009 13.0586 8.4018C13.5741 8.5535 14.0511 8.81424 14.457 9.16635C14.863 9.51846 15.1885 9.95371 15.4116 10.4426C15.6347 10.9315 15.7501 11.4627 15.75 12.0001ZM12.53 15.7131L8.28698 11.4691C8.20453 12.0455 8.25748 12.6333 8.44162 13.1857C8.62577 13.7382 8.93604 14.2402 9.34787 14.6519C9.75969 15.0636 10.2618 15.3738 10.8143 15.5578C11.3668 15.7418 11.9545 15.7946 12.531 15.7121L12.53 15.7131Z",
|
|
15054
15258
|
fill: "currentColor"
|
|
15055
15259
|
}
|
|
15056
15260
|
),
|
|
15057
|
-
/* @__PURE__ */ (0,
|
|
15261
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15058
15262
|
"path",
|
|
15059
15263
|
{
|
|
15060
15264
|
d: "M6.75001 12C6.75001 11.381 6.85701 10.787 7.05401 10.236L3.95401 7.13599C2.76211 8.35483 1.8628 9.82861 1.32401 11.446C1.20401 11.808 1.20401 12.198 1.32401 12.56C2.81301 17.027 7.02801 20.25 11.999 20.25C13.499 20.25 14.932 19.956 16.241 19.423L13.764 16.946C12.9717 17.2286 12.123 17.3168 11.2895 17.2029C10.456 17.0891 9.662 16.7766 8.97449 16.2917C8.28697 15.8069 7.72603 15.164 7.33891 14.4171C6.95178 13.6702 6.74981 12.8412 6.75001 12Z",
|
|
15061
15265
|
fill: "currentColor"
|
|
15062
15266
|
}
|
|
15063
15267
|
)
|
|
15064
|
-
] }) : /* @__PURE__ */ (0,
|
|
15268
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15065
15269
|
"path",
|
|
15066
15270
|
{
|
|
15067
15271
|
d: "M3.98002 8.223C3.04448 9.32718 2.34784 10.6132 1.93402 12C3.22602 16.338 7.24402 19.5 12 19.5C12.993 19.5 13.953 19.362 14.863 19.105M6.22802 6.228C7.94067 5.09786 9.9481 4.49688 12 4.5C16.756 4.5 20.773 7.662 22.065 11.998C21.357 14.3673 19.8371 16.4116 17.772 17.772M6.22802 6.228L3.00002 3M6.22802 6.228L9.87802 9.878M17.772 17.772L21 21M17.772 17.772L14.122 14.122C14.4006 13.8434 14.6216 13.5127 14.7724 13.1486C14.9232 12.7846 15.0008 12.3945 15.0008 12.0005C15.0008 11.6065 14.9232 11.2164 14.7724 10.8524C14.6216 10.4883 14.4006 10.1576 14.122 9.879C13.8434 9.6004 13.5127 9.3794 13.1487 9.22863C12.7847 9.07785 12.3945 9.00025 12.0005 9.00025C11.6065 9.00025 11.2164 9.07785 10.8524 9.22863C10.4884 9.3794 10.1576 9.6004 9.87902 9.879M14.121 14.121L9.88002 9.88",
|
|
@@ -15075,7 +15279,7 @@ var template = {
|
|
|
15075
15279
|
},
|
|
15076
15280
|
// ** Logo **
|
|
15077
15281
|
google: ({ className, fill }) => {
|
|
15078
|
-
return /* @__PURE__ */ (0,
|
|
15282
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
15079
15283
|
"svg",
|
|
15080
15284
|
{
|
|
15081
15285
|
width: "24",
|
|
@@ -15085,43 +15289,43 @@ var template = {
|
|
|
15085
15289
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15086
15290
|
className,
|
|
15087
15291
|
children: [
|
|
15088
|
-
/* @__PURE__ */ (0,
|
|
15089
|
-
/* @__PURE__ */ (0,
|
|
15292
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "24", height: "24", fill: "transparent" }),
|
|
15293
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15090
15294
|
"path",
|
|
15091
15295
|
{
|
|
15092
15296
|
d: "M11.9853 2.37609C12.0222 2.37617 12.059 2.37626 12.0969 2.37635C12.6841 2.37863 13.2519 2.41081 13.8281 2.53136C13.8882 2.54343 13.8882 2.54343 13.9496 2.55574C15.428 2.85824 16.8181 3.50405 17.9971 4.44738C18.0278 4.4719 18.0586 4.49642 18.0903 4.52168C18.2917 4.68842 18.4833 4.86075 18.5389 5.12725C18.538 5.16103 18.5371 5.1948 18.5361 5.2296C18.536 5.28045 18.536 5.28045 18.5359 5.33233C18.4924 5.55805 18.3425 5.71618 18.1841 5.87427C18.1459 5.91258 18.1078 5.95089 18.0684 5.99036C18.0069 6.05138 18.0069 6.05138 17.9441 6.11364C17.9019 6.15585 17.8597 6.19807 17.8161 6.24156C17.727 6.33056 17.6378 6.41946 17.5484 6.50821C17.4338 6.62203 17.3195 6.73617 17.2053 6.85041C17.0962 6.95944 16.987 7.06828 16.8777 7.17711C16.8161 7.23871 16.8161 7.23871 16.7531 7.30154C16.6961 7.35812 16.6961 7.35812 16.6379 7.41584C16.6044 7.44917 16.5709 7.4825 16.5364 7.51684C16.3759 7.66528 16.2286 7.66243 16.0171 7.65941C15.7926 7.62627 15.646 7.49357 15.4687 7.35949C14.4354 6.64743 13.307 6.21296 12.0381 6.21984C11.9616 6.22018 11.9616 6.22018 11.8835 6.22054C11.4569 6.22668 11.054 6.26988 10.6406 6.37511C10.5944 6.3868 10.5944 6.3868 10.5472 6.39873C9.31447 6.72307 8.15898 7.4457 7.40623 8.48449C7.38715 8.51076 7.36807 8.53704 7.34842 8.56411C6.44522 9.82251 6.04479 11.3435 6.273 12.8869C6.30076 13.0461 6.33542 13.2028 6.37498 13.3595C6.38278 13.3904 6.39057 13.4212 6.3986 13.4531C6.7292 14.7093 7.45059 15.8056 8.48436 16.5939C8.52031 16.6217 8.55626 16.6496 8.5933 16.6783C9.79564 17.5662 11.3081 17.9232 12.7868 17.7425C12.9802 17.7134 13.1698 17.673 13.3594 17.6251C13.3902 17.6173 13.4211 17.6095 13.4529 17.6015C14.867 17.2294 16.01 16.3763 16.834 15.1759C16.8519 15.1503 16.8699 15.1246 16.8884 15.0982C17.0264 14.8917 17.1304 14.6733 17.234 14.4483C17.2491 14.4157 17.2642 14.383 17.2798 14.3494C17.3168 14.2695 17.3537 14.1895 17.3906 14.1095C17.3349 14.1098 17.2791 14.1101 17.2217 14.1104C16.6961 14.1133 16.1706 14.1154 15.645 14.1168C15.3748 14.1175 15.1046 14.1185 14.8344 14.1201C14.5737 14.1216 14.3129 14.1225 14.0521 14.1228C13.9526 14.1231 13.8532 14.1236 13.7537 14.1244C13.6144 14.1254 13.475 14.1255 13.3356 14.1255C13.2946 14.126 13.2535 14.1265 13.2112 14.127C12.9751 14.1258 12.8141 14.0994 12.6094 13.9689C12.3901 13.7437 12.3696 13.5422 12.3674 13.2377C12.367 13.1863 12.3665 13.1348 12.3661 13.0818C12.3658 12.999 12.3658 12.999 12.3655 12.9145C12.3652 12.8574 12.3649 12.8002 12.3647 12.7413C12.3642 12.6205 12.3639 12.4997 12.3637 12.3789C12.3633 12.1945 12.3618 12.0101 12.3603 11.8256C12.36 11.7081 12.3598 11.5906 12.3596 11.4731C12.359 11.4181 12.3584 11.3632 12.3578 11.3065C12.3586 11.0172 12.3701 10.8001 12.5156 10.547C12.7397 10.3393 12.8644 10.3067 13.1663 10.3057C13.1999 10.3055 13.2335 10.3054 13.268 10.3052C13.3811 10.3047 13.4942 10.3045 13.6072 10.3043C13.6881 10.304 13.7689 10.3037 13.8497 10.3034C14.0698 10.3026 14.2898 10.3021 14.5099 10.3017C14.6473 10.3014 14.7847 10.3012 14.9222 10.3009C15.352 10.3 15.7818 10.2993 16.2117 10.2989C16.7081 10.2985 17.2046 10.2972 17.701 10.2953C18.0845 10.2939 18.468 10.2932 18.8516 10.2931C19.0807 10.293 19.3098 10.2925 19.539 10.2914C19.7546 10.2903 19.9702 10.2901 20.1858 10.2905C20.2649 10.2906 20.344 10.2903 20.4231 10.2896C20.5312 10.2888 20.6392 10.2891 20.7473 10.2897C20.838 10.2896 20.838 10.2896 20.9305 10.2894C21.1669 10.323 21.3165 10.4226 21.4595 10.6121C21.6675 11.0655 21.6266 11.6266 21.624 12.1173C21.6239 12.1523 21.6238 12.1873 21.6237 12.2234C21.621 12.7997 21.5877 13.3566 21.4687 13.922C21.4599 13.9653 21.4511 14.0085 21.442 14.0531C21.0759 15.7999 20.2484 17.3132 19.0312 18.6095C19.0082 18.6341 18.9851 18.6588 18.9613 18.6842C17.4473 20.2895 15.4295 21.2282 13.2656 21.5626C13.2158 21.5705 13.2158 21.5705 13.165 21.5785C10.7451 21.9045 8.17253 21.2034 6.23436 19.7345C4.15116 18.1368 2.79489 15.8492 2.43364 13.2441C2.38186 12.8353 2.37391 12.4293 2.37596 12.0177C2.37606 11.9809 2.37616 11.9441 2.37626 11.9062C2.38772 9.29548 3.45827 6.92838 5.27635 5.0714C7.06029 3.32824 9.50031 2.36403 11.9853 2.37609Z",
|
|
15093
15297
|
fill: "#157DE5"
|
|
15094
15298
|
}
|
|
15095
15299
|
),
|
|
15096
|
-
/* @__PURE__ */ (0,
|
|
15300
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15097
15301
|
"path",
|
|
15098
15302
|
{
|
|
15099
15303
|
d: "M11.9854 2.37609C12.0222 2.37617 12.059 2.37626 12.097 2.37635C12.6841 2.37863 13.252 2.41081 13.8282 2.53136C13.8883 2.54343 13.8883 2.54343 13.9496 2.55574C15.4281 2.85824 16.8181 3.50405 17.9971 4.44738C18.0279 4.4719 18.0587 4.49642 18.0904 4.52168C18.2917 4.68842 18.4833 4.86075 18.5389 5.12725C18.538 5.16103 18.5371 5.1948 18.5362 5.2296C18.5361 5.28045 18.5361 5.28045 18.536 5.33233C18.4924 5.55805 18.3425 5.71618 18.1841 5.87427C18.146 5.91258 18.1078 5.95089 18.0685 5.99036C18.007 6.05138 18.007 6.05138 17.9442 6.11364C17.9019 6.15585 17.8597 6.19807 17.8162 6.24156C17.7271 6.33056 17.6378 6.41946 17.5485 6.50821C17.4338 6.62203 17.3195 6.73617 17.2053 6.85041C17.0963 6.95944 16.987 7.06828 16.8778 7.17711C16.8161 7.23871 16.8161 7.23871 16.7532 7.30154C16.6962 7.35812 16.6962 7.35812 16.638 7.41584C16.6045 7.44917 16.571 7.4825 16.5364 7.51684C16.3759 7.66528 16.2287 7.66243 16.0172 7.65941C15.7926 7.62627 15.6461 7.49357 15.4688 7.35949C14.4355 6.64743 13.307 6.21296 12.0381 6.21984C11.9616 6.22018 11.9616 6.22018 11.8836 6.22054C11.4569 6.22668 11.054 6.26988 10.6407 6.37511C10.5944 6.3868 10.5944 6.3868 10.5473 6.39873C9.31452 6.72307 8.15902 7.4457 7.40628 8.48449C7.3872 8.51076 7.36812 8.53704 7.34846 8.56411C6.4453 9.82246 6.04474 11.3435 6.27306 12.8869C6.3769 13.4827 6.56255 14.0479 6.83275 14.5884C6.89836 14.7205 6.93753 14.8034 6.93753 14.9532C6.88673 14.9822 6.88673 14.9822 6.8349 15.0117C5.78619 15.6091 4.7428 16.2152 3.70315 16.8282C2.64676 15.6386 2.36837 13.5499 2.37601 12.0177C2.37611 11.9809 2.37621 11.9441 2.37631 11.9062C2.38777 9.29548 3.45832 6.92838 5.2764 5.0714C7.06034 3.32824 9.50036 2.36403 11.9854 2.37609Z",
|
|
15100
15304
|
fill: "#FF4B25"
|
|
15101
15305
|
}
|
|
15102
15306
|
),
|
|
15103
|
-
/* @__PURE__ */ (0,
|
|
15307
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15104
15308
|
"path",
|
|
15105
15309
|
{
|
|
15106
15310
|
d: "M6.93749 14.9062C7.08945 15.054 7.20416 15.2038 7.32128 15.3809C7.64691 15.8602 8.02313 16.2421 8.48436 16.5938C8.52032 16.6216 8.55627 16.6495 8.59331 16.6782C9.79564 17.5661 11.3081 17.9231 12.7868 17.7424C13.4155 17.6477 14.0204 17.4564 14.5842 17.1632C14.7867 17.0609 14.7867 17.0609 14.9067 17.0684C15.0398 17.1269 15.0706 17.2034 15.1388 17.3307C15.1644 17.3777 15.19 17.4246 15.2165 17.473C15.2572 17.5497 15.2572 17.5497 15.2988 17.6279C15.3575 17.7356 15.4163 17.8432 15.4751 17.9507C15.4901 17.9783 15.5051 18.0058 15.5205 18.0342C15.6726 18.3131 15.8322 18.5874 15.9932 18.8613C16.0472 18.9535 16.1012 19.0457 16.1552 19.1378C16.1943 19.2045 16.1943 19.2045 16.2342 19.2725C16.3607 19.4886 16.486 19.7052 16.6113 19.9219C16.6444 19.9791 16.6444 19.9791 16.6782 20.0375C16.7282 20.1239 16.7781 20.2104 16.8281 20.2969C16.07 21.1351 14.3223 21.3992 13.2656 21.5625C13.2324 21.5677 13.1992 21.573 13.165 21.5784C10.7452 21.9044 8.17254 21.2033 6.23436 19.7344C5.32979 19.0406 4.5759 18.2401 3.93749 17.2969C3.91398 17.2632 3.89048 17.2295 3.86626 17.1948C3.83336 17.1458 3.83336 17.1458 3.79979 17.0958C3.78003 17.0668 3.76027 17.0379 3.73992 17.008C3.70311 16.9219 3.70311 16.9219 3.71116 16.8234C3.78121 16.6628 3.9551 16.6061 4.10448 16.5293C4.18225 16.4877 4.25994 16.446 4.33757 16.4042C4.37921 16.3819 4.42085 16.3596 4.46376 16.3366C4.68958 16.2133 4.911 16.0825 5.1328 15.9521C5.55378 15.7055 5.97567 15.4604 6.39843 15.2168C6.42566 15.2011 6.45289 15.1854 6.48095 15.1692C6.63311 15.0815 6.78529 14.9939 6.93749 14.9062Z",
|
|
15107
15311
|
fill: "#12B346"
|
|
15108
15312
|
}
|
|
15109
15313
|
),
|
|
15110
|
-
/* @__PURE__ */ (0,
|
|
15314
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15111
15315
|
"path",
|
|
15112
15316
|
{
|
|
15113
15317
|
d: "M3.65628 7.21875C3.82242 7.28178 3.9754 7.35526 4.13034 7.44214C4.19986 7.48105 4.19986 7.48105 4.27079 7.52075C4.32034 7.54871 4.36988 7.57666 4.42093 7.60547C4.49837 7.64899 4.49837 7.64899 4.57738 7.69339C4.98447 7.92293 5.38858 8.1574 5.79171 8.39381C6.17109 8.61616 6.55319 8.83323 6.93753 9.04688C6.91255 9.23494 6.84647 9.3833 6.76506 9.55191C6.10686 10.9204 6.06013 12.4937 6.54037 13.9243C6.622 14.1527 6.72434 14.3714 6.83275 14.5883C6.89836 14.7204 6.93753 14.8033 6.93753 14.9531C6.88673 14.982 6.88673 14.982 6.8349 15.0116C5.78619 15.609 4.7428 16.2151 3.70315 16.8281C2.64676 15.6385 2.36837 13.5498 2.37601 12.0176C2.37611 11.9808 2.37621 11.944 2.37631 11.9061C2.38234 10.5328 2.61706 8.25797 3.65628 7.21875Z",
|
|
15114
15318
|
fill: "#FED400"
|
|
15115
15319
|
}
|
|
15116
15320
|
),
|
|
15117
|
-
/* @__PURE__ */ (0,
|
|
15321
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15118
15322
|
"path",
|
|
15119
15323
|
{
|
|
15120
15324
|
d: "M12 2.39062C12.982 2.39062 12.982 2.39062 13.3271 2.44629C13.388 2.45565 13.388 2.45565 13.45 2.46519C15.1148 2.734 16.6766 3.39071 17.9971 4.44727C18.0278 4.47179 18.0586 4.49631 18.0903 4.52157C18.2917 4.68831 18.4833 4.86064 18.5389 5.12714C18.538 5.16091 18.5371 5.19469 18.5361 5.22949C18.536 5.28034 18.536 5.28034 18.5359 5.33221C18.4924 5.55793 18.3425 5.71607 18.1841 5.87416C18.1459 5.91247 18.1078 5.95078 18.0685 5.99025C18.0069 6.05127 18.0069 6.05127 17.9442 6.11353C17.9019 6.15574 17.8597 6.19796 17.8162 6.24145C17.727 6.33045 17.6378 6.41935 17.5484 6.50809C17.4338 6.62192 17.3195 6.73606 17.2053 6.8503C17.0962 6.95933 16.987 7.06816 16.8777 7.177C16.8366 7.21806 16.7955 7.25912 16.7532 7.30143C16.7151 7.33915 16.6771 7.37687 16.638 7.41573C16.6044 7.44906 16.5709 7.48239 16.5364 7.51673C16.3759 7.66517 16.2286 7.66232 16.0172 7.6593C15.7926 7.62616 15.6461 7.49346 15.4688 7.35938C14.3868 6.61385 13.3108 6.28833 12 6.1875C12 4.93453 12 3.68156 12 2.39062Z",
|
|
15121
15325
|
fill: "#D93F21"
|
|
15122
15326
|
}
|
|
15123
15327
|
),
|
|
15124
|
-
/* @__PURE__ */ (0,
|
|
15328
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15125
15329
|
"path",
|
|
15126
15330
|
{
|
|
15127
15331
|
d: "M14.9034 17.0692C15.0402 17.1261 15.0694 17.2011 15.1388 17.3307C15.1644 17.3777 15.1901 17.4246 15.2165 17.473C15.2436 17.5241 15.2708 17.5752 15.2988 17.6279C15.3575 17.7356 15.4163 17.8432 15.4752 17.9507C15.4976 17.992 15.4976 17.992 15.5206 18.0342C15.6726 18.3131 15.8322 18.5874 15.9932 18.8613C16.0472 18.9535 16.1012 19.0456 16.1552 19.1378C16.1813 19.1823 16.2074 19.2267 16.2342 19.2725C16.3607 19.4885 16.486 19.7052 16.6113 19.9219C16.6334 19.96 16.6555 19.9982 16.6782 20.0375C16.7282 20.1239 16.7782 20.2104 16.8281 20.2969C16.0697 21.1355 14.3225 21.3985 13.2656 21.5625C13.2329 21.5679 13.2001 21.5733 13.1664 21.5788C12.7772 21.6331 12.397 21.6094 12 21.6094C12 20.3564 12 19.1034 12 17.8125C12.2939 17.7815 12.5878 17.7506 12.8906 17.7187C13.0594 17.6895 13.2204 17.6599 13.3857 17.6191C13.4259 17.6095 13.466 17.5998 13.5073 17.5899C13.9069 17.4872 14.5188 17.0409 14.9034 17.0692Z",
|
|
@@ -15134,7 +15338,7 @@ var template = {
|
|
|
15134
15338
|
},
|
|
15135
15339
|
// ** Modal **
|
|
15136
15340
|
"modal-check": ({ className, fill }) => {
|
|
15137
|
-
return /* @__PURE__ */ (0,
|
|
15341
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
15138
15342
|
"svg",
|
|
15139
15343
|
{
|
|
15140
15344
|
width: "24",
|
|
@@ -15144,8 +15348,8 @@ var template = {
|
|
|
15144
15348
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15145
15349
|
className,
|
|
15146
15350
|
children: [
|
|
15147
|
-
/* @__PURE__ */ (0,
|
|
15148
|
-
/* @__PURE__ */ (0,
|
|
15351
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "8", fill: "white" }),
|
|
15352
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15149
15353
|
"path",
|
|
15150
15354
|
{
|
|
15151
15355
|
"fill-rule": "evenodd",
|
|
@@ -15159,7 +15363,7 @@ var template = {
|
|
|
15159
15363
|
);
|
|
15160
15364
|
},
|
|
15161
15365
|
"modal-danger": ({ className, fill }) => {
|
|
15162
|
-
return /* @__PURE__ */ (0,
|
|
15366
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
15163
15367
|
"svg",
|
|
15164
15368
|
{
|
|
15165
15369
|
width: "24",
|
|
@@ -15169,8 +15373,8 @@ var template = {
|
|
|
15169
15373
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15170
15374
|
className,
|
|
15171
15375
|
children: [
|
|
15172
|
-
/* @__PURE__ */ (0,
|
|
15173
|
-
/* @__PURE__ */ (0,
|
|
15376
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "8", fill: "white" }),
|
|
15377
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15174
15378
|
"path",
|
|
15175
15379
|
{
|
|
15176
15380
|
"fill-rule": "evenodd",
|
|
@@ -15184,7 +15388,7 @@ var template = {
|
|
|
15184
15388
|
);
|
|
15185
15389
|
},
|
|
15186
15390
|
"modal-warning": ({ className, fill }) => {
|
|
15187
|
-
return /* @__PURE__ */ (0,
|
|
15391
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
15188
15392
|
"svg",
|
|
15189
15393
|
{
|
|
15190
15394
|
width: "24",
|
|
@@ -15194,8 +15398,8 @@ var template = {
|
|
|
15194
15398
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15195
15399
|
className,
|
|
15196
15400
|
children: [
|
|
15197
|
-
/* @__PURE__ */ (0,
|
|
15198
|
-
/* @__PURE__ */ (0,
|
|
15401
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 4L19.7942 17.5H4.20577L12 4Z", fill: "white" }),
|
|
15402
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15199
15403
|
"path",
|
|
15200
15404
|
{
|
|
15201
15405
|
"fill-rule": "evenodd",
|
|
@@ -15209,7 +15413,7 @@ var template = {
|
|
|
15209
15413
|
);
|
|
15210
15414
|
},
|
|
15211
15415
|
"modal-info": ({ className, fill }) => {
|
|
15212
|
-
return /* @__PURE__ */ (0,
|
|
15416
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
15213
15417
|
"svg",
|
|
15214
15418
|
{
|
|
15215
15419
|
width: "24",
|
|
@@ -15219,8 +15423,8 @@ var template = {
|
|
|
15219
15423
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15220
15424
|
className,
|
|
15221
15425
|
children: [
|
|
15222
|
-
/* @__PURE__ */ (0,
|
|
15223
|
-
/* @__PURE__ */ (0,
|
|
15426
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "8", fill: "white" }),
|
|
15427
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15224
15428
|
"path",
|
|
15225
15429
|
{
|
|
15226
15430
|
"fill-rule": "evenodd",
|
|
@@ -15234,7 +15438,7 @@ var template = {
|
|
|
15234
15438
|
);
|
|
15235
15439
|
},
|
|
15236
15440
|
"modal-search": ({ className, fill }) => {
|
|
15237
|
-
return /* @__PURE__ */ (0,
|
|
15441
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
15238
15442
|
"svg",
|
|
15239
15443
|
{
|
|
15240
15444
|
width: "24",
|
|
@@ -15244,8 +15448,8 @@ var template = {
|
|
|
15244
15448
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15245
15449
|
className,
|
|
15246
15450
|
children: [
|
|
15247
|
-
/* @__PURE__ */ (0,
|
|
15248
|
-
/* @__PURE__ */ (0,
|
|
15451
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "10.5", cy: "10.5", r: "7.5", fill: "white" }),
|
|
15452
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15249
15453
|
"path",
|
|
15250
15454
|
{
|
|
15251
15455
|
d: "M21 21L15.803 15.803M15.803 15.803C17.2096 14.3965 17.9998 12.4887 17.9998 10.4995C17.9998 8.51035 17.2096 6.60262 15.803 5.19605C14.3964 3.78947 12.4887 2.99927 10.4995 2.99927C8.51029 2.99927 6.60256 3.78947 5.19599 5.19605C3.78941 6.60262 2.99921 8.51035 2.99921 10.4995C2.99921 12.4887 3.78941 14.3965 5.19599 15.803C6.60256 17.2096 8.51029 17.9998 10.4995 17.9998C12.4887 17.9998 14.3964 17.2096 15.803 15.803Z",
|
|
@@ -15260,7 +15464,7 @@ var template = {
|
|
|
15260
15464
|
);
|
|
15261
15465
|
},
|
|
15262
15466
|
"modal-photo": ({ className, fill }) => {
|
|
15263
|
-
return /* @__PURE__ */ (0,
|
|
15467
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
15264
15468
|
"svg",
|
|
15265
15469
|
{
|
|
15266
15470
|
width: "24",
|
|
@@ -15270,8 +15474,8 @@ var template = {
|
|
|
15270
15474
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15271
15475
|
className,
|
|
15272
15476
|
children: [
|
|
15273
|
-
/* @__PURE__ */ (0,
|
|
15274
|
-
/* @__PURE__ */ (0,
|
|
15477
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "5", width: "18", height: "14", fill: "white" }),
|
|
15478
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15275
15479
|
"path",
|
|
15276
15480
|
{
|
|
15277
15481
|
"fill-rule": "evenodd",
|
|
@@ -15285,7 +15489,7 @@ var template = {
|
|
|
15285
15489
|
);
|
|
15286
15490
|
},
|
|
15287
15491
|
"modal-add": ({ className, fill }) => {
|
|
15288
|
-
return /* @__PURE__ */ (0,
|
|
15492
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
15289
15493
|
"svg",
|
|
15290
15494
|
{
|
|
15291
15495
|
width: "24",
|
|
@@ -15295,8 +15499,8 @@ var template = {
|
|
|
15295
15499
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15296
15500
|
className,
|
|
15297
15501
|
children: [
|
|
15298
|
-
/* @__PURE__ */ (0,
|
|
15299
|
-
/* @__PURE__ */ (0,
|
|
15502
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "8", fill: "white" }),
|
|
15503
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15300
15504
|
"path",
|
|
15301
15505
|
{
|
|
15302
15506
|
"fill-rule": "evenodd",
|
|
@@ -15310,7 +15514,7 @@ var template = {
|
|
|
15310
15514
|
);
|
|
15311
15515
|
},
|
|
15312
15516
|
"modal-setting": ({ className, fill }) => {
|
|
15313
|
-
return /* @__PURE__ */ (0,
|
|
15517
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
15314
15518
|
"svg",
|
|
15315
15519
|
{
|
|
15316
15520
|
width: "24",
|
|
@@ -15320,8 +15524,8 @@ var template = {
|
|
|
15320
15524
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15321
15525
|
className,
|
|
15322
15526
|
children: [
|
|
15323
|
-
/* @__PURE__ */ (0,
|
|
15324
|
-
/* @__PURE__ */ (0,
|
|
15527
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "6", fill: "white" }),
|
|
15528
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
15325
15529
|
"path",
|
|
15326
15530
|
{
|
|
15327
15531
|
"fill-rule": "evenodd",
|
|
@@ -15337,7 +15541,7 @@ var template = {
|
|
|
15337
15541
|
};
|
|
15338
15542
|
|
|
15339
15543
|
// src/components/icon/Icon.tsx
|
|
15340
|
-
var
|
|
15544
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
15341
15545
|
var Icon = ({ name, size = "md", fill = false, className, onClick, ...props }) => {
|
|
15342
15546
|
const SVGIcon = template[name];
|
|
15343
15547
|
const getInputIconSize = (size2) => {
|
|
@@ -15350,7 +15554,7 @@ var Icon = ({ name, size = "md", fill = false, className, onClick, ...props }) =
|
|
|
15350
15554
|
return "size-[20px]";
|
|
15351
15555
|
}
|
|
15352
15556
|
};
|
|
15353
|
-
return /* @__PURE__ */ (0,
|
|
15557
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { onClick, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
15354
15558
|
SVGIcon,
|
|
15355
15559
|
{
|
|
15356
15560
|
fill,
|
|
@@ -15362,43 +15566,46 @@ var Icon = ({ name, size = "md", fill = false, className, onClick, ...props }) =
|
|
|
15362
15566
|
var Icon_default = Icon;
|
|
15363
15567
|
|
|
15364
15568
|
// src/components/table/table-body.tsx
|
|
15365
|
-
var
|
|
15366
|
-
var
|
|
15569
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
15570
|
+
var import_react5 = require("react");
|
|
15367
15571
|
var TableBody = ({
|
|
15368
15572
|
classNames,
|
|
15369
15573
|
size,
|
|
15574
|
+
color,
|
|
15370
15575
|
slots,
|
|
15371
15576
|
rows: rows2,
|
|
15372
15577
|
columns: columns2,
|
|
15578
|
+
isSelected,
|
|
15373
15579
|
isExpanded,
|
|
15374
15580
|
emptyContent,
|
|
15375
15581
|
onRowAction
|
|
15376
15582
|
}) => {
|
|
15377
|
-
const
|
|
15378
|
-
(0,
|
|
15379
|
-
|
|
15583
|
+
const colSpanCount = columns2.length + (isExpanded ? 1 : 0) + (isSelected ? 1 : 0);
|
|
15584
|
+
const [expandedRows, setExpandedRows] = (0, import_react4.useState)(/* @__PURE__ */ new Set());
|
|
15585
|
+
(0, import_react4.useEffect)(() => {
|
|
15586
|
+
setExpandedRows(/* @__PURE__ */ new Set());
|
|
15380
15587
|
}, [rows2]);
|
|
15381
|
-
const getTbodyProps = (0,
|
|
15588
|
+
const getTbodyProps = (0, import_react4.useCallback)(
|
|
15382
15589
|
() => ({
|
|
15383
15590
|
className: slots.tbody({ class: clsx(classNames == null ? void 0 : classNames.tbody) })
|
|
15384
15591
|
}),
|
|
15385
15592
|
[classNames == null ? void 0 : classNames.tbody, slots]
|
|
15386
15593
|
);
|
|
15387
|
-
const getTrProps = (0,
|
|
15594
|
+
const getTrProps = (0, import_react4.useCallback)(
|
|
15388
15595
|
(index) => ({
|
|
15389
15596
|
className: clsx(slots.tr({ class: classNames == null ? void 0 : classNames.tr })),
|
|
15390
15597
|
"data-isOdd": index % 2 !== 0,
|
|
15391
|
-
"data-expanded":
|
|
15598
|
+
"data-expanded": expandedRows.has(index)
|
|
15392
15599
|
}),
|
|
15393
|
-
[classNames == null ? void 0 : classNames.tr,
|
|
15600
|
+
[classNames == null ? void 0 : classNames.tr, expandedRows, slots]
|
|
15394
15601
|
);
|
|
15395
|
-
const
|
|
15602
|
+
const getExpandedContentProps = (0, import_react4.useCallback)(
|
|
15396
15603
|
() => ({
|
|
15397
15604
|
className: slots.expandedTr({ class: clsx(classNames == null ? void 0 : classNames.expandedTr) })
|
|
15398
15605
|
}),
|
|
15399
15606
|
[classNames == null ? void 0 : classNames.expandedTr, slots]
|
|
15400
15607
|
);
|
|
15401
|
-
const getTdProps = (0,
|
|
15608
|
+
const getTdProps = (0, import_react4.useCallback)(
|
|
15402
15609
|
(column, row, keys) => {
|
|
15403
15610
|
const { field, className, valueFormatter, renderCell } = column;
|
|
15404
15611
|
const key = keys.find((value2) => value2 === field);
|
|
@@ -15426,8 +15633,10 @@ var TableBody = ({
|
|
|
15426
15633
|
[classNames == null ? void 0 : classNames.td, columns2, slots]
|
|
15427
15634
|
);
|
|
15428
15635
|
const handleRowClick = (index) => (e) => {
|
|
15636
|
+
if (isSelected) {
|
|
15637
|
+
}
|
|
15429
15638
|
if (isExpanded) {
|
|
15430
|
-
|
|
15639
|
+
setExpandedRows((prevIndices) => {
|
|
15431
15640
|
const newIndices = new Set(prevIndices);
|
|
15432
15641
|
if (newIndices.has(index)) {
|
|
15433
15642
|
newIndices.delete(index);
|
|
@@ -15442,77 +15651,70 @@ var TableBody = ({
|
|
|
15442
15651
|
onRowAction == null ? void 0 : onRowAction(e, row);
|
|
15443
15652
|
}
|
|
15444
15653
|
};
|
|
15445
|
-
|
|
15446
|
-
e.stopPropagation();
|
|
15447
|
-
if (isExpanded) {
|
|
15448
|
-
setExpandedRowIndices((prevIndices) => {
|
|
15449
|
-
const newIndices = new Set(prevIndices);
|
|
15450
|
-
if (newIndices.has(index)) {
|
|
15451
|
-
newIndices.delete(index);
|
|
15452
|
-
} else {
|
|
15453
|
-
newIndices.add(index);
|
|
15454
|
-
}
|
|
15455
|
-
return newIndices;
|
|
15456
|
-
});
|
|
15457
|
-
}
|
|
15458
|
-
};
|
|
15459
|
-
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("tbody", { ...getTbodyProps(), children: rows2.length > 0 ? rows2.map((row, rowIndex) => {
|
|
15654
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("tbody", { ...getTbodyProps(), children: rows2.length > 0 ? rows2.map((row, rowIndex) => {
|
|
15460
15655
|
const keys = Object.keys(row);
|
|
15461
|
-
return /* @__PURE__ */ (0,
|
|
15462
|
-
/* @__PURE__ */ (0,
|
|
15463
|
-
|
|
15656
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_react4.default.Fragment, { children: [
|
|
15657
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("tr", { ...getTrProps(rowIndex), onClick: handleRowClick(rowIndex), children: [
|
|
15658
|
+
isSelected && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("td", { ...getTdProps({ field: "checkbox" }, row, keys), children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(checkbox_default, { color, size }) }),
|
|
15659
|
+
isExpanded && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("td", { ...getTdProps({ field: "expandIcon" }, row, keys), children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
15464
15660
|
Icon_default,
|
|
15465
15661
|
{
|
|
15466
|
-
name:
|
|
15662
|
+
name: expandedRows.has(rowIndex) ? "arrow-down" : "arrow-right",
|
|
15467
15663
|
className: `ml-2 transition-transform`,
|
|
15468
15664
|
size
|
|
15469
15665
|
}
|
|
15470
15666
|
) }),
|
|
15471
|
-
columns2.map((column, colIndex) => /* @__PURE__ */ (0,
|
|
15667
|
+
columns2.map((column, colIndex) => /* @__PURE__ */ (0, import_react5.createElement)("td", { ...getTdProps(column, row, keys), key: colIndex }))
|
|
15472
15668
|
] }),
|
|
15473
|
-
isExpanded &&
|
|
15474
|
-
"td",
|
|
15475
|
-
{
|
|
15476
|
-
colSpan: columns2.length + (isExpanded ? 1 : 0),
|
|
15477
|
-
...getTdProps({ field: "expandedRow" }, row, keys),
|
|
15478
|
-
children: row.renderExpandedRow && row.renderExpandedRow()
|
|
15479
|
-
}
|
|
15480
|
-
) })
|
|
15669
|
+
isExpanded && expandedRows.has(rowIndex) && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("tr", { ...getExpandedContentProps(), children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("td", { colSpan: colSpanCount, ...getTdProps({ field: "expandedRow" }, row, keys), children: row.renderExpandedRow && row.renderExpandedRow() }) })
|
|
15481
15670
|
] }, rowIndex);
|
|
15482
|
-
}) : /* @__PURE__ */ (0,
|
|
15671
|
+
}) : /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("tr", { ...getTrProps(-1), children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("td", { colSpan: columns2.length, children: emptyContent }) }) });
|
|
15483
15672
|
};
|
|
15484
15673
|
var table_body_default = TableBody;
|
|
15485
15674
|
|
|
15486
15675
|
// src/components/table/table.tsx
|
|
15487
|
-
var
|
|
15488
|
-
var
|
|
15489
|
-
var Table = (0,
|
|
15676
|
+
var import_tailwind_variants3 = require("tailwind-variants");
|
|
15677
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
15678
|
+
var Table = (0, import_react6.forwardRef)((originalProps, ref) => {
|
|
15490
15679
|
const [props, variantProps] = mapPropsVariants(originalProps, table.variantKeys);
|
|
15491
15680
|
const { classNames, rows: rows2, columns: columns2, isLoading, className, emptyContent, onRowAction, ...tableComponentsProps } = props;
|
|
15492
|
-
const slots = (0,
|
|
15493
|
-
const getBaseProps = (0,
|
|
15681
|
+
const slots = (0, import_react6.useMemo)(() => table({ ...variantProps }), [...Object.values(variantProps)]);
|
|
15682
|
+
const getBaseProps = (0, import_react6.useCallback)(
|
|
15494
15683
|
(props2) => ({
|
|
15495
15684
|
...props2,
|
|
15496
15685
|
className: slots.base({ class: clsx(classNames == null ? void 0 : classNames.base) })
|
|
15497
15686
|
}),
|
|
15498
15687
|
[classNames == null ? void 0 : classNames.base, slots]
|
|
15499
15688
|
);
|
|
15500
|
-
const getTableProps = (0,
|
|
15689
|
+
const getTableProps = (0, import_react6.useCallback)(
|
|
15501
15690
|
(props2) => ({
|
|
15502
15691
|
...props2,
|
|
15503
15692
|
className: slots.table({ class: clsx(classNames == null ? void 0 : classNames.table, className) })
|
|
15504
15693
|
}),
|
|
15505
15694
|
[classNames == null ? void 0 : classNames.table, slots]
|
|
15506
15695
|
);
|
|
15507
|
-
return /* @__PURE__ */ (0,
|
|
15508
|
-
/* @__PURE__ */ (0,
|
|
15509
|
-
|
|
15696
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { ref, "data-table": "base", ...getBaseProps(), children: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("table", { ...getTableProps(tableComponentsProps), children: [
|
|
15697
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
15698
|
+
table_head_default,
|
|
15699
|
+
{
|
|
15700
|
+
classNames,
|
|
15701
|
+
slots,
|
|
15702
|
+
columns: columns2,
|
|
15703
|
+
size: originalProps.size,
|
|
15704
|
+
color: originalProps.color === "neutral" ? "primary" : originalProps.color,
|
|
15705
|
+
isSelected: originalProps.isSelected,
|
|
15706
|
+
isExpanded: originalProps.isExpanded
|
|
15707
|
+
}
|
|
15708
|
+
),
|
|
15709
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
15510
15710
|
table_body_default,
|
|
15511
15711
|
{
|
|
15512
15712
|
rows: rows2,
|
|
15513
15713
|
columns: columns2,
|
|
15514
15714
|
slots,
|
|
15515
15715
|
size: originalProps.size,
|
|
15716
|
+
color: originalProps.color === "neutral" ? "primary" : originalProps.color,
|
|
15717
|
+
isSelected: originalProps.isSelected,
|
|
15516
15718
|
isExpanded: originalProps.isExpanded,
|
|
15517
15719
|
isLoading,
|
|
15518
15720
|
classNames,
|
|
@@ -15524,7 +15726,7 @@ var Table = (0, import_react5.forwardRef)((originalProps, ref) => {
|
|
|
15524
15726
|
});
|
|
15525
15727
|
Table.displayName = "Table";
|
|
15526
15728
|
var table_default = Table;
|
|
15527
|
-
var table = (0,
|
|
15729
|
+
var table = (0, import_tailwind_variants3.tv)({
|
|
15528
15730
|
slots: {
|
|
15529
15731
|
base: "flex flex-col relative gap-4",
|
|
15530
15732
|
table: "min-w-full h-auto",
|
|
@@ -15532,14 +15734,13 @@ var table = (0, import_tailwind_variants.tv)({
|
|
|
15532
15734
|
tbody: "",
|
|
15533
15735
|
tr: ["group", "outline-none"],
|
|
15534
15736
|
th: [
|
|
15535
|
-
"group",
|
|
15536
15737
|
"text-foreground",
|
|
15537
15738
|
"text-center",
|
|
15538
15739
|
"align-middle",
|
|
15539
15740
|
"whitespace-nowrap",
|
|
15540
15741
|
"font-normal",
|
|
15541
|
-
"cursor-default",
|
|
15542
15742
|
"outline-none",
|
|
15743
|
+
"pointer-events-none",
|
|
15543
15744
|
"data-[sortable=true]:transition-colors",
|
|
15544
15745
|
"data-[sortable=true]:cursor-pointer"
|
|
15545
15746
|
],
|
|
@@ -15616,6 +15817,9 @@ var table = (0, import_tailwind_variants.tv)({
|
|
|
15616
15817
|
expandedTr: "border-trans-light"
|
|
15617
15818
|
}
|
|
15618
15819
|
},
|
|
15820
|
+
isSelected: {
|
|
15821
|
+
true: {}
|
|
15822
|
+
},
|
|
15619
15823
|
hideHeader: {
|
|
15620
15824
|
true: {
|
|
15621
15825
|
thead: "hidden"
|
|
@@ -15643,7 +15847,8 @@ var table = (0, import_tailwind_variants.tv)({
|
|
|
15643
15847
|
color: "primary",
|
|
15644
15848
|
variant: "solid",
|
|
15645
15849
|
size: "md",
|
|
15646
|
-
|
|
15850
|
+
isSelected: false,
|
|
15851
|
+
isExpanded: false,
|
|
15647
15852
|
isCompact: false,
|
|
15648
15853
|
hideHeader: false,
|
|
15649
15854
|
isStriped: false,
|
|
@@ -15726,7 +15931,7 @@ var table = (0, import_tailwind_variants.tv)({
|
|
|
15726
15931
|
});
|
|
15727
15932
|
|
|
15728
15933
|
// src/components/table/table.test.tsx
|
|
15729
|
-
var
|
|
15934
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
15730
15935
|
var columns = [
|
|
15731
15936
|
{ headerName: "Head 1", field: "1" },
|
|
15732
15937
|
{ headerName: "Head 2", field: "2" },
|
|
@@ -15738,12 +15943,12 @@ var rows = [
|
|
|
15738
15943
|
];
|
|
15739
15944
|
describe("Table", () => {
|
|
15740
15945
|
it("should render correctly", () => {
|
|
15741
|
-
const wrapper = render(/* @__PURE__ */ (0,
|
|
15946
|
+
const wrapper = render(/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(table_default, { rows, columns }));
|
|
15742
15947
|
expect(() => wrapper.unmount()).not.toThrow();
|
|
15743
15948
|
});
|
|
15744
15949
|
it("ref should be forwarded", () => {
|
|
15745
15950
|
const ref = React3.createRef();
|
|
15746
|
-
render(/* @__PURE__ */ (0,
|
|
15951
|
+
render(/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(table_default, { ref, rows, columns }));
|
|
15747
15952
|
expect(ref.current).not.toBeNull();
|
|
15748
15953
|
});
|
|
15749
15954
|
});
|