@sia.soul/sia-react-ui 0.1.3 → 0.1.5
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/{Select-CJJ5LQap.d.ts → Select-GiTHMScg.d.cts} +4 -5
- package/dist/{Select-CJJ5LQap.d.cts → Select-rtDktLYY.d.ts} +4 -5
- package/dist/chart.cjs +731 -707
- package/dist/chart.css +1 -1
- package/dist/chart.js +3 -2
- package/dist/{chunk-6VXOLMKZ.js → chunk-5ZTWY3PG.js} +18 -1
- package/dist/{chunk-2RRTDU3N.js → chunk-EJ23MVR6.js} +3 -18
- package/dist/chunk-EJDPRAU2.js +36 -0
- package/dist/{chunk-IMZT6VCU.js → chunk-IHTODT53.js} +8 -5
- package/dist/{chunk-R4OWKIXJ.js → chunk-MJUTLEEE.js} +20 -8
- package/dist/{chunk-OQLDEVCF.js → chunk-PX6BOFTW.js} +10 -3
- package/dist/{chunk-OAC7BSUR.js → chunk-R7BVDN3Q.js} +91 -43
- package/dist/{chunk-Q4XNFMUH.js → chunk-S2JAJCLN.js} +6 -4
- package/dist/{chunk-NZAT2RUM.js → chunk-WHARTF2I.js} +10 -1
- package/dist/{chunk-I342FGQY.js → chunk-Z3T6RDQP.js} +1 -1
- package/dist/{core-DFYheaoJ.d.ts → core-CBtbeAms.d.cts} +2 -1
- package/dist/{core-De2pRX5w.d.cts → core-D8BSMfHD.d.ts} +2 -1
- package/dist/core.cjs +275 -210
- package/dist/core.css +294 -41
- package/dist/core.d.cts +3 -2
- package/dist/core.d.ts +3 -2
- package/dist/core.js +6 -5
- package/dist/index.cjs +2709 -2434
- package/dist/index.css +295 -42
- package/dist/index.d.cts +23 -9
- package/dist/index.d.ts +23 -9
- package/dist/index.js +414 -224
- package/dist/markdown-editor.cjs +52 -20
- package/dist/markdown-editor.d.cts +3 -1
- package/dist/markdown-editor.d.ts +3 -1
- package/dist/markdown-editor.js +2 -1
- package/dist/rich-text-editor.cjs +884 -864
- package/dist/rich-text-editor.d.cts +3 -1
- package/dist/rich-text-editor.d.ts +3 -1
- package/dist/rich-text-editor.js +4 -3
- package/dist/{select-date-range-DOyG1DGp.d.ts → select-date-range-CQ1vmze_.d.ts} +7 -4
- package/dist/{select-date-range-UyYrHex6.d.cts → select-date-range-DRmGaEzP.d.cts} +7 -4
- package/dist/select-date-range.cjs +972 -903
- package/dist/select-date-range.d.cts +3 -2
- package/dist/select-date-range.d.ts +3 -2
- package/dist/select-date-range.js +4 -3
- package/dist/shared-DAYZvZVu.d.cts +5 -0
- package/dist/shared-DAYZvZVu.d.ts +5 -0
- package/package.json +1 -1
|
@@ -24,803 +24,833 @@ __export(select_date_range_exports, {
|
|
|
24
24
|
});
|
|
25
25
|
module.exports = __toCommonJS(select_date_range_exports);
|
|
26
26
|
|
|
27
|
+
// src/components/shared.ts
|
|
28
|
+
var import_react = require("react");
|
|
29
|
+
var PlaceholderModeContext = (0, import_react.createContext)("default");
|
|
30
|
+
function usePlaceholderMode(mode) {
|
|
31
|
+
const inherited = (0, import_react.useContext)(PlaceholderModeContext);
|
|
32
|
+
return mode ?? inherited;
|
|
33
|
+
}
|
|
34
|
+
function useControllableState({ value, defaultValue, onChange }) {
|
|
35
|
+
const [internalValue, setInternalValue] = (0, import_react.useState)(defaultValue);
|
|
36
|
+
const controlled = value !== void 0;
|
|
37
|
+
const currentValue = controlled ? value : internalValue;
|
|
38
|
+
const setValue = (0, import_react.useCallback)((nextValue) => {
|
|
39
|
+
if (Object.is(currentValue, nextValue)) return;
|
|
40
|
+
if (!controlled) setInternalValue(nextValue);
|
|
41
|
+
onChange?.(nextValue);
|
|
42
|
+
}, [controlled, currentValue, onChange]);
|
|
43
|
+
return [currentValue, setValue];
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// src/components/FloatingPlaceholder.tsx
|
|
47
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
48
|
+
function useFloatingPlaceholder({ mode, placeholder, filled, active = false }) {
|
|
49
|
+
const enabled = usePlaceholderMode(mode) === "floating" && Boolean(placeholder);
|
|
50
|
+
return {
|
|
51
|
+
enabled,
|
|
52
|
+
className: enabled ? ` sia-placeholder-floating${filled ? " sia-placeholder-floating--filled" : ""}${active ? " sia-placeholder-floating--active" : ""}` : "",
|
|
53
|
+
label: enabled ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "sia-floating-placeholder", "aria-hidden": "true", children: placeholder }) : null
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
|
|
27
57
|
// src/components/DatePicker.tsx
|
|
28
58
|
var import_react5 = require("react");
|
|
29
59
|
|
|
30
60
|
// src/components/Icon.tsx
|
|
31
|
-
var
|
|
61
|
+
var import_react2 = require("react");
|
|
32
62
|
|
|
33
63
|
// src/components/IconCatalog.tsx
|
|
34
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
35
|
-
var extendedIconPaths = {
|
|
36
|
-
"notepad-file": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
|
|
37
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M752 80H272c-70.4 0-128 57.6-128 128v608c0 70.4 57.6 128 128 128h353.6c33.6 0 65.6-12.8 91.2-36.8l126.4-126.4c24-24 36.8-56 36.8-91.2V208c0-70.4-57.6-128-128-128zM208 816V208c0-35.2 28.8-64 64-64h480c35.2 0 64 28.8 64 64v464h-96c-70.4 0-128 57.6-128 128v80H272c-35.2 0-64-28.8-64-64z m462.4 44.8c-4.8 4.8-9.6 8-14.4 11.2v-72c0-35.2 28.8-64 64-64h75.2L670.4 860.8z" }),
|
|
38
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M368 352h288c17.6 0 32-14.4 32-32s-14.4-32-32-32H368c-17.6 0-32 14.4-32 32s14.4 32 32 32z m128 256H368c-17.6 0-32 14.4-32 32s14.4 32 32 32h128c17.6 0 32-14.4 32-32s-14.4-32-32-32z m-128-96h288c17.6 0 32-14.4 32-32s-14.4-32-32-32H368c-17.6 0-32 14.4-32 32s14.4 32 32 32z" })
|
|
39
|
-
] }),
|
|
40
|
-
"notepad-folder": /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M510.4 243.2c8 27.2 33.6 44.8 60.8 44.8h259.2c0-35.2-28.8-64-64-64H504l6.4 19.2zM484.8 160h281.6c70.4 0 128 57.6 128 128v25.6c30.4 24 51.2 60.8 51.2 102.4v384c0 70.4-57.6 128-128 128H208c-70.4 0-128-57.6-128-128V224c0-70.4 57.6-128 128-128h164.8c46.4 0 89.6 25.6 112 64z m-112 0H208c-35.2 0-64 28.8-64 64v576c0 35.2 28.8 64 64 64h608c35.2 0 64-28.8 64-64V416c0-35.2-28.8-64-64-64H574.4c-56 0-105.6-36.8-121.6-89.6l-19.2-57.6c-8-27.2-32-44.8-60.8-44.8zM272 704h256c17.6 0 32 14.4 32 32s-14.4 32-32 32H272c-17.6 0-32-14.4-32-32s14.4-32 32-32z" }) }),
|
|
41
|
-
"notepad-virtual-folder": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
|
|
42
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M704 864H192c-89.6 0-160-70.4-160-160V192c0-89.6 70.4-160 160-160h512c89.6 0 160 70.4 160 160v512c0 89.6-70.4 160-160 160zM192 96c-51.2 0-96 44.8-96 96v512c0 51.2 44.8 96 96 96h512c51.2 0 96-44.8 96-96V192c0-51.2-44.8-96-96-96H192z" }),
|
|
43
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M832 992H320c-19.2 0-32-12.8-32-32s12.8-32 32-32h512c51.2 0 96-44.8 96-96V320c0-19.2 12.8-32 32-32s32 12.8 32 32v512c0 89.6-70.4 160-160 160z" })
|
|
44
|
-
] }),
|
|
45
|
-
"step-backward": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
46
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M6 5v14" }),
|
|
47
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m18 6-8 6 8 6V6Z" })
|
|
48
|
-
] }),
|
|
49
|
-
"step-forward": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
50
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M18 5v14" }),
|
|
51
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m6 6 8 6-8 6V6Z" })
|
|
52
|
-
] }),
|
|
53
|
-
"fast-backward": /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m11 6-7 6 7 6V6ZM20 6l-7 6 7 6V6Z" }) }),
|
|
54
|
-
"fast-forward": /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m13 6 7 6-7 6V6ZM4 6l7 6-7 6V6Z" }) }),
|
|
55
|
-
"corner-up-left": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
56
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m9 5-5 5 5 5" }),
|
|
57
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 10h9a7 7 0 0 1 7 7v2" })
|
|
58
|
-
] }),
|
|
59
|
-
"corner-up-right": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
60
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m15 5 5 5-5 5" }),
|
|
61
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M20 10h-9a7 7 0 0 0-7 7v2" })
|
|
62
|
-
] }),
|
|
63
|
-
"swap-horizontal": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
64
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 8h15m0 0-4-4m4 4-4 4" }),
|
|
65
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M20 16H5m0 0 4-4m-4 4 4 4" })
|
|
66
|
-
] }),
|
|
67
|
-
"swap-vertical": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
68
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 4v15m0 0-4-4m4 4 4-4" }),
|
|
69
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M16 20V5m0 0-4 4m4-4 4 4" })
|
|
70
|
-
] }),
|
|
71
|
-
expand: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 4H4v5M4 4l6 6M15 20h5v-5m0 5-6-6" }) }),
|
|
72
|
-
shrink: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M10 10H5V5m0 5 6-6M14 14h5v5m0-5-6 6" }) }),
|
|
73
|
-
fullscreen: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 4H4v5M15 4h5v5M9 20H4v-5M15 20h5v-5" }),
|
|
74
|
-
"fullscreen-exit": /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 9h5V4M20 9h-5V4M4 15h5v5M20 15h-5v5" }),
|
|
75
|
-
"menu-fold": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
76
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 6h16M4 12h10M4 18h16" }),
|
|
77
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m18 9-3 3 3 3" })
|
|
78
|
-
] }),
|
|
79
|
-
"menu-unfold": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
80
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 6h16M10 12h10M4 18h16" }),
|
|
81
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m6 9 3 3-3 3" })
|
|
82
|
-
] }),
|
|
83
|
-
login: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M10 5H5v14h5M13 8l4 4-4 4M8 12h9" }) }),
|
|
84
|
-
logout: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M14 5h5v14h-5M11 8l-4 4 4 4M16 12H7" }) }),
|
|
85
|
-
move: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
86
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 3v18M3 12h18" }),
|
|
87
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m9 6 3-3 3 3M9 18l3 3 3-3M6 9l-3 3 3 3M18 9l3 3-3 3" })
|
|
88
|
-
] }),
|
|
89
|
-
"vertical-align-top": /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 4h16M12 7v13M8 11l4-4 4 4" }) }),
|
|
90
|
-
"vertical-align-middle": /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 12h16M12 4v16M8 8l4 4 4-4M8 16l4-4 4 4" }) }),
|
|
91
|
-
"vertical-align-bottom": /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 20h16M12 4v13M8 13l4 4 4-4" }) }),
|
|
92
|
-
"square-plus": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
93
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
94
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 8v8M8 12h8" })
|
|
95
|
-
] }),
|
|
96
|
-
"square-minus": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
97
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
98
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 12h8" })
|
|
99
|
-
] }),
|
|
100
|
-
"square-check": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
101
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
102
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m8 12 3 3 6-7" })
|
|
103
|
-
] }),
|
|
104
|
-
"square-close": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
105
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
106
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m8.5 8.5 7 7m0-7-7 7" })
|
|
107
|
-
] }),
|
|
108
|
-
"tab-plus": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
109
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2.5" }),
|
|
110
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 9h18M7 6.5h.1M10 6.5h.1M15 12v6M12 15h6" })
|
|
111
|
-
] }),
|
|
112
|
-
"folder-plus": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
113
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 6h7l2 2h9v11H3V6Z" }),
|
|
114
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M16 11v6M13 14h6" })
|
|
115
|
-
] }),
|
|
116
|
-
pin: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 3h8l-1.5 5 3 3v2H13v8l-2-2v-6H6.5v-2l3-3L8 3Z" }) }),
|
|
117
|
-
"pin-off": /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9.5 8 8 3h8l-1.5 5 3 3v2H13v4M6.5 13v-2l1-1M3 3l18 18" }) }),
|
|
118
|
-
stop: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
119
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
120
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M6 18 18 6" })
|
|
121
|
-
] }),
|
|
122
|
-
"help-circle": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
123
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
124
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9.7 9a2.5 2.5 0 1 1 3.6 2.3c-.9.5-1.3 1.1-1.3 2.1M12 17v.1" })
|
|
125
|
-
] }),
|
|
126
|
-
save: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
127
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 3h13l3 3v15H4V3Z" }),
|
|
128
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 3v6h8V3M8 21v-7h8v7" })
|
|
129
|
-
] }),
|
|
130
|
-
clipboard: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
131
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
|
|
132
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 4.5V3h6v1.5M9 9h6M9 13h6M9 17h4" })
|
|
133
|
-
] }),
|
|
134
|
-
"clipboard-check": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
135
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
|
|
136
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 4.5V3h6v1.5m-6 9 2 2 4-5" })
|
|
137
|
-
] }),
|
|
138
|
-
"file-plus": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
139
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
140
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M14 3v5h4M12 11v6M9 14h6" })
|
|
141
|
-
] }),
|
|
142
|
-
"file-check": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
143
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
144
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M14 3v5h4m-8 6 2 2 4-5" })
|
|
145
|
-
] }),
|
|
146
|
-
"file-warning": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
147
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
148
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M14 3v5h4M12 11v4m0 3v.1" })
|
|
149
|
-
] }),
|
|
150
|
-
"file-spreadsheet": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
151
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
152
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M14 3v5h4M8.5 11h7v7h-7v-7Zm0 3.5h7M12 11v7" })
|
|
153
|
-
] }),
|
|
154
|
-
"align-left": /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 6h16M4 10h11M4 14h16M4 18h11" }),
|
|
155
|
-
"align-center": /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 6h16M7 10h10M4 14h16M7 18h10" }),
|
|
156
|
-
"align-right": /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 6h16M9 10h11M4 14h16M9 18h11" }),
|
|
157
|
-
"align-justify": /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 6h16M4 10h16M4 14h16M4 18h16" }),
|
|
158
|
-
bold: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 4h6a4 4 0 0 1 0 8H7V4Zm0 8h7a4 4 0 0 1 0 8H7v-8Z" }),
|
|
159
|
-
italic: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M10 4h8M6 20h8M14 4 10 20" }),
|
|
160
|
-
underline: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 4v7a5 5 0 0 0 10 0V4M5 21h14" }) }),
|
|
161
|
-
strikethrough: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M5 12h14M8 8c.3-2.5 2-4 4.5-4 2.2 0 3.7 1 4.5 2.5M8 16c.8 2.5 2.5 4 5 4 2.2 0 3.8-1 4.5-2.5" }) }),
|
|
162
|
-
"list-ordered": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
163
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
|
|
164
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 5h1v3M4 11h2l-2 3h2M4 17h2l-2 3h2" })
|
|
165
|
-
] }),
|
|
166
|
-
"list-unordered": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
167
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
|
|
168
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "4.5", cy: "6", r: ".5" }),
|
|
169
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "4.5", cy: "12", r: ".5" }),
|
|
170
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "4.5", cy: "18", r: ".5" })
|
|
171
|
-
] }),
|
|
172
|
-
eraser: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
173
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m4 15 8-10 8 7-7 8H7l-3-3v-2Z" }),
|
|
174
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m9 9 8 7M13 20h8" })
|
|
175
|
-
] }),
|
|
176
|
-
highlighter: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
177
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m7 14 7-10 5 4-8 9-4-3Z" }),
|
|
178
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m5 17 6 3H3l2-3ZM15 14l4 3" })
|
|
179
|
-
] }),
|
|
180
|
-
table: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
181
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
182
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 9h18M3 14h18M9 4v16M15 4v16" })
|
|
183
|
-
] }),
|
|
184
|
-
columns: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
185
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
186
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 4v16" })
|
|
187
|
-
] }),
|
|
188
|
-
rows: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
189
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
190
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 9h18M3 15h18" })
|
|
191
|
-
] }),
|
|
192
|
-
"bar-chart": /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 21V10h4v11M10 21V4h4v17M16 21v-8h4v8M3 21h18" }) }),
|
|
193
|
-
"line-chart": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
194
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9" }),
|
|
195
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "9", cy: "11", r: "1" }),
|
|
196
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "13", cy: "14", r: "1" })
|
|
197
|
-
] }),
|
|
198
|
-
"pie-chart": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
199
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M11 3a9 9 0 1 0 9 9h-9V3Z" }),
|
|
200
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M14 3.5A8.5 8.5 0 0 1 20.5 10H14V3.5Z" })
|
|
201
|
-
] }),
|
|
202
|
-
"area-chart": /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9v12H4Z" }) }),
|
|
203
|
-
activity: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 12h4l2-6 4 13 3-7h5" }),
|
|
204
|
-
"trending-up": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
205
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m4 17 6-6 4 4 6-7" }),
|
|
206
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M15 8h5v5" })
|
|
207
|
-
] }),
|
|
208
|
-
"trending-down": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
209
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m4 7 6 6 4-4 6 7" }),
|
|
210
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M15 16h5v-5" })
|
|
211
|
-
] }),
|
|
212
|
-
database: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
213
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("ellipse", { cx: "12", cy: "5", rx: "8", ry: "3" }),
|
|
214
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 5v7c0 1.7 3.6 3 8 3s8-1.3 8-3V5M4 12v7c0 1.7 3.6 3 8 3s8-1.3 8-3v-7" })
|
|
215
|
-
] }),
|
|
216
|
-
cloud: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 19h11a4 4 0 0 0 .5-8A7 7 0 0 0 5.2 9.5 4.8 4.8 0 0 0 7 19Z" }),
|
|
217
|
-
"cloud-download": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
218
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 18H5a4 4 0 0 1 .2-8 7 7 0 0 1 13.3 1A4 4 0 0 1 19 19h-2" }),
|
|
219
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 11v10m-4-4 4 4 4-4" })
|
|
220
|
-
] }),
|
|
221
|
-
"cloud-upload": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
222
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 18H5a4 4 0 0 1 .2-8 7 7 0 0 1 13.3 1A4 4 0 0 1 19 19h-2" }),
|
|
223
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 21V11m-4 4 4-4 4 4" })
|
|
224
|
-
] }),
|
|
225
|
-
server: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
226
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "4", width: "18", height: "7", rx: "2" }),
|
|
227
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "13", width: "18", height: "7", rx: "2" }),
|
|
228
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 7.5h.1M7 16.5h.1M11 7.5h6M11 16.5h6" })
|
|
229
|
-
] }),
|
|
230
|
-
desktop: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
231
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "3", width: "18", height: "14", rx: "2" }),
|
|
232
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 21h8M12 17v4" })
|
|
233
|
-
] }),
|
|
234
|
-
laptop: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
235
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M5 5h14v11H5V5Z" }),
|
|
236
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m3 19 2-3h14l2 3H3Z" })
|
|
237
|
-
] }),
|
|
238
|
-
mobile: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
239
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "7", y: "2", width: "10", height: "20", rx: "2.5" }),
|
|
240
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M10 5h4M12 19v.1" })
|
|
241
|
-
] }),
|
|
242
|
-
tablet: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
243
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
|
|
244
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M10 5h4M12 19v.1" })
|
|
245
|
-
] }),
|
|
246
|
-
printer: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
247
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 9V3h10v6M6 18H4V9h16v9h-2" }),
|
|
248
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 14h10v7H7v-7ZM17 11h.1" })
|
|
249
|
-
] }),
|
|
250
|
-
camera: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
251
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 7h4l2-3h6l2 3h4v13H3V7Z" }),
|
|
252
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "13", r: "4" })
|
|
253
|
-
] }),
|
|
254
|
-
video: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
255
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "5", width: "13", height: "14", rx: "2" }),
|
|
256
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m16 10 5-3v10l-5-3v-4Z" })
|
|
257
|
-
] }),
|
|
258
|
-
microphone: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
259
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "9", y: "3", width: "6", height: "12", rx: "3" }),
|
|
260
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M5 11a7 7 0 0 0 14 0M12 18v3M8 21h8" })
|
|
261
|
-
] }),
|
|
262
|
-
"volume-up": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
263
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4Z" }),
|
|
264
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M16 9a4 4 0 0 1 0 6M18.5 6.5a8 8 0 0 1 0 11" })
|
|
265
|
-
] }),
|
|
266
|
-
"volume-off": /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4ZM17 9l5 6m0-6-5 6" }) }),
|
|
267
|
-
"speaker-wave": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
268
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
|
|
269
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M15.2 9.2a4 4 0 0 1 0 5.6" })
|
|
270
|
-
] }),
|
|
271
|
-
"speaker-muted": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
272
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
|
|
273
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m15.5 9.5 5 5m0-5-5 5" })
|
|
274
|
-
] }),
|
|
275
|
-
wifi: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 9a14 14 0 0 1 18 0M6 13a9 9 0 0 1 12 0M9.5 17a4 4 0 0 1 5 0M12 21v.1" }) }),
|
|
276
|
-
power: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
277
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 3v9" }),
|
|
278
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 5.5a8 8 0 1 0 10 0" })
|
|
279
|
-
] }),
|
|
280
|
-
key: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
281
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "8", cy: "15", r: "4" }),
|
|
282
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m11 12 8-8m-3 3 3 3m-6 0 3 3" })
|
|
283
|
-
] }),
|
|
284
|
-
shield: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
|
|
285
|
-
"shield-check": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
286
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
|
|
287
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m8 12 2.5 2.5L16 9" })
|
|
288
|
-
] }),
|
|
289
|
-
bug: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 9h8v7a4 4 0 0 1-8 0V9ZM9 9a3 3 0 0 1 6 0M5 11h3M16 11h3M5 16h3M16 16h3M7 5l2 2M17 5l-2 2" }) }),
|
|
290
|
-
bulb: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
291
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 15a7 7 0 1 1 8 0c-1.2.8-1.5 1.8-1.5 3h-5c0-1.2-.3-2.2-1.5-3Z" }),
|
|
292
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9.5 21h5" })
|
|
293
|
-
] }),
|
|
294
|
-
rocket: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
295
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 16c-2-1-4-1-5 0 0-3 1-5 4-6M14 6c3-3 6-3 7-3 0 1 0 4-3 7l-6 6-4-4 6-6Z" }),
|
|
296
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M14 14c0 3-2 6-5 7 0-2 0-4-1-5M5 19l-2 2" })
|
|
297
|
-
] }),
|
|
298
|
-
target: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
299
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
300
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "5" }),
|
|
301
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "1" })
|
|
302
|
-
] }),
|
|
303
|
-
trophy: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
304
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 4h8v5a4 4 0 0 1-8 0V4ZM9 20h6M12 13v7" }),
|
|
305
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 6H4v2a4 4 0 0 0 5 4M16 6h4v2a4 4 0 0 1-5 4" })
|
|
306
|
-
] }),
|
|
307
|
-
"shopping-cart": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
308
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 4h2l2 11h10l3-8H6" }),
|
|
309
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "9", cy: "20", r: "1" }),
|
|
310
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "17", cy: "20", r: "1" })
|
|
311
|
-
] }),
|
|
312
|
-
"shopping-bag": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
313
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M5 8h14l1 13H4L5 8Z" }),
|
|
314
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 9V6a3 3 0 0 1 6 0v3" })
|
|
315
|
-
] }),
|
|
316
|
-
shop: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
317
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 10v11h16V10M3 4h18l-2 6H5L3 4Z" }),
|
|
318
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 21v-6h6v6" })
|
|
319
|
-
] }),
|
|
320
|
-
wallet: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
321
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "5", width: "18", height: "15", rx: "2.5" }),
|
|
322
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 9h18M15 13h6v4h-6a2 2 0 0 1 0-4Z" })
|
|
323
|
-
] }),
|
|
324
|
-
bank: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m3 9 9-6 9 6M5 10h14M6 10v8M10 10v8M14 10v8M18 10v8M3 21h18M4 18h16" }) }),
|
|
325
|
-
calculator: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
326
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
|
|
327
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 5h8v4H8V5ZM8 13h.1M12 13h.1M16 13h.1M8 17h.1M12 17h.1M16 17h.1" })
|
|
328
|
-
] }),
|
|
329
|
-
tag: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
330
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 12V4h8l10 10-7 7L3 12Z" }),
|
|
331
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "7.5", cy: "8.5", r: "1" })
|
|
332
|
-
] }),
|
|
333
|
-
tags: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
334
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M6 12V4h7l8 8-6 6-9-6Z" }),
|
|
335
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "10", cy: "8", r: "1" }),
|
|
336
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m3 8 1 9 7 4 2-2" })
|
|
337
|
-
] }),
|
|
338
|
-
message: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 4h16v13H9l-5 4V4Z" }),
|
|
339
|
-
comments: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
340
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 4h13v10H8l-5 4V4Z" }),
|
|
341
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M10 17h6l5 4V8h-2" })
|
|
342
|
-
] }),
|
|
343
|
-
send: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m3 11 18-8-8 18-2-8-8-2Zm8 2 10-10" }),
|
|
344
|
-
share: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
345
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "18", cy: "5", r: "3" }),
|
|
346
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "6", cy: "12", r: "3" }),
|
|
347
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "18", cy: "19", r: "3" }),
|
|
348
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m8.5 10.5 7-4M8.5 13.5l7 4" })
|
|
349
|
-
] }),
|
|
350
|
-
paperclip: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m8 12 7-7a4 4 0 0 1 6 6l-9 9a6 6 0 0 1-9-9l8-8" }),
|
|
351
|
-
location: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
352
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 22s7-6.2 7-13a7 7 0 1 0-14 0c0 6.8 7 13 7 13Z" }),
|
|
353
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "9", r: "2.5" })
|
|
354
|
-
] }),
|
|
355
|
-
compass: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
356
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
357
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m15.5 8.5-2 5-5 2 2-5 5-2Z" })
|
|
358
|
-
] }),
|
|
359
|
-
car: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
360
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 15V9l2-5h12l2 5v6M3 10h18M6 15h12" }),
|
|
361
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "7", cy: "18", r: "2" }),
|
|
362
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "17", cy: "18", r: "2" })
|
|
363
|
-
] }),
|
|
364
|
-
truck: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
365
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 5h11v12H3V5ZM14 9h4l3 4v4h-7V9Z" }),
|
|
366
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "7", cy: "19", r: "2" }),
|
|
367
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "18", cy: "19", r: "2" })
|
|
368
|
-
] }),
|
|
369
|
-
gift: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
370
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "9", width: "18", height: "12", rx: "2" }),
|
|
371
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 9v12M3 13h18M12 9H8a3 3 0 1 1 4-3v3Zm0 0h4a3 3 0 1 0-4-3v3Z" })
|
|
372
|
-
] }),
|
|
373
|
-
coffee: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
374
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 8h13v6a6 6 0 0 1-6 6H10a6 6 0 0 1-6-6V8ZM17 10h2a3 3 0 0 1 0 6h-3" }),
|
|
375
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 4v1M12 3v2" })
|
|
376
|
-
] }),
|
|
377
|
-
experiment: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
378
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 3h6M10 3v6l-6 10a2 2 0 0 0 2 3h12a2 2 0 0 0 2-3L14 9V3" }),
|
|
379
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 16h10" })
|
|
380
|
-
] }),
|
|
381
|
-
tool: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M14 6a5 5 0 0 0-6-3l3 3-3 3-3-3a5 5 0 0 0 6 6l7 7a2 2 0 0 0 3-3l-7-7Z" }) }),
|
|
382
|
-
appstore: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
383
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "2" }),
|
|
384
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "2" }),
|
|
385
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "2" }),
|
|
386
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "14", y: "14", width: "7", height: "7", rx: "2" })
|
|
387
|
-
] }),
|
|
388
|
-
puzzle: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 3h4.2a2.8 2.8 0 1 0 5.6 0H21v6h-2.2a2.8 2.8 0 1 0 0 5.6H21V21h-6.4v-2.2a2.8 2.8 0 1 0-5.6 0V21H3v-6.4h2.2a2.8 2.8 0 1 0 0-5.6H3V3h6Z" }) }),
|
|
389
|
-
partition: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
390
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 5v5M6 14v-2h12v2M6 18v3M12 18v3M18 18v3" }),
|
|
391
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "3", r: "2" }),
|
|
392
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "6", cy: "16", r: "2" }),
|
|
393
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "16", r: "2" }),
|
|
394
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "18", cy: "16", r: "2" })
|
|
395
|
-
] }),
|
|
396
|
-
branches: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
397
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "6", cy: "5", r: "2" }),
|
|
398
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "18", cy: "7", r: "2" }),
|
|
399
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "6", cy: "19", r: "2" }),
|
|
400
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M6 7v10M8 10c6 0 4-3 8-3M8 14c6 0 4 3 8 3" })
|
|
401
|
-
] }),
|
|
402
|
-
scan: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 3H3v5M16 3h5v5M8 21H3v-5M16 21h5v-5M7 12h10" }),
|
|
403
|
-
"qr-code": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
404
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "1" }),
|
|
405
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "1" }),
|
|
406
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "1" }),
|
|
407
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M14 14h3v3h-3v-3ZM18 18h3v3h-3v-3ZM14 20h1M20 14h1" })
|
|
408
|
-
] }),
|
|
409
|
-
barcode: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 5v14M7 5v14M11 5v14M14 5v14M16 5v14M20 5v14" }),
|
|
410
|
-
"user-plus": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
411
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
|
|
412
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 21c.7-4.3 3-6.5 7-6.5 2 0 3.6.6 4.7 1.7M19 14v7M15.5 17.5h7" })
|
|
413
|
-
] }),
|
|
414
|
-
"user-minus": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
415
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
|
|
416
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 21c.7-4.3 3-6.5 7-6.5 2 0 3.6.6 4.7 1.7M15.5 17.5h7" })
|
|
417
|
-
] }),
|
|
418
|
-
smile: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
419
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
420
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 10h.1M16 10h.1M8 15c1 1.4 2.3 2 4 2s3-.6 4-2" })
|
|
421
|
-
] }),
|
|
422
|
-
meh: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
423
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
424
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 10h.1M16 10h.1M8 16h8" })
|
|
425
|
-
] }),
|
|
426
|
-
frown: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
427
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
428
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 10h.1M16 10h.1M8 17c1-1.4 2.3-2 4-2s3 .6 4 2" })
|
|
429
|
-
] }),
|
|
430
|
-
"game-cultivator": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
431
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7.2 7.5h9.6M9 5.2 12 2l3 3.2" }),
|
|
432
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "8.8", r: "3.6" }),
|
|
433
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7.5 21c.2-4.9 1.8-7.3 4.5-7.3s4.3 2.4 4.5 7.3M9.4 15.2 7 18m7.6-2.8L17 18M10 21l2-4 2 4" })
|
|
434
|
-
] }),
|
|
435
|
-
"game-swordsman": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
436
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9.2 5.2h5.6M12 2.5v2.7" }),
|
|
437
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "8.8", r: "3.4" }),
|
|
438
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7.2 21c.3-5 1.9-7.4 4.8-7.4s4.5 2.4 4.8 7.4M9.2 14.8 7 18.2m7.8-3.4 2.2 3.4M9.5 21l2.5-4 2.5 4" }),
|
|
439
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m17.7 5.1 2.2-1-.9 2.3-5.2 5.2M16.2 7.8l1.8 1.8" })
|
|
440
|
-
] }),
|
|
441
|
-
"game-spirit-wolf": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
442
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m5.2 8.2.7-4 3.3 2.2A9 9 0 0 1 12 6c1 0 1.9.1 2.8.4l3.3-2.2.7 4A7.7 7.7 0 0 1 20 13c0 4.3-3.5 7.7-8 7.7S4 17.3 4 13c0-1.8.4-3.4 1.2-4.8Z" }),
|
|
443
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8.3 12h.1m7.2 0h.1M9 16c1.8 1.3 4.2 1.3 6 0m-3-1.5v1M7 18l-2.2 2M17 18l2.2 2" })
|
|
444
|
-
] }),
|
|
445
|
-
"game-gem": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
446
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m4 8 3-4h10l3 4-8 13L4 8Z" }),
|
|
447
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 8h16M8 4l-2 4 6 13 6-13-2-4M6 8h12" })
|
|
448
|
-
] }),
|
|
449
|
-
"game-ingot": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
450
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 9.5c2.2 1 4.1 1.5 5.8 1.6L12 6l2.2 5.1c1.7-.1 3.6-.6 5.8-1.6-.3 5.1-2.9 8.4-8 10-5.1-1.6-7.7-4.9-8-10Z" }),
|
|
451
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4.6 10.1 3 6.5c2.3 1.2 4.2 1.6 5.8 1.2M19.4 10.1 21 6.5c-2.3 1.2-4.2 1.6-5.8 1.2M7 16.3c3.3 1 6.7 1 10 0" })
|
|
452
|
-
] }),
|
|
453
|
-
"game-sword": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
454
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m14.5 4.5 5-1-1 5L9 18l-3 1 1-3 9.5-9.5M5 19l-1 1" }),
|
|
455
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m12.5 7.5 4 4M7.5 14.5l2 2" })
|
|
456
|
-
] }),
|
|
457
|
-
"game-robe": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
458
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m8.5 4 3.5 2 3.5-2 4 4-2.5 3-1.2-1V21H8.2V10L7 11 4.5 8l4-4Z" }),
|
|
459
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 4.5 12 9l3-4.5M12 9v12" })
|
|
460
|
-
] }),
|
|
461
|
-
"game-pants": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
462
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 3h10l1 18h-5l-1-10-1 10H6L7 3Z" }),
|
|
463
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 7h10M12 3v8" })
|
|
464
|
-
] }),
|
|
465
|
-
"game-pendant": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
466
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M5 4c1.7 4.4 4 6.6 7 6.6S17.3 8.4 19 4" }),
|
|
467
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 10.6c-2.7 1.8-4 3.8-4 6a4 4 0 0 0 8 0c0-2.2-1.3-4.2-4-6Z" }),
|
|
468
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "16.5", r: "1.5" })
|
|
469
|
-
] }),
|
|
470
|
-
"game-necklace": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
471
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M5 4c.7 6.3 3 9.5 7 9.5S18.3 10.3 19 4" }),
|
|
472
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m12 13.5 3 2.4-1.2 4.1h-3.6L9 15.9l3-2.4Z" }),
|
|
473
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 7h.1m10 0h.1M9 10h.1m6 0h.1" })
|
|
474
|
-
] }),
|
|
475
|
-
"game-pill": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
476
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M6.2 17.8a5.7 5.7 0 0 1 0-8.1l3.5-3.5a5.7 5.7 0 1 1 8.1 8.1l-3.5 3.5a5.7 5.7 0 0 1-8.1 0Z" }),
|
|
477
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m8 8 8 8" }),
|
|
478
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M6.3 12.2c1.3.2 2.5.7 3.5 1.7s1.6 2.2 1.8 3.5" })
|
|
479
|
-
] }),
|
|
480
|
-
"game-potion": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
481
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M9 3h6M10 3v5l-5 7.5A3.5 3.5 0 0 0 8 21h8a3.5 3.5 0 0 0 3-5.5L14 8V3" }),
|
|
482
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 15h10M9.5 12h5" })
|
|
483
|
-
] }),
|
|
484
|
-
"game-elixir-jar": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
485
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 3h8l-1 4c2.6 1.2 4 3.5 4 6.8V21H5v-7.2C5 10.5 6.4 8.2 9 7L8 3Z" }),
|
|
486
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8.5 7h7M5 14h14M9 17h6" })
|
|
487
|
-
] }),
|
|
488
|
-
"game-flame": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
489
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M13.8 2.5c.6 3.6-2.1 4.8-2.1 7.2 0 1.1.7 1.9 1.7 1.9 1.8 0 2.4-2.1 2-4.1 2.6 2 4.1 4.6 4.1 7.4A7.5 7.5 0 0 1 4.5 15c0-3.5 1.8-6.5 5.2-9-.2 2.3.8 3.4 1.8 3.7-.4-2.6.3-5.1 2.3-7.2Z" }),
|
|
490
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 21c-2 0-3.3-1.3-3.3-3.2 0-1.5.9-2.8 2.6-4.2 0 1.7.8 2.5 1.7 2.5 1 0 1.7-.9 1.5-2.3 1.2 1.2 1.8 2.5 1.8 4A4 4 0 0 1 12 21Z" })
|
|
491
|
-
] }),
|
|
492
|
-
"game-soul-elixir": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
493
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "4.2" }),
|
|
494
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 2.5v3M12 18.5v3M2.5 12h3M18.5 12h3M5.3 5.3l2.2 2.2m9 9 2.2 2.2m0-13.4-2.2 2.2m-9 9-2.2 2.2" }),
|
|
495
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m10 12 1.4 1.4L14.5 10" })
|
|
496
|
-
] }),
|
|
497
|
-
"game-herb": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
498
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 21V9" }),
|
|
499
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 13c-5.5.1-8-2.6-8-7.5 5-.2 7.8 2.1 8 7.5Zm0 4c5.5.1 8-2.6 8-7.5-5-.2-7.8 2.1-8 7.5Z" })
|
|
500
|
-
] }),
|
|
501
|
-
"game-meditate": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
502
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "5.5", r: "2.5" }),
|
|
503
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8.5 11c1-1.5 2.2-2.2 3.5-2.2s2.5.7 3.5 2.2l2.8 4M5.7 15l2.8-4M4 19c2.5-2.2 5.2-2.5 8-1 2.8-1.5 5.5-1.2 8 1M7 21h10" }),
|
|
504
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m9.5 14.5 2.5 3.4 2.5-3.4" })
|
|
505
|
-
] }),
|
|
506
|
-
"game-backpack": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
507
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 8V5.5a4 4 0 0 1 8 0V8M6 8h12l2 13H4L6 8Z" }),
|
|
508
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8.5 13h7v5h-7v-5ZM9 5.5h6" })
|
|
509
|
-
] }),
|
|
510
|
-
"game-qi": /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
511
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
512
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 8.5c2.5-2.8 7-2.2 8.7.2 1.7 2.4.9 5.6-1.6 6.8-2.4 1.2-5.5-.1-5.8-2.5-.2-1.8 1.4-3.1 3.2-2.8 1.8.3 2.6 2.2 1.7 3.5" })
|
|
513
|
-
] })
|
|
514
|
-
};
|
|
515
|
-
|
|
516
|
-
// src/components/Icon.tsx
|
|
517
64
|
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
518
|
-
var
|
|
519
|
-
|
|
520
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
521
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
522
|
-
] }),
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
65
|
+
var extendedIconPaths = {
|
|
66
|
+
"notepad-file": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
|
|
67
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M752 80H272c-70.4 0-128 57.6-128 128v608c0 70.4 57.6 128 128 128h353.6c33.6 0 65.6-12.8 91.2-36.8l126.4-126.4c24-24 36.8-56 36.8-91.2V208c0-70.4-57.6-128-128-128zM208 816V208c0-35.2 28.8-64 64-64h480c35.2 0 64 28.8 64 64v464h-96c-70.4 0-128 57.6-128 128v80H272c-35.2 0-64-28.8-64-64z m462.4 44.8c-4.8 4.8-9.6 8-14.4 11.2v-72c0-35.2 28.8-64 64-64h75.2L670.4 860.8z" }),
|
|
68
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M368 352h288c17.6 0 32-14.4 32-32s-14.4-32-32-32H368c-17.6 0-32 14.4-32 32s14.4 32 32 32z m128 256H368c-17.6 0-32 14.4-32 32s14.4 32 32 32h128c17.6 0 32-14.4 32-32s-14.4-32-32-32z m-128-96h288c17.6 0 32-14.4 32-32s-14.4-32-32-32H368c-17.6 0-32 14.4-32 32s14.4 32 32 32z" })
|
|
69
|
+
] }),
|
|
70
|
+
"notepad-folder": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M510.4 243.2c8 27.2 33.6 44.8 60.8 44.8h259.2c0-35.2-28.8-64-64-64H504l6.4 19.2zM484.8 160h281.6c70.4 0 128 57.6 128 128v25.6c30.4 24 51.2 60.8 51.2 102.4v384c0 70.4-57.6 128-128 128H208c-70.4 0-128-57.6-128-128V224c0-70.4 57.6-128 128-128h164.8c46.4 0 89.6 25.6 112 64z m-112 0H208c-35.2 0-64 28.8-64 64v576c0 35.2 28.8 64 64 64h608c35.2 0 64-28.8 64-64V416c0-35.2-28.8-64-64-64H574.4c-56 0-105.6-36.8-121.6-89.6l-19.2-57.6c-8-27.2-32-44.8-60.8-44.8zM272 704h256c17.6 0 32 14.4 32 32s-14.4 32-32 32H272c-17.6 0-32-14.4-32-32s14.4-32 32-32z" }) }),
|
|
71
|
+
"notepad-virtual-folder": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
|
|
72
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M704 864H192c-89.6 0-160-70.4-160-160V192c0-89.6 70.4-160 160-160h512c89.6 0 160 70.4 160 160v512c0 89.6-70.4 160-160 160zM192 96c-51.2 0-96 44.8-96 96v512c0 51.2 44.8 96 96 96h512c51.2 0 96-44.8 96-96V192c0-51.2-44.8-96-96-96H192z" }),
|
|
73
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M832 992H320c-19.2 0-32-12.8-32-32s12.8-32 32-32h512c51.2 0 96-44.8 96-96V320c0-19.2 12.8-32 32-32s32 12.8 32 32v512c0 89.6-70.4 160-160 160z" })
|
|
74
|
+
] }),
|
|
75
|
+
"step-backward": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
76
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 5v14" }),
|
|
77
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m18 6-8 6 8 6V6Z" })
|
|
78
|
+
] }),
|
|
79
|
+
"step-forward": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
80
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M18 5v14" }),
|
|
81
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m6 6 8 6-8 6V6Z" })
|
|
82
|
+
] }),
|
|
83
|
+
"fast-backward": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m11 6-7 6 7 6V6ZM20 6l-7 6 7 6V6Z" }) }),
|
|
84
|
+
"fast-forward": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m13 6 7 6-7 6V6ZM4 6l7 6-7 6V6Z" }) }),
|
|
85
|
+
"corner-up-left": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
86
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 5-5 5 5 5" }),
|
|
87
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10h9a7 7 0 0 1 7 7v2" })
|
|
88
|
+
] }),
|
|
89
|
+
"corner-up-right": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
90
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m15 5 5 5-5 5" }),
|
|
91
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M20 10h-9a7 7 0 0 0-7 7v2" })
|
|
92
|
+
] }),
|
|
93
|
+
"swap-horizontal": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
94
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 8h15m0 0-4-4m4 4-4 4" }),
|
|
95
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M20 16H5m0 0 4-4m-4 4 4 4" })
|
|
96
|
+
] }),
|
|
97
|
+
"swap-vertical": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
98
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 4v15m0 0-4-4m4 4 4-4" }),
|
|
99
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16 20V5m0 0-4 4m4-4 4 4" })
|
|
100
|
+
] }),
|
|
101
|
+
expand: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 4H4v5M4 4l6 6M15 20h5v-5m0 5-6-6" }) }),
|
|
102
|
+
shrink: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 10H5V5m0 5 6-6M14 14h5v5m0-5-6 6" }) }),
|
|
103
|
+
fullscreen: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 4H4v5M15 4h5v5M9 20H4v-5M15 20h5v-5" }),
|
|
104
|
+
"fullscreen-exit": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 9h5V4M20 9h-5V4M4 15h5v5M20 15h-5v5" }),
|
|
105
|
+
"menu-fold": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
106
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M4 12h10M4 18h16" }),
|
|
107
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m18 9-3 3 3 3" })
|
|
108
|
+
] }),
|
|
109
|
+
"menu-unfold": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
110
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M10 12h10M4 18h16" }),
|
|
111
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m6 9 3 3-3 3" })
|
|
112
|
+
] }),
|
|
113
|
+
login: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 5H5v14h5M13 8l4 4-4 4M8 12h9" }) }),
|
|
114
|
+
logout: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 5h5v14h-5M11 8l-4 4 4 4M16 12H7" }) }),
|
|
115
|
+
move: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
116
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3v18M3 12h18" }),
|
|
117
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 6 3-3 3 3M9 18l3 3 3-3M6 9l-3 3 3 3M18 9l3 3-3 3" })
|
|
118
|
+
] }),
|
|
119
|
+
"vertical-align-top": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 4h16M12 7v13M8 11l4-4 4 4" }) }),
|
|
120
|
+
"vertical-align-middle": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 12h16M12 4v16M8 8l4 4 4-4M8 16l4-4 4 4" }) }),
|
|
121
|
+
"vertical-align-bottom": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 20h16M12 4v13M8 13l4 4 4-4" }) }),
|
|
122
|
+
"square-plus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
123
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
124
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 8v8M8 12h8" })
|
|
530
125
|
] }),
|
|
531
|
-
|
|
532
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
533
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
126
|
+
"square-minus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
127
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
128
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 12h8" })
|
|
534
129
|
] }),
|
|
535
|
-
|
|
536
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
537
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
130
|
+
"square-check": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
131
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
132
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8 12 3 3 6-7" })
|
|
538
133
|
] }),
|
|
539
|
-
"
|
|
540
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
541
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8
|
|
134
|
+
"square-close": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
135
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
|
|
136
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8.5 8.5 7 7m0-7-7 7" })
|
|
542
137
|
] }),
|
|
543
|
-
"
|
|
544
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
545
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
138
|
+
"tab-plus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
139
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2.5" }),
|
|
140
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 9h18M7 6.5h.1M10 6.5h.1M15 12v6M12 15h6" })
|
|
546
141
|
] }),
|
|
547
|
-
"
|
|
548
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
549
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
142
|
+
"folder-plus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
143
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 6h7l2 2h9v11H3V6Z" }),
|
|
144
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16 11v6M13 14h6" })
|
|
550
145
|
] }),
|
|
551
|
-
|
|
146
|
+
pin: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 3h8l-1.5 5 3 3v2H13v8l-2-2v-6H6.5v-2l3-3L8 3Z" }) }),
|
|
147
|
+
"pin-off": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9.5 8 8 3h8l-1.5 5 3 3v2H13v4M6.5 13v-2l1-1M3 3l18 18" }) }),
|
|
148
|
+
stop: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
552
149
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
553
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
150
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 18 18 6" })
|
|
554
151
|
] }),
|
|
555
|
-
"
|
|
556
|
-
"chevron-right": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8.5 5 7 7-7 7" }),
|
|
557
|
-
"chevron-up": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m5 15.5 7-7 7 7" }),
|
|
558
|
-
"chevron-down": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m5 8.5 7 7 7-7" }),
|
|
559
|
-
"double-left": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
560
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m12 5-7 7 7 7" }),
|
|
561
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m19 5-7 7 7 7" })
|
|
562
|
-
] }),
|
|
563
|
-
"double-right": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
564
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m5 5 7 7-7 7" }),
|
|
565
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m12 5 7 7-7 7" })
|
|
566
|
-
] }),
|
|
567
|
-
"arrow-left": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
568
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m10 5-7 7 7 7" }),
|
|
569
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 12h18" })
|
|
570
|
-
] }),
|
|
571
|
-
"arrow-right": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
572
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m14 5 7 7-7 7" }),
|
|
573
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 12h18" })
|
|
574
|
-
] }),
|
|
575
|
-
"arrow-up": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
576
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m5 10 7-7 7 7" }),
|
|
577
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3v18" })
|
|
578
|
-
] }),
|
|
579
|
-
"arrow-down": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
580
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m5 14 7 7 7-7" }),
|
|
581
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3v18" })
|
|
582
|
-
] }),
|
|
583
|
-
menu: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M4 12h16M4 18h16" }),
|
|
584
|
-
"more-horizontal": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 12h.1M12 12h.1M19 12h.1" }),
|
|
585
|
-
"more-vertical": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 5v.1M12 12v.1M12 19v.1" }),
|
|
586
|
-
home: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
587
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m3.5 11 8.5-7 8.5 7" }),
|
|
588
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5.5 9.5V20h13V9.5M9.5 20v-6h5v6" })
|
|
589
|
-
] }),
|
|
590
|
-
user: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
591
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "8", r: "4" }),
|
|
592
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4.5 21c.7-4.2 3.2-6.5 7.5-6.5s6.8 2.3 7.5 6.5" })
|
|
593
|
-
] }),
|
|
594
|
-
users: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
595
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "9", cy: "8", r: "3.5" }),
|
|
596
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M2.8 20c.6-3.8 2.7-5.8 6.2-5.8s5.6 2 6.2 5.8" }),
|
|
597
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15 5.2a3.5 3.5 0 0 1 0 6.6M16.2 14.5c2.9.5 4.4 2.3 4.9 5.5" })
|
|
598
|
-
] }),
|
|
599
|
-
settings: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
600
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "3" }),
|
|
601
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M19.4 15a1.7 1.7 0 0 0 .3 1.9l.1.1-2.8 2.8-.1-.1a1.7 1.7 0 0 0-1.9-.3 1.7 1.7 0 0 0-1 1.6v.2h-4V21a1.7 1.7 0 0 0-1-1.6 1.7 1.7 0 0 0-1.9.3l-.1.1L4.2 17l.1-.1a1.7 1.7 0 0 0 .3-1.9A1.7 1.7 0 0 0 3 14H2.8v-4H3a1.7 1.7 0 0 0 1.6-1 1.7 1.7 0 0 0-.3-1.9L4.2 7 7 4.2l.1.1a1.7 1.7 0 0 0 1.9.3A1.7 1.7 0 0 0 10 3v-.2h4V3a1.7 1.7 0 0 0 1 1.6 1.7 1.7 0 0 0 1.9-.3l.1-.1L19.8 7l-.1.1a1.7 1.7 0 0 0-.3 1.9 1.7 1.7 0 0 0 1.6 1h.2v4H21a1.7 1.7 0 0 0-1.6 1Z" })
|
|
602
|
-
] }),
|
|
603
|
-
edit: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
604
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 20h4l11-11a2.8 2.8 0 0 0-4-4L4 16v4Z" }),
|
|
605
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m13.5 6.5 4 4M4 20h16" })
|
|
606
|
-
] }),
|
|
607
|
-
copy: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
608
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "8", y: "8", width: "12", height: "12", rx: "2.5" }),
|
|
609
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16 8V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2" })
|
|
610
|
-
] }),
|
|
611
|
-
trash: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 7h16M9 3h6l1 4H8l1-4ZM6 7l1 14h10l1-14M10 11v6M14 11v6" }) }),
|
|
612
|
-
scissors: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
613
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "6", cy: "7", r: "3" }),
|
|
614
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "6", cy: "17", r: "3" }),
|
|
615
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8.7 8.3 11.3 6.2M8.7 15.7 20 9.5" })
|
|
616
|
-
] }),
|
|
617
|
-
undo: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
618
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8 7-5 5 5 5" }),
|
|
619
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 12h10a7 7 0 0 1 7 7" })
|
|
620
|
-
] }),
|
|
621
|
-
redo: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
622
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m16 7 5 5-5 5" }),
|
|
623
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M21 12H11a7 7 0 0 0-7 7" })
|
|
624
|
-
] }),
|
|
625
|
-
"zoom-in": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
626
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
|
|
627
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m15.8 15.8 5.2 5.2M10.8 7.8v6M7.8 10.8h6" })
|
|
628
|
-
] }),
|
|
629
|
-
"zoom-out": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
630
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
|
|
631
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m15.8 15.8 5.2 5.2M7.8 10.8h6" })
|
|
632
|
-
] }),
|
|
633
|
-
download: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3v12M7 10l5 5 5-5M4 20h16" }) }),
|
|
634
|
-
upload: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 16V4M7 9l5-5 5 5M4 20h16" }) }),
|
|
635
|
-
refresh: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
636
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M20 4v4.686h-4.686" }),
|
|
637
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M20 8.686 17.657 6.343A8 8 0 1 0 20 12" })
|
|
638
|
-
] }),
|
|
639
|
-
loader: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3v3M12 18v3M3 12h3M18 12h3M5.6 5.6l2.1 2.1M16.3 16.3l2.1 2.1M18.4 5.6l-2.1 2.1M7.7 16.3l-2.1 2.1" }),
|
|
640
|
-
calendar: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
641
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "5", width: "18", height: "16", rx: "2.5" }),
|
|
642
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 3v4M16 3v4M3 10h18M7 14h2M11 14h2M15 14h2M7 18h2M11 18h2" })
|
|
643
|
-
] }),
|
|
644
|
-
clock: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
152
|
+
"help-circle": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
645
153
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
646
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
647
|
-
] }),
|
|
648
|
-
mail: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
649
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "5", width: "18", height: "14", rx: "2.5" }),
|
|
650
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m4 7 8 6 8-6" })
|
|
651
|
-
] }),
|
|
652
|
-
phone: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8.2 3.5 5.4 4.8c-1 .5-1.5 1.7-1.1 2.8 2.2 5.9 6.2 9.9 12.1 12.1 1.1.4 2.3-.1 2.8-1.1l1.3-2.8-4.2-2-1.4 2.1c-2.8-1.2-5.6-4-6.8-6.8l2.1-1.4-2-4.2Z" }),
|
|
653
|
-
link: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
654
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9.5 14.5 5-5" }),
|
|
655
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7.5 16.5 6 18a3.5 3.5 0 0 1-5-5l3-3a3.5 3.5 0 0 1 5 0M16.5 7.5 18 6a3.5 3.5 0 0 1 5 5l-3 3a3.5 3.5 0 0 1-5 0" })
|
|
656
|
-
] }),
|
|
657
|
-
"external-link": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
658
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 4h6v6M20 4 11 13" }),
|
|
659
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M19 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h6" })
|
|
660
|
-
] }),
|
|
661
|
-
eye: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
662
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M2.5 12s3.5-6 9.5-6 9.5 6 9.5 6-3.5 6-9.5 6-9.5-6-9.5-6Z" }),
|
|
663
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
154
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9.7 9a2.5 2.5 0 1 1 3.6 2.3c-.9.5-1.3 1.1-1.3 2.1M12 17v.1" })
|
|
664
155
|
] }),
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
668
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 10V7a4 4 0 0 1 8 0v3M12 14v3" })
|
|
156
|
+
save: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
157
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 3h13l3 3v15H4V3Z" }),
|
|
158
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 3v6h8V3M8 21v-7h8v7" })
|
|
669
159
|
] }),
|
|
670
|
-
|
|
671
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "
|
|
672
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
160
|
+
clipboard: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
161
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
|
|
162
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 4.5V3h6v1.5M9 9h6M9 13h6M9 17h4" })
|
|
673
163
|
] }),
|
|
674
|
-
|
|
675
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
676
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
164
|
+
"clipboard-check": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
165
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
|
|
166
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 4.5V3h6v1.5m-6 9 2 2 4-5" })
|
|
677
167
|
] }),
|
|
678
|
-
|
|
679
|
-
heart: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M20.8 5.8a5.5 5.5 0 0 0-7.8 0L12 6.9l-1-1.1a5.5 5.5 0 1 0-7.8 7.8L12 21l8.8-7.4a5.5 5.5 0 0 0 0-7.8Z" }),
|
|
680
|
-
file: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
168
|
+
"file-plus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
681
169
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
682
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14
|
|
170
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 3v5h4M12 11v6M9 14h6" })
|
|
683
171
|
] }),
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
687
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
|
|
688
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m4 17 4.5-4.5 3.5 3 2.5-2.5 5.5 5" })
|
|
689
|
-
] }),
|
|
690
|
-
filter: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 5h18l-7 8v6l-4 2v-8L3 5Z" }),
|
|
691
|
-
"sort-ascending": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
692
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 19V5M3.5 8.5 7 5l3.5 3.5" }),
|
|
693
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M13 7h8M13 12h6M13 17h4" })
|
|
172
|
+
"file-check": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
173
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
174
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 3v5h4m-8 6 2 2 4-5" })
|
|
694
175
|
] }),
|
|
695
|
-
"
|
|
696
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
697
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
176
|
+
"file-warning": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
177
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
178
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 3v5h4M12 11v4m0 3v.1" })
|
|
698
179
|
] }),
|
|
699
|
-
|
|
180
|
+
"file-spreadsheet": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
181
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
182
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 3v5h4M8.5 11h7v7h-7v-7Zm0 3.5h7M12 11v7" })
|
|
183
|
+
] }),
|
|
184
|
+
"align-left": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M4 10h11M4 14h16M4 18h11" }),
|
|
185
|
+
"align-center": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M7 10h10M4 14h16M7 18h10" }),
|
|
186
|
+
"align-right": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M9 10h11M4 14h16M9 18h11" }),
|
|
187
|
+
"align-justify": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 6h16M4 10h16M4 14h16M4 18h16" }),
|
|
188
|
+
bold: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 4h6a4 4 0 0 1 0 8H7V4Zm0 8h7a4 4 0 0 1 0 8H7v-8Z" }),
|
|
189
|
+
italic: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 4h8M6 20h8M14 4 10 20" }),
|
|
190
|
+
underline: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 4v7a5 5 0 0 0 10 0V4M5 21h14" }) }),
|
|
191
|
+
strikethrough: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 12h14M8 8c.3-2.5 2-4 4.5-4 2.2 0 3.7 1 4.5 2.5M8 16c.8 2.5 2.5 4 5 4 2.2 0 3.8-1 4.5-2.5" }) }),
|
|
192
|
+
"list-ordered": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
193
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
|
|
194
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 5h1v3M4 11h2l-2 3h2M4 17h2l-2 3h2" })
|
|
195
|
+
] }),
|
|
196
|
+
"list-unordered": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
197
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
|
|
198
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "4.5", cy: "6", r: ".5" }),
|
|
199
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "4.5", cy: "12", r: ".5" }),
|
|
200
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "4.5", cy: "18", r: ".5" })
|
|
201
|
+
] }),
|
|
202
|
+
eraser: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
203
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m4 15 8-10 8 7-7 8H7l-3-3v-2Z" }),
|
|
204
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 9 8 7M13 20h8" })
|
|
205
|
+
] }),
|
|
206
|
+
highlighter: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
207
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m7 14 7-10 5 4-8 9-4-3Z" }),
|
|
208
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m5 17 6 3H3l2-3ZM15 14l4 3" })
|
|
209
|
+
] }),
|
|
210
|
+
table: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
211
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
212
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 9h18M3 14h18M9 4v16M15 4v16" })
|
|
213
|
+
] }),
|
|
214
|
+
columns: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
215
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
216
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 4v16" })
|
|
217
|
+
] }),
|
|
218
|
+
rows: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
219
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
220
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 9h18M3 15h18" })
|
|
221
|
+
] }),
|
|
222
|
+
"bar-chart": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 21V10h4v11M10 21V4h4v17M16 21v-8h4v8M3 21h18" }) }),
|
|
223
|
+
"line-chart": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
224
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9" }),
|
|
225
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "9", cy: "11", r: "1" }),
|
|
226
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "13", cy: "14", r: "1" })
|
|
227
|
+
] }),
|
|
228
|
+
"pie-chart": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
229
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M11 3a9 9 0 1 0 9 9h-9V3Z" }),
|
|
230
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 3.5A8.5 8.5 0 0 1 20.5 10H14V3.5Z" })
|
|
231
|
+
] }),
|
|
232
|
+
"area-chart": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9v12H4Z" }) }),
|
|
233
|
+
activity: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 12h4l2-6 4 13 3-7h5" }),
|
|
234
|
+
"trending-up": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
235
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m4 17 6-6 4 4 6-7" }),
|
|
236
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15 8h5v5" })
|
|
237
|
+
] }),
|
|
238
|
+
"trending-down": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
239
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m4 7 6 6 4-4 6 7" }),
|
|
240
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15 16h5v-5" })
|
|
241
|
+
] }),
|
|
242
|
+
database: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
243
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("ellipse", { cx: "12", cy: "5", rx: "8", ry: "3" }),
|
|
244
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 5v7c0 1.7 3.6 3 8 3s8-1.3 8-3V5M4 12v7c0 1.7 3.6 3 8 3s8-1.3 8-3v-7" })
|
|
245
|
+
] }),
|
|
246
|
+
cloud: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 19h11a4 4 0 0 0 .5-8A7 7 0 0 0 5.2 9.5 4.8 4.8 0 0 0 7 19Z" }),
|
|
247
|
+
"cloud-download": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
248
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 18H5a4 4 0 0 1 .2-8 7 7 0 0 1 13.3 1A4 4 0 0 1 19 19h-2" }),
|
|
249
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 11v10m-4-4 4 4 4-4" })
|
|
250
|
+
] }),
|
|
251
|
+
"cloud-upload": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
252
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 18H5a4 4 0 0 1 .2-8 7 7 0 0 1 13.3 1A4 4 0 0 1 19 19h-2" }),
|
|
253
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 21V11m-4 4 4-4 4 4" })
|
|
254
|
+
] }),
|
|
255
|
+
server: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
256
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "4", width: "18", height: "7", rx: "2" }),
|
|
257
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "13", width: "18", height: "7", rx: "2" }),
|
|
258
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 7.5h.1M7 16.5h.1M11 7.5h6M11 16.5h6" })
|
|
259
|
+
] }),
|
|
260
|
+
desktop: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
261
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "18", height: "14", rx: "2" }),
|
|
262
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 21h8M12 17v4" })
|
|
263
|
+
] }),
|
|
264
|
+
laptop: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
265
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 5h14v11H5V5Z" }),
|
|
266
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m3 19 2-3h14l2 3H3Z" })
|
|
267
|
+
] }),
|
|
268
|
+
mobile: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
269
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "7", y: "2", width: "10", height: "20", rx: "2.5" }),
|
|
270
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 5h4M12 19v.1" })
|
|
271
|
+
] }),
|
|
272
|
+
tablet: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
273
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
|
|
274
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 5h4M12 19v.1" })
|
|
275
|
+
] }),
|
|
276
|
+
printer: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
277
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 9V3h10v6M6 18H4V9h16v9h-2" }),
|
|
278
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 14h10v7H7v-7ZM17 11h.1" })
|
|
279
|
+
] }),
|
|
280
|
+
camera: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
281
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 7h4l2-3h6l2 3h4v13H3V7Z" }),
|
|
282
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "13", r: "4" })
|
|
283
|
+
] }),
|
|
284
|
+
video: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
285
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "5", width: "13", height: "14", rx: "2" }),
|
|
286
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m16 10 5-3v10l-5-3v-4Z" })
|
|
287
|
+
] }),
|
|
288
|
+
microphone: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
289
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "9", y: "3", width: "6", height: "12", rx: "3" }),
|
|
290
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 11a7 7 0 0 0 14 0M12 18v3M8 21h8" })
|
|
291
|
+
] }),
|
|
292
|
+
"volume-up": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
293
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4Z" }),
|
|
294
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16 9a4 4 0 0 1 0 6M18.5 6.5a8 8 0 0 1 0 11" })
|
|
295
|
+
] }),
|
|
296
|
+
"volume-off": /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4ZM17 9l5 6m0-6-5 6" }) }),
|
|
297
|
+
"speaker-wave": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
298
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
|
|
299
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15.2 9.2a4 4 0 0 1 0 5.6" })
|
|
300
|
+
] }),
|
|
301
|
+
"speaker-muted": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
302
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
|
|
303
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m15.5 9.5 5 5m0-5-5 5" })
|
|
304
|
+
] }),
|
|
305
|
+
wifi: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 9a14 14 0 0 1 18 0M6 13a9 9 0 0 1 12 0M9.5 17a4 4 0 0 1 5 0M12 21v.1" }) }),
|
|
306
|
+
power: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
307
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3v9" }),
|
|
308
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 5.5a8 8 0 1 0 10 0" })
|
|
309
|
+
] }),
|
|
310
|
+
key: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
311
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "8", cy: "15", r: "4" }),
|
|
312
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m11 12 8-8m-3 3 3 3m-6 0 3 3" })
|
|
313
|
+
] }),
|
|
314
|
+
shield: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
|
|
315
|
+
"shield-check": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
316
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
|
|
317
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8 12 2.5 2.5L16 9" })
|
|
318
|
+
] }),
|
|
319
|
+
bug: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 9h8v7a4 4 0 0 1-8 0V9ZM9 9a3 3 0 0 1 6 0M5 11h3M16 11h3M5 16h3M16 16h3M7 5l2 2M17 5l-2 2" }) }),
|
|
320
|
+
bulb: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
321
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 15a7 7 0 1 1 8 0c-1.2.8-1.5 1.8-1.5 3h-5c0-1.2-.3-2.2-1.5-3Z" }),
|
|
322
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9.5 21h5" })
|
|
323
|
+
] }),
|
|
324
|
+
rocket: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
325
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 16c-2-1-4-1-5 0 0-3 1-5 4-6M14 6c3-3 6-3 7-3 0 1 0 4-3 7l-6 6-4-4 6-6Z" }),
|
|
326
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 14c0 3-2 6-5 7 0-2 0-4-1-5M5 19l-2 2" })
|
|
327
|
+
] }),
|
|
328
|
+
target: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
700
329
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
701
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
702
|
-
|
|
703
|
-
|
|
330
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "5" }),
|
|
331
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "1" })
|
|
332
|
+
] }),
|
|
333
|
+
trophy: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
334
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 4h8v5a4 4 0 0 1-8 0V4ZM9 20h6M12 13v7" }),
|
|
335
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 6H4v2a4 4 0 0 0 5 4M16 6h4v2a4 4 0 0 1-5 4" })
|
|
336
|
+
] }),
|
|
337
|
+
"shopping-cart": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
338
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 4h2l2 11h10l3-8H6" }),
|
|
339
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "9", cy: "20", r: "1" }),
|
|
340
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "17", cy: "20", r: "1" })
|
|
341
|
+
] }),
|
|
342
|
+
"shopping-bag": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
343
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 8h14l1 13H4L5 8Z" }),
|
|
344
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 9V6a3 3 0 0 1 6 0v3" })
|
|
345
|
+
] }),
|
|
346
|
+
shop: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
347
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 10v11h16V10M3 4h18l-2 6H5L3 4Z" }),
|
|
348
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 21v-6h6v6" })
|
|
349
|
+
] }),
|
|
350
|
+
wallet: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
351
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "5", width: "18", height: "15", rx: "2.5" }),
|
|
352
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 9h18M15 13h6v4h-6a2 2 0 0 1 0-4Z" })
|
|
353
|
+
] }),
|
|
354
|
+
bank: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m3 9 9-6 9 6M5 10h14M6 10v8M10 10v8M14 10v8M18 10v8M3 21h18M4 18h16" }) }),
|
|
355
|
+
calculator: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
356
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
|
|
357
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 5h8v4H8V5ZM8 13h.1M12 13h.1M16 13h.1M8 17h.1M12 17h.1M16 17h.1" })
|
|
358
|
+
] }),
|
|
359
|
+
tag: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
360
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 12V4h8l10 10-7 7L3 12Z" }),
|
|
361
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "7.5", cy: "8.5", r: "1" })
|
|
362
|
+
] }),
|
|
363
|
+
tags: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
364
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 12V4h7l8 8-6 6-9-6Z" }),
|
|
365
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "10", cy: "8", r: "1" }),
|
|
366
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m3 8 1 9 7 4 2-2" })
|
|
367
|
+
] }),
|
|
368
|
+
message: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 4h16v13H9l-5 4V4Z" }),
|
|
369
|
+
comments: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
370
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 4h13v10H8l-5 4V4Z" }),
|
|
371
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 17h6l5 4V8h-2" })
|
|
372
|
+
] }),
|
|
373
|
+
send: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m3 11 18-8-8 18-2-8-8-2Zm8 2 10-10" }),
|
|
374
|
+
share: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
375
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "5", r: "3" }),
|
|
376
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "6", cy: "12", r: "3" }),
|
|
377
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "19", r: "3" }),
|
|
378
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8.5 10.5 7-4M8.5 13.5l7 4" })
|
|
379
|
+
] }),
|
|
380
|
+
paperclip: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8 12 7-7a4 4 0 0 1 6 6l-9 9a6 6 0 0 1-9-9l8-8" }),
|
|
381
|
+
location: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
382
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 22s7-6.2 7-13a7 7 0 1 0-14 0c0 6.8 7 13 7 13Z" }),
|
|
383
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "9", r: "2.5" })
|
|
384
|
+
] }),
|
|
385
|
+
compass: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
704
386
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
705
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
706
|
-
] }),
|
|
707
|
-
|
|
708
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4
|
|
709
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
714
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
715
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
716
|
-
] }),
|
|
717
|
-
|
|
718
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("
|
|
719
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12
|
|
387
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m15.5 8.5-2 5-5 2 2-5 5-2Z" })
|
|
388
|
+
] }),
|
|
389
|
+
car: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
390
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 15V9l2-5h12l2 5v6M3 10h18M6 15h12" }),
|
|
391
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "7", cy: "18", r: "2" }),
|
|
392
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "17", cy: "18", r: "2" })
|
|
393
|
+
] }),
|
|
394
|
+
truck: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
395
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 5h11v12H3V5ZM14 9h4l3 4v4h-7V9Z" }),
|
|
396
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "7", cy: "19", r: "2" }),
|
|
397
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "19", r: "2" })
|
|
398
|
+
] }),
|
|
399
|
+
gift: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
400
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "9", width: "18", height: "12", rx: "2" }),
|
|
401
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 9v12M3 13h18M12 9H8a3 3 0 1 1 4-3v3Zm0 0h4a3 3 0 1 0-4-3v3Z" })
|
|
402
|
+
] }),
|
|
403
|
+
coffee: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
404
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 8h13v6a6 6 0 0 1-6 6H10a6 6 0 0 1-6-6V8ZM17 10h2a3 3 0 0 1 0 6h-3" }),
|
|
405
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 4v1M12 3v2" })
|
|
406
|
+
] }),
|
|
407
|
+
experiment: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
408
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 3h6M10 3v6l-6 10a2 2 0 0 0 2 3h12a2 2 0 0 0 2-3L14 9V3" }),
|
|
409
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 16h10" })
|
|
410
|
+
] }),
|
|
411
|
+
tool: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 6a5 5 0 0 0-6-3l3 3-3 3-3-3a5 5 0 0 0 6 6l7 7a2 2 0 0 0 3-3l-7-7Z" }) }),
|
|
412
|
+
appstore: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
413
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "2" }),
|
|
414
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "2" }),
|
|
415
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "2" }),
|
|
416
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "14", y: "14", width: "7", height: "7", rx: "2" })
|
|
417
|
+
] }),
|
|
418
|
+
puzzle: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_jsx_runtime2.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 3h4.2a2.8 2.8 0 1 0 5.6 0H21v6h-2.2a2.8 2.8 0 1 0 0 5.6H21V21h-6.4v-2.2a2.8 2.8 0 1 0-5.6 0V21H3v-6.4h2.2a2.8 2.8 0 1 0 0-5.6H3V3h6Z" }) }),
|
|
419
|
+
partition: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
420
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 5v5M6 14v-2h12v2M6 18v3M12 18v3M18 18v3" }),
|
|
421
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "3", r: "2" }),
|
|
422
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "6", cy: "16", r: "2" }),
|
|
423
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "16", r: "2" }),
|
|
424
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "16", r: "2" })
|
|
425
|
+
] }),
|
|
426
|
+
branches: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
427
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "6", cy: "5", r: "2" }),
|
|
428
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "7", r: "2" }),
|
|
429
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "6", cy: "19", r: "2" }),
|
|
430
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 7v10M8 10c6 0 4-3 8-3M8 14c6 0 4 3 8 3" })
|
|
431
|
+
] }),
|
|
432
|
+
scan: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 3H3v5M16 3h5v5M8 21H3v-5M16 21h5v-5M7 12h10" }),
|
|
433
|
+
"qr-code": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
434
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "1" }),
|
|
435
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "1" }),
|
|
436
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "1" }),
|
|
437
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 14h3v3h-3v-3ZM18 18h3v3h-3v-3ZM14 20h1M20 14h1" })
|
|
438
|
+
] }),
|
|
439
|
+
barcode: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 5v14M7 5v14M11 5v14M14 5v14M16 5v14M20 5v14" }),
|
|
440
|
+
"user-plus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
441
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
|
|
442
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 21c.7-4.3 3-6.5 7-6.5 2 0 3.6.6 4.7 1.7M19 14v7M15.5 17.5h7" })
|
|
443
|
+
] }),
|
|
444
|
+
"user-minus": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
445
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
|
|
446
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 21c.7-4.3 3-6.5 7-6.5 2 0 3.6.6 4.7 1.7M15.5 17.5h7" })
|
|
447
|
+
] }),
|
|
448
|
+
smile: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
449
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
450
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 10h.1M16 10h.1M8 15c1 1.4 2.3 2 4 2s3-.6 4-2" })
|
|
720
451
|
] }),
|
|
721
|
-
|
|
722
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "
|
|
723
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
452
|
+
meh: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
453
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
454
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 10h.1M16 10h.1M8 16h8" })
|
|
724
455
|
] }),
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
456
|
+
frown: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
457
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
458
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 10h.1M16 10h.1M8 17c1-1.4 2.3-2 4-2s3 .6 4 2" })
|
|
459
|
+
] }),
|
|
460
|
+
"game-cultivator": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
461
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7.2 7.5h9.6M9 5.2 12 2l3 3.2" }),
|
|
462
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "8.8", r: "3.6" }),
|
|
463
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7.5 21c.2-4.9 1.8-7.3 4.5-7.3s4.3 2.4 4.5 7.3M9.4 15.2 7 18m7.6-2.8L17 18M10 21l2-4 2 4" })
|
|
464
|
+
] }),
|
|
465
|
+
"game-swordsman": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
466
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9.2 5.2h5.6M12 2.5v2.7" }),
|
|
467
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "8.8", r: "3.4" }),
|
|
468
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7.2 21c.3-5 1.9-7.4 4.8-7.4s4.5 2.4 4.8 7.4M9.2 14.8 7 18.2m7.8-3.4 2.2 3.4M9.5 21l2.5-4 2.5 4" }),
|
|
469
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m17.7 5.1 2.2-1-.9 2.3-5.2 5.2M16.2 7.8l1.8 1.8" })
|
|
470
|
+
] }),
|
|
471
|
+
"game-spirit-wolf": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
472
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m5.2 8.2.7-4 3.3 2.2A9 9 0 0 1 12 6c1 0 1.9.1 2.8.4l3.3-2.2.7 4A7.7 7.7 0 0 1 20 13c0 4.3-3.5 7.7-8 7.7S4 17.3 4 13c0-1.8.4-3.4 1.2-4.8Z" }),
|
|
473
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8.3 12h.1m7.2 0h.1M9 16c1.8 1.3 4.2 1.3 6 0m-3-1.5v1M7 18l-2.2 2M17 18l2.2 2" })
|
|
474
|
+
] }),
|
|
475
|
+
"game-gem": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
476
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m4 8 3-4h10l3 4-8 13L4 8Z" }),
|
|
477
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 8h16M8 4l-2 4 6 13 6-13-2-4M6 8h12" })
|
|
478
|
+
] }),
|
|
479
|
+
"game-ingot": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
480
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 9.5c2.2 1 4.1 1.5 5.8 1.6L12 6l2.2 5.1c1.7-.1 3.6-.6 5.8-1.6-.3 5.1-2.9 8.4-8 10-5.1-1.6-7.7-4.9-8-10Z" }),
|
|
481
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4.6 10.1 3 6.5c2.3 1.2 4.2 1.6 5.8 1.2M19.4 10.1 21 6.5c-2.3 1.2-4.2 1.6-5.8 1.2M7 16.3c3.3 1 6.7 1 10 0" })
|
|
482
|
+
] }),
|
|
483
|
+
"game-sword": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
484
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m14.5 4.5 5-1-1 5L9 18l-3 1 1-3 9.5-9.5M5 19l-1 1" }),
|
|
485
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m12.5 7.5 4 4M7.5 14.5l2 2" })
|
|
486
|
+
] }),
|
|
487
|
+
"game-robe": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
488
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8.5 4 3.5 2 3.5-2 4 4-2.5 3-1.2-1V21H8.2V10L7 11 4.5 8l4-4Z" }),
|
|
489
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 4.5 12 9l3-4.5M12 9v12" })
|
|
490
|
+
] }),
|
|
491
|
+
"game-pants": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
492
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 3h10l1 18h-5l-1-10-1 10H6L7 3Z" }),
|
|
493
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 7h10M12 3v8" })
|
|
494
|
+
] }),
|
|
495
|
+
"game-pendant": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
496
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 4c1.7 4.4 4 6.6 7 6.6S17.3 8.4 19 4" }),
|
|
497
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 10.6c-2.7 1.8-4 3.8-4 6a4 4 0 0 0 8 0c0-2.2-1.3-4.2-4-6Z" }),
|
|
498
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "16.5", r: "1.5" })
|
|
499
|
+
] }),
|
|
500
|
+
"game-necklace": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
501
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 4c.7 6.3 3 9.5 7 9.5S18.3 10.3 19 4" }),
|
|
502
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m12 13.5 3 2.4-1.2 4.1h-3.6L9 15.9l3-2.4Z" }),
|
|
503
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 7h.1m10 0h.1M9 10h.1m6 0h.1" })
|
|
504
|
+
] }),
|
|
505
|
+
"game-pill": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
506
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6.2 17.8a5.7 5.7 0 0 1 0-8.1l3.5-3.5a5.7 5.7 0 1 1 8.1 8.1l-3.5 3.5a5.7 5.7 0 0 1-8.1 0Z" }),
|
|
507
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8 8 8 8" }),
|
|
508
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6.3 12.2c1.3.2 2.5.7 3.5 1.7s1.6 2.2 1.8 3.5" })
|
|
509
|
+
] }),
|
|
510
|
+
"game-potion": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
511
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 3h6M10 3v5l-5 7.5A3.5 3.5 0 0 0 8 21h8a3.5 3.5 0 0 0 3-5.5L14 8V3" }),
|
|
512
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 15h10M9.5 12h5" })
|
|
513
|
+
] }),
|
|
514
|
+
"game-elixir-jar": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
515
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 3h8l-1 4c2.6 1.2 4 3.5 4 6.8V21H5v-7.2C5 10.5 6.4 8.2 9 7L8 3Z" }),
|
|
516
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8.5 7h7M5 14h14M9 17h6" })
|
|
517
|
+
] }),
|
|
518
|
+
"game-flame": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
519
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M13.8 2.5c.6 3.6-2.1 4.8-2.1 7.2 0 1.1.7 1.9 1.7 1.9 1.8 0 2.4-2.1 2-4.1 2.6 2 4.1 4.6 4.1 7.4A7.5 7.5 0 0 1 4.5 15c0-3.5 1.8-6.5 5.2-9-.2 2.3.8 3.4 1.8 3.7-.4-2.6.3-5.1 2.3-7.2Z" }),
|
|
520
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 21c-2 0-3.3-1.3-3.3-3.2 0-1.5.9-2.8 2.6-4.2 0 1.7.8 2.5 1.7 2.5 1 0 1.7-.9 1.5-2.3 1.2 1.2 1.8 2.5 1.8 4A4 4 0 0 1 12 21Z" })
|
|
521
|
+
] }),
|
|
522
|
+
"game-soul-elixir": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
523
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "4.2" }),
|
|
524
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 2.5v3M12 18.5v3M2.5 12h3M18.5 12h3M5.3 5.3l2.2 2.2m9 9 2.2 2.2m0-13.4-2.2 2.2m-9 9-2.2 2.2" }),
|
|
525
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m10 12 1.4 1.4L14.5 10" })
|
|
526
|
+
] }),
|
|
527
|
+
"game-herb": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
528
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 21V9" }),
|
|
529
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 13c-5.5.1-8-2.6-8-7.5 5-.2 7.8 2.1 8 7.5Zm0 4c5.5.1 8-2.6 8-7.5-5-.2-7.8 2.1-8 7.5Z" })
|
|
530
|
+
] }),
|
|
531
|
+
"game-meditate": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
532
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "5.5", r: "2.5" }),
|
|
533
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8.5 11c1-1.5 2.2-2.2 3.5-2.2s2.5.7 3.5 2.2l2.8 4M5.7 15l2.8-4M4 19c2.5-2.2 5.2-2.5 8-1 2.8-1.5 5.5-1.2 8 1M7 21h10" }),
|
|
534
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9.5 14.5 2.5 3.4 2.5-3.4" })
|
|
535
|
+
] }),
|
|
536
|
+
"game-backpack": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
537
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 8V5.5a4 4 0 0 1 8 0V8M6 8h12l2 13H4L6 8Z" }),
|
|
538
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8.5 13h7v5h-7v-5ZM9 5.5h6" })
|
|
539
|
+
] }),
|
|
540
|
+
"game-qi": /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
|
|
541
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
542
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 8.5c2.5-2.8 7-2.2 8.7.2 1.7 2.4.9 5.6-1.6 6.8-2.4 1.2-5.5-.1-5.8-2.5-.2-1.8 1.4-3.1 3.2-2.8 1.8.3 2.6 2.2 1.7 3.5" })
|
|
543
|
+
] })
|
|
544
|
+
};
|
|
545
|
+
|
|
546
|
+
// src/components/Icon.tsx
|
|
547
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
548
|
+
var coreIconPaths = {
|
|
549
|
+
search: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
550
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
|
|
551
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15.8 15.8 5.2 5.2" })
|
|
552
|
+
] }),
|
|
553
|
+
plus: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 4v16M4 12h16" }),
|
|
554
|
+
minus: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 12h16" }),
|
|
555
|
+
close: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 5 14 14M19 5 5 19" }),
|
|
556
|
+
check: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4 12.5 5.2 5L20 6.5" }),
|
|
557
|
+
info: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
558
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
559
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 11v6M12 7.2v.1" })
|
|
560
|
+
] }),
|
|
561
|
+
question: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
562
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
563
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9.8 9a2.4 2.4 0 1 1 3.5 2.2c-.9.5-1.3 1.1-1.3 2.1M12 16.8v.1" })
|
|
564
|
+
] }),
|
|
565
|
+
warning: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
566
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10.3 4.1 2.6 18a2 2 0 0 0 1.8 3h15.2a2 2 0 0 0 1.8-3L13.7 4.1a2 2 0 0 0-3.4 0Z" }),
|
|
567
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 9v4M12 17v.1" })
|
|
568
|
+
] }),
|
|
569
|
+
"circle-check": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
570
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
571
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8 12 2.7 2.7L16.5 9" })
|
|
572
|
+
] }),
|
|
573
|
+
"circle-close": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
574
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
575
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9 9 6 6M15 9l-6 6" })
|
|
576
|
+
] }),
|
|
577
|
+
"circle-plus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
578
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
579
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 8v8M8 12h8" })
|
|
580
|
+
] }),
|
|
581
|
+
"circle-minus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
582
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
583
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 12h8" })
|
|
584
|
+
] }),
|
|
585
|
+
"chevron-left": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15.5 5-7 7 7 7" }),
|
|
586
|
+
"chevron-right": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8.5 5 7 7-7 7" }),
|
|
587
|
+
"chevron-up": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 15.5 7-7 7 7" }),
|
|
588
|
+
"chevron-down": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 8.5 7 7 7-7" }),
|
|
589
|
+
"double-left": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
590
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m12 5-7 7 7 7" }),
|
|
591
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m19 5-7 7 7 7" })
|
|
592
|
+
] }),
|
|
593
|
+
"double-right": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
594
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 5 7 7-7 7" }),
|
|
595
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m12 5 7 7-7 7" })
|
|
596
|
+
] }),
|
|
597
|
+
"arrow-left": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
598
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m10 5-7 7 7 7" }),
|
|
599
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12h18" })
|
|
600
|
+
] }),
|
|
601
|
+
"arrow-right": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
602
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m14 5 7 7-7 7" }),
|
|
603
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12h18" })
|
|
604
|
+
] }),
|
|
605
|
+
"arrow-up": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
606
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 10 7-7 7 7" }),
|
|
607
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3v18" })
|
|
608
|
+
] }),
|
|
609
|
+
"arrow-down": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
610
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 14 7 7 7-7" }),
|
|
611
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3v18" })
|
|
612
|
+
] }),
|
|
613
|
+
menu: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 6h16M4 12h16M4 18h16" }),
|
|
614
|
+
"more-horizontal": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5 12h.1M12 12h.1M19 12h.1" }),
|
|
615
|
+
"more-vertical": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 5v.1M12 12v.1M12 19v.1" }),
|
|
616
|
+
home: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
617
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m3.5 11 8.5-7 8.5 7" }),
|
|
618
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5.5 9.5V20h13V9.5M9.5 20v-6h5v6" })
|
|
619
|
+
] }),
|
|
620
|
+
user: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
621
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "8", r: "4" }),
|
|
622
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4.5 21c.7-4.2 3.2-6.5 7.5-6.5s6.8 2.3 7.5 6.5" })
|
|
623
|
+
] }),
|
|
624
|
+
users: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
625
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "9", cy: "8", r: "3.5" }),
|
|
626
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M2.8 20c.6-3.8 2.7-5.8 6.2-5.8s5.6 2 6.2 5.8" }),
|
|
627
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15 5.2a3.5 3.5 0 0 1 0 6.6M16.2 14.5c2.9.5 4.4 2.3 4.9 5.5" })
|
|
628
|
+
] }),
|
|
629
|
+
settings: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
630
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "3.5" }),
|
|
631
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 4.8 10 2 14 2 14 4.8 15.68 5.49 17.66 3.51 20.49 6.34 18.51 8.32 19.2 10 22 10 22 14 19.2 14 18.51 15.68 20.49 17.66 17.66 20.49 15.68 18.51 14 19.2 14 22 10 22 10 19.2 8.32 18.51 6.34 20.49 3.51 17.66 5.49 15.68 4.8 14 2 14 2 10 4.8 10 5.49 8.32 3.51 6.34 6.34 3.51 8.32 5.49Z" })
|
|
632
|
+
] }),
|
|
633
|
+
edit: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
634
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 20h4l11-11a2.8 2.8 0 0 0-4-4L4 16v4Z" }),
|
|
635
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m13.5 6.5 4 4M4 20h16" })
|
|
636
|
+
] }),
|
|
637
|
+
copy: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
638
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "8", y: "8", width: "12", height: "12", rx: "2.5" }),
|
|
639
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M16 8V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2" })
|
|
640
|
+
] }),
|
|
641
|
+
trash: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 7h16M9 3h6l1 4H8l1-4ZM6 7l1 14h10l1-14M10 11v6M14 11v6" }) }),
|
|
642
|
+
scissors: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
643
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "6", cy: "7", r: "3" }),
|
|
644
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "6", cy: "17", r: "3" }),
|
|
645
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8.7 8.3 11.3 6.2M8.7 15.7 20 9.5" })
|
|
646
|
+
] }),
|
|
647
|
+
undo: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
648
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8 7-5 5 5 5" }),
|
|
649
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12h10a7 7 0 0 1 7 7" })
|
|
650
|
+
] }),
|
|
651
|
+
redo: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
652
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m16 7 5 5-5 5" }),
|
|
653
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 12H11a7 7 0 0 0-7 7" })
|
|
654
|
+
] }),
|
|
655
|
+
"zoom-in": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
656
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
|
|
657
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15.8 15.8 5.2 5.2M10.8 7.8v6M7.8 10.8h6" })
|
|
658
|
+
] }),
|
|
659
|
+
"zoom-out": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
660
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
|
|
661
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15.8 15.8 5.2 5.2M7.8 10.8h6" })
|
|
662
|
+
] }),
|
|
663
|
+
download: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3v12M7 10l5 5 5-5M4 20h16" }) }),
|
|
664
|
+
upload: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 16V4M7 9l5-5 5 5M4 20h16" }) }),
|
|
665
|
+
refresh: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
666
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 4v4.686h-4.686" }),
|
|
667
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 8.686 17.657 6.343A8 8 0 1 0 20 12" })
|
|
668
|
+
] }),
|
|
669
|
+
loader: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3v3M12 18v3M3 12h3M18 12h3M5.6 5.6l2.1 2.1M16.3 16.3l2.1 2.1M18.4 5.6l-2.1 2.1M7.7 16.3l-2.1 2.1" }),
|
|
670
|
+
calendar: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
671
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "5", width: "18", height: "16", rx: "2.5" }),
|
|
672
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 3v4M16 3v4M3 10h18M7 14h2M11 14h2M15 14h2M7 18h2M11 18h2" })
|
|
673
|
+
] }),
|
|
674
|
+
clock: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
675
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
676
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 7v5l3.5 2" })
|
|
677
|
+
] }),
|
|
678
|
+
mail: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
679
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "5", width: "18", height: "14", rx: "2.5" }),
|
|
680
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4 7 8 6 8-6" })
|
|
681
|
+
] }),
|
|
682
|
+
phone: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8.2 3.5 5.4 4.8c-1 .5-1.5 1.7-1.1 2.8 2.2 5.9 6.2 9.9 12.1 12.1 1.1.4 2.3-.1 2.8-1.1l1.3-2.8-4.2-2-1.4 2.1c-2.8-1.2-5.6-4-6.8-6.8l2.1-1.4-2-4.2Z" }),
|
|
683
|
+
link: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
684
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9.5 14.5 5-5" }),
|
|
685
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7.5 16.5 6 18a3.5 3.5 0 0 1-5-5l3-3a3.5 3.5 0 0 1 5 0M16.5 7.5 18 6a3.5 3.5 0 0 1 5 5l-3 3a3.5 3.5 0 0 1-5 0" })
|
|
686
|
+
] }),
|
|
687
|
+
"external-link": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
688
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 4h6v6M20 4 11 13" }),
|
|
689
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M19 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h6" })
|
|
690
|
+
] }),
|
|
691
|
+
eye: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
692
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M2.5 12s3.5-6 9.5-6 9.5 6 9.5 6-3.5 6-9.5 6-9.5-6-9.5-6Z" }),
|
|
693
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
694
|
+
] }),
|
|
695
|
+
"eye-off": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m3 3 18 18M10.6 6.1A10 10 0 0 1 12 6c6 0 9.5 6 9.5 6a14.5 14.5 0 0 1-2.2 3M6.4 6.4C3.9 8.2 2.5 12 2.5 12s3.5 6 9.5 6a9.7 9.7 0 0 0 3-.5M9.9 9.9a3 3 0 0 0 4.2 4.2" }) }),
|
|
696
|
+
lock: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
697
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "4", y: "10", width: "16", height: "11", rx: "2.5" }),
|
|
698
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 10V7a4 4 0 0 1 8 0v3M12 14v3" })
|
|
699
|
+
] }),
|
|
700
|
+
unlock: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
701
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "4", y: "10", width: "16", height: "11", rx: "2.5" }),
|
|
702
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 10V7a4 4 0 0 1 7.5-2M12 14v3" })
|
|
703
|
+
] }),
|
|
704
|
+
bell: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
705
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M18 9a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9Z" }),
|
|
706
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 21h4" })
|
|
707
|
+
] }),
|
|
708
|
+
star: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m12 3 2.8 5.7 6.2.9-4.5 4.4 1.1 6.2-5.6-3-5.6 3 1.1-6.2L3 9.6l6.2-.9L12 3Z" }),
|
|
709
|
+
heart: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20.8 5.8a5.5 5.5 0 0 0-7.8 0L12 6.9l-1-1.1a5.5 5.5 0 1 0-7.8 7.8L12 21l8.8-7.4a5.5 5.5 0 0 0 0-7.8Z" }),
|
|
710
|
+
file: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
711
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
|
|
712
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 3v5h4" })
|
|
713
|
+
] }),
|
|
714
|
+
folder: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 6h7l2 2h9v11H3V6Z" }),
|
|
715
|
+
image: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
716
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2.5" }),
|
|
717
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
|
|
718
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4 17 4.5-4.5 3.5 3 2.5-2.5 5.5 5" })
|
|
719
|
+
] }),
|
|
720
|
+
filter: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 5h18l-7 8v6l-4 2v-8L3 5Z" }),
|
|
721
|
+
"sort-ascending": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
722
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 19V5M3.5 8.5 7 5l3.5 3.5" }),
|
|
723
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M13 7h8M13 12h6M13 17h4" })
|
|
724
|
+
] }),
|
|
725
|
+
"sort-descending": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
726
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 5v14M3.5 15.5 7 19l3.5-3.5" }),
|
|
727
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M13 7h4M13 12h6M13 17h8" })
|
|
728
|
+
] }),
|
|
729
|
+
play: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
730
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
731
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m10 8 6 4-6 4V8Z" })
|
|
732
|
+
] }),
|
|
733
|
+
pause: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
734
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
|
|
735
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9.5 9v6M14.5 9v6" })
|
|
736
|
+
] }),
|
|
737
|
+
book: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
738
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 5.5A2.5 2.5 0 0 1 6.5 3H11v17H6.5A2.5 2.5 0 0 0 4 22V5.5Z" }),
|
|
739
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 5.5A2.5 2.5 0 0 0 17.5 3H13v17h4.5A2.5 2.5 0 0 1 20 22V5.5Z" })
|
|
740
|
+
] }),
|
|
741
|
+
component: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
742
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "4", y: "4", width: "6", height: "6", rx: "1.5" }),
|
|
743
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "14", y: "4", width: "6", height: "6", rx: "1.5" }),
|
|
744
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "4", y: "14", width: "6", height: "6", rx: "1.5" }),
|
|
745
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "14", y: "14", width: "6", height: "6", rx: "1.5" })
|
|
746
|
+
] }),
|
|
747
|
+
token: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
748
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
|
|
749
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 2.5v3M12 18.5v3M2.5 12h3M18.5 12h3M5.3 5.3l2.1 2.1M16.6 16.6l2.1 2.1M18.7 5.3l-2.1 2.1M7.4 16.6l-2.1 2.1" })
|
|
750
|
+
] }),
|
|
751
|
+
sun: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
752
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "3.6" }),
|
|
753
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 2.5v2M12 19.5v2M2.5 12h2M19.5 12h2M5.3 5.3l1.4 1.4M17.3 17.3l1.4 1.4M18.7 5.3l-1.4 1.4M6.7 17.3l-1.4 1.4" })
|
|
754
|
+
] }),
|
|
755
|
+
moon: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 15.2A8 8 0 0 1 8.8 4 8.5 8.5 0 1 0 20 15.2Z" }),
|
|
756
|
+
code: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9 18-6-6 6-6M15 6l6 6-6 6" }),
|
|
757
|
+
github: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 19c-4 1.2-4-2-5-2.5M14 22v-3.1c0-.9.3-1.5.8-1.9 2.7-.3 5.5-1.3 5.5-6A4.7 4.7 0 0 0 19 7.7 4.4 4.4 0 0 0 18.9 4S17.8 3.7 15 5.3a11.7 11.7 0 0 0-6 0C6.2 3.7 5.1 4 5.1 4A4.4 4.4 0 0 0 5 7.7 4.7 4.7 0 0 0 3.7 11c0 4.7 2.8 5.7 5.5 6 .5.4.8 1 .8 1.9V22" })
|
|
728
758
|
};
|
|
729
759
|
var iconPaths = { ...coreIconPaths, ...extendedIconPaths };
|
|
730
760
|
var ICON_NAMES = Object.freeze(Object.keys(iconPaths));
|
|
731
761
|
var filledIconPaths = {
|
|
732
|
-
info: /* @__PURE__ */ (0,
|
|
733
|
-
/* @__PURE__ */ (0,
|
|
734
|
-
/* @__PURE__ */ (0,
|
|
735
|
-
] }),
|
|
736
|
-
question: /* @__PURE__ */ (0,
|
|
737
|
-
/* @__PURE__ */ (0,
|
|
738
|
-
/* @__PURE__ */ (0,
|
|
739
|
-
] }),
|
|
740
|
-
warning: /* @__PURE__ */ (0,
|
|
741
|
-
/* @__PURE__ */ (0,
|
|
742
|
-
/* @__PURE__ */ (0,
|
|
743
|
-
] }),
|
|
744
|
-
"circle-check": /* @__PURE__ */ (0,
|
|
745
|
-
/* @__PURE__ */ (0,
|
|
746
|
-
/* @__PURE__ */ (0,
|
|
747
|
-
] }),
|
|
748
|
-
"circle-close": /* @__PURE__ */ (0,
|
|
749
|
-
/* @__PURE__ */ (0,
|
|
750
|
-
/* @__PURE__ */ (0,
|
|
751
|
-
] }),
|
|
752
|
-
"circle-plus": /* @__PURE__ */ (0,
|
|
753
|
-
/* @__PURE__ */ (0,
|
|
754
|
-
/* @__PURE__ */ (0,
|
|
755
|
-
] }),
|
|
756
|
-
"circle-minus": /* @__PURE__ */ (0,
|
|
757
|
-
/* @__PURE__ */ (0,
|
|
758
|
-
/* @__PURE__ */ (0,
|
|
759
|
-
] }),
|
|
760
|
-
home: /* @__PURE__ */ (0,
|
|
761
|
-
user: /* @__PURE__ */ (0,
|
|
762
|
-
/* @__PURE__ */ (0,
|
|
763
|
-
/* @__PURE__ */ (0,
|
|
764
|
-
] }),
|
|
765
|
-
users: /* @__PURE__ */ (0,
|
|
766
|
-
/* @__PURE__ */ (0,
|
|
767
|
-
/* @__PURE__ */ (0,
|
|
768
|
-
/* @__PURE__ */ (0,
|
|
769
|
-
] }),
|
|
770
|
-
trash: /* @__PURE__ */ (0,
|
|
771
|
-
bell: /* @__PURE__ */ (0,
|
|
772
|
-
star: /* @__PURE__ */ (0,
|
|
773
|
-
heart: /* @__PURE__ */ (0,
|
|
774
|
-
mail: /* @__PURE__ */ (0,
|
|
775
|
-
/* @__PURE__ */ (0,
|
|
776
|
-
/* @__PURE__ */ (0,
|
|
777
|
-
] }),
|
|
778
|
-
lock: /* @__PURE__ */ (0,
|
|
779
|
-
unlock: /* @__PURE__ */ (0,
|
|
780
|
-
calendar: /* @__PURE__ */ (0,
|
|
781
|
-
/* @__PURE__ */ (0,
|
|
782
|
-
/* @__PURE__ */ (0,
|
|
783
|
-
] }),
|
|
784
|
-
clock: /* @__PURE__ */ (0,
|
|
785
|
-
/* @__PURE__ */ (0,
|
|
786
|
-
/* @__PURE__ */ (0,
|
|
787
|
-
] }),
|
|
788
|
-
file: /* @__PURE__ */ (0,
|
|
789
|
-
folder: /* @__PURE__ */ (0,
|
|
790
|
-
image: /* @__PURE__ */ (0,
|
|
791
|
-
/* @__PURE__ */ (0,
|
|
792
|
-
/* @__PURE__ */ (0,
|
|
793
|
-
/* @__PURE__ */ (0,
|
|
794
|
-
] }),
|
|
795
|
-
filter: /* @__PURE__ */ (0,
|
|
796
|
-
play: /* @__PURE__ */ (0,
|
|
797
|
-
/* @__PURE__ */ (0,
|
|
798
|
-
/* @__PURE__ */ (0,
|
|
799
|
-
] }),
|
|
800
|
-
pause: /* @__PURE__ */ (0,
|
|
801
|
-
/* @__PURE__ */ (0,
|
|
802
|
-
/* @__PURE__ */ (0,
|
|
803
|
-
] }),
|
|
804
|
-
book: /* @__PURE__ */ (0,
|
|
805
|
-
component: /* @__PURE__ */ (0,
|
|
806
|
-
/* @__PURE__ */ (0,
|
|
807
|
-
/* @__PURE__ */ (0,
|
|
808
|
-
/* @__PURE__ */ (0,
|
|
809
|
-
/* @__PURE__ */ (0,
|
|
810
|
-
] }),
|
|
811
|
-
token: /* @__PURE__ */ (0,
|
|
812
|
-
/* @__PURE__ */ (0,
|
|
813
|
-
/* @__PURE__ */ (0,
|
|
762
|
+
info: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
763
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
764
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 10.5v6M12 7.2v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
765
|
+
] }),
|
|
766
|
+
question: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
767
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
768
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9.6 9a2.5 2.5 0 1 1 3.6 2.3c-.8.5-1.2 1.1-1.2 2.1M12 16.8v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
769
|
+
] }),
|
|
770
|
+
warning: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
771
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10.3 3.5 1.8 19a2 2 0 0 0 1.8 3h16.8a2 2 0 0 0 1.8-3L13.7 3.5a2 2 0 0 0-3.4 0Z", fill: "currentColor", stroke: "none" }),
|
|
772
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 9v5M12 18v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
773
|
+
] }),
|
|
774
|
+
"circle-check": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
775
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
776
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m7.5 12 3 3 6-6", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
777
|
+
] }),
|
|
778
|
+
"circle-close": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
779
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
780
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8.8 8.8 6.4 6.4M15.2 8.8l-6.4 6.4", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
781
|
+
] }),
|
|
782
|
+
"circle-plus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
783
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
784
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 7.5v9M7.5 12h9", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
785
|
+
] }),
|
|
786
|
+
"circle-minus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
787
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
788
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7.5 12h9", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
789
|
+
] }),
|
|
790
|
+
home: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M2.6 10.8 12 2.8l9.4 8a1 1 0 0 1-1.3 1.5l-.6-.5V21h-5.2v-6.2H9.7V21H4.5v-9.2l-.6.5a1 1 0 1 1-1.3-1.5Z", fill: "currentColor", stroke: "none" }),
|
|
791
|
+
user: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
792
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "7.5", r: "4.5", fill: "currentColor", stroke: "none" }),
|
|
793
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3.5 21c.7-5 3.6-7.5 8.5-7.5s7.8 2.5 8.5 7.5H3.5Z", fill: "currentColor", stroke: "none" })
|
|
794
|
+
] }),
|
|
795
|
+
users: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
796
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "8.5", cy: "8", r: "3.8", fill: "currentColor", stroke: "none" }),
|
|
797
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "17", cy: "8.5", r: "3", fill: "currentColor", stroke: "none", opacity: ".7" }),
|
|
798
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M1.8 21c.6-4.6 2.8-7 6.7-7s6.1 2.4 6.7 7H1.8ZM14.4 15.2c3.9-.2 6.4 1.7 7 5.8h-4.5a9.9 9.9 0 0 0-2.5-5.8Z", fill: "currentColor", stroke: "none" })
|
|
799
|
+
] }),
|
|
800
|
+
trash: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 3h8l1 3h4v2H3V6h4l1-3Zm-2.5 7h13l-1 11h-11l-1-11Z", fill: "currentColor", stroke: "none" }),
|
|
801
|
+
bell: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 2.5a2 2 0 0 1 2 1.6c3 .9 5 3.6 5 6.9v4.3l2 3.2H3l2-3.2V11c0-3.3 2-6 5-6.9a2 2 0 0 1 2-1.6ZM9.2 20h5.6a3 3 0 0 1-5.6 0Z", fill: "currentColor", stroke: "none" }),
|
|
802
|
+
star: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m12 2.2 3 6 6.6 1-4.8 4.6 1.1 6.6-5.9-3.1-5.9 3.1 1.1-6.6-4.8-4.6 6.6-1 3-6Z", fill: "currentColor", stroke: "none" }),
|
|
803
|
+
heart: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 21.3 3.1 13.7A5.8 5.8 0 0 1 11 5.2l1 1 1-1a5.8 5.8 0 0 1 7.9 8.5L12 21.3Z", fill: "currentColor", stroke: "none" }),
|
|
804
|
+
mail: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
805
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "2.5", y: "4.5", width: "19", height: "15", rx: "2.5", fill: "currentColor", stroke: "none" }),
|
|
806
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4.5 7 7.5 5.8L19.5 7", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.8" })
|
|
807
|
+
] }),
|
|
808
|
+
lock: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 10V7a5 5 0 0 1 10 0v3h1.5a2.5 2.5 0 0 1 2.5 2.5v7a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 19.5v-7A2.5 2.5 0 0 1 5.5 10H7Zm2.5 0h5V7a2.5 2.5 0 0 0-5 0v3Z", fill: "currentColor", stroke: "none" }),
|
|
809
|
+
unlock: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 10V7a5 5 0 0 1 9.5-2.2l-2.2 1.1A2.5 2.5 0 0 0 9.5 7v3h9A2.5 2.5 0 0 1 21 12.5v7a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 19.5v-7A2.5 2.5 0 0 1 5.5 10H7Z", fill: "currentColor", stroke: "none" }),
|
|
810
|
+
calendar: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
811
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "2.5", y: "4.5", width: "19", height: "17", rx: "2.5", fill: "currentColor", stroke: "none" }),
|
|
812
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 9.5h18M8 2.5v4M16 2.5v4", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.8" })
|
|
813
|
+
] }),
|
|
814
|
+
clock: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
815
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
816
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 6.5V12l4 2.3", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
|
|
817
|
+
] }),
|
|
818
|
+
file: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5 2.5h10l4 4V22H5V2.5Zm9 1.8V8h3.7L14 4.3Z", fill: "currentColor", stroke: "none" }),
|
|
819
|
+
folder: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M2.5 5h7l2.2 2.5h9.8V20H2.5V5Z", fill: "currentColor", stroke: "none" }),
|
|
820
|
+
image: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
821
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "2.5", y: "3.5", width: "19", height: "17", rx: "2.5", fill: "currentColor", stroke: "none" }),
|
|
822
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4.5 18 4.3-4.6 3.4 3 2.5-2.6 4.8 4.2", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.7" }),
|
|
823
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "8", cy: "8.5", r: "1.7", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
|
|
824
|
+
] }),
|
|
825
|
+
filter: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M2 4h20l-7.8 9v6.2L9.8 22v-9L2 4Z", fill: "currentColor", stroke: "none" }),
|
|
826
|
+
play: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
827
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
828
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m10 7.8 6.5 4.2-6.5 4.2V7.8Z", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
|
|
829
|
+
] }),
|
|
830
|
+
pause: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
831
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
|
|
832
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8.5 7.5h2.5v9H8.5v-9Zm4.5 0h2.5v9H13v-9Z", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
|
|
833
|
+
] }),
|
|
834
|
+
book: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 4.5A3.5 3.5 0 0 1 6.5 1H11v19H6.5A3.5 3.5 0 0 0 3 23V4.5ZM21 4.5A3.5 3.5 0 0 0 17.5 1H13v19h4.5A3.5 3.5 0 0 1 21 23V4.5Z", fill: "currentColor", stroke: "none" }),
|
|
835
|
+
component: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
836
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "3", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
|
|
837
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "13", y: "3", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
|
|
838
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "13", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
|
|
839
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "13", y: "13", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" })
|
|
840
|
+
] }),
|
|
841
|
+
token: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
|
|
842
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "5", fill: "currentColor", stroke: "none" }),
|
|
843
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 1v4M12 19v4M1 12h4M19 12h4M4.2 4.2 7 7M17 17l2.8 2.8M19.8 4.2 17 7M7 17l-2.8 2.8", stroke: "currentColor", strokeWidth: "2.2" })
|
|
814
844
|
] })
|
|
815
845
|
};
|
|
816
846
|
var FILLED_ICON_NAMES = Object.freeze(Object.keys(filledIconPaths));
|
|
817
|
-
var Icon = (0,
|
|
847
|
+
var Icon = (0, import_react2.forwardRef)(function Icon2({ name, size = "1em", strokeWidth = 1.8, rotate = 0, spin = false, pulse = false, label, variant = "outline", className = "", style, ...props }, ref) {
|
|
818
848
|
const resolvedSize = typeof size === "number" ? `${size}px` : size;
|
|
819
849
|
const mergedStyle = { "--sia-icon-size": resolvedSize, "--sia-icon-rotate": `${rotate}deg`, ...style };
|
|
820
850
|
const animationClass = spin ? " sia-icon--spin" : pulse ? " sia-icon--pulse" : "";
|
|
821
851
|
const filledPath = filledIconPaths[name];
|
|
822
852
|
const resolvedVariant = variant === "filled" && filledPath ? "filled" : "outline";
|
|
823
|
-
return /* @__PURE__ */ (0,
|
|
853
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
824
854
|
"span",
|
|
825
855
|
{
|
|
826
856
|
ref,
|
|
@@ -831,15 +861,15 @@ var Icon = (0, import_react.forwardRef)(function Icon2({ name, size = "1em", str
|
|
|
831
861
|
"aria-hidden": label ? void 0 : true,
|
|
832
862
|
style: mergedStyle,
|
|
833
863
|
...props,
|
|
834
|
-
children: /* @__PURE__ */ (0,
|
|
864
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth, strokeLinecap: "round", strokeLinejoin: "round", focusable: "false", children: resolvedVariant === "filled" ? filledPath : iconPaths[name] })
|
|
835
865
|
}
|
|
836
866
|
);
|
|
837
867
|
});
|
|
838
868
|
|
|
839
869
|
// src/components/PopupPortal.tsx
|
|
840
|
-
var
|
|
870
|
+
var import_react3 = require("react");
|
|
841
871
|
var import_react_dom = require("react-dom");
|
|
842
|
-
var
|
|
872
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
843
873
|
function setForwardedRef(ref, value) {
|
|
844
874
|
if (typeof ref === "function") ref(value);
|
|
845
875
|
else if (ref) ref.current = value;
|
|
@@ -847,7 +877,7 @@ function setForwardedRef(ref, value) {
|
|
|
847
877
|
function clamp(value, min, max) {
|
|
848
878
|
return Math.min(Math.max(value, min), Math.max(min, max));
|
|
849
879
|
}
|
|
850
|
-
var PopupPortal = (0,
|
|
880
|
+
var PopupPortal = (0, import_react3.forwardRef)(function PopupPortal2({
|
|
851
881
|
anchorRef,
|
|
852
882
|
open = true,
|
|
853
883
|
placement = "bottom-start",
|
|
@@ -858,9 +888,9 @@ var PopupPortal = (0, import_react2.forwardRef)(function PopupPortal2({
|
|
|
858
888
|
children,
|
|
859
889
|
...props
|
|
860
890
|
}, forwardedRef) {
|
|
861
|
-
const popupRef = (0,
|
|
862
|
-
const [position, setPosition] = (0,
|
|
863
|
-
(0,
|
|
891
|
+
const popupRef = (0, import_react3.useRef)(null);
|
|
892
|
+
const [position, setPosition] = (0, import_react3.useState)();
|
|
893
|
+
(0, import_react3.useLayoutEffect)(() => {
|
|
864
894
|
if (!open || typeof document === "undefined") {
|
|
865
895
|
setPosition(void 0);
|
|
866
896
|
return;
|
|
@@ -925,7 +955,7 @@ var PopupPortal = (0, import_react2.forwardRef)(function PopupPortal2({
|
|
|
925
955
|
}, [anchorRef, offset, open, placement, viewportPadding]);
|
|
926
956
|
if (!open || typeof document === "undefined") return null;
|
|
927
957
|
return (0, import_react_dom.createPortal)(
|
|
928
|
-
/* @__PURE__ */ (0,
|
|
958
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
929
959
|
"div",
|
|
930
960
|
{
|
|
931
961
|
ref: (node) => {
|
|
@@ -951,23 +981,9 @@ var PopupPortal = (0, import_react2.forwardRef)(function PopupPortal2({
|
|
|
951
981
|
);
|
|
952
982
|
});
|
|
953
983
|
|
|
954
|
-
// src/components/shared.ts
|
|
955
|
-
var import_react3 = require("react");
|
|
956
|
-
function useControllableState({ value, defaultValue, onChange }) {
|
|
957
|
-
const [internalValue, setInternalValue] = (0, import_react3.useState)(defaultValue);
|
|
958
|
-
const controlled = value !== void 0;
|
|
959
|
-
const currentValue = controlled ? value : internalValue;
|
|
960
|
-
const setValue = (0, import_react3.useCallback)((nextValue) => {
|
|
961
|
-
if (Object.is(currentValue, nextValue)) return;
|
|
962
|
-
if (!controlled) setInternalValue(nextValue);
|
|
963
|
-
onChange?.(nextValue);
|
|
964
|
-
}, [controlled, currentValue, onChange]);
|
|
965
|
-
return [currentValue, setValue];
|
|
966
|
-
}
|
|
967
|
-
|
|
968
984
|
// src/components/DatePickerPanel.tsx
|
|
969
985
|
var import_react4 = require("react");
|
|
970
|
-
var
|
|
986
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
971
987
|
function pad(value) {
|
|
972
988
|
return String(value).padStart(2, "0");
|
|
973
989
|
}
|
|
@@ -1032,9 +1048,9 @@ function CalendarMonth({
|
|
|
1032
1048
|
const end = range[1] || previewEnd || "";
|
|
1033
1049
|
const low = start && end ? start <= end ? start : end : "";
|
|
1034
1050
|
const high = start && end ? start <= end ? end : start : "";
|
|
1035
|
-
return /* @__PURE__ */ (0,
|
|
1036
|
-
/* @__PURE__ */ (0,
|
|
1037
|
-
/* @__PURE__ */ (0,
|
|
1051
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { className: "sia-date-panel__month", children: [
|
|
1052
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { className: "sia-date-panel__weekdays", "aria-hidden": "true", children: WEEKDAYS.map((day) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", { children: day }, day)) }),
|
|
1053
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { className: "sia-date-panel__days", children: Array.from({ length: 42 }, (_, index) => {
|
|
1038
1054
|
const date = addDays(gridStart, index);
|
|
1039
1055
|
const key = dateKey(date);
|
|
1040
1056
|
const outside = date.getMonth() !== month.getMonth();
|
|
@@ -1043,11 +1059,11 @@ function CalendarMonth({
|
|
|
1043
1059
|
const rangeStart = Boolean(start && key === start);
|
|
1044
1060
|
const rangeEnd = Boolean(range[1] && key === range[1]);
|
|
1045
1061
|
const inRange = Boolean(low && high && key >= low && key <= high);
|
|
1046
|
-
return /* @__PURE__ */ (0,
|
|
1062
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1047
1063
|
"span",
|
|
1048
1064
|
{
|
|
1049
1065
|
className: `sia-date-panel__cell${outside ? " is-outside" : ""}${selected ? " is-selected" : ""}${rangeStart ? " is-range-start" : ""}${rangeEnd ? " is-range-end" : ""}${inRange ? " is-in-range" : ""}${key === today ? " is-today" : ""}`,
|
|
1050
|
-
children: /* @__PURE__ */ (0,
|
|
1066
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1051
1067
|
"button",
|
|
1052
1068
|
{
|
|
1053
1069
|
type: "button",
|
|
@@ -1074,28 +1090,28 @@ function CalendarHeader({
|
|
|
1074
1090
|
onNextMonth,
|
|
1075
1091
|
onNextYear
|
|
1076
1092
|
}) {
|
|
1077
|
-
return /* @__PURE__ */ (0,
|
|
1078
|
-
/* @__PURE__ */ (0,
|
|
1079
|
-
onPreviousYear ? /* @__PURE__ */ (0,
|
|
1080
|
-
/* @__PURE__ */ (0,
|
|
1081
|
-
/* @__PURE__ */ (0,
|
|
1093
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { className: "sia-date-panel__header", children: [
|
|
1094
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("span", { className: "sia-date-panel__nav", children: [
|
|
1095
|
+
onPreviousYear ? /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("button", { type: "button", "aria-label": "\u4E0A\u4E00\u5E74", onClick: onPreviousYear, children: [
|
|
1096
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Icon, { name: "chevron-left", size: 13 }),
|
|
1097
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Icon, { name: "chevron-left", size: 13 })
|
|
1082
1098
|
] }) : null,
|
|
1083
|
-
onPreviousMonth ? /* @__PURE__ */ (0,
|
|
1099
|
+
onPreviousMonth ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { type: "button", "aria-label": "\u4E0A\u4E2A\u6708", onClick: onPreviousMonth, children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Icon, { name: "chevron-left", size: 15 }) }) : null
|
|
1084
1100
|
] }),
|
|
1085
|
-
/* @__PURE__ */ (0,
|
|
1086
|
-
label ? /* @__PURE__ */ (0,
|
|
1087
|
-
/* @__PURE__ */ (0,
|
|
1101
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("strong", { children: [
|
|
1102
|
+
label ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("small", { children: label }) : null,
|
|
1103
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("span", { children: [
|
|
1088
1104
|
month.getFullYear(),
|
|
1089
1105
|
"\u5E74\xA0 ",
|
|
1090
1106
|
month.getMonth() + 1,
|
|
1091
1107
|
"\u6708"
|
|
1092
1108
|
] })
|
|
1093
1109
|
] }),
|
|
1094
|
-
/* @__PURE__ */ (0,
|
|
1095
|
-
onNextMonth ? /* @__PURE__ */ (0,
|
|
1096
|
-
onNextYear ? /* @__PURE__ */ (0,
|
|
1097
|
-
/* @__PURE__ */ (0,
|
|
1098
|
-
/* @__PURE__ */ (0,
|
|
1110
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("span", { className: "sia-date-panel__nav", children: [
|
|
1111
|
+
onNextMonth ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { type: "button", "aria-label": "\u4E0B\u4E2A\u6708", onClick: onNextMonth, children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Icon, { name: "chevron-right", size: 15 }) }) : null,
|
|
1112
|
+
onNextYear ? /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("button", { type: "button", "aria-label": "\u4E0B\u4E00\u5E74", onClick: onNextYear, children: [
|
|
1113
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Icon, { name: "chevron-right", size: 13 }),
|
|
1114
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Icon, { name: "chevron-right", size: 13 })
|
|
1099
1115
|
] }) : null
|
|
1100
1116
|
] }),
|
|
1101
1117
|
range ? null : null
|
|
@@ -1133,19 +1149,19 @@ function TimePanel({
|
|
|
1133
1149
|
values[index] = next;
|
|
1134
1150
|
onChange(values.join(":"));
|
|
1135
1151
|
}
|
|
1136
|
-
return /* @__PURE__ */ (0,
|
|
1137
|
-
/* @__PURE__ */ (0,
|
|
1152
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("aside", { className: "sia-date-panel__time", "aria-label": ariaLabel, children: [
|
|
1153
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("strong", { children: [
|
|
1138
1154
|
use12Hours ? pad(Number(hour) % 12 || 12) : hour,
|
|
1139
1155
|
":",
|
|
1140
1156
|
minute,
|
|
1141
1157
|
showSecond ? `:${second}` : "",
|
|
1142
1158
|
use12Hours ? Number(hour) < 12 ? " AM" : " PM" : ""
|
|
1143
1159
|
] }),
|
|
1144
|
-
/* @__PURE__ */ (0,
|
|
1160
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { ref: columnsRef, className: "sia-date-panel__time-columns", children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { role: "listbox", "aria-label": `${ariaLabel}${column.label}`, children: Array.from({ length: column.count }, (_, index) => {
|
|
1145
1161
|
const next = pad(index);
|
|
1146
1162
|
const candidate = [hour, minute, second];
|
|
1147
1163
|
candidate[column.index] = next;
|
|
1148
|
-
return /* @__PURE__ */ (0,
|
|
1164
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { type: "button", role: "option", disabled: disabledTime?.(candidate.join(":")), "aria-selected": next === column.value, className: next === column.value ? "is-selected" : "", onKeyDown: (event) => {
|
|
1149
1165
|
if (!["ArrowDown", "ArrowUp", "Home", "End"].includes(event.key)) return;
|
|
1150
1166
|
event.preventDefault();
|
|
1151
1167
|
const buttons = Array.from(event.currentTarget.parentElement.querySelectorAll("button:not(:disabled)"));
|
|
@@ -1165,17 +1181,17 @@ function DatePanelFooter({
|
|
|
1165
1181
|
onToday,
|
|
1166
1182
|
onConfirm
|
|
1167
1183
|
}) {
|
|
1168
|
-
return /* @__PURE__ */ (0,
|
|
1169
|
-
/* @__PURE__ */ (0,
|
|
1170
|
-
showToday ? /* @__PURE__ */ (0,
|
|
1184
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("footer", { className: "sia-date-panel__footer", children: [
|
|
1185
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("span", { children: [
|
|
1186
|
+
showToday ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { type: "button", onClick: onToday, children: "\u4ECA\u5929" }) : null,
|
|
1171
1187
|
extra
|
|
1172
1188
|
] }),
|
|
1173
|
-
needConfirm ? /* @__PURE__ */ (0,
|
|
1189
|
+
needConfirm ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { type: "button", className: "sia-date-panel__confirm", disabled: disabledConfirm, onClick: onConfirm, children: confirmText }) : null
|
|
1174
1190
|
] });
|
|
1175
1191
|
}
|
|
1176
1192
|
|
|
1177
1193
|
// src/components/DatePicker.tsx
|
|
1178
|
-
var
|
|
1194
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
1179
1195
|
function formatWeek(date) {
|
|
1180
1196
|
const target = new Date(date);
|
|
1181
1197
|
target.setHours(0, 0, 0, 0);
|
|
@@ -1245,6 +1261,7 @@ function DatePicker({
|
|
|
1245
1261
|
onChange,
|
|
1246
1262
|
onOpenChange,
|
|
1247
1263
|
placeholder,
|
|
1264
|
+
placeholderMode,
|
|
1248
1265
|
formatValue = (value2) => value2,
|
|
1249
1266
|
renderExtraFooter,
|
|
1250
1267
|
...props
|
|
@@ -1324,9 +1341,10 @@ function DatePicker({
|
|
|
1324
1341
|
setCurrentValue(empty);
|
|
1325
1342
|
}
|
|
1326
1343
|
const display = Array.isArray(currentValue) ? currentValue.map(formatValue).join("\u3001") : currentValue ? formatValue(currentValue) : "";
|
|
1344
|
+
const floating = useFloatingPlaceholder({ mode: placeholderMode, placeholder: placeholder ?? placeholderFor(picker, showTime, multiple), filled: Boolean(display), active: visible });
|
|
1327
1345
|
const triggerLabel = props["aria-label"] ?? (typeof placeholder === "string" ? placeholder : "\u65E5\u671F\u9009\u62E9\u5668");
|
|
1328
|
-
return /* @__PURE__ */ (0,
|
|
1329
|
-
/* @__PURE__ */ (0,
|
|
1346
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("span", { ref: rootRef, className: `sia-picker${floating.className} sia-picker--${size} sia-picker--${status}${visible ? " is-open" : ""}${disabled ? " is-disabled" : ""} ${className}`.trim(), children: [
|
|
1347
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
1330
1348
|
"button",
|
|
1331
1349
|
{
|
|
1332
1350
|
type: "button",
|
|
@@ -1348,15 +1366,16 @@ function DatePicker({
|
|
|
1348
1366
|
} else if (event.key === "Escape") changeOpen(false);
|
|
1349
1367
|
},
|
|
1350
1368
|
children: [
|
|
1351
|
-
/* @__PURE__ */ (0,
|
|
1352
|
-
/* @__PURE__ */ (0,
|
|
1369
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: `sia-picker__value${display ? "" : " is-placeholder"}`, children: display || placeholder || placeholderFor(picker, showTime, multiple) }),
|
|
1370
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: "sia-picker__icon", "aria-hidden": "true", children: suffixIcon ?? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { name: "calendar", size: 16 }) })
|
|
1353
1371
|
]
|
|
1354
1372
|
}
|
|
1355
1373
|
),
|
|
1356
|
-
|
|
1357
|
-
/* @__PURE__ */ (0,
|
|
1358
|
-
|
|
1359
|
-
|
|
1374
|
+
floating.label,
|
|
1375
|
+
allowClear && display && !disabled ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { type: "button", className: "sia-picker__clear", "aria-label": "\u6E05\u9664\u65E5\u671F", onClick: clearValue, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { name: "circle-close", variant: "filled", size: 15 }) }) : null,
|
|
1376
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(PopupPortal, { ref: popupRef, anchorRef: rootRef, open: visible, className: `sia-date-panel${showTime ? " sia-date-panel--with-time" : ""}${presets?.length ? " sia-date-panel--with-presets" : ""}`, role: "dialog", "aria-label": "\u65E5\u671F\u9009\u62E9\u9762\u677F", children: [
|
|
1377
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "sia-date-panel__body", children: [
|
|
1378
|
+
presets?.length ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("aside", { className: "sia-date-panel__presets", children: presets.map((preset, index) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { type: "button", onClick: () => {
|
|
1360
1379
|
const next = resolvePreset(preset.value);
|
|
1361
1380
|
if (!next || isDisabled(dayFromValue(next))) return;
|
|
1362
1381
|
setDraftValue(next);
|
|
@@ -1365,8 +1384,8 @@ function DatePicker({
|
|
|
1365
1384
|
changeOpen(false);
|
|
1366
1385
|
}
|
|
1367
1386
|
}, children: preset.label }, index)) }) : null,
|
|
1368
|
-
/* @__PURE__ */ (0,
|
|
1369
|
-
/* @__PURE__ */ (0,
|
|
1387
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { className: "sia-date-panel__calendar", children: [
|
|
1388
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1370
1389
|
CalendarHeader,
|
|
1371
1390
|
{
|
|
1372
1391
|
month: viewMonth,
|
|
@@ -1376,14 +1395,14 @@ function DatePicker({
|
|
|
1376
1395
|
onNextYear: () => setViewMonth(addMonths(viewMonth, 12))
|
|
1377
1396
|
}
|
|
1378
1397
|
),
|
|
1379
|
-
/* @__PURE__ */ (0,
|
|
1398
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(CalendarMonth, { month: viewMonth, selectedDates, disabledDate: isDisabled, onSelect: selectDate })
|
|
1380
1399
|
] }),
|
|
1381
|
-
showTime ? /* @__PURE__ */ (0,
|
|
1400
|
+
showTime ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(TimePanel, { value: draftTime, showSecond, onChange: (next) => {
|
|
1382
1401
|
setDraftTime(next);
|
|
1383
1402
|
if (typeof draftValue === "string" && draftValue) setDraftValue(withTime(dayFromValue(draftValue), next, showSecond));
|
|
1384
1403
|
} }) : null
|
|
1385
1404
|
] }),
|
|
1386
|
-
/* @__PURE__ */ (0,
|
|
1405
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1387
1406
|
DatePanelFooter,
|
|
1388
1407
|
{
|
|
1389
1408
|
extra: renderExtraFooter?.(),
|
|
@@ -1401,6 +1420,7 @@ function DateRangePicker({
|
|
|
1401
1420
|
value,
|
|
1402
1421
|
defaultValue = ["", ""],
|
|
1403
1422
|
placeholder = ["\u5F00\u59CB\u65E5\u671F", "\u7ED3\u675F\u65E5\u671F"],
|
|
1423
|
+
placeholderMode,
|
|
1404
1424
|
separator = "\u2192",
|
|
1405
1425
|
presets,
|
|
1406
1426
|
maxRangeDays,
|
|
@@ -1430,7 +1450,7 @@ function DateRangePicker({
|
|
|
1430
1450
|
const id = (0, import_react5.useId)();
|
|
1431
1451
|
const rootRef = (0, import_react5.useRef)(null);
|
|
1432
1452
|
const popupRef = (0, import_react5.useRef)(null);
|
|
1433
|
-
const [currentValue, setCurrentValue] = useControllableState({ value, defaultValue, onChange });
|
|
1453
|
+
const [currentValue, setCurrentValue] = useControllableState({ value: value === void 0 ? void 0 : Array.isArray(value) ? value : ["", ""], defaultValue, onChange });
|
|
1434
1454
|
const [visible, setVisible] = useControllableState({ value: open, defaultValue: defaultOpen, onChange: onOpenChange });
|
|
1435
1455
|
const [draftValue, setDraftValue] = (0, import_react5.useState)(currentValue);
|
|
1436
1456
|
const [activeIndex, setActiveIndex] = (0, import_react5.useState)(currentValue[0] && !currentValue[1] ? 1 : 0);
|
|
@@ -1624,14 +1644,14 @@ function DateRangePicker({
|
|
|
1624
1644
|
const month = index === 0 ? viewMonth : endViewMonth;
|
|
1625
1645
|
const setMonth = index === 0 ? setViewMonth : setEndViewMonth;
|
|
1626
1646
|
const endpointLabel = index === 0 ? "\u5F00\u59CB" : "\u7ED3\u675F";
|
|
1627
|
-
return /* @__PURE__ */ (0,
|
|
1647
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
1628
1648
|
"div",
|
|
1629
1649
|
{
|
|
1630
1650
|
className: `sia-date-panel__range-date-time-group${activeIndex === index ? " is-active" : ""}`,
|
|
1631
1651
|
"aria-label": `${endpointLabel}\u65E5\u671F\u65F6\u95F4`,
|
|
1632
1652
|
children: [
|
|
1633
|
-
/* @__PURE__ */ (0,
|
|
1634
|
-
/* @__PURE__ */ (0,
|
|
1653
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { className: "sia-date-panel__calendar", children: [
|
|
1654
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1635
1655
|
CalendarHeader,
|
|
1636
1656
|
{
|
|
1637
1657
|
month,
|
|
@@ -1643,7 +1663,7 @@ function DateRangePicker({
|
|
|
1643
1663
|
onNextYear: () => setMonth(addMonths(month, 12))
|
|
1644
1664
|
}
|
|
1645
1665
|
),
|
|
1646
|
-
/* @__PURE__ */ (0,
|
|
1666
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1647
1667
|
CalendarMonth,
|
|
1648
1668
|
{
|
|
1649
1669
|
month,
|
|
@@ -1653,7 +1673,7 @@ function DateRangePicker({
|
|
|
1653
1673
|
}
|
|
1654
1674
|
)
|
|
1655
1675
|
] }),
|
|
1656
|
-
/* @__PURE__ */ (0,
|
|
1676
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1657
1677
|
TimePanel,
|
|
1658
1678
|
{
|
|
1659
1679
|
value: times[index],
|
|
@@ -1667,8 +1687,9 @@ function DateRangePicker({
|
|
|
1667
1687
|
endpointLabel
|
|
1668
1688
|
);
|
|
1669
1689
|
}
|
|
1670
|
-
|
|
1671
|
-
|
|
1690
|
+
const floating = useFloatingPlaceholder({ mode: placeholderMode, placeholder: placeholder.filter(Boolean).join(" / "), filled: currentValue.some(Boolean), active: visible });
|
|
1691
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("span", { ref: rootRef, className: `sia-picker${floating.className} sia-picker-range-control sia-picker--${size} sia-picker--${status}${visible ? " is-open" : ""}${disabled ? " is-disabled" : ""} ${className}`.trim(), children: [
|
|
1692
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
1672
1693
|
"button",
|
|
1673
1694
|
{
|
|
1674
1695
|
type: "button",
|
|
@@ -1684,21 +1705,22 @@ function DateRangePicker({
|
|
|
1684
1705
|
disabled,
|
|
1685
1706
|
onClick: () => changeOpen(!visible),
|
|
1686
1707
|
children: [
|
|
1687
|
-
/* @__PURE__ */ (0,
|
|
1688
|
-
/* @__PURE__ */ (0,
|
|
1689
|
-
/* @__PURE__ */ (0,
|
|
1690
|
-
/* @__PURE__ */ (0,
|
|
1708
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: `sia-picker-range-control__value${currentValue[0] ? "" : " is-placeholder"}`, children: currentValue[0] ? formatValue(currentValue[0]) : placeholder[0] }),
|
|
1709
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: "sia-picker-range-control__separator", children: separator }),
|
|
1710
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: `sia-picker-range-control__value${currentValue[1] ? "" : " is-placeholder"}`, children: currentValue[1] ? formatValue(currentValue[1]) : placeholder[1] }),
|
|
1711
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: "sia-picker__icon", "aria-hidden": "true", children: suffixIcon ?? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { name: "calendar", size: 16 }) })
|
|
1691
1712
|
]
|
|
1692
1713
|
}
|
|
1693
1714
|
),
|
|
1694
|
-
|
|
1695
|
-
/* @__PURE__ */ (0,
|
|
1696
|
-
|
|
1715
|
+
floating.label,
|
|
1716
|
+
allowClear && (currentValue[0] || currentValue[1]) && !disabled ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { type: "button", className: "sia-picker__clear", "aria-label": "\u6E05\u9664\u65E5\u671F\u8303\u56F4", onClick: clearValue, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { name: "circle-close", variant: "filled", size: 15 }) }) : null,
|
|
1717
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(PopupPortal, { ref: popupRef, anchorRef: rootRef, open: visible, className: `sia-date-panel sia-date-panel--range${showTime ? ` sia-date-panel--with-time sia-date-panel--range-time-${compactDateTime ? "compact" : "paired"}` : ""}${presets?.length ? " sia-date-panel--with-presets" : ""}`, role: "dialog", "aria-label": "\u65E5\u671F\u8303\u56F4\u9009\u62E9\u9762\u677F", children: [
|
|
1718
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "sia-date-panel__body", children: showTime ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "sia-date-panel__range-date-time", children: compactDateTime ? renderDateTimeGroup(activeIndex) : /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
|
|
1697
1719
|
renderDateTimeGroup(0),
|
|
1698
1720
|
renderDateTimeGroup(1)
|
|
1699
|
-
] }) }) : /* @__PURE__ */ (0,
|
|
1700
|
-
/* @__PURE__ */ (0,
|
|
1701
|
-
/* @__PURE__ */ (0,
|
|
1721
|
+
] }) }) : /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "sia-date-panel__range-calendars", children: [
|
|
1722
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { className: "sia-date-panel__calendar", children: [
|
|
1723
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1702
1724
|
CalendarHeader,
|
|
1703
1725
|
{
|
|
1704
1726
|
month: viewMonth,
|
|
@@ -1707,10 +1729,10 @@ function DateRangePicker({
|
|
|
1707
1729
|
onPreviousMonth: () => setViewMonth(addMonths(viewMonth, -1))
|
|
1708
1730
|
}
|
|
1709
1731
|
),
|
|
1710
|
-
/* @__PURE__ */ (0,
|
|
1732
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(CalendarMonth, { month: viewMonth, range: rangeDates, previewEnd: activeIndex === 1 ? hoverDate : "", disabledDate: isDisabled, onSelect: selectDate, onHover: activeIndex === 1 ? setHoverDate : void 0 })
|
|
1711
1733
|
] }),
|
|
1712
|
-
/* @__PURE__ */ (0,
|
|
1713
|
-
/* @__PURE__ */ (0,
|
|
1734
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { className: "sia-date-panel__calendar", children: [
|
|
1735
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1714
1736
|
CalendarHeader,
|
|
1715
1737
|
{
|
|
1716
1738
|
month: addMonths(viewMonth, 1),
|
|
@@ -1719,24 +1741,24 @@ function DateRangePicker({
|
|
|
1719
1741
|
onNextYear: () => setViewMonth(addMonths(viewMonth, 12))
|
|
1720
1742
|
}
|
|
1721
1743
|
),
|
|
1722
|
-
/* @__PURE__ */ (0,
|
|
1744
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(CalendarMonth, { month: addMonths(viewMonth, 1), range: rangeDates, previewEnd: activeIndex === 1 ? hoverDate : "", disabledDate: isDisabled, onSelect: selectDate, onHover: activeIndex === 1 ? setHoverDate : void 0 })
|
|
1723
1745
|
] })
|
|
1724
1746
|
] }) }),
|
|
1725
|
-
/* @__PURE__ */ (0,
|
|
1747
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1726
1748
|
DatePanelFooter,
|
|
1727
1749
|
{
|
|
1728
1750
|
showToday: showToday && !presets?.length,
|
|
1729
1751
|
needConfirm: resolvedNeedConfirm || allowEmpty.some(Boolean),
|
|
1730
1752
|
disabledConfirm: compactDateTime && showTime && activeIndex === 0 ? !draftValue[0] : !isValidRange(draftValue),
|
|
1731
1753
|
confirmText: compactDateTime && showTime && activeIndex === 0 ? "\u4E0B\u4E00\u6B65" : "\u786E\u5B9A",
|
|
1732
|
-
extra: /* @__PURE__ */ (0,
|
|
1754
|
+
extra: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
|
|
1733
1755
|
renderExtraFooter?.(),
|
|
1734
|
-
presets?.map((preset, index) => /* @__PURE__ */ (0,
|
|
1735
|
-
compactDateTime && showTime && activeIndex === 1 ? /* @__PURE__ */ (0,
|
|
1756
|
+
presets?.map((preset, index) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { type: "button", onClick: () => applyPreset(preset), children: preset.label }, index)),
|
|
1757
|
+
compactDateTime && showTime && activeIndex === 1 ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { type: "button", onClick: () => {
|
|
1736
1758
|
setActiveIndex(0);
|
|
1737
1759
|
setViewMonth(startOfMonth(parseDate(dayFromValue(draftValue[0])) ?? /* @__PURE__ */ new Date()));
|
|
1738
1760
|
}, children: "\u4E0A\u4E00\u6B65" }) : null,
|
|
1739
|
-
invalidDateTimeRange ? /* @__PURE__ */ (0,
|
|
1761
|
+
invalidDateTimeRange ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("small", { className: "sia-date-panel__range-error", children: "\u7ED3\u675F\u65F6\u95F4\u4E0D\u80FD\u65E9\u4E8E\u5F00\u59CB\u65F6\u95F4" }) : maxRangeDays ? /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("small", { children: [
|
|
1740
1762
|
"\u6700\u591A\u9009\u62E9 ",
|
|
1741
1763
|
maxRangeDays,
|
|
1742
1764
|
" \u5929"
|
|
@@ -1754,18 +1776,68 @@ function DateRangePicker({
|
|
|
1754
1776
|
})(DatePicker || (DatePicker = {}));
|
|
1755
1777
|
|
|
1756
1778
|
// src/components/Select.tsx
|
|
1779
|
+
var import_react7 = require("react");
|
|
1780
|
+
|
|
1781
|
+
// src/components/OverflowTags.tsx
|
|
1757
1782
|
var import_react6 = require("react");
|
|
1758
|
-
var
|
|
1783
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
1784
|
+
function OverflowTags({ items, maxCount, className = "", tagClassName, restClassName = "" }) {
|
|
1785
|
+
const rootRef = (0, import_react6.useRef)(null);
|
|
1786
|
+
const measureRef = (0, import_react6.useRef)(null);
|
|
1787
|
+
const limit = Math.min(items.length, Math.max(0, Math.floor(maxCount) || 0));
|
|
1788
|
+
const [visibleCount, setVisibleCount] = (0, import_react6.useState)(0);
|
|
1789
|
+
(0, import_react6.useLayoutEffect)(() => {
|
|
1790
|
+
const root = rootRef.current;
|
|
1791
|
+
const measure = measureRef.current;
|
|
1792
|
+
if (!root || !measure) return;
|
|
1793
|
+
const update = () => {
|
|
1794
|
+
const gap = Number.parseFloat(getComputedStyle(root).columnGap) || 0;
|
|
1795
|
+
const widths = Array.from(measure.children, (child) => child.getBoundingClientRect().width);
|
|
1796
|
+
let used = 0;
|
|
1797
|
+
let fitting = 0;
|
|
1798
|
+
for (let count2 = 1; count2 <= limit; count2 += 1) {
|
|
1799
|
+
used += widths[count2 - 1] + (count2 > 1 ? gap : 0);
|
|
1800
|
+
const rest = count2 < items.length ? gap + widths[limit + count2] : 0;
|
|
1801
|
+
if (used + rest <= root.clientWidth) fitting = count2;
|
|
1802
|
+
}
|
|
1803
|
+
setVisibleCount((previous) => previous === fitting ? previous : fitting);
|
|
1804
|
+
};
|
|
1805
|
+
update();
|
|
1806
|
+
const observer = new ResizeObserver(update);
|
|
1807
|
+
observer.observe(root);
|
|
1808
|
+
for (const child of measure.children) observer.observe(child);
|
|
1809
|
+
return () => observer.disconnect();
|
|
1810
|
+
}, [items, limit]);
|
|
1811
|
+
const count = Math.min(visibleCount, limit);
|
|
1812
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { ref: rootRef, className: `sia-overflow-tags ${className}`.trim(), children: [
|
|
1813
|
+
items.slice(0, count).map((item) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: tagClassName, children: item.label }, item.key)),
|
|
1814
|
+
items.length > count ? /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { className: `${tagClassName} sia-overflow-tags__rest ${restClassName}`.trim(), children: [
|
|
1815
|
+
"+",
|
|
1816
|
+
items.length - count
|
|
1817
|
+
] }) : null,
|
|
1818
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { ref: measureRef, className: "sia-overflow-tags__measure", "aria-hidden": "true", children: [
|
|
1819
|
+
items.slice(0, limit).map((item) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: tagClassName, children: item.label }, item.key)),
|
|
1820
|
+
Array.from({ length: limit + 1 }, (_, index) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { className: `${tagClassName} ${restClassName}`.trim(), children: [
|
|
1821
|
+
"+",
|
|
1822
|
+
items.length - index
|
|
1823
|
+
] }, `rest-${index}`))
|
|
1824
|
+
] })
|
|
1825
|
+
] });
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
// src/components/Select.tsx
|
|
1829
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
1759
1830
|
function defaultFilterOption(query, option) {
|
|
1760
1831
|
return String(option.label).toLowerCase().includes(query.toLowerCase());
|
|
1761
1832
|
}
|
|
1762
|
-
var Select = (0,
|
|
1833
|
+
var Select = (0, import_react7.forwardRef)(function Select2({
|
|
1763
1834
|
options,
|
|
1764
1835
|
mode = "single",
|
|
1765
1836
|
value,
|
|
1766
1837
|
defaultValue,
|
|
1767
1838
|
onChange,
|
|
1768
1839
|
placeholder = "\u8BF7\u9009\u62E9",
|
|
1840
|
+
placeholderMode,
|
|
1769
1841
|
size = "medium",
|
|
1770
1842
|
status = "default",
|
|
1771
1843
|
allowClear = false,
|
|
@@ -1789,18 +1861,18 @@ var Select = (0, import_react6.forwardRef)(function Select2({
|
|
|
1789
1861
|
onKeyDown,
|
|
1790
1862
|
...props
|
|
1791
1863
|
}, forwardedRef) {
|
|
1792
|
-
const fallbackId = (0,
|
|
1864
|
+
const fallbackId = (0, import_react7.useId)();
|
|
1793
1865
|
const selectId = id ?? fallbackId;
|
|
1794
1866
|
const listboxId = `${selectId}-listbox`;
|
|
1795
|
-
const rootRef = (0,
|
|
1796
|
-
const popupRef = (0,
|
|
1797
|
-
const searchRef = (0,
|
|
1798
|
-
const listRef = (0,
|
|
1799
|
-
const [open, setOpen] = (0,
|
|
1800
|
-
const [query, setQuery] = (0,
|
|
1801
|
-
const [activeIndex, setActiveIndex] = (0,
|
|
1802
|
-
const [scrollTop, setScrollTop] = (0,
|
|
1803
|
-
const deferredQuery = (0,
|
|
1867
|
+
const rootRef = (0, import_react7.useRef)(null);
|
|
1868
|
+
const popupRef = (0, import_react7.useRef)(null);
|
|
1869
|
+
const searchRef = (0, import_react7.useRef)(null);
|
|
1870
|
+
const listRef = (0, import_react7.useRef)(null);
|
|
1871
|
+
const [open, setOpen] = (0, import_react7.useState)(false);
|
|
1872
|
+
const [query, setQuery] = (0, import_react7.useState)("");
|
|
1873
|
+
const [activeIndex, setActiveIndex] = (0, import_react7.useState)(-1);
|
|
1874
|
+
const [scrollTop, setScrollTop] = (0, import_react7.useState)(0);
|
|
1875
|
+
const deferredQuery = (0, import_react7.useDeferredValue)(query.trim());
|
|
1804
1876
|
const initialValue = defaultValue === void 0 ? mode === "multiple" ? [] : null : defaultValue;
|
|
1805
1877
|
const [currentValue, setCurrentValue] = useControllableState({
|
|
1806
1878
|
value,
|
|
@@ -1815,19 +1887,19 @@ var Select = (0, import_react6.forwardRef)(function Select2({
|
|
|
1815
1887
|
}
|
|
1816
1888
|
}
|
|
1817
1889
|
});
|
|
1818
|
-
const selectedValues = (0,
|
|
1890
|
+
const selectedValues = (0, import_react7.useMemo)(() => {
|
|
1819
1891
|
if (mode === "multiple") return Array.isArray(currentValue) ? currentValue : currentValue === null ? [] : [currentValue];
|
|
1820
1892
|
return Array.isArray(currentValue) ? currentValue.slice(0, 1) : currentValue === null ? [] : [currentValue];
|
|
1821
1893
|
}, [currentValue, mode]);
|
|
1822
|
-
const selectedValueSet = (0,
|
|
1823
|
-
const availableOptions = (0,
|
|
1894
|
+
const selectedValueSet = (0, import_react7.useMemo)(() => new Set(selectedValues), [selectedValues]);
|
|
1895
|
+
const availableOptions = (0, import_react7.useMemo)(() => {
|
|
1824
1896
|
if (!allowInput) return options;
|
|
1825
1897
|
const optionValueSet = new Set(options.map((option) => option.value));
|
|
1826
1898
|
const selectedCustomOptions = selectedValues.filter((selectedValue) => !optionValueSet.has(selectedValue)).map((selectedValue) => ({ label: String(selectedValue), value: selectedValue }));
|
|
1827
1899
|
return selectedCustomOptions.length ? [...selectedCustomOptions, ...options] : options;
|
|
1828
1900
|
}, [allowInput, options, selectedValues]);
|
|
1829
|
-
const selectedOptions = (0,
|
|
1830
|
-
const filteredOptions = (0,
|
|
1901
|
+
const selectedOptions = (0, import_react7.useMemo)(() => selectedValues.map((selectedValue) => availableOptions.find((option) => option.value === selectedValue)).filter((option) => option !== void 0), [availableOptions, selectedValues]);
|
|
1902
|
+
const filteredOptions = (0, import_react7.useMemo)(() => deferredQuery ? availableOptions.filter((option) => filterOption(deferredQuery, option)) : availableOptions, [availableOptions, deferredQuery, filterOption]);
|
|
1831
1903
|
const inputValue = query.trim();
|
|
1832
1904
|
const exactInputOption = inputValue ? availableOptions.find((option) => String(option.value).toLowerCase() === inputValue.toLowerCase() || typeof option.label === "string" && option.label.toLowerCase() === inputValue.toLowerCase()) : void 0;
|
|
1833
1905
|
const canSubmitInput = allowInput && Boolean(inputValue) && !exactInputOption;
|
|
@@ -1841,7 +1913,7 @@ var Select = (0, import_react6.forwardRef)(function Select2({
|
|
|
1841
1913
|
const renderedOptions = virtualEnabled ? filteredOptions.slice(virtualStart, virtualEnd) : filteredOptions;
|
|
1842
1914
|
const enabledFilteredOptions = filteredOptions.filter((option) => !option.disabled);
|
|
1843
1915
|
const allFilteredSelected = enabledFilteredOptions.length > 0 && enabledFilteredOptions.every((option) => selectedValueSet.has(option.value));
|
|
1844
|
-
(0,
|
|
1916
|
+
(0, import_react7.useEffect)(() => {
|
|
1845
1917
|
if (!open) return void 0;
|
|
1846
1918
|
function closeFromOutside(event) {
|
|
1847
1919
|
const target = event.target;
|
|
@@ -1850,7 +1922,7 @@ var Select = (0, import_react6.forwardRef)(function Select2({
|
|
|
1850
1922
|
document.addEventListener("mousedown", closeFromOutside);
|
|
1851
1923
|
return () => document.removeEventListener("mousedown", closeFromOutside);
|
|
1852
1924
|
}, [open]);
|
|
1853
|
-
(0,
|
|
1925
|
+
(0, import_react7.useEffect)(() => {
|
|
1854
1926
|
if (open && (showSearch || allowInput)) searchRef.current?.focus();
|
|
1855
1927
|
}, [allowInput, open, showSearch]);
|
|
1856
1928
|
function firstEnabledIndex() {
|
|
@@ -1969,7 +2041,7 @@ var Select = (0, import_react6.forwardRef)(function Select2({
|
|
|
1969
2041
|
function renderOption(option, renderedIndex) {
|
|
1970
2042
|
const optionIndex = virtualEnabled ? virtualStart + renderedIndex : renderedIndex;
|
|
1971
2043
|
const selected = selectedValueSet.has(option.value);
|
|
1972
|
-
return /* @__PURE__ */ (0,
|
|
2044
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
1973
2045
|
"div",
|
|
1974
2046
|
{
|
|
1975
2047
|
id: `${listboxId}-${optionIndex}`,
|
|
@@ -1982,22 +2054,21 @@ var Select = (0, import_react6.forwardRef)(function Select2({
|
|
|
1982
2054
|
onMouseDown: (event) => event.preventDefault(),
|
|
1983
2055
|
onClick: () => selectOption(option),
|
|
1984
2056
|
children: [
|
|
1985
|
-
/* @__PURE__ */ (0,
|
|
1986
|
-
selected ? /* @__PURE__ */ (0,
|
|
2057
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: option.label }),
|
|
2058
|
+
selected ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Icon, { name: "check", size: 15 }) : null
|
|
1987
2059
|
]
|
|
1988
2060
|
},
|
|
1989
2061
|
`${typeof option.value}-${option.value}`
|
|
1990
2062
|
);
|
|
1991
2063
|
}
|
|
1992
|
-
const
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
/* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
2064
|
+
const floating = useFloatingPlaceholder({ mode: placeholderMode, placeholder, filled: hasValue, active: open });
|
|
2065
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { ref: rootRef, className: `sia-select sia-select--${size} sia-select--${status}${open ? " is-open" : ""}${disabled ? " is-disabled" : ""}${multiple ? " sia-select--multiple" : ""} ${className}`.trim(), children: [
|
|
2066
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
1996
2067
|
"button",
|
|
1997
2068
|
{
|
|
1998
2069
|
...props,
|
|
1999
2070
|
ref: forwardedRef,
|
|
2000
|
-
className:
|
|
2071
|
+
className: `sia-select__trigger${floating.className}`,
|
|
2001
2072
|
id: selectId,
|
|
2002
2073
|
type: "button",
|
|
2003
2074
|
role: "combobox",
|
|
@@ -2010,41 +2081,36 @@ var Select = (0, import_react6.forwardRef)(function Select2({
|
|
|
2010
2081
|
onClick: () => open ? closeDropdown() : openDropdown(),
|
|
2011
2082
|
onKeyDown: handleTriggerKeyDown,
|
|
2012
2083
|
children: [
|
|
2013
|
-
multiple && hasValue ? /* @__PURE__ */ (0,
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
hiddenTagCount
|
|
2018
|
-
] }) : null
|
|
2019
|
-
] }) : /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: `sia-select__value${hasValue ? "" : " is-placeholder"}`, children: selectedOptions[0]?.label ?? placeholder }),
|
|
2020
|
-
loading ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: "sia-select__spinner", "aria-hidden": "true" }) : null,
|
|
2021
|
-
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { className: "sia-select__arrow", name: "chevron-down", size: 15 })
|
|
2084
|
+
multiple && hasValue ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(OverflowTags, { className: "sia-select__tags", tagClassName: "sia-select__tag", restClassName: "sia-select__tag--rest", maxCount: maxTagCount, items: selectedOptions.map((option) => ({ key: `${typeof option.value}-${option.value}`, label: option.label })) }) : /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: `sia-select__value${hasValue ? "" : " is-placeholder"}`, children: selectedOptions[0]?.label ?? placeholder }),
|
|
2085
|
+
loading ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "sia-select__spinner", "aria-hidden": "true" }) : null,
|
|
2086
|
+
floating.label,
|
|
2087
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Icon, { className: "sia-select__arrow", name: "chevron-down", size: 15 })
|
|
2022
2088
|
]
|
|
2023
2089
|
}
|
|
2024
2090
|
),
|
|
2025
|
-
allowClear && hasValue && !disabled && !loading ? /* @__PURE__ */ (0,
|
|
2026
|
-
/* @__PURE__ */ (0,
|
|
2027
|
-
showSearch || allowInput ? /* @__PURE__ */ (0,
|
|
2028
|
-
/* @__PURE__ */ (0,
|
|
2029
|
-
/* @__PURE__ */ (0,
|
|
2091
|
+
allowClear && hasValue && !disabled && !loading ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("button", { className: "sia-select__clear", type: "button", "aria-label": "\u6E05\u7A7A\u9009\u62E9", onClick: clearValue, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Icon, { name: "circle-close", variant: "filled", size: 15 }) }) : null,
|
|
2092
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(PopupPortal, { ref: popupRef, anchorRef: rootRef, open, className: "sia-select__dropdown", children: [
|
|
2093
|
+
showSearch || allowInput ? /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("label", { className: "sia-select__search", children: [
|
|
2094
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Icon, { name: "search", size: 15 }),
|
|
2095
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { ref: searchRef, value: query, maxLength: inputMaxLength, onChange: handleSearchChange, onKeyDown: (event) => handleInteractionKeyDown(event, true), placeholder: searchPlaceholder, "aria-label": searchPlaceholder })
|
|
2030
2096
|
] }) : null,
|
|
2031
|
-
canSubmitInput ? /* @__PURE__ */ (0,
|
|
2032
|
-
/* @__PURE__ */ (0,
|
|
2033
|
-
/* @__PURE__ */ (0,
|
|
2097
|
+
canSubmitInput ? /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("button", { type: "button", className: "sia-select__input-option", onMouseDown: (event) => event.preventDefault(), onClick: submitInputValue, children: [
|
|
2098
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Icon, { name: "plus", size: 14 }),
|
|
2099
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { children: [
|
|
2034
2100
|
"\u4F7F\u7528\u201C",
|
|
2035
2101
|
inputValue,
|
|
2036
2102
|
"\u201D"
|
|
2037
2103
|
] })
|
|
2038
2104
|
] }) : null,
|
|
2039
|
-
multiple && showSelectAll ? /* @__PURE__ */ (0,
|
|
2040
|
-
/* @__PURE__ */ (0,
|
|
2041
|
-
/* @__PURE__ */ (0,
|
|
2042
|
-
/* @__PURE__ */ (0,
|
|
2105
|
+
multiple && showSelectAll ? /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "sia-select__actions", children: [
|
|
2106
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("button", { type: "button", disabled: allFilteredSelected || enabledFilteredOptions.length === 0, onClick: selectAllFiltered, children: "\u5168\u9009" }),
|
|
2107
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("button", { type: "button", disabled: !hasValue, onClick: clearSelection, children: "\u6E05\u9664" }),
|
|
2108
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { children: [
|
|
2043
2109
|
selectedValues.length,
|
|
2044
2110
|
" \u9879\u5DF2\u9009"
|
|
2045
2111
|
] })
|
|
2046
2112
|
] }) : null,
|
|
2047
|
-
/* @__PURE__ */ (0,
|
|
2113
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
2048
2114
|
"div",
|
|
2049
2115
|
{
|
|
2050
2116
|
ref: listRef,
|
|
@@ -2055,7 +2121,7 @@ var Select = (0, import_react6.forwardRef)(function Select2({
|
|
|
2055
2121
|
"aria-multiselectable": multiple || void 0,
|
|
2056
2122
|
style: { maxHeight: listHeight },
|
|
2057
2123
|
onScroll: handleListScroll,
|
|
2058
|
-
children: filteredOptions.length > 0 ? virtualEnabled ? /* @__PURE__ */ (0,
|
|
2124
|
+
children: filteredOptions.length > 0 ? virtualEnabled ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { className: "sia-select__virtual-space", style: { height: filteredOptions.length * optionHeight }, children: renderedOptions.map(renderOption) }) : renderedOptions.map(renderOption) : canSubmitInput ? null : /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { className: "sia-select__empty", children: notFoundContent })
|
|
2059
2125
|
}
|
|
2060
2126
|
)
|
|
2061
2127
|
] })
|
|
@@ -2063,12 +2129,13 @@ var Select = (0, import_react6.forwardRef)(function Select2({
|
|
|
2063
2129
|
});
|
|
2064
2130
|
|
|
2065
2131
|
// src/components/SelectDateRange.tsx
|
|
2066
|
-
var
|
|
2132
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
2067
2133
|
function SelectDateRange({
|
|
2068
2134
|
options,
|
|
2069
2135
|
value,
|
|
2070
2136
|
defaultValue,
|
|
2071
2137
|
selectPlaceholder = "\u8BF7\u9009\u62E9\u7C7B\u578B",
|
|
2138
|
+
placeholderMode,
|
|
2072
2139
|
selectWidth = 180,
|
|
2073
2140
|
rangePlaceholder = ["\u5F00\u59CB\u65E5\u671F", "\u7ED3\u675F\u65E5\u671F"],
|
|
2074
2141
|
selectAriaLabel = "\u9009\u62E9\u7C7B\u578B",
|
|
@@ -2083,9 +2150,9 @@ function SelectDateRange({
|
|
|
2083
2150
|
...props
|
|
2084
2151
|
}) {
|
|
2085
2152
|
const initialValue = defaultValue ?? { select: options[0]?.value ?? "", range: ["", ""] };
|
|
2086
|
-
const [currentValue, setCurrentValue] = useControllableState({ value, defaultValue: initialValue, onChange });
|
|
2087
|
-
return /* @__PURE__ */ (0,
|
|
2088
|
-
/* @__PURE__ */ (0,
|
|
2153
|
+
const [currentValue, setCurrentValue] = useControllableState({ value: value === void 0 ? void 0 : value && typeof value === "object" ? value : { select: "", range: ["", ""] }, defaultValue: initialValue, onChange });
|
|
2154
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: `sia-select-date-range sia-select-date-range--${size} ${className}`.trim(), role: "group", "aria-label": `${selectAriaLabel}\u4E0E${rangeAriaLabel}`, ...props, style: { ...style, "--sia-select-date-range-select-width": typeof selectWidth === "number" ? `${selectWidth}px` : selectWidth }, children: [
|
|
2155
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
2089
2156
|
Select,
|
|
2090
2157
|
{
|
|
2091
2158
|
className: "sia-select-date-range__select",
|
|
@@ -2093,6 +2160,7 @@ function SelectDateRange({
|
|
|
2093
2160
|
options,
|
|
2094
2161
|
value: currentValue.select,
|
|
2095
2162
|
placeholder: selectPlaceholder,
|
|
2163
|
+
placeholderMode,
|
|
2096
2164
|
size,
|
|
2097
2165
|
status,
|
|
2098
2166
|
disabled,
|
|
@@ -2102,13 +2170,14 @@ function SelectDateRange({
|
|
|
2102
2170
|
}
|
|
2103
2171
|
}
|
|
2104
2172
|
),
|
|
2105
|
-
/* @__PURE__ */ (0,
|
|
2173
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
2106
2174
|
DatePicker.RangePicker,
|
|
2107
2175
|
{
|
|
2108
2176
|
className: "sia-select-date-range__picker",
|
|
2109
2177
|
"aria-label": rangeAriaLabel,
|
|
2110
2178
|
value: currentValue.range,
|
|
2111
2179
|
placeholder: rangePlaceholder,
|
|
2180
|
+
placeholderMode,
|
|
2112
2181
|
presets,
|
|
2113
2182
|
size,
|
|
2114
2183
|
status,
|