@sia.soul/sia-react-ui 0.1.22 → 0.1.24

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.
Files changed (44) hide show
  1. package/dist/Select-O_yY51vc.d.ts +307 -0
  2. package/dist/Select-W_xpkpOW.d.cts +307 -0
  3. package/dist/chart.cjs +1401 -1160
  4. package/dist/chart.css +21 -0
  5. package/dist/chart.js +4 -4
  6. package/dist/{chunk-3TRRBMXY.js → chunk-6R7JY7IY.js} +44 -21
  7. package/dist/{chunk-TZGUBGA4.js → chunk-6WBABNAX.js} +4 -3
  8. package/dist/{chunk-OKP4DIQH.js → chunk-GUXAWU63.js} +29 -26
  9. package/dist/{chunk-QJ4OQNQ4.js → chunk-LA7O3PN4.js} +4 -3
  10. package/dist/{chunk-7RNS52YG.js → chunk-LIYCU2GU.js} +349 -278
  11. package/dist/{chunk-KLI65JVD.js → chunk-LRPQ5FGE.js} +68 -186
  12. package/dist/chunk-NSSPGXNM.js +284 -0
  13. package/dist/{chunk-YT6E3X2K.js → chunk-OH6YILJW.js} +4 -3
  14. package/dist/{chunk-RWGSZW32.js → chunk-RGXVPS37.js} +7 -6
  15. package/dist/{chunk-VN6PIPP7.js → chunk-T2QIW4OO.js} +8 -7
  16. package/dist/{core-DeZknKwc.d.ts → core-BOzLwiXG.d.ts} +40 -158
  17. package/dist/{core-C5OnrCi4.d.cts → core-tbb9ZiBY.d.cts} +40 -158
  18. package/dist/core.cjs +1656 -1443
  19. package/dist/core.css +60 -0
  20. package/dist/core.d.cts +2 -2
  21. package/dist/core.d.ts +2 -2
  22. package/dist/core.js +8 -6
  23. package/dist/index.cjs +3801 -3580
  24. package/dist/index.css +60 -0
  25. package/dist/index.d.cts +33 -16
  26. package/dist/index.d.ts +33 -16
  27. package/dist/index.js +94 -85
  28. package/dist/markdown-editor.cjs +269 -28
  29. package/dist/markdown-editor.css +20 -0
  30. package/dist/markdown-editor.js +2 -2
  31. package/dist/rich-text-editor.cjs +1156 -1031
  32. package/dist/rich-text-editor.css +20 -0
  33. package/dist/rich-text-editor.js +4 -4
  34. package/dist/{select-date-range-CGRb3-W8.d.ts → select-date-range-BjqFUeU6.d.ts} +1 -1
  35. package/dist/{select-date-range-DDmYGDD4.d.cts → select-date-range-C9w8z3G8.d.cts} +1 -1
  36. package/dist/select-date-range.cjs +1209 -1061
  37. package/dist/select-date-range.css +20 -0
  38. package/dist/select-date-range.d.cts +2 -2
  39. package/dist/select-date-range.d.ts +2 -2
  40. package/dist/select-date-range.js +5 -5
  41. package/package.json +2 -2
  42. package/dist/Select-4hGJt3RJ.d.cts +0 -142
  43. package/dist/Select-BNSE67xn.d.ts +0 -142
  44. package/dist/chunk-3VJ4CZDQ.js +0 -43
@@ -35,23 +35,264 @@ __export(rich_text_editor_exports, {
35
35
  });
36
36
  module.exports = __toCommonJS(rich_text_editor_exports);
37
37
 
38
- // src/components/shared.ts
38
+ // src/components/titleTooltip.tsx
39
+ var import_client = require("react-dom/client");
40
+
41
+ // src/components/PopupPortal.tsx
39
42
  var import_react = require("react");
40
- var ControlSizeContext = (0, import_react.createContext)("medium");
43
+ var import_react_dom = require("react-dom");
44
+ var import_jsx_runtime = require("react/jsx-runtime");
45
+ function setForwardedRef(ref, value) {
46
+ if (typeof ref === "function") ref(value);
47
+ else if (ref) ref.current = value;
48
+ }
49
+ function clamp(value, min, max) {
50
+ return Math.min(Math.max(value, min), Math.max(min, max));
51
+ }
52
+ var PopupPortal = (0, import_react.forwardRef)(function PopupPortal2({
53
+ anchorRef,
54
+ open = true,
55
+ placement = "bottom-start",
56
+ offset = 6,
57
+ viewportPadding = 8,
58
+ className = "",
59
+ style,
60
+ children,
61
+ ...props
62
+ }, forwardedRef) {
63
+ const popupRef = (0, import_react.useRef)(null);
64
+ const [position, setPosition] = (0, import_react.useState)();
65
+ (0, import_react.useLayoutEffect)(() => {
66
+ if (!open || typeof document === "undefined") {
67
+ setPosition(void 0);
68
+ return;
69
+ }
70
+ const update = () => {
71
+ const anchor = anchorRef.current;
72
+ const popup = popupRef.current;
73
+ if (!anchor || !popup) return;
74
+ const anchorRect = anchor.getBoundingClientRect();
75
+ const popupRect = popup.getBoundingClientRect();
76
+ const viewportWidth = document.documentElement.clientWidth;
77
+ const viewportHeight = document.documentElement.clientHeight;
78
+ let resolvedPlacement = placement;
79
+ const availableBelow = Math.max(0, viewportHeight - viewportPadding - anchorRect.bottom - offset);
80
+ const availableAbove = Math.max(0, anchorRect.top - offset - viewportPadding);
81
+ const availableRight = Math.max(0, viewportWidth - viewportPadding - anchorRect.right - offset);
82
+ const availableLeft = Math.max(0, anchorRect.left - offset - viewportPadding);
83
+ const horizontalSide = placement.startsWith("right") || placement.startsWith("left");
84
+ if (horizontalSide) {
85
+ const prefersRight = placement.startsWith("right");
86
+ const fitsRight = popupRect.width <= availableRight;
87
+ const fitsLeft = popupRect.width <= availableLeft;
88
+ if (prefersRight && !fitsRight && (fitsLeft || availableLeft > availableRight)) {
89
+ resolvedPlacement = placement.replace("right", "left");
90
+ } else if (!prefersRight && !fitsLeft && (fitsRight || availableRight > availableLeft)) {
91
+ resolvedPlacement = placement.replace("left", "right");
92
+ }
93
+ } else {
94
+ const prefersBottom = placement.startsWith("bottom");
95
+ const fitsBelow = popupRect.height <= availableBelow;
96
+ const fitsAbove = popupRect.height <= availableAbove;
97
+ if (prefersBottom && !fitsBelow && (fitsAbove || availableAbove > availableBelow)) {
98
+ resolvedPlacement = placement.replace("bottom", "top");
99
+ } else if (!prefersBottom && !fitsAbove && (fitsBelow || availableBelow > availableAbove)) {
100
+ resolvedPlacement = placement.replace("top", "bottom");
101
+ }
102
+ }
103
+ const resolvedHorizontalSide = resolvedPlacement.startsWith("right") || resolvedPlacement.startsWith("left");
104
+ const top = resolvedHorizontalSide ? resolvedPlacement.endsWith("end") ? anchorRect.bottom - popupRect.height : anchorRect.top : resolvedPlacement.startsWith("bottom") ? anchorRect.bottom + offset : anchorRect.top - popupRect.height - offset;
105
+ const availableHeight = resolvedHorizontalSide ? Math.max(0, viewportHeight - viewportPadding * 2) : resolvedPlacement.startsWith("bottom") ? availableBelow : availableAbove;
106
+ const alignedLeft = resolvedHorizontalSide ? resolvedPlacement.startsWith("right") ? anchorRect.right + offset : anchorRect.left - popupRect.width - offset : resolvedPlacement.endsWith("end") ? anchorRect.right - popupRect.width : anchorRect.left;
107
+ const next = {
108
+ top: clamp(top, viewportPadding, viewportHeight - popupRect.height - viewportPadding),
109
+ left: clamp(alignedLeft, viewportPadding, viewportWidth - popupRect.width - viewportPadding),
110
+ anchorWidth: anchorRect.width,
111
+ availableHeight,
112
+ placement: resolvedPlacement
113
+ };
114
+ setPosition((current) => current && current.top === next.top && current.left === next.left && current.anchorWidth === next.anchorWidth && current.availableHeight === next.availableHeight && current.placement === next.placement ? current : next);
115
+ };
116
+ update();
117
+ window.addEventListener("resize", update);
118
+ window.addEventListener("scroll", update, true);
119
+ const observer = new ResizeObserver(update);
120
+ if (anchorRef.current) observer.observe(anchorRef.current);
121
+ if (popupRef.current) observer.observe(popupRef.current);
122
+ return () => {
123
+ window.removeEventListener("resize", update);
124
+ window.removeEventListener("scroll", update, true);
125
+ observer.disconnect();
126
+ };
127
+ }, [anchorRef, offset, open, placement, viewportPadding]);
128
+ if (!open || typeof document === "undefined") return null;
129
+ return (0, import_react_dom.createPortal)(
130
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
131
+ "div",
132
+ {
133
+ ref: (node) => {
134
+ popupRef.current = node;
135
+ setForwardedRef(forwardedRef, node);
136
+ },
137
+ className: `sia-popup-portal ${className}`.trim(),
138
+ "data-sia-popup-layer": "",
139
+ "data-placement": position?.placement ?? placement,
140
+ style: {
141
+ ...style,
142
+ "--sia-popup-anchor-width": `${position?.anchorWidth ?? anchorRef.current?.getBoundingClientRect().width ?? 0}px`,
143
+ "--sia-popup-available-height": position ? `${position.availableHeight}px` : void 0,
144
+ top: position?.top ?? 0,
145
+ left: position?.left ?? 0,
146
+ visibility: position ? "visible" : "hidden"
147
+ },
148
+ ...withTitleTooltip(props),
149
+ children
150
+ }
151
+ ),
152
+ document.body
153
+ );
154
+ });
155
+
156
+ // src/components/titleTooltip.tsx
157
+ var import_jsx_runtime2 = require("react/jsx-runtime");
158
+ var documents = /* @__PURE__ */ new WeakSet();
159
+ function withTitleTooltip(props) {
160
+ if (!props || typeof props !== "object" || !("title" in props)) return props;
161
+ const { title, ...rest } = props;
162
+ if (typeof document !== "undefined") installTitleTooltips(document);
163
+ return { ...rest, "data-sia-title": title == null ? void 0 : String(title) };
164
+ }
165
+ function installTitleTooltips(doc) {
166
+ if (documents.has(doc)) return;
167
+ documents.add(doc);
168
+ let hovered = null;
169
+ let focused = null;
170
+ let active = null;
171
+ let pending = null;
172
+ let timer;
173
+ let root;
174
+ let observer;
175
+ let tooltipId = "";
176
+ const candidate = (target) => {
177
+ if (!(target instanceof Element)) return null;
178
+ const element = target.closest("[data-sia-title]");
179
+ return element?.getAttribute("data-sia-title") && !element.closest(".sia-floating") ? element : null;
180
+ };
181
+ const hasExplicitTooltip = (target) => target instanceof Element && Boolean(target.closest(".sia-floating"));
182
+ const hide = () => {
183
+ clearTimeout(timer);
184
+ pending = null;
185
+ observer?.disconnect();
186
+ observer = void 0;
187
+ if (active) {
188
+ const ids = (active.getAttribute("aria-describedby") ?? "").split(/\s+/).filter((id) => id && id !== tooltipId);
189
+ if (ids.length) active.setAttribute("aria-describedby", ids.join(" "));
190
+ else active.removeAttribute("aria-describedby");
191
+ }
192
+ active = null;
193
+ root?.render(null);
194
+ };
195
+ const render = () => {
196
+ const text = active?.getAttribute("data-sia-title");
197
+ if (!active?.isConnected || !text) {
198
+ hide();
199
+ return;
200
+ }
201
+ if (!root) {
202
+ const host = doc.createElement("div");
203
+ host.setAttribute("data-sia-title-tooltip-host", "");
204
+ doc.body.append(host);
205
+ root = (0, import_client.createRoot)(host);
206
+ tooltipId = `sia-title-tooltip-${Math.random().toString(36).slice(2)}`;
207
+ }
208
+ const ids = new Set((active.getAttribute("aria-describedby") ?? "").split(/\s+/).filter(Boolean));
209
+ ids.add(tooltipId);
210
+ active.setAttribute("aria-describedby", [...ids].join(" "));
211
+ root.render(/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
212
+ PopupPortal,
213
+ {
214
+ anchorRef: { current: active },
215
+ placement: "top-start",
216
+ id: tooltipId,
217
+ role: "tooltip",
218
+ className: "sia-title-tooltip",
219
+ children: text
220
+ }
221
+ ));
222
+ };
223
+ const show = (element) => {
224
+ if (!element && !active && !pending) return;
225
+ if (element && (element === active || element === pending)) return;
226
+ hide();
227
+ if (!element) return;
228
+ pending = element;
229
+ timer = setTimeout(() => {
230
+ pending = null;
231
+ if (!element.isConnected) return;
232
+ active = element;
233
+ render();
234
+ if (!active) return;
235
+ observer = new MutationObserver(() => {
236
+ if (!active?.isConnected) hide();
237
+ else if (active.getAttribute("data-sia-title") !== doc.getElementById(tooltipId)?.textContent) render();
238
+ });
239
+ observer.observe(doc.body, { childList: true, subtree: true, attributes: true, attributeFilter: ["data-sia-title"] });
240
+ }, 250);
241
+ };
242
+ doc.addEventListener("pointerover", (event) => {
243
+ if (event.pointerType === "touch") return;
244
+ hovered = candidate(event.target);
245
+ if (hasExplicitTooltip(event.target)) hide();
246
+ else show(hovered ?? focused);
247
+ }, true);
248
+ doc.addEventListener("pointermove", (event) => {
249
+ if (event.pointerType === "touch" || event.buttons) return;
250
+ hovered = candidate(event.target);
251
+ if (!hasExplicitTooltip(event.target)) show(hovered ?? focused);
252
+ }, true);
253
+ doc.addEventListener("pointerout", (event) => {
254
+ if (event.pointerType === "touch") return;
255
+ hovered = candidate(event.relatedTarget);
256
+ if (hasExplicitTooltip(event.relatedTarget)) hide();
257
+ else show(hovered ?? focused);
258
+ }, true);
259
+ doc.addEventListener("focusin", (event) => {
260
+ focused = candidate(event.target);
261
+ if (hasExplicitTooltip(event.target)) hide();
262
+ else show(focused ?? hovered);
263
+ }, true);
264
+ doc.addEventListener("focusout", (event) => {
265
+ focused = candidate(event.relatedTarget);
266
+ show(hovered ?? focused);
267
+ }, true);
268
+ doc.addEventListener("pointerdown", hide, true);
269
+ doc.addEventListener("keydown", (event) => {
270
+ if (event.key === "Escape") hide();
271
+ }, true);
272
+ doc.addEventListener("scroll", hide, true);
273
+ doc.defaultView?.addEventListener("blur", () => {
274
+ hovered = focused = null;
275
+ hide();
276
+ });
277
+ }
278
+
279
+ // src/components/shared.ts
280
+ var import_react2 = require("react");
281
+ var ControlSizeContext = (0, import_react2.createContext)("medium");
41
282
  function useControlSize(size) {
42
- const inherited = (0, import_react.useContext)(ControlSizeContext);
283
+ const inherited = (0, import_react2.useContext)(ControlSizeContext);
43
284
  return size ?? inherited;
44
285
  }
45
- var PlaceholderModeContext = (0, import_react.createContext)("default");
286
+ var PlaceholderModeContext = (0, import_react2.createContext)("default");
46
287
  function usePlaceholderMode(mode) {
47
- const inherited = (0, import_react.useContext)(PlaceholderModeContext);
288
+ const inherited = (0, import_react2.useContext)(PlaceholderModeContext);
48
289
  return mode ?? inherited;
49
290
  }
