magic-editor-x 1.0.0

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 (37) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +890 -0
  3. package/dist/_chunks/App-B1FgOsWa.mjs +2143 -0
  4. package/dist/_chunks/App-mtrlABtd.js +2146 -0
  5. package/dist/_chunks/LicensePage-BnyWSrWs.js +375 -0
  6. package/dist/_chunks/LicensePage-CWH-AFR-.mjs +373 -0
  7. package/dist/_chunks/LiveCollaborationPanel-DbDHwr2C.js +222 -0
  8. package/dist/_chunks/LiveCollaborationPanel-ryjcDAA7.mjs +220 -0
  9. package/dist/_chunks/Settings-Bk9bxJTy.js +440 -0
  10. package/dist/_chunks/Settings-D-V2MLVm.mjs +438 -0
  11. package/dist/_chunks/de-CSrHZWEb.mjs +295 -0
  12. package/dist/_chunks/de-CzSo1oD2.js +295 -0
  13. package/dist/_chunks/en-DuQun2v4.mjs +295 -0
  14. package/dist/_chunks/en-DxIkVPUh.js +295 -0
  15. package/dist/_chunks/es-DAQ_97zx.js +273 -0
  16. package/dist/_chunks/es-DEB0CA8S.mjs +273 -0
  17. package/dist/_chunks/fr-Bqkhvdx2.mjs +273 -0
  18. package/dist/_chunks/fr-ChPabvNP.js +273 -0
  19. package/dist/_chunks/getTranslation-C4uWR0DB.mjs +50985 -0
  20. package/dist/_chunks/getTranslation-D35vbDap.js +51001 -0
  21. package/dist/_chunks/index-B5MzUyo0.mjs +2541 -0
  22. package/dist/_chunks/index-BRVqbnOb.mjs +4450 -0
  23. package/dist/_chunks/index-BiLy_f7C.js +2540 -0
  24. package/dist/_chunks/index-CQx7-dFP.js +4472 -0
  25. package/dist/_chunks/pt-BMoYltav.mjs +273 -0
  26. package/dist/_chunks/pt-Cm74LpyZ.js +273 -0
  27. package/dist/_chunks/tools-CjnQJ9w2.mjs +2155 -0
  28. package/dist/_chunks/tools-DNt2tioN.js +2186 -0
  29. package/dist/admin/index.js +3 -0
  30. package/dist/admin/index.mjs +4 -0
  31. package/dist/server/index.js +2554 -0
  32. package/dist/server/index.mjs +2544 -0
  33. package/dist/style.css +164 -0
  34. package/package.json +122 -0
  35. package/pics/collab-magiceditorX.png +0 -0
  36. package/pics/editorX.png +0 -0
  37. package/pics/liveCollabwidget1.png +0 -0
