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.
- package/LICENSE +21 -0
- package/README.md +890 -0
- package/dist/_chunks/App-B1FgOsWa.mjs +2143 -0
- package/dist/_chunks/App-mtrlABtd.js +2146 -0
- package/dist/_chunks/LicensePage-BnyWSrWs.js +375 -0
- package/dist/_chunks/LicensePage-CWH-AFR-.mjs +373 -0
- package/dist/_chunks/LiveCollaborationPanel-DbDHwr2C.js +222 -0
- package/dist/_chunks/LiveCollaborationPanel-ryjcDAA7.mjs +220 -0
- package/dist/_chunks/Settings-Bk9bxJTy.js +440 -0
- package/dist/_chunks/Settings-D-V2MLVm.mjs +438 -0
- package/dist/_chunks/de-CSrHZWEb.mjs +295 -0
- package/dist/_chunks/de-CzSo1oD2.js +295 -0
- package/dist/_chunks/en-DuQun2v4.mjs +295 -0
- package/dist/_chunks/en-DxIkVPUh.js +295 -0
- package/dist/_chunks/es-DAQ_97zx.js +273 -0
- package/dist/_chunks/es-DEB0CA8S.mjs +273 -0
- package/dist/_chunks/fr-Bqkhvdx2.mjs +273 -0
- package/dist/_chunks/fr-ChPabvNP.js +273 -0
- package/dist/_chunks/getTranslation-C4uWR0DB.mjs +50985 -0
- package/dist/_chunks/getTranslation-D35vbDap.js +51001 -0
- package/dist/_chunks/index-B5MzUyo0.mjs +2541 -0
- package/dist/_chunks/index-BRVqbnOb.mjs +4450 -0
- package/dist/_chunks/index-BiLy_f7C.js +2540 -0
- package/dist/_chunks/index-CQx7-dFP.js +4472 -0
- package/dist/_chunks/pt-BMoYltav.mjs +273 -0
- package/dist/_chunks/pt-Cm74LpyZ.js +273 -0
- package/dist/_chunks/tools-CjnQJ9w2.mjs +2155 -0
- package/dist/_chunks/tools-DNt2tioN.js +2186 -0
- package/dist/admin/index.js +3 -0
- package/dist/admin/index.mjs +4 -0
- package/dist/server/index.js +2554 -0
- package/dist/server/index.mjs +2544 -0
- package/dist/style.css +164 -0
- package/package.json +122 -0
- package/pics/collab-magiceditorX.png +0 -0
- package/pics/editorX.png +0 -0
- package/pics/liveCollabwidget1.png +0 -0
|
@@ -0,0 +1,2541 @@
|
|
|
1
|
+
import { useRef, useEffect, forwardRef } from "react";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { useTheme } from "styled-components";
|
|
4
|
+
const __variableDynamicImportRuntimeHelper = (glob, path, segs) => {
|
|
5
|
+
const v = glob[path];
|
|
6
|
+
if (v) {
|
|
7
|
+
return typeof v === "function" ? v() : Promise.resolve(v);
|
|
8
|
+
}
|
|
9
|
+
return new Promise((_, reject) => {
|
|
10
|
+
(typeof queueMicrotask === "function" ? queueMicrotask : setTimeout)(
|
|
11
|
+
reject.bind(
|
|
12
|
+
null,
|
|
13
|
+
new Error(
|
|
14
|
+
"Unknown variable dynamic import: " + path + (path.split("/").length !== segs ? ". Note that variables only represent file names one level deep." : "")
|
|
15
|
+
)
|
|
16
|
+
)
|
|
17
|
+
);
|
|
18
|
+
});
|
|
19
|
+
};
|
|
20
|
+
const PLUGIN_ID = "magic-editor-x";
|
|
21
|
+
const Initializer = ({ setPlugin }) => {
|
|
22
|
+
const ref = useRef(setPlugin);
|
|
23
|
+
useEffect(() => {
|
|
24
|
+
ref.current(PLUGIN_ID);
|
|
25
|
+
}, []);
|
|
26
|
+
return null;
|
|
27
|
+
};
|
|
28
|
+
const SvgAlien = ({
|
|
29
|
+
fill: fillProp = "currentColor",
|
|
30
|
+
stroke: strokeProp,
|
|
31
|
+
...props
|
|
32
|
+
}, ref) => {
|
|
33
|
+
const {
|
|
34
|
+
colors
|
|
35
|
+
} = useTheme();
|
|
36
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
37
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
38
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
39
|
+
};
|
|
40
|
+
forwardRef(SvgAlien);
|
|
41
|
+
const SvgArchive = ({
|
|
42
|
+
fill: fillProp = "currentColor",
|
|
43
|
+
stroke: strokeProp,
|
|
44
|
+
...props
|
|
45
|
+
}, ref) => {
|
|
46
|
+
const {
|
|
47
|
+
colors
|
|
48
|
+
} = useTheme();
|
|
49
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
50
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
51
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
52
|
+
};
|
|
53
|
+
forwardRef(SvgArchive);
|
|
54
|
+
const SvgArrowClockwise = ({
|
|
55
|
+
fill: fillProp = "currentColor",
|
|
56
|
+
stroke: strokeProp,
|
|
57
|
+
...props
|
|
58
|
+
}, ref) => {
|
|
59
|
+
const {
|
|
60
|
+
colors
|
|
61
|
+
} = useTheme();
|
|
62
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
63
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
64
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
65
|
+
};
|
|
66
|
+
forwardRef(SvgArrowClockwise);
|
|
67
|
+
const SvgArrowDown = ({
|
|
68
|
+
fill: fillProp = "currentColor",
|
|
69
|
+
stroke: strokeProp,
|
|
70
|
+
...props
|
|
71
|
+
}, ref) => {
|
|
72
|
+
const {
|
|
73
|
+
colors
|
|
74
|
+
} = useTheme();
|
|
75
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
76
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
77
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
78
|
+
};
|
|
79
|
+
forwardRef(SvgArrowDown);
|
|
80
|
+
const SvgArrowLeft = ({
|
|
81
|
+
fill: fillProp = "currentColor",
|
|
82
|
+
stroke: strokeProp,
|
|
83
|
+
...props
|
|
84
|
+
}, ref) => {
|
|
85
|
+
const {
|
|
86
|
+
colors
|
|
87
|
+
} = useTheme();
|
|
88
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
89
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
90
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
91
|
+
};
|
|
92
|
+
forwardRef(SvgArrowLeft);
|
|
93
|
+
const SvgArrowLineLeft = ({
|
|
94
|
+
fill: fillProp = "currentColor",
|
|
95
|
+
stroke: strokeProp,
|
|
96
|
+
...props
|
|
97
|
+
}, ref) => {
|
|
98
|
+
const {
|
|
99
|
+
colors
|
|
100
|
+
} = useTheme();
|
|
101
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
102
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
103
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, fill, viewBox: "0 0 16 16", stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
104
|
+
};
|
|
105
|
+
forwardRef(SvgArrowLineLeft);
|
|
106
|
+
const SvgArrowLineRight = ({
|
|
107
|
+
fill: fillProp = "currentColor",
|
|
108
|
+
stroke: strokeProp,
|
|
109
|
+
...props
|
|
110
|
+
}, ref) => {
|
|
111
|
+
const {
|
|
112
|
+
colors
|
|
113
|
+
} = useTheme();
|
|
114
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
115
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
116
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, fill, viewBox: "0 0 16 16", stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
117
|
+
};
|
|
118
|
+
forwardRef(SvgArrowLineRight);
|
|
119
|
+
const SvgArrowRight = ({
|
|
120
|
+
fill: fillProp = "currentColor",
|
|
121
|
+
stroke: strokeProp,
|
|
122
|
+
...props
|
|
123
|
+
}, ref) => {
|
|
124
|
+
const {
|
|
125
|
+
colors
|
|
126
|
+
} = useTheme();
|
|
127
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
128
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
129
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
130
|
+
};
|
|
131
|
+
forwardRef(SvgArrowRight);
|
|
132
|
+
const SvgArrowUp = ({
|
|
133
|
+
fill: fillProp = "currentColor",
|
|
134
|
+
stroke: strokeProp,
|
|
135
|
+
...props
|
|
136
|
+
}, ref) => {
|
|
137
|
+
const {
|
|
138
|
+
colors
|
|
139
|
+
} = useTheme();
|
|
140
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
141
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
142
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
143
|
+
};
|
|
144
|
+
forwardRef(SvgArrowUp);
|
|
145
|
+
const SvgArrowsCounterClockwise = ({
|
|
146
|
+
fill: fillProp = "currentColor",
|
|
147
|
+
stroke: strokeProp,
|
|
148
|
+
...props
|
|
149
|
+
}, ref) => {
|
|
150
|
+
const {
|
|
151
|
+
colors
|
|
152
|
+
} = useTheme();
|
|
153
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
154
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
155
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
156
|
+
};
|
|
157
|
+
forwardRef(SvgArrowsCounterClockwise);
|
|
158
|
+
const SvgArrowsOut = ({
|
|
159
|
+
fill: fillProp = "currentColor",
|
|
160
|
+
stroke: strokeProp,
|
|
161
|
+
...props
|
|
162
|
+
}, ref) => {
|
|
163
|
+
const {
|
|
164
|
+
colors
|
|
165
|
+
} = useTheme();
|
|
166
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
167
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
168
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
169
|
+
};
|
|
170
|
+
forwardRef(SvgArrowsOut);
|
|
171
|
+
const SvgBell = ({
|
|
172
|
+
fill: fillProp = "currentColor",
|
|
173
|
+
stroke: strokeProp,
|
|
174
|
+
...props
|
|
175
|
+
}, ref) => {
|
|
176
|
+
const {
|
|
177
|
+
colors
|
|
178
|
+
} = useTheme();
|
|
179
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
180
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
181
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
182
|
+
};
|
|
183
|
+
forwardRef(SvgBell);
|
|
184
|
+
const SvgBold = ({
|
|
185
|
+
fill: fillProp = "currentColor",
|
|
186
|
+
stroke: strokeProp,
|
|
187
|
+
...props
|
|
188
|
+
}, ref) => {
|
|
189
|
+
const {
|
|
190
|
+
colors
|
|
191
|
+
} = useTheme();
|
|
192
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
193
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
194
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
195
|
+
};
|
|
196
|
+
forwardRef(SvgBold);
|
|
197
|
+
const SvgBook = ({
|
|
198
|
+
fill: fillProp = "currentColor",
|
|
199
|
+
stroke: strokeProp,
|
|
200
|
+
...props
|
|
201
|
+
}, ref) => {
|
|
202
|
+
const {
|
|
203
|
+
colors
|
|
204
|
+
} = useTheme();
|
|
205
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
206
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
207
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
208
|
+
};
|
|
209
|
+
forwardRef(SvgBook);
|
|
210
|
+
const SvgBriefcase = ({
|
|
211
|
+
fill: fillProp = "currentColor",
|
|
212
|
+
stroke: strokeProp,
|
|
213
|
+
...props
|
|
214
|
+
}, ref) => {
|
|
215
|
+
const {
|
|
216
|
+
colors
|
|
217
|
+
} = useTheme();
|
|
218
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
219
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
220
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
221
|
+
};
|
|
222
|
+
forwardRef(SvgBriefcase);
|
|
223
|
+
const SvgBulletList = ({
|
|
224
|
+
fill: fillProp = "currentColor",
|
|
225
|
+
stroke: strokeProp,
|
|
226
|
+
...props
|
|
227
|
+
}, ref) => {
|
|
228
|
+
const {
|
|
229
|
+
colors
|
|
230
|
+
} = useTheme();
|
|
231
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
232
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
233
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
234
|
+
};
|
|
235
|
+
forwardRef(SvgBulletList);
|
|
236
|
+
const SvgCalendar = ({
|
|
237
|
+
fill: fillProp = "currentColor",
|
|
238
|
+
stroke: strokeProp,
|
|
239
|
+
...props
|
|
240
|
+
}, ref) => {
|
|
241
|
+
const {
|
|
242
|
+
colors
|
|
243
|
+
} = useTheme();
|
|
244
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
245
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
246
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
247
|
+
};
|
|
248
|
+
const ForwardRef$2x = forwardRef(SvgCalendar);
|
|
249
|
+
const SvgCar = ({
|
|
250
|
+
fill: fillProp = "currentColor",
|
|
251
|
+
stroke: strokeProp,
|
|
252
|
+
...props
|
|
253
|
+
}, ref) => {
|
|
254
|
+
const {
|
|
255
|
+
colors
|
|
256
|
+
} = useTheme();
|
|
257
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
258
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
259
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
260
|
+
};
|
|
261
|
+
forwardRef(SvgCar);
|
|
262
|
+
const SvgCaretDown = ({
|
|
263
|
+
fill: fillProp = "currentColor",
|
|
264
|
+
stroke: strokeProp,
|
|
265
|
+
...props
|
|
266
|
+
}, ref) => {
|
|
267
|
+
const {
|
|
268
|
+
colors
|
|
269
|
+
} = useTheme();
|
|
270
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
271
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
272
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
273
|
+
};
|
|
274
|
+
const ForwardRef$2v = forwardRef(SvgCaretDown);
|
|
275
|
+
const SvgCaretUp = ({
|
|
276
|
+
fill: fillProp = "currentColor",
|
|
277
|
+
stroke: strokeProp,
|
|
278
|
+
...props
|
|
279
|
+
}, ref) => {
|
|
280
|
+
const {
|
|
281
|
+
colors
|
|
282
|
+
} = useTheme();
|
|
283
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
284
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
285
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
286
|
+
};
|
|
287
|
+
forwardRef(SvgCaretUp);
|
|
288
|
+
const SvgCast = ({
|
|
289
|
+
fill: fillProp = "currentColor",
|
|
290
|
+
stroke: strokeProp,
|
|
291
|
+
...props
|
|
292
|
+
}, ref) => {
|
|
293
|
+
const {
|
|
294
|
+
colors
|
|
295
|
+
} = useTheme();
|
|
296
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
297
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
298
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
299
|
+
};
|
|
300
|
+
forwardRef(SvgCast);
|
|
301
|
+
const SvgCastleTurret = ({
|
|
302
|
+
fill: fillProp = "currentColor",
|
|
303
|
+
stroke: strokeProp,
|
|
304
|
+
...props
|
|
305
|
+
}, ref) => {
|
|
306
|
+
const {
|
|
307
|
+
colors
|
|
308
|
+
} = useTheme();
|
|
309
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
310
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
311
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
312
|
+
};
|
|
313
|
+
forwardRef(SvgCastleTurret);
|
|
314
|
+
const SvgChartBubble = ({
|
|
315
|
+
fill: fillProp = "currentColor",
|
|
316
|
+
stroke: strokeProp,
|
|
317
|
+
...props
|
|
318
|
+
}, ref) => {
|
|
319
|
+
const {
|
|
320
|
+
colors
|
|
321
|
+
} = useTheme();
|
|
322
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
323
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
324
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
325
|
+
};
|
|
326
|
+
forwardRef(SvgChartBubble);
|
|
327
|
+
const SvgChartCircle = ({
|
|
328
|
+
fill: fillProp = "currentColor",
|
|
329
|
+
stroke: strokeProp,
|
|
330
|
+
...props
|
|
331
|
+
}, ref) => {
|
|
332
|
+
const {
|
|
333
|
+
colors
|
|
334
|
+
} = useTheme();
|
|
335
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
336
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
337
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
338
|
+
};
|
|
339
|
+
forwardRef(SvgChartCircle);
|
|
340
|
+
const SvgChartPie = ({
|
|
341
|
+
fill: fillProp = "currentColor",
|
|
342
|
+
stroke: strokeProp,
|
|
343
|
+
...props
|
|
344
|
+
}, ref) => {
|
|
345
|
+
const {
|
|
346
|
+
colors
|
|
347
|
+
} = useTheme();
|
|
348
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
349
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
350
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
351
|
+
};
|
|
352
|
+
forwardRef(SvgChartPie);
|
|
353
|
+
const SvgCheck = ({
|
|
354
|
+
fill: fillProp = "currentColor",
|
|
355
|
+
stroke: strokeProp,
|
|
356
|
+
...props
|
|
357
|
+
}, ref) => {
|
|
358
|
+
const {
|
|
359
|
+
colors
|
|
360
|
+
} = useTheme();
|
|
361
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
362
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
363
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
364
|
+
};
|
|
365
|
+
const ForwardRef$2o = forwardRef(SvgCheck);
|
|
366
|
+
const SvgCheckCircle = ({
|
|
367
|
+
fill: fillProp = "currentColor",
|
|
368
|
+
stroke: strokeProp,
|
|
369
|
+
...props
|
|
370
|
+
}, ref) => {
|
|
371
|
+
const {
|
|
372
|
+
colors
|
|
373
|
+
} = useTheme();
|
|
374
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
375
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
376
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
377
|
+
};
|
|
378
|
+
const ForwardRef$2n = forwardRef(SvgCheckCircle);
|
|
379
|
+
const SvgCheckCircleEmpty = ({
|
|
380
|
+
fill: fillProp = "currentColor",
|
|
381
|
+
stroke: strokeProp,
|
|
382
|
+
...props
|
|
383
|
+
}, ref) => {
|
|
384
|
+
const {
|
|
385
|
+
colors
|
|
386
|
+
} = useTheme();
|
|
387
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
388
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
389
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
390
|
+
};
|
|
391
|
+
forwardRef(SvgCheckCircleEmpty);
|
|
392
|
+
const SvgChevronDown = ({
|
|
393
|
+
fill: fillProp = "currentColor",
|
|
394
|
+
stroke: strokeProp,
|
|
395
|
+
...props
|
|
396
|
+
}, ref) => {
|
|
397
|
+
const {
|
|
398
|
+
colors
|
|
399
|
+
} = useTheme();
|
|
400
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
401
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
402
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
403
|
+
};
|
|
404
|
+
forwardRef(SvgChevronDown);
|
|
405
|
+
const SvgChevronLeft = ({
|
|
406
|
+
fill: fillProp = "currentColor",
|
|
407
|
+
stroke: strokeProp,
|
|
408
|
+
...props
|
|
409
|
+
}, ref) => {
|
|
410
|
+
const {
|
|
411
|
+
colors
|
|
412
|
+
} = useTheme();
|
|
413
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
414
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
415
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
416
|
+
};
|
|
417
|
+
const ForwardRef$2k = forwardRef(SvgChevronLeft);
|
|
418
|
+
const SvgChevronRight = ({
|
|
419
|
+
fill: fillProp = "currentColor",
|
|
420
|
+
stroke: strokeProp,
|
|
421
|
+
...props
|
|
422
|
+
}, ref) => {
|
|
423
|
+
const {
|
|
424
|
+
colors
|
|
425
|
+
} = useTheme();
|
|
426
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
427
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
428
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
429
|
+
};
|
|
430
|
+
const ForwardRef$2j = forwardRef(SvgChevronRight);
|
|
431
|
+
const SvgChevronUp = ({
|
|
432
|
+
fill: fillProp = "currentColor",
|
|
433
|
+
stroke: strokeProp,
|
|
434
|
+
...props
|
|
435
|
+
}, ref) => {
|
|
436
|
+
const {
|
|
437
|
+
colors
|
|
438
|
+
} = useTheme();
|
|
439
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
440
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
441
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
442
|
+
};
|
|
443
|
+
forwardRef(SvgChevronUp);
|
|
444
|
+
const SvgClock = ({
|
|
445
|
+
fill: fillProp = "currentColor",
|
|
446
|
+
stroke: strokeProp,
|
|
447
|
+
...props
|
|
448
|
+
}, ref) => {
|
|
449
|
+
const {
|
|
450
|
+
colors
|
|
451
|
+
} = useTheme();
|
|
452
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
453
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
454
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
455
|
+
};
|
|
456
|
+
const ForwardRef$2h = forwardRef(SvgClock);
|
|
457
|
+
const SvgClockCounterClockwise = ({
|
|
458
|
+
fill: fillProp = "currentColor",
|
|
459
|
+
stroke: strokeProp,
|
|
460
|
+
...props
|
|
461
|
+
}, ref) => {
|
|
462
|
+
const {
|
|
463
|
+
colors
|
|
464
|
+
} = useTheme();
|
|
465
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
466
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
467
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
468
|
+
};
|
|
469
|
+
forwardRef(SvgClockCounterClockwise);
|
|
470
|
+
const SvgCloud = ({
|
|
471
|
+
fill: fillProp = "currentColor",
|
|
472
|
+
stroke: strokeProp,
|
|
473
|
+
...props
|
|
474
|
+
}, ref) => {
|
|
475
|
+
const {
|
|
476
|
+
colors
|
|
477
|
+
} = useTheme();
|
|
478
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
479
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
480
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
481
|
+
};
|
|
482
|
+
forwardRef(SvgCloud);
|
|
483
|
+
const SvgCloudUpload = ({
|
|
484
|
+
fill: fillProp = "currentColor",
|
|
485
|
+
stroke: strokeProp,
|
|
486
|
+
...props
|
|
487
|
+
}, ref) => {
|
|
488
|
+
const {
|
|
489
|
+
colors
|
|
490
|
+
} = useTheme();
|
|
491
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
492
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
493
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
494
|
+
};
|
|
495
|
+
forwardRef(SvgCloudUpload);
|
|
496
|
+
const SvgCode = ({
|
|
497
|
+
fill: fillProp = "currentColor",
|
|
498
|
+
stroke: strokeProp,
|
|
499
|
+
...props
|
|
500
|
+
}, ref) => {
|
|
501
|
+
const {
|
|
502
|
+
colors
|
|
503
|
+
} = useTheme();
|
|
504
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
505
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
506
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
507
|
+
};
|
|
508
|
+
forwardRef(SvgCode);
|
|
509
|
+
const SvgCodeBlock = ({
|
|
510
|
+
fill: fillProp = "currentColor",
|
|
511
|
+
stroke: strokeProp,
|
|
512
|
+
...props
|
|
513
|
+
}, ref) => {
|
|
514
|
+
const {
|
|
515
|
+
colors
|
|
516
|
+
} = useTheme();
|
|
517
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
518
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
519
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
520
|
+
};
|
|
521
|
+
forwardRef(SvgCodeBlock);
|
|
522
|
+
const SvgCoffee = ({
|
|
523
|
+
fill: fillProp = "currentColor",
|
|
524
|
+
stroke: strokeProp,
|
|
525
|
+
...props
|
|
526
|
+
}, ref) => {
|
|
527
|
+
const {
|
|
528
|
+
colors
|
|
529
|
+
} = useTheme();
|
|
530
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
531
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
532
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
533
|
+
};
|
|
534
|
+
forwardRef(SvgCoffee);
|
|
535
|
+
const SvgCog = ({
|
|
536
|
+
fill: fillProp = "currentColor",
|
|
537
|
+
stroke: strokeProp,
|
|
538
|
+
...props
|
|
539
|
+
}, ref) => {
|
|
540
|
+
const {
|
|
541
|
+
colors
|
|
542
|
+
} = useTheme();
|
|
543
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
544
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
545
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
546
|
+
};
|
|
547
|
+
forwardRef(SvgCog);
|
|
548
|
+
const SvgCollapse = ({
|
|
549
|
+
fill: fillProp = "currentColor",
|
|
550
|
+
stroke: strokeProp,
|
|
551
|
+
...props
|
|
552
|
+
}, ref) => {
|
|
553
|
+
const {
|
|
554
|
+
colors
|
|
555
|
+
} = useTheme();
|
|
556
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
557
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
558
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
559
|
+
};
|
|
560
|
+
forwardRef(SvgCollapse);
|
|
561
|
+
const SvgCommand = ({
|
|
562
|
+
fill: fillProp = "currentColor",
|
|
563
|
+
stroke: strokeProp,
|
|
564
|
+
...props
|
|
565
|
+
}, ref) => {
|
|
566
|
+
const {
|
|
567
|
+
colors
|
|
568
|
+
} = useTheme();
|
|
569
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
570
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
571
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
572
|
+
};
|
|
573
|
+
forwardRef(SvgCommand);
|
|
574
|
+
const SvgCrop = ({
|
|
575
|
+
fill: fillProp = "currentColor",
|
|
576
|
+
stroke: strokeProp,
|
|
577
|
+
...props
|
|
578
|
+
}, ref) => {
|
|
579
|
+
const {
|
|
580
|
+
colors
|
|
581
|
+
} = useTheme();
|
|
582
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
583
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
584
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
585
|
+
};
|
|
586
|
+
forwardRef(SvgCrop);
|
|
587
|
+
const SvgCross = ({
|
|
588
|
+
fill: fillProp = "currentColor",
|
|
589
|
+
stroke: strokeProp,
|
|
590
|
+
...props
|
|
591
|
+
}, ref) => {
|
|
592
|
+
const {
|
|
593
|
+
colors
|
|
594
|
+
} = useTheme();
|
|
595
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
596
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
597
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
598
|
+
};
|
|
599
|
+
const ForwardRef$26 = forwardRef(SvgCross);
|
|
600
|
+
const SvgCrossCircle = ({
|
|
601
|
+
fill: fillProp = "currentColor",
|
|
602
|
+
stroke: strokeProp,
|
|
603
|
+
...props
|
|
604
|
+
}, ref) => {
|
|
605
|
+
const {
|
|
606
|
+
colors
|
|
607
|
+
} = useTheme();
|
|
608
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
609
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
610
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
611
|
+
};
|
|
612
|
+
forwardRef(SvgCrossCircle);
|
|
613
|
+
const SvgCrown = ({
|
|
614
|
+
fill: fillProp = "currentColor",
|
|
615
|
+
stroke: strokeProp,
|
|
616
|
+
...props
|
|
617
|
+
}, ref) => {
|
|
618
|
+
const {
|
|
619
|
+
colors
|
|
620
|
+
} = useTheme();
|
|
621
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
622
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
623
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
624
|
+
};
|
|
625
|
+
forwardRef(SvgCrown);
|
|
626
|
+
const SvgCursor = ({
|
|
627
|
+
fill: fillProp = "currentColor",
|
|
628
|
+
stroke: strokeProp,
|
|
629
|
+
...props
|
|
630
|
+
}, ref) => {
|
|
631
|
+
const {
|
|
632
|
+
colors
|
|
633
|
+
} = useTheme();
|
|
634
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
635
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
636
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
637
|
+
};
|
|
638
|
+
forwardRef(SvgCursor);
|
|
639
|
+
const SvgDatabase = ({
|
|
640
|
+
fill: fillProp = "currentColor",
|
|
641
|
+
stroke: strokeProp,
|
|
642
|
+
...props
|
|
643
|
+
}, ref) => {
|
|
644
|
+
const {
|
|
645
|
+
colors
|
|
646
|
+
} = useTheme();
|
|
647
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
648
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
649
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
650
|
+
};
|
|
651
|
+
forwardRef(SvgDatabase);
|
|
652
|
+
const SvgDiscuss = ({
|
|
653
|
+
fill: fillProp = "currentColor",
|
|
654
|
+
stroke: strokeProp,
|
|
655
|
+
...props
|
|
656
|
+
}, ref) => {
|
|
657
|
+
const {
|
|
658
|
+
colors
|
|
659
|
+
} = useTheme();
|
|
660
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
661
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
662
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
663
|
+
};
|
|
664
|
+
forwardRef(SvgDiscuss);
|
|
665
|
+
const SvgDownload = ({
|
|
666
|
+
fill: fillProp = "currentColor",
|
|
667
|
+
stroke: strokeProp,
|
|
668
|
+
...props
|
|
669
|
+
}, ref) => {
|
|
670
|
+
const {
|
|
671
|
+
colors
|
|
672
|
+
} = useTheme();
|
|
673
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
674
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
675
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
676
|
+
};
|
|
677
|
+
forwardRef(SvgDownload);
|
|
678
|
+
const SvgDrag = ({
|
|
679
|
+
fill: fillProp = "currentColor",
|
|
680
|
+
stroke: strokeProp,
|
|
681
|
+
...props
|
|
682
|
+
}, ref) => {
|
|
683
|
+
const {
|
|
684
|
+
colors
|
|
685
|
+
} = useTheme();
|
|
686
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
687
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
688
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
689
|
+
};
|
|
690
|
+
forwardRef(SvgDrag);
|
|
691
|
+
const SvgDuplicate = ({
|
|
692
|
+
fill: fillProp = "currentColor",
|
|
693
|
+
stroke: strokeProp,
|
|
694
|
+
...props
|
|
695
|
+
}, ref) => {
|
|
696
|
+
const {
|
|
697
|
+
colors
|
|
698
|
+
} = useTheme();
|
|
699
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
700
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
701
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
702
|
+
};
|
|
703
|
+
forwardRef(SvgDuplicate);
|
|
704
|
+
const SvgEarth = ({
|
|
705
|
+
fill: fillProp = "currentColor",
|
|
706
|
+
stroke: strokeProp,
|
|
707
|
+
...props
|
|
708
|
+
}, ref) => {
|
|
709
|
+
const {
|
|
710
|
+
colors
|
|
711
|
+
} = useTheme();
|
|
712
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
713
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
714
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
715
|
+
};
|
|
716
|
+
forwardRef(SvgEarth);
|
|
717
|
+
const SvgEarthStriked = ({
|
|
718
|
+
fill: fillProp = "currentColor",
|
|
719
|
+
stroke: strokeProp,
|
|
720
|
+
...props
|
|
721
|
+
}, ref) => {
|
|
722
|
+
const {
|
|
723
|
+
colors
|
|
724
|
+
} = useTheme();
|
|
725
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
726
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
727
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: [
|
|
728
|
+
/* @__PURE__ */ 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" }),
|
|
729
|
+
/* @__PURE__ */ 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" })
|
|
730
|
+
] });
|
|
731
|
+
};
|
|
732
|
+
forwardRef(SvgEarthStriked);
|
|
733
|
+
const SvgEmotionHappy = ({
|
|
734
|
+
fill: fillProp = "currentColor",
|
|
735
|
+
stroke: strokeProp,
|
|
736
|
+
...props
|
|
737
|
+
}, ref) => {
|
|
738
|
+
const {
|
|
739
|
+
colors
|
|
740
|
+
} = useTheme();
|
|
741
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
742
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
743
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
744
|
+
};
|
|
745
|
+
forwardRef(SvgEmotionHappy);
|
|
746
|
+
const SvgEmotionUnhappy = ({
|
|
747
|
+
fill: fillProp = "currentColor",
|
|
748
|
+
stroke: strokeProp,
|
|
749
|
+
...props
|
|
750
|
+
}, ref) => {
|
|
751
|
+
const {
|
|
752
|
+
colors
|
|
753
|
+
} = useTheme();
|
|
754
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
755
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
756
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
757
|
+
};
|
|
758
|
+
forwardRef(SvgEmotionUnhappy);
|
|
759
|
+
const SvgExpand = ({
|
|
760
|
+
fill: fillProp = "currentColor",
|
|
761
|
+
stroke: strokeProp,
|
|
762
|
+
...props
|
|
763
|
+
}, ref) => {
|
|
764
|
+
const {
|
|
765
|
+
colors
|
|
766
|
+
} = useTheme();
|
|
767
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
768
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
769
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
770
|
+
};
|
|
771
|
+
forwardRef(SvgExpand);
|
|
772
|
+
const SvgExternalLink = ({
|
|
773
|
+
fill: fillProp = "currentColor",
|
|
774
|
+
stroke: strokeProp,
|
|
775
|
+
...props
|
|
776
|
+
}, ref) => {
|
|
777
|
+
const {
|
|
778
|
+
colors
|
|
779
|
+
} = useTheme();
|
|
780
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
781
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
782
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
783
|
+
};
|
|
784
|
+
const ForwardRef$1U = forwardRef(SvgExternalLink);
|
|
785
|
+
const SvgEye = ({
|
|
786
|
+
fill: fillProp = "currentColor",
|
|
787
|
+
stroke: strokeProp,
|
|
788
|
+
...props
|
|
789
|
+
}, ref) => {
|
|
790
|
+
const {
|
|
791
|
+
colors
|
|
792
|
+
} = useTheme();
|
|
793
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
794
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
795
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
796
|
+
};
|
|
797
|
+
forwardRef(SvgEye);
|
|
798
|
+
const SvgEyeStriked = ({
|
|
799
|
+
fill: fillProp = "currentColor",
|
|
800
|
+
stroke: strokeProp,
|
|
801
|
+
...props
|
|
802
|
+
}, ref) => {
|
|
803
|
+
const {
|
|
804
|
+
colors
|
|
805
|
+
} = useTheme();
|
|
806
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
807
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
808
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
809
|
+
};
|
|
810
|
+
forwardRef(SvgEyeStriked);
|
|
811
|
+
const SvgFaders = ({
|
|
812
|
+
fill: fillProp = "currentColor",
|
|
813
|
+
stroke: strokeProp,
|
|
814
|
+
...props
|
|
815
|
+
}, ref) => {
|
|
816
|
+
const {
|
|
817
|
+
colors
|
|
818
|
+
} = useTheme();
|
|
819
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
820
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
821
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
822
|
+
};
|
|
823
|
+
forwardRef(SvgFaders);
|
|
824
|
+
const SvgFeather = ({
|
|
825
|
+
fill: fillProp = "currentColor",
|
|
826
|
+
stroke: strokeProp,
|
|
827
|
+
...props
|
|
828
|
+
}, ref) => {
|
|
829
|
+
const {
|
|
830
|
+
colors
|
|
831
|
+
} = useTheme();
|
|
832
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
833
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
834
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
835
|
+
};
|
|
836
|
+
const ForwardRef$1Q = forwardRef(SvgFeather);
|
|
837
|
+
const SvgFile = ({
|
|
838
|
+
fill: fillProp = "currentColor",
|
|
839
|
+
stroke: strokeProp,
|
|
840
|
+
...props
|
|
841
|
+
}, ref) => {
|
|
842
|
+
const {
|
|
843
|
+
colors
|
|
844
|
+
} = useTheme();
|
|
845
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
846
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
847
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
848
|
+
};
|
|
849
|
+
forwardRef(SvgFile);
|
|
850
|
+
const SvgFileCsv = ({
|
|
851
|
+
fill: fillProp = "currentColor",
|
|
852
|
+
stroke: strokeProp,
|
|
853
|
+
...props
|
|
854
|
+
}, ref) => {
|
|
855
|
+
const {
|
|
856
|
+
colors
|
|
857
|
+
} = useTheme();
|
|
858
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
859
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
860
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
861
|
+
};
|
|
862
|
+
forwardRef(SvgFileCsv);
|
|
863
|
+
const SvgFileError = ({
|
|
864
|
+
fill: fillProp = "currentColor",
|
|
865
|
+
stroke: strokeProp,
|
|
866
|
+
...props
|
|
867
|
+
}, ref) => {
|
|
868
|
+
const {
|
|
869
|
+
colors
|
|
870
|
+
} = useTheme();
|
|
871
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
872
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
873
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
874
|
+
};
|
|
875
|
+
forwardRef(SvgFileError);
|
|
876
|
+
const SvgFilePdf = ({
|
|
877
|
+
fill: fillProp = "currentColor",
|
|
878
|
+
stroke: strokeProp,
|
|
879
|
+
...props
|
|
880
|
+
}, ref) => {
|
|
881
|
+
const {
|
|
882
|
+
colors
|
|
883
|
+
} = useTheme();
|
|
884
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
885
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
886
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
887
|
+
};
|
|
888
|
+
forwardRef(SvgFilePdf);
|
|
889
|
+
const SvgFileXls = ({
|
|
890
|
+
fill: fillProp = "currentColor",
|
|
891
|
+
stroke: strokeProp,
|
|
892
|
+
...props
|
|
893
|
+
}, ref) => {
|
|
894
|
+
const {
|
|
895
|
+
colors
|
|
896
|
+
} = useTheme();
|
|
897
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
898
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
899
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
900
|
+
};
|
|
901
|
+
forwardRef(SvgFileXls);
|
|
902
|
+
const SvgFileZip = ({
|
|
903
|
+
fill: fillProp = "currentColor",
|
|
904
|
+
stroke: strokeProp,
|
|
905
|
+
...props
|
|
906
|
+
}, ref) => {
|
|
907
|
+
const {
|
|
908
|
+
colors
|
|
909
|
+
} = useTheme();
|
|
910
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
911
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
912
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
913
|
+
};
|
|
914
|
+
forwardRef(SvgFileZip);
|
|
915
|
+
const SvgFiles = ({
|
|
916
|
+
fill: fillProp = "currentColor",
|
|
917
|
+
stroke: strokeProp,
|
|
918
|
+
...props
|
|
919
|
+
}, ref) => {
|
|
920
|
+
const {
|
|
921
|
+
colors
|
|
922
|
+
} = useTheme();
|
|
923
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
924
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
925
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 16", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
926
|
+
};
|
|
927
|
+
forwardRef(SvgFiles);
|
|
928
|
+
const SvgFilter = ({
|
|
929
|
+
fill: fillProp = "currentColor",
|
|
930
|
+
stroke: strokeProp,
|
|
931
|
+
...props
|
|
932
|
+
}, ref) => {
|
|
933
|
+
const {
|
|
934
|
+
colors
|
|
935
|
+
} = useTheme();
|
|
936
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
937
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
938
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
939
|
+
};
|
|
940
|
+
forwardRef(SvgFilter);
|
|
941
|
+
const SvgFolder = ({
|
|
942
|
+
fill: fillProp = "currentColor",
|
|
943
|
+
stroke: strokeProp,
|
|
944
|
+
...props
|
|
945
|
+
}, ref) => {
|
|
946
|
+
const {
|
|
947
|
+
colors
|
|
948
|
+
} = useTheme();
|
|
949
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
950
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
951
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
952
|
+
};
|
|
953
|
+
forwardRef(SvgFolder);
|
|
954
|
+
const SvgGift = ({
|
|
955
|
+
fill: fillProp = "currentColor",
|
|
956
|
+
stroke: strokeProp,
|
|
957
|
+
...props
|
|
958
|
+
}, ref) => {
|
|
959
|
+
const {
|
|
960
|
+
colors
|
|
961
|
+
} = useTheme();
|
|
962
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
963
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
964
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
965
|
+
};
|
|
966
|
+
forwardRef(SvgGift);
|
|
967
|
+
const SvgGlobe = ({
|
|
968
|
+
fill: fillProp = "currentColor",
|
|
969
|
+
stroke: strokeProp,
|
|
970
|
+
...props
|
|
971
|
+
}, ref) => {
|
|
972
|
+
const {
|
|
973
|
+
colors
|
|
974
|
+
} = useTheme();
|
|
975
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
976
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
977
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
978
|
+
};
|
|
979
|
+
forwardRef(SvgGlobe);
|
|
980
|
+
const SvgGraph = ({
|
|
981
|
+
fill: fillProp = "currentColor",
|
|
982
|
+
stroke: strokeProp,
|
|
983
|
+
...props
|
|
984
|
+
}, ref) => {
|
|
985
|
+
const {
|
|
986
|
+
colors
|
|
987
|
+
} = useTheme();
|
|
988
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
989
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
990
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 16", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
991
|
+
};
|
|
992
|
+
forwardRef(SvgGraph);
|
|
993
|
+
const SvgGraphQl = ({
|
|
994
|
+
fill: fillProp = "currentColor",
|
|
995
|
+
stroke: strokeProp,
|
|
996
|
+
...props
|
|
997
|
+
}, ref) => {
|
|
998
|
+
const {
|
|
999
|
+
colors
|
|
1000
|
+
} = useTheme();
|
|
1001
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1002
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1003
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1004
|
+
};
|
|
1005
|
+
forwardRef(SvgGraphQl);
|
|
1006
|
+
const SvgGridFour = ({
|
|
1007
|
+
fill: fillProp = "currentColor",
|
|
1008
|
+
stroke: strokeProp,
|
|
1009
|
+
...props
|
|
1010
|
+
}, ref) => {
|
|
1011
|
+
const {
|
|
1012
|
+
colors
|
|
1013
|
+
} = useTheme();
|
|
1014
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1015
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1016
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1017
|
+
};
|
|
1018
|
+
forwardRef(SvgGridFour);
|
|
1019
|
+
const SvgGridNine = ({
|
|
1020
|
+
fill: fillProp = "currentColor",
|
|
1021
|
+
stroke: strokeProp,
|
|
1022
|
+
...props
|
|
1023
|
+
}, ref) => {
|
|
1024
|
+
const {
|
|
1025
|
+
colors
|
|
1026
|
+
} = useTheme();
|
|
1027
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1028
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1029
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1030
|
+
};
|
|
1031
|
+
forwardRef(SvgGridNine);
|
|
1032
|
+
const SvgHandHeart = ({
|
|
1033
|
+
fill: fillProp = "currentColor",
|
|
1034
|
+
stroke: strokeProp,
|
|
1035
|
+
...props
|
|
1036
|
+
}, ref) => {
|
|
1037
|
+
const {
|
|
1038
|
+
colors
|
|
1039
|
+
} = useTheme();
|
|
1040
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1041
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1042
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1043
|
+
};
|
|
1044
|
+
forwardRef(SvgHandHeart);
|
|
1045
|
+
const SvgHashtag = ({
|
|
1046
|
+
fill: fillProp = "currentColor",
|
|
1047
|
+
stroke: strokeProp,
|
|
1048
|
+
...props
|
|
1049
|
+
}, ref) => {
|
|
1050
|
+
const {
|
|
1051
|
+
colors
|
|
1052
|
+
} = useTheme();
|
|
1053
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1054
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1055
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1056
|
+
};
|
|
1057
|
+
forwardRef(SvgHashtag);
|
|
1058
|
+
const SvgHeadingFive = ({
|
|
1059
|
+
fill: fillProp = "currentColor",
|
|
1060
|
+
stroke: strokeProp,
|
|
1061
|
+
...props
|
|
1062
|
+
}, ref) => {
|
|
1063
|
+
const {
|
|
1064
|
+
colors
|
|
1065
|
+
} = useTheme();
|
|
1066
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1067
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1068
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1069
|
+
};
|
|
1070
|
+
forwardRef(SvgHeadingFive);
|
|
1071
|
+
const SvgHeadingFour = ({
|
|
1072
|
+
fill: fillProp = "currentColor",
|
|
1073
|
+
stroke: strokeProp,
|
|
1074
|
+
...props
|
|
1075
|
+
}, ref) => {
|
|
1076
|
+
const {
|
|
1077
|
+
colors
|
|
1078
|
+
} = useTheme();
|
|
1079
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1080
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1081
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1082
|
+
};
|
|
1083
|
+
forwardRef(SvgHeadingFour);
|
|
1084
|
+
const SvgHeadingOne = ({
|
|
1085
|
+
fill: fillProp = "currentColor",
|
|
1086
|
+
stroke: strokeProp,
|
|
1087
|
+
...props
|
|
1088
|
+
}, ref) => {
|
|
1089
|
+
const {
|
|
1090
|
+
colors
|
|
1091
|
+
} = useTheme();
|
|
1092
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1093
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1094
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1095
|
+
};
|
|
1096
|
+
forwardRef(SvgHeadingOne);
|
|
1097
|
+
const SvgHeadingSix = ({
|
|
1098
|
+
fill: fillProp = "currentColor",
|
|
1099
|
+
stroke: strokeProp,
|
|
1100
|
+
...props
|
|
1101
|
+
}, ref) => {
|
|
1102
|
+
const {
|
|
1103
|
+
colors
|
|
1104
|
+
} = useTheme();
|
|
1105
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1106
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1107
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1108
|
+
};
|
|
1109
|
+
forwardRef(SvgHeadingSix);
|
|
1110
|
+
const SvgHeadingThree = ({
|
|
1111
|
+
fill: fillProp = "currentColor",
|
|
1112
|
+
stroke: strokeProp,
|
|
1113
|
+
...props
|
|
1114
|
+
}, ref) => {
|
|
1115
|
+
const {
|
|
1116
|
+
colors
|
|
1117
|
+
} = useTheme();
|
|
1118
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1119
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1120
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1121
|
+
};
|
|
1122
|
+
forwardRef(SvgHeadingThree);
|
|
1123
|
+
const SvgHeadingTwo = ({
|
|
1124
|
+
fill: fillProp = "currentColor",
|
|
1125
|
+
stroke: strokeProp,
|
|
1126
|
+
...props
|
|
1127
|
+
}, ref) => {
|
|
1128
|
+
const {
|
|
1129
|
+
colors
|
|
1130
|
+
} = useTheme();
|
|
1131
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1132
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1133
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1134
|
+
};
|
|
1135
|
+
forwardRef(SvgHeadingTwo);
|
|
1136
|
+
const SvgHeadphones = ({
|
|
1137
|
+
fill: fillProp = "currentColor",
|
|
1138
|
+
stroke: strokeProp,
|
|
1139
|
+
...props
|
|
1140
|
+
}, ref) => {
|
|
1141
|
+
const {
|
|
1142
|
+
colors
|
|
1143
|
+
} = useTheme();
|
|
1144
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1145
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1146
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1147
|
+
};
|
|
1148
|
+
forwardRef(SvgHeadphones);
|
|
1149
|
+
const SvgHeart = ({
|
|
1150
|
+
fill: fillProp = "currentColor",
|
|
1151
|
+
stroke: strokeProp,
|
|
1152
|
+
...props
|
|
1153
|
+
}, ref) => {
|
|
1154
|
+
const {
|
|
1155
|
+
colors
|
|
1156
|
+
} = useTheme();
|
|
1157
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1158
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1159
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1160
|
+
};
|
|
1161
|
+
forwardRef(SvgHeart);
|
|
1162
|
+
const SvgHouse = ({
|
|
1163
|
+
fill: fillProp = "currentColor",
|
|
1164
|
+
stroke: strokeProp,
|
|
1165
|
+
...props
|
|
1166
|
+
}, ref) => {
|
|
1167
|
+
const {
|
|
1168
|
+
colors
|
|
1169
|
+
} = useTheme();
|
|
1170
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1171
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1172
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1173
|
+
};
|
|
1174
|
+
forwardRef(SvgHouse);
|
|
1175
|
+
const SvgImage = ({
|
|
1176
|
+
fill: fillProp = "currentColor",
|
|
1177
|
+
stroke: strokeProp,
|
|
1178
|
+
...props
|
|
1179
|
+
}, ref) => {
|
|
1180
|
+
const {
|
|
1181
|
+
colors
|
|
1182
|
+
} = useTheme();
|
|
1183
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1184
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1185
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1186
|
+
};
|
|
1187
|
+
forwardRef(SvgImage);
|
|
1188
|
+
const SvgImages = ({
|
|
1189
|
+
fill: fillProp = "currentColor",
|
|
1190
|
+
stroke: strokeProp,
|
|
1191
|
+
...props
|
|
1192
|
+
}, ref) => {
|
|
1193
|
+
const {
|
|
1194
|
+
colors
|
|
1195
|
+
} = useTheme();
|
|
1196
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1197
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1198
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1199
|
+
};
|
|
1200
|
+
forwardRef(SvgImages);
|
|
1201
|
+
const SvgIndentDecrease = ({
|
|
1202
|
+
fill: fillProp = "currentColor",
|
|
1203
|
+
stroke: strokeProp,
|
|
1204
|
+
...props
|
|
1205
|
+
}, ref) => {
|
|
1206
|
+
const {
|
|
1207
|
+
colors
|
|
1208
|
+
} = useTheme();
|
|
1209
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1210
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1211
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1212
|
+
};
|
|
1213
|
+
forwardRef(SvgIndentDecrease);
|
|
1214
|
+
const SvgIndentIncrease = ({
|
|
1215
|
+
fill: fillProp = "currentColor",
|
|
1216
|
+
stroke: strokeProp,
|
|
1217
|
+
...props
|
|
1218
|
+
}, ref) => {
|
|
1219
|
+
const {
|
|
1220
|
+
colors
|
|
1221
|
+
} = useTheme();
|
|
1222
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1223
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1224
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1225
|
+
};
|
|
1226
|
+
forwardRef(SvgIndentIncrease);
|
|
1227
|
+
const SvgInformation = ({
|
|
1228
|
+
fill: fillProp = "currentColor",
|
|
1229
|
+
stroke: strokeProp,
|
|
1230
|
+
...props
|
|
1231
|
+
}, ref) => {
|
|
1232
|
+
const {
|
|
1233
|
+
colors
|
|
1234
|
+
} = useTheme();
|
|
1235
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1236
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1237
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1238
|
+
};
|
|
1239
|
+
const ForwardRef$1l = forwardRef(SvgInformation);
|
|
1240
|
+
const SvgItalic = ({
|
|
1241
|
+
fill: fillProp = "currentColor",
|
|
1242
|
+
stroke: strokeProp,
|
|
1243
|
+
...props
|
|
1244
|
+
}, ref) => {
|
|
1245
|
+
const {
|
|
1246
|
+
colors
|
|
1247
|
+
} = useTheme();
|
|
1248
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1249
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1250
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1251
|
+
};
|
|
1252
|
+
forwardRef(SvgItalic);
|
|
1253
|
+
const SvgKey = ({
|
|
1254
|
+
fill: fillProp = "currentColor",
|
|
1255
|
+
stroke: strokeProp,
|
|
1256
|
+
...props
|
|
1257
|
+
}, ref) => {
|
|
1258
|
+
const {
|
|
1259
|
+
colors
|
|
1260
|
+
} = useTheme();
|
|
1261
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1262
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1263
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1264
|
+
};
|
|
1265
|
+
forwardRef(SvgKey);
|
|
1266
|
+
const SvgLayout = ({
|
|
1267
|
+
fill: fillProp = "currentColor",
|
|
1268
|
+
stroke: strokeProp,
|
|
1269
|
+
...props
|
|
1270
|
+
}, ref) => {
|
|
1271
|
+
const {
|
|
1272
|
+
colors
|
|
1273
|
+
} = useTheme();
|
|
1274
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1275
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1276
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1277
|
+
};
|
|
1278
|
+
forwardRef(SvgLayout);
|
|
1279
|
+
const SvgLightbulb = ({
|
|
1280
|
+
fill: fillProp = "currentColor",
|
|
1281
|
+
stroke: strokeProp,
|
|
1282
|
+
...props
|
|
1283
|
+
}, ref) => {
|
|
1284
|
+
const {
|
|
1285
|
+
colors
|
|
1286
|
+
} = useTheme();
|
|
1287
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1288
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1289
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1290
|
+
};
|
|
1291
|
+
forwardRef(SvgLightbulb);
|
|
1292
|
+
const SvgLightning = ({
|
|
1293
|
+
fill: fillProp = "currentColor",
|
|
1294
|
+
stroke: strokeProp,
|
|
1295
|
+
...props
|
|
1296
|
+
}, ref) => {
|
|
1297
|
+
const {
|
|
1298
|
+
colors
|
|
1299
|
+
} = useTheme();
|
|
1300
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1301
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1302
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1303
|
+
};
|
|
1304
|
+
const ForwardRef$1g = forwardRef(SvgLightning);
|
|
1305
|
+
const SvgLink = ({
|
|
1306
|
+
fill: fillProp = "currentColor",
|
|
1307
|
+
stroke: strokeProp,
|
|
1308
|
+
...props
|
|
1309
|
+
}, ref) => {
|
|
1310
|
+
const {
|
|
1311
|
+
colors
|
|
1312
|
+
} = useTheme();
|
|
1313
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1314
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1315
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1316
|
+
};
|
|
1317
|
+
forwardRef(SvgLink);
|
|
1318
|
+
const SvgList = ({
|
|
1319
|
+
fill: fillProp = "currentColor",
|
|
1320
|
+
stroke: strokeProp,
|
|
1321
|
+
...props
|
|
1322
|
+
}, ref) => {
|
|
1323
|
+
const {
|
|
1324
|
+
colors
|
|
1325
|
+
} = useTheme();
|
|
1326
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1327
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1328
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1329
|
+
};
|
|
1330
|
+
forwardRef(SvgList);
|
|
1331
|
+
const SvgListPlus = ({
|
|
1332
|
+
fill: fillProp = "currentColor",
|
|
1333
|
+
stroke: strokeProp,
|
|
1334
|
+
...props
|
|
1335
|
+
}, ref) => {
|
|
1336
|
+
const {
|
|
1337
|
+
colors
|
|
1338
|
+
} = useTheme();
|
|
1339
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1340
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1341
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1342
|
+
};
|
|
1343
|
+
forwardRef(SvgListPlus);
|
|
1344
|
+
const SvgListSearch = ({
|
|
1345
|
+
fill: fillProp = "currentColor",
|
|
1346
|
+
stroke: strokeProp,
|
|
1347
|
+
...props
|
|
1348
|
+
}, ref) => {
|
|
1349
|
+
const {
|
|
1350
|
+
colors
|
|
1351
|
+
} = useTheme();
|
|
1352
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1353
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1354
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1355
|
+
};
|
|
1356
|
+
forwardRef(SvgListSearch);
|
|
1357
|
+
const SvgLoader = ({
|
|
1358
|
+
fill: fillProp = "currentColor",
|
|
1359
|
+
stroke: strokeProp,
|
|
1360
|
+
...props
|
|
1361
|
+
}, ref) => {
|
|
1362
|
+
const {
|
|
1363
|
+
colors
|
|
1364
|
+
} = useTheme();
|
|
1365
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1366
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1367
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1368
|
+
};
|
|
1369
|
+
const ForwardRef$1b = forwardRef(SvgLoader);
|
|
1370
|
+
const SvgLock = ({
|
|
1371
|
+
fill: fillProp = "currentColor",
|
|
1372
|
+
stroke: strokeProp,
|
|
1373
|
+
...props
|
|
1374
|
+
}, ref) => {
|
|
1375
|
+
const {
|
|
1376
|
+
colors
|
|
1377
|
+
} = useTheme();
|
|
1378
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1379
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1380
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1381
|
+
};
|
|
1382
|
+
forwardRef(SvgLock);
|
|
1383
|
+
const SvgMagic = ({
|
|
1384
|
+
fill: fillProp = "currentColor",
|
|
1385
|
+
stroke: strokeProp,
|
|
1386
|
+
...props
|
|
1387
|
+
}, ref) => {
|
|
1388
|
+
const {
|
|
1389
|
+
colors
|
|
1390
|
+
} = useTheme();
|
|
1391
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1392
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1393
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1394
|
+
};
|
|
1395
|
+
forwardRef(SvgMagic);
|
|
1396
|
+
const SvgMail = ({
|
|
1397
|
+
fill: fillProp = "currentColor",
|
|
1398
|
+
stroke: strokeProp,
|
|
1399
|
+
...props
|
|
1400
|
+
}, ref) => {
|
|
1401
|
+
const {
|
|
1402
|
+
colors
|
|
1403
|
+
} = useTheme();
|
|
1404
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1405
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1406
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1407
|
+
};
|
|
1408
|
+
forwardRef(SvgMail);
|
|
1409
|
+
const SvgManyToMany = ({
|
|
1410
|
+
fill: fillProp = "currentColor",
|
|
1411
|
+
stroke: strokeProp,
|
|
1412
|
+
...props
|
|
1413
|
+
}, ref) => {
|
|
1414
|
+
const {
|
|
1415
|
+
colors
|
|
1416
|
+
} = useTheme();
|
|
1417
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1418
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1419
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1420
|
+
};
|
|
1421
|
+
forwardRef(SvgManyToMany);
|
|
1422
|
+
const SvgManyToOne = ({
|
|
1423
|
+
fill: fillProp = "currentColor",
|
|
1424
|
+
stroke: strokeProp,
|
|
1425
|
+
...props
|
|
1426
|
+
}, ref) => {
|
|
1427
|
+
const {
|
|
1428
|
+
colors
|
|
1429
|
+
} = useTheme();
|
|
1430
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1431
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1432
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1433
|
+
};
|
|
1434
|
+
forwardRef(SvgManyToOne);
|
|
1435
|
+
const SvgManyWays = ({
|
|
1436
|
+
fill: fillProp = "currentColor",
|
|
1437
|
+
stroke: strokeProp,
|
|
1438
|
+
...props
|
|
1439
|
+
}, ref) => {
|
|
1440
|
+
const {
|
|
1441
|
+
colors
|
|
1442
|
+
} = useTheme();
|
|
1443
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1444
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1445
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1446
|
+
};
|
|
1447
|
+
forwardRef(SvgManyWays);
|
|
1448
|
+
const SvgMessage = ({
|
|
1449
|
+
fill: fillProp = "currentColor",
|
|
1450
|
+
stroke: strokeProp,
|
|
1451
|
+
...props
|
|
1452
|
+
}, ref) => {
|
|
1453
|
+
const {
|
|
1454
|
+
colors
|
|
1455
|
+
} = useTheme();
|
|
1456
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1457
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1458
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1459
|
+
};
|
|
1460
|
+
forwardRef(SvgMessage);
|
|
1461
|
+
const SvgMicrophone = ({
|
|
1462
|
+
fill: fillProp = "currentColor",
|
|
1463
|
+
stroke: strokeProp,
|
|
1464
|
+
...props
|
|
1465
|
+
}, ref) => {
|
|
1466
|
+
const {
|
|
1467
|
+
colors
|
|
1468
|
+
} = useTheme();
|
|
1469
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1470
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1471
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1472
|
+
};
|
|
1473
|
+
forwardRef(SvgMicrophone);
|
|
1474
|
+
const SvgMinus = ({
|
|
1475
|
+
fill: fillProp = "currentColor",
|
|
1476
|
+
stroke: strokeProp,
|
|
1477
|
+
...props
|
|
1478
|
+
}, ref) => {
|
|
1479
|
+
const {
|
|
1480
|
+
colors
|
|
1481
|
+
} = useTheme();
|
|
1482
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1483
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1484
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1485
|
+
};
|
|
1486
|
+
const ForwardRef$12 = forwardRef(SvgMinus);
|
|
1487
|
+
const SvgMinusCircle = ({
|
|
1488
|
+
fill: fillProp = "currentColor",
|
|
1489
|
+
stroke: strokeProp,
|
|
1490
|
+
...props
|
|
1491
|
+
}, ref) => {
|
|
1492
|
+
const {
|
|
1493
|
+
colors
|
|
1494
|
+
} = useTheme();
|
|
1495
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1496
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1497
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1498
|
+
};
|
|
1499
|
+
forwardRef(SvgMinusCircle);
|
|
1500
|
+
const SvgMonitor = ({
|
|
1501
|
+
fill: fillProp = "currentColor",
|
|
1502
|
+
stroke: strokeProp,
|
|
1503
|
+
...props
|
|
1504
|
+
}, ref) => {
|
|
1505
|
+
const {
|
|
1506
|
+
colors
|
|
1507
|
+
} = useTheme();
|
|
1508
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1509
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1510
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1511
|
+
};
|
|
1512
|
+
forwardRef(SvgMonitor);
|
|
1513
|
+
const SvgMoon = ({
|
|
1514
|
+
fill: fillProp = "currentColor",
|
|
1515
|
+
stroke: strokeProp,
|
|
1516
|
+
...props
|
|
1517
|
+
}, ref) => {
|
|
1518
|
+
const {
|
|
1519
|
+
colors
|
|
1520
|
+
} = useTheme();
|
|
1521
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1522
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1523
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1524
|
+
};
|
|
1525
|
+
forwardRef(SvgMoon);
|
|
1526
|
+
const SvgMore = ({
|
|
1527
|
+
fill: fillProp = "currentColor",
|
|
1528
|
+
stroke: strokeProp,
|
|
1529
|
+
...props
|
|
1530
|
+
}, ref) => {
|
|
1531
|
+
const {
|
|
1532
|
+
colors
|
|
1533
|
+
} = useTheme();
|
|
1534
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1535
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1536
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1537
|
+
};
|
|
1538
|
+
forwardRef(SvgMore);
|
|
1539
|
+
const SvgMove = ({
|
|
1540
|
+
fill: fillProp = "currentColor",
|
|
1541
|
+
stroke: strokeProp,
|
|
1542
|
+
...props
|
|
1543
|
+
}, ref) => {
|
|
1544
|
+
const {
|
|
1545
|
+
colors
|
|
1546
|
+
} = useTheme();
|
|
1547
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1548
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1549
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1550
|
+
};
|
|
1551
|
+
forwardRef(SvgMove);
|
|
1552
|
+
const SvgMusicNotes = ({
|
|
1553
|
+
fill: fillProp = "currentColor",
|
|
1554
|
+
stroke: strokeProp,
|
|
1555
|
+
...props
|
|
1556
|
+
}, ref) => {
|
|
1557
|
+
const {
|
|
1558
|
+
colors
|
|
1559
|
+
} = useTheme();
|
|
1560
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1561
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1562
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1563
|
+
};
|
|
1564
|
+
forwardRef(SvgMusicNotes);
|
|
1565
|
+
const SvgNumberList = ({
|
|
1566
|
+
fill: fillProp = "currentColor",
|
|
1567
|
+
stroke: strokeProp,
|
|
1568
|
+
...props
|
|
1569
|
+
}, ref) => {
|
|
1570
|
+
const {
|
|
1571
|
+
colors
|
|
1572
|
+
} = useTheme();
|
|
1573
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1574
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1575
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1576
|
+
};
|
|
1577
|
+
forwardRef(SvgNumberList);
|
|
1578
|
+
const SvgOneToMany = ({
|
|
1579
|
+
fill: fillProp = "currentColor",
|
|
1580
|
+
stroke: strokeProp,
|
|
1581
|
+
...props
|
|
1582
|
+
}, ref) => {
|
|
1583
|
+
const {
|
|
1584
|
+
colors
|
|
1585
|
+
} = useTheme();
|
|
1586
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1587
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1588
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1589
|
+
};
|
|
1590
|
+
forwardRef(SvgOneToMany);
|
|
1591
|
+
const SvgOneToOne = ({
|
|
1592
|
+
fill: fillProp = "currentColor",
|
|
1593
|
+
stroke: strokeProp,
|
|
1594
|
+
...props
|
|
1595
|
+
}, ref) => {
|
|
1596
|
+
const {
|
|
1597
|
+
colors
|
|
1598
|
+
} = useTheme();
|
|
1599
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1600
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1601
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1602
|
+
};
|
|
1603
|
+
forwardRef(SvgOneToOne);
|
|
1604
|
+
const SvgOneWay = ({
|
|
1605
|
+
fill: fillProp = "currentColor",
|
|
1606
|
+
stroke: strokeProp,
|
|
1607
|
+
...props
|
|
1608
|
+
}, ref) => {
|
|
1609
|
+
const {
|
|
1610
|
+
colors
|
|
1611
|
+
} = useTheme();
|
|
1612
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1613
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1614
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1615
|
+
};
|
|
1616
|
+
forwardRef(SvgOneWay);
|
|
1617
|
+
const SvgPaintBrush = ({
|
|
1618
|
+
fill: fillProp = "currentColor",
|
|
1619
|
+
stroke: strokeProp,
|
|
1620
|
+
...props
|
|
1621
|
+
}, ref) => {
|
|
1622
|
+
const {
|
|
1623
|
+
colors
|
|
1624
|
+
} = useTheme();
|
|
1625
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1626
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1627
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1628
|
+
};
|
|
1629
|
+
forwardRef(SvgPaintBrush);
|
|
1630
|
+
const SvgPaintRoller = ({
|
|
1631
|
+
fill: fillProp = "currentColor",
|
|
1632
|
+
stroke: strokeProp,
|
|
1633
|
+
...props
|
|
1634
|
+
}, ref) => {
|
|
1635
|
+
const {
|
|
1636
|
+
colors
|
|
1637
|
+
} = useTheme();
|
|
1638
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1639
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1640
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1641
|
+
};
|
|
1642
|
+
forwardRef(SvgPaintRoller);
|
|
1643
|
+
const SvgPalette = ({
|
|
1644
|
+
fill: fillProp = "currentColor",
|
|
1645
|
+
stroke: strokeProp,
|
|
1646
|
+
...props
|
|
1647
|
+
}, ref) => {
|
|
1648
|
+
const {
|
|
1649
|
+
colors
|
|
1650
|
+
} = useTheme();
|
|
1651
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1652
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1653
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1654
|
+
};
|
|
1655
|
+
forwardRef(SvgPalette);
|
|
1656
|
+
const SvgPaperPlane = ({
|
|
1657
|
+
fill: fillProp = "currentColor",
|
|
1658
|
+
stroke: strokeProp,
|
|
1659
|
+
...props
|
|
1660
|
+
}, ref) => {
|
|
1661
|
+
const {
|
|
1662
|
+
colors
|
|
1663
|
+
} = useTheme();
|
|
1664
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1665
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1666
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1667
|
+
};
|
|
1668
|
+
forwardRef(SvgPaperPlane);
|
|
1669
|
+
const SvgPaperclip = ({
|
|
1670
|
+
fill: fillProp = "currentColor",
|
|
1671
|
+
stroke: strokeProp,
|
|
1672
|
+
...props
|
|
1673
|
+
}, ref) => {
|
|
1674
|
+
const {
|
|
1675
|
+
colors
|
|
1676
|
+
} = useTheme();
|
|
1677
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1678
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1679
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1680
|
+
};
|
|
1681
|
+
forwardRef(SvgPaperclip);
|
|
1682
|
+
const SvgParagraph = ({
|
|
1683
|
+
fill: fillProp = "currentColor",
|
|
1684
|
+
stroke: strokeProp,
|
|
1685
|
+
...props
|
|
1686
|
+
}, ref) => {
|
|
1687
|
+
const {
|
|
1688
|
+
colors
|
|
1689
|
+
} = useTheme();
|
|
1690
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1691
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1692
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1693
|
+
};
|
|
1694
|
+
forwardRef(SvgParagraph);
|
|
1695
|
+
const SvgPencil = ({
|
|
1696
|
+
fill: fillProp = "currentColor",
|
|
1697
|
+
stroke: strokeProp,
|
|
1698
|
+
...props
|
|
1699
|
+
}, ref) => {
|
|
1700
|
+
const {
|
|
1701
|
+
colors
|
|
1702
|
+
} = useTheme();
|
|
1703
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1704
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1705
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1706
|
+
};
|
|
1707
|
+
forwardRef(SvgPencil);
|
|
1708
|
+
const SvgPhone = ({
|
|
1709
|
+
fill: fillProp = "currentColor",
|
|
1710
|
+
stroke: strokeProp,
|
|
1711
|
+
...props
|
|
1712
|
+
}, ref) => {
|
|
1713
|
+
const {
|
|
1714
|
+
colors
|
|
1715
|
+
} = useTheme();
|
|
1716
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1717
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1718
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1719
|
+
};
|
|
1720
|
+
forwardRef(SvgPhone);
|
|
1721
|
+
const SvgPin = ({
|
|
1722
|
+
fill: fillProp = "currentColor",
|
|
1723
|
+
stroke: strokeProp,
|
|
1724
|
+
...props
|
|
1725
|
+
}, ref) => {
|
|
1726
|
+
const {
|
|
1727
|
+
colors
|
|
1728
|
+
} = useTheme();
|
|
1729
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1730
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1731
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1732
|
+
};
|
|
1733
|
+
forwardRef(SvgPin);
|
|
1734
|
+
const SvgPinMap = ({
|
|
1735
|
+
fill: fillProp = "currentColor",
|
|
1736
|
+
stroke: strokeProp,
|
|
1737
|
+
...props
|
|
1738
|
+
}, ref) => {
|
|
1739
|
+
const {
|
|
1740
|
+
colors
|
|
1741
|
+
} = useTheme();
|
|
1742
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1743
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1744
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1745
|
+
};
|
|
1746
|
+
forwardRef(SvgPinMap);
|
|
1747
|
+
const SvgPlane = ({
|
|
1748
|
+
fill: fillProp = "currentColor",
|
|
1749
|
+
stroke: strokeProp,
|
|
1750
|
+
...props
|
|
1751
|
+
}, ref) => {
|
|
1752
|
+
const {
|
|
1753
|
+
colors
|
|
1754
|
+
} = useTheme();
|
|
1755
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1756
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1757
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1758
|
+
};
|
|
1759
|
+
forwardRef(SvgPlane);
|
|
1760
|
+
const SvgPlant = ({
|
|
1761
|
+
fill: fillProp = "currentColor",
|
|
1762
|
+
stroke: strokeProp,
|
|
1763
|
+
...props
|
|
1764
|
+
}, ref) => {
|
|
1765
|
+
const {
|
|
1766
|
+
colors
|
|
1767
|
+
} = useTheme();
|
|
1768
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1769
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1770
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1771
|
+
};
|
|
1772
|
+
forwardRef(SvgPlant);
|
|
1773
|
+
const SvgPlay = ({
|
|
1774
|
+
fill: fillProp = "currentColor",
|
|
1775
|
+
stroke: strokeProp,
|
|
1776
|
+
...props
|
|
1777
|
+
}, ref) => {
|
|
1778
|
+
const {
|
|
1779
|
+
colors
|
|
1780
|
+
} = useTheme();
|
|
1781
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1782
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1783
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1784
|
+
};
|
|
1785
|
+
forwardRef(SvgPlay);
|
|
1786
|
+
const SvgPlus = ({
|
|
1787
|
+
fill: fillProp = "currentColor",
|
|
1788
|
+
stroke: strokeProp,
|
|
1789
|
+
...props
|
|
1790
|
+
}, ref) => {
|
|
1791
|
+
const {
|
|
1792
|
+
colors
|
|
1793
|
+
} = useTheme();
|
|
1794
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1795
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1796
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1797
|
+
};
|
|
1798
|
+
forwardRef(SvgPlus);
|
|
1799
|
+
const SvgPlusCircle = ({
|
|
1800
|
+
fill: fillProp = "currentColor",
|
|
1801
|
+
stroke: strokeProp,
|
|
1802
|
+
...props
|
|
1803
|
+
}, ref) => {
|
|
1804
|
+
const {
|
|
1805
|
+
colors
|
|
1806
|
+
} = useTheme();
|
|
1807
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1808
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1809
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1810
|
+
};
|
|
1811
|
+
forwardRef(SvgPlusCircle);
|
|
1812
|
+
const SvgPresentationChart = ({
|
|
1813
|
+
fill: fillProp = "currentColor",
|
|
1814
|
+
stroke: strokeProp,
|
|
1815
|
+
...props
|
|
1816
|
+
}, ref) => {
|
|
1817
|
+
const {
|
|
1818
|
+
colors
|
|
1819
|
+
} = useTheme();
|
|
1820
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1821
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1822
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1823
|
+
};
|
|
1824
|
+
forwardRef(SvgPresentationChart);
|
|
1825
|
+
const SvgPriceTag = ({
|
|
1826
|
+
fill: fillProp = "currentColor",
|
|
1827
|
+
stroke: strokeProp,
|
|
1828
|
+
...props
|
|
1829
|
+
}, ref) => {
|
|
1830
|
+
const {
|
|
1831
|
+
colors
|
|
1832
|
+
} = useTheme();
|
|
1833
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1834
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1835
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1836
|
+
};
|
|
1837
|
+
forwardRef(SvgPriceTag);
|
|
1838
|
+
const SvgPuzzlePiece = ({
|
|
1839
|
+
fill: fillProp = "currentColor",
|
|
1840
|
+
stroke: strokeProp,
|
|
1841
|
+
...props
|
|
1842
|
+
}, ref) => {
|
|
1843
|
+
const {
|
|
1844
|
+
colors
|
|
1845
|
+
} = useTheme();
|
|
1846
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1847
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1848
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1849
|
+
};
|
|
1850
|
+
forwardRef(SvgPuzzlePiece);
|
|
1851
|
+
const SvgQuestion = ({
|
|
1852
|
+
fill: fillProp = "currentColor",
|
|
1853
|
+
stroke: strokeProp,
|
|
1854
|
+
...props
|
|
1855
|
+
}, ref) => {
|
|
1856
|
+
const {
|
|
1857
|
+
colors
|
|
1858
|
+
} = useTheme();
|
|
1859
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1860
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1861
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1862
|
+
};
|
|
1863
|
+
forwardRef(SvgQuestion);
|
|
1864
|
+
const SvgQuotes = ({
|
|
1865
|
+
fill: fillProp = "currentColor",
|
|
1866
|
+
stroke: strokeProp,
|
|
1867
|
+
...props
|
|
1868
|
+
}, ref) => {
|
|
1869
|
+
const {
|
|
1870
|
+
colors
|
|
1871
|
+
} = useTheme();
|
|
1872
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1873
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1874
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1875
|
+
};
|
|
1876
|
+
forwardRef(SvgQuotes);
|
|
1877
|
+
const SvgRestaurant = ({
|
|
1878
|
+
fill: fillProp = "currentColor",
|
|
1879
|
+
stroke: strokeProp,
|
|
1880
|
+
...props
|
|
1881
|
+
}, ref) => {
|
|
1882
|
+
const {
|
|
1883
|
+
colors
|
|
1884
|
+
} = useTheme();
|
|
1885
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1886
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1887
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1888
|
+
};
|
|
1889
|
+
forwardRef(SvgRestaurant);
|
|
1890
|
+
const SvgRocket = ({
|
|
1891
|
+
fill: fillProp = "currentColor",
|
|
1892
|
+
stroke: strokeProp,
|
|
1893
|
+
...props
|
|
1894
|
+
}, ref) => {
|
|
1895
|
+
const {
|
|
1896
|
+
colors
|
|
1897
|
+
} = useTheme();
|
|
1898
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1899
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1900
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1901
|
+
};
|
|
1902
|
+
const ForwardRef$y = forwardRef(SvgRocket);
|
|
1903
|
+
const SvgScissors = ({
|
|
1904
|
+
fill: fillProp = "currentColor",
|
|
1905
|
+
stroke: strokeProp,
|
|
1906
|
+
...props
|
|
1907
|
+
}, ref) => {
|
|
1908
|
+
const {
|
|
1909
|
+
colors
|
|
1910
|
+
} = useTheme();
|
|
1911
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1912
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1913
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1914
|
+
};
|
|
1915
|
+
forwardRef(SvgScissors);
|
|
1916
|
+
const SvgSealCheck = ({
|
|
1917
|
+
fill: fillProp = "currentColor",
|
|
1918
|
+
stroke: strokeProp,
|
|
1919
|
+
...props
|
|
1920
|
+
}, ref) => {
|
|
1921
|
+
const {
|
|
1922
|
+
colors
|
|
1923
|
+
} = useTheme();
|
|
1924
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1925
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1926
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 256 256", fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1927
|
+
};
|
|
1928
|
+
forwardRef(SvgSealCheck);
|
|
1929
|
+
const SvgSearch = ({
|
|
1930
|
+
fill: fillProp = "currentColor",
|
|
1931
|
+
stroke: strokeProp,
|
|
1932
|
+
...props
|
|
1933
|
+
}, ref) => {
|
|
1934
|
+
const {
|
|
1935
|
+
colors
|
|
1936
|
+
} = useTheme();
|
|
1937
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1938
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1939
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1940
|
+
};
|
|
1941
|
+
const ForwardRef$v = forwardRef(SvgSearch);
|
|
1942
|
+
const SvgServer = ({
|
|
1943
|
+
fill: fillProp = "currentColor",
|
|
1944
|
+
stroke: strokeProp,
|
|
1945
|
+
...props
|
|
1946
|
+
}, ref) => {
|
|
1947
|
+
const {
|
|
1948
|
+
colors
|
|
1949
|
+
} = useTheme();
|
|
1950
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1951
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1952
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1953
|
+
};
|
|
1954
|
+
forwardRef(SvgServer);
|
|
1955
|
+
const SvgShield = ({
|
|
1956
|
+
fill: fillProp = "currentColor",
|
|
1957
|
+
stroke: strokeProp,
|
|
1958
|
+
...props
|
|
1959
|
+
}, ref) => {
|
|
1960
|
+
const {
|
|
1961
|
+
colors
|
|
1962
|
+
} = useTheme();
|
|
1963
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1964
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1965
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1966
|
+
};
|
|
1967
|
+
forwardRef(SvgShield);
|
|
1968
|
+
const SvgShirt = ({
|
|
1969
|
+
fill: fillProp = "currentColor",
|
|
1970
|
+
stroke: strokeProp,
|
|
1971
|
+
...props
|
|
1972
|
+
}, ref) => {
|
|
1973
|
+
const {
|
|
1974
|
+
colors
|
|
1975
|
+
} = useTheme();
|
|
1976
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1977
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1978
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1979
|
+
};
|
|
1980
|
+
forwardRef(SvgShirt);
|
|
1981
|
+
const SvgShoppingCart = ({
|
|
1982
|
+
fill: fillProp = "currentColor",
|
|
1983
|
+
stroke: strokeProp,
|
|
1984
|
+
...props
|
|
1985
|
+
}, ref) => {
|
|
1986
|
+
const {
|
|
1987
|
+
colors
|
|
1988
|
+
} = useTheme();
|
|
1989
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
1990
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
1991
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
1992
|
+
};
|
|
1993
|
+
forwardRef(SvgShoppingCart);
|
|
1994
|
+
const SvgSignOut = ({
|
|
1995
|
+
fill: fillProp = "currentColor",
|
|
1996
|
+
stroke: strokeProp,
|
|
1997
|
+
...props
|
|
1998
|
+
}, ref) => {
|
|
1999
|
+
const {
|
|
2000
|
+
colors
|
|
2001
|
+
} = useTheme();
|
|
2002
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2003
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2004
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2005
|
+
};
|
|
2006
|
+
forwardRef(SvgSignOut);
|
|
2007
|
+
const SvgSlidersHorizontal = ({
|
|
2008
|
+
fill: fillProp = "currentColor",
|
|
2009
|
+
stroke: strokeProp,
|
|
2010
|
+
...props
|
|
2011
|
+
}, ref) => {
|
|
2012
|
+
const {
|
|
2013
|
+
colors
|
|
2014
|
+
} = useTheme();
|
|
2015
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2016
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2017
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2018
|
+
};
|
|
2019
|
+
forwardRef(SvgSlidersHorizontal);
|
|
2020
|
+
const SvgSparkle = ({
|
|
2021
|
+
fill: fillProp = "currentColor",
|
|
2022
|
+
stroke: strokeProp,
|
|
2023
|
+
...props
|
|
2024
|
+
}, ref) => {
|
|
2025
|
+
const {
|
|
2026
|
+
colors
|
|
2027
|
+
} = useTheme();
|
|
2028
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2029
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2030
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2031
|
+
};
|
|
2032
|
+
const ForwardRef$o = forwardRef(SvgSparkle);
|
|
2033
|
+
const SvgSquaresFour = ({
|
|
2034
|
+
fill: fillProp = "currentColor",
|
|
2035
|
+
stroke: strokeProp,
|
|
2036
|
+
...props
|
|
2037
|
+
}, ref) => {
|
|
2038
|
+
const {
|
|
2039
|
+
colors
|
|
2040
|
+
} = useTheme();
|
|
2041
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2042
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2043
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2044
|
+
};
|
|
2045
|
+
forwardRef(SvgSquaresFour);
|
|
2046
|
+
const SvgStack = ({
|
|
2047
|
+
fill: fillProp = "currentColor",
|
|
2048
|
+
stroke: strokeProp,
|
|
2049
|
+
...props
|
|
2050
|
+
}, ref) => {
|
|
2051
|
+
const {
|
|
2052
|
+
colors
|
|
2053
|
+
} = useTheme();
|
|
2054
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2055
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2056
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: [
|
|
2057
|
+
/* @__PURE__ */ 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" }),
|
|
2058
|
+
/* @__PURE__ */ 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" }),
|
|
2059
|
+
/* @__PURE__ */ 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" })
|
|
2060
|
+
] });
|
|
2061
|
+
};
|
|
2062
|
+
forwardRef(SvgStack);
|
|
2063
|
+
const SvgStar = ({
|
|
2064
|
+
fill: fillProp = "currentColor",
|
|
2065
|
+
stroke: strokeProp,
|
|
2066
|
+
...props
|
|
2067
|
+
}, ref) => {
|
|
2068
|
+
const {
|
|
2069
|
+
colors
|
|
2070
|
+
} = useTheme();
|
|
2071
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2072
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2073
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2074
|
+
};
|
|
2075
|
+
forwardRef(SvgStar);
|
|
2076
|
+
const SvgStethoscope = ({
|
|
2077
|
+
fill: fillProp = "currentColor",
|
|
2078
|
+
stroke: strokeProp,
|
|
2079
|
+
...props
|
|
2080
|
+
}, ref) => {
|
|
2081
|
+
const {
|
|
2082
|
+
colors
|
|
2083
|
+
} = useTheme();
|
|
2084
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2085
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2086
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2087
|
+
};
|
|
2088
|
+
forwardRef(SvgStethoscope);
|
|
2089
|
+
const SvgStop = ({
|
|
2090
|
+
fill: fillProp = "currentColor",
|
|
2091
|
+
stroke: strokeProp,
|
|
2092
|
+
...props
|
|
2093
|
+
}, ref) => {
|
|
2094
|
+
const {
|
|
2095
|
+
colors
|
|
2096
|
+
} = useTheme();
|
|
2097
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2098
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2099
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2100
|
+
};
|
|
2101
|
+
forwardRef(SvgStop);
|
|
2102
|
+
const SvgStore = ({
|
|
2103
|
+
fill: fillProp = "currentColor",
|
|
2104
|
+
stroke: strokeProp,
|
|
2105
|
+
...props
|
|
2106
|
+
}, ref) => {
|
|
2107
|
+
const {
|
|
2108
|
+
colors
|
|
2109
|
+
} = useTheme();
|
|
2110
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2111
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2112
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2113
|
+
};
|
|
2114
|
+
forwardRef(SvgStore);
|
|
2115
|
+
const SvgStrikeThrough = ({
|
|
2116
|
+
fill: fillProp = "currentColor",
|
|
2117
|
+
stroke: strokeProp,
|
|
2118
|
+
...props
|
|
2119
|
+
}, ref) => {
|
|
2120
|
+
const {
|
|
2121
|
+
colors
|
|
2122
|
+
} = useTheme();
|
|
2123
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2124
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2125
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2126
|
+
};
|
|
2127
|
+
forwardRef(SvgStrikeThrough);
|
|
2128
|
+
const SvgSun = ({
|
|
2129
|
+
fill: fillProp = "currentColor",
|
|
2130
|
+
stroke: strokeProp,
|
|
2131
|
+
...props
|
|
2132
|
+
}, ref) => {
|
|
2133
|
+
const {
|
|
2134
|
+
colors
|
|
2135
|
+
} = useTheme();
|
|
2136
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2137
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2138
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2139
|
+
};
|
|
2140
|
+
forwardRef(SvgSun);
|
|
2141
|
+
const SvgTelevision = ({
|
|
2142
|
+
fill: fillProp = "currentColor",
|
|
2143
|
+
stroke: strokeProp,
|
|
2144
|
+
...props
|
|
2145
|
+
}, ref) => {
|
|
2146
|
+
const {
|
|
2147
|
+
colors
|
|
2148
|
+
} = useTheme();
|
|
2149
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2150
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2151
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2152
|
+
};
|
|
2153
|
+
forwardRef(SvgTelevision);
|
|
2154
|
+
const SvgThumbDown = ({
|
|
2155
|
+
fill: fillProp = "currentColor",
|
|
2156
|
+
stroke: strokeProp,
|
|
2157
|
+
...props
|
|
2158
|
+
}, ref) => {
|
|
2159
|
+
const {
|
|
2160
|
+
colors
|
|
2161
|
+
} = useTheme();
|
|
2162
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2163
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2164
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2165
|
+
};
|
|
2166
|
+
forwardRef(SvgThumbDown);
|
|
2167
|
+
const SvgThumbUp = ({
|
|
2168
|
+
fill: fillProp = "currentColor",
|
|
2169
|
+
stroke: strokeProp,
|
|
2170
|
+
...props
|
|
2171
|
+
}, ref) => {
|
|
2172
|
+
const {
|
|
2173
|
+
colors
|
|
2174
|
+
} = useTheme();
|
|
2175
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2176
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2177
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2178
|
+
};
|
|
2179
|
+
forwardRef(SvgThumbUp);
|
|
2180
|
+
const SvgTrain = ({
|
|
2181
|
+
fill: fillProp = "currentColor",
|
|
2182
|
+
stroke: strokeProp,
|
|
2183
|
+
...props
|
|
2184
|
+
}, ref) => {
|
|
2185
|
+
const {
|
|
2186
|
+
colors
|
|
2187
|
+
} = useTheme();
|
|
2188
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2189
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2190
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2191
|
+
};
|
|
2192
|
+
forwardRef(SvgTrain);
|
|
2193
|
+
const SvgTrash = ({
|
|
2194
|
+
fill: fillProp = "currentColor",
|
|
2195
|
+
stroke: strokeProp,
|
|
2196
|
+
...props
|
|
2197
|
+
}, ref) => {
|
|
2198
|
+
const {
|
|
2199
|
+
colors
|
|
2200
|
+
} = useTheme();
|
|
2201
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2202
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2203
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2204
|
+
};
|
|
2205
|
+
forwardRef(SvgTrash);
|
|
2206
|
+
const SvgTrendUp = ({
|
|
2207
|
+
fill: fillProp = "currentColor",
|
|
2208
|
+
stroke: strokeProp,
|
|
2209
|
+
...props
|
|
2210
|
+
}, ref) => {
|
|
2211
|
+
const {
|
|
2212
|
+
colors
|
|
2213
|
+
} = useTheme();
|
|
2214
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2215
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2216
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 16", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2217
|
+
};
|
|
2218
|
+
forwardRef(SvgTrendUp);
|
|
2219
|
+
const SvgTyphoon = ({
|
|
2220
|
+
fill: fillProp = "currentColor",
|
|
2221
|
+
stroke: strokeProp,
|
|
2222
|
+
...props
|
|
2223
|
+
}, ref) => {
|
|
2224
|
+
const {
|
|
2225
|
+
colors
|
|
2226
|
+
} = useTheme();
|
|
2227
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2228
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2229
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2230
|
+
};
|
|
2231
|
+
forwardRef(SvgTyphoon);
|
|
2232
|
+
const SvgUnderline = ({
|
|
2233
|
+
fill: fillProp = "currentColor",
|
|
2234
|
+
stroke: strokeProp,
|
|
2235
|
+
...props
|
|
2236
|
+
}, ref) => {
|
|
2237
|
+
const {
|
|
2238
|
+
colors
|
|
2239
|
+
} = useTheme();
|
|
2240
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2241
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2242
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2243
|
+
};
|
|
2244
|
+
forwardRef(SvgUnderline);
|
|
2245
|
+
const SvgUpload = ({
|
|
2246
|
+
fill: fillProp = "currentColor",
|
|
2247
|
+
stroke: strokeProp,
|
|
2248
|
+
...props
|
|
2249
|
+
}, ref) => {
|
|
2250
|
+
const {
|
|
2251
|
+
colors
|
|
2252
|
+
} = useTheme();
|
|
2253
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2254
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2255
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2256
|
+
};
|
|
2257
|
+
forwardRef(SvgUpload);
|
|
2258
|
+
const SvgUser = ({
|
|
2259
|
+
fill: fillProp = "currentColor",
|
|
2260
|
+
stroke: strokeProp,
|
|
2261
|
+
...props
|
|
2262
|
+
}, ref) => {
|
|
2263
|
+
const {
|
|
2264
|
+
colors
|
|
2265
|
+
} = useTheme();
|
|
2266
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2267
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2268
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2269
|
+
};
|
|
2270
|
+
forwardRef(SvgUser);
|
|
2271
|
+
const SvgVolumeMute = ({
|
|
2272
|
+
fill: fillProp = "currentColor",
|
|
2273
|
+
stroke: strokeProp,
|
|
2274
|
+
...props
|
|
2275
|
+
}, ref) => {
|
|
2276
|
+
const {
|
|
2277
|
+
colors
|
|
2278
|
+
} = useTheme();
|
|
2279
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2280
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2281
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2282
|
+
};
|
|
2283
|
+
forwardRef(SvgVolumeMute);
|
|
2284
|
+
const SvgVolumeUp = ({
|
|
2285
|
+
fill: fillProp = "currentColor",
|
|
2286
|
+
stroke: strokeProp,
|
|
2287
|
+
...props
|
|
2288
|
+
}, ref) => {
|
|
2289
|
+
const {
|
|
2290
|
+
colors
|
|
2291
|
+
} = useTheme();
|
|
2292
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2293
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2294
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2295
|
+
};
|
|
2296
|
+
forwardRef(SvgVolumeUp);
|
|
2297
|
+
const SvgWalk = ({
|
|
2298
|
+
fill: fillProp = "currentColor",
|
|
2299
|
+
stroke: strokeProp,
|
|
2300
|
+
...props
|
|
2301
|
+
}, ref) => {
|
|
2302
|
+
const {
|
|
2303
|
+
colors
|
|
2304
|
+
} = useTheme();
|
|
2305
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2306
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2307
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2308
|
+
};
|
|
2309
|
+
forwardRef(SvgWalk);
|
|
2310
|
+
const SvgWarningCircle = ({
|
|
2311
|
+
fill: fillProp = "currentColor",
|
|
2312
|
+
stroke: strokeProp,
|
|
2313
|
+
...props
|
|
2314
|
+
}, ref) => {
|
|
2315
|
+
const {
|
|
2316
|
+
colors
|
|
2317
|
+
} = useTheme();
|
|
2318
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2319
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2320
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2321
|
+
};
|
|
2322
|
+
const ForwardRef$2 = forwardRef(SvgWarningCircle);
|
|
2323
|
+
const SvgWebhooks = ({
|
|
2324
|
+
fill: fillProp = "currentColor",
|
|
2325
|
+
stroke: strokeProp,
|
|
2326
|
+
...props
|
|
2327
|
+
}, ref) => {
|
|
2328
|
+
const {
|
|
2329
|
+
colors
|
|
2330
|
+
} = useTheme();
|
|
2331
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2332
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2333
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 16", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2334
|
+
};
|
|
2335
|
+
forwardRef(SvgWebhooks);
|
|
2336
|
+
const SvgWheelchair = ({
|
|
2337
|
+
fill: fillProp = "currentColor",
|
|
2338
|
+
stroke: strokeProp,
|
|
2339
|
+
...props
|
|
2340
|
+
}, ref) => {
|
|
2341
|
+
const {
|
|
2342
|
+
colors
|
|
2343
|
+
} = useTheme();
|
|
2344
|
+
const fill = fillProp && fillProp in colors ? colors[fillProp] : fillProp;
|
|
2345
|
+
const stroke = strokeProp && strokeProp in colors ? colors[strokeProp] : strokeProp;
|
|
2346
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: 16, height: 16, fill, stroke, ref, ...props, children: /* @__PURE__ */ 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" }) });
|
|
2347
|
+
};
|
|
2348
|
+
forwardRef(SvgWheelchair);
|
|
2349
|
+
const PluginIcon = () => /* @__PURE__ */ jsx(ForwardRef$1Q, {});
|
|
2350
|
+
const prefixPluginTranslations = (data, pluginId) => {
|
|
2351
|
+
const prefixed = {};
|
|
2352
|
+
Object.keys(data).forEach((key) => {
|
|
2353
|
+
prefixed[`${pluginId}.${key}`] = data[key];
|
|
2354
|
+
});
|
|
2355
|
+
return prefixed;
|
|
2356
|
+
};
|
|
2357
|
+
const index = {
|
|
2358
|
+
/**
|
|
2359
|
+
* Register the plugin and custom field
|
|
2360
|
+
*/
|
|
2361
|
+
register(app) {
|
|
2362
|
+
app.registerPlugin({
|
|
2363
|
+
id: PLUGIN_ID,
|
|
2364
|
+
initializer: Initializer,
|
|
2365
|
+
isReady: false,
|
|
2366
|
+
name: PLUGIN_ID
|
|
2367
|
+
});
|
|
2368
|
+
app.customFields.register({
|
|
2369
|
+
name: "richtext",
|
|
2370
|
+
pluginId: PLUGIN_ID,
|
|
2371
|
+
// Must match server-side plugin name
|
|
2372
|
+
type: "text",
|
|
2373
|
+
// Data type - stores JSON as text
|
|
2374
|
+
intlLabel: {
|
|
2375
|
+
id: `${PLUGIN_ID}.richtext.label`,
|
|
2376
|
+
defaultMessage: "Magic Editor X"
|
|
2377
|
+
},
|
|
2378
|
+
intlDescription: {
|
|
2379
|
+
id: `${PLUGIN_ID}.richtext.description`,
|
|
2380
|
+
defaultMessage: "Advanced block-based rich text editor powered by Editor.js"
|
|
2381
|
+
},
|
|
2382
|
+
// Icon must be a React component, not a promise
|
|
2383
|
+
icon: PluginIcon,
|
|
2384
|
+
// Input component for Content Manager
|
|
2385
|
+
components: {
|
|
2386
|
+
Input: async () => import("./index-BRVqbnOb.mjs").then((module) => ({
|
|
2387
|
+
default: module.default
|
|
2388
|
+
}))
|
|
2389
|
+
},
|
|
2390
|
+
// Options for Content-Type Builder
|
|
2391
|
+
options: {
|
|
2392
|
+
base: [
|
|
2393
|
+
{
|
|
2394
|
+
sectionTitle: {
|
|
2395
|
+
id: `${PLUGIN_ID}.richtext.section.editor`,
|
|
2396
|
+
defaultMessage: "Editor Settings"
|
|
2397
|
+
},
|
|
2398
|
+
items: [
|
|
2399
|
+
{
|
|
2400
|
+
intlLabel: {
|
|
2401
|
+
id: `${PLUGIN_ID}.richtext.placeholder.label`,
|
|
2402
|
+
defaultMessage: "Placeholder"
|
|
2403
|
+
},
|
|
2404
|
+
name: "options.placeholder",
|
|
2405
|
+
type: "text",
|
|
2406
|
+
defaultValue: "Start writing your content...",
|
|
2407
|
+
description: {
|
|
2408
|
+
id: `${PLUGIN_ID}.richtext.placeholder.description`,
|
|
2409
|
+
defaultMessage: "Placeholder text shown when editor is empty"
|
|
2410
|
+
}
|
|
2411
|
+
}
|
|
2412
|
+
]
|
|
2413
|
+
}
|
|
2414
|
+
],
|
|
2415
|
+
advanced: [
|
|
2416
|
+
{
|
|
2417
|
+
sectionTitle: {
|
|
2418
|
+
id: `${PLUGIN_ID}.richtext.section.advanced`,
|
|
2419
|
+
defaultMessage: "Advanced Settings"
|
|
2420
|
+
},
|
|
2421
|
+
items: [
|
|
2422
|
+
{
|
|
2423
|
+
intlLabel: {
|
|
2424
|
+
id: `${PLUGIN_ID}.richtext.minHeight.label`,
|
|
2425
|
+
defaultMessage: "Minimum Height"
|
|
2426
|
+
},
|
|
2427
|
+
name: "options.minHeight",
|
|
2428
|
+
type: "number",
|
|
2429
|
+
defaultValue: 300,
|
|
2430
|
+
description: {
|
|
2431
|
+
id: `${PLUGIN_ID}.richtext.minHeight.description`,
|
|
2432
|
+
defaultMessage: "Minimum height of the editor in pixels"
|
|
2433
|
+
}
|
|
2434
|
+
}
|
|
2435
|
+
]
|
|
2436
|
+
}
|
|
2437
|
+
]
|
|
2438
|
+
}
|
|
2439
|
+
});
|
|
2440
|
+
app.addMenuLink({
|
|
2441
|
+
to: `plugins/${PLUGIN_ID}`,
|
|
2442
|
+
icon: PluginIcon,
|
|
2443
|
+
intlLabel: {
|
|
2444
|
+
id: `${PLUGIN_ID}.plugin.name`,
|
|
2445
|
+
defaultMessage: "Magic Editor X"
|
|
2446
|
+
},
|
|
2447
|
+
// Use lazy import without async wrapper to avoid deprecation warning
|
|
2448
|
+
Component: () => import("./App-B1FgOsWa.mjs"),
|
|
2449
|
+
permissions: []
|
|
2450
|
+
});
|
|
2451
|
+
app.createSettingSection(
|
|
2452
|
+
{
|
|
2453
|
+
intlLabel: { id: `${PLUGIN_ID}.settings.section`, defaultMessage: "Magic Editor X" },
|
|
2454
|
+
id: PLUGIN_ID,
|
|
2455
|
+
// path relative to /settings
|
|
2456
|
+
to: PLUGIN_ID
|
|
2457
|
+
},
|
|
2458
|
+
[
|
|
2459
|
+
{
|
|
2460
|
+
intlLabel: {
|
|
2461
|
+
id: `${PLUGIN_ID}.settings.upgrade`,
|
|
2462
|
+
defaultMessage: "Upgrade"
|
|
2463
|
+
},
|
|
2464
|
+
id: "upgrade",
|
|
2465
|
+
// relative path (no leading slash)
|
|
2466
|
+
to: `${PLUGIN_ID}/upgrade`,
|
|
2467
|
+
Component: () => import("./LicensePage-CWH-AFR-.mjs")
|
|
2468
|
+
},
|
|
2469
|
+
{
|
|
2470
|
+
intlLabel: {
|
|
2471
|
+
id: `${PLUGIN_ID}.settings.license`,
|
|
2472
|
+
defaultMessage: "License Details"
|
|
2473
|
+
},
|
|
2474
|
+
id: "license",
|
|
2475
|
+
// relative path (no leading slash)
|
|
2476
|
+
to: `${PLUGIN_ID}/license`,
|
|
2477
|
+
Component: () => import("./Settings-D-V2MLVm.mjs")
|
|
2478
|
+
}
|
|
2479
|
+
]
|
|
2480
|
+
);
|
|
2481
|
+
console.log("[Magic Editor X] Custom field registered in admin panel");
|
|
2482
|
+
},
|
|
2483
|
+
/**
|
|
2484
|
+
* Bootstrap the plugin
|
|
2485
|
+
*/
|
|
2486
|
+
async bootstrap(app) {
|
|
2487
|
+
const { default: LiveCollaborationPanel } = await import("./LiveCollaborationPanel-ryjcDAA7.mjs");
|
|
2488
|
+
try {
|
|
2489
|
+
const contentManagerPlugin = app.getPlugin("content-manager");
|
|
2490
|
+
if (contentManagerPlugin && contentManagerPlugin.apis) {
|
|
2491
|
+
contentManagerPlugin.apis.addEditViewSidePanel([LiveCollaborationPanel]);
|
|
2492
|
+
console.log("[Magic Editor X] [SUCCESS] LiveCollaborationPanel injected into sidebar");
|
|
2493
|
+
}
|
|
2494
|
+
} catch (error) {
|
|
2495
|
+
console.error("[Magic Editor X] Error injecting panel:", error);
|
|
2496
|
+
}
|
|
2497
|
+
console.log("[Magic Editor X] Plugin bootstrapped");
|
|
2498
|
+
},
|
|
2499
|
+
/**
|
|
2500
|
+
* Register translations
|
|
2501
|
+
*/
|
|
2502
|
+
async registerTrads({ locales }) {
|
|
2503
|
+
const importedTrads = await Promise.all(
|
|
2504
|
+
locales.map(async (locale) => {
|
|
2505
|
+
try {
|
|
2506
|
+
const { default: data } = await __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "./translations/de.json": () => import("./de-CSrHZWEb.mjs"), "./translations/en.json": () => import("./en-DuQun2v4.mjs"), "./translations/es.json": () => import("./es-DEB0CA8S.mjs"), "./translations/fr.json": () => import("./fr-Bqkhvdx2.mjs"), "./translations/pt.json": () => import("./pt-BMoYltav.mjs") }), `./translations/${locale}.json`, 3);
|
|
2507
|
+
return { data: prefixPluginTranslations(data, PLUGIN_ID), locale };
|
|
2508
|
+
} catch {
|
|
2509
|
+
try {
|
|
2510
|
+
const { default: data } = await import("./en-DuQun2v4.mjs");
|
|
2511
|
+
return { data: prefixPluginTranslations(data, PLUGIN_ID), locale };
|
|
2512
|
+
} catch {
|
|
2513
|
+
return { data: {}, locale };
|
|
2514
|
+
}
|
|
2515
|
+
}
|
|
2516
|
+
})
|
|
2517
|
+
);
|
|
2518
|
+
return importedTrads;
|
|
2519
|
+
}
|
|
2520
|
+
};
|
|
2521
|
+
export {
|
|
2522
|
+
ForwardRef$2o as F,
|
|
2523
|
+
PLUGIN_ID as P,
|
|
2524
|
+
ForwardRef$26 as a,
|
|
2525
|
+
ForwardRef$o as b,
|
|
2526
|
+
ForwardRef$1g as c,
|
|
2527
|
+
ForwardRef$y as d,
|
|
2528
|
+
ForwardRef$2n as e,
|
|
2529
|
+
ForwardRef$2 as f,
|
|
2530
|
+
ForwardRef$1l as g,
|
|
2531
|
+
ForwardRef$1b as h,
|
|
2532
|
+
ForwardRef$2v as i,
|
|
2533
|
+
ForwardRef$1U as j,
|
|
2534
|
+
ForwardRef$2j as k,
|
|
2535
|
+
ForwardRef$12 as l,
|
|
2536
|
+
ForwardRef$2k as m,
|
|
2537
|
+
ForwardRef$2x as n,
|
|
2538
|
+
ForwardRef$2h as o,
|
|
2539
|
+
ForwardRef$v as p,
|
|
2540
|
+
index as q
|
|
2541
|
+
};
|