50
291
  function useControllableState({ value, defaultValue, onChange }) {
51
- const [internalValue, setInternalValue] = (0, import_react.useState)(defaultValue);
292
+ const [internalValue, setInternalValue] = (0, import_react2.useState)(defaultValue);
52
293
  const controlled = value !== void 0;
53
294
  const currentValue = controlled ? value : internalValue;
54
- const setValue = (0, import_react.useCallback)((nextValue) => {
295
+ const setValue = (0, import_react2.useCallback)((nextValue) => {
55
296
  if (Object.is(currentValue, nextValue)) return;
56
297
  if (!controlled) setInternalValue(nextValue);
57
298
  onChange?.(nextValue);
@@ -60,18 +301,18 @@ function useControllableState({ value, defaultValue, onChange }) {
60
301
  }
61
302
 
62
303
  // src/components/FloatingPlaceholder.tsx
63
- var import_jsx_runtime = require("react/jsx-runtime");
304
+ var import_jsx_runtime3 = require("react/jsx-runtime");
64
305
  function useFloatingPlaceholder({ mode, placeholder, filled, active = false }) {
65
306
  const enabled = usePlaceholderMode(mode) === "floating" && Boolean(placeholder);
66
307
  return {
67
308
  enabled,
68
309
  className: enabled ? ` sia-placeholder-floating${filled ? " sia-placeholder-floating--filled" : ""}${active ? " sia-placeholder-floating--active" : ""}` : "",
69
- label: enabled ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "sia-floating-placeholder", "aria-hidden": "true", children: placeholder }) : null
310
+ label: enabled ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { className: "sia-floating-placeholder", "aria-hidden": "true", children: placeholder }) : null
70
311
  };
71
312
  }
72
313
 
73
314
  // src/components/RichTextEditor.tsx
74
- var import_react8 = require("react");
315
+ var import_react9 = require("react");
75
316
  var import_dompurify = __toESM(require("dompurify"), 1);
76
317
  var import_core = require("@tiptap/core");
77
318
  var import_starter_kit = __toESM(require("@tiptap/starter-kit"), 1);
@@ -86,9 +327,9 @@ var import_extension_task_item = __toESM(require("@tiptap/extension-task-item"),
86
327
  var import_markdown = require("@tiptap/markdown");
87
328
 
88
329
  // src/components/Button.tsx
89
- var import_react2 = require("react");
90
- var import_jsx_runtime2 = require("react/jsx-runtime");
91
- var Button = (0, import_react2.forwardRef)(function Button2({
330
+ var import_react3 = require("react");
331
+ var import_jsx_runtime4 = require("react/jsx-runtime");
332
+ var Button = (0, import_react3.forwardRef)(function Button2({
92
333
  variant = "default",
93
334
  size: sizeProp,
94
335
  loading = false,
@@ -104,7 +345,7 @@ var Button = (0, import_react2.forwardRef)(function Button2({
104
345
  ...props
105
346
  }, forwardedRef) {
106
347
  const size = useControlSize(sizeProp);
107
- const localRef = (0, import_react2.useRef)(null);
348
+ const localRef = (0, import_react3.useRef)(null);
108
349
  function setRef(node) {
109
350
  localRef.current = node;
110
351
  if (typeof forwardedRef === "function") forwardedRef(node);
@@ -122,7 +363,7 @@ var Button = (0, import_react2.forwardRef)(function Button2({
122
363
  onClick?.(event);
123
364
  }
124
365
  const mergedStyle = block ? { ...style, width: "100%" } : style ?? {};
125
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
366
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
126
367
  "button",
127
368
  {
128
369
  ref: setRef,
@@ -132,813 +373,813 @@ var Button = (0, import_react2.forwardRef)(function Button2({
132
373
  disabled: disabled || loading,
133
374
  onClick: handleClick,
134
375
  style: mergedStyle,
135
- ...props,
376
+ ...withTitleTooltip(props),
136
377
  children: [
137
- loading ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className: "sia-button__spinner", "aria-hidden": "true" }) : icon && iconPosition === "start" ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className: "sia-button__icon", children: icon }) : null,
138
- children !== void 0 && children !== null ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { children }) : null,
139
- !loading && icon && iconPosition === "end" ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className: "sia-button__icon", children: icon }) : null
378
+ loading ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { className: "sia-button__spinner", "aria-hidden": "true" }) : icon && iconPosition === "start" ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { className: "sia-button__icon", children: icon }) : null,
379
+ children !== void 0 && children !== null ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { children }) : null,
380
+ !loading && icon && iconPosition === "end" ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { className: "sia-button__icon", children: icon }) : null
140
381
  ]
141
382
  }
142
383
  );
143
384
  });
144
385
 
145
386
  // src/components/Dropdown.tsx
146
- var import_react6 = require("react");
387
+ var import_react7 = require("react");
147
388
 
148
389
  // src/components/Icon.tsx
149
- var import_react3 = require("react");
390
+ var import_react4 = require("react");
150
391
 
151
392
  // src/components/IconCatalog.tsx
152
- var import_jsx_runtime3 = require("react/jsx-runtime");
393
+ var import_jsx_runtime5 = require("react/jsx-runtime");
153
394
  var extendedIconPaths = {
154
- "notepad-file": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
155
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
156
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
157
- ] }),
158
- "notepad-folder": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: /* @__PURE__ */ (0, import_jsx_runtime3.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" }) }),
159
- "notepad-virtual-folder": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
160
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
161
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
162
- ] }),
163
- "step-backward": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
164
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 5v14" }),
165
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m18 6-8 6 8 6V6Z" })
166
- ] }),
167
- "step-forward": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
168
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M18 5v14" }),
169
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m6 6 8 6-8 6V6Z" })
170
- ] }),
171
- "fast-backward": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m11 6-7 6 7 6V6ZM20 6l-7 6 7 6V6Z" }) }),
172
- "fast-forward": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m13 6 7 6-7 6V6ZM4 6l7 6-7 6V6Z" }) }),
173
- "corner-up-left": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
174
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9 5-5 5 5 5" }),
175
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 10h9a7 7 0 0 1 7 7v2" })
176
- ] }),
177
- "corner-up-right": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
178
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15 5 5 5-5 5" }),
179
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 10h-9a7 7 0 0 0-7 7v2" })
180
- ] }),
181
- "swap-horizontal": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
182
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 8h15m0 0-4-4m4 4-4 4" }),
183
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 16H5m0 0 4-4m-4 4 4 4" })
184
- ] }),
185
- "swap-vertical": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
186
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 4v15m0 0-4-4m4 4 4-4" }),
187
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M16 20V5m0 0-4 4m4-4 4 4" })
188
- ] }),
189
- expand: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 4H4v5M4 4l6 6M15 20h5v-5m0 5-6-6" }) }),
190
- shrink: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 10H5V5m0 5 6-6M14 14h5v5m0-5-6 6" }) }),
191
- fullscreen: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 4H4v5M15 4h5v5M9 20H4v-5M15 20h5v-5" }),
192
- "fullscreen-exit": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 9h5V4M20 9h-5V4M4 15h5v5M20 15h-5v5" }),
193
- "menu-fold": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
194
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 6h16M4 12h10M4 18h16" }),
195
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m18 9-3 3 3 3" })
196
- ] }),
197
- "menu-unfold": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
198
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 6h16M10 12h10M4 18h16" }),
199
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m6 9 3 3-3 3" })
200
- ] }),
201
- login: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 5H5v14h5M13 8l4 4-4 4M8 12h9" }) }),
202
- logout: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 5h5v14h-5M11 8l-4 4 4 4M16 12H7" }) }),
203
- move: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
204
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3v18M3 12h18" }),
205
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9 6 3-3 3 3M9 18l3 3 3-3M6 9l-3 3 3 3M18 9l3 3-3 3" })
206
- ] }),
207
- "vertical-align-top": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 4h16M12 7v13M8 11l4-4 4 4" }) }),
208
- "vertical-align-middle": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 12h16M12 4v16M8 8l4 4 4-4M8 16l4-4 4 4" }) }),
209
- "vertical-align-bottom": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 20h16M12 4v13M8 13l4 4 4-4" }) }),
210
- "square-plus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
211
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
212
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 8v8M8 12h8" })
213
- ] }),
214
- "square-minus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
215
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
216
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 12h8" })
217
- ] }),
218
- "square-check": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
219
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
220
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8 12 3 3 6-7" })
221
- ] }),
222
- "square-close": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
223
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
224
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8.5 8.5 7 7m0-7-7 7" })
225
- ] }),
226
- "tab-plus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
227
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2.5" }),
228
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 9h18M7 6.5h.1M10 6.5h.1M15 12v6M12 15h6" })
229
- ] }),
230
- "folder-plus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
231
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 6h7l2 2h9v11H3V6Z" }),
232
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M16 11v6M13 14h6" })
233
- ] }),
234
- pin: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 3h8l-1.5 5 3 3v2H13v8l-2-2v-6H6.5v-2l3-3L8 3Z" }) }),
235
- "pin-off": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9.5 8 8 3h8l-1.5 5 3 3v2H13v4M6.5 13v-2l1-1M3 3l18 18" }) }),
236
- stop: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
237
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
238
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 18 18 6" })
239
- ] }),
240
- "help-circle": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
241
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
242
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
243
- ] }),
244
- save: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
245
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 3h13l3 3v15H4V3Z" }),
246
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 3v6h8V3M8 21v-7h8v7" })
247
- ] }),
248
- clipboard: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
249
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
250
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 4.5V3h6v1.5M9 9h6M9 13h6M9 17h4" })
251
- ] }),
252
- "clipboard-check": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
253
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
254
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 4.5V3h6v1.5m-6 9 2 2 4-5" })
255
- ] }),
256
- "file-plus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
257
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
258
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 3v5h4M12 11v6M9 14h6" })
259
- ] }),
260
- "file-check": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
261
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
262
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 3v5h4m-8 6 2 2 4-5" })
263
- ] }),
264
- "file-warning": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
265
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
266
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 3v5h4M12 11v4m0 3v.1" })
267
- ] }),
268
- "file-spreadsheet": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
269
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
270
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 3v5h4M8.5 11h7v7h-7v-7Zm0 3.5h7M12 11v7" })
271
- ] }),
272
- "align-left": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 6h16M4 10h11M4 14h16M4 18h11" }),
273
- "align-center": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 6h16M7 10h10M4 14h16M7 18h10" }),
274
- "align-right": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 6h16M9 10h11M4 14h16M9 18h11" }),
275
- "align-justify": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 6h16M4 10h16M4 14h16M4 18h16" }),
276
- bold: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 4h6a4 4 0 0 1 0 8H7V4Zm0 8h7a4 4 0 0 1 0 8H7v-8Z" }),
277
- italic: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 4h8M6 20h8M14 4 10 20" }),
278
- underline: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 4v7a5 5 0 0 0 10 0V4M5 21h14" }) }),
279
- strikethrough: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.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" }) }),
280
- "list-ordered": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
281
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
282
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 5h1v3M4 11h2l-2 3h2M4 17h2l-2 3h2" })
283
- ] }),
284
- "list-unordered": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
285
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
286
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "4.5", cy: "6", r: ".5" }),
287
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "4.5", cy: "12", r: ".5" }),
288
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "4.5", cy: "18", r: ".5" })
289
- ] }),
290
- eraser: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
291
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4 15 8-10 8 7-7 8H7l-3-3v-2Z" }),
292
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9 9 8 7M13 20h8" })
293
- ] }),
294
- highlighter: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
295
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m7 14 7-10 5 4-8 9-4-3Z" }),
296
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 17 6 3H3l2-3ZM15 14l4 3" })
297
- ] }),
298
- table: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
299
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
300
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 9h18M3 14h18M9 4v16M15 4v16" })
301
- ] }),
302
- columns: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
303
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
304
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 4v16" })
305
- ] }),
306
- rows: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
307
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
308
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 9h18M3 15h18" })
309
- ] }),
310
- "bar-chart": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 21V10h4v11M10 21V4h4v17M16 21v-8h4v8M3 21h18" }) }),
311
- "line-chart": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
312
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9" }),
313
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "9", cy: "11", r: "1" }),
314
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "13", cy: "14", r: "1" })
315
- ] }),
316
- "pie-chart": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
317
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M11 3a9 9 0 1 0 9 9h-9V3Z" }),
318
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 3.5A8.5 8.5 0 0 1 20.5 10H14V3.5Z" })
319
- ] }),
320
- "area-chart": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9v12H4Z" }) }),
321
- activity: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12h4l2-6 4 13 3-7h5" }),
322
- "trending-up": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
323
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4 17 6-6 4 4 6-7" }),
324
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15 8h5v5" })
325
- ] }),
326
- "trending-down": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
327
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4 7 6 6 4-4 6 7" }),
328
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15 16h5v-5" })
329
- ] }),
330
- database: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
331
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("ellipse", { cx: "12", cy: "5", rx: "8", ry: "3" }),
332
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
333
- ] }),
334
- cloud: /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
335
- "cloud-download": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
336
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
337
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 11v10m-4-4 4 4 4-4" })
338
- ] }),
339
- "cloud-upload": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
340
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
341
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 21V11m-4 4 4-4 4 4" })
342
- ] }),
343
- server: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
344
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "4", width: "18", height: "7", rx: "2" }),
345
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "13", width: "18", height: "7", rx: "2" }),
346
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 7.5h.1M7 16.5h.1M11 7.5h6M11 16.5h6" })
347
- ] }),
348
- desktop: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
349
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "3", width: "18", height: "14", rx: "2" }),
350
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 21h8M12 17v4" })
351
- ] }),
352
- laptop: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
353
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5 5h14v11H5V5Z" }),
354
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m3 19 2-3h14l2 3H3Z" })
355
- ] }),
356
- mobile: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
357
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "7", y: "2", width: "10", height: "20", rx: "2.5" }),
358
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 5h4M12 19v.1" })
359
- ] }),
360
- tablet: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
361
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
362
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 5h4M12 19v.1" })
363
- ] }),
364
- printer: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
365
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 9V3h10v6M6 18H4V9h16v9h-2" }),
366
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 14h10v7H7v-7ZM17 11h.1" })
367
- ] }),
368
- camera: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
369
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 7h4l2-3h6l2 3h4v13H3V7Z" }),
370
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "13", r: "4" })
371
- ] }),
372
- video: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
373
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "5", width: "13", height: "14", rx: "2" }),
374
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m16 10 5-3v10l-5-3v-4Z" })
375
- ] }),
376
- microphone: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
377
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "9", y: "3", width: "6", height: "12", rx: "3" }),
378
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5 11a7 7 0 0 0 14 0M12 18v3M8 21h8" })
379
- ] }),
380
- "volume-up": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
381
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4Z" }),
382
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M16 9a4 4 0 0 1 0 6M18.5 6.5a8 8 0 0 1 0 11" })
383
- ] }),
384
- "volume-off": /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4ZM17 9l5 6m0-6-5 6" }) }),
385
- "speaker-wave": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
386
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
387
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15.2 9.2a4 4 0 0 1 0 5.6" })
388
- ] }),
389
- "speaker-muted": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
390
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
391
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15.5 9.5 5 5m0-5-5 5" })
392
- ] }),
393
- wifi: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.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" }) }),
394
- power: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
395
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3v9" }),
396
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 5.5a8 8 0 1 0 10 0" })
397
- ] }),
398
- key: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
399
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "8", cy: "15", r: "4" }),
400
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m11 12 8-8m-3 3 3 3m-6 0 3 3" })
401
- ] }),
402
- shield: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
403
- "shield-check": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
404
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
405
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8 12 2.5 2.5L16 9" })
406
- ] }),
407
- bug: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.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" }) }),
408
- bulb: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
409
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
410
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9.5 21h5" })
411
- ] }),
412
- rocket: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
413
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
414
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 14c0 3-2 6-5 7 0-2 0-4-1-5M5 19l-2 2" })
415
- ] }),
416
- target: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
417
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
418
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "5" }),
419
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "1" })
420
- ] }),
421
- trophy: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
422
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 4h8v5a4 4 0 0 1-8 0V4ZM9 20h6M12 13v7" }),
423
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 6H4v2a4 4 0 0 0 5 4M16 6h4v2a4 4 0 0 1-5 4" })
424
- ] }),
425
- "shopping-cart": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
426
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 4h2l2 11h10l3-8H6" }),
427
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "9", cy: "20", r: "1" }),
428
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "17", cy: "20", r: "1" })
429
- ] }),
430
- "shopping-bag": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
431
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5 8h14l1 13H4L5 8Z" }),
432
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 9V6a3 3 0 0 1 6 0v3" })
433
- ] }),
434
- shop: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
435
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 10v11h16V10M3 4h18l-2 6H5L3 4Z" }),
436
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 21v-6h6v6" })
437
- ] }),
438
- wallet: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
439
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "5", width: "18", height: "15", rx: "2.5" }),
440
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 9h18M15 13h6v4h-6a2 2 0 0 1 0-4Z" })
441
- ] }),
442
- bank: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m3 9 9-6 9 6M5 10h14M6 10v8M10 10v8M14 10v8M18 10v8M3 21h18M4 18h16" }) }),
443
- calculator: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
444
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
445
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 5h8v4H8V5ZM8 13h.1M12 13h.1M16 13h.1M8 17h.1M12 17h.1M16 17h.1" })
446
- ] }),
447
- tag: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
448
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12V4h8l10 10-7 7L3 12Z" }),
449
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "7.5", cy: "8.5", r: "1" })
450
- ] }),
451
- tags: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
452
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 12V4h7l8 8-6 6-9-6Z" }),
453
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "10", cy: "8", r: "1" }),
454
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m3 8 1 9 7 4 2-2" })
455
- ] }),
456
- message: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 4h16v13H9l-5 4V4Z" }),
457
- comments: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
458
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 4h13v10H8l-5 4V4Z" }),
459
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 17h6l5 4V8h-2" })
460
- ] }),
461
- send: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m3 11 18-8-8 18-2-8-8-2Zm8 2 10-10" }),
462
- share: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
463
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "18", cy: "5", r: "3" }),
464
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "6", cy: "12", r: "3" }),
465
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "18", cy: "19", r: "3" }),
466
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8.5 10.5 7-4M8.5 13.5l7 4" })
467
- ] }),
468
- paperclip: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8 12 7-7a4 4 0 0 1 6 6l-9 9a6 6 0 0 1-9-9l8-8" }),
469
- location: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
470
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 22s7-6.2 7-13a7 7 0 1 0-14 0c0 6.8 7 13 7 13Z" }),
471
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "9", r: "2.5" })
472
- ] }),
473
- compass: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
474
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
475
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15.5 8.5-2 5-5 2 2-5 5-2Z" })
476
- ] }),
477
- car: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
478
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 15V9l2-5h12l2 5v6M3 10h18M6 15h12" }),
479
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "7", cy: "18", r: "2" }),
480
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "17", cy: "18", r: "2" })
481
- ] }),
482
- truck: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
483
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 5h11v12H3V5ZM14 9h4l3 4v4h-7V9Z" }),
484
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "7", cy: "19", r: "2" }),
485
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "18", cy: "19", r: "2" })
486
- ] }),
487
- gift: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
488
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "9", width: "18", height: "12", rx: "2" }),
489
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 9v12M3 13h18M12 9H8a3 3 0 1 1 4-3v3Zm0 0h4a3 3 0 1 0-4-3v3Z" })
490
- ] }),
491
- coffee: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
492
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
493
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 4v1M12 3v2" })
494
- ] }),
495
- experiment: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
496
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 3h6M10 3v6l-6 10a2 2 0 0 0 2 3h12a2 2 0 0 0 2-3L14 9V3" }),
497
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 16h10" })
498
- ] }),
499
- tool: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.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" }) }),
500
- appstore: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
501
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "2" }),
502
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "2" }),
503
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "2" }),
504
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "14", y: "14", width: "7", height: "7", rx: "2" })
505
- ] }),
506
- puzzle: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime3.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" }) }),
507
- partition: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
508
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 5v5M6 14v-2h12v2M6 18v3M12 18v3M18 18v3" }),
509
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "3", r: "2" }),
510
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "6", cy: "16", r: "2" }),
511
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "16", r: "2" }),
512
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "18", cy: "16", r: "2" })
513
- ] }),
514
- branches: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
515
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "6", cy: "5", r: "2" }),
516
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "18", cy: "7", r: "2" }),
517
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "6", cy: "19", r: "2" }),
518
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 7v10M8 10c6 0 4-3 8-3M8 14c6 0 4 3 8 3" })
519
- ] }),
520
- scan: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 3H3v5M16 3h5v5M8 21H3v-5M16 21h5v-5M7 12h10" }),
521
- "qr-code": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
522
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "1" }),
523
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "1" }),
524
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "1" }),
525
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 14h3v3h-3v-3ZM18 18h3v3h-3v-3ZM14 20h1M20 14h1" })
526
- ] }),
527
- barcode: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 5v14M7 5v14M11 5v14M14 5v14M16 5v14M20 5v14" }),
528
- "user-plus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
529
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
530
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
531
- ] }),
532
- "user-minus": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
533
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
534
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
535
- ] }),
536
- smile: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
537
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
538
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 10h.1M16 10h.1M8 15c1 1.4 2.3 2 4 2s3-.6 4-2" })
539
- ] }),
540
- meh: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
541
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
542
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 10h.1M16 10h.1M8 16h8" })
543
- ] }),
544
- frown: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
545
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
546
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 10h.1M16 10h.1M8 17c1-1.4 2.3-2 4-2s3 .6 4 2" })
547
- ] }),
548
- "game-cultivator": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
549
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7.2 7.5h9.6M9 5.2 12 2l3 3.2" }),
550
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "8.8", r: "3.6" }),
551
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
552
- ] }),
553
- "game-swordsman": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
554
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9.2 5.2h5.6M12 2.5v2.7" }),
555
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "8.8", r: "3.4" }),
556
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
557
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m17.7 5.1 2.2-1-.9 2.3-5.2 5.2M16.2 7.8l1.8 1.8" })
558
- ] }),
559
- "game-spirit-wolf": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
560
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
561
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
562
- ] }),
563
- "game-gem": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
564
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4 8 3-4h10l3 4-8 13L4 8Z" }),
565
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 8h16M8 4l-2 4 6 13 6-13-2-4M6 8h12" })
566
- ] }),
567
- "game-ingot": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
568
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
569
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
570
- ] }),
571
- "game-sword": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
572
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m14.5 4.5 5-1-1 5L9 18l-3 1 1-3 9.5-9.5M5 19l-1 1" }),
573
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m12.5 7.5 4 4M7.5 14.5l2 2" })
574
- ] }),
575
- "game-robe": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
576
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
577
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 4.5 12 9l3-4.5M12 9v12" })
578
- ] }),
579
- "game-pants": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
580
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 3h10l1 18h-5l-1-10-1 10H6L7 3Z" }),
581
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 7h10M12 3v8" })
582
- ] }),
583
- "game-pendant": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
584
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5 4c1.7 4.4 4 6.6 7 6.6S17.3 8.4 19 4" }),
585
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
586
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "16.5", r: "1.5" })
587
- ] }),
588
- "game-necklace": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
589
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5 4c.7 6.3 3 9.5 7 9.5S18.3 10.3 19 4" }),
590
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m12 13.5 3 2.4-1.2 4.1h-3.6L9 15.9l3-2.4Z" }),
591
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 7h.1m10 0h.1M9 10h.1m6 0h.1" })
592
- ] }),
593
- "game-pill": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
594
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
595
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8 8 8 8" }),
596
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6.3 12.2c1.3.2 2.5.7 3.5 1.7s1.6 2.2 1.8 3.5" })
597
- ] }),
598
- "game-potion": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
599
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
600
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 15h10M9.5 12h5" })
601
- ] }),
602
- "game-elixir-jar": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
603
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
604
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8.5 7h7M5 14h14M9 17h6" })
605
- ] }),
606
- "game-flame": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
607
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
608
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
609
- ] }),
610
- "game-soul-elixir": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
611
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "4.2" }),
612
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
613
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m10 12 1.4 1.4L14.5 10" })
614
- ] }),
615
- "game-herb": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
616
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 21V9" }),
617
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
618
- ] }),
619
- "game-meditate": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
620
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "5.5", r: "2.5" }),
621
- /* @__PURE__ */ (0, import_jsx_runtime3.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" }),
622
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9.5 14.5 2.5 3.4 2.5-3.4" })
623
- ] }),
624
- "game-backpack": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
625
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 8V5.5a4 4 0 0 1 8 0V8M6 8h12l2 13H4L6 8Z" }),
626
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8.5 13h7v5h-7v-5ZM9 5.5h6" })
627
- ] }),
628
- "game-qi": /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
629
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
630
- /* @__PURE__ */ (0, import_jsx_runtime3.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" })
395
+ "notepad-file": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
396
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
397
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
398
+ ] }),
399
+ "notepad-folder": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: /* @__PURE__ */ (0, import_jsx_runtime5.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" }) }),
400
+ "notepad-virtual-folder": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("g", { transform: "scale(0.0234375)", fill: "currentColor", stroke: "none", children: [
401
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
402
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
403
+ ] }),
404
+ "step-backward": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
405
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M6 5v14" }),
406
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m18 6-8 6 8 6V6Z" })
407
+ ] }),
408
+ "step-forward": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
409
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M18 5v14" }),
410
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m6 6 8 6-8 6V6Z" })
411
+ ] }),
412
+ "fast-backward": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m11 6-7 6 7 6V6ZM20 6l-7 6 7 6V6Z" }) }),
413
+ "fast-forward": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m13 6 7 6-7 6V6ZM4 6l7 6-7 6V6Z" }) }),
414
+ "corner-up-left": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
415
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m9 5-5 5 5 5" }),
416
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 10h9a7 7 0 0 1 7 7v2" })
417
+ ] }),
418
+ "corner-up-right": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
419
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m15 5 5 5-5 5" }),
420
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M20 10h-9a7 7 0 0 0-7 7v2" })
421
+ ] }),
422
+ "swap-horizontal": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
423
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 8h15m0 0-4-4m4 4-4 4" }),
424
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M20 16H5m0 0 4-4m-4 4 4 4" })
425
+ ] }),
426
+ "swap-vertical": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
427
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 4v15m0 0-4-4m4 4 4-4" }),
428
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M16 20V5m0 0-4 4m4-4 4 4" })
429
+ ] }),
430
+ expand: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9 4H4v5M4 4l6 6M15 20h5v-5m0 5-6-6" }) }),
431
+ shrink: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M10 10H5V5m0 5 6-6M14 14h5v5m0-5-6 6" }) }),
432
+ fullscreen: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9 4H4v5M15 4h5v5M9 20H4v-5M15 20h5v-5" }),
433
+ "fullscreen-exit": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 9h5V4M20 9h-5V4M4 15h5v5M20 15h-5v5" }),
434
+ "menu-fold": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
435
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 6h16M4 12h10M4 18h16" }),
436
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m18 9-3 3 3 3" })
437
+ ] }),
438
+ "menu-unfold": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
439
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 6h16M10 12h10M4 18h16" }),
440
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m6 9 3 3-3 3" })
441
+ ] }),
442
+ login: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M10 5H5v14h5M13 8l4 4-4 4M8 12h9" }) }),
443
+ logout: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M14 5h5v14h-5M11 8l-4 4 4 4M16 12H7" }) }),
444
+ move: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
445
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 3v18M3 12h18" }),
446
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m9 6 3-3 3 3M9 18l3 3 3-3M6 9l-3 3 3 3M18 9l3 3-3 3" })
447
+ ] }),
448
+ "vertical-align-top": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 4h16M12 7v13M8 11l4-4 4 4" }) }),
449
+ "vertical-align-middle": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 12h16M12 4v16M8 8l4 4 4-4M8 16l4-4 4 4" }) }),
450
+ "vertical-align-bottom": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 20h16M12 4v13M8 13l4 4 4-4" }) }),
451
+ "square-plus": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
452
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
453
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 8v8M8 12h8" })
454
+ ] }),
455
+ "square-minus": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
456
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
457
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 12h8" })
458
+ ] }),
459
+ "square-check": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
460
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
461
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m8 12 3 3 6-7" })
462
+ ] }),
463
+ "square-close": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
464
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "3" }),
465
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m8.5 8.5 7 7m0-7-7 7" })
466
+ ] }),
467
+ "tab-plus": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
468
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2.5" }),
469
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 9h18M7 6.5h.1M10 6.5h.1M15 12v6M12 15h6" })
470
+ ] }),
471
+ "folder-plus": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
472
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 6h7l2 2h9v11H3V6Z" }),
473
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M16 11v6M13 14h6" })
474
+ ] }),
475
+ pin: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 3h8l-1.5 5 3 3v2H13v8l-2-2v-6H6.5v-2l3-3L8 3Z" }) }),
476
+ "pin-off": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9.5 8 8 3h8l-1.5 5 3 3v2H13v4M6.5 13v-2l1-1M3 3l18 18" }) }),
477
+ stop: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
478
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
479
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M6 18 18 6" })
480
+ ] }),
481
+ "help-circle": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
482
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
483
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
484
+ ] }),
485
+ save: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
486
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 3h13l3 3v15H4V3Z" }),
487
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 3v6h8V3M8 21v-7h8v7" })
488
+ ] }),
489
+ clipboard: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
490
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
491
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9 4.5V3h6v1.5M9 9h6M9 13h6M9 17h4" })
492
+ ] }),
493
+ "clipboard-check": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
494
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "5", y: "4", width: "14", height: "17", rx: "2.5" }),
495
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9 4.5V3h6v1.5m-6 9 2 2 4-5" })
496
+ ] }),
497
+ "file-plus": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
498
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
499
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M14 3v5h4M12 11v6M9 14h6" })
500
+ ] }),
501
+ "file-check": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
502
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
503
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M14 3v5h4m-8 6 2 2 4-5" })
504
+ ] }),
505
+ "file-warning": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
506
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
507
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M14 3v5h4M12 11v4m0 3v.1" })
508
+ ] }),
509
+ "file-spreadsheet": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
510
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
511
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M14 3v5h4M8.5 11h7v7h-7v-7Zm0 3.5h7M12 11v7" })
512
+ ] }),
513
+ "align-left": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 6h16M4 10h11M4 14h16M4 18h11" }),
514
+ "align-center": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 6h16M7 10h10M4 14h16M7 18h10" }),
515
+ "align-right": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 6h16M9 10h11M4 14h16M9 18h11" }),
516
+ "align-justify": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 6h16M4 10h16M4 14h16M4 18h16" }),
517
+ bold: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 4h6a4 4 0 0 1 0 8H7V4Zm0 8h7a4 4 0 0 1 0 8H7v-8Z" }),
518
+ italic: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M10 4h8M6 20h8M14 4 10 20" }),
519
+ underline: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 4v7a5 5 0 0 0 10 0V4M5 21h14" }) }),
520
+ strikethrough: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.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" }) }),
521
+ "list-ordered": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
522
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
523
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 5h1v3M4 11h2l-2 3h2M4 17h2l-2 3h2" })
524
+ ] }),
525
+ "list-unordered": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
526
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9 6h12M9 12h12M9 18h12" }),
527
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "4.5", cy: "6", r: ".5" }),
528
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "4.5", cy: "12", r: ".5" }),
529
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "4.5", cy: "18", r: ".5" })
530
+ ] }),
531
+ eraser: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
532
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m4 15 8-10 8 7-7 8H7l-3-3v-2Z" }),
533
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m9 9 8 7M13 20h8" })
534
+ ] }),
535
+ highlighter: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
536
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m7 14 7-10 5 4-8 9-4-3Z" }),
537
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m5 17 6 3H3l2-3ZM15 14l4 3" })
538
+ ] }),
539
+ table: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
540
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
541
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 9h18M3 14h18M9 4v16M15 4v16" })
542
+ ] }),
543
+ columns: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
544
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
545
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 4v16" })
546
+ ] }),
547
+ rows: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
548
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
549
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 9h18M3 15h18" })
550
+ ] }),
551
+ "bar-chart": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 21V10h4v11M10 21V4h4v17M16 21v-8h4v8M3 21h18" }) }),
552
+ "line-chart": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
553
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9" }),
554
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "9", cy: "11", r: "1" }),
555
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "13", cy: "14", r: "1" })
556
+ ] }),
557
+ "pie-chart": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
558
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M11 3a9 9 0 1 0 9 9h-9V3Z" }),
559
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M14 3.5A8.5 8.5 0 0 1 20.5 10H14V3.5Z" })
560
+ ] }),
561
+ "area-chart": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 20h18M4 17l5-6 4 3 7-9v12H4Z" }) }),
562
+ activity: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 12h4l2-6 4 13 3-7h5" }),
563
+ "trending-up": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
564
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m4 17 6-6 4 4 6-7" }),
565
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M15 8h5v5" })
566
+ ] }),
567
+ "trending-down": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
568
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m4 7 6 6 4-4 6 7" }),
569
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M15 16h5v-5" })
570
+ ] }),
571
+ database: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
572
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("ellipse", { cx: "12", cy: "5", rx: "8", ry: "3" }),
573
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
574
+ ] }),
575
+ cloud: /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
576
+ "cloud-download": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
577
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
578
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 11v10m-4-4 4 4 4-4" })
579
+ ] }),
580
+ "cloud-upload": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
581
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
582
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 21V11m-4 4 4-4 4 4" })
583
+ ] }),
584
+ server: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
585
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "4", width: "18", height: "7", rx: "2" }),
586
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "13", width: "18", height: "7", rx: "2" }),
587
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 7.5h.1M7 16.5h.1M11 7.5h6M11 16.5h6" })
588
+ ] }),
589
+ desktop: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
590
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "3", width: "18", height: "14", rx: "2" }),
591
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 21h8M12 17v4" })
592
+ ] }),
593
+ laptop: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
594
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M5 5h14v11H5V5Z" }),
595
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m3 19 2-3h14l2 3H3Z" })
596
+ ] }),
597
+ mobile: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
598
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "7", y: "2", width: "10", height: "20", rx: "2.5" }),
599
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M10 5h4M12 19v.1" })
600
+ ] }),
601
+ tablet: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
602
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
603
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M10 5h4M12 19v.1" })
604
+ ] }),
605
+ printer: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
606
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 9V3h10v6M6 18H4V9h16v9h-2" }),
607
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 14h10v7H7v-7ZM17 11h.1" })
608
+ ] }),
609
+ camera: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
610
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 7h4l2-3h6l2 3h4v13H3V7Z" }),
611
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "13", r: "4" })
612
+ ] }),
613
+ video: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
614
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "5", width: "13", height: "14", rx: "2" }),
615
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m16 10 5-3v10l-5-3v-4Z" })
616
+ ] }),
617
+ microphone: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
618
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "9", y: "3", width: "6", height: "12", rx: "3" }),
619
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M5 11a7 7 0 0 0 14 0M12 18v3M8 21h8" })
620
+ ] }),
621
+ "volume-up": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
622
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4Z" }),
623
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M16 9a4 4 0 0 1 0 6M18.5 6.5a8 8 0 0 1 0 11" })
624
+ ] }),
625
+ "volume-off": /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 10h4l5-4v12l-5-4H4v-4ZM17 9l5 6m0-6-5 6" }) }),
626
+ "speaker-wave": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
627
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
628
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M15.2 9.2a4 4 0 0 1 0 5.6" })
629
+ ] }),
630
+ "speaker-muted": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
631
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 10h3.5l4.7-3.6v11.2L7.5 14H4v-4Z", fill: "currentColor", stroke: "none" }),
632
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m15.5 9.5 5 5m0-5-5 5" })
633
+ ] }),
634
+ wifi: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.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" }) }),
635
+ power: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
636
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 3v9" }),
637
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 5.5a8 8 0 1 0 10 0" })
638
+ ] }),
639
+ key: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
640
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "8", cy: "15", r: "4" }),
641
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m11 12 8-8m-3 3 3 3m-6 0 3 3" })
642
+ ] }),
643
+ shield: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
644
+ "shield-check": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
645
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 3 4 6v6c0 5 3 8 8 10 5-2 8-5 8-10V6l-8-3Z" }),
646
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m8 12 2.5 2.5L16 9" })
647
+ ] }),
648
+ bug: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.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" }) }),
649
+ bulb: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
650
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
651
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9.5 21h5" })
652
+ ] }),
653
+ rocket: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
654
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
655
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M14 14c0 3-2 6-5 7 0-2 0-4-1-5M5 19l-2 2" })
656
+ ] }),
657
+ target: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
658
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
659
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "5" }),
660
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "1" })
661
+ ] }),
662
+ trophy: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
663
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 4h8v5a4 4 0 0 1-8 0V4ZM9 20h6M12 13v7" }),
664
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 6H4v2a4 4 0 0 0 5 4M16 6h4v2a4 4 0 0 1-5 4" })
665
+ ] }),
666
+ "shopping-cart": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
667
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 4h2l2 11h10l3-8H6" }),
668
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "9", cy: "20", r: "1" }),
669
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "17", cy: "20", r: "1" })
670
+ ] }),
671
+ "shopping-bag": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
672
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M5 8h14l1 13H4L5 8Z" }),
673
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9 9V6a3 3 0 0 1 6 0v3" })
674
+ ] }),
675
+ shop: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
676
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 10v11h16V10M3 4h18l-2 6H5L3 4Z" }),
677
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9 21v-6h6v6" })
678
+ ] }),
679
+ wallet: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
680
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "5", width: "18", height: "15", rx: "2.5" }),
681
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 9h18M15 13h6v4h-6a2 2 0 0 1 0-4Z" })
682
+ ] }),
683
+ bank: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m3 9 9-6 9 6M5 10h14M6 10v8M10 10v8M14 10v8M18 10v8M3 21h18M4 18h16" }) }),
684
+ calculator: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
685
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2.5" }),
686
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 5h8v4H8V5ZM8 13h.1M12 13h.1M16 13h.1M8 17h.1M12 17h.1M16 17h.1" })
687
+ ] }),
688
+ tag: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
689
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 12V4h8l10 10-7 7L3 12Z" }),
690
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "7.5", cy: "8.5", r: "1" })
691
+ ] }),
692
+ tags: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
693
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M6 12V4h7l8 8-6 6-9-6Z" }),
694
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "10", cy: "8", r: "1" }),
695
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m3 8 1 9 7 4 2-2" })
696
+ ] }),
697
+ message: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 4h16v13H9l-5 4V4Z" }),
698
+ comments: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
699
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 4h13v10H8l-5 4V4Z" }),
700
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M10 17h6l5 4V8h-2" })
701
+ ] }),
702
+ send: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m3 11 18-8-8 18-2-8-8-2Zm8 2 10-10" }),
703
+ share: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
704
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "18", cy: "5", r: "3" }),
705
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "6", cy: "12", r: "3" }),
706
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "18", cy: "19", r: "3" }),
707
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m8.5 10.5 7-4M8.5 13.5l7 4" })
708
+ ] }),
709
+ paperclip: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m8 12 7-7a4 4 0 0 1 6 6l-9 9a6 6 0 0 1-9-9l8-8" }),
710
+ location: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
711
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 22s7-6.2 7-13a7 7 0 1 0-14 0c0 6.8 7 13 7 13Z" }),
712
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "9", r: "2.5" })
713
+ ] }),
714
+ compass: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
715
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
716
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m15.5 8.5-2 5-5 2 2-5 5-2Z" })
717
+ ] }),
718
+ car: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
719
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 15V9l2-5h12l2 5v6M3 10h18M6 15h12" }),
720
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "7", cy: "18", r: "2" }),
721
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "17", cy: "18", r: "2" })
722
+ ] }),
723
+ truck: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
724
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M3 5h11v12H3V5ZM14 9h4l3 4v4h-7V9Z" }),
725
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "7", cy: "19", r: "2" }),
726
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "18", cy: "19", r: "2" })
727
+ ] }),
728
+ gift: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
729
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "9", width: "18", height: "12", rx: "2" }),
730
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 9v12M3 13h18M12 9H8a3 3 0 1 1 4-3v3Zm0 0h4a3 3 0 1 0-4-3v3Z" })
731
+ ] }),
732
+ coffee: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
733
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
734
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 4v1M12 3v2" })
735
+ ] }),
736
+ experiment: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
737
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9 3h6M10 3v6l-6 10a2 2 0 0 0 2 3h12a2 2 0 0 0 2-3L14 9V3" }),
738
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 16h10" })
739
+ ] }),
740
+ tool: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.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" }) }),
741
+ appstore: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
742
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "2" }),
743
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "2" }),
744
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "2" }),
745
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "14", y: "14", width: "7", height: "7", rx: "2" })
746
+ ] }),
747
+ puzzle: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime5.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" }) }),
748
+ partition: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
749
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 5v5M6 14v-2h12v2M6 18v3M12 18v3M18 18v3" }),
750
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "3", r: "2" }),
751
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "6", cy: "16", r: "2" }),
752
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "16", r: "2" }),
753
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "18", cy: "16", r: "2" })
754
+ ] }),
755
+ branches: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
756
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "6", cy: "5", r: "2" }),
757
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "18", cy: "7", r: "2" }),
758
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "6", cy: "19", r: "2" }),
759
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M6 7v10M8 10c6 0 4-3 8-3M8 14c6 0 4 3 8 3" })
760
+ ] }),
761
+ scan: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 3H3v5M16 3h5v5M8 21H3v-5M16 21h5v-5M7 12h10" }),
762
+ "qr-code": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
763
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "3", width: "7", height: "7", rx: "1" }),
764
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "14", y: "3", width: "7", height: "7", rx: "1" }),
765
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("rect", { x: "3", y: "14", width: "7", height: "7", rx: "1" }),
766
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M14 14h3v3h-3v-3ZM18 18h3v3h-3v-3ZM14 20h1M20 14h1" })
767
+ ] }),
768
+ barcode: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 5v14M7 5v14M11 5v14M14 5v14M16 5v14M20 5v14" }),
769
+ "user-plus": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
770
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
771
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
772
+ ] }),
773
+ "user-minus": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
774
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "10", cy: "8", r: "4" }),
775
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
776
+ ] }),
777
+ smile: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
778
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
779
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 10h.1M16 10h.1M8 15c1 1.4 2.3 2 4 2s3-.6 4-2" })
780
+ ] }),
781
+ meh: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
782
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
783
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 10h.1M16 10h.1M8 16h8" })
784
+ ] }),
785
+ frown: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
786
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
787
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 10h.1M16 10h.1M8 17c1-1.4 2.3-2 4-2s3 .6 4 2" })
788
+ ] }),
789
+ "game-cultivator": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
790
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7.2 7.5h9.6M9 5.2 12 2l3 3.2" }),
791
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "8.8", r: "3.6" }),
792
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
793
+ ] }),
794
+ "game-swordsman": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
795
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9.2 5.2h5.6M12 2.5v2.7" }),
796
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "8.8", r: "3.4" }),
797
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
798
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m17.7 5.1 2.2-1-.9 2.3-5.2 5.2M16.2 7.8l1.8 1.8" })
799
+ ] }),
800
+ "game-spirit-wolf": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
801
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
802
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
803
+ ] }),
804
+ "game-gem": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
805
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m4 8 3-4h10l3 4-8 13L4 8Z" }),
806
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M4 8h16M8 4l-2 4 6 13 6-13-2-4M6 8h12" })
807
+ ] }),
808
+ "game-ingot": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
809
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
810
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
811
+ ] }),
812
+ "game-sword": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
813
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m14.5 4.5 5-1-1 5L9 18l-3 1 1-3 9.5-9.5M5 19l-1 1" }),
814
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m12.5 7.5 4 4M7.5 14.5l2 2" })
815
+ ] }),
816
+ "game-robe": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
817
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
818
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M9 4.5 12 9l3-4.5M12 9v12" })
819
+ ] }),
820
+ "game-pants": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
821
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 3h10l1 18h-5l-1-10-1 10H6L7 3Z" }),
822
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 7h10M12 3v8" })
823
+ ] }),
824
+ "game-pendant": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
825
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M5 4c1.7 4.4 4 6.6 7 6.6S17.3 8.4 19 4" }),
826
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
827
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "16.5", r: "1.5" })
828
+ ] }),
829
+ "game-necklace": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
830
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M5 4c.7 6.3 3 9.5 7 9.5S18.3 10.3 19 4" }),
831
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m12 13.5 3 2.4-1.2 4.1h-3.6L9 15.9l3-2.4Z" }),
832
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 7h.1m10 0h.1M9 10h.1m6 0h.1" })
833
+ ] }),
834
+ "game-pill": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
835
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
836
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m8 8 8 8" }),
837
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M6.3 12.2c1.3.2 2.5.7 3.5 1.7s1.6 2.2 1.8 3.5" })
838
+ ] }),
839
+ "game-potion": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
840
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
841
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 15h10M9.5 12h5" })
842
+ ] }),
843
+ "game-elixir-jar": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
844
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
845
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8.5 7h7M5 14h14M9 17h6" })
846
+ ] }),
847
+ "game-flame": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
848
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
849
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
850
+ ] }),
851
+ "game-soul-elixir": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
852
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "4.2" }),
853
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
854
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m10 12 1.4 1.4L14.5 10" })
855
+ ] }),
856
+ "game-herb": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
857
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 21V9" }),
858
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
859
+ ] }),
860
+ "game-meditate": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
861
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "5.5", r: "2.5" }),
862
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" }),
863
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m9.5 14.5 2.5 3.4 2.5-3.4" })
864
+ ] }),
865
+ "game-backpack": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
866
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8 8V5.5a4 4 0 0 1 8 0V8M6 8h12l2 13H4L6 8Z" }),
867
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M8.5 13h7v5h-7v-5ZM9 5.5h6" })
868
+ ] }),
869
+ "game-qi": /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(import_jsx_runtime5.Fragment, { children: [
870
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
871
+ /* @__PURE__ */ (0, import_jsx_runtime5.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" })
631
872
  ] })
632
873
  };