@@ -0,0 +1,2540 @@
1
+ "use strict";
2
+ const React = require("react");
3
+ const jsxRuntime = require("react/jsx-runtime");
4
+ const styled = require("styled-components");
5
+ const __variableDynamicImportRuntimeHelper = (glob, path, segs) => {
6
+ const v = glob[path];
7
+ if (v) {
8
+ return typeof v === "function" ? v() : Promise.resolve(v);
9
+ }
10
+ return new Promise((_, reject) => {
11
+ (typeof queueMicrotask === "function" ? queueMicrotask : setTimeout)(
12
+ reject.bind(
13
+ null,
14
+ new Error(
15
+ "Unknown variable dynamic import: " + path + (path.split("/").length !== segs ? ". Note that variables only represent file names one level deep." : "")
16
+ )
17
+ )
18
+ );
19
+ });
20
+ };
21
+ const PLUGIN_ID = "magic-editor-x";
22
+ const Initializer = ({ setPlugin }) => {
23
+ const ref = React.useRef(setPlugin);
24
+ React.useEffect(() => {
25
+ ref.current(PLUGIN_ID);
26
+ }, []);
27
+ return null;
28
+ };
29
+ const SvgAlien = ({
30
+ fill: fillProp = "currentColor",
31
+ stroke: strokeProp,
32
+ ...props
33
+ }, ref) => {
34
+ const {
35
+ colors
36
+ } = styled.useTheme();
37
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
38
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
39
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 2A12.014 12.014 0 0 0 4 14c0 3 1.57 6.883 4.201 10.375C10.85 27.894 13.764 30 16 30s5.151-2.101 7.799-5.625C26.43 20.875 28 17 28 14A12.014 12.014 0 0 0 16 2M8 14.5A1.5 1.5 0 0 1 9.5 13a4.5 4.5 0 0 1 4.5 4.5 1.5 1.5 0 0 1-1.5 1.5A4.5 4.5 0 0 1 8 14.5M18 25h-4a1 1 0 0 1 0-2h4a1 1 0 0 1 0 2m1.5-6a1.5 1.5 0 0 1-1.5-1.5 4.5 4.5 0 0 1 4.5-4.5 1.5 1.5 0 0 1 1.5 1.5 4.5 4.5 0 0 1-4.5 4.5" }) });
40
+ };
41
+ React.forwardRef(SvgAlien);
42
+ const SvgArchive = ({
43
+ fill: fillProp = "currentColor",
44
+ stroke: strokeProp,
45
+ ...props
46
+ }, ref) => {
47
+ const {
48
+ colors
49
+ } = styled.useTheme();
50
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
51
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
52
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28 6H4a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2v11a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V13a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-9 12h-6a1 1 0 0 1 0-2h6a1 1 0 0 1 0 2m9-7H4V8h24z" }) });
53
+ };
54
+ React.forwardRef(SvgArchive);
55
+ const SvgArrowClockwise = ({
56
+ fill: fillProp = "currentColor",
57
+ stroke: strokeProp,
58
+ ...props
59
+ }, ref) => {
60
+ const {
61
+ colors
62
+ } = styled.useTheme();
63
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
64
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
65
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M30.5 7v6a1.5 1.5 0 0 1-1.5 1.5h-6a1.5 1.5 0 0 1 0-3h2.137l-2.375-2.173-.047-.046a9.5 9.5 0 1 0-6.84 16.219H16a9.44 9.44 0 0 0 6.519-2.59 1.5 1.5 0 1 1 2.061 2.181A12.43 12.43 0 0 1 16 28.5h-.171a12.5 12.5 0 1 1 8.985-21.368L27.5 9.59V7a1.5 1.5 0 0 1 3 0" }) });
66
+ };
67
+ React.forwardRef(SvgArrowClockwise);
68
+ const SvgArrowDown = ({
69
+ fill: fillProp = "currentColor",
70
+ stroke: strokeProp,
71
+ ...props
72
+ }, ref) => {
73
+ const {
74
+ colors
75
+ } = styled.useTheme();
76
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
77
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
78
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m26.061 19.061-9 9a1.503 1.503 0 0 1-2.125 0l-9-9a1.503 1.503 0 1 1 2.125-2.125l6.439 6.439V5a1.5 1.5 0 1 1 3 0v18.375l6.439-6.44a1.502 1.502 0 1 1 2.125 2.125z" }) });
79
+ };
80
+ React.forwardRef(SvgArrowDown);
81
+ const SvgArrowLeft = ({
82
+ fill: fillProp = "currentColor",
83
+ stroke: strokeProp,
84
+ ...props
85
+ }, ref) => {
86
+ const {
87
+ colors
88
+ } = styled.useTheme();
89
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
90
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
91
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.5 16a1.5 1.5 0 0 1-1.5 1.5H8.625l6.44 6.439a1.502 1.502 0 1 1-2.125 2.125l-9-9a1.5 1.5 0 0 1 0-2.125l9-9a1.503 1.503 0 0 1 2.125 2.125L8.625 14.5H27a1.5 1.5 0 0 1 1.5 1.5" }) });
92
+ };
93
+ React.forwardRef(SvgArrowLeft);
94
+ const SvgArrowLineLeft = ({
95
+ fill: fillProp = "currentColor",
96
+ stroke: strokeProp,
97
+ ...props
98
+ }, ref) => {
99
+ const {
100
+ colors
101
+ } = styled.useTheme();
102
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
103
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
104
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, fill, viewBox: "0 0 16 16", stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.75 8a.75.75 0 0 1-.75.75H6.813l3.22 3.22a.751.751 0 1 1-1.063 1.062l-4.5-4.5a.75.75 0 0 1 0-1.063l4.5-4.5a.751.751 0 0 1 1.063 1.063L6.813 7.25H14a.75.75 0 0 1 .75.75M2.5 1.75a.75.75 0 0 0-.75.75v11a.75.75 0 0 0 1.5 0v-11a.75.75 0 0 0-.75-.75" }) });
105
+ };
106
+ React.forwardRef(SvgArrowLineLeft);
107
+ const SvgArrowLineRight = ({
108
+ fill: fillProp = "currentColor",
109
+ stroke: strokeProp,
110
+ ...props
111
+ }, ref) => {
112
+ const {
113
+ colors
114
+ } = styled.useTheme();
115
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
116
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
117
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, fill, viewBox: "0 0 16 16", stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.53 7.47a.75.75 0 0 1 0 1.062l-4.5 4.5a.751.751 0 1 1-1.062-1.063l3.22-3.219H2a.75.75 0 1 1 0-1.5h7.188L5.969 4.03a.751.751 0 1 1 1.063-1.062zm1.97-5.72a.75.75 0 0 0-.75.75v11a.75.75 0 0 0 1.5 0v-11a.75.75 0 0 0-.75-.75" }) });
118
+ };
119
+ React.forwardRef(SvgArrowLineRight);
120
+ const SvgArrowRight = ({
121
+ fill: fillProp = "currentColor",
122
+ stroke: strokeProp,
123
+ ...props
124
+ }, ref) => {
125
+ const {
126
+ colors
127
+ } = styled.useTheme();
128
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
129
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
130
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m28.061 17.061-9 9a1.503 1.503 0 1 1-2.125-2.125l6.439-6.436H5a1.5 1.5 0 1 1 0-3h18.375l-6.436-6.44a1.503 1.503 0 0 1 2.125-2.125l9 9a1.5 1.5 0 0 1-.003 2.126" }) });
131
+ };
132
+ React.forwardRef(SvgArrowRight);
133
+ const SvgArrowUp = ({
134
+ fill: fillProp = "currentColor",
135
+ stroke: strokeProp,
136
+ ...props
137
+ }, ref) => {
138
+ const {
139
+ colors
140
+ } = styled.useTheme();
141
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
142
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
143
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M26.061 15.061a1.5 1.5 0 0 1-2.125 0L17.5 8.625V27a1.5 1.5 0 1 1-3 0V8.625l-6.439 6.436a1.503 1.503 0 1 1-2.125-2.125l9-9a1.5 1.5 0 0 1 2.125 0l9 9a1.5 1.5 0 0 1 0 2.125" }) });
144
+ };
145
+ React.forwardRef(SvgArrowUp);
146
+ const SvgArrowsCounterClockwise = ({
147
+ fill: fillProp = "currentColor",
148
+ stroke: strokeProp,
149
+ ...props
150
+ }, ref) => {
151
+ const {
152
+ colors
153
+ } = styled.useTheme();
154
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
155
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
156
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 13.5H5A1.5 1.5 0 0 1 3.5 12V6a1.5 1.5 0 0 1 3 0v1.733C8.581 5.683 11.786 3.5 16 3.5c5.558 0 8.92 3.299 9.061 3.439a1.5 1.5 0 0 1-2.117 2.125C22.889 9.01 20.25 6.5 16 6.5c-3.625 0-6.367 2.21-8 4h3a1.5 1.5 0 1 1 0 3m16 5h-6a1.5 1.5 0 1 0 0 3h3c-1.625 1.79-4.375 4-8 4-4.25 0-6.889-2.511-6.944-2.565A1.5 1.5 0 0 0 6.94 25.06c.141.141 3.504 3.44 9.061 3.44 4.214 0 7.419-2.183 9.5-4.233V26a1.5 1.5 0 1 0 3 0v-6a1.5 1.5 0 0 0-1.5-1.5" }) });
157
+ };
158
+ React.forwardRef(SvgArrowsCounterClockwise);
159
+ const SvgArrowsOut = ({
160
+ fill: fillProp = "currentColor",
161
+ stroke: strokeProp,
162
+ ...props
163
+ }, ref) => {
164
+ const {
165
+ colors
166
+ } = styled.useTheme();
167
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
168
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
169
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M220 48v48a12 12 0 0 1-24 0V77l-39.51 39.52a12 12 0 0 1-17-17L179 60h-19a12 12 0 0 1 0-24h48a12 12 0 0 1 12 12M99.51 139.51 60 179v-19a12 12 0 0 0-24 0v48a12 12 0 0 0 12 12h48a12 12 0 0 0 0-24H77l39.52-39.51a12 12 0 0 0-17-17Z" }) });
170
+ };
171
+ React.forwardRef(SvgArrowsOut);
172
+ const SvgBell = ({
173
+ fill: fillProp = "currentColor",
174
+ stroke: strokeProp,
175
+ ...props
176
+ }, ref) => {
177
+ const {
178
+ colors
179
+ } = styled.useTheme();
180
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
181
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
182
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27.725 21.993C27.031 20.798 26 17.416 26 13a10 10 0 0 0-20 0c0 4.418-1.032 7.797-1.726 8.993A2 2 0 0 0 6 25h5.101a5 5 0 0 0 9.798 0H26a2 2 0 0 0 1.725-3.008M16 27a3 3 0 0 1-2.828-2h5.656A3 3 0 0 1 16 27" }) });
183
+ };
184
+ React.forwardRef(SvgBell);
185
+ const SvgBold = ({
186
+ fill: fillProp = "currentColor",
187
+ stroke: strokeProp,
188
+ ...props
189
+ }, ref) => {
190
+ const {
191
+ colors
192
+ } = styled.useTheme();
193
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
194
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
195
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.135 14.308A6.001 6.001 0 0 0 17.5 4.5H9A1.5 1.5 0 0 0 7.5 6v19A1.5 1.5 0 0 0 9 26.5h10a6.5 6.5 0 0 0 3.135-12.192M10.5 7.5h7a3 3 0 0 1 0 6h-7zm8.5 16h-8.5v-7H19a3.5 3.5 0 1 1 0 7" }) });
196
+ };
197
+ React.forwardRef(SvgBold);
198
+ const SvgBook = ({
199
+ fill: fillProp = "currentColor",
200
+ stroke: strokeProp,
201
+ ...props
202
+ }, ref) => {
203
+ const {
204
+ colors
205
+ } = styled.useTheme();
206
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
207
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
208
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 4v20a1 1 0 0 1-1 1H9a2 2 0 0 0-2 2h17a1 1 0 0 1 0 2H6a1 1 0 0 1-1-1V7a4 4 0 0 1 4-4h17a1 1 0 0 1 1 1" }) });
209
+ };
210
+ React.forwardRef(SvgBook);
211
+ const SvgBriefcase = ({
212
+ fill: fillProp = "currentColor",
213
+ stroke: strokeProp,
214
+ ...props
215
+ }, ref) => {
216
+ const {
217
+ colors
218
+ } = styled.useTheme();
219
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
220
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
221
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 14a1 1 0 0 1-1 1h-4a1 1 0 0 1 0-2h4a1 1 0 0 1 1 1m10-5v16a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h5V6a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3v1h5a2 2 0 0 1 2 2M12 7h8V6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1zm15 7.201V9H5v5.201A23 23 0 0 0 16 17a23 23 0 0 0 11-2.799" }) });
222
+ };
223
+ React.forwardRef(SvgBriefcase);
224
+ const SvgBulletList = ({
225
+ fill: fillProp = "currentColor",
226
+ stroke: strokeProp,
227
+ ...props
228
+ }, ref) => {
229
+ const {
230
+ colors
231
+ } = styled.useTheme();
232
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
233
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
234
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.5 8A1.5 1.5 0 0 1 11 6.5h16a1.5 1.5 0 0 1 0 3H11A1.5 1.5 0 0 1 9.5 8M27 14.5H11a1.5 1.5 0 1 0 0 3h16a1.5 1.5 0 1 0 0-3m0 8H11a1.5 1.5 0 1 0 0 3h16a1.5 1.5 0 1 0 0-3M5.5 14a2 2 0 1 0 0 4 2 2 0 0 0 0-4m0-8a2 2 0 1 0 0 4 2 2 0 0 0 0-4m0 16a2 2 0 1 0 0 4 2 2 0 0 0 0-4" }) });
235
+ };
236
+ React.forwardRef(SvgBulletList);
237
+ const SvgCalendar = ({
238
+ fill: fillProp = "currentColor",
239
+ stroke: strokeProp,
240
+ ...props
241
+ }, ref) => {
242
+ const {
243
+ colors
244
+ } = styled.useTheme();
245
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
246
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
247
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M26 4h-3V3a1 1 0 0 0-2 0v1H11V3a1 1 0 0 0-2 0v1H6a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 6H6V6h3v1a1 1 0 0 0 2 0V6h10v1a1 1 0 0 0 2 0V6h3z" }) });
248
+ };
249
+ const ForwardRef$2x = React.forwardRef(SvgCalendar);
250
+ const SvgCar = ({
251
+ fill: fillProp = "currentColor",
252
+ stroke: strokeProp,
253
+ ...props
254
+ }, ref) => {
255
+ const {
256
+ colors
257
+ } = styled.useTheme();
258
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
259
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
260
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M30 14h-1.35l-3.472-7.812A2 2 0 0 0 23.35 5H8.65a2 2 0 0 0-1.828 1.188L3.35 14H2a1 1 0 0 0 0 2h1v10a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2v-2h12v2a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2V16h1a1 1 0 0 0 0-2m-20 6H8a1 1 0 0 1 0-2h2a1 1 0 0 1 0 2m12 0a1 1 0 0 1 0-2h2a1 1 0 0 1 0 2z" }) });
261
+ };
262
+ React.forwardRef(SvgCar);
263
+ const SvgCaretDown = ({
264
+ fill: fillProp = "currentColor",
265
+ stroke: strokeProp,
266
+ ...props
267
+ }, ref) => {
268
+ const {
269
+ colors
270
+ } = styled.useTheme();
271
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
272
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
273
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m26.708 12.708-10 10a1 1 0 0 1-1.415 0l-10-10A1 1 0 0 1 6 11h20a1 1 0 0 1 .707 1.707" }) });
274
+ };
275
+ const ForwardRef$2v = React.forwardRef(SvgCaretDown);
276
+ const SvgCaretUp = ({
277
+ fill: fillProp = "currentColor",
278
+ stroke: strokeProp,
279
+ ...props
280
+ }, ref) => {
281
+ const {
282
+ colors
283
+ } = styled.useTheme();
284
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
285
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
286
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M26.924 20.383A1 1 0 0 1 26 21H6a1 1 0 0 1-.708-1.707l10-10a1 1 0 0 1 1.415 0l10 10a1 1 0 0 1 .217 1.09" }) });
287
+ };
288
+ React.forwardRef(SvgCaretUp);
289
+ const SvgCast = ({
290
+ fill: fillProp = "currentColor",
291
+ stroke: strokeProp,
292
+ ...props
293
+ }, ref) => {
294
+ const {
295
+ colors
296
+ } = styled.useTheme();
297
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
298
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
299
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 26a1 1 0 1 1-2 0 1 1 0 0 0-1-1 1 1 0 0 1 0-2 3 3 0 0 1 3 3m-3-7a1 1 0 0 0 0 2 5 5 0 0 1 5 5 1 1 0 1 0 2 0 7.01 7.01 0 0 0-7-7m0-4a1 1 0 0 0 0 2 9.01 9.01 0 0 1 9 9 1 1 0 0 0 2 0A11.01 11.01 0 0 0 4 15M27 5H5a2 2 0 0 0-2 2v5a1 1 0 0 0 1 1 13.014 13.014 0 0 1 13 13 1 1 0 0 0 1 1h9a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2" }) });
300
+ };
301
+ React.forwardRef(SvgCast);
302
+ const SvgCastleTurret = ({
303
+ fill: fillProp = "currentColor",
304
+ stroke: strokeProp,
305
+ ...props
306
+ }, ref) => {
307
+ const {
308
+ colors
309
+ } = styled.useTheme();
310
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
311
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
312
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M25 3h-1a2 2 0 0 0-2 2v2h-3.5V5a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v2H10V5a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v5.586A1.98 1.98 0 0 0 5.586 12L7 13.414V27a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V13.414L26.414 12A1.98 1.98 0 0 0 27 10.586V5a2 2 0 0 0-2-2m-6 24h-6v-8a3 3 0 0 1 6 0z" }) });
313
+ };
314
+ React.forwardRef(SvgCastleTurret);
315
+ const SvgChartBubble = ({
316
+ fill: fillProp = "currentColor",
317
+ stroke: strokeProp,
318
+ ...props
319
+ }, ref) => {
320
+ const {
321
+ colors
322
+ } = styled.useTheme();
323
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
324
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
325
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 5H5a2 2 0 0 0-2 2v18a2 2 0 0 0 2 2h22a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-3.5 4a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m0 7a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m-5-2a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m-3-5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m-3 7a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M25 24H7a1 1 0 0 1-1-1V9a1 1 0 0 1 2 0v13h17a1 1 0 0 1 0 2" }) });
326
+ };
327
+ React.forwardRef(SvgChartBubble);
328
+ const SvgChartCircle = ({
329
+ fill: fillProp = "currentColor",
330
+ stroke: strokeProp,
331
+ ...props
332
+ }, ref) => {
333
+ const {
334
+ colors
335
+ } = styled.useTheme();
336
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
337
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
338
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.094 14.443a12.8 12.8 0 0 1 2.914-6.72 2 2 0 0 1 2.953-.138l3.459 3.533a1.98 1.98 0 0 1 .211 2.56 3.2 3.2 0 0 0-.462.968.5.5 0 0 1-.478.354h-8.1a.5.5 0 0 1-.497-.557m14.08-11.435A2 2 0 0 0 15 5v5.084a1.98 1.98 0 0 0 1.656 1.97 4 4 0 0 1 .677 7.72.51.51 0 0 0-.333.476v8.154a.5.5 0 0 0 .558.5A13.04 13.04 0 0 0 29 16.185C29.094 9.4 23.899 3.61 17.174 3.008M14.656 19.77a4 4 0 0 1-2.425-2.427.51.51 0 0 0-.475-.343H3.59a.5.5 0 0 0-.5.556A13.01 13.01 0 0 0 14.443 28.91a.5.5 0 0 0 .556-.5V20.25a.51.51 0 0 0-.343-.48" }) });
339
+ };
340
+ React.forwardRef(SvgChartCircle);
341
+ const SvgChartPie = ({
342
+ fill: fillProp = "currentColor",
343
+ stroke: strokeProp,
344
+ ...props
345
+ }, ref) => {
346
+ const {
347
+ colors
348
+ } = styled.useTheme();
349
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
350
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
351
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m0 2a11 11 0 0 1 8.984 4.659L16 14.845zm0 22a11 11 0 0 1-8.984-4.659l18.97-10.951A11 11 0 0 1 16 27" }) });
352
+ };
353
+ React.forwardRef(SvgChartPie);
354
+ const SvgCheck = ({
355
+ fill: fillProp = "currentColor",
356
+ stroke: strokeProp,
357
+ ...props
358
+ }, ref) => {
359
+ const {
360
+ colors
361
+ } = styled.useTheme();
362
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
363
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
364
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m29.061 10.061-16 16a1.5 1.5 0 0 1-2.125 0l-7-7a1.504 1.504 0 0 1 2.125-2.125L12 22.875 26.939 7.939a1.502 1.502 0 1 1 2.125 2.125z" }) });
365
+ };
366
+ const ForwardRef$2o = React.forwardRef(SvgCheck);
367
+ const SvgCheckCircle = ({
368
+ fill: fillProp = "currentColor",
369
+ stroke: strokeProp,
370
+ ...props
371
+ }, ref) => {
372
+ const {
373
+ colors
374
+ } = styled.useTheme();
375
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
376
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
377
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m5.708 10.708-7 7a1 1 0 0 1-1.415 0l-3-3a1 1 0 0 1 1.415-1.415L14 18.586l6.293-6.293a1 1 0 0 1 1.415 1.415" }) });
378
+ };
379
+ const ForwardRef$2n = React.forwardRef(SvgCheckCircle);
380
+ const SvgCheckCircleEmpty = ({
381
+ fill: fillProp = "currentColor",
382
+ stroke: strokeProp,
383
+ ...props
384
+ }, ref) => {
385
+ const {
386
+ colors
387
+ } = styled.useTheme();
388
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
389
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
390
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M176.49 95.51a12 12 0 0 1 0 17l-56 56a12 12 0 0 1-17 0l-24-24a12 12 0 1 1 17-17L112 143l47.51-47.52a12 12 0 0 1 16.98.03M236 128A108 108 0 1 1 128 20a108.12 108.12 0 0 1 108 108m-24 0a84 84 0 1 0-84 84 84.09 84.09 0 0 0 84-84" }) });
391
+ };
392
+ React.forwardRef(SvgCheckCircleEmpty);
393
+ const SvgChevronDown = ({
394
+ fill: fillProp = "currentColor",
395
+ stroke: strokeProp,
396
+ ...props
397
+ }, ref) => {
398
+ const {
399
+ colors
400
+ } = styled.useTheme();
401
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
402
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
403
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m27.061 13.061-10 10a1.503 1.503 0 0 1-2.125 0l-10-10a1.503 1.503 0 1 1 2.125-2.125L16 19.875l8.939-8.94a1.502 1.502 0 1 1 2.125 2.125z" }) });
404
+ };
405
+ React.forwardRef(SvgChevronDown);
406
+ const SvgChevronLeft = ({
407
+ fill: fillProp = "currentColor",
408
+ stroke: strokeProp,
409
+ ...props
410
+ }, ref) => {
411
+ const {
412
+ colors
413
+ } = styled.useTheme();
414
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
415
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
416
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.061 24.939a1.503 1.503 0 0 1-2.125 2.125l-10-10a1.5 1.5 0 0 1 0-2.125l10-10a1.503 1.503 0 0 1 2.125 2.125L12.125 16z" }) });
417
+ };
418
+ const ForwardRef$2k = React.forwardRef(SvgChevronLeft);
419
+ const SvgChevronRight = ({
420
+ fill: fillProp = "currentColor",
421
+ stroke: strokeProp,
422
+ ...props
423
+ }, ref) => {
424
+ const {
425
+ colors
426
+ } = styled.useTheme();
427
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
428
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
429
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.061 17.061-10 10a1.503 1.503 0 0 1-2.125-2.125L19.875 16l-8.936-8.939a1.502 1.502 0 1 1 2.125-2.125l10 10a1.5 1.5 0 0 1-.003 2.125" }) });
430
+ };
431
+ const ForwardRef$2j = React.forwardRef(SvgChevronRight);
432
+ const SvgChevronUp = ({
433
+ fill: fillProp = "currentColor",
434
+ stroke: strokeProp,
435
+ ...props
436
+ }, ref) => {
437
+ const {
438
+ colors
439
+ } = styled.useTheme();
440
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
441
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
442
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27.061 21.061a1.503 1.503 0 0 1-2.125 0L16 12.125l-8.939 8.936a1.503 1.503 0 0 1-2.125-2.125l10-10a1.5 1.5 0 0 1 2.125 0l10 10a1.5 1.5 0 0 1 0 2.125" }) });
443
+ };
444
+ React.forwardRef(SvgChevronUp);
445
+ const SvgClock = ({
446
+ fill: fillProp = "currentColor",
447
+ stroke: strokeProp,
448
+ ...props
449
+ }, ref) => {
450
+ const {
451
+ colors
452
+ } = styled.useTheme();
453
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
454
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
455
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m7 14h-7a1 1 0 0 1-1-1V9a1 1 0 0 1 2 0v6h6a1 1 0 0 1 0 2" }) });
456
+ };
457
+ const ForwardRef$2h = React.forwardRef(SvgClock);
458
+ const SvgClockCounterClockwise = ({
459
+ fill: fillProp = "currentColor",
460
+ stroke: strokeProp,
461
+ ...props
462
+ }, ref) => {
463
+ const {
464
+ colors
465
+ } = styled.useTheme();
466
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
467
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
468
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28 16a12 12 0 0 1-20.236 8.728 1.002 1.002 0 0 1 1.375-1.456 10 10 0 1 0-.21-14.343c-.441.446-.857.885-1.26 1.321l2.039 2.043A1 1 0 0 1 9 14H4a1 1 0 0 1-1-1V8a1 1 0 0 1 1.707-.707L6.25 8.838c.402-.437.817-.875 1.258-1.32A12 12 0 0 1 28 16M16 9a1 1 0 0 0-1 1v6a1 1 0 0 0 .485.858l5 3a.999.999 0 0 0 1.486-1.1 1 1 0 0 0-.456-.616L17 15.434V10a1 1 0 0 0-1-1" }) });
469
+ };
470
+ React.forwardRef(SvgClockCounterClockwise);
471
+ const SvgCloud = ({
472
+ fill: fillProp = "currentColor",
473
+ stroke: strokeProp,
474
+ ...props
475
+ }, ref) => {
476
+ const {
477
+ colors
478
+ } = styled.useTheme();
479
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
480
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
481
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.008 5a11.01 11.01 0 0 0-9.847 6.084A10.9 10.9 0 0 0 9 15.966 1.023 1.023 0 0 1 8.071 17 1 1 0 0 1 7 16a13 13 0 0 1 .668-4.115.5.5 0 0 0-.594-.647A8.01 8.01 0 0 0 1 19c0 4.399 3.719 8 8.125 8H20a11.01 11.01 0 0 0 10.991-11.435C30.764 9.693 25.884 5 20.008 5" }) });
482
+ };
483
+ React.forwardRef(SvgCloud);
484
+ const SvgCloudUpload = ({
485
+ fill: fillProp = "currentColor",
486
+ stroke: strokeProp,
487
+ ...props
488
+ }, ref) => {
489
+ const {
490
+ colors
491
+ } = styled.useTheme();
492
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
493
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
494
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M30.991 15.565C30.764 9.693 25.884 5 20.008 5a11.01 11.01 0 0 0-9.847 6.084A10.9 10.9 0 0 0 9 15.966 1.023 1.023 0 0 1 8.071 17 1 1 0 0 1 7 16a13 13 0 0 1 .668-4.115.5.5 0 0 0-.594-.647A8.01 8.01 0 0 0 1 19c0 4.399 3.719 8 8.125 8H20a11.01 11.01 0 0 0 10.991-11.435m-7.283 3.143a1 1 0 0 1-1.415 0L20 16.414V24a1 1 0 0 1-2 0v-7.586l-2.293 2.293a1 1 0 0 1-1.415-1.415l4-4a1 1 0 0 1 1.415 0l4 4a1 1 0 0 1 0 1.415" }) });
495
+ };
496
+ React.forwardRef(SvgCloudUpload);
497
+ const SvgCode = ({
498
+ fill: fillProp = "currentColor",
499
+ stroke: strokeProp,
500
+ ...props
501
+ }, ref) => {
502
+ const {
503
+ colors
504
+ } = styled.useTheme();
505
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
506
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
507
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.96 12.153 4.342 16l4.618 3.848a1.5 1.5 0 1 1-1.92 2.305l-6-5a1.5 1.5 0 0 1 0-2.305l6-5a1.5 1.5 0 0 1 1.92 2.304m22 2.694-6-5a1.5 1.5 0 1 0-1.92 2.306L27.658 16l-4.618 3.848a1.5 1.5 0 1 0 1.92 2.305l6-5a1.5 1.5 0 0 0 0-2.305M20.512 3.59a1.5 1.5 0 0 0-1.922.898l-8 22a1.5 1.5 0 0 0 2.82 1.024l8-22a1.5 1.5 0 0 0-.898-1.922" }) });
508
+ };
509
+ React.forwardRef(SvgCode);
510
+ const SvgCodeBlock = ({
511
+ fill: fillProp = "currentColor",
512
+ stroke: strokeProp,
513
+ ...props
514
+ }, ref) => {
515
+ const {
516
+ colors
517
+ } = styled.useTheme();
518
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
519
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
520
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M200 40h-32a16 16 0 0 0-16-16H32a16 16 0 0 0-16 16v80a16 16 0 0 0 16 16h8v64a16 16 0 0 0 16 16h144a16 16 0 0 0 16-16V56a16 16 0 0 0-16-16m-93.66 21.66a8 8 0 0 1 11.32-11.32l24 24a8 8 0 0 1 0 11.32l-24 24a8 8 0 0 1-11.32-11.32L124.69 80Zm-64 24a8 8 0 0 1 0-11.32l24-24a8 8 0 0 1 11.32 11.32L59.31 80l18.35 18.34a8 8 0 0 1-11.32 11.32ZM200 200H56v-64h96a16 16 0 0 0 16-16V56h32Z" }) });
521
+ };
522
+ React.forwardRef(SvgCodeBlock);
523
+ const SvgCoffee = ({
524
+ fill: fillProp = "currentColor",
525
+ stroke: strokeProp,
526
+ ...props
527
+ }, ref) => {
528
+ const {
529
+ colors
530
+ } = styled.useTheme();
531
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
532
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
533
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M26 10H4a1 1 0 0 0-1 1v6a12.04 12.04 0 0 0 4.068 9H4a1 1 0 0 0 0 2h22a1 1 0 0 0 0-2h-3.067a12.1 12.1 0 0 0 3.375-5.011A5 5 0 0 0 31 16v-1a5 5 0 0 0-5-5m3 6a3 3 0 0 1-2.15 2.875Q27 17.944 27 17v-4.828A3 3 0 0 1 29 15zM14 7V3a1 1 0 0 1 2 0v4a1 1 0 0 1-2 0m4 0V3a1 1 0 0 1 2 0v4a1 1 0 0 1-2 0m-8 0V3a1 1 0 0 1 2 0v4a1 1 0 0 1-2 0" }) });
534
+ };
535
+ React.forwardRef(SvgCoffee);
536
+ const SvgCog = ({
537
+ fill: fillProp = "currentColor",
538
+ stroke: strokeProp,
539
+ ...props
540
+ }, ref) => {
541
+ const {
542
+ colors
543
+ } = styled.useTheme();
544
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
545
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
546
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M29.743 13.401a1 1 0 0 0-.487-.675l-3.729-2.125-.015-4.202a1 1 0 0 0-.353-.76 14 14 0 0 0-4.59-2.584 1 1 0 0 0-.808.074L16 5.23l-3.765-2.106a1 1 0 0 0-.809-.075 14 14 0 0 0-4.585 2.594 1 1 0 0 0-.354.758L6.47 10.61 2.74 12.734a1 1 0 0 0-.486.675 13.3 13.3 0 0 0 0 5.195 1 1 0 0 0 .486.675l3.729 2.125.015 4.204a1 1 0 0 0 .353.76 14 14 0 0 0 4.59 2.583 1 1 0 0 0 .808-.073L16 26.768l3.765 2.107a1.013 1.013 0 0 0 .809.073 14 14 0 0 0 4.585-2.592 1 1 0 0 0 .354-.759l.018-4.206 3.729-2.125a1 1 0 0 0 .486-.675c.34-1.713.338-3.477-.003-5.19M16 21a5 5 0 1 1 0-10 5 5 0 0 1 0 10" }) });
547
+ };
548
+ React.forwardRef(SvgCog);
549
+ const SvgCollapse = ({
550
+ fill: fillProp = "currentColor",
551
+ stroke: strokeProp,
552
+ ...props
553
+ }, ref) => {
554
+ const {
555
+ colors
556
+ } = styled.useTheme();
557
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
558
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
559
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.5 12V6a1.5 1.5 0 1 1 3 0v4.5H26a1.5 1.5 0 1 1 0 3h-6a1.5 1.5 0 0 1-1.5-1.5M12 18.5H6a1.5 1.5 0 1 0 0 3h4.5V26a1.5 1.5 0 1 0 3 0v-6a1.5 1.5 0 0 0-1.5-1.5m14 0h-6a1.5 1.5 0 0 0-1.5 1.5v6a1.5 1.5 0 1 0 3 0v-4.5H26a1.5 1.5 0 1 0 0-3m-14-14A1.5 1.5 0 0 0 10.5 6v4.5H6a1.5 1.5 0 1 0 0 3h6a1.5 1.5 0 0 0 1.5-1.5V6A1.5 1.5 0 0 0 12 4.5" }) });
560
+ };
561
+ React.forwardRef(SvgCollapse);
562
+ const SvgCommand = ({
563
+ fill: fillProp = "currentColor",
564
+ stroke: strokeProp,
565
+ ...props
566
+ }, ref) => {
567
+ const {
568
+ colors
569
+ } = styled.useTheme();
570
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
571
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
572
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22.5 17.5h-2v-3h2a5 5 0 1 0-5-5v2h-3v-2a5 5 0 1 0-5 5h2v3h-2a5 5 0 1 0 5 5v-2h3v2a5 5 0 1 0 5-5m-2-8a2 2 0 1 1 2 2h-2zm-13 0a2 2 0 0 1 4 0v2h-2a2 2 0 0 1-2-2m4 13a2 2 0 1 1-2-2h2zm3-8h3v3h-3zm8 10a2 2 0 0 1-2-2v-2h2a2 2 0 0 1 0 4" }) });
573
+ };
574
+ React.forwardRef(SvgCommand);
575
+ const SvgCrop = ({
576
+ fill: fillProp = "currentColor",
577
+ stroke: strokeProp,
578
+ ...props
579
+ }, ref) => {
580
+ const {
581
+ colors
582
+ } = styled.useTheme();
583
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
584
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
585
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M30.5 24a1.5 1.5 0 0 1-1.5 1.5h-3.5V29a1.5 1.5 0 1 1-3 0v-3.5H8A1.5 1.5 0 0 1 6.5 24V9.5H3a1.5 1.5 0 0 1 0-3h3.5V3a1.5 1.5 0 0 1 3 0v19.5H29a1.5 1.5 0 0 1 1.5 1.5M13 9.5h9.5V19a1.5 1.5 0 1 0 3 0V8A1.5 1.5 0 0 0 24 6.5H13a1.5 1.5 0 0 0 0 3" }) });
586
+ };
587
+ React.forwardRef(SvgCrop);
588
+ const SvgCross = ({
589
+ fill: fillProp = "currentColor",
590
+ stroke: strokeProp,
591
+ ...props
592
+ }, ref) => {
593
+ const {
594
+ colors
595
+ } = styled.useTheme();
596
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
597
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
598
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M26.061 23.939a1.503 1.503 0 0 1-2.125 2.125L16 18.125l-7.939 7.936a1.503 1.503 0 1 1-2.125-2.125L13.875 16 5.939 8.061a1.503 1.503 0 1 1 2.125-2.125L16 13.875l7.939-7.94a1.502 1.502 0 1 1 2.125 2.125L18.125 16z" }) });
599
+ };
600
+ const ForwardRef$26 = React.forwardRef(SvgCross);
601
+ const SvgCrossCircle = ({
602
+ fill: fillProp = "currentColor",
603
+ stroke: strokeProp,
604
+ ...props
605
+ }, ref) => {
606
+ const {
607
+ colors
608
+ } = styled.useTheme();
609
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
610
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
611
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m4.708 16.293a1 1 0 0 1-1.415 1.415L16 17.414l-3.293 3.293a1 1 0 0 1-1.415-1.415L14.587 16l-3.293-3.293a1 1 0 1 1 1.415-1.415L16 14.587l3.293-3.293a1 1 0 0 1 1.415 1.415L17.414 16z" }) });
612
+ };
613
+ React.forwardRef(SvgCrossCircle);
614
+ const SvgCrown = ({
615
+ fill: fillProp = "currentColor",
616
+ stroke: strokeProp,
617
+ ...props
618
+ }, ref) => {
619
+ const {
620
+ colors
621
+ } = styled.useTheme();
622
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
623
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
624
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M30.48 9.524a1.51 1.51 0 0 0-1.668-.213l-6.276 3.125-5.24-8.704a1.514 1.514 0 0 0-2.592 0l-5.24 8.708L3.19 9.315a1.514 1.514 0 0 0-2.113 1.825l4.625 14.17a1 1 0 0 0 1.46.55C7.194 25.841 10.39 24 16 24s8.806 1.841 8.835 1.859a1 1 0 0 0 1.464-.549l4.625-14.166a1.51 1.51 0 0 0-.444-1.62M21.98 19.6a1 1 0 0 1-1.159.811 28.5 28.5 0 0 0-9.652 0 1 1 0 0 1-.348-1.97 30.6 30.6 0 0 1 10.348 0 1 1 0 0 1 .816 1.159z" }) });
625
+ };
626
+ React.forwardRef(SvgCrown);
627
+ const SvgCursor = ({
628
+ fill: fillProp = "currentColor",
629
+ stroke: strokeProp,
630
+ ...props
631
+ }, ref) => {
632
+ const {
633
+ colors
634
+ } = styled.useTheme();
635
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
636
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
637
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27.414 24a2 2 0 0 1 0 2.829l-.585.585a2 2 0 0 1-2.829 0l-6.906-6.905-2.735 6.292A1.98 1.98 0 0 1 12.533 28h-.098a1.98 1.98 0 0 1-1.801-1.375L4.1 6.615A1.994 1.994 0 0 1 6.615 4.1l20.01 6.534a2 2 0 0 1 .176 3.725l-6.292 2.735z" }) });
638
+ };
639
+ React.forwardRef(SvgCursor);
640
+ const SvgDatabase = ({
641
+ fill: fillProp = "currentColor",
642
+ stroke: strokeProp,
643
+ ...props
644
+ }, ref) => {
645
+ const {
646
+ colors
647
+ } = styled.useTheme();
648
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
649
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
650
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3C9.271 3 4 6.075 4 10v12c0 3.925 5.271 7 12 7s12-3.075 12-7V10c0-3.925-5.271-7-12-7m10 13c0 1.203-.985 2.429-2.701 3.365C21.366 20.419 18.774 21 16 21s-5.366-.581-7.299-1.635C6.985 18.429 6 17.203 6 16v-2.08C8.133 15.795 11.779 17 16 17s7.868-1.21 10-3.08zm-2.701 9.365C21.366 26.419 18.774 27 16 27s-5.366-.581-7.299-1.635C6.985 24.429 6 23.203 6 22v-2.08C8.133 21.795 11.779 23 16 23s7.868-1.21 10-3.08V22c0 1.203-.985 2.429-2.701 3.365" }) });
651
+ };
652
+ React.forwardRef(SvgDatabase);
653
+ const SvgDiscuss = ({
654
+ fill: fillProp = "currentColor",
655
+ stroke: strokeProp,
656
+ ...props
657
+ }, ref) => {
658
+ const {
659
+ colors
660
+ } = styled.useTheme();
661
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
662
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
663
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M29 12a2 2 0 0 0-2-2h-4V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16a1 1 0 0 0 1.625.777L9 19.25V23a2 2 0 0 0 2 2h11.699l4.676 3.778A1 1 0 0 0 29 28zm-5.319 11.223a1 1 0 0 0-.625-.223H11v-4h10a2 2 0 0 0 2-2v-5h4v13.906z" }) });
664
+ };
665
+ React.forwardRef(SvgDiscuss);
666
+ const SvgDownload = ({
667
+ fill: fillProp = "currentColor",
668
+ stroke: strokeProp,
669
+ ...props
670
+ }, ref) => {
671
+ const {
672
+ colors
673
+ } = styled.useTheme();
674
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
675
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
676
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.5 19v7a2.5 2.5 0 0 1-2.5 2.5H6A2.5 2.5 0 0 1 3.5 26v-7a1.5 1.5 0 0 1 3 0v6.5h19V19a1.5 1.5 0 1 1 3 0m-13.561 1.061a1.5 1.5 0 0 0 2.125 0l5-5a1.502 1.502 0 1 0-2.125-2.125L17.5 15.375V5a1.5 1.5 0 1 0-3 0v10.375l-2.439-2.436a1.502 1.502 0 1 0-2.125 2.125z" }) });
677
+ };
678
+ React.forwardRef(SvgDownload);
679
+ const SvgDrag = ({
680
+ fill: fillProp = "currentColor",
681
+ stroke: strokeProp,
682
+ ...props
683
+ }, ref) => {
684
+ const {
685
+ colors
686
+ } = styled.useTheme();
687
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
688
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
689
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.5 7.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4m-9 4.5a2 2 0 1 0 0 4 2 2 0 0 0 0-4m9 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4m-9 8.5a2 2 0 1 0 0 4 2 2 0 0 0 0-4m9 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4" }) });
690
+ };
691
+ React.forwardRef(SvgDrag);
692
+ const SvgDuplicate = ({
693
+ fill: fillProp = "currentColor",
694
+ stroke: strokeProp,
695
+ ...props
696
+ }, ref) => {
697
+ const {
698
+ colors
699
+ } = styled.useTheme();
700
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
701
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
702
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 4H11a1 1 0 0 0-1 1v5H5a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-5h5a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 16h-4v-9a1 1 0 0 0-1-1h-9V6h14z" }) });
703
+ };
704
+ React.forwardRef(SvgDuplicate);
705
+ const SvgEarth = ({
706
+ fill: fillProp = "currentColor",
707
+ stroke: strokeProp,
708
+ ...props
709
+ }, ref) => {
710
+ const {
711
+ colors
712
+ } = styled.useTheme();
713
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
714
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
715
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m11 13c.001 1.411-.27 2.81-.8 4.118l-5.587-3.437a2 2 0 0 0-.78-.279l-2.853-.385a2.01 2.01 0 0 0-2 .983h-1.09l-.475-.983a1.99 1.99 0 0 0-1.375-1.083l-1-.216.978-1.718h2.088c.338 0 .67-.087.966-.25l1.532-.845q.202-.113.375-.268l3.364-3.042a1.99 1.99 0 0 0 .407-2.458l-.045-.08A11.01 11.01 0 0 1 27 16M5 16a10.94 10.94 0 0 1 1.068-4.725l1.417 3.784a2 2 0 0 0 1.453 1.25l2.678.576.476.99a2.01 2.01 0 0 0 1.8 1.125h.186l-.904 2.029a2 2 0 0 0 .357 2.171l.018.018L16 25.742l-.242 1.25A11.014 11.014 0 0 1 5 16" }) });
716
+ };
717
+ React.forwardRef(SvgEarth);
718
+ const SvgEarthStriked = ({
719
+ fill: fillProp = "currentColor",
720
+ stroke: strokeProp,
721
+ ...props
722
+ }, ref) => {
723
+ const {
724
+ colors
725
+ } = styled.useTheme();
726
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
727
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
728
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: [
729
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.689 3.88A13 13 0 0 0 16 3a13 13 0 0 0-8.155 23.124l1.02-1.765A11 11 0 0 1 5 16a10.94 10.94 0 0 1 1.068-4.724l1.417 3.784a2 2 0 0 0 1.453 1.25l2.678.576.476.99q.113.226.275.418l1.169-2.025-.121-.25a1.99 1.99 0 0 0-1.375-1.084l-1-.217.978-1.717h2.088c.338 0 .67-.087.966-.25l.726-.4z" }),
730
+ /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", d: "m24 2.144 1.732 1-1.58 2.736q.54.435 1.036.932A13.01 13.01 0 0 1 29 16a13 13 0 0 1-17.69 12.124l-1.578 2.732-1.732-1zm-.86 5.49-4.936 8.549 1.628.22c.277.037.543.132.78.278l5.588 3.436c.53-1.308.801-2.706.8-4.117a11.01 11.01 0 0 0-3.86-8.367M13.92 23.6l-1.593 2.76a11 11 0 0 0 3.43.631l.242-1.25z", clipRule: "evenodd" })
731
+ ] });
732
+ };
733
+ React.forwardRef(SvgEarthStriked);
734
+ const SvgEmotionHappy = ({
735
+ fill: fillProp = "currentColor",
736
+ stroke: strokeProp,
737
+ ...props
738
+ }, ref) => {
739
+ const {
740
+ colors
741
+ } = styled.useTheme();
742
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
743
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
744
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m-4.5 9a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m10.365 7.5C20.579 21.724 18.441 23 16 23s-4.579-1.275-5.865-3.5a1.001 1.001 0 0 1 1.477-1.31q.157.129.253.31C12.799 20.114 14.266 21 16 21s3.201-.887 4.135-2.5a1 1 0 1 1 1.73 1M20.5 15a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3" }) });
745
+ };
746
+ React.forwardRef(SvgEmotionHappy);
747
+ const SvgEmotionUnhappy = ({
748
+ fill: fillProp = "currentColor",
749
+ stroke: strokeProp,
750
+ ...props
751
+ }, ref) => {
752
+ const {
753
+ colors
754
+ } = styled.useTheme();
755
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
756
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
757
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m-4.5 9a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m10 10.865a1 1 0 0 1-1.365-.365C19.201 20.886 17.734 20 16 20s-3.201.887-4.135 2.5a1.001 1.001 0 1 1-1.73-1C11.421 19.276 13.559 18 16 18s4.579 1.275 5.865 3.5a1 1 0 0 1-.365 1.365M20.5 15a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3" }) });
758
+ };
759
+ React.forwardRef(SvgEmotionUnhappy);
760
+ const SvgExpand = ({
761
+ fill: fillProp = "currentColor",
762
+ stroke: strokeProp,
763
+ ...props
764
+ }, ref) => {
765
+ const {
766
+ colors
767
+ } = styled.useTheme();
768
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
769
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
770
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27.5 6v5a1.5 1.5 0 1 1-3 0V7.5H21a1.5 1.5 0 0 1 0-3h5A1.5 1.5 0 0 1 27.5 6M11 24.5H7.5V21a1.5 1.5 0 0 0-3 0v5A1.5 1.5 0 0 0 6 27.5h5a1.5 1.5 0 1 0 0-3m15-5a1.5 1.5 0 0 0-1.5 1.5v3.5H21a1.5 1.5 0 1 0 0 3h5a1.5 1.5 0 0 0 1.5-1.5v-5a1.5 1.5 0 0 0-1.5-1.5m-15-15H6A1.5 1.5 0 0 0 4.5 6v5a1.5 1.5 0 0 0 3 0V7.5H11a1.5 1.5 0 0 0 0-3" }) });
771
+ };
772
+ React.forwardRef(SvgExpand);
773
+ const SvgExternalLink = ({
774
+ fill: fillProp = "currentColor",
775
+ stroke: strokeProp,
776
+ ...props
777
+ }, ref) => {
778
+ const {
779
+ colors
780
+ } = styled.useTheme();
781
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
782
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
783
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.5 13a1.5 1.5 0 1 1-3 0V8.625l-7.439 7.439a1.503 1.503 0 1 1-2.125-2.125L23.375 6.5H19a1.5 1.5 0 0 1 0-3h8A1.5 1.5 0 0 1 28.5 5zM23 16a1.5 1.5 0 0 0-1.5 1.5v8h-15v-15h8a1.5 1.5 0 1 0 0-3H6A2.5 2.5 0 0 0 3.5 10v16A2.5 2.5 0 0 0 6 28.5h16a2.5 2.5 0 0 0 2.5-2.5v-8.5A1.5 1.5 0 0 0 23 16" }) });
784
+ };
785
+ const ForwardRef$1U = React.forwardRef(SvgExternalLink);
786
+ const SvgEye = ({
787
+ fill: fillProp = "currentColor",
788
+ stroke: strokeProp,
789
+ ...props
790
+ }, ref) => {
791
+ const {
792
+ colors
793
+ } = styled.useTheme();
794
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
795
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
796
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M30.914 15.595c-.044-.099-1.103-2.447-3.457-4.801C24.322 7.657 20.36 6 16 6S7.679 7.657 4.542 10.794C2.19 13.148 1.125 15.5 1.086 15.595a1 1 0 0 0 0 .812c.044.1 1.103 2.447 3.456 4.8C7.68 24.344 11.64 26 16 26s8.321-1.657 11.458-4.792c2.353-2.354 3.412-4.702 3.456-4.8a1 1 0 0 0 0-.813M16 21a5 5 0 1 1 0-10 5 5 0 0 1 0 10" }) });
797
+ };
798
+ React.forwardRef(SvgEye);
799
+ const SvgEyeStriked = ({
800
+ fill: fillProp = "currentColor",
801
+ stroke: strokeProp,
802
+ ...props
803
+ }, ref) => {
804
+ const {
805
+ colors
806
+ } = styled.useTheme();
807
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
808
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
809
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.74 4.328a1 1 0 1 0-1.48 1.345l2.405 2.646c-4.54 2.786-6.493 7.081-6.579 7.276a1 1 0 0 0 0 .813c.044.098 1.103 2.446 3.456 4.8C7.68 24.343 11.64 26 16 26c2.24.013 4.459-.448 6.509-1.354l2.75 3.027a1 1 0 1 0 1.48-1.345zm11.125 15.21a4 4 0 0 1-5.209-5.73zm13.049-3.13c-.053.117-1.319 2.92-4.17 5.475a1 1 0 0 1-1.408-.072L12.675 7.884a1 1 0 0 1 .575-1.66A17 17 0 0 1 16 6c4.36 0 8.321 1.658 11.458 4.794 2.353 2.354 3.412 4.702 3.456 4.801a1 1 0 0 1 0 .813" }) });
810
+ };
811
+ React.forwardRef(SvgEyeStriked);
812
+ const SvgFaders = ({
813
+ fill: fillProp = "currentColor",
814
+ stroke: strokeProp,
815
+ ...props
816
+ }, ref) => {
817
+ const {
818
+ colors
819
+ } = styled.useTheme();
820
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
821
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
822
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 15v12a1 1 0 0 1-2 0V15a1 1 0 0 1 2 0m8 9a1 1 0 0 0-1 1v2a1 1 0 0 0 2 0v-2a1 1 0 0 0-1-1m3-6h-2V5a1 1 0 0 0-2 0v13h-2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1M7 20a1 1 0 0 0-1 1v6a1 1 0 1 0 2 0v-6a1 1 0 0 0-1-1m3-6H8V5a1 1 0 0 0-2 0v9H4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1m9-6h-2V5a1 1 0 0 0-2 0v3h-2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1" }) });
823
+ };
824
+ React.forwardRef(SvgFaders);
825
+ const SvgFeather = ({
826
+ fill: fillProp = "currentColor",
827
+ stroke: strokeProp,
828
+ ...props
829
+ }, ref) => {
830
+ const {
831
+ colors
832
+ } = styled.useTheme();
833
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
834
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
835
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m26.48 16.851-7.474 7.559a1.97 1.97 0 0 1-1.4.585H9.415l-3.707 3.712a1.001 1.001 0 0 1-1.415-1.415l2.823-2.822L15.588 16h10.537a.5.5 0 0 1 .355.851m.607-13.03a8 8 0 0 0-10.737.518l-1.2 1.185a.5.5 0 0 0-.15.351v7.875l6.875-6.875a1 1 0 0 1 1.414 1.414L17.589 14h11.047a.5.5 0 0 0 .445-.27 8.01 8.01 0 0 0-1.994-9.909M7.854 20.904 13 15.758V8.845a.5.5 0 0 0-.851-.355L7.586 13A1.99 1.99 0 0 0 7 14.414v6.136a.5.5 0 0 0 .854.354" }) });
836
+ };
837
+ const ForwardRef$1Q = React.forwardRef(SvgFeather);
838
+ const SvgFile = ({
839
+ fill: fillProp = "currentColor",
840
+ stroke: strokeProp,
841
+ ...props
842
+ }, ref) => {
843
+ const {
844
+ colors
845
+ } = styled.useTheme();
846
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
847
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
848
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m26.708 10.293-7-7A1 1 0 0 0 19 3H7a2 2 0 0 0-2 2v22a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V11a1 1 0 0 0-.293-.707M19 11V5.5l5.5 5.5z" }) });
849
+ };
850
+ React.forwardRef(SvgFile);
851
+ const SvgFileCsv = ({
852
+ fill: fillProp = "currentColor",
853
+ stroke: strokeProp,
854
+ ...props
855
+ }, ref) => {
856
+ const {
857
+ colors
858
+ } = styled.useTheme();
859
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
860
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
861
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m213.66 82.34-56-56A8 8 0 0 0 152 24H56a16 16 0 0 0-16 16v76a4 4 0 0 0 4 4h168a4 4 0 0 0 4-4V88a8 8 0 0 0-2.34-5.66M152 88V44l44 44ZM48 180c0 11 7.18 20 16 20a14.18 14.18 0 0 0 10.06-4.5 8.21 8.21 0 0 1 10.9-.91 8 8 0 0 1 .82 11.81A30.06 30.06 0 0 1 64 216c-17.64 0-32-16.15-32-36s14.36-36 32-36a30 30 0 0 1 21.39 9.19 8.26 8.26 0 0 1 .73 11.09 8 8 0 0 1-11.9.38A14.17 14.17 0 0 0 64 160c-8.82 0-16 9-16 20m103.81 16.31a20.82 20.82 0 0 1-9.19 15.23C137.43 215 131 216 125.13 216a61.1 61.1 0 0 1-15.13-2 8 8 0 1 1 4.3-15.41c4.38 1.2 14.95 2.7 19.55-.36.88-.59 1.83-1.52 2.14-3.93.35-2.67-.71-4.1-12.78-7.59-9.35-2.7-25-7.23-23-23.11a20.56 20.56 0 0 1 9-14.95c11.84-8 30.71-3.31 32.83-2.76a8 8 0 0 1-4.07 15.48c-4.49-1.17-15.23-2.56-19.83.56a4.54 4.54 0 0 0-2 3.67c-.12.9-.14 1.09 1.11 1.9 2.31 1.49 6.45 2.68 10.45 3.84 9.79 2.83 26.35 7.66 24.11 24.97M215.42 155l-19.89 55.68a8 8 0 0 1-15.06 0L160.58 155a8.21 8.21 0 0 1 4.5-10.45 8 8 0 0 1 10.45 4.76l12.47 34.9 12.47-34.9a8 8 0 0 1 10.45-4.76 8.23 8.23 0 0 1 4.5 10.45" }) });
862
+ };
863
+ React.forwardRef(SvgFileCsv);
864
+ const SvgFileError = ({
865
+ fill: fillProp = "currentColor",
866
+ stroke: strokeProp,
867
+ ...props
868
+ }, ref) => {
869
+ const {
870
+ colors
871
+ } = styled.useTheme();
872
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
873
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
874
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m26.708 10.293-7-7A1 1 0 0 0 19 3H7a2 2 0 0 0-2 2v22a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V11a1 1 0 0 0-.293-.707m-7 11a1 1 0 0 1-1.415 1.415L16 20.414l-2.293 2.293a1 1 0 0 1-1.415-1.415L14.587 19l-2.293-2.293a1 1 0 1 1 1.415-1.415L16 17.587l2.293-2.293a1 1 0 0 1 1.415 1.415L17.414 19zM19 11V5.5l5.5 5.5z" }) });
875
+ };
876
+ React.forwardRef(SvgFileError);
877
+ const SvgFilePdf = ({
878
+ fill: fillProp = "currentColor",
879
+ stroke: strokeProp,
880
+ ...props
881
+ }, ref) => {
882
+ const {
883
+ colors
884
+ } = styled.useTheme();
885
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
886
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
887
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 15h20a1 1 0 0 0 1-1v-3a1 1 0 0 0-.293-.707l-7-7A1 1 0 0 0 19 3H7a2 2 0 0 0-2 2v9a1 1 0 0 0 1 1m13-9.5 5.5 5.5H19zM28 19a1 1 0 0 1-1 1h-3v2h2a1 1 0 0 1 0 2h-2v2a1 1 0 0 1-2 0v-7a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1M8 18H6a1 1 0 0 0-1 1v7a1 1 0 1 0 2 0v-1h1a3.5 3.5 0 1 0 0-7m0 5H7v-3h1a1.5 1.5 0 1 1 0 3m8-5h-2a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h2a4.5 4.5 0 1 0 0-9m0 7h-1v-5h1a2.5 2.5 0 0 1 0 5" }) });
888
+ };
889
+ React.forwardRef(SvgFilePdf);
890
+ const SvgFileXls = ({
891
+ fill: fillProp = "currentColor",
892
+ stroke: strokeProp,
893
+ ...props
894
+ }, ref) => {
895
+ const {
896
+ colors
897
+ } = styled.useTheme();
898
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
899
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
900
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M44 120h168a4 4 0 0 0 4-4V88a8 8 0 0 0-2.34-5.66l-56-56A8 8 0 0 0 152 24H56a16 16 0 0 0-16 16v76a4 4 0 0 0 4 4m108-76 44 44h-44Zm4 164.53a8.18 8.18 0 0 1-8.25 7.47H120a8 8 0 0 1-8-8v-55.73a8.18 8.18 0 0 1 7.47-8.25 8 8 0 0 1 8.53 8v48h20a8 8 0 0 1 8 8.51m-61.49-51.88L77.83 180l16.68 23.35a8 8 0 0 1-13 9.3L68 193.76l-13.49 18.89a8 8 0 1 1-13-9.3L58.17 180l-16.68-23.35a8 8 0 0 1 2.3-11.46 8.19 8.19 0 0 1 10.88 2.38L68 166.24l13.49-18.89a8 8 0 0 1 13 9.3Zm121.28 39.66a20.81 20.81 0 0 1-9.18 15.23c-5.19 3.46-11.67 4.46-17.49 4.46a60.6 60.6 0 0 1-15.19-2 8 8 0 0 1 4.31-15.41c4.38 1.21 14.94 2.71 19.54-.35.89-.6 1.84-1.52 2.15-3.93.34-2.67-.72-4.1-12.78-7.59-9.35-2.7-25-7.23-23-23.12a20.58 20.58 0 0 1 8.95-14.94c11.84-8 30.72-3.31 32.83-2.76a8 8 0 0 1-4.07 15.48c-4.48-1.17-15.22-2.56-19.82.56a4.54 4.54 0 0 0-2 3.67c-.11.9-.13 1.08 1.12 1.9 2.31 1.49 6.45 2.68 10.45 3.84 9.87 2.82 26.39 7.65 24.18 24.96" }) });
901
+ };
902
+ React.forwardRef(SvgFileXls);
903
+ const SvgFileZip = ({
904
+ fill: fillProp = "currentColor",
905
+ stroke: strokeProp,
906
+ ...props
907
+ }, ref) => {
908
+ const {
909
+ colors
910
+ } = styled.useTheme();
911
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
912
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
913
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M184 144h-16a8 8 0 0 0-8 8v55.73a8.17 8.17 0 0 0 7.47 8.25 8 8 0 0 0 8.53-8v-8h7.4c15.24 0 28.14-11.92 28.59-27.15A28 28 0 0 0 184 144m-.35 40H176v-24h8a12 12 0 0 1 12 13.16A12.25 12.25 0 0 1 183.65 184M136 152v55.73a8.17 8.17 0 0 1-7.47 8.25 8 8 0 0 1-8.53-8v-55.71a8.17 8.17 0 0 1 7.47-8.25A8 8 0 0 1 136 152m-40 56.53a8.17 8.17 0 0 1-8.27 7.47h-31.5a8.27 8.27 0 0 1-6-2.5 8 8 0 0 1-1.18-9.5l25.16-44H56.27a8.17 8.17 0 0 1-8.27-7.47 8 8 0 0 1 8-8.53h31.77a8.27 8.27 0 0 1 6 2.5A8 8 0 0 1 95 156l-25.21 44H88a8 8 0 0 1 8 8.53M213.66 82.34l-56-56A8 8 0 0 0 152 24H56a16 16 0 0 0-16 16v76a4 4 0 0 0 4 4h168a4 4 0 0 0 4-4V88a8 8 0 0 0-2.34-5.66M152 88V44l44 44Z" }) });
914
+ };
915
+ React.forwardRef(SvgFileZip);
916
+ const SvgFiles = ({
917
+ fill: fillProp = "currentColor",
918
+ stroke: strokeProp,
919
+ ...props
920
+ }, ref) => {
921
+ const {
922
+ colors
923
+ } = styled.useTheme();
924
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
925
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
926
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 16", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m13.687 4.146-2.5-2.5a.5.5 0 0 0-.354-.146h-5a1 1 0 0 0-1 1v1h-1a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1v-1h1a1 1 0 0 0 1-1v-7a.5.5 0 0 0-.146-.354M8.833 12h-3a.5.5 0 0 1 0-1h3a.5.5 0 0 1 0 1m0-2h-3a.5.5 0 0 1 0-1h3a.5.5 0 0 1 0 1m4 1.5h-1v-5a.5.5 0 0 0-.146-.354l-2.5-2.5a.5.5 0 0 0-.354-.146h-3v-1h4.793l2.207 2.207z" }) });
927
+ };
928
+ React.forwardRef(SvgFiles);
929
+ const SvgFilter = ({
930
+ fill: fillProp = "currentColor",
931
+ stroke: strokeProp,
932
+ ...props
933
+ }, ref) => {
934
+ const {
935
+ colors
936
+ } = styled.useTheme();
937
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
938
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
939
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M25.5 16a1.5 1.5 0 0 1-1.5 1.5H8a1.5 1.5 0 1 1 0-3h16a1.5 1.5 0 0 1 1.5 1.5M29 8.5H3a1.5 1.5 0 0 0 0 3h26a1.5 1.5 0 1 0 0-3m-10 12h-6a1.5 1.5 0 1 0 0 3h6a1.5 1.5 0 1 0 0-3" }) });
940
+ };
941
+ React.forwardRef(SvgFilter);
942
+ const SvgFolder = ({
943
+ fill: fillProp = "currentColor",
944
+ stroke: strokeProp,
945
+ ...props
946
+ }, ref) => {
947
+ const {
948
+ colors
949
+ } = styled.useTheme();
950
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
951
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
952
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 9H16.414L13 5.586A1.98 1.98 0 0 0 11.586 5H5a2 2 0 0 0-2 2v18.078A1.926 1.926 0 0 0 4.924 27H27.11A1.89 1.89 0 0 0 29 25.111V11a2 2 0 0 0-2-2M5 7h6.586l2 2H5z" }) });
953
+ };
954
+ React.forwardRef(SvgFolder);
955
+ const SvgGift = ({
956
+ fill: fillProp = "currentColor",
957
+ stroke: strokeProp,
958
+ ...props
959
+ }, ref) => {
960
+ const {
961
+ colors
962
+ } = styled.useTheme();
963
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
964
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
965
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 9h-4.385q.075-.06.146-.125A3.7 3.7 0 0 0 24 6.196 4.08 4.08 0 0 0 19.805 2a3.7 3.7 0 0 0-2.68 1.239A6.9 6.9 0 0 0 16 5.049a6.9 6.9 0 0 0-1.125-1.81A3.7 3.7 0 0 0 12.195 2 4.08 4.08 0 0 0 8 6.196a3.7 3.7 0 0 0 1.239 2.679q.072.06.146.125H5a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2v8a2 2 0 0 0 2 2h7.5a.5.5 0 0 0 .5-.5V15H5v-4h10v4h2v-4h10v4H17v11.5a.5.5 0 0 0 .5.5H25a2 2 0 0 0 2-2v-8a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2M10.564 7.375A1.7 1.7 0 0 1 10 6.125 2.076 2.076 0 0 1 12.074 4h.061a1.71 1.71 0 0 1 1.25.563c1.049 1.185 1.419 3.15 1.549 4.365-1.22-.13-3.184-.5-4.37-1.553m10.875 0c-1.186 1.05-3.155 1.42-4.375 1.55.148-1.314.561-3.237 1.561-4.361A1.7 1.7 0 0 1 19.875 4h.061A2.077 2.077 0 0 1 22 6.135a1.7 1.7 0 0 1-.564 1.24z" }) });
966
+ };
967
+ React.forwardRef(SvgGift);
968
+ const SvgGlobe = ({
969
+ fill: fillProp = "currentColor",
970
+ stroke: strokeProp,
971
+ ...props
972
+ }, ref) => {
973
+ const {
974
+ colors
975
+ } = styled.useTheme();
976
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
977
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
978
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m9.796 8h-4.428a17.8 17.8 0 0 0-2.533-5.625A11.05 11.05 0 0 1 25.796 11M16 5.014c1.5 1.625 2.625 3.693 3.296 5.986h-6.592C13.375 8.707 14.5 6.641 16 5.014M12 16c0-1.005.084-2.009.25-3h7.5a18.2 18.2 0 0 1 0 6h-7.5a18 18 0 0 1-.25-3m.704 5h6.592c-.671 2.293-1.796 4.359-3.296 5.986-1.5-1.627-2.625-3.693-3.296-5.986m6.131 5.625A17.8 17.8 0 0 0 21.367 21h4.43a11.05 11.05 0 0 1-6.962 5.625M21.776 19a20.2 20.2 0 0 0 0-6h4.808a11 11 0 0 1 0 6z" }) });
979
+ };
980
+ React.forwardRef(SvgGlobe);
981
+ const SvgGraph = ({
982
+ fill: fillProp = "currentColor",
983
+ stroke: strokeProp,
984
+ ...props
985
+ }, ref) => {
986
+ const {
987
+ colors
988
+ } = styled.useTheme();
989
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
990
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
991
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 16", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 9.5c-.357 0-.71.085-1.028.25l-1.337-1.04a2.2 2.2 0 0 0 .116-.67l.646-.214a2.25 2.25 0 1 0-.636-1.37l-.487.162A2.25 2.25 0 0 0 8.5 5.75c-.062 0-.117 0-.175.008l-.278-.625A2.25 2.25 0 1 0 6.5 5.75c.063 0 .118 0 .176-.008l.278.625a2.24 2.24 0 0 0-.537 2.482l-1.33 1.182a2.25 2.25 0 1 0 .997 1.12l1.33-1.182a2.25 2.25 0 0 0 2.3-.075l1.224.954A2.25 2.25 0 1 0 13.001 9.5m0-4A.75.75 0 1 1 13 7a.75.75 0 0 1 0-1.5m-7.25-2a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0M4 12.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5M7.75 8a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0M13 12.5a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5" }) });
992
+ };
993
+ React.forwardRef(SvgGraph);
994
+ const SvgGraphQl = ({
995
+ fill: fillProp = "currentColor",
996
+ stroke: strokeProp,
997
+ ...props
998
+ }, ref) => {
999
+ const {
1000
+ colors
1001
+ } = styled.useTheme();
1002
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1003
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1004
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", d: "M13.29 28.226 6.765 24.46a2.822 2.822 0 1 1-2.708-4.693v-7.532a2.824 2.824 0 1 1 2.708-4.693l6.525-3.767a2.824 2.824 0 1 1 5.42 0l6.524 3.766a2.822 2.822 0 1 1 2.71 4.693v7.533a2.824 2.824 0 1 1-2.71 4.694l-6.524 3.766A2.825 2.825 0 0 1 16 31.84a2.822 2.822 0 0 1-2.71-3.614M16 5.806q.413-.002.791-.113l8.531 14.776a2.8 2.8 0 0 0-.791 1.37H7.467a2.8 2.8 0 0 0-.79-1.369L15.21 5.693q.377.11.791.112M7.468 23.178l-.033.12 6.526 3.767A2.81 2.81 0 0 1 16 26.195c.802 0 1.526.334 2.04.871l6.523-3.766-.032-.121zM5.397 12.233a2.824 2.824 0 0 0 2.038-3.532l6.526-3.767q.043.045.088.088L5.517 19.8l-.12-.032zM26.482 19.8q.06-.018.121-.033v-7.532a2.824 2.824 0 0 1-2.04-3.534L18.04 4.934q-.045.045-.089.088z", clipRule: "evenodd" }) });
1005
+ };
1006
+ React.forwardRef(SvgGraphQl);
1007
+ const SvgGridFour = ({
1008
+ fill: fillProp = "currentColor",
1009
+ stroke: strokeProp,
1010
+ ...props
1011
+ }, ref) => {
1012
+ const {
1013
+ colors
1014
+ } = styled.useTheme();
1015
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1016
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1017
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 7v7.5a.5.5 0 0 1-.5.5H17V5.5a.5.5 0 0 1 .5-.5H25a2 2 0 0 1 2 2M14.5 5H7a2 2 0 0 0-2 2v7.5a.5.5 0 0 0 .5.5H15V5.5a.5.5 0 0 0-.5-.5m12 12H17v9.5a.5.5 0 0 0 .5.5H25a2 2 0 0 0 2-2v-7.5a.5.5 0 0 0-.5-.5M5 17.5V25a2 2 0 0 0 2 2h7.5a.5.5 0 0 0 .5-.5V17H5.5a.5.5 0 0 0-.5.5" }) });
1018
+ };
1019
+ React.forwardRef(SvgGridFour);
1020
+ const SvgGridNine = ({
1021
+ fill: fillProp = "currentColor",
1022
+ stroke: strokeProp,
1023
+ ...props
1024
+ }, ref) => {
1025
+ const {
1026
+ colors
1027
+ } = styled.useTheme();
1028
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1029
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1030
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.5 6.5v5h-7A.5.5 0 0 1 3 11V8a2 2 0 0 1 2-2h5a.5.5 0 0 1 .5.5m2 19a.5.5 0 0 0 .5.5h6a.5.5 0 0 0 .5-.5v-5h-7zM3 21v3a2 2 0 0 0 2 2h5a.5.5 0 0 0 .5-.5v-5h-7a.5.5 0 0 0-.5.5m0-7v4a.5.5 0 0 0 .5.5h7v-5h-7a.5.5 0 0 0-.5.5m16-8h-6a.5.5 0 0 0-.5.5v5h7v-5A.5.5 0 0 0 19 6m9.5 7.5h-7v5h7a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5m-16 5h7v-5h-7zM27 6h-5a.5.5 0 0 0-.5.5v5h7a.5.5 0 0 0 .5-.5V8a2 2 0 0 0-2-2m1.5 14.5h-7v5a.5.5 0 0 0 .5.5h5a2 2 0 0 0 2-2v-3a.5.5 0 0 0-.5-.5" }) });
1031
+ };
1032
+ React.forwardRef(SvgGridNine);
1033
+ const SvgHandHeart = ({
1034
+ fill: fillProp = "currentColor",
1035
+ stroke: strokeProp,
1036
+ ...props
1037
+ }, ref) => {
1038
+ const {
1039
+ colors
1040
+ } = styled.useTheme();
1041
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1042
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1043
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.791 17.633a3.04 3.04 0 0 0-2.326-.597C28.813 14.666 30 12.31 30 10c0-3.309-2.661-6-5.933-6A5.95 5.95 0 0 0 19.5 6.094 5.95 5.95 0 0 0 14.932 4C11.663 4 9 6.691 9 10c0 1.375.405 2.711 1.258 4.125a4 4 0 0 0-1.844 1.05L5.586 18H2a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h13q.123 0 .242-.03l8-2a1 1 0 0 0 .15-.05l4.858-2.067.055-.025a3.074 3.074 0 0 0 .491-5.195zm-1.362 3.393-4.75 2.023L14.875 25H7v-5.586l2.829-2.828A1.98 1.98 0 0 1 11.242 16H17.5a1.5 1.5 0 0 1 0 3H14a1 1 0 0 0 0 2h4q.113 0 .224-.025l8.375-1.926.038-.01a1.075 1.075 0 0 1 .788 1.987z" }) });
1044
+ };
1045
+ React.forwardRef(SvgHandHeart);
1046
+ const SvgHashtag = ({
1047
+ fill: fillProp = "currentColor",
1048
+ stroke: strokeProp,
1049
+ ...props
1050
+ }, ref) => {
1051
+ const {
1052
+ colors
1053
+ } = styled.useTheme();
1054
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1055
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1056
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28 10.5h-5.475l.951-5.231a1.5 1.5 0 1 0-2.952-.538L19.475 10.5h-4.95l.951-5.231a1.5 1.5 0 1 0-2.952-.538L11.475 10.5H6a1.5 1.5 0 0 0 0 3h4.93l-.909 5H4a1.5 1.5 0 0 0 0 3h5.475l-.951 5.231a1.5 1.5 0 0 0 1.207 1.75q.134.022.269.019a1.5 1.5 0 0 0 1.475-1.233l1.05-5.767h4.95l-.951 5.231a1.5 1.5 0 1 0 2.952.543l1.049-5.774H26a1.5 1.5 0 1 0 0-3h-4.93l.909-5H28a1.5 1.5 0 1 0 0-3m-9.979 8H13.07l.909-5h4.951z" }) });
1057
+ };
1058
+ React.forwardRef(SvgHashtag);
1059
+ const SvgHeadingFive = ({
1060
+ fill: fillProp = "currentColor",
1061
+ stroke: strokeProp,
1062
+ ...props
1063
+ }, ref) => {
1064
+ const {
1065
+ colors
1066
+ } = styled.useTheme();
1067
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1068
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1069
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M31.5 22.5a5 5 0 0 1-5 5 4.94 4.94 0 0 1-3.571-1.45 1.5 1.5 0 0 1 2.142-2.1 1.94 1.94 0 0 0 1.429.55 2 2 0 0 0 0-4 1.94 1.94 0 0 0-1.429.55 1.5 1.5 0 0 1-2.551-1.3l1-6A1.5 1.5 0 0 1 25 12.5h5a1.5 1.5 0 1 1 0 3h-3.729l-.338 2.029q.283-.03.567-.029a5 5 0 0 1 5 5M18 5.5A1.5 1.5 0 0 0 16.5 7v6h-10V7a1.5 1.5 0 0 0-3 0v15a1.5 1.5 0 0 0 3 0v-6h10v6a1.5 1.5 0 1 0 3 0V7A1.5 1.5 0 0 0 18 5.5" }) });
1070
+ };
1071
+ React.forwardRef(SvgHeadingFive);
1072
+ const SvgHeadingFour = ({
1073
+ fill: fillProp = "currentColor",
1074
+ stroke: strokeProp,
1075
+ ...props
1076
+ }, ref) => {
1077
+ const {
1078
+ colors
1079
+ } = styled.useTheme();
1080
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1081
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1082
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M32 22a1.5 1.5 0 0 1-1.5 1.5V26a1.5 1.5 0 1 1-3 0v-2.5H23a1.5 1.5 0 0 1-1.422-1.974l3-9a1.5 1.5 0 0 1 2.845.948L25.08 20.5H27.5V18a1.5 1.5 0 1 1 3 0v2.5A1.5 1.5 0 0 1 32 22M18 5.5A1.5 1.5 0 0 0 16.5 7v6h-10V7a1.5 1.5 0 0 0-3 0v15a1.5 1.5 0 0 0 3 0v-6h10v6a1.5 1.5 0 1 0 3 0V7A1.5 1.5 0 0 0 18 5.5" }) });
1083
+ };
1084
+ React.forwardRef(SvgHeadingFour);
1085
+ const SvgHeadingOne = ({
1086
+ fill: fillProp = "currentColor",
1087
+ stroke: strokeProp,
1088
+ ...props
1089
+ }, ref) => {
1090
+ const {
1091
+ colors
1092
+ } = styled.useTheme();
1093
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1094
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1095
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M29.5 14v12a1.5 1.5 0 1 1-3 0v-9.198l-.668.448a1.503 1.503 0 0 1-1.665-2.5l3-2A1.5 1.5 0 0 1 29.5 14M18 5.5A1.5 1.5 0 0 0 16.5 7v6h-10V7a1.5 1.5 0 0 0-3 0v15a1.5 1.5 0 0 0 3 0v-6h10v6a1.5 1.5 0 1 0 3 0V7A1.5 1.5 0 0 0 18 5.5" }) });
1096
+ };
1097
+ React.forwardRef(SvgHeadingOne);
1098
+ const SvgHeadingSix = ({
1099
+ fill: fillProp = "currentColor",
1100
+ stroke: strokeProp,
1101
+ ...props
1102
+ }, ref) => {
1103
+ const {
1104
+ colors
1105
+ } = styled.useTheme();
1106
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1107
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1108
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m27.133 17.541 1.655-2.772a1.5 1.5 0 1 0-2.576-1.538l-4.03 6.75q-.018.029-.032.059a5 5 0 1 0 4.983-2.5zM26.5 24.5a2 2 0 1 1 0-4 2 2 0 0 1 0 4M19.5 7v15a1.5 1.5 0 1 1-3 0v-6h-10v6a1.5 1.5 0 0 1-3 0V7a1.5 1.5 0 0 1 3 0v6h10V7a1.5 1.5 0 1 1 3 0" }) });
1109
+ };
1110
+ React.forwardRef(SvgHeadingSix);
1111
+ const SvgHeadingThree = ({
1112
+ fill: fillProp = "currentColor",
1113
+ stroke: strokeProp,
1114
+ ...props
1115
+ }, ref) => {
1116
+ const {
1117
+ colors
1118
+ } = styled.useTheme();
1119
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1120
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1121
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M31.5 22.5a5 5 0 0 1-8.571 3.5 1.5 1.5 0 1 1 2.142-2.099A2 2 0 1 0 26.5 20.5a1.5 1.5 0 0 1-1.229-2.36l1.854-2.64H24a1.5 1.5 0 1 1 0-3h6a1.5 1.5 0 0 1 1.229 2.36l-2.293 3.275A5 5 0 0 1 31.5 22.5M18 5.5A1.5 1.5 0 0 0 16.5 7v6h-10V7a1.5 1.5 0 0 0-3 0v15a1.5 1.5 0 0 0 3 0v-6h10v6a1.5 1.5 0 1 0 3 0V7A1.5 1.5 0 0 0 18 5.5" }) });
1122
+ };
1123
+ React.forwardRef(SvgHeadingThree);
1124
+ const SvgHeadingTwo = ({
1125
+ fill: fillProp = "currentColor",
1126
+ stroke: strokeProp,
1127
+ ...props
1128
+ }, ref) => {
1129
+ const {
1130
+ colors
1131
+ } = styled.useTheme();
1132
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1133
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1134
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.5 7v15a1.5 1.5 0 1 1-3 0v-6h-10v6a1.5 1.5 0 0 1-3 0V7a1.5 1.5 0 0 1 3 0v6h10V7a1.5 1.5 0 1 1 3 0M30 24.5h-3l3.593-4.791a4.499 4.499 0 1 0-7.837-4.209 1.5 1.5 0 1 0 2.829 1q.076-.218.216-.402a1.5 1.5 0 1 1 2.394 1.807L22.8 25.1a1.5 1.5 0 0 0 1.2 2.4h6a1.5 1.5 0 1 0 0-3" }) });
1135
+ };
1136
+ React.forwardRef(SvgHeadingTwo);
1137
+ const SvgHeadphones = ({
1138
+ fill: fillProp = "currentColor",
1139
+ stroke: strokeProp,
1140
+ ...props
1141
+ }, ref) => {
1142
+ const {
1143
+ colors
1144
+ } = styled.useTheme();
1145
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1146
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1147
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M29 17v7a3 3 0 0 1-3 3h-2a3 3 0 0 1-3-3v-5a3 3 0 0 1 3-3h2.956A10.964 10.964 0 0 0 16.081 6H16A11 11 0 0 0 5.045 16H8a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-7a13.014 13.014 0 0 1 22.236-9.167A12.93 12.93 0 0 1 29 17" }) });
1148
+ };
1149
+ React.forwardRef(SvgHeadphones);
1150
+ const SvgHeart = ({
1151
+ fill: fillProp = "currentColor",
1152
+ stroke: strokeProp,
1153
+ ...props
1154
+ }, ref) => {
1155
+ const {
1156
+ colors
1157
+ } = styled.useTheme();
1158
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1159
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1160
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M30 11.75c0 8.75-12.974 15.833-13.526 16.125a1 1 0 0 1-.948 0C14.974 27.582 2 20.5 2 11.75A7.76 7.76 0 0 1 9.75 4c2.581 0 4.841 1.11 6.25 2.986C17.409 5.11 19.669 4 22.25 4A7.76 7.76 0 0 1 30 11.75" }) });
1161
+ };
1162
+ React.forwardRef(SvgHeart);
1163
+ const SvgHouse = ({
1164
+ fill: fillProp = "currentColor",
1165
+ stroke: strokeProp,
1166
+ ...props
1167
+ }, ref) => {
1168
+ const {
1169
+ colors
1170
+ } = styled.useTheme();
1171
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1172
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1173
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28 14.444V26a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V14.444a2 2 0 0 1 .646-1.473l10-9.435.014-.013a2 2 0 0 1 2.705.013l10 9.435A2 2 0 0 1 28 14.444" }) });
1174
+ };
1175
+ React.forwardRef(SvgHouse);
1176
+ const SvgImage = ({
1177
+ fill: fillProp = "currentColor",
1178
+ stroke: strokeProp,
1179
+ ...props
1180
+ }, ref) => {
1181
+ const {
1182
+ colors
1183
+ } = styled.useTheme();
1184
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1185
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1186
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 5H5a2 2 0 0 0-2 2v18a2 2 0 0 0 2 2h22a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-7.5 6a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M5 25v-3.5l6.5-6.5 10 10zm22 0h-2.671l-4.5-4.5 2.5-2.5L27 22.672z" }) });
1187
+ };
1188
+ React.forwardRef(SvgImage);
1189
+ const SvgImages = ({
1190
+ fill: fillProp = "currentColor",
1191
+ stroke: strokeProp,
1192
+ ...props
1193
+ }, ref) => {
1194
+ const {
1195
+ colors
1196
+ } = styled.useTheme();
1197
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1198
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1199
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 5H9a2 2 0 0 0-2 2v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2v-2h2a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-5.5 4a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M23 25H5V11h2v10a2 2 0 0 0 2 2h14zm4-4H9v-4.5l4.5-4.5 6.208 6.208a1 1 0 0 0 1.413 0L24.33 15 27 17.672z" }) });
1200
+ };
1201
+ React.forwardRef(SvgImages);
1202
+ const SvgIndentDecrease = ({
1203
+ fill: fillProp = "currentColor",
1204
+ stroke: strokeProp,
1205
+ ...props
1206
+ }, ref) => {
1207
+ const {
1208
+ colors
1209
+ } = styled.useTheme();
1210
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1211
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1212
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.5 16a1.5 1.5 0 0 1-1.5 1.5H15a1.5 1.5 0 0 1 0-3h12a1.5 1.5 0 0 1 1.5 1.5M15 9.5h12a1.5 1.5 0 0 0 0-3H15a1.5 1.5 0 0 0 0 3m12 13H5a1.5 1.5 0 1 0 0 3h22a1.5 1.5 0 0 0 0-3m-18-4a1.5 1.5 0 0 0 1.061-2.561L6.125 12l3.936-3.94a1.503 1.503 0 1 0-2.125-2.125l-5 5a1.5 1.5 0 0 0 0 2.125l5 5A1.5 1.5 0 0 0 9 18.5" }) });
1213
+ };
1214
+ React.forwardRef(SvgIndentDecrease);
1215
+ const SvgIndentIncrease = ({
1216
+ fill: fillProp = "currentColor",
1217
+ stroke: strokeProp,
1218
+ ...props
1219
+ }, ref) => {
1220
+ const {
1221
+ colors
1222
+ } = styled.useTheme();
1223
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1224
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1225
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.5 16a1.5 1.5 0 0 1-1.5 1.5H15a1.5 1.5 0 0 1 0-3h12a1.5 1.5 0 0 1 1.5 1.5M15 9.5h12a1.5 1.5 0 0 0 0-3H15a1.5 1.5 0 0 0 0 3m12 13H5a1.5 1.5 0 0 0 0 3h22a1.5 1.5 0 1 0 0-3M3.939 18.06a1.5 1.5 0 0 0 2.125 0l5-5a1.5 1.5 0 0 0 0-2.125l-5-5a1.503 1.503 0 0 0-2.125 2.125L7.875 12l-3.936 3.939a1.5 1.5 0 0 0 0 2.122" }) });
1226
+ };
1227
+ React.forwardRef(SvgIndentIncrease);
1228
+ const SvgInformation = ({
1229
+ fill: fillProp = "currentColor",
1230
+ stroke: strokeProp,
1231
+ ...props
1232
+ }, ref) => {
1233
+ const {
1234
+ colors
1235
+ } = styled.useTheme();
1236
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1237
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1238
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m-.5 6a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M17 23a2 2 0 0 1-2-2v-5a1 1 0 0 1 0-2 2 2 0 0 1 2 2v5a1 1 0 0 1 0 2" }) });
1239
+ };
1240
+ const ForwardRef$1l = React.forwardRef(SvgInformation);
1241
+ const SvgItalic = ({
1242
+ fill: fillProp = "currentColor",
1243
+ stroke: strokeProp,
1244
+ ...props
1245
+ }, ref) => {
1246
+ const {
1247
+ colors
1248
+ } = styled.useTheme();
1249
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1250
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1251
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M25.5 7A1.5 1.5 0 0 1 24 8.5h-3.919l-5 15H18a1.5 1.5 0 1 1 0 3H8a1.5 1.5 0 1 1 0-3h3.919l5-15H14a1.5 1.5 0 0 1 0-3h10A1.5 1.5 0 0 1 25.5 7" }) });
1252
+ };
1253
+ React.forwardRef(SvgItalic);
1254
+ const SvgKey = ({
1255
+ fill: fillProp = "currentColor",
1256
+ stroke: strokeProp,
1257
+ ...props
1258
+ }, ref) => {
1259
+ const {
1260
+ colors
1261
+ } = styled.useTheme();
1262
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1263
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1264
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 2a10.01 10.01 0 0 0-9.511 13.098l-7.196 7.195A1 1 0 0 0 3 23v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-2h2a1 1 0 0 0 1-1v-2h2a1 1 0 0 0 .707-.293l1.195-1.196A10 10 0 1 0 20 2m2.5 9.5a2 2 0 1 1 0-4 2 2 0 0 1 0 4" }) });
1265
+ };
1266
+ React.forwardRef(SvgKey);
1267
+ const SvgLayout = ({
1268
+ fill: fillProp = "currentColor",
1269
+ stroke: strokeProp,
1270
+ ...props
1271
+ }, ref) => {
1272
+ const {
1273
+ colors
1274
+ } = styled.useTheme();
1275
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1276
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1277
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 5H5a2 2 0 0 0-2 2v18a2 2 0 0 0 2 2h22a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2M5 7h22v5H5zm22 18H14V14h13z" }) });
1278
+ };
1279
+ React.forwardRef(SvgLayout);
1280
+ const SvgLightbulb = ({
1281
+ fill: fillProp = "currentColor",
1282
+ stroke: strokeProp,
1283
+ ...props
1284
+ }, ref) => {
1285
+ const {
1286
+ colors
1287
+ } = styled.useTheme();
1288
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1289
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1290
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 29a1 1 0 0 1-1 1H11a1 1 0 1 1 0-2h10a1 1 0 0 1 1 1m5-16a10.94 10.94 0 0 1-4.205 8.651A2.03 2.03 0 0 0 22 23.25V24a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-.75a2 2 0 0 0-.779-1.582A10.95 10.95 0 0 1 5 13.06C4.967 7.104 9.782 2.143 15.735 2A11 11 0 0 1 27 13m-4.014-1.168a7.2 7.2 0 0 0-5.82-5.818 1 1 0 1 0-.332 1.972c2.071.349 3.829 2.106 4.18 4.182a1 1 0 0 0 1.972-.335" }) });
1291
+ };
1292
+ React.forwardRef(SvgLightbulb);
1293
+ const SvgLightning = ({
1294
+ fill: fillProp = "currentColor",
1295
+ stroke: strokeProp,
1296
+ ...props
1297
+ }, ref) => {
1298
+ const {
1299
+ colors
1300
+ } = styled.useTheme();
1301
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1302
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1303
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m21.731 14.683-14 15a1 1 0 0 1-1.711-.875l1.832-9.167L.65 16.936a1 1 0 0 1-.375-1.625l14-15a1 1 0 0 1 1.71.875l-1.837 9.177 7.204 2.7a1 1 0 0 1 .375 1.62z" }) });
1304
+ };
1305
+ const ForwardRef$1g = React.forwardRef(SvgLightning);
1306
+ const SvgLink = ({
1307
+ fill: fillProp = "currentColor",
1308
+ stroke: strokeProp,
1309
+ ...props
1310
+ }, ref) => {
1311
+ const {
1312
+ colors
1313
+ } = styled.useTheme();
1314
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1315
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1316
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.046 23.441a1.5 1.5 0 0 1 0 2.125l-.742.743a7.502 7.502 0 1 1-10.61-10.61l3.015-3.014A7.5 7.5 0 0 1 19 12.375a1.506 1.506 0 0 1-2 2.25 4.5 4.5 0 0 0-6.171.184l-3.013 3.01a4.5 4.5 0 0 0 6.365 6.365l.743-.743a1.5 1.5 0 0 1 2.122 0m9.26-17.75a7.51 7.51 0 0 0-10.61 0l-.742.743a1.503 1.503 0 1 0 2.125 2.125l.742-.743a4.5 4.5 0 0 1 6.365 6.365l-3.014 3.015a4.5 4.5 0 0 1-6.172.179 1.506 1.506 0 1 0-2 2.25 7.5 7.5 0 0 0 10.288-.304l3.014-3.014a7.51 7.51 0 0 0 .004-10.613z" }) });
1317
+ };
1318
+ React.forwardRef(SvgLink);
1319
+ const SvgList = ({
1320
+ fill: fillProp = "currentColor",
1321
+ stroke: strokeProp,
1322
+ ...props
1323
+ }, ref) => {
1324
+ const {
1325
+ colors
1326
+ } = styled.useTheme();
1327
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1328
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1329
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.5 16a1.5 1.5 0 0 1-1.5 1.5H5a1.5 1.5 0 1 1 0-3h22a1.5 1.5 0 0 1 1.5 1.5M5 9.5h22a1.5 1.5 0 0 0 0-3H5a1.5 1.5 0 0 0 0 3m22 13H5a1.5 1.5 0 1 0 0 3h22a1.5 1.5 0 1 0 0-3" }) });
1330
+ };
1331
+ React.forwardRef(SvgList);
1332
+ const SvgListPlus = ({
1333
+ fill: fillProp = "currentColor",
1334
+ stroke: strokeProp,
1335
+ ...props
1336
+ }, ref) => {
1337
+ const {
1338
+ colors
1339
+ } = styled.useTheme();
1340
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1341
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1342
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.5 8A1.5 1.5 0 0 1 5 6.5h22a1.5 1.5 0 0 1 0 3H5A1.5 1.5 0 0 1 3.5 8M5 17.5h22a1.5 1.5 0 1 0 0-3H5a1.5 1.5 0 1 0 0 3m13 5H5a1.5 1.5 0 1 0 0 3h13a1.5 1.5 0 1 0 0-3m11 0h-1.5V21a1.5 1.5 0 1 0-3 0v1.5H23a1.5 1.5 0 1 0 0 3h1.5V27a1.5 1.5 0 1 0 3 0v-1.5H29a1.5 1.5 0 1 0 0-3" }) });
1343
+ };
1344
+ React.forwardRef(SvgListPlus);
1345
+ const SvgListSearch = ({
1346
+ fill: fillProp = "currentColor",
1347
+ stroke: strokeProp,
1348
+ ...props
1349
+ }, ref) => {
1350
+ const {
1351
+ colors
1352
+ } = styled.useTheme();
1353
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1354
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1355
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28 64a12 12 0 0 1 12-12h176a12 12 0 0 1 0 24H40a12 12 0 0 1-12-12m12 76h64a12 12 0 0 0 0-24H40a12 12 0 0 0 0 24m80 40H40a12 12 0 0 0 0 24h80a12 12 0 0 0 0-24m120.49 20.49a12 12 0 0 1-17 0l-18.08-18.08a44 44 0 1 1 17-17l18.08 18.07a12 12 0 0 1 0 17.01M184 164a20 20 0 1 0-20-20 20 20 0 0 0 20 20" }) });
1356
+ };
1357
+ React.forwardRef(SvgListSearch);
1358
+ const SvgLoader = ({
1359
+ fill: fillProp = "currentColor",
1360
+ stroke: strokeProp,
1361
+ ...props
1362
+ }, ref) => {
1363
+ const {
1364
+ colors
1365
+ } = styled.useTheme();
1366
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1367
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1368
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.5 4v4a1.5 1.5 0 1 1-3 0V4a1.5 1.5 0 1 1 3 0m4.156 7.844a1.5 1.5 0 0 0 1.062-.44l2.828-2.829a1.503 1.503 0 1 0-2.125-2.125l-2.825 2.833a1.5 1.5 0 0 0 1.06 2.56M28 14.5h-4a1.5 1.5 0 1 0 0 3h4a1.5 1.5 0 1 0 0-3m-5.282 6.096a1.501 1.501 0 0 0-2.451 1.638c.075.182.186.348.326.487l2.828 2.829a1.503 1.503 0 0 0 2.125-2.125zM16 22.5a1.5 1.5 0 0 0-1.5 1.5v4a1.5 1.5 0 1 0 3 0v-4a1.5 1.5 0 0 0-1.5-1.5m-6.717-1.904-2.83 2.829A1.503 1.503 0 0 0 8.58 25.55l2.829-2.829a1.503 1.503 0 0 0-2.125-2.125M9.5 16A1.5 1.5 0 0 0 8 14.5H4a1.5 1.5 0 1 0 0 3h4A1.5 1.5 0 0 0 9.5 16m-.925-9.546A1.503 1.503 0 0 0 6.45 8.579l2.833 2.825a1.503 1.503 0 0 0 2.125-2.125z" }) });
1369
+ };
1370
+ const ForwardRef$1b = React.forwardRef(SvgLoader);
1371
+ const SvgLock = ({
1372
+ fill: fillProp = "currentColor",
1373
+ stroke: strokeProp,
1374
+ ...props
1375
+ }, ref) => {
1376
+ const {
1377
+ colors
1378
+ } = styled.useTheme();
1379
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1380
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1381
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M26 10h-4V7a6 6 0 1 0-12 0v3H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V12a2 2 0 0 0-2-2M16 20.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M20 10h-8V7a4 4 0 1 1 8 0z" }) });
1382
+ };
1383
+ React.forwardRef(SvgLock);
1384
+ const SvgMagic = ({
1385
+ fill: fillProp = "currentColor",
1386
+ stroke: strokeProp,
1387
+ ...props
1388
+ }, ref) => {
1389
+ const {
1390
+ colors
1391
+ } = styled.useTheme();
1392
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1393
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1394
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M31 19a1 1 0 0 1-1 1h-2v2a1 1 0 0 1-2 0v-2h-2a1 1 0 0 1 0-2h2v-2a1 1 0 1 1 2 0v2h2a1 1 0 0 1 1 1M7 9h2v2a1 1 0 1 0 2 0V9h2a1 1 0 0 0 0-2h-2V5a1 1 0 0 0-2 0v2H7a1 1 0 0 0 0 2m16 15h-1v-1a1 1 0 0 0-2 0v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 1 0 2 0v-1h1a1 1 0 0 0 0-2m4.414-14L10 27.414a2 2 0 0 1-2.828 0l-2.587-2.585a2 2 0 0 1 0-2.829L22 4.586a2 2 0 0 1 2.829 0l2.585 2.585a2 2 0 0 1 0 2.829M26 8.586 23.414 6l-4 4L22 12.586z" }) });
1395
+ };
1396
+ React.forwardRef(SvgMagic);
1397
+ const SvgMail = ({
1398
+ fill: fillProp = "currentColor",
1399
+ stroke: strokeProp,
1400
+ ...props
1401
+ }, ref) => {
1402
+ const {
1403
+ colors
1404
+ } = styled.useTheme();
1405
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1406
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1407
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28 6H4a1 1 0 0 0-1 1v17a2 2 0 0 0 2 2h22a2 2 0 0 0 2-2V7a1 1 0 0 0-1-1M12.339 16 5 22.726V9.274zm1.48 1.356 1.5 1.381a1 1 0 0 0 1.352 0l1.5-1.38L25.421 24H6.571zM19.66 16 27 9.273v13.455z" }) });
1408
+ };
1409
+ React.forwardRef(SvgMail);
1410
+ const SvgManyToMany = ({
1411
+ fill: fillProp = "currentColor",
1412
+ stroke: strokeProp,
1413
+ ...props
1414
+ }, ref) => {
1415
+ const {
1416
+ colors
1417
+ } = styled.useTheme();
1418
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1419
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1420
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", d: "M11 7q0 .432-.088.838L16 10.382l5.088-2.544a4 4 0 1 1 .895 1.789L18.236 11.5l3.747 1.873a4 4 0 1 1 0 5.253L18.236 20.5l3.747 1.874a4 4 0 1 1-.895 1.788L16 21.618l-5.088 2.544Q11 24.567 11 25a4 4 0 1 1-.983-2.626l3.747-1.874-3.747-1.873a4 4 0 1 1 0-5.253l3.747-1.874-3.747-1.874A4 4 0 1 1 11 7M9 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0m2.236 8h9.528L16 12.618zM9 25a2 2 0 1 1-4 0 2 2 0 0 1 4 0m-2-7a2 2 0 1 0 0-4 2 2 0 0 0 0 4M27 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0m-2 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4m2-11a2 2 0 1 1-4 0 2 2 0 0 1 4 0m-11 3.382L20.764 17h-9.528z", clipRule: "evenodd" }) });
1421
+ };
1422
+ React.forwardRef(SvgManyToMany);
1423
+ const SvgManyToOne = ({
1424
+ fill: fillProp = "currentColor",
1425
+ stroke: strokeProp,
1426
+ ...props
1427
+ }, ref) => {
1428
+ const {
1429
+ colors
1430
+ } = styled.useTheme();
1431
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1432
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1433
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", d: "M14.8 8.254a4 4 0 1 0-1.082 1.682l7.483 4.81a4 4 0 0 0-.075.254H10.874A4.002 4.002 0 0 0 3 16a4 4 0 0 0 7.874 1h10.252q.033.128.075.254l-7.484 4.81a4 4 0 1 0 1.082 1.682l7.484-4.81a4 4 0 1 0 0-5.871zM11 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4m0 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4M9 16a2 2 0 1 1-4 0 2 2 0 0 1 4 0m16 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4", clipRule: "evenodd" }) });
1434
+ };
1435
+ React.forwardRef(SvgManyToOne);
1436
+ const SvgManyWays = ({
1437
+ fill: fillProp = "currentColor",
1438
+ stroke: strokeProp,
1439
+ ...props
1440
+ }, ref) => {
1441
+ const {
1442
+ colors
1443
+ } = styled.useTheme();
1444
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1445
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1446
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", d: "M18.842 3.227a1 1 0 1 0-.445 1.95l1.747.399L9.6 12.959a4 4 0 1 0 0 6.081l10.546 7.385-1.748.399a1 1 0 1 0 .445 1.95l3.945-.9a1 1 0 0 0 .77-1.1l-.503-4.014a1 1 0 0 0-1.985.248l.223 1.779-10.545-7.384a4 4 0 0 0 .127-.403h14.712l-1.293 1.293a1 1 0 1 0 1.414 1.414l3-3a1 1 0 0 0 0-1.414l-3-3a1 1 0 0 0-1.414 1.414L25.586 15H10.874a4 4 0 0 0-.127-.403l10.544-7.383-.222 1.778a1 1 0 0 0 1.984.249l.503-4.015a1 1 0 0 0-.77-1.099zM9 16a2 2 0 1 1-4 0 2 2 0 0 1 4 0", clipRule: "evenodd" }) });
1447
+ };
1448
+ React.forwardRef(SvgManyWays);
1449
+ const SvgMessage = ({
1450
+ fill: fillProp = "currentColor",
1451
+ stroke: strokeProp,
1452
+ ...props
1453
+ }, ref) => {
1454
+ const {
1455
+ colors
1456
+ } = styled.useTheme();
1457
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1458
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1459
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 6H5a2 2 0 0 0-2 2v20a1.98 1.98 0 0 0 1.156 1.813 1.986 1.986 0 0 0 2.141-.299L10.312 26H27a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2M10.5 17.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m5.5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m5.5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3" }) });
1460
+ };
1461
+ React.forwardRef(SvgMessage);
1462
+ const SvgMicrophone = ({
1463
+ fill: fillProp = "currentColor",
1464
+ stroke: strokeProp,
1465
+ ...props
1466
+ }, ref) => {
1467
+ const {
1468
+ colors
1469
+ } = styled.useTheme();
1470
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1471
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1472
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10 16V8a6 6 0 1 1 12 0v8a6 6 0 1 1-12 0m16 0a1 1 0 0 0-2 0 8 8 0 0 1-16 0 1 1 0 1 0-2 0 10.014 10.014 0 0 0 9 9.95V29a1 1 0 0 0 2 0v-3.05A10.014 10.014 0 0 0 26 16" }) });
1473
+ };
1474
+ React.forwardRef(SvgMicrophone);
1475
+ const SvgMinus = ({
1476
+ fill: fillProp = "currentColor",
1477
+ stroke: strokeProp,
1478
+ ...props
1479
+ }, ref) => {
1480
+ const {
1481
+ colors
1482
+ } = styled.useTheme();
1483
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1484
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1485
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.5 16a1.5 1.5 0 0 1-1.5 1.5H5a1.5 1.5 0 1 1 0-3h22a1.5 1.5 0 0 1 1.5 1.5" }) });
1486
+ };
1487
+ const ForwardRef$12 = React.forwardRef(SvgMinus);
1488
+ const SvgMinusCircle = ({
1489
+ fill: fillProp = "currentColor",
1490
+ stroke: strokeProp,
1491
+ ...props
1492
+ }, ref) => {
1493
+ const {
1494
+ colors
1495
+ } = styled.useTheme();
1496
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1497
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1498
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m5 14H11a1 1 0 0 1 0-2h10a1 1 0 0 1 0 2" }) });
1499
+ };
1500
+ React.forwardRef(SvgMinusCircle);
1501
+ const SvgMonitor = ({
1502
+ fill: fillProp = "currentColor",
1503
+ stroke: strokeProp,
1504
+ ...props
1505
+ }, ref) => {
1506
+ const {
1507
+ colors
1508
+ } = styled.useTheme();
1509
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1510
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1511
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M26 5H6a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h20a3 3 0 0 0 3-3V8a3 3 0 0 0-3-3M20 27h-8a1 1 0 0 0 0 2h8a1 1 0 0 0 0-2" }) });
1512
+ };
1513
+ React.forwardRef(SvgMonitor);
1514
+ const SvgMoon = ({
1515
+ fill: fillProp = "currentColor",
1516
+ stroke: strokeProp,
1517
+ ...props
1518
+ }, ref) => {
1519
+ const {
1520
+ colors
1521
+ } = styled.useTheme();
1522
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1523
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1524
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M29.443 18.776a13.1 13.1 0 0 1-4.626 6.614A13 13 0 0 1 4 15a12.9 12.9 0 0 1 2.61-7.815 13.1 13.1 0 0 1 6.614-4.625 1 1 0 0 1 1.25 1.25 11.01 11.01 0 0 0 13.725 13.725 1 1 0 0 1 1.25 1.25z" }) });
1525
+ };
1526
+ React.forwardRef(SvgMoon);
1527
+ const SvgMore = ({
1528
+ fill: fillProp = "currentColor",
1529
+ stroke: strokeProp,
1530
+ ...props
1531
+ }, ref) => {
1532
+ const {
1533
+ colors
1534
+ } = styled.useTheme();
1535
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1536
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1537
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 16a2 2 0 1 1-4 0 2 2 0 0 1 4 0M7.5 14a2 2 0 1 0 0 4 2 2 0 0 0 0-4m17 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4" }) });
1538
+ };
1539
+ React.forwardRef(SvgMore);
1540
+ const SvgMove = ({
1541
+ fill: fillProp = "currentColor",
1542
+ stroke: strokeProp,
1543
+ ...props
1544
+ }, ref) => {
1545
+ const {
1546
+ colors
1547
+ } = styled.useTheme();
1548
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1549
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1550
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.939 8.061a1.5 1.5 0 0 1 0-2.125l4-4a1.5 1.5 0 0 1 2.125 0l4 4a1.503 1.503 0 1 1-2.125 2.125L17.5 6.625V12a1.5 1.5 0 1 1-3 0V6.625l-1.439 1.436a1.5 1.5 0 0 1-2.122 0m8 15.875L17.5 25.375V20a1.5 1.5 0 1 0-3 0v5.375l-1.439-1.44a1.504 1.504 0 0 0-2.125 2.125l4 4a1.5 1.5 0 0 0 2.125 0l4-4a1.502 1.502 0 1 0-2.125-2.125zm11.125-9-4-4a1.503 1.503 0 0 0-2.125 2.125l1.436 1.439H20a1.5 1.5 0 0 0 0 3h5.375l-1.44 1.439a1.503 1.503 0 0 0 2.125 2.125l4-4a1.5 1.5 0 0 0 .001-2.125zM6.625 17.5H12a1.5 1.5 0 1 0 0-3H6.625l1.44-1.439a1.503 1.503 0 1 0-2.125-2.125l-4 4a1.5 1.5 0 0 0 0 2.125l4 4a1.503 1.503 0 0 0 2.125-2.125z" }) });
1551
+ };
1552
+ React.forwardRef(SvgMove);
1553
+ const SvgMusicNotes = ({
1554
+ fill: fillProp = "currentColor",
1555
+ stroke: strokeProp,
1556
+ ...props
1557
+ }, ref) => {
1558
+ const {
1559
+ colors
1560
+ } = styled.useTheme();
1561
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1562
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1563
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M26.615 3.214a.99.99 0 0 0-.857-.183l-16 4a1 1 0 0 0-.758.97v13.762a4.5 4.5 0 1 0 2 3.737V13.781l14-3.5v7.482a4.5 4.5 0 1 0 2 3.737V4a1 1 0 0 0-.385-.786" }) });
1564
+ };
1565
+ React.forwardRef(SvgMusicNotes);
1566
+ const SvgNumberList = ({
1567
+ fill: fillProp = "currentColor",
1568
+ stroke: strokeProp,
1569
+ ...props
1570
+ }, ref) => {
1571
+ const {
1572
+ colors
1573
+ } = styled.useTheme();
1574
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1575
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1576
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.5 16a1.5 1.5 0 0 1-1.5 1.5H14.5a1.5 1.5 0 1 1 0-3H27a1.5 1.5 0 0 1 1.5 1.5m-14-6.5H27a1.5 1.5 0 0 0 0-3H14.5a1.5 1.5 0 0 0 0 3m12.5 13H14.5a1.5 1.5 0 1 0 0 3H27a1.5 1.5 0 1 0 0-3M5.5 7.414V13a1.5 1.5 0 0 0 3 0V5a1.5 1.5 0 0 0-2.17-1.341l-2 1a1.5 1.5 0 0 0 1.17 2.75zm4.966 12.107a3.46 3.46 0 0 0-1.4-2.329 3.61 3.61 0 0 0-4.954.683 3.5 3.5 0 0 0-.52.942 1.5 1.5 0 0 0 2.818 1.027.5.5 0 0 1 .072-.125.6.6 0 0 1 .813-.103.48.48 0 0 1 .201.325.45.45 0 0 1-.096.347l-.016.02-3.585 4.794A1.5 1.5 0 0 0 5 27.5h4a1.5 1.5 0 1 0 0-3H8l1.785-2.389a3.43 3.43 0 0 0 .681-2.59" }) });
1577
+ };
1578
+ React.forwardRef(SvgNumberList);
1579
+ const SvgOneToMany = ({
1580
+ fill: fillProp = "currentColor",
1581
+ stroke: strokeProp,
1582
+ ...props
1583
+ }, ref) => {
1584
+ const {
1585
+ colors
1586
+ } = styled.useTheme();
1587
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1588
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1589
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", d: "M17.2 8.254a4 4 0 1 1 1.082 1.682l-7.482 4.81q.04.125.074.254h10.252A4.002 4.002 0 0 1 29 16a4 4 0 0 1-7.874 1H10.874q-.033.128-.075.254l7.484 4.81a4 4 0 1 1-1.082 1.682l-7.484-4.81a4 4 0 1 1 0-5.871zM21 9a2 2 0 1 1 0-4 2 2 0 0 1 0 4m0 18a2 2 0 1 1 0-4 2 2 0 0 1 0 4m2-11a2 2 0 1 0 4 0 2 2 0 0 0-4 0M7 18a2 2 0 1 1 0-4 2 2 0 0 1 0 4", clipRule: "evenodd" }) });
1590
+ };
1591
+ React.forwardRef(SvgOneToMany);
1592
+ const SvgOneToOne = ({
1593
+ fill: fillProp = "currentColor",
1594
+ stroke: strokeProp,
1595
+ ...props
1596
+ }, ref) => {
1597
+ const {
1598
+ colors
1599
+ } = styled.useTheme();
1600
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1601
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1602
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", d: "M10.874 17A4.002 4.002 0 0 1 3 16a4 4 0 0 1 7.874-1h10.252A4.002 4.002 0 0 1 29 16a4 4 0 0 1-7.874 1zM7 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4m18 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4", clipRule: "evenodd" }) });
1603
+ };
1604
+ React.forwardRef(SvgOneToOne);
1605
+ const SvgOneWay = ({
1606
+ fill: fillProp = "currentColor",
1607
+ stroke: strokeProp,
1608
+ ...props
1609
+ }, ref) => {
1610
+ const {
1611
+ colors
1612
+ } = styled.useTheme();
1613
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1614
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1615
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", d: "M28.924 16.384c-.05.12-.124.231-.217.324l-4 4a1 1 0 0 1-1.632-.324 1 1 0 0 1 .217-1.09L25.585 17H10.875A4.002 4.002 0 0 1 3 16a4 4 0 0 1 7.874-1h14.712l-2.294-2.293a1 1 0 0 1 1.415-1.415l4 4a1 1 0 0 1 .217 1.09M7 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4", clipRule: "evenodd" }) });
1616
+ };
1617
+ React.forwardRef(SvgOneWay);
1618
+ const SvgPaintBrush = ({
1619
+ fill: fillProp = "currentColor",
1620
+ stroke: strokeProp,
1621
+ ...props
1622
+ }, ref) => {
1623
+ const {
1624
+ colors
1625
+ } = styled.useTheme();
1626
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1627
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1628
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M29 4a1 1 0 0 0-1-1c-5.51 0-11.164 6.214-14.304 10.329A7.5 7.5 0 0 0 4 20.5c0 3.86-2.443 5.591-2.559 5.671A1 1 0 0 0 2 28h9.5a7.5 7.5 0 0 0 7.171-9.696C22.788 15.164 29 9.51 29 4M15.553 14.194a48 48 0 0 1 1.26-1.569 9.5 9.5 0 0 1 2.562 2.561q-.738.618-1.569 1.262a7.6 7.6 0 0 0-2.254-2.254m5.337-.335a11.6 11.6 0 0 0-2.75-2.75c3.973-4.316 6.969-5.625 8.738-5.989-.357 1.77-1.672 4.766-5.988 8.739" }) });
1629
+ };
1630
+ React.forwardRef(SvgPaintBrush);
1631
+ const SvgPaintRoller = ({
1632
+ fill: fillProp = "currentColor",
1633
+ stroke: strokeProp,
1634
+ ...props
1635
+ }, ref) => {
1636
+ const {
1637
+ colors
1638
+ } = styled.useTheme();
1639
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1640
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1641
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M31 13v6.25a2.01 2.01 0 0 1-1.45 1.922L17 24.75V29a1 1 0 0 1-2 0v-4.25a2.01 2.01 0 0 1 1.45-1.922L29 19.25V13h-2v3a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3H2a1 1 0 0 1 0-2h2V8a2 2 0 0 1 2-2h19a2 2 0 0 1 2 2v3h2a2 2 0 0 1 2 2" }) });
1642
+ };
1643
+ React.forwardRef(SvgPaintRoller);
1644
+ const SvgPalette = ({
1645
+ fill: fillProp = "currentColor",
1646
+ stroke: strokeProp,
1647
+ ...props
1648
+ }, ref) => {
1649
+ const {
1650
+ colors
1651
+ } = styled.useTheme();
1652
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1653
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1654
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M25.096 6.736A12.9 12.9 0 0 0 16 3h-.134A13 13 0 0 0 3 16c0 5.375 3.323 9.883 8.67 11.771A4 4 0 0 0 17 24a2 2 0 0 1 2-2h5.776a3.976 3.976 0 0 0 3.9-3.11c.224-.984.332-1.99.324-3a12.9 12.9 0 0 0-3.904-9.154M10.5 21a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m0-7a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m5.5-3a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m5.5 3a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3" }) });
1655
+ };
1656
+ React.forwardRef(SvgPalette);
1657
+ const SvgPaperPlane = ({
1658
+ fill: fillProp = "currentColor",
1659
+ stroke: strokeProp,
1660
+ ...props
1661
+ }, ref) => {
1662
+ const {
1663
+ colors
1664
+ } = styled.useTheme();
1665
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1666
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1667
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.925 5.543v.018L21.65 29.554A1.985 1.985 0 0 1 19.728 31a1.98 1.98 0 0 1-1.803-1.144l-4.464-9.423a.5.5 0 0 1 .099-.568l7.158-7.159a1 1 0 0 0-1.414-1.413l-7.169 7.157a.5.5 0 0 1-.567.099l-9.376-4.441A2.05 2.05 0 0 1 1 12.17a1.99 1.99 0 0 1 1.446-1.815L26.44 3.08h.018a2 2 0 0 1 2.468 2.463" }) });
1668
+ };
1669
+ React.forwardRef(SvgPaperPlane);
1670
+ const SvgPaperclip = ({
1671
+ fill: fillProp = "currentColor",
1672
+ stroke: strokeProp,
1673
+ ...props
1674
+ }, ref) => {
1675
+ const {
1676
+ colors
1677
+ } = styled.useTheme();
1678
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1679
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1680
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m26.56 17.061-10.257 10.25a7.501 7.501 0 0 1-10.607-10.61l12.27-12.236a5 5 0 0 1 7.07 7.074l-.021.02L13.04 23.086a1.503 1.503 0 0 1-2.121-.041 1.5 1.5 0 0 1 .041-2.121L22.924 9.409a2 2 0 1 0-2.838-2.82L7.816 18.82a4.5 4.5 0 1 0 6.366 6.364l10.258-10.25a1.503 1.503 0 0 1 2.125 2.125z" }) });
1681
+ };
1682
+ React.forwardRef(SvgPaperclip);
1683
+ const SvgParagraph = ({
1684
+ fill: fillProp = "currentColor",
1685
+ stroke: strokeProp,
1686
+ ...props
1687
+ }, ref) => {
1688
+ const {
1689
+ colors
1690
+ } = styled.useTheme();
1691
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1692
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1693
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.5 8A1.5 1.5 0 0 1 5 6.5h22a1.5 1.5 0 0 1 0 3H5A1.5 1.5 0 0 1 3.5 8M5 14.5h16a1.5 1.5 0 1 0 0-3H5a1.5 1.5 0 1 0 0 3m22 2H5a1.5 1.5 0 1 0 0 3h22a1.5 1.5 0 1 0 0-3m-6 5H5a1.5 1.5 0 1 0 0 3h16a1.5 1.5 0 1 0 0-3" }) });
1694
+ };
1695
+ React.forwardRef(SvgParagraph);
1696
+ const SvgPencil = ({
1697
+ fill: fillProp = "currentColor",
1698
+ stroke: strokeProp,
1699
+ ...props
1700
+ }, ref) => {
1701
+ const {
1702
+ colors
1703
+ } = styled.useTheme();
1704
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1705
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1706
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m28.414 9.171-5.585-5.586a2 2 0 0 0-2.829 0L4.586 19A1.98 1.98 0 0 0 4 20.414V26a2 2 0 0 0 2 2h5.586A1.98 1.98 0 0 0 13 27.414L28.414 12a2 2 0 0 0 0-2.829M24 13.585 18.414 8l3-3L27 10.585z" }) });
1707
+ };
1708
+ React.forwardRef(SvgPencil);
1709
+ const SvgPhone = ({
1710
+ fill: fillProp = "currentColor",
1711
+ stroke: strokeProp,
1712
+ ...props
1713
+ }, ref) => {
1714
+ const {
1715
+ colors
1716
+ } = styled.useTheme();
1717
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1718
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1719
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.985 21.885A7.03 7.03 0 0 1 22 28c-9.925 0-18-8.075-18-18a7.03 7.03 0 0 1 6.115-6.985 2 2 0 0 1 2.078 1.19l2.64 5.894v.015a2 2 0 0 1-.16 1.886 1 1 0 0 1-.07.096L12 15.181c.936 1.903 2.926 3.875 4.854 4.814l3.042-2.589q.045-.037.094-.07a2 2 0 0 1 1.896-.175l.017.008 5.888 2.639a2 2 0 0 1 1.194 2.077" }) });
1720
+ };
1721
+ React.forwardRef(SvgPhone);
1722
+ const SvgPin = ({
1723
+ fill: fillProp = "currentColor",
1724
+ stroke: strokeProp,
1725
+ ...props
1726
+ }, ref) => {
1727
+ const {
1728
+ colors
1729
+ } = styled.useTheme();
1730
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1731
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1732
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m29.416 13-6.683 6.706c.57 1.584.806 4.236-1.65 7.5a2 2 0 0 1-1.458.794h-.141a2 2 0 0 1-1.415-.586l-6.033-6.04-5.328 5.333a1 1 0 1 1-1.415-1.415l5.332-5.328-6.037-6.038a2 2 0 0 1 .162-2.972c3.178-2.564 6.219-2.06 7.55-1.643L19 2.587a2 2 0 0 1 2.829 0l7.586 7.585A2 2 0 0 1 29.416 13" }) });
1733
+ };
1734
+ React.forwardRef(SvgPin);
1735
+ const SvgPinMap = ({
1736
+ fill: fillProp = "currentColor",
1737
+ stroke: strokeProp,
1738
+ ...props
1739
+ }, ref) => {
1740
+ const {
1741
+ colors
1742
+ } = styled.useTheme();
1743
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1744
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1745
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 2A11.013 11.013 0 0 0 5 13c0 9.413 10 16.521 10.426 16.819a1 1 0 0 0 1.148 0C17 29.52 27 22.413 27 13A11.01 11.01 0 0 0 16 2m0 7a4 4 0 1 1 0 8 4 4 0 0 1 0-8" }) });
1746
+ };
1747
+ React.forwardRef(SvgPinMap);
1748
+ const SvgPlane = ({
1749
+ fill: fillProp = "currentColor",
1750
+ stroke: strokeProp,
1751
+ ...props
1752
+ }, ref) => {
1753
+ const {
1754
+ colors
1755
+ } = styled.useTheme();
1756
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1757
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1758
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M30 17v4a1 1 0 0 1-1.196.98L19.5 20.125v2.966l2.207 2.206A1 1 0 0 1 22 26v3a1 1 0 0 1-1.375.929L16 28.078l-4.625 1.85A1 1 0 0 1 10 29v-3a1 1 0 0 1 .293-.707l2.207-2.207v-2.961L3.196 21.98A1 1 0 0 1 2 21v-4a1 1 0 0 1 .553-.895l9.947-4.972V5.5a3.5 3.5 0 1 1 7 0v5.633l9.948 4.972A1 1 0 0 1 30 17" }) });
1759
+ };
1760
+ React.forwardRef(SvgPlane);
1761
+ const SvgPlant = ({
1762
+ fill: fillProp = "currentColor",
1763
+ stroke: strokeProp,
1764
+ ...props
1765
+ }, ref) => {
1766
+ const {
1767
+ colors
1768
+ } = styled.useTheme();
1769
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1770
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1771
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M25.676 18.884a7.6 7.6 0 0 1-3.978 1.107 9 9 0 0 1-3.42-.707A6.94 6.94 0 0 0 17 23.314V27a1 1 0 0 1-1.066 1A1.023 1.023 0 0 1 15 26.969v-1.555l-4.828-4.828A6.6 6.6 0 0 1 7.93 21a5.73 5.73 0 0 1-2.99-.834C2.216 18.511.75 14.702 1.034 9.974a1 1 0 0 1 .94-.94c4.728-.28 8.537 1.182 10.187 3.906a5.75 5.75 0 0 1 .806 3.56.5.5 0 0 1-.86.304l-2.4-2.513a1 1 0 0 0-1.415 1.414l6.736 6.906q.01-.146.026-.291a8.57 8.57 0 0 1 2.33-4.933l6.323-6.682a1 1 0 0 0-1.413-1.415l-6.125 6.477a.5.5 0 0 1-.848-.217c-.592-2.185-.331-4.36.8-6.228 2.233-3.685 7.428-5.657 13.898-5.277a1 1 0 0 1 .94.94c.375 6.471-1.598 11.666-5.283 13.899" }) });
1772
+ };
1773
+ React.forwardRef(SvgPlant);
1774
+ const SvgPlay = ({
1775
+ fill: fillProp = "currentColor",
1776
+ stroke: strokeProp,
1777
+ ...props
1778
+ }, ref) => {
1779
+ const {
1780
+ colors
1781
+ } = styled.useTheme();
1782
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1783
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1784
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M30 16a1.97 1.97 0 0 1-.95 1.689L11.04 28.706a2 2 0 0 1-2.767-.688A2 2 0 0 1 8 27.016V4.984a1.98 1.98 0 0 1 1.015-1.728 2 2 0 0 1 2.025.038L29.05 14.31A1.97 1.97 0 0 1 30 16" }) });
1785
+ };
1786
+ React.forwardRef(SvgPlay);
1787
+ const SvgPlus = ({
1788
+ fill: fillProp = "currentColor",
1789
+ stroke: strokeProp,
1790
+ ...props
1791
+ }, ref) => {
1792
+ const {
1793
+ colors
1794
+ } = styled.useTheme();
1795
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1796
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1797
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.5 16a1.5 1.5 0 0 1-1.5 1.5h-9.5V27a1.5 1.5 0 1 1-3 0v-9.5H5a1.5 1.5 0 1 1 0-3h9.5V5a1.5 1.5 0 1 1 3 0v9.5H27a1.5 1.5 0 0 1 1.5 1.5" }) });
1798
+ };
1799
+ React.forwardRef(SvgPlus);
1800
+ const SvgPlusCircle = ({
1801
+ fill: fillProp = "currentColor",
1802
+ stroke: strokeProp,
1803
+ ...props
1804
+ }, ref) => {
1805
+ const {
1806
+ colors
1807
+ } = styled.useTheme();
1808
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1809
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1810
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.016 13.016 0 0 0 16 3m5 14h-4v4a1 1 0 0 1-2 0v-4h-4a1 1 0 0 1 0-2h4v-4a1 1 0 0 1 2 0v4h4a1 1 0 0 1 0 2" }) });
1811
+ };
1812
+ React.forwardRef(SvgPlusCircle);
1813
+ const SvgPresentationChart = ({
1814
+ fill: fillProp = "currentColor",
1815
+ stroke: strokeProp,
1816
+ ...props
1817
+ }, ref) => {
1818
+ const {
1819
+ colors
1820
+ } = styled.useTheme();
1821
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1822
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1823
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 5H17V3a1 1 0 0 0-2 0v2H5a2 2 0 0 0-2 2v15a2 2 0 0 0 2 2h4.92l-2.701 3.375a1 1 0 0 0 1.562 1.25L12.48 24h7.04l3.699 4.625a1 1 0 1 0 1.562-1.25L22.08 24H27a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2M13 18a1 1 0 0 1-2 0v-3a1 1 0 0 1 2 0zm4 0a1 1 0 0 1-2 0v-5a1 1 0 0 1 2 0zm4 0a1 1 0 0 1-2 0v-7a1 1 0 0 1 2 0z" }) });
1824
+ };
1825
+ React.forwardRef(SvgPresentationChart);
1826
+ const SvgPriceTag = ({
1827
+ fill: fillProp = "currentColor",
1828
+ stroke: strokeProp,
1829
+ ...props
1830
+ }, ref) => {
1831
+ const {
1832
+ colors
1833
+ } = styled.useTheme();
1834
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1835
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1836
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M30.414 17 18 4.586A1.98 1.98 0 0 0 16.586 4H5a1 1 0 0 0-1 1v11.586A1.98 1.98 0 0 0 4.586 18L17 30.414a2 2 0 0 0 2.829 0l10.585-10.585a2 2 0 0 0 0-2.829M10.5 12a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3" }) });
1837
+ };
1838
+ React.forwardRef(SvgPriceTag);
1839
+ const SvgPuzzlePiece = ({
1840
+ fill: fillProp = "currentColor",
1841
+ stroke: strokeProp,
1842
+ ...props
1843
+ }, ref) => {
1844
+ const {
1845
+ colors
1846
+ } = styled.useTheme();
1847
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1848
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1849
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.723 28H26a2 2 0 0 0 2-2v-4.706a1 1 0 0 0-1.383-.919 2.9 2.9 0 0 1-1.117.221c-1.654 0-3-1.387-3-3.091s1.346-3.091 3-3.091c.383 0 .763.075 1.117.221A1 1 0 0 0 28 13.706V9a2 2 0 0 0-2-2h-4.527a4.5 4.5 0 1 0-8.945 0H8a2 2 0 0 0-2 2v4.028a4.5 4.5 0 1 0 0 8.945V26a2 2 0 0 0 2 2h5.278" }) });
1850
+ };
1851
+ React.forwardRef(SvgPuzzlePiece);
1852
+ const SvgQuestion = ({
1853
+ fill: fillProp = "currentColor",
1854
+ stroke: strokeProp,
1855
+ ...props
1856
+ }, ref) => {
1857
+ const {
1858
+ colors
1859
+ } = styled.useTheme();
1860
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1861
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1862
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 22.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0M29.5 16A13.5 13.5 0 1 1 16 2.5 13.515 13.515 0 0 1 29.5 16m-3 0A10.5 10.5 0 1 0 16 26.5 10.51 10.51 0 0 0 26.5 16M16 8c-3.033 0-5.5 2.242-5.5 5v.5a1.5 1.5 0 1 0 3 0V13c0-1.102 1.125-2 2.5-2s2.5.898 2.5 2-1.125 2-2.5 2a1.5 1.5 0 0 0-1.5 1.5v1a1.5 1.5 0 0 0 2.966.32C19.79 17.235 21.5 15.296 21.5 13c0-2.758-2.468-5-5.5-5" }) });
1863
+ };
1864
+ React.forwardRef(SvgQuestion);
1865
+ const SvgQuotes = ({
1866
+ fill: fillProp = "currentColor",
1867
+ stroke: strokeProp,
1868
+ ...props
1869
+ }, ref) => {
1870
+ const {
1871
+ colors
1872
+ } = styled.useTheme();
1873
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1874
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1875
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.5 9v11a6.006 6.006 0 0 1-6 6 1 1 0 0 1 0-2 4 4 0 0 0 4-4v-1H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h7.5a2 2 0 0 1 2 2M27 7h-7.5a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2H27v1a4 4 0 0 1-4 4 1 1 0 0 0 0 2 6.006 6.006 0 0 0 6-6V9a2 2 0 0 0-2-2" }) });
1876
+ };
1877
+ React.forwardRef(SvgQuotes);
1878
+ const SvgRestaurant = ({
1879
+ fill: fillProp = "currentColor",
1880
+ stroke: strokeProp,
1881
+ ...props
1882
+ }, ref) => {
1883
+ const {
1884
+ colors
1885
+ } = styled.useTheme();
1886
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1887
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1888
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 5v23a1 1 0 0 1-2 0v-6h-6a1 1 0 0 1-1-1c.046-2.395.349-4.779.902-7.11 1.223-5.061 3.54-8.454 6.704-9.809a1 1 0 0 1 1.394.92m-12.014-.164a.999.999 0 1 0-1.972.33L13.986 11H11V5a1 1 0 0 0-2 0v6H6.014l.972-5.835a1 1 0 1 0-1.972-.329l-1 6A1 1 0 0 0 4 11a6.01 6.01 0 0 0 5 5.915V28a1 1 0 1 0 2 0V16.915A6.01 6.01 0 0 0 16 11q0-.083-.014-.164z" }) });
1889
+ };
1890
+ React.forwardRef(SvgRestaurant);
1891
+ const SvgRocket = ({
1892
+ fill: fillProp = "currentColor",
1893
+ stroke: strokeProp,
1894
+ ...props
1895
+ }, ref) => {
1896
+ const {
1897
+ colors
1898
+ } = styled.useTheme();
1899
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1900
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1901
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 28a1 1 0 0 1-1 1h-4a1 1 0 0 1 0-2h4a1 1 0 0 1 1 1m8.953-8.521-1.546 6.954a2 2 0 0 1-3.188 1.138l-3.405-2.57h-7.625L8.78 27.57a2 2 0 0 1-3.189-1.138l-1.545-6.954a2.01 2.01 0 0 1 .415-1.714l3.57-4.282c.12-1.574.482-3.12 1.072-4.584 1.612-4.043 4.5-6.579 5.671-7.481a2 2 0 0 1 2.45 0c1.167.902 4.059 3.438 5.671 7.48.59 1.465.952 3.01 1.072 4.585l3.57 4.282a2.01 2.01 0 0 1 .415 1.714m-17.404 4.25q-2.014-3.666-2.445-7.209L6 19.045 7.545 26l.022-.016zM17.5 12.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0m8.5 6.545-2.104-2.525q-.428 3.535-2.445 7.211l2.982 2.25.022.017z" }) });
1902
+ };
1903
+ const ForwardRef$y = React.forwardRef(SvgRocket);
1904
+ const SvgScissors = ({
1905
+ fill: fillProp = "currentColor",
1906
+ stroke: strokeProp,
1907
+ ...props
1908
+ }, ref) => {
1909
+ const {
1910
+ colors
1911
+ } = styled.useTheme();
1912
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1913
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1914
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.716 14.141a1 1 0 0 1 .261-1.391l8.458-5.788a1 1 0 0 1 1.125 1.652L21.101 14.4a1 1 0 0 1-1.39-.261zm10.109 10.634a1 1 0 0 1-1.39.261L17 17.211l-5.315 3.636a4.5 4.5 0 1 1-1.125-1.65L15.229 16l-4.673-3.198a4.5 4.5 0 1 1 1.125-1.65l17.875 12.233a1 1 0 0 1 .269 1.39M9 22.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0m0-13a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0" }) });
1915
+ };
1916
+ React.forwardRef(SvgScissors);
1917
+ const SvgSealCheck = ({
1918
+ fill: fillProp = "currentColor",
1919
+ stroke: strokeProp,
1920
+ ...props
1921
+ }, ref) => {
1922
+ const {
1923
+ colors
1924
+ } = styled.useTheme();
1925
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1926
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1927
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M225.86 102.82c-3.77-3.94-7.67-8-9.14-11.57-1.36-3.27-1.44-8.69-1.52-13.94-.15-9.76-.31-20.82-8-28.51s-18.75-7.85-28.51-8c-5.25-.08-10.67-.16-13.94-1.52-3.56-1.47-7.63-5.37-11.57-9.14C146.28 23.51 138.44 16 128 16s-18.27 7.51-25.18 14.14c-3.94 3.77-8 7.67-11.57 9.14-3.25 1.36-8.69 1.44-13.94 1.52-9.76.15-20.82.31-28.51 8s-7.8 18.75-8 28.51c-.08 5.25-.16 10.67-1.52 13.94-1.47 3.56-5.37 7.63-9.14 11.57C23.51 109.72 16 117.56 16 128s7.51 18.27 14.14 25.18c3.77 3.94 7.67 8 9.14 11.57 1.36 3.27 1.44 8.69 1.52 13.94.15 9.76.31 20.82 8 28.51s18.75 7.85 28.51 8c5.25.08 10.67.16 13.94 1.52 3.56 1.47 7.63 5.37 11.57 9.14 6.9 6.63 14.74 14.14 25.18 14.14s18.27-7.51 25.18-14.14c3.94-3.77 8-7.67 11.57-9.14 3.27-1.36 8.69-1.44 13.94-1.52 9.76-.15 20.82-.31 28.51-8s7.85-18.75 8-28.51c.08-5.25.16-10.67 1.52-13.94 1.47-3.56 5.37-7.63 9.14-11.57 6.63-6.9 14.14-14.74 14.14-25.18s-7.51-18.27-14.14-25.18m-52.2 6.84-56 56a8 8 0 0 1-11.32 0l-24-24a8 8 0 0 1 11.32-11.32L112 148.69l50.34-50.35a8 8 0 0 1 11.32 11.32" }) });
1928
+ };
1929
+ React.forwardRef(SvgSealCheck);
1930
+ const SvgSearch = ({
1931
+ fill: fillProp = "currentColor",
1932
+ stroke: strokeProp,
1933
+ ...props
1934
+ }, ref) => {
1935
+ const {
1936
+ colors
1937
+ } = styled.useTheme();
1938
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1939
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1940
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M29.061 26.939 23.125 21A11.515 11.515 0 1 0 21 23.125l5.941 5.942a1.503 1.503 0 0 0 2.125-2.125zM5.5 14a8.5 8.5 0 1 1 8.5 8.5A8.51 8.51 0 0 1 5.5 14" }) });
1941
+ };
1942
+ const ForwardRef$v = React.forwardRef(SvgSearch);
1943
+ const SvgServer = ({
1944
+ fill: fillProp = "currentColor",
1945
+ stroke: strokeProp,
1946
+ ...props
1947
+ }, ref) => {
1948
+ const {
1949
+ colors
1950
+ } = styled.useTheme();
1951
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1952
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1953
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M26 5H6a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-3.5 6.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M26 17H6a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2m-3.5 6.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3" }) });
1954
+ };
1955
+ React.forwardRef(SvgServer);
1956
+ const SvgShield = ({
1957
+ fill: fillProp = "currentColor",
1958
+ stroke: strokeProp,
1959
+ ...props
1960
+ }, ref) => {
1961
+ const {
1962
+ colors
1963
+ } = styled.useTheme();
1964
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1965
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1966
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28 7v7.346c0 11.202-9.477 14.918-11.375 15.549a1.94 1.94 0 0 1-1.25 0C13.475 29.264 4 25.548 4 14.346V7a2 2 0 0 1 2-2h20a2 2 0 0 1 2 2" }) });
1967
+ };
1968
+ React.forwardRef(SvgShield);
1969
+ const SvgShirt = ({
1970
+ fill: fillProp = "currentColor",
1971
+ stroke: strokeProp,
1972
+ ...props
1973
+ }, ref) => {
1974
+ const {
1975
+ colors
1976
+ } = styled.useTheme();
1977
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1978
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1979
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m30.949 7.653-6.47-3.528A1 1 0 0 0 24 4h-4a1 1 0 0 0-1 1 3 3 0 0 1-6 0 1 1 0 0 0-1-1H8a1 1 0 0 0-.48.125L1.051 7.653a1.97 1.97 0 0 0-.824 2.657l2.41 4.601A2.05 2.05 0 0 0 4.458 16H7v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V16h2.543a2.05 2.05 0 0 0 1.822-1.089l2.409-4.601a1.97 1.97 0 0 0-.825-2.658M4.459 14a.08.08 0 0 1-.051-.016L2.01 9.408 7 6.685V14zm23.134-.018a.07.07 0 0 1-.052.018H25V6.685l4.99 2.723z" }) });
1980
+ };
1981
+ React.forwardRef(SvgShirt);
1982
+ const SvgShoppingCart = ({
1983
+ fill: fillProp = "currentColor",
1984
+ stroke: strokeProp,
1985
+ ...props
1986
+ }, ref) => {
1987
+ const {
1988
+ colors
1989
+ } = styled.useTheme();
1990
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
1991
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
1992
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 27a2 2 0 1 1-4 0 2 2 0 0 1 4 0m11-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4m5.805-16.594A1 1 0 0 0 28 8H6.04L5.026 4.45A2.01 2.01 0 0 0 3.103 3H1a1 1 0 0 0 0 2h2.103l4.522 15.824A3.01 3.01 0 0 0 10.509 23h12.014a2.99 2.99 0 0 0 2.867-2.117l3.566-11.59a1 1 0 0 0-.151-.887" }) });
1993
+ };
1994
+ React.forwardRef(SvgShoppingCart);
1995
+ const SvgSignOut = ({
1996
+ fill: fillProp = "currentColor",
1997
+ stroke: strokeProp,
1998
+ ...props
1999
+ }, ref) => {
2000
+ const {
2001
+ colors
2002
+ } = styled.useTheme();
2003
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2004
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2005
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.5 27a1.5 1.5 0 0 1-1.5 1.5H6A2.5 2.5 0 0 1 3.5 26V6A2.5 2.5 0 0 1 6 3.5h7a1.5 1.5 0 0 1 0 3H6.5v19H13a1.5 1.5 0 0 1 1.5 1.5m13.561-12.061-5-5a1.503 1.503 0 0 0-2.125 2.125l2.439 2.436H13a1.5 1.5 0 1 0 0 3h10.375l-2.44 2.439a1.503 1.503 0 0 0 2.125 2.125l5-5a1.5 1.5 0 0 0 .001-2.125" }) });
2006
+ };
2007
+ React.forwardRef(SvgSignOut);
2008
+ const SvgSlidersHorizontal = ({
2009
+ fill: fillProp = "currentColor",
2010
+ stroke: strokeProp,
2011
+ ...props
2012
+ }, ref) => {
2013
+ const {
2014
+ colors
2015
+ } = styled.useTheme();
2016
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2017
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2018
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 10a1 1 0 0 1 1-1h4.646a3.5 3.5 0 0 1 6.708 0H27a1 1 0 1 1 0 2H16.354a3.5 3.5 0 0 1-6.708 0H5a1 1 0 0 1-1-1m23 11h-2.646a3.5 3.5 0 0 0-6.708 0H5a1 1 0 0 0 0 2h12.646a3.5 3.5 0 0 0 6.708 0H27a1 1 0 1 0 0-2" }) });
2019
+ };
2020
+ React.forwardRef(SvgSlidersHorizontal);
2021
+ const SvgSparkle = ({
2022
+ fill: fillProp = "currentColor",
2023
+ stroke: strokeProp,
2024
+ ...props
2025
+ }, ref) => {
2026
+ const {
2027
+ colors
2028
+ } = styled.useTheme();
2029
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2030
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2031
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M26 18a1.97 1.97 0 0 1-1.302 1.867l-6.457 2.375-2.375 6.452a1.99 1.99 0 0 1-3.735 0L9.75 22.25l-6.452-2.375a1.99 1.99 0 0 1 0-3.735l6.456-2.375 2.375-6.451a1.99 1.99 0 0 1 3.735 0l2.375 6.456 6.451 2.375A1.97 1.97 0 0 1 26 18M19 6h2v2a1 1 0 0 0 2 0V6h2a1 1 0 1 0 0-2h-2V2a1 1 0 1 0-2 0v2h-2a1 1 0 1 0 0 2m11 4h-1V9a1 1 0 1 0-2 0v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0v-1h1a1 1 0 0 0 0-2" }) });
2032
+ };
2033
+ const ForwardRef$o = React.forwardRef(SvgSparkle);
2034
+ const SvgSquaresFour = ({
2035
+ fill: fillProp = "currentColor",
2036
+ stroke: strokeProp,
2037
+ ...props
2038
+ }, ref) => {
2039
+ const {
2040
+ colors
2041
+ } = styled.useTheme();
2042
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2043
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2044
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 7v6a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2m10-2h-6a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2M13 17H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2m12 0h-6a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2" }) });
2045
+ };
2046
+ React.forwardRef(SvgSquaresFour);
2047
+ const SvgStack = ({
2048
+ fill: fillProp = "currentColor",
2049
+ stroke: strokeProp,
2050
+ ...props
2051
+ }, ref) => {
2052
+ const {
2053
+ colors
2054
+ } = styled.useTheme();
2055
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2056
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2057
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: [
2058
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27.5 21.136 16 27.843 4.5 21.136a1 1 0 0 0-1 1.728l12 7a1 1 0 0 0 1.008 0l12-7a1 1 0 1 0-1.008-1.728" }),
2059
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27.5 15.136 16 21.843 4.5 15.136a1 1 0 0 0-1 1.728l12 7a1 1 0 0 0 1.008 0l12-7a1 1 0 1 0-1.008-1.728" }),
2060
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m3.5 10.864 12 7a1 1 0 0 0 1.008 0l12-7a1 1 0 0 0 0-1.728l-12-7a1 1 0 0 0-1.008 0l-12 7a1 1 0 0 0 0 1.728" })
2061
+ ] });
2062
+ };
2063
+ React.forwardRef(SvgStack);
2064
+ const SvgStar = ({
2065
+ fill: fillProp = "currentColor",
2066
+ stroke: strokeProp,
2067
+ ...props
2068
+ }, ref) => {
2069
+ const {
2070
+ colors
2071
+ } = styled.useTheme();
2072
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2073
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2074
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m29.313 14.298-5.638 4.92 1.689 7.325a2 2 0 0 1-2.98 2.167l-6.389-3.875L9.62 28.71a2 2 0 0 1-2.98-2.168l1.686-7.317-5.638-4.928a2 2 0 0 1 1.138-3.507l7.433-.644 2.901-6.92a1.994 1.994 0 0 1 3.68 0l2.91 6.92 7.43.644a2 2 0 0 1 1.139 3.508z" }) });
2075
+ };
2076
+ React.forwardRef(SvgStar);
2077
+ const SvgStethoscope = ({
2078
+ fill: fillProp = "currentColor",
2079
+ stroke: strokeProp,
2080
+ ...props
2081
+ }, ref) => {
2082
+ const {
2083
+ colors
2084
+ } = styled.useTheme();
2085
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2086
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2087
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M29 19a4 4 0 1 0-4.991 3.875A1 1 0 0 0 24 23a4 4 0 0 1-4 4h-3a4 4 0 0 1-4-4v-5.065c3.934-.5 7-3.934 7-8.039V5a2 2 0 0 0-2-2h-2a1 1 0 1 0 0 2h2v4.896c0 3.323-2.656 6.061-5.92 6.104A6 6 0 0 1 6 10V5h2a1 1 0 0 0 0-2H6a2 2 0 0 0-2 2v5a8 8 0 0 0 7 7.936V23a6.006 6.006 0 0 0 6 6h3a6.006 6.006 0 0 0 6-6 1 1 0 0 0-.009-.125A4 4 0 0 0 29 19m-4 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2" }) });
2088
+ };
2089
+ React.forwardRef(SvgStethoscope);
2090
+ const SvgStop = ({
2091
+ fill: fillProp = "currentColor",
2092
+ stroke: strokeProp,
2093
+ ...props
2094
+ }, ref) => {
2095
+ const {
2096
+ colors
2097
+ } = styled.useTheme();
2098
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2099
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2100
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M216 56v144a16 16 0 0 1-16 16H56a16 16 0 0 1-16-16V56a16 16 0 0 1 16-16h144a16 16 0 0 1 16 16" }) });
2101
+ };
2102
+ React.forwardRef(SvgStop);
2103
+ const SvgStore = ({
2104
+ fill: fillProp = "currentColor",
2105
+ stroke: strokeProp,
2106
+ ...props
2107
+ }, ref) => {
2108
+ const {
2109
+ colors
2110
+ } = styled.useTheme();
2111
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2112
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2113
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M29 12a1 1 0 0 0-.038-.275L27.17 5.45A2.01 2.01 0 0 0 25.25 4H6.75a2.01 2.01 0 0 0-1.919 1.45L3.04 11.725A1 1 0 0 0 3 12v2a5 5 0 0 0 2 4v8a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2v-8a5 5 0 0 0 2-4zm-18 2a3 3 0 0 1-4.39 2.657 1 1 0 0 0-.228-.132A3 3 0 0 1 5 14v-1h6zm8 0a3 3 0 0 1-6 0v-1h6zm8 0a3 3 0 0 1-1.384 2.525q-.12.051-.225.131A3 3 0 0 1 21 14v-1h6z" }) });
2114
+ };
2115
+ React.forwardRef(SvgStore);
2116
+ const SvgStrikeThrough = ({
2117
+ fill: fillProp = "currentColor",
2118
+ stroke: strokeProp,
2119
+ ...props
2120
+ }, ref) => {
2121
+ const {
2122
+ colors
2123
+ } = styled.useTheme();
2124
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2125
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2126
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.5 16a1.5 1.5 0 0 1-1.5 1.5h-3.767A5.19 5.19 0 0 1 24.5 21c0 1.806-.976 3.54-2.679 4.756C20.25 26.881 18.18 27.5 16 27.5s-4.25-.619-5.821-1.744C8.476 24.54 7.5 22.806 7.5 21a1.5 1.5 0 0 1 3 0c0 1.898 2.519 3.5 5.5 3.5s5.5-1.602 5.5-3.5c0-1.595-1.163-2.523-4.419-3.5H5a1.5 1.5 0 1 1 0-3h22a1.5 1.5 0 0 1 1.5 1.5M9.389 12.5a1.5 1.5 0 0 0 1.5-1.5c0-2 2.197-3.5 5.111-3.5 2.17 0 3.921.831 4.685 2.223a1.5 1.5 0 0 0 2.625-1.446C22.016 5.914 19.281 4.5 16 4.5c-4.625 0-8.111 2.794-8.111 6.5a1.5 1.5 0 0 0 1.5 1.5" }) });
2127
+ };
2128
+ React.forwardRef(SvgStrikeThrough);
2129
+ const SvgSun = ({
2130
+ fill: fillProp = "currentColor",
2131
+ stroke: strokeProp,
2132
+ ...props
2133
+ }, ref) => {
2134
+ const {
2135
+ colors
2136
+ } = styled.useTheme();
2137
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2138
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2139
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 5V2a1 1 0 0 1 2 0v3a1 1 0 0 1-2 0m1 3a8 8 0 1 0 8 8 8.01 8.01 0 0 0-8-8m-8.707.707a1 1 0 1 0 1.414-1.415l-2-2a1 1 0 1 0-1.414 1.415zm0 14.586-2 2a1 1 0 1 0 1.414 1.415l2-2a1 1 0 1 0-1.415-1.415M24 9a1 1 0 0 0 .707-.293l2-2a1 1 0 0 0-1.415-1.414l-2 2A1 1 0 0 0 24 9m.707 14.293a1 1 0 1 0-1.415 1.415l2 2a1 1 0 0 0 1.415-1.415zM6 16a1 1 0 0 0-1-1H2a1 1 0 0 0 0 2h3a1 1 0 0 0 1-1m10 10a1 1 0 0 0-1 1v3a1 1 0 0 0 2 0v-3a1 1 0 0 0-1-1m14-11h-3a1 1 0 0 0 0 2h3a1 1 0 0 0 0-2" }) });
2140
+ };
2141
+ React.forwardRef(SvgSun);
2142
+ const SvgTelevision = ({
2143
+ fill: fillProp = "currentColor",
2144
+ stroke: strokeProp,
2145
+ ...props
2146
+ }, ref) => {
2147
+ const {
2148
+ colors
2149
+ } = styled.useTheme();
2150
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2151
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2152
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 8h-8.586l4.293-4.292a1 1 0 0 0-1.415-1.415L16 7.586l-5.292-5.293a1 1 0 1 0-1.415 1.415L13.586 8H5a2 2 0 0 0-2 2v15a2 2 0 0 0 2 2h22a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2m0 17h-7V10h7zm-2-10.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m0 6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0" }) });
2153
+ };
2154
+ React.forwardRef(SvgTelevision);
2155
+ const SvgThumbDown = ({
2156
+ fill: fillProp = "currentColor",
2157
+ stroke: strokeProp,
2158
+ ...props
2159
+ }, ref) => {
2160
+ const {
2161
+ colors
2162
+ } = styled.useTheme();
2163
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2164
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2165
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m29.978 19.625-1.5-12A3 3 0 0 0 25.5 5H4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h5.383l4.722 9.448A1 1 0 0 0 15 30a5 5 0 0 0 5-5v-2h7a3 3 0 0 0 2.977-3.375M9 18H4V7h5z" }) });
2166
+ };
2167
+ React.forwardRef(SvgThumbDown);
2168
+ const SvgThumbUp = ({
2169
+ fill: fillProp = "currentColor",
2170
+ stroke: strokeProp,
2171
+ ...props
2172
+ }, ref) => {
2173
+ const {
2174
+ colors
2175
+ } = styled.useTheme();
2176
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2177
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2178
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M29.25 10.015A3 3 0 0 0 27 9h-7V7a5 5 0 0 0-5-5 1 1 0 0 0-.895.553L9.383 12H4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h21.5a3 3 0 0 0 2.977-2.625l1.5-12a3 3 0 0 0-.727-2.36M4 14h5v11H4z" }) });
2179
+ };
2180
+ React.forwardRef(SvgThumbUp);
2181
+ const SvgTrain = ({
2182
+ fill: fillProp = "currentColor",
2183
+ stroke: strokeProp,
2184
+ ...props
2185
+ }, ref) => {
2186
+ const {
2187
+ colors
2188
+ } = styled.useTheme();
2189
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2190
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2191
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23 3H9a4 4 0 0 0-4 4v16a4 4 0 0 0 4 4h1l-1.8 2.4a1 1 0 0 0 1.6 1.2l2.7-3.6h7l2.7 3.6a1 1 0 0 0 1.6-1.2L22 27h1a4 4 0 0 0 4-4V7a4 4 0 0 0-4-4M10.5 23a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m4.5-8H7v-5h8zm6.5 8a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m3.5-8h-8v-5h8z" }) });
2192
+ };
2193
+ React.forwardRef(SvgTrain);
2194
+ const SvgTrash = ({
2195
+ fill: fillProp = "currentColor",
2196
+ stroke: strokeProp,
2197
+ ...props
2198
+ }, ref) => {
2199
+ const {
2200
+ colors
2201
+ } = styled.useTheme();
2202
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2203
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2204
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M27 6h-5V5a3 3 0 0 0-3-3h-6a3 3 0 0 0-3 3v1H5a1 1 0 0 0 0 2h1v18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8h1a1 1 0 1 0 0-2M14 21a1 1 0 0 1-2 0v-8a1 1 0 0 1 2 0zm6 0a1 1 0 0 1-2 0v-8a1 1 0 0 1 2 0zm0-15h-8V5a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1z" }) });
2205
+ };
2206
+ React.forwardRef(SvgTrash);
2207
+ const SvgTrendUp = ({
2208
+ fill: fillProp = "currentColor",
2209
+ stroke: strokeProp,
2210
+ ...props
2211
+ }, ref) => {
2212
+ const {
2213
+ colors
2214
+ } = styled.useTheme();
2215
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2216
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2217
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 16", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.583 3.5v4a.75.75 0 1 1-1.5 0V5.313l-4.72 4.72a.75.75 0 0 1-1.062 0l-1.968-1.97-3.97 3.968a.751.751 0 1 1-1.062-1.063l4.5-4.5a.75.75 0 0 1 1.063 0l1.969 1.97 4.188-4.188h-2.188a.75.75 0 1 1 0-1.5h4a.75.75 0 0 1 .75.75" }) });
2218
+ };
2219
+ React.forwardRef(SvgTrendUp);
2220
+ const SvgTyphoon = ({
2221
+ fill: fillProp = "currentColor",
2222
+ stroke: strokeProp,
2223
+ ...props
2224
+ }, ref) => {
2225
+ const {
2226
+ colors
2227
+ } = styled.useTheme();
2228
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2229
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2230
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m23.54 2.267-3.711 3.377c1.7.52 3.298 1.397 4.653 2.631 4.684 4.266 4.684 11.184 0 15.45q-5.184 4.72-16.021 6.008l3.71-3.377a12.2 12.2 0 0 1-4.653-2.63c-4.684-4.267-4.712-11.16 0-15.45q5.184-4.721 16.021-6.01m-7.54 8.4c-3.314 0-6 2.388-6 5.333s2.686 5.333 6 5.333 6-2.387 6-5.333c0-2.945-2.686-5.333-6-5.333" }) });
2231
+ };
2232
+ React.forwardRef(SvgTyphoon);
2233
+ const SvgUnderline = ({
2234
+ fill: fillProp = "currentColor",
2235
+ stroke: strokeProp,
2236
+ ...props
2237
+ }, ref) => {
2238
+ const {
2239
+ colors
2240
+ } = styled.useTheme();
2241
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2242
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2243
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M25.5 28a1.5 1.5 0 0 1-1.5 1.5H8a1.5 1.5 0 1 1 0-3h16a1.5 1.5 0 0 1 1.5 1.5M16 24.5a8.51 8.51 0 0 0 8.5-8.5V7a1.5 1.5 0 1 0-3 0v9a5.5 5.5 0 0 1-11 0V7a1.5 1.5 0 1 0-3 0v9a8.51 8.51 0 0 0 8.5 8.5" }) });
2244
+ };
2245
+ React.forwardRef(SvgUnderline);
2246
+ const SvgUpload = ({
2247
+ fill: fillProp = "currentColor",
2248
+ stroke: strokeProp,
2249
+ ...props
2250
+ }, ref) => {
2251
+ const {
2252
+ colors
2253
+ } = styled.useTheme();
2254
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2255
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2256
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.5 19v7a2.5 2.5 0 0 1-2.5 2.5H6A2.5 2.5 0 0 1 3.5 26v-7a1.5 1.5 0 0 1 3 0v6.5h19V19a1.5 1.5 0 1 1 3 0m-16.439-7.939L14.5 8.625V19a1.5 1.5 0 1 0 3 0V8.625l2.439 2.44a1.503 1.503 0 0 0 2.125-2.125l-5-5a1.5 1.5 0 0 0-2.125 0l-5 5a1.503 1.503 0 1 0 2.125 2.125z" }) });
2257
+ };
2258
+ React.forwardRef(SvgUpload);
2259
+ const SvgUser = ({
2260
+ fill: fillProp = "currentColor",
2261
+ stroke: strokeProp,
2262
+ ...props
2263
+ }, ref) => {
2264
+ const {
2265
+ colors
2266
+ } = styled.useTheme();
2267
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2268
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2269
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M28.866 27.5A1 1 0 0 1 28 28H4a1 1 0 0 1-.865-1.5c1.904-3.291 4.838-5.651 8.261-6.77a9 9 0 1 1 9.208 0c3.424 1.119 6.357 3.479 8.261 6.77a1 1 0 0 1 .001 1" }) });
2270
+ };
2271
+ React.forwardRef(SvgUser);
2272
+ const SvgVolumeMute = ({
2273
+ fill: fillProp = "currentColor",
2274
+ stroke: strokeProp,
2275
+ ...props
2276
+ }, ref) => {
2277
+ const {
2278
+ colors
2279
+ } = styled.useTheme();
2280
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2281
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2282
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.44 3.101a1 1 0 0 0-1.054.11L9.656 10H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h5.656l8.73 6.789A1 1 0 0 0 20 28V4a1 1 0 0 0-.56-.899M28.414 16l2.293-2.292a1.001 1.001 0 0 0-1.415-1.415L27 14.586l-2.293-2.293a1 1 0 1 0-1.415 1.415L25.587 16l-2.293 2.293a1 1 0 0 0 1.415 1.415L27 17.414l2.293 2.294a1 1 0 0 0 1.415-1.415z" }) });
2283
+ };
2284
+ React.forwardRef(SvgVolumeMute);
2285
+ const SvgVolumeUp = ({
2286
+ fill: fillProp = "currentColor",
2287
+ stroke: strokeProp,
2288
+ ...props
2289
+ }, ref) => {
2290
+ const {
2291
+ colors
2292
+ } = styled.useTheme();
2293
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2294
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2295
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.439 3.101a1 1 0 0 0-1.053.11L9.656 10H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h5.656l8.73 6.789A1.001 1.001 0 0 0 20 28V4a1 1 0 0 0-.561-.899M9 20H4v-8h5zm15.75-7.305a5 5 0 0 1 0 6.61 1 1 0 0 1-1.5-1.322 3 3 0 0 0 0-3.966 1 1 0 0 1 1.5-1.322M31 16a10 10 0 0 1-2.546 6.668 1 1 0 0 1-1.49-1.334 8 8 0 0 0 0-10.666.998.998 0 0 1 .407-1.624 1 1 0 0 1 1.083.29A9.98 9.98 0 0 1 31 16" }) });
2296
+ };
2297
+ React.forwardRef(SvgVolumeUp);
2298
+ const SvgWalk = ({
2299
+ fill: fillProp = "currentColor",
2300
+ stroke: strokeProp,
2301
+ ...props
2302
+ }, ref) => {
2303
+ const {
2304
+ colors
2305
+ } = styled.useTheme();
2306
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2307
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2308
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 6a4 4 0 1 1 8 0 4 4 0 0 1-8 0m11 11c-3.58 0-5.226-1.662-6.969-3.421a25 25 0 0 0-1.375-1.323C13.031 8.24 5.63 15.098 5.316 15.391a1 1 0 0 0 1.369 1.458 20.5 20.5 0 0 1 3.815-2.724c1.723-.922 3.174-1.279 4.338-1.072L8.082 28.6a1 1 0 0 0 1.835.798l4.2-9.659L18 22.515V29a1 1 0 1 0 2 0v-7a1 1 0 0 0-.419-.814l-4.65-3.321L16.61 14c.33.305.657.634 1 .98C19.381 16.774 21.586 19 26 19a1 1 0 0 0 0-2" }) });
2309
+ };
2310
+ React.forwardRef(SvgWalk);
2311
+ const SvgWarningCircle = ({
2312
+ fill: fillProp = "currentColor",
2313
+ stroke: strokeProp,
2314
+ ...props
2315
+ }, ref) => {
2316
+ const {
2317
+ colors
2318
+ } = styled.useTheme();
2319
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2320
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2321
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m-1 7a1 1 0 0 1 2 0v7a1 1 0 0 1-2 0zm1 13a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3" }) });
2322
+ };
2323
+ const ForwardRef$2 = React.forwardRef(SvgWarningCircle);
2324
+ const SvgWebhooks = ({
2325
+ fill: fillProp = "currentColor",
2326
+ stroke: strokeProp,
2327
+ ...props
2328
+ }, ref) => {
2329
+ const {
2330
+ colors
2331
+ } = styled.useTheme();
2332
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2333
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2334
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 16", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.468 10 5.9 5.786l-.14-.243a3 3 0 1 1 5.316-2.76.51.51 0 0 1-.2.65.5.5 0 0 1-.71-.233 2 2 0 1 0-3.542 1.84l.864 1.496a.5.5 0 0 1 0 .5L5.2 11a1 1 0 0 1-1.731-1m8.812-2.5h-.771l-2.31-4a1 1 0 0 0-1.731 1l2.165 3.75a.5.5 0 0 0 .432.25h2.227c1.118 0 2.06.915 2.041 2.033a2 2 0 0 1-1.98 1.967.515.515 0 0 0-.518.458.5.5 0 0 0 .5.542 3.003 3.003 0 0 0 3-3.058c-.034-1.643-1.41-2.942-3.052-2.942zm1.053 2.952c-.025-.538-.489-.952-1.027-.952H7.51a.5.5 0 0 0-.433.25l-1.01 1.75a2 2 0 1 1-3.342-2.187.51.51 0 0 0-.058-.688.5.5 0 0 0-.732.073A3 3 0 1 0 6.93 12l.289-.5h5.114a1 1 0 0 0 1-1.048" }) });
2335
+ };
2336
+ React.forwardRef(SvgWebhooks);
2337
+ const SvgWheelchair = ({
2338
+ fill: fillProp = "currentColor",
2339
+ stroke: strokeProp,
2340
+ ...props
2341
+ }, ref) => {
2342
+ const {
2343
+ colors
2344
+ } = styled.useTheme();
2345
+ const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
2346
+ const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
2347
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m31.316 24.949-3 1a1 1 0 0 1-1.211-.5l-3.724-7.45H13a1 1 0 0 1-1-1v-3.707A7 7 0 0 0 14 27c3.239 0 6.261-2.256 7.031-5.25a1 1 0 1 1 1.938.5C21.96 26.162 18.19 29 14 29a9 9 0 0 1-2-17.774V8.851a3.5 3.5 0 1 1 2 0V11h7a1 1 0 0 1 0 2h-7v3h10a1 1 0 0 1 .894.552l3.612 7.225 2.178-.726a1 1 0 1 1 .632 1.898" }) });
2348
+ };
2349
+ React.forwardRef(SvgWheelchair);
2350
+ const PluginIcon = () => /* @__PURE__ */ jsxRuntime.jsx(ForwardRef$1Q, {});
2351
+ const prefixPluginTranslations = (data, pluginId) => {
2352
+ const prefixed = {};
2353
+ Object.keys(data).forEach((key) => {
2354
+ prefixed[`${pluginId}.${key}`] = data[key];
2355
+ });
2356
+ return prefixed;
2357
+ };
2358
+ const index = {
2359
+ /**
2360
+ * Register the plugin and custom field
2361
+ */
2362
+ register(app) {
2363
+ app.registerPlugin({
2364
+ id: PLUGIN_ID,
2365
+ initializer: Initializer,
2366
+ isReady: false,
2367
+ name: PLUGIN_ID
2368
+ });
2369
+ app.customFields.register({
2370
+ name: "richtext",
2371
+ pluginId: PLUGIN_ID,
2372
+ // Must match server-side plugin name
2373
+ type: "text",
2374
+ // Data type - stores JSON as text
2375
+ intlLabel: {
2376
+ id: `${PLUGIN_ID}.richtext.label`,
2377
+ defaultMessage: "Magic Editor X"
2378
+ },
2379
+ intlDescription: {
2380
+ id: `${PLUGIN_ID}.richtext.description`,
2381
+ defaultMessage: "Advanced block-based rich text editor powered by Editor.js"
2382
+ },
2383
+ // Icon must be a React component, not a promise
2384
+ icon: PluginIcon,
2385
+ // Input component for Content Manager
2386
+ components: {
2387
+ Input: async () => Promise.resolve().then(() => require("./index-CQx7-dFP.js")).then((module2) => ({
2388
+ default: module2.default
2389
+ }))
2390
+ },
2391
+ // Options for Content-Type Builder
2392
+ options: {
2393
+ base: [
2394
+ {
2395
+ sectionTitle: {
2396
+ id: `${PLUGIN_ID}.richtext.section.editor`,
2397
+ defaultMessage: "Editor Settings"
2398
+ },
2399
+ items: [
2400
+ {
2401
+ intlLabel: {
2402
+ id: `${PLUGIN_ID}.richtext.placeholder.label`,
2403
+ defaultMessage: "Placeholder"
2404
+ },
2405
+ name: "options.placeholder",
2406
+ type: "text",
2407
+ defaultValue: "Start writing your content...",
2408
+ description: {
2409
+ id: `${PLUGIN_ID}.richtext.placeholder.description`,
2410
+ defaultMessage: "Placeholder text shown when editor is empty"
2411
+ }
2412
+ }
2413
+ ]
2414
+ }
2415
+ ],
2416
+ advanced: [
2417
+ {
2418
+ sectionTitle: {
2419
+ id: `${PLUGIN_ID}.richtext.section.advanced`,
2420
+ defaultMessage: "Advanced Settings"
2421
+ },
2422
+ items: [
2423
+ {
2424
+ intlLabel: {
2425
+ id: `${PLUGIN_ID}.richtext.minHeight.label`,
2426
+ defaultMessage: "Minimum Height"
2427
+ },
2428
+ name: "options.minHeight",
2429
+ type: "number",
2430
+ defaultValue: 300,
2431
+ description: {
2432
+ id: `${PLUGIN_ID}.richtext.minHeight.description`,
2433
+ defaultMessage: "Minimum height of the editor in pixels"
2434
+ }
2435
+ }
2436
+ ]
2437
+ }
2438
+ ]
2439
+ }
2440
+ });
2441
+ app.addMenuLink({
2442
+ to: `plugins/${PLUGIN_ID}`,
2443
+ icon: PluginIcon,
2444
+ intlLabel: {
2445
+ id: `${PLUGIN_ID}.plugin.name`,
2446
+ defaultMessage: "Magic Editor X"
2447
+ },
2448
+ // Use lazy import without async wrapper to avoid deprecation warning
2449
+ Component: () => Promise.resolve().then(() => require("./App-mtrlABtd.js")),
2450
+ permissions: []
2451
+ });
2452
+ app.createSettingSection(
2453
+ {
2454
+ intlLabel: { id: `${PLUGIN_ID}.settings.section`, defaultMessage: "Magic Editor X" },
2455
+ id: PLUGIN_ID,
2456
+ // path relative to /settings
2457
+ to: PLUGIN_ID
2458
+ },
2459
+ [
2460
+ {
2461
+ intlLabel: {
2462
+ id: `${PLUGIN_ID}.settings.upgrade`,
2463
+ defaultMessage: "Upgrade"
2464
+ },
2465
+ id: "upgrade",
2466
+ // relative path (no leading slash)
2467
+ to: `${PLUGIN_ID}/upgrade`,
2468
+ Component: () => Promise.resolve().then(() => require("./LicensePage-BnyWSrWs.js"))
2469
+ },
2470
+ {
2471
+ intlLabel: {
2472
+ id: `${PLUGIN_ID}.settings.license`,
2473
+ defaultMessage: "License Details"
2474
+ },
2475
+ id: "license",
2476
+ // relative path (no leading slash)
2477
+ to: `${PLUGIN_ID}/license`,
2478
+ Component: () => Promise.resolve().then(() => require("./Settings-Bk9bxJTy.js"))
2479
+ }
2480
+ ]
2481
+ );
2482
+ console.log("[Magic Editor X] Custom field registered in admin panel");
2483
+ },
2484
+ /**
2485
+ * Bootstrap the plugin
2486
+ */
2487
+ async bootstrap(app) {
2488
+ const { default: LiveCollaborationPanel } = await Promise.resolve().then(() => require("./LiveCollaborationPanel-DbDHwr2C.js"));
2489
+ try {
2490
+ const contentManagerPlugin = app.getPlugin("content-manager");
2491
+ if (contentManagerPlugin && contentManagerPlugin.apis) {
2492
+ contentManagerPlugin.apis.addEditViewSidePanel([LiveCollaborationPanel]);
2493
+ console.log("[Magic Editor X] [SUCCESS] LiveCollaborationPanel injected into sidebar");
2494
+ }
2495
+ } catch (error) {
2496
+ console.error("[Magic Editor X] Error injecting panel:", error);
2497
+ }
2498
+ console.log("[Magic Editor X] Plugin bootstrapped");
2499
+ },
2500
+ /**
2501
+ * Register translations
2502
+ */
2503
+ async registerTrads({ locales }) {
2504
+ const importedTrads = await Promise.all(
2505
+ locales.map(async (locale) => {
2506
+ try {
2507
+ const { default: data } = await __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "./translations/de.json": () => Promise.resolve().then(() => require("./de-CzSo1oD2.js")), "./translations/en.json": () => Promise.resolve().then(() => require("./en-DxIkVPUh.js")), "./translations/es.json": () => Promise.resolve().then(() => require("./es-DAQ_97zx.js")), "./translations/fr.json": () => Promise.resolve().then(() => require("./fr-ChPabvNP.js")), "./translations/pt.json": () => Promise.resolve().then(() => require("./pt-Cm74LpyZ.js")) }), `./translations/${locale}.json`, 3);
2508
+ return { data: prefixPluginTranslations(data, PLUGIN_ID), locale };
2509
+ } catch {
2510
+ try {
2511
+ const { default: data } = await Promise.resolve().then(() => require("./en-DxIkVPUh.js"));
2512
+ return { data: prefixPluginTranslations(data, PLUGIN_ID), locale };
2513
+ } catch {
2514
+ return { data: {}, locale };
2515
+ }
2516
+ }
2517
+ })
2518
+ );
2519
+ return importedTrads;
2520
+ }
2521
+ };
2522
+ exports.ForwardRef$12 = ForwardRef$12;
2523
+ exports.ForwardRef$1U = ForwardRef$1U;
2524
+ exports.ForwardRef$1b = ForwardRef$1b;
2525
+ exports.ForwardRef$1g = ForwardRef$1g;
2526
+ exports.ForwardRef$1l = ForwardRef$1l;
2527
+ exports.ForwardRef$2 = ForwardRef$2;
2528
+ exports.ForwardRef$26 = ForwardRef$26;
2529
+ exports.ForwardRef$2h = ForwardRef$2h;
2530
+ exports.ForwardRef$2j = ForwardRef$2j;
2531
+ exports.ForwardRef$2k = ForwardRef$2k;
2532
+ exports.ForwardRef$2n = ForwardRef$2n;
2533
+ exports.ForwardRef$2o = ForwardRef$2o;
2534
+ exports.ForwardRef$2v = ForwardRef$2v;
2535
+ exports.ForwardRef$2x = ForwardRef$2x;
2536
+ exports.ForwardRef$o = ForwardRef$o;
2537
+ exports.ForwardRef$v = ForwardRef$v;
2538
+ exports.ForwardRef$y = ForwardRef$y;
2539
+ exports.PLUGIN_ID = PLUGIN_ID;
2540
+ exports.index = index;