633
874
 
634
875
  // src/components/Icon.tsx
635
- var import_jsx_runtime4 = require("react/jsx-runtime");
876
+ var import_jsx_runtime6 = require("react/jsx-runtime");
636
877
  var coreIconPaths = {
637
- search: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
638
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
639
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m15.8 15.8 5.2 5.2" })
640
- ] }),
641
- plus: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 4v16M4 12h16" }),
642
- minus: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 12h16" }),
643
- close: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m5 5 14 14M19 5 5 19" }),
644
- check: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m4 12.5 5.2 5L20 6.5" }),
645
- info: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
646
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
647
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 11v6M12 7.2v.1" })
648
- ] }),
649
- question: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
650
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
651
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
652
- ] }),
653
- warning: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
654
- /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
655
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 9v4M12 17v.1" })
656
- ] }),
657
- "circle-check": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
658
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
659
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m8 12 2.7 2.7L16.5 9" })
660
- ] }),
661
- "circle-close": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
662
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
663
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m9 9 6 6M15 9l-6 6" })
664
- ] }),
665
- "circle-plus": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
666
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
667
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 8v8M8 12h8" })
668
- ] }),
669
- "circle-minus": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
670
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
671
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 12h8" })
672
- ] }),
673
- "chevron-left": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m15.5 5-7 7 7 7" }),
674
- "chevron-right": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m8.5 5 7 7-7 7" }),
675
- "chevron-up": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m5 15.5 7-7 7 7" }),
676
- "chevron-down": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m5 8.5 7 7 7-7" }),
677
- "double-left": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
678
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m12 5-7 7 7 7" }),
679
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m19 5-7 7 7 7" })
680
- ] }),
681
- "double-right": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
682
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m5 5 7 7-7 7" }),
683
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m12 5 7 7-7 7" })
684
- ] }),
685
- "arrow-left": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
686
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m10 5-7 7 7 7" }),
687
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 12h18" })
688
- ] }),
689
- "arrow-right": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
690
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m14 5 7 7-7 7" }),
691
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 12h18" })
692
- ] }),
693
- "arrow-up": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
694
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m5 10 7-7 7 7" }),
695
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 3v18" })
696
- ] }),
697
- "arrow-down": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
698
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m5 14 7 7 7-7" }),
699
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 3v18" })
700
- ] }),
701
- menu: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 6h16M4 12h16M4 18h16" }),
702
- "more-horizontal": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M5 12h.1M12 12h.1M19 12h.1" }),
703
- "more-vertical": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 5v.1M12 12v.1M12 19v.1" }),
704
- home: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
705
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m3.5 11 8.5-7 8.5 7" }),
706
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M5.5 9.5V20h13V9.5M9.5 20v-6h5v6" })
707
- ] }),
708
- user: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
709
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "8", r: "4" }),
710
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4.5 21c.7-4.2 3.2-6.5 7.5-6.5s6.8 2.3 7.5 6.5" })
711
- ] }),
712
- users: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
713
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "9", cy: "8", r: "3.5" }),
714
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M2.8 20c.6-3.8 2.7-5.8 6.2-5.8s5.6 2 6.2 5.8" }),
715
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
716
- ] }),
717
- settings: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
718
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "3.5" }),
719
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
720
- ] }),
721
- edit: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
722
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 20h4l11-11a2.8 2.8 0 0 0-4-4L4 16v4Z" }),
723
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m13.5 6.5 4 4M4 20h16" })
724
- ] }),
725
- copy: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
726
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "8", y: "8", width: "12", height: "12", rx: "2.5" }),
727
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M16 8V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2" })
728
- ] }),
729
- trash: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M4 7h16M9 3h6l1 4H8l1-4ZM6 7l1 14h10l1-14M10 11v6M14 11v6" }) }),
730
- scissors: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
731
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "6", cy: "7", r: "3" }),
732
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "6", cy: "17", r: "3" }),
733
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m8.7 8.3 11.3 6.2M8.7 15.7 20 9.5" })
734
- ] }),
735
- undo: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
736
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m8 7-5 5 5 5" }),
737
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 12h10a7 7 0 0 1 7 7" })
738
- ] }),
739
- redo: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
740
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m16 7 5 5-5 5" }),
741
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M21 12H11a7 7 0 0 0-7 7" })
742
- ] }),
743
- "zoom-in": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
744
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
745
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m15.8 15.8 5.2 5.2M10.8 7.8v6M7.8 10.8h6" })
746
- ] }),
747
- "zoom-out": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
748
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
749
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m15.8 15.8 5.2 5.2M7.8 10.8h6" })
750
- ] }),
751
- download: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 3v12M7 10l5 5 5-5M4 20h16" }) }),
752
- upload: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 16V4M7 9l5-5 5 5M4 20h16" }) }),
753
- refresh: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
754
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M20 4v4.686h-4.686" }),
755
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M20 8.686 17.657 6.343A8 8 0 1 0 20 12" })
756
- ] }),
757
- loader: /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
758
- calendar: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
759
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "5", width: "18", height: "16", rx: "2.5" }),
760
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 3v4M16 3v4M3 10h18M7 14h2M11 14h2M15 14h2M7 18h2M11 18h2" })
761
- ] }),
762
- clock: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
763
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
764
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 7v5l3.5 2" })
765
- ] }),
766
- mail: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
767
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "5", width: "18", height: "14", rx: "2.5" }),
768
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m4 7 8 6 8-6" })
769
- ] }),
770
- phone: /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
771
- link: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
772
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m9.5 14.5 5-5" }),
773
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
774
- ] }),
775
- "external-link": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
776
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M14 4h6v6M20 4 11 13" }),
777
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M19 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h6" })
778
- ] }),
779
- eye: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
780
- /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
781
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "3" })
782
- ] }),
783
- "eye-off": /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime4.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" }) }),
784
- lock: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
785
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "4", y: "10", width: "16", height: "11", rx: "2.5" }),
786
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 10V7a4 4 0 0 1 8 0v3M12 14v3" })
787
- ] }),
788
- unlock: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
789
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "4", y: "10", width: "16", height: "11", rx: "2.5" }),
790
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 10V7a4 4 0 0 1 7.5-2M12 14v3" })
791
- ] }),
792
- bell: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
793
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M18 9a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9Z" }),
794
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M10 21h4" })
795
- ] }),
796
- star: /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
797
- heart: /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
798
- file: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
799
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
800
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M14 3v5h4" })
801
- ] }),
802
- folder: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 6h7l2 2h9v11H3V6Z" }),
803
- image: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
804
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2.5" }),
805
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
806
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m4 17 4.5-4.5 3.5 3 2.5-2.5 5.5 5" })
807
- ] }),
808
- filter: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 5h18l-7 8v6l-4 2v-8L3 5Z" }),
809
- "sort-ascending": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
810
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 19V5M3.5 8.5 7 5l3.5 3.5" }),
811
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M13 7h8M13 12h6M13 17h4" })
812
- ] }),
813
- "sort-descending": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
814
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7 5v14M3.5 15.5 7 19l3.5-3.5" }),
815
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M13 7h4M13 12h6M13 17h8" })
816
- ] }),
817
- play: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
818
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
819
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m10 8 6 4-6 4V8Z" })
820
- ] }),
821
- pause: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
822
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
823
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M9.5 9v6M14.5 9v6" })
824
- ] }),
825
- book: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
826
- /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
827
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
828
- ] }),
829
- component: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
830
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "4", y: "4", width: "6", height: "6", rx: "1.5" }),
831
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "14", y: "4", width: "6", height: "6", rx: "1.5" }),
832
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "4", y: "14", width: "6", height: "6", rx: "1.5" }),
833
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "14", y: "14", width: "6", height: "6", rx: "1.5" })
834
- ] }),
835
- token: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
836
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
837
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
838
- ] }),
839
- sun: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
840
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "3.6" }),
841
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
842
- ] }),
843
- moon: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M20 15.2A8 8 0 0 1 8.8 4 8.5 8.5 0 1 0 20 15.2Z" }),
844
- code: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m9 18-6-6 6-6M15 6l6 6-6 6" }),
845
- github: /* @__PURE__ */ (0, import_jsx_runtime4.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" })
878
+ search: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
879
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
880
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m15.8 15.8 5.2 5.2" })
881
+ ] }),
882
+ plus: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 4v16M4 12h16" }),
883
+ minus: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M4 12h16" }),
884
+ close: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m5 5 14 14M19 5 5 19" }),
885
+ check: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m4 12.5 5.2 5L20 6.5" }),
886
+ info: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
887
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
888
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 11v6M12 7.2v.1" })
889
+ ] }),
890
+ question: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
891
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
892
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
893
+ ] }),
894
+ warning: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
895
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
896
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 9v4M12 17v.1" })
897
+ ] }),
898
+ "circle-check": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
899
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
900
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m8 12 2.7 2.7L16.5 9" })
901
+ ] }),
902
+ "circle-close": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
903
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
904
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m9 9 6 6M15 9l-6 6" })
905
+ ] }),
906
+ "circle-plus": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
907
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
908
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 8v8M8 12h8" })
909
+ ] }),
910
+ "circle-minus": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
911
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
912
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M8 12h8" })
913
+ ] }),
914
+ "chevron-left": /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m15.5 5-7 7 7 7" }),
915
+ "chevron-right": /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m8.5 5 7 7-7 7" }),
916
+ "chevron-up": /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m5 15.5 7-7 7 7" }),
917
+ "chevron-down": /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m5 8.5 7 7 7-7" }),
918
+ "double-left": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
919
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m12 5-7 7 7 7" }),
920
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m19 5-7 7 7 7" })
921
+ ] }),
922
+ "double-right": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
923
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m5 5 7 7-7 7" }),
924
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m12 5 7 7-7 7" })
925
+ ] }),
926
+ "arrow-left": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
927
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m10 5-7 7 7 7" }),
928
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M3 12h18" })
929
+ ] }),
930
+ "arrow-right": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
931
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m14 5 7 7-7 7" }),
932
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M3 12h18" })
933
+ ] }),
934
+ "arrow-up": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
935
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m5 10 7-7 7 7" }),
936
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 3v18" })
937
+ ] }),
938
+ "arrow-down": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
939
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m5 14 7 7 7-7" }),
940
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 3v18" })
941
+ ] }),
942
+ menu: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M4 6h16M4 12h16M4 18h16" }),
943
+ "more-horizontal": /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M5 12h.1M12 12h.1M19 12h.1" }),
944
+ "more-vertical": /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 5v.1M12 12v.1M12 19v.1" }),
945
+ home: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
946
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m3.5 11 8.5-7 8.5 7" }),
947
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M5.5 9.5V20h13V9.5M9.5 20v-6h5v6" })
948
+ ] }),
949
+ user: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
950
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "8", r: "4" }),
951
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M4.5 21c.7-4.2 3.2-6.5 7.5-6.5s6.8 2.3 7.5 6.5" })
952
+ ] }),
953
+ users: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
954
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "9", cy: "8", r: "3.5" }),
955
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M2.8 20c.6-3.8 2.7-5.8 6.2-5.8s5.6 2 6.2 5.8" }),
956
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
957
+ ] }),
958
+ settings: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
959
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "3.5" }),
960
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
961
+ ] }),
962
+ edit: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
963
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M4 20h4l11-11a2.8 2.8 0 0 0-4-4L4 16v4Z" }),
964
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m13.5 6.5 4 4M4 20h16" })
965
+ ] }),
966
+ copy: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
967
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "8", y: "8", width: "12", height: "12", rx: "2.5" }),
968
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M16 8V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2" })
969
+ ] }),
970
+ trash: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_jsx_runtime6.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M4 7h16M9 3h6l1 4H8l1-4ZM6 7l1 14h10l1-14M10 11v6M14 11v6" }) }),
971
+ scissors: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
972
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "6", cy: "7", r: "3" }),
973
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "6", cy: "17", r: "3" }),
974
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m8.7 8.3 11.3 6.2M8.7 15.7 20 9.5" })
975
+ ] }),
976
+ undo: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
977
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m8 7-5 5 5 5" }),
978
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M3 12h10a7 7 0 0 1 7 7" })
979
+ ] }),
980
+ redo: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
981
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m16 7 5 5-5 5" }),
982
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M21 12H11a7 7 0 0 0-7 7" })
983
+ ] }),
984
+ "zoom-in": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
985
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
986
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m15.8 15.8 5.2 5.2M10.8 7.8v6M7.8 10.8h6" })
987
+ ] }),
988
+ "zoom-out": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
989
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "10.8", cy: "10.8", r: "6.8" }),
990
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m15.8 15.8 5.2 5.2M7.8 10.8h6" })
991
+ ] }),
992
+ download: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_jsx_runtime6.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 3v12M7 10l5 5 5-5M4 20h16" }) }),
993
+ upload: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_jsx_runtime6.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 16V4M7 9l5-5 5 5M4 20h16" }) }),
994
+ refresh: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
995
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M20 4v4.686h-4.686" }),
996
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M20 8.686 17.657 6.343A8 8 0 1 0 20 12" })
997
+ ] }),
998
+ loader: /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
999
+ calendar: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1000
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "3", y: "5", width: "18", height: "16", rx: "2.5" }),
1001
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M8 3v4M16 3v4M3 10h18M7 14h2M11 14h2M15 14h2M7 18h2M11 18h2" })
1002
+ ] }),
1003
+ clock: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1004
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
1005
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 7v5l3.5 2" })
1006
+ ] }),
1007
+ mail: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1008
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "3", y: "5", width: "18", height: "14", rx: "2.5" }),
1009
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m4 7 8 6 8-6" })
1010
+ ] }),
1011
+ phone: /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1012
+ link: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1013
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m9.5 14.5 5-5" }),
1014
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
1015
+ ] }),
1016
+ "external-link": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1017
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M14 4h6v6M20 4 11 13" }),
1018
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M19 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h6" })
1019
+ ] }),
1020
+ eye: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1021
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1022
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "3" })
1023
+ ] }),
1024
+ "eye-off": /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_jsx_runtime6.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime6.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" }) }),
1025
+ lock: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1026
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "4", y: "10", width: "16", height: "11", rx: "2.5" }),
1027
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M8 10V7a4 4 0 0 1 8 0v3M12 14v3" })
1028
+ ] }),
1029
+ unlock: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1030
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "4", y: "10", width: "16", height: "11", rx: "2.5" }),
1031
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M8 10V7a4 4 0 0 1 7.5-2M12 14v3" })
1032
+ ] }),
1033
+ bell: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1034
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M18 9a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9Z" }),
1035
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M10 21h4" })
1036
+ ] }),
1037
+ star: /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1038
+ heart: /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1039
+ file: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1040
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M6 3h8l4 4v14H6V3Z" }),
1041
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M14 3v5h4" })
1042
+ ] }),
1043
+ folder: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M3 6h7l2 2h9v11H3V6Z" }),
1044
+ image: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1045
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2.5" }),
1046
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
1047
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m4 17 4.5-4.5 3.5 3 2.5-2.5 5.5 5" })
1048
+ ] }),
1049
+ filter: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M3 5h18l-7 8v6l-4 2v-8L3 5Z" }),
1050
+ "sort-ascending": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1051
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M7 19V5M3.5 8.5 7 5l3.5 3.5" }),
1052
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M13 7h8M13 12h6M13 17h4" })
1053
+ ] }),
1054
+ "sort-descending": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1055
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M7 5v14M3.5 15.5 7 19l3.5-3.5" }),
1056
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M13 7h4M13 12h6M13 17h8" })
1057
+ ] }),
1058
+ play: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1059
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
1060
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m10 8 6 4-6 4V8Z" })
1061
+ ] }),
1062
+ pause: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1063
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "9" }),
1064
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M9.5 9v6M14.5 9v6" })
1065
+ ] }),
1066
+ book: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1067
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1068
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
1069
+ ] }),
1070
+ component: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1071
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "4", y: "4", width: "6", height: "6", rx: "1.5" }),
1072
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "14", y: "4", width: "6", height: "6", rx: "1.5" }),
1073
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "4", y: "14", width: "6", height: "6", rx: "1.5" }),
1074
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "14", y: "14", width: "6", height: "6", rx: "1.5" })
1075
+ ] }),
1076
+ token: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1077
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
1078
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
1079
+ ] }),
1080
+ sun: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1081
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "3.6" }),
1082
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
1083
+ ] }),
1084
+ moon: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M20 15.2A8 8 0 0 1 8.8 4 8.5 8.5 0 1 0 20 15.2Z" }),
1085
+ code: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m9 18-6-6 6-6M15 6l6 6-6 6" }),
1086
+ github: /* @__PURE__ */ (0, import_jsx_runtime6.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" })
846
1087
  };
847
1088
  var iconPaths = { ...coreIconPaths, ...extendedIconPaths };
848
1089
  var ICON_NAMES = Object.freeze(Object.keys(iconPaths));
849
1090
  var filledIconPaths = {
850
- info: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
851
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
852
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 10.5v6M12 7.2v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
853
- ] }),
854
- question: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
855
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
856
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
857
- ] }),
858
- warning: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
859
- /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
860
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 9v5M12 18v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
861
- ] }),
862
- "circle-check": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
863
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
864
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m7.5 12 3 3 6-6", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
865
- ] }),
866
- "circle-close": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
867
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
868
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
869
- ] }),
870
- "circle-plus": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
871
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
872
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 7.5v9M7.5 12h9", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
873
- ] }),
874
- "circle-minus": /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
875
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
876
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M7.5 12h9", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
877
- ] }),
878
- home: /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
879
- user: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
880
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "7.5", r: "4.5", fill: "currentColor", stroke: "none" }),
881
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
882
- ] }),
883
- users: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
884
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "8.5", cy: "8", r: "3.8", fill: "currentColor", stroke: "none" }),
885
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "17", cy: "8.5", r: "3", fill: "currentColor", stroke: "none", opacity: ".7" }),
886
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
887
- ] }),
888
- trash: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8 3h8l1 3h4v2H3V6h4l1-3Zm-2.5 7h13l-1 11h-11l-1-11Z", fill: "currentColor", stroke: "none" }),
889
- bell: /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
890
- star: /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
891
- heart: /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
892
- mail: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
893
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "2.5", y: "4.5", width: "19", height: "15", rx: "2.5", fill: "currentColor", stroke: "none" }),
894
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m4.5 7 7.5 5.8L19.5 7", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.8" })
895
- ] }),
896
- lock: /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
897
- unlock: /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
898
- calendar: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
899
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "2.5", y: "4.5", width: "19", height: "17", rx: "2.5", fill: "currentColor", stroke: "none" }),
900
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M3 9.5h18M8 2.5v4M16 2.5v4", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.8" })
901
- ] }),
902
- clock: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
903
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
904
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 6.5V12l4 2.3", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
905
- ] }),
906
- file: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M5 2.5h10l4 4V22H5V2.5Zm9 1.8V8h3.7L14 4.3Z", fill: "currentColor", stroke: "none" }),
907
- folder: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M2.5 5h7l2.2 2.5h9.8V20H2.5V5Z", fill: "currentColor", stroke: "none" }),
908
- image: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
909
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "2.5", y: "3.5", width: "19", height: "17", rx: "2.5", fill: "currentColor", stroke: "none" }),
910
- /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
911
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "8", cy: "8.5", r: "1.7", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
912
- ] }),
913
- filter: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M2 4h20l-7.8 9v6.2L9.8 22v-9L2 4Z", fill: "currentColor", stroke: "none" }),
914
- play: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
915
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
916
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m10 7.8 6.5 4.2-6.5 4.2V7.8Z", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
917
- ] }),
918
- pause: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
919
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
920
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M8.5 7.5h2.5v9H8.5v-9Zm4.5 0h2.5v9H13v-9Z", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
921
- ] }),
922
- book: /* @__PURE__ */ (0, import_jsx_runtime4.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" }),
923
- component: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
924
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "3", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
925
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "13", y: "3", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
926
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "3", y: "13", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
927
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("rect", { x: "13", y: "13", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" })
928
- ] }),
929
- token: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
930
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "12", cy: "12", r: "5", fill: "currentColor", stroke: "none" }),
931
- /* @__PURE__ */ (0, import_jsx_runtime4.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" })
1091
+ info: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1092
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
1093
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 10.5v6M12 7.2v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
1094
+ ] }),
1095
+ question: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1096
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
1097
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
1098
+ ] }),
1099
+ warning: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1100
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1101
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 9v5M12 18v.1", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
1102
+ ] }),
1103
+ "circle-check": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1104
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
1105
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m7.5 12 3 3 6-6", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
1106
+ ] }),
1107
+ "circle-close": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1108
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
1109
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
1110
+ ] }),
1111
+ "circle-plus": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1112
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
1113
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 7.5v9M7.5 12h9", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
1114
+ ] }),
1115
+ "circle-minus": /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1116
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
1117
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M7.5 12h9", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
1118
+ ] }),
1119
+ home: /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1120
+ user: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1121
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "7.5", r: "4.5", fill: "currentColor", stroke: "none" }),
1122
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
1123
+ ] }),
1124
+ users: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1125
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "8.5", cy: "8", r: "3.8", fill: "currentColor", stroke: "none" }),
1126
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "17", cy: "8.5", r: "3", fill: "currentColor", stroke: "none", opacity: ".7" }),
1127
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
1128
+ ] }),
1129
+ trash: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M8 3h8l1 3h4v2H3V6h4l1-3Zm-2.5 7h13l-1 11h-11l-1-11Z", fill: "currentColor", stroke: "none" }),
1130
+ bell: /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1131
+ star: /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1132
+ heart: /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1133
+ mail: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1134
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "2.5", y: "4.5", width: "19", height: "15", rx: "2.5", fill: "currentColor", stroke: "none" }),
1135
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m4.5 7 7.5 5.8L19.5 7", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.8" })
1136
+ ] }),
1137
+ lock: /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1138
+ unlock: /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1139
+ calendar: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1140
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "2.5", y: "4.5", width: "19", height: "17", rx: "2.5", fill: "currentColor", stroke: "none" }),
1141
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M3 9.5h18M8 2.5v4M16 2.5v4", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "1.8" })
1142
+ ] }),
1143
+ clock: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1144
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
1145
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M12 6.5V12l4 2.3", stroke: "var(--sia-icon-contrast, #fff)", strokeWidth: "2" })
1146
+ ] }),
1147
+ file: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M5 2.5h10l4 4V22H5V2.5Zm9 1.8V8h3.7L14 4.3Z", fill: "currentColor", stroke: "none" }),
1148
+ folder: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M2.5 5h7l2.2 2.5h9.8V20H2.5V5Z", fill: "currentColor", stroke: "none" }),
1149
+ image: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1150
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "2.5", y: "3.5", width: "19", height: "17", rx: "2.5", fill: "currentColor", stroke: "none" }),
1151
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1152
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "8", cy: "8.5", r: "1.7", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
1153
+ ] }),
1154
+ filter: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M2 4h20l-7.8 9v6.2L9.8 22v-9L2 4Z", fill: "currentColor", stroke: "none" }),
1155
+ play: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1156
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
1157
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m10 7.8 6.5 4.2-6.5 4.2V7.8Z", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
1158
+ ] }),
1159
+ pause: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1160
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "10", fill: "currentColor", stroke: "none" }),
1161
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M8.5 7.5h2.5v9H8.5v-9Zm4.5 0h2.5v9H13v-9Z", fill: "var(--sia-icon-contrast, #fff)", stroke: "none" })
1162
+ ] }),
1163
+ book: /* @__PURE__ */ (0, import_jsx_runtime6.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" }),
1164
+ component: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1165
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "3", y: "3", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
1166
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "13", y: "3", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
1167
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "3", y: "13", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" }),
1168
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("rect", { x: "13", y: "13", width: "8", height: "8", rx: "2", fill: "currentColor", stroke: "none" })
1169
+ ] }),
1170
+ token: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_jsx_runtime6.Fragment, { children: [
1171
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "5", fill: "currentColor", stroke: "none" }),
1172
+ /* @__PURE__ */ (0, import_jsx_runtime6.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" })
932
1173
  ] })
933
1174
  };
934
1175
  var FILLED_ICON_NAMES = Object.freeze(Object.keys(filledIconPaths));
935
- var Icon = (0, import_react3.forwardRef)(function Icon2({ name, size = "1em", strokeWidth = 1.8, rotate = 0, spin = false, pulse = false, label, variant = "outline", className = "", style, ...props }, ref) {
1176
+ var Icon = (0, import_react4.forwardRef)(function Icon2({ name, size = "1em", strokeWidth = 1.8, rotate = 0, spin = false, pulse = false, label, variant = "outline", className = "", style, ...props }, ref) {
936
1177
  const resolvedSize = typeof size === "number" ? `${size}px` : size;
937
1178
  const mergedStyle = { "--sia-icon-size": resolvedSize, "--sia-icon-rotate": `${rotate}deg`, ...style };
938
1179
  const animationClass = spin ? " sia-icon--spin" : pulse ? " sia-icon--pulse" : "";
939
1180
  const filledPath = filledIconPaths[name];
940
1181
  const resolvedVariant = variant === "filled" && filledPath ? "filled" : "outline";
941
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
1182
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
942
1183
  "span",
943
1184
  {
944
1185
  ref,
@@ -948,132 +1189,16 @@ var Icon = (0, import_react3.forwardRef)(function Icon2({ name, size = "1em", st
948
1189
  "aria-label": label,
949
1190
  "aria-hidden": label ? void 0 : true,
950
1191
  style: mergedStyle,
951
- ...props,
952
- children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth, strokeLinecap: "round", strokeLinejoin: "round", focusable: "false", children: resolvedVariant === "filled" ? filledPath : iconPaths[name] })
1192
+ ...withTitleTooltip(props),
1193
+ children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth, strokeLinecap: "round", strokeLinejoin: "round", focusable: "false", children: resolvedVariant === "filled" ? filledPath : iconPaths[name] })
953
1194
  }
954
1195
  );
955
1196
  });
956
1197
 
957
1198
  // src/components/Navigation.tsx
958
1199
  var import_react5 = require("react");
959
-
960
- // src/components/PopupPortal.tsx
961
- var import_react4 = require("react");
962
- var import_react_dom = require("react-dom");
963
- var import_jsx_runtime5 = require("react/jsx-runtime");
964
- function setForwardedRef(ref, value) {
965
- if (typeof ref === "function") ref(value);
966
- else if (ref) ref.current = value;
967
- }
968
- function clamp(value, min, max) {
969
- return Math.min(Math.max(value, min), Math.max(min, max));
970
- }
971
- var PopupPortal = (0, import_react4.forwardRef)(function PopupPortal2({
972
- anchorRef,
973
- open = true,
974
- placement = "bottom-start",
975
- offset = 6,
976
- viewportPadding = 8,
977
- className = "",
978
- style,
979
- children,
980
- ...props
981
- }, forwardedRef) {
982
- const popupRef = (0, import_react4.useRef)(null);
983
- const [position, setPosition] = (0, import_react4.useState)();
984
- (0, import_react4.useLayoutEffect)(() => {
985
- if (!open || typeof document === "undefined") {
986
- setPosition(void 0);
987
- return;
988
- }
989
- const update = () => {
990
- const anchor = anchorRef.current;
991
- const popup = popupRef.current;
992
- if (!anchor || !popup) return;
993
- const anchorRect = anchor.getBoundingClientRect();
994
- const popupRect = popup.getBoundingClientRect();
995
- const viewportWidth = document.documentElement.clientWidth;
996
- const viewportHeight = document.documentElement.clientHeight;
997
- let resolvedPlacement = placement;
998
- const availableBelow = Math.max(0, viewportHeight - viewportPadding - anchorRect.bottom - offset);
999
- const availableAbove = Math.max(0, anchorRect.top - offset - viewportPadding);
1000
- const availableRight = Math.max(0, viewportWidth - viewportPadding - anchorRect.right - offset);
1001
- const availableLeft = Math.max(0, anchorRect.left - offset - viewportPadding);
1002
- const horizontalSide = placement.startsWith("right") || placement.startsWith("left");
1003
- if (horizontalSide) {
1004
- const prefersRight = placement.startsWith("right");
1005
- const fitsRight = popupRect.width <= availableRight;
1006
- const fitsLeft = popupRect.width <= availableLeft;
1007
- if (prefersRight && !fitsRight && (fitsLeft || availableLeft > availableRight)) {
1008
- resolvedPlacement = placement.replace("right", "left");
1009
- } else if (!prefersRight && !fitsLeft && (fitsRight || availableRight > availableLeft)) {
1010
- resolvedPlacement = placement.replace("left", "right");
1011
- }
1012
- } else {
1013
- const prefersBottom = placement.startsWith("bottom");
1014
- const fitsBelow = popupRect.height <= availableBelow;
1015
- const fitsAbove = popupRect.height <= availableAbove;
1016
- if (prefersBottom && !fitsBelow && (fitsAbove || availableAbove > availableBelow)) {
1017
- resolvedPlacement = placement.replace("bottom", "top");
1018
- } else if (!prefersBottom && !fitsAbove && (fitsBelow || availableBelow > availableAbove)) {
1019
- resolvedPlacement = placement.replace("top", "bottom");
1020
- }
1021
- }
1022
- const resolvedHorizontalSide = resolvedPlacement.startsWith("right") || resolvedPlacement.startsWith("left");
1023
- const top = resolvedHorizontalSide ? resolvedPlacement.endsWith("end") ? anchorRect.bottom - popupRect.height : anchorRect.top : resolvedPlacement.startsWith("bottom") ? anchorRect.bottom + offset : anchorRect.top - popupRect.height - offset;
1024
- const availableHeight = resolvedHorizontalSide ? Math.max(0, viewportHeight - viewportPadding * 2) : resolvedPlacement.startsWith("bottom") ? availableBelow : availableAbove;
1025
- const alignedLeft = resolvedHorizontalSide ? resolvedPlacement.startsWith("right") ? anchorRect.right + offset : anchorRect.left - popupRect.width - offset : resolvedPlacement.endsWith("end") ? anchorRect.right - popupRect.width : anchorRect.left;
1026
- const next = {
1027
- top: clamp(top, viewportPadding, viewportHeight - popupRect.height - viewportPadding),
1028
- left: clamp(alignedLeft, viewportPadding, viewportWidth - popupRect.width - viewportPadding),
1029
- anchorWidth: anchorRect.width,
1030
- availableHeight,
1031
- placement: resolvedPlacement
1032
- };
1033
- setPosition((current) => current && current.top === next.top && current.left === next.left && current.anchorWidth === next.anchorWidth && current.availableHeight === next.availableHeight && current.placement === next.placement ? current : next);
1034
- };
1035
- update();
1036
- window.addEventListener("resize", update);
1037
- window.addEventListener("scroll", update, true);
1038
- const observer = new ResizeObserver(update);
1039
- if (anchorRef.current) observer.observe(anchorRef.current);
1040
- if (popupRef.current) observer.observe(popupRef.current);
1041
- return () => {
1042
- window.removeEventListener("resize", update);
1043
- window.removeEventListener("scroll", update, true);
1044
- observer.disconnect();
1045
- };
1046
- }, [anchorRef, offset, open, placement, viewportPadding]);
1047
- if (!open || typeof document === "undefined") return null;
1048
- return (0, import_react_dom.createPortal)(
1049
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
1050
- "div",
1051
- {
1052
- ref: (node) => {
1053
- popupRef.current = node;
1054
- setForwardedRef(forwardedRef, node);
1055
- },
1056
- className: `sia-popup-portal ${className}`.trim(),
1057
- "data-sia-popup-layer": "",
1058
- "data-placement": position?.placement ?? placement,
1059
- style: {
1060
- ...style,
1061
- "--sia-popup-anchor-width": `${position?.anchorWidth ?? anchorRef.current?.getBoundingClientRect().width ?? 0}px`,
1062
- "--sia-popup-available-height": position ? `${position.availableHeight}px` : void 0,
1063
- top: position?.top ?? 0,
1064
- left: position?.left ?? 0,
1065
- visibility: position ? "visible" : "hidden"
1066
- },
1067
- ...props,
1068
- children
1069
- }
1070
- ),
1071
- document.body
1072
- );
1073
- });
1074
-
1075
- // src/components/Navigation.tsx
1076
- var import_jsx_runtime6 = require("react/jsx-runtime");
1200
+ var import_jsx_runtime7 = require("react/jsx-runtime");
1201
+ var import_react6 = require("react");
1077
1202
  function MenuPopup({
1078
1203
  anchorRef,
1079
1204
  open,
@@ -1093,7 +1218,7 @@ function MenuPopup({
1093
1218
  const timer = window.setTimeout(() => setMounted(false), 160);
1094
1219
  return () => window.clearTimeout(timer);
1095
1220
  }, [open]);
1096
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
1221
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1097
1222
  PopupPortal,
1098
1223
  {
1099
1224
  anchorRef,
@@ -1104,7 +1229,7 @@ function MenuPopup({
1104
1229
  "data-sia-menu-owner": menuId,
1105
1230
  onMouseEnter,
1106
1231
  onMouseLeave,
1107
- children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("ul", { className: "sia-menu__popup-list", role: "menu", children })
1232
+ children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("ul", { className: "sia-menu__popup-list", role: "menu", children })
1108
1233
  }
1109
1234
  );
1110
1235
  }
@@ -1137,9 +1262,9 @@ function MenuEntry({
1137
1262
  closeTimerRef.current = window.setTimeout(() => props.toggle(item.key, false), 100);
1138
1263
  }
1139
1264
  const hover = props.triggerSubMenuAction === "hover" && hasChildren && !inlineSubmenu;
1140
- const submenu = hasChildren ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(MenuLevel, { items: item.children ?? [], level: level + 1, parents: [item.key, ...parents], props }) : null;
1265
+ const submenu = hasChildren ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(MenuLevel, { items: item.children ?? [], level: level + 1, parents: [item.key, ...parents], props }) : null;
1141
1266
  const popupPlacement = props.mode === "horizontal" && level === 0 ? "bottom-start" : "right-start";
1142
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
1267
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
1143
1268
  "li",
1144
1269
  {
1145
1270
  className: `sia-menu__entry${isOpen ? " is-open" : ""}${isSelected ? " is-selected" : ""}${item.disabled ? " is-disabled" : ""}${item.danger ? " is-danger" : ""}`,
@@ -1149,27 +1274,27 @@ function MenuEntry({
1149
1274
  } : void 0,
1150
1275
  onMouseLeave: hover ? scheduleClose : void 0,
1151
1276
  children: [
1152
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
1277
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
1153
1278
  "button",
1154
1279
  {
1155
1280
  ref: anchorRef,
1156
1281
  type: "button",
1157
1282
  className: "sia-menu__item",
1158
1283
  style: { paddingInlineStart: props.mode === "inline" && !props.inlineCollapsed ? 12 + level * props.inlineIndent : void 0 },
1159
- title: collapsed ? item.title ?? (typeof item.label === "string" ? item.label : void 0) : item.title,
1284
+ ...withTitleTooltip({ title: collapsed ? item.title ?? (typeof item.label === "string" ? item.label : void 0) : item.title }),
1160
1285
  disabled: item.disabled,
1161
1286
  "aria-current": isSelected ? "page" : void 0,
1162
1287
  "aria-expanded": hasChildren ? isOpen : void 0,
1163
1288
  onClick: (event) => hasChildren ? props.toggle(item.key) : props.select(item, path, event),
1164
1289
  children: [
1165
- reserveIcon ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: "sia-menu__icon", "aria-hidden": !item.icon || void 0, children: item.icon }) : null,
1166
- !collapsed ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: "sia-menu__label", children: item.label }) : null,
1167
- !collapsed && item.extra ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { className: "sia-menu__extra", children: item.extra }) : null,
1168
- !collapsed && hasChildren ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { className: "sia-menu__expand-icon", name: "chevron-down", size: 13 }) : null
1290
+ reserveIcon ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "sia-menu__icon", "aria-hidden": !item.icon || void 0, children: item.icon }) : null,
1291
+ !collapsed ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "sia-menu__label", children: item.label }) : null,
1292
+ !collapsed && item.extra ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "sia-menu__extra", children: item.extra }) : null,
1293
+ !collapsed && hasChildren ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon, { className: "sia-menu__expand-icon", name: "chevron-down", size: 13 }) : null
1169
1294
  ]
1170
1295
  }
1171
1296
  ),
1172
- hasChildren ? inlineSubmenu ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("ul", { className: "sia-menu__submenu", role: "menu", "aria-hidden": !isOpen, children: submenu }) : /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
1297
+ hasChildren ? inlineSubmenu ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("ul", { className: "sia-menu__submenu", role: "menu", "aria-hidden": !isOpen, children: submenu }) : /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1173
1298
  MenuPopup,
1174
1299
  {
1175
1300
  anchorRef,
@@ -1196,13 +1321,13 @@ function MenuLevel({
1196
1321
  props,
1197
1322
  reserveIcon = hasMenuIcon(items)
1198
1323
  }) {
1199
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_jsx_runtime6.Fragment, { children: items.map((item, index) => {
1200
- if (item.type === "divider") return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("li", { className: "sia-menu__divider", role: "separator" }, item.key || `divider-${index}`);
1201
- if (item.type === "group") return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("li", { className: "sia-menu__group", children: [
1202
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "sia-menu__group-title", children: item.label }),
1203
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("ul", { role: "group", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(MenuLevel, { items: item.children ?? [], level: level + 1, parents: [...parents, item.key], props, reserveIcon }) })
1324
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_jsx_runtime7.Fragment, { children: items.map((item, index) => {
1325
+ if (item.type === "divider") return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("li", { className: "sia-menu__divider", role: "separator" }, item.key || `divider-${index}`);
1326
+ if (item.type === "group") return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("li", { className: "sia-menu__group", children: [
1327
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "sia-menu__group-title", children: item.label }),
1328
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("ul", { role: "group", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(MenuLevel, { items: item.children ?? [], level: level + 1, parents: [...parents, item.key], props, reserveIcon }) })
1204
1329
  ] }, item.key);
1205
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(MenuEntry, { item, level, parents, props, reserveIcon }, item.key);
1330
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(MenuEntry, { item, level, parents, props, reserveIcon }, item.key);
1206
1331
  }) });
1207
1332
  }
1208
1333
  function Menu({
@@ -1255,11 +1380,11 @@ function Menu({
1255
1380
  else onSelect?.({ ...info, selectedKeys: [...next] });
1256
1381
  if (mode !== "inline") setOpen([]);
1257
1382
  }
1258
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("ul", { ref: rootRef, className: `sia-menu sia-menu--${mode} sia-menu--${theme}${inlineCollapsed ? " sia-menu--collapsed" : ""} ${className}`.trim(), role: "menu", ...rest, "data-sia-menu-owner": menuId, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(MenuLevel, { items, level: 0, parents: [], props: { menuId, mode, theme, multiple, selectable, inlineCollapsed, inlineIndent, triggerSubMenuAction, selected, open, select, toggle } }) });
1383
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("ul", { ref: rootRef, className: `sia-menu sia-menu--${mode} sia-menu--${theme}${inlineCollapsed ? " sia-menu--collapsed" : ""} ${className}`.trim(), role: "menu", ...withTitleTooltip(rest), "data-sia-menu-owner": menuId, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(MenuLevel, { items, level: 0, parents: [], props: { menuId, mode, theme, multiple, selectable, inlineCollapsed, inlineIndent, triggerSubMenuAction, selected, open, select, toggle } }) });
1259
1384
  }
1260
1385
 
1261
1386
  // src/components/Dropdown.tsx
1262
- var import_jsx_runtime7 = require("react/jsx-runtime");
1387
+ var import_jsx_runtime8 = require("react/jsx-runtime");
1263
1388
  var placementMap = {
1264
1389
  bottomLeft: "bottom-start",
1265
1390
  bottomRight: "bottom-end",
@@ -1291,14 +1416,14 @@ function DropdownRoot({
1291
1416
  onKeyDown,
1292
1417
  ...props
1293
1418
  }) {
1294
- const rootRef = (0, import_react6.useRef)(null);
1295
- const contextAnchorRef = (0, import_react6.useRef)(null);
1296
- const popupRef = (0, import_react6.useRef)(null);
1297
- const openTimerRef = (0, import_react6.useRef)(void 0);
1298
- const closeTimerRef = (0, import_react6.useRef)(void 0);
1299
- const [internalOpen, setInternalOpen] = (0, import_react6.useState)(defaultOpen);
1300
- const [mounted, setMounted] = (0, import_react6.useState)(open ?? defaultOpen);
1301
- const [contextPoint, setContextPoint] = (0, import_react6.useState)();
1419
+ const rootRef = (0, import_react7.useRef)(null);
1420
+ const contextAnchorRef = (0, import_react7.useRef)(null);
1421
+ const popupRef = (0, import_react7.useRef)(null);
1422
+ const openTimerRef = (0, import_react7.useRef)(void 0);
1423
+ const closeTimerRef = (0, import_react7.useRef)(void 0);
1424
+ const [internalOpen, setInternalOpen] = (0, import_react7.useState)(defaultOpen);
1425
+ const [mounted, setMounted] = (0, import_react7.useState)(open ?? defaultOpen);
1426
+ const [contextPoint, setContextPoint] = (0, import_react7.useState)();
1302
1427
  const visible = open ?? internalOpen;
1303
1428
  const triggerSet = new Set(trigger);
1304
1429
  const pointAtCenter = typeof arrow === "object" && arrow.pointAtCenter;
@@ -1327,7 +1452,7 @@ function DropdownRoot({
1327
1452
  clearTimer(closeTimerRef);
1328
1453
  closeTimerRef.current = window.setTimeout(() => updateOpen(false, "trigger"), Math.max(0, closeDelay));
1329
1454
  }
1330
- (0, import_react6.useEffect)(() => {
1455
+ (0, import_react7.useEffect)(() => {
1331
1456
  if (visible) {
1332
1457
  setMounted(true);
1333
1458
  return void 0;
@@ -1335,11 +1460,11 @@ function DropdownRoot({
1335
1460
  const timer = window.setTimeout(() => setMounted(false), 160);
1336
1461
  return () => window.clearTimeout(timer);
1337
1462
  }, [visible]);
1338
- (0, import_react6.useEffect)(() => {
1463
+ (0, import_react7.useEffect)(() => {
1339
1464
  if (!visible && !mounted) setContextPoint(void 0);
1340
1465
  }, [mounted, visible]);
1341
- (0, import_react6.useEffect)(() => () => clearTimers(), []);
1342
- (0, import_react6.useEffect)(() => {
1466
+ (0, import_react7.useEffect)(() => () => clearTimers(), []);
1467
+ (0, import_react7.useEffect)(() => {
1343
1468
  if (!visible) return void 0;
1344
1469
  const contextMenuTrigger = triggerSet.has("contextMenu");
1345
1470
  const closeOutside = (event) => {
@@ -1369,7 +1494,7 @@ function DropdownRoot({
1369
1494
  document.removeEventListener("pointerover", keepOpenOverNestedMenu);
1370
1495
  };
1371
1496
  }, [visible]);
1372
- (0, import_react6.useEffect)(() => {
1497
+ (0, import_react7.useEffect)(() => {
1373
1498
  if (!visible || !mounted || !autoFocus) return void 0;
1374
1499
  const frame = window.requestAnimationFrame(() => {
1375
1500
  popupRef.current?.querySelector(
@@ -1418,7 +1543,7 @@ function DropdownRoot({
1418
1543
  updateOpen(true, "trigger");
1419
1544
  }
1420
1545
  }
1421
- const menuNode = /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1546
+ const menuNode = /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1422
1547
  Menu,
1423
1548
  {
1424
1549
  mode: "vertical",
@@ -1435,11 +1560,11 @@ function DropdownRoot({
1435
1560
  className: "sia-dropdown__menu"
1436
1561
  }
1437
1562
  );
1438
- const triggerNode = showTriggerIcon && (0, import_react6.isValidElement)(children) && children.type === Button && children.props.children !== void 0 && children.props.children !== null ? (0, import_react6.cloneElement)(children, {}, /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { className: "sia-dropdown__trigger-content", children: [
1563
+ const triggerNode = showTriggerIcon && (0, import_react7.isValidElement)(children) && children.type === Button && children.props.children !== void 0 && children.props.children !== null ? (0, import_react7.cloneElement)(children, {}, /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { className: "sia-dropdown__trigger-content", children: [
1439
1564
  children.props.children,
1440
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon, { name: "chevron-down", size: 14, className: "sia-dropdown__trigger-icon" })
1565
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Icon, { name: "chevron-down", size: 14, className: "sia-dropdown__trigger-icon" })
1441
1566
  ] })) : children;
1442
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
1567
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
1443
1568
  "span",
1444
1569
  {
1445
1570
  ref: rootRef,
@@ -1452,10 +1577,10 @@ function DropdownRoot({
1452
1577
  onMouseLeave: handleMouseLeave,
1453
1578
  onContextMenu: handleContextMenu,
1454
1579
  onKeyDown: handleKeyDown,
1455
- ...props,
1580
+ ...withTitleTooltip(props),
1456
1581
  children: [
1457
1582
  triggerNode,
1458
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1583
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1459
1584
  "span",
1460
1585
  {
1461
1586
  ref: contextAnchorRef,
@@ -1464,7 +1589,7 @@ function DropdownRoot({
1464
1589
  "aria-hidden": "true"
1465
1590
  }
1466
1591
  ),
1467
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1592
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1468
1593
  PopupPortal,
1469
1594
  {
1470
1595
  ref: popupRef,
@@ -1499,15 +1624,15 @@ function DropdownButton({
1499
1624
  trigger = ["click"],
1500
1625
  ...dropdownProps
1501
1626
  }) {
1502
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("span", { className: `sia-dropdown-button ${className}`.trim(), children: [
1503
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Button, { ...buttonProps, disabled, onClick, children }),
1504
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(DropdownRoot, { ...dropdownProps, disabled, trigger, showTriggerIcon: false, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
1627
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { className: `sia-dropdown-button ${className}`.trim(), children: [
1628
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Button, { ...buttonProps, disabled, onClick, children }),
1629
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(DropdownRoot, { ...dropdownProps, disabled, trigger, showTriggerIcon: false, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1505
1630
  Button,
1506
1631
  {
1507
1632
  ...buttonProps,
1508
1633
  className: `sia-dropdown-button__arrow ${buttonProps?.className ?? ""}`.trim(),
1509
1634
  disabled,
1510
- icon: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Icon, { name: "chevron-down", size: 14 }),
1635
+ icon: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Icon, { name: "chevron-down", size: 14 }),
1511
1636
  "aria-label": "\u5C55\u5F00\u4E0B\u62C9\u83DC\u5355"
1512
1637
  }
1513
1638
  ) })
@@ -1519,9 +1644,9 @@ var Dropdown = Object.assign(DropdownRoot, {
1519
1644
  });
1520
1645
 
1521
1646
  // src/components/Input.tsx
1522
- var import_react7 = require("react");
1523
- var import_jsx_runtime8 = require("react/jsx-runtime");
1524
- var Input = (0, import_react7.forwardRef)(function Input2({
1647
+ var import_react8 = require("react");
1648
+ var import_jsx_runtime9 = require("react/jsx-runtime");
1649
+ var Input = (0, import_react8.forwardRef)(function Input2({
1525
1650
  label,
1526
1651
  hint,
1527
1652
  status = "default",
@@ -1543,10 +1668,10 @@ var Input = (0, import_react7.forwardRef)(function Input2({
1543
1668
  ...props
1544
1669
  }, forwardedRef) {
1545
1670
  const size = useControlSize(sizeProp);
1546
- const fallbackId = (0, import_react7.useId)();
1671
+ const fallbackId = (0, import_react8.useId)();
1547
1672
  const inputId = id ?? fallbackId;
1548
- const localRef = (0, import_react7.useRef)(null);
1549
- const [uncontrolledValue, setUncontrolledValue] = (0, import_react7.useState)(() => defaultValue === void 0 ? "" : String(defaultValue));
1673
+ const localRef = (0, import_react8.useRef)(null);
1674
+ const [uncontrolledValue, setUncontrolledValue] = (0, import_react8.useState)(() => defaultValue === void 0 ? "" : String(defaultValue));
1550
1675
  const currentText = value !== void 0 ? String(value) : uncontrolledValue;
1551
1676
  const hasValue = currentText.length > 0;
1552
1677
  const floatingPlaceholder = usePlaceholderMode(placeholderMode) === "floating" && Boolean(placeholder);
@@ -1584,10 +1709,10 @@ var Input = (0, import_react7.forwardRef)(function Input2({
1584
1709
  event.preventDefault();
1585
1710
  localRef.current?.focus({ preventScroll: true });
1586
1711
  }
1587
- const input = /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1712
+ const input = /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
1588
1713
  "input",
1589
1714
  {
1590
- ...props,
1715
+ ...withTitleTooltip(props),
1591
1716
  ref: setRef,
1592
1717
  id: inputId,
1593
1718
  className: "sia-input",
@@ -1601,29 +1726,29 @@ var Input = (0, import_react7.forwardRef)(function Input2({
1601
1726
  onChange: handleChange
1602
1727
  }
1603
1728
  );
1604
- const control = /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { onMouseDown: handleControlMouseDown, className: `sia-input-control sia-input-control--${size} sia-input-control--${status}${floatingPlaceholder ? " sia-input-control--floating" : ""}${floatingPlaceholder && hasValue ? " is-filled" : ""}${disabled ? " is-disabled" : ""}`, children: [
1605
- prefix ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "sia-input-control__affix", children: prefix }) : null,
1606
- floatingPlaceholder ? /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { className: "sia-input-control__input-wrap", children: [
1729
+ const control = /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { onMouseDown: handleControlMouseDown, className: `sia-input-control sia-input-control--${size} sia-input-control--${status}${floatingPlaceholder ? " sia-input-control--floating" : ""}${floatingPlaceholder && hasValue ? " is-filled" : ""}${disabled ? " is-disabled" : ""}`, children: [
1730
+ prefix ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "sia-input-control__affix", children: prefix }) : null,
1731
+ floatingPlaceholder ? /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { className: "sia-input-control__input-wrap", children: [
1607
1732
  input,
1608
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "sia-input-control__floating-placeholder", "aria-hidden": "true", children: placeholder })
1733
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "sia-input-control__floating-placeholder", "aria-hidden": "true", children: placeholder })
1609
1734
  ] }) : input,
1610
- allowClear && hasValue && !disabled ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("button", { className: "sia-input-control__clear", type: "button", "aria-label": "\u6E05\u7A7A\u8F93\u5165", onClick: clearValue, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Icon, { name: "circle-close", variant: "filled", size: 15 }) }) : null,
1611
- suffix ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "sia-input-control__affix", children: suffix }) : null,
1612
- showCount ? /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { className: `sia-input-control__count${maxLength !== void 0 && currentText.length >= maxLength ? " is-limit" : ""}`, "aria-live": "polite", children: [
1735
+ allowClear && hasValue && !disabled ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("button", { className: "sia-input-control__clear", type: "button", "aria-label": "\u6E05\u7A7A\u8F93\u5165", onClick: clearValue, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "circle-close", variant: "filled", size: 15 }) }) : null,
1736
+ suffix ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "sia-input-control__affix", children: suffix }) : null,
1737
+ showCount ? /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { className: `sia-input-control__count${maxLength !== void 0 && currentText.length >= maxLength ? " is-limit" : ""}`, "aria-live": "polite", children: [
1613
1738
  currentText.length,
1614
1739
  maxLength !== void 0 ? `/${maxLength}` : null
1615
1740
  ] }) : null
1616
1741
  ] });
1617
- if (!label && !hint) return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: `sia-field ${className}`.trim(), children: control });
1618
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { className: `sia-field ${className}`.trim(), children: [
1619
- label ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { className: "sia-field__label", htmlFor: inputId, children: label }) : null,
1742
+ if (!label && !hint) return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: `sia-field ${className}`.trim(), children: control });
1743
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { className: `sia-field ${className}`.trim(), children: [
1744
+ label ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("label", { className: "sia-field__label", htmlFor: inputId, children: label }) : null,
1620
1745
  control,
1621
- hint ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { id: hintId, className: `sia-field__hint sia-field__hint--${status}`, children: hint }) : null
1746
+ hint ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { id: hintId, className: `sia-field__hint sia-field__hint--${status}`, children: hint }) : null
1622
1747
  ] });
1623
1748
  });
1624
1749
 
1625
1750
  // src/components/RichTextEditor.tsx
1626
- var import_jsx_runtime9 = require("react/jsx-runtime");
1751
+ var import_jsx_runtime10 = require("react/jsx-runtime");
1627
1752
  function escapeHtml(value) {
1628
1753
  return value.replaceAll("&", "&amp;").replaceAll("<", "&lt;").replaceAll(">", "&gt;").replaceAll('"', "&quot;").replaceAll("'", "&#039;");
1629
1754
  }
@@ -1639,9 +1764,9 @@ function sanitizeContent(value) {
1639
1764
  }).replace(/<img\b/giu, '<img loading="lazy" decoding="async"');
1640
1765
  }
1641
1766
  function RichTextContent({ content, emptyText = "\u6682\u65E0\u5185\u5BB9", className = "", ...props }) {
1642
- const html = (0, import_react8.useMemo)(() => sanitizeContent(content), [content]);
1643
- if (!html.trim()) return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: `sia-rich-text-content sia-rich-text-content--empty ${className}`.trim(), children: emptyText });
1644
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("article", { className: `sia-rich-text-content ${className}`.trim(), dangerouslySetInnerHTML: { __html: html }, ...props });
1767
+ const html = (0, import_react9.useMemo)(() => sanitizeContent(content), [content]);
1768
+ if (!html.trim()) return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: `sia-rich-text-content sia-rich-text-content--empty ${className}`.trim(), children: emptyText });
1769
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("article", { className: `sia-rich-text-content ${className}`.trim(), dangerouslySetInnerHTML: { __html: html }, ...withTitleTooltip(props) });
1645
1770
  }
1646
1771
  function RichTextEditor({
1647
1772
  value,
@@ -1662,31 +1787,31 @@ function RichTextEditor({
1662
1787
  "aria-label": ariaLabel,
1663
1788
  ...props
1664
1789
  }) {
1665
- const initialValueRef = (0, import_react8.useRef)(value ?? defaultValue);
1666
- const lastEmittedValueRef = (0, import_react8.useRef)(value ?? defaultValue);
1667
- const onChangeRef = (0, import_react8.useRef)(onChange);
1668
- const onPasteImageRef = (0, import_react8.useRef)(onPasteImage);
1669
- const saveShortcutRef = (0, import_react8.useRef)(saveShortcut);
1670
- const contentFormatRef = (0, import_react8.useRef)(contentFormat);
1671
- const editorElementRef = (0, import_react8.useRef)(null);
1672
- const editorRef = (0, import_react8.useRef)(null);
1673
- const [editor, setEditor] = (0, import_react8.useState)(null);
1674
- const [linkEditorOpen, setLinkEditorOpen] = (0, import_react8.useState)(false);
1675
- const [linkHref, setLinkHref] = (0, import_react8.useState)("");
1676
- const [, setEditorRevision] = (0, import_react8.useState)(0);
1677
- (0, import_react8.useEffect)(() => {
1790
+ const initialValueRef = (0, import_react9.useRef)(value ?? defaultValue);
1791
+ const lastEmittedValueRef = (0, import_react9.useRef)(value ?? defaultValue);
1792
+ const onChangeRef = (0, import_react9.useRef)(onChange);
1793
+ const onPasteImageRef = (0, import_react9.useRef)(onPasteImage);
1794
+ const saveShortcutRef = (0, import_react9.useRef)(saveShortcut);
1795
+ const contentFormatRef = (0, import_react9.useRef)(contentFormat);
1796
+ const editorElementRef = (0, import_react9.useRef)(null);
1797
+ const editorRef = (0, import_react9.useRef)(null);
1798
+ const [editor, setEditor] = (0, import_react9.useState)(null);
1799
+ const [linkEditorOpen, setLinkEditorOpen] = (0, import_react9.useState)(false);
1800
+ const [linkHref, setLinkHref] = (0, import_react9.useState)("");
1801
+ const [, setEditorRevision] = (0, import_react9.useState)(0);
1802
+ (0, import_react9.useEffect)(() => {
1678
1803
  onChangeRef.current = onChange;
1679
1804
  }, [onChange]);
1680
- (0, import_react8.useEffect)(() => {
1805
+ (0, import_react9.useEffect)(() => {
1681
1806
  onPasteImageRef.current = onPasteImage;
1682
1807
  }, [onPasteImage]);
1683
- (0, import_react8.useEffect)(() => {
1808
+ (0, import_react9.useEffect)(() => {
1684
1809
  saveShortcutRef.current = saveShortcut;
1685
1810
  }, [saveShortcut]);
1686
- (0, import_react8.useEffect)(() => {
1811
+ (0, import_react9.useEffect)(() => {
1687
1812
  contentFormatRef.current = contentFormat;
1688
1813
  }, [contentFormat]);
1689
- const extensions = (0, import_react8.useMemo)(() => [
1814
+ const extensions = (0, import_react9.useMemo)(() => [
1690
1815
  import_starter_kit.default.configure({
1691
1816
  heading: { levels: [1, 2, 3, 4, 5, 6] },
1692
1817
  link: { openOnClick: false, autolink: true, linkOnPaste: true },
@@ -1702,7 +1827,7 @@ function RichTextEditor({
1702
1827
  import_extension_task_item.default.configure({ nested: true }),
1703
1828
  import_markdown.Markdown.configure({ markedOptions: { gfm: true } })
1704
1829
  ], [placeholder]);
1705
- (0, import_react8.useEffect)(() => {
1830
+ (0, import_react9.useEffect)(() => {
1706
1831
  const element = editorElementRef.current;
1707
1832
  if (!element) return;
1708
1833
  const nextEditor = new import_core.Editor({
@@ -1759,10 +1884,10 @@ function RichTextEditor({
1759
1884
  nextEditor.destroy();
1760
1885
  };
1761
1886
  }, [ariaLabel, extensions]);
1762
- (0, import_react8.useEffect)(() => {
1887
+ (0, import_react9.useEffect)(() => {
1763
1888
  editor?.setEditable(!disabled);
1764
1889
  }, [disabled, editor]);
1765
- (0, import_react8.useEffect)(() => {
1890
+ (0, import_react9.useEffect)(() => {
1766
1891
  if (!editor || value === void 0 || value === lastEmittedValueRef.current) return;
1767
1892
  editor.commands.setContent(value, { emitUpdate: false, contentType: contentFormat });
1768
1893
  lastEmittedValueRef.current = value;
@@ -1783,7 +1908,7 @@ function RichTextEditor({
1783
1908
  setLinkEditorOpen(false);
1784
1909
  }
1785
1910
  function formatButton(label, action, active = false, disabledByState = false, content) {
1786
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
1911
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
1787
1912
  Button,
1788
1913
  {
1789
1914
  type: "button",
@@ -1821,27 +1946,27 @@ function RichTextEditor({
1821
1946
  }
1822
1947
  };
1823
1948
  const floating = useFloatingPlaceholder({ mode: placeholderMode, placeholder, filled: editor ? !editor.isEmpty : Boolean(value ?? defaultValue) });
1824
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { ...props, id, style: mergedStyle, className: `sia-rich-text-editor${floating.className}${disabled ? " is-disabled" : ""} sia-rich-text-editor--${toolbar} ${className}`.trim(), children: [
1949
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { ...withTitleTooltip(props), id, style: mergedStyle, className: `sia-rich-text-editor${floating.className}${disabled ? " is-disabled" : ""} sia-rich-text-editor--${toolbar} ${className}`.trim(), children: [
1825
1950
  floating.label,
1826
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "sia-rich-text-editor__toolbar", "aria-label": "\u6587\u672C\u683C\u5F0F\u5DE5\u5177\u680F", children: [
1827
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "sia-rich-text-editor__toolbar-main", children: [
1828
- toolbar === "full" ? /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
1829
- formatButton("\u64A4\u9500", () => editor?.chain().focus().undo().run(), false, !editor?.can().undo(), /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "undo" })),
1830
- formatButton("\u91CD\u505A", () => editor?.chain().focus().redo().run(), false, !editor?.can().redo(), /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "redo" })),
1831
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "sia-rich-text-editor__divider" }),
1832
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Dropdown, { menu: blockTypeMenu, trigger: ["click"], placement: "bottomLeft", disabled: disabled || !editor, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(Button, { type: "button", variant: "text", size: "small", className: "sia-rich-text-editor__block-type", disabled: disabled || !editor, "aria-label": "\u6BB5\u843D\u683C\u5F0F", title: "\u6BB5\u843D\u683C\u5F0F", onMouseDown: (event) => event.preventDefault(), children: [
1951
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "sia-rich-text-editor__toolbar", "aria-label": "\u6587\u672C\u683C\u5F0F\u5DE5\u5177\u680F", children: [
1952
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "sia-rich-text-editor__toolbar-main", children: [
1953
+ toolbar === "full" ? /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_jsx_runtime10.Fragment, { children: [
1954
+ formatButton("\u64A4\u9500", () => editor?.chain().focus().undo().run(), false, !editor?.can().undo(), /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Icon, { name: "undo" })),
1955
+ formatButton("\u91CD\u505A", () => editor?.chain().focus().redo().run(), false, !editor?.can().redo(), /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Icon, { name: "redo" })),
1956
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: "sia-rich-text-editor__divider" }),
1957
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Dropdown, { menu: blockTypeMenu, trigger: ["click"], placement: "bottomLeft", disabled: disabled || !editor, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(Button, { type: "button", variant: "text", size: "small", className: "sia-rich-text-editor__block-type", disabled: disabled || !editor, "aria-label": "\u6BB5\u843D\u683C\u5F0F", title: "\u6BB5\u843D\u683C\u5F0F", onMouseDown: (event) => event.preventDefault(), children: [
1833
1958
  currentBlockLabel,
1834
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "chevron-down", size: 13 })
1959
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Icon, { name: "chevron-down", size: 13 })
1835
1960
  ] }) }),
1836
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "sia-rich-text-editor__divider" })
1961
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: "sia-rich-text-editor__divider" })
1837
1962
  ] }) : null,
1838
- formatButton("\u52A0\u7C97", () => editor?.chain().focus().toggleBold().run(), Boolean(editor?.isActive("bold")), false, /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("strong", { children: "B" })),
1839
- formatButton("\u659C\u4F53", () => editor?.chain().focus().toggleItalic().run(), Boolean(editor?.isActive("italic")), false, /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("em", { children: "I" })),
1840
- toolbar === "full" ? /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
1841
- formatButton("\u4E0B\u5212\u7EBF", () => editor?.chain().focus().toggleUnderline().run(), Boolean(editor?.isActive("underline")), false, /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("u", { children: "U" })),
1842
- formatButton("\u5220\u9664\u7EBF", () => editor?.chain().focus().toggleStrike().run(), Boolean(editor?.isActive("strike")), false, /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("s", { children: "S" })),
1963
+ formatButton("\u52A0\u7C97", () => editor?.chain().focus().toggleBold().run(), Boolean(editor?.isActive("bold")), false, /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("strong", { children: "B" })),
1964
+ formatButton("\u659C\u4F53", () => editor?.chain().focus().toggleItalic().run(), Boolean(editor?.isActive("italic")), false, /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("em", { children: "I" })),
1965
+ toolbar === "full" ? /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_jsx_runtime10.Fragment, { children: [
1966
+ formatButton("\u4E0B\u5212\u7EBF", () => editor?.chain().focus().toggleUnderline().run(), Boolean(editor?.isActive("underline")), false, /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("u", { children: "U" })),
1967
+ formatButton("\u5220\u9664\u7EBF", () => editor?.chain().focus().toggleStrike().run(), Boolean(editor?.isActive("strike")), false, /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("s", { children: "S" })),
1843
1968
  formatButton("\u884C\u5185\u4EE3\u7801", () => editor?.chain().focus().toggleCode().run(), Boolean(editor?.isActive("code")), false, "</>"),
1844
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
1969
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
1845
1970
  Dropdown,
1846
1971
  {
1847
1972
  menu: { items: [] },
@@ -1851,48 +1976,48 @@ function RichTextEditor({
1851
1976
  disabled: disabled || !editor,
1852
1977
  onOpenChange: openLinkEditor,
1853
1978
  popupClassName: "sia-rich-text-editor__link-popup",
1854
- popupRender: () => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("form", { className: "sia-rich-text-editor__link-form", onSubmit: submitLink, children: [
1855
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Input, { autoFocus: true, "aria-label": "\u94FE\u63A5\u5730\u5740", value: linkHref, onChange: (event) => setLinkHref(event.target.value), placeholder: "https://example.com" }),
1856
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Button, { type: "submit", variant: "primary", size: "small", children: "\u5E94\u7528" }),
1857
- editor?.isActive("link") ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Button, { type: "button", size: "small", onClick: () => {
1979
+ popupRender: () => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("form", { className: "sia-rich-text-editor__link-form", onSubmit: submitLink, children: [
1980
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Input, { autoFocus: true, "aria-label": "\u94FE\u63A5\u5730\u5740", value: linkHref, onChange: (event) => setLinkHref(event.target.value), placeholder: "https://example.com" }),
1981
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Button, { type: "submit", variant: "primary", size: "small", children: "\u5E94\u7528" }),
1982
+ editor?.isActive("link") ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Button, { type: "button", size: "small", onClick: () => {
1858
1983
  setLinkHref("");
1859
1984
  editor.chain().focus().extendMarkRange("link").unsetLink().run();
1860
1985
  setLinkEditorOpen(false);
1861
1986
  }, children: "\u79FB\u9664" }) : null
1862
1987
  ] }),
1863
- children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Button, { type: "button", variant: "text", size: "small", className: `sia-rich-text-editor__tool${editor?.isActive("link") ? " is-active" : ""}`, disabled: disabled || !editor, "aria-label": "\u94FE\u63A5", "aria-pressed": editor?.isActive("link") || void 0, title: "\u94FE\u63A5", onMouseDown: (event) => event.preventDefault(), children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "link" }) })
1988
+ children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Button, { type: "button", variant: "text", size: "small", className: `sia-rich-text-editor__tool${editor?.isActive("link") ? " is-active" : ""}`, disabled: disabled || !editor, "aria-label": "\u94FE\u63A5", "aria-pressed": editor?.isActive("link") || void 0, title: "\u94FE\u63A5", onMouseDown: (event) => event.preventDefault(), children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Icon, { name: "link" }) })
1864
1989
  }
1865
1990
  ),
1866
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "sia-rich-text-editor__divider" })
1991
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: "sia-rich-text-editor__divider" })
1867
1992
  ] }) : null,
1868
1993
  formatButton("\u65E0\u5E8F\u5217\u8868", () => editor?.chain().focus().toggleBulletList().run(), Boolean(editor?.isActive("bulletList")), false, "\u2022 \u5217\u8868"),
1869
1994
  formatButton("\u6709\u5E8F\u5217\u8868", () => editor?.chain().focus().toggleOrderedList().run(), Boolean(editor?.isActive("orderedList")), false, "1. \u5217\u8868"),
1870
- toolbar === "full" ? /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
1995
+ toolbar === "full" ? /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_jsx_runtime10.Fragment, { children: [
1871
1996
  formatButton("\u4EFB\u52A1\u5217\u8868", () => editor?.chain().focus().toggleTaskList().run(), Boolean(editor?.isActive("taskList")), false, "\u2611 \u4EFB\u52A1"),
1872
1997
  formatButton("\u5F15\u7528", () => editor?.chain().focus().toggleBlockquote().run(), Boolean(editor?.isActive("blockquote")), false, "\u275D \u5F15\u7528"),
1873
1998
  formatButton("\u4EE3\u7801\u5757", () => editor?.chain().focus().toggleCodeBlock().run(), Boolean(editor?.isActive("codeBlock")), false, "\u4EE3\u7801\u5757"),
1874
1999
  formatButton("\u63D2\u5165\u8868\u683C", () => editor?.chain().focus().insertTable({ rows: 3, cols: 3, withHeaderRow: true }).run(), Boolean(editor?.isActive("table")), false, "\u8868\u683C"),
1875
- formatButton("\u5206\u5272\u7EBF", () => editor?.chain().focus().setHorizontalRule().run(), false, false, /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "minus" }))
2000
+ formatButton("\u5206\u5272\u7EBF", () => editor?.chain().focus().setHorizontalRule().run(), false, false, /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Icon, { name: "minus" }))
1876
2001
  ] }) : null
1877
2002
  ] }),
1878
- onPasteImage ? /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("small", { children: [
1879
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "image", size: 14 }),
2003
+ onPasteImage ? /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("small", { children: [
2004
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(Icon, { name: "image", size: 14 }),
1880
2005
  pasteImageHint
1881
2006
  ] }) : null
1882
2007
  ] }),
1883
- toolbar === "full" && editor?.isActive("table") ? /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "sia-rich-text-editor__table-toolbar", "aria-label": "\u8868\u683C\u5DE5\u5177\u680F", children: [
1884
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { children: "\u8868\u683C" }),
2008
+ toolbar === "full" && editor?.isActive("table") ? /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "sia-rich-text-editor__table-toolbar", "aria-label": "\u8868\u683C\u5DE5\u5177\u680F", children: [
2009
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { children: "\u8868\u683C" }),
1885
2010
  formatButton("\u524D\u65B9\u63D2\u5165\u5217", () => editor.chain().focus().addColumnBefore().run(), false, !editor.can().addColumnBefore(), "\u524D\u63D2\u5217"),
1886
2011
  formatButton("\u540E\u65B9\u63D2\u5165\u5217", () => editor.chain().focus().addColumnAfter().run(), false, !editor.can().addColumnAfter(), "\u540E\u63D2\u5217"),
1887
2012
  formatButton("\u5220\u9664\u5F53\u524D\u5217", () => editor.chain().focus().deleteColumn().run(), false, !editor.can().deleteColumn(), "\u5220\u5217"),
1888
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "sia-rich-text-editor__divider" }),
2013
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: "sia-rich-text-editor__divider" }),
1889
2014
  formatButton("\u4E0A\u65B9\u63D2\u5165\u884C", () => editor.chain().focus().addRowBefore().run(), false, !editor.can().addRowBefore(), "\u4E0A\u63D2\u884C"),
1890
2015
  formatButton("\u4E0B\u65B9\u63D2\u5165\u884C", () => editor.chain().focus().addRowAfter().run(), false, !editor.can().addRowAfter(), "\u4E0B\u63D2\u884C"),
1891
2016
  formatButton("\u5220\u9664\u5F53\u524D\u884C", () => editor.chain().focus().deleteRow().run(), false, !editor.can().deleteRow(), "\u5220\u884C"),
1892
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "sia-rich-text-editor__divider" }),
2017
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: "sia-rich-text-editor__divider" }),
1893
2018
  formatButton("\u5220\u9664\u8868\u683C", () => editor.chain().focus().deleteTable().run(), false, !editor.can().deleteTable(), "\u5220\u9664\u8868\u683C")
1894
2019
  ] }) : null,
1895
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { ref: editorElementRef, className: "sia-rich-text-editor__content" })
2020
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { ref: editorElementRef, className: "sia-rich-text-editor__content" })
1896
2021
  ] });
1897
2022
  }
1898
2023
  // Annotate the CommonJS export names for ESM import in node: