editor-shell 0.2.0 → 0.4.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/README.md +61 -2
- package/dist/{chunk-WJIHF6PY.js → chunk-3VMFPQGZ.js} +4 -61
- package/dist/chunk-3VMFPQGZ.js.map +1 -0
- package/dist/chunk-UB3KPBFP.js +1263 -0
- package/dist/chunk-UB3KPBFP.js.map +1 -0
- package/dist/gold/gold.css +133 -0
- package/dist/gold/index.d.ts +223 -0
- package/dist/gold/index.js +199 -0
- package/dist/gold/index.js.map +1 -0
- package/dist/icons/index.d.ts +189 -0
- package/dist/icons/index.js +3 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/rail/index.d.ts +3 -29
- package/dist/rail/index.js +2 -1
- package/package.json +23 -5
- package/dist/chunk-WJIHF6PY.js.map +0 -1
|
@@ -0,0 +1,1263 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
// src/icons/index.tsx
|
|
4
|
+
var iconMeanings = {
|
|
5
|
+
"trash": "Delete",
|
|
6
|
+
"duplicate": "Duplicate \u2014 owner pick 08-20, two-pages form",
|
|
7
|
+
"copy-to-page": "Copy to another page",
|
|
8
|
+
"close": "Close / dismiss",
|
|
9
|
+
"add": "Add / plus",
|
|
10
|
+
"check": "Checkmark / success",
|
|
11
|
+
"undo": "Undo",
|
|
12
|
+
"redo": "Redo",
|
|
13
|
+
"rename": "Rename / edit",
|
|
14
|
+
"search": "Search",
|
|
15
|
+
"eye": "Show",
|
|
16
|
+
"eye-off": "Hide",
|
|
17
|
+
"external": "Leaves this surface",
|
|
18
|
+
"drag": "Drag handle",
|
|
19
|
+
"lock": "Locked",
|
|
20
|
+
"revert": "Revert to inherited",
|
|
21
|
+
"chevron": "Disclosure \u2014 rotate for direction",
|
|
22
|
+
"send": "Send",
|
|
23
|
+
"page": "Page AND the Pages rail \u2014 owner ruling 08-20, one meaning",
|
|
24
|
+
"layers": "Layers",
|
|
25
|
+
"styles": "Styles",
|
|
26
|
+
"media": "Media",
|
|
27
|
+
"sitemap": "Sitemap",
|
|
28
|
+
"image": "Image / photo",
|
|
29
|
+
"grid": "Grid",
|
|
30
|
+
"cart": "Cart",
|
|
31
|
+
"desktop": "Desktop",
|
|
32
|
+
"tablet": "Tablet",
|
|
33
|
+
"phone": "Phone",
|
|
34
|
+
"warning": "Warning",
|
|
35
|
+
"type": "Text marker \u2014 the T",
|
|
36
|
+
"wheel": "Wheel",
|
|
37
|
+
"chat": "Chat",
|
|
38
|
+
"bell": "Notification bell",
|
|
39
|
+
"template": "Template / bookmark",
|
|
40
|
+
"clock": "clock",
|
|
41
|
+
"play": "play",
|
|
42
|
+
"align-left": "align left",
|
|
43
|
+
"align-center": "align center",
|
|
44
|
+
"opacity": "opacity",
|
|
45
|
+
"padding-top": "padding top",
|
|
46
|
+
"padding-bottom": "padding bottom",
|
|
47
|
+
"width": "width",
|
|
48
|
+
"anchor": "anchor",
|
|
49
|
+
"hash": "hash",
|
|
50
|
+
"columns": "columns",
|
|
51
|
+
"list": "list",
|
|
52
|
+
"text-lines": "text lines",
|
|
53
|
+
"text-size": "text size",
|
|
54
|
+
"text-small": "text small",
|
|
55
|
+
"button": "button",
|
|
56
|
+
"link": "link",
|
|
57
|
+
"tag": "tag",
|
|
58
|
+
"rotate": "rotate",
|
|
59
|
+
"square": "square",
|
|
60
|
+
"drop": "drop",
|
|
61
|
+
"plus-minus": "plus minus",
|
|
62
|
+
"dollar": "dollar",
|
|
63
|
+
"note": "note"
|
|
64
|
+
};
|
|
65
|
+
function TrashIcon({ size = 18, ...rest }) {
|
|
66
|
+
return /* @__PURE__ */ jsxs(
|
|
67
|
+
"svg",
|
|
68
|
+
{
|
|
69
|
+
width: size,
|
|
70
|
+
height: size,
|
|
71
|
+
viewBox: "0 0 24 24",
|
|
72
|
+
fill: "none",
|
|
73
|
+
stroke: "currentColor",
|
|
74
|
+
strokeWidth: 1.7,
|
|
75
|
+
strokeLinecap: "round",
|
|
76
|
+
strokeLinejoin: "round",
|
|
77
|
+
"aria-hidden": "true",
|
|
78
|
+
...rest,
|
|
79
|
+
children: [
|
|
80
|
+
/* @__PURE__ */ jsx("path", { d: "M3 6h18M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2m2 0v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
81
|
+
/* @__PURE__ */ jsx("path", { d: "M10 11v6M14 11v6" })
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
function DuplicateIcon({ size = 18, ...rest }) {
|
|
87
|
+
return /* @__PURE__ */ jsx(
|
|
88
|
+
"svg",
|
|
89
|
+
{
|
|
90
|
+
width: size,
|
|
91
|
+
height: size,
|
|
92
|
+
viewBox: "0 0 24 24",
|
|
93
|
+
fill: "none",
|
|
94
|
+
stroke: "currentColor",
|
|
95
|
+
strokeWidth: 1.7,
|
|
96
|
+
strokeLinecap: "round",
|
|
97
|
+
strokeLinejoin: "round",
|
|
98
|
+
"aria-hidden": "true",
|
|
99
|
+
...rest,
|
|
100
|
+
children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15.75 17.25v3.375c0 .621-.504 1.125-1.125 1.125h-9.5a1.125 1.125 0 01-1.125-1.125V7.875c0-.621.504-1.125 1.125-1.125H6.75a9.06 9.06 0 011.5.124m7.5 10.376h3.375c.621 0 1.125-.504 1.125-1.125V11.25c0-4.46-3.243-8.161-7.5-8.876a9.06 9.06 0 00-1.5-.124H9.375c-.621 0-1.125.504-1.125 1.125v3.5m7.5 10.375H9.375a1.125 1.125 0 01-1.125-1.125v-9.25m12 6.625v-1.875a3.375 3.375 0 00-3.375-3.375h-1.5a1.125 1.125 0 01-1.125-1.125v-1.5a3.375 3.375 0 00-3.375-3.375H9.75" })
|
|
101
|
+
}
|
|
102
|
+
);
|
|
103
|
+
}
|
|
104
|
+
function CopyToPageIcon({ size = 18, ...rest }) {
|
|
105
|
+
return /* @__PURE__ */ jsxs(
|
|
106
|
+
"svg",
|
|
107
|
+
{
|
|
108
|
+
width: size,
|
|
109
|
+
height: size,
|
|
110
|
+
viewBox: "0 0 24 24",
|
|
111
|
+
fill: "none",
|
|
112
|
+
stroke: "currentColor",
|
|
113
|
+
strokeWidth: 1.7,
|
|
114
|
+
strokeLinecap: "round",
|
|
115
|
+
strokeLinejoin: "round",
|
|
116
|
+
"aria-hidden": "true",
|
|
117
|
+
...rest,
|
|
118
|
+
children: [
|
|
119
|
+
/* @__PURE__ */ jsx("path", { d: "M13 4H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3" }),
|
|
120
|
+
/* @__PURE__ */ jsx("path", { d: "M14 12h8" }),
|
|
121
|
+
/* @__PURE__ */ jsx("path", { d: "m18 8 4 4-4 4" })
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
);
|
|
125
|
+
}
|
|
126
|
+
function CloseIcon({ size = 18, ...rest }) {
|
|
127
|
+
return /* @__PURE__ */ jsx(
|
|
128
|
+
"svg",
|
|
129
|
+
{
|
|
130
|
+
width: size,
|
|
131
|
+
height: size,
|
|
132
|
+
viewBox: "0 0 24 24",
|
|
133
|
+
fill: "none",
|
|
134
|
+
stroke: "currentColor",
|
|
135
|
+
strokeWidth: 1.7,
|
|
136
|
+
strokeLinecap: "round",
|
|
137
|
+
strokeLinejoin: "round",
|
|
138
|
+
"aria-hidden": "true",
|
|
139
|
+
...rest,
|
|
140
|
+
children: /* @__PURE__ */ jsx("path", { d: "M6 6l12 12M18 6L6 18" })
|
|
141
|
+
}
|
|
142
|
+
);
|
|
143
|
+
}
|
|
144
|
+
function AddIcon({ size = 18, ...rest }) {
|
|
145
|
+
return /* @__PURE__ */ jsx(
|
|
146
|
+
"svg",
|
|
147
|
+
{
|
|
148
|
+
width: size,
|
|
149
|
+
height: size,
|
|
150
|
+
viewBox: "0 0 24 24",
|
|
151
|
+
fill: "none",
|
|
152
|
+
stroke: "currentColor",
|
|
153
|
+
strokeWidth: 1.7,
|
|
154
|
+
strokeLinecap: "round",
|
|
155
|
+
strokeLinejoin: "round",
|
|
156
|
+
"aria-hidden": "true",
|
|
157
|
+
...rest,
|
|
158
|
+
children: /* @__PURE__ */ jsx("path", { d: "M12 5v14M5 12h14" })
|
|
159
|
+
}
|
|
160
|
+
);
|
|
161
|
+
}
|
|
162
|
+
function CheckIcon({ size = 18, ...rest }) {
|
|
163
|
+
return /* @__PURE__ */ jsx(
|
|
164
|
+
"svg",
|
|
165
|
+
{
|
|
166
|
+
width: size,
|
|
167
|
+
height: size,
|
|
168
|
+
viewBox: "0 0 24 24",
|
|
169
|
+
fill: "none",
|
|
170
|
+
stroke: "currentColor",
|
|
171
|
+
strokeWidth: 1.7,
|
|
172
|
+
strokeLinecap: "round",
|
|
173
|
+
strokeLinejoin: "round",
|
|
174
|
+
"aria-hidden": "true",
|
|
175
|
+
...rest,
|
|
176
|
+
children: /* @__PURE__ */ jsx("path", { d: "M20 6 9 17l-5-5" })
|
|
177
|
+
}
|
|
178
|
+
);
|
|
179
|
+
}
|
|
180
|
+
function UndoIcon({ size = 18, ...rest }) {
|
|
181
|
+
return /* @__PURE__ */ jsxs(
|
|
182
|
+
"svg",
|
|
183
|
+
{
|
|
184
|
+
width: size,
|
|
185
|
+
height: size,
|
|
186
|
+
viewBox: "0 0 24 24",
|
|
187
|
+
fill: "none",
|
|
188
|
+
stroke: "currentColor",
|
|
189
|
+
strokeWidth: 1.7,
|
|
190
|
+
strokeLinecap: "round",
|
|
191
|
+
strokeLinejoin: "round",
|
|
192
|
+
"aria-hidden": "true",
|
|
193
|
+
...rest,
|
|
194
|
+
children: [
|
|
195
|
+
/* @__PURE__ */ jsx("path", { d: "M9 14L4 9l5-5" }),
|
|
196
|
+
/* @__PURE__ */ jsx("path", { d: "M4 9h11a5 5 0 015 5v0a5 5 0 01-5 5H9" })
|
|
197
|
+
]
|
|
198
|
+
}
|
|
199
|
+
);
|
|
200
|
+
}
|
|
201
|
+
function RedoIcon({ size = 18, ...rest }) {
|
|
202
|
+
return /* @__PURE__ */ jsxs(
|
|
203
|
+
"svg",
|
|
204
|
+
{
|
|
205
|
+
width: size,
|
|
206
|
+
height: size,
|
|
207
|
+
viewBox: "0 0 24 24",
|
|
208
|
+
fill: "none",
|
|
209
|
+
stroke: "currentColor",
|
|
210
|
+
strokeWidth: 1.7,
|
|
211
|
+
strokeLinecap: "round",
|
|
212
|
+
strokeLinejoin: "round",
|
|
213
|
+
"aria-hidden": "true",
|
|
214
|
+
...rest,
|
|
215
|
+
children: [
|
|
216
|
+
/* @__PURE__ */ jsx("path", { d: "M15 14l5-5-5-5" }),
|
|
217
|
+
/* @__PURE__ */ jsx("path", { d: "M20 9H9a5 5 0 00-5 5v0a5 5 0 005 5h6" })
|
|
218
|
+
]
|
|
219
|
+
}
|
|
220
|
+
);
|
|
221
|
+
}
|
|
222
|
+
function RenameIcon({ size = 18, ...rest }) {
|
|
223
|
+
return /* @__PURE__ */ jsxs(
|
|
224
|
+
"svg",
|
|
225
|
+
{
|
|
226
|
+
width: size,
|
|
227
|
+
height: size,
|
|
228
|
+
viewBox: "0 0 24 24",
|
|
229
|
+
fill: "none",
|
|
230
|
+
stroke: "currentColor",
|
|
231
|
+
strokeWidth: 1.7,
|
|
232
|
+
strokeLinecap: "round",
|
|
233
|
+
strokeLinejoin: "round",
|
|
234
|
+
"aria-hidden": "true",
|
|
235
|
+
...rest,
|
|
236
|
+
children: [
|
|
237
|
+
/* @__PURE__ */ jsx("path", { d: "M12 20h9" }),
|
|
238
|
+
/* @__PURE__ */ jsx("path", { d: "M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4 12.5-12.5z" })
|
|
239
|
+
]
|
|
240
|
+
}
|
|
241
|
+
);
|
|
242
|
+
}
|
|
243
|
+
function SearchIcon({ size = 18, ...rest }) {
|
|
244
|
+
return /* @__PURE__ */ jsxs(
|
|
245
|
+
"svg",
|
|
246
|
+
{
|
|
247
|
+
width: size,
|
|
248
|
+
height: size,
|
|
249
|
+
viewBox: "0 0 24 24",
|
|
250
|
+
fill: "none",
|
|
251
|
+
stroke: "currentColor",
|
|
252
|
+
strokeWidth: 1.7,
|
|
253
|
+
strokeLinecap: "round",
|
|
254
|
+
strokeLinejoin: "round",
|
|
255
|
+
"aria-hidden": "true",
|
|
256
|
+
...rest,
|
|
257
|
+
children: [
|
|
258
|
+
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "7" }),
|
|
259
|
+
/* @__PURE__ */ jsx("path", { d: "M21 21l-3.8-3.8" })
|
|
260
|
+
]
|
|
261
|
+
}
|
|
262
|
+
);
|
|
263
|
+
}
|
|
264
|
+
function EyeIcon({ size = 18, ...rest }) {
|
|
265
|
+
return /* @__PURE__ */ jsxs(
|
|
266
|
+
"svg",
|
|
267
|
+
{
|
|
268
|
+
width: size,
|
|
269
|
+
height: size,
|
|
270
|
+
viewBox: "0 0 24 24",
|
|
271
|
+
fill: "none",
|
|
272
|
+
stroke: "currentColor",
|
|
273
|
+
strokeWidth: 1.7,
|
|
274
|
+
strokeLinecap: "round",
|
|
275
|
+
strokeLinejoin: "round",
|
|
276
|
+
"aria-hidden": "true",
|
|
277
|
+
...rest,
|
|
278
|
+
children: [
|
|
279
|
+
/* @__PURE__ */ jsx("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7S2 12 2 12z" }),
|
|
280
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "2.6" })
|
|
281
|
+
]
|
|
282
|
+
}
|
|
283
|
+
);
|
|
284
|
+
}
|
|
285
|
+
function EyeOffIcon({ size = 18, ...rest }) {
|
|
286
|
+
return /* @__PURE__ */ jsx(
|
|
287
|
+
"svg",
|
|
288
|
+
{
|
|
289
|
+
width: size,
|
|
290
|
+
height: size,
|
|
291
|
+
viewBox: "0 0 24 24",
|
|
292
|
+
fill: "none",
|
|
293
|
+
stroke: "currentColor",
|
|
294
|
+
strokeWidth: 1.7,
|
|
295
|
+
strokeLinecap: "round",
|
|
296
|
+
strokeLinejoin: "round",
|
|
297
|
+
"aria-hidden": "true",
|
|
298
|
+
...rest,
|
|
299
|
+
children: /* @__PURE__ */ jsx("path", { d: "M3 3l18 18M10.6 10.6a2 2 0 002.8 2.8M9.4 5.2A9.7 9.7 0 0112 5c7 0 10 7 10 7a16 16 0 01-3.6 4.4M6.1 6.1A16 16 0 002 12s3 7 10 7a9.6 9.6 0 004.1-.9" })
|
|
300
|
+
}
|
|
301
|
+
);
|
|
302
|
+
}
|
|
303
|
+
function ExternalIcon({ size = 18, ...rest }) {
|
|
304
|
+
return /* @__PURE__ */ jsxs(
|
|
305
|
+
"svg",
|
|
306
|
+
{
|
|
307
|
+
width: size,
|
|
308
|
+
height: size,
|
|
309
|
+
viewBox: "0 0 24 24",
|
|
310
|
+
fill: "none",
|
|
311
|
+
stroke: "currentColor",
|
|
312
|
+
strokeWidth: 1.7,
|
|
313
|
+
strokeLinecap: "round",
|
|
314
|
+
strokeLinejoin: "round",
|
|
315
|
+
"aria-hidden": "true",
|
|
316
|
+
...rest,
|
|
317
|
+
children: [
|
|
318
|
+
/* @__PURE__ */ jsx("path", { d: "M14 4h6v6" }),
|
|
319
|
+
/* @__PURE__ */ jsx("path", { d: "M20 4l-9 9" }),
|
|
320
|
+
/* @__PURE__ */ jsx("path", { d: "M19 14v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h5" })
|
|
321
|
+
]
|
|
322
|
+
}
|
|
323
|
+
);
|
|
324
|
+
}
|
|
325
|
+
function DragIcon({ size = 18, ...rest }) {
|
|
326
|
+
return /* @__PURE__ */ jsxs(
|
|
327
|
+
"svg",
|
|
328
|
+
{
|
|
329
|
+
width: size,
|
|
330
|
+
height: size,
|
|
331
|
+
viewBox: "0 0 24 24",
|
|
332
|
+
fill: "currentColor",
|
|
333
|
+
strokeLinecap: "round",
|
|
334
|
+
strokeLinejoin: "round",
|
|
335
|
+
"aria-hidden": "true",
|
|
336
|
+
...rest,
|
|
337
|
+
children: [
|
|
338
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "6", r: "1.5" }),
|
|
339
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "6", r: "1.5" }),
|
|
340
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "12", r: "1.5" }),
|
|
341
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "12", r: "1.5" }),
|
|
342
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "18", r: "1.5" }),
|
|
343
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "18", r: "1.5" })
|
|
344
|
+
]
|
|
345
|
+
}
|
|
346
|
+
);
|
|
347
|
+
}
|
|
348
|
+
function LockIcon({ size = 18, ...rest }) {
|
|
349
|
+
return /* @__PURE__ */ jsxs(
|
|
350
|
+
"svg",
|
|
351
|
+
{
|
|
352
|
+
width: size,
|
|
353
|
+
height: size,
|
|
354
|
+
viewBox: "0 0 24 24",
|
|
355
|
+
fill: "none",
|
|
356
|
+
stroke: "currentColor",
|
|
357
|
+
strokeWidth: 1.7,
|
|
358
|
+
strokeLinecap: "round",
|
|
359
|
+
strokeLinejoin: "round",
|
|
360
|
+
"aria-hidden": "true",
|
|
361
|
+
...rest,
|
|
362
|
+
children: [
|
|
363
|
+
/* @__PURE__ */ jsx("rect", { x: "5", y: "11", width: "14", height: "9", rx: "2" }),
|
|
364
|
+
/* @__PURE__ */ jsx("path", { d: "M8 11V7a4 4 0 018 0v4" })
|
|
365
|
+
]
|
|
366
|
+
}
|
|
367
|
+
);
|
|
368
|
+
}
|
|
369
|
+
function RevertIcon({ size = 18, ...rest }) {
|
|
370
|
+
return /* @__PURE__ */ jsxs(
|
|
371
|
+
"svg",
|
|
372
|
+
{
|
|
373
|
+
width: size,
|
|
374
|
+
height: size,
|
|
375
|
+
viewBox: "0 0 24 24",
|
|
376
|
+
fill: "none",
|
|
377
|
+
stroke: "currentColor",
|
|
378
|
+
strokeWidth: 1.7,
|
|
379
|
+
strokeLinecap: "round",
|
|
380
|
+
strokeLinejoin: "round",
|
|
381
|
+
"aria-hidden": "true",
|
|
382
|
+
...rest,
|
|
383
|
+
children: [
|
|
384
|
+
/* @__PURE__ */ jsx("path", { d: "M4 9h11a5 5 0 010 10h-6" }),
|
|
385
|
+
/* @__PURE__ */ jsx("path", { d: "M8 5L4 9l4 4" })
|
|
386
|
+
]
|
|
387
|
+
}
|
|
388
|
+
);
|
|
389
|
+
}
|
|
390
|
+
function ChevronIcon({ size = 18, ...rest }) {
|
|
391
|
+
return /* @__PURE__ */ jsx(
|
|
392
|
+
"svg",
|
|
393
|
+
{
|
|
394
|
+
width: size,
|
|
395
|
+
height: size,
|
|
396
|
+
viewBox: "0 0 24 24",
|
|
397
|
+
fill: "none",
|
|
398
|
+
stroke: "currentColor",
|
|
399
|
+
strokeWidth: 1.7,
|
|
400
|
+
strokeLinecap: "round",
|
|
401
|
+
strokeLinejoin: "round",
|
|
402
|
+
"aria-hidden": "true",
|
|
403
|
+
...rest,
|
|
404
|
+
children: /* @__PURE__ */ jsx("path", { d: "M9 6l6 6-6 6" })
|
|
405
|
+
}
|
|
406
|
+
);
|
|
407
|
+
}
|
|
408
|
+
function SendIcon({ size = 18, ...rest }) {
|
|
409
|
+
return /* @__PURE__ */ jsxs(
|
|
410
|
+
"svg",
|
|
411
|
+
{
|
|
412
|
+
width: size,
|
|
413
|
+
height: size,
|
|
414
|
+
viewBox: "0 0 24 24",
|
|
415
|
+
fill: "none",
|
|
416
|
+
stroke: "currentColor",
|
|
417
|
+
strokeWidth: 1.7,
|
|
418
|
+
strokeLinecap: "round",
|
|
419
|
+
strokeLinejoin: "round",
|
|
420
|
+
"aria-hidden": "true",
|
|
421
|
+
...rest,
|
|
422
|
+
children: [
|
|
423
|
+
/* @__PURE__ */ jsx("path", { d: "m22 2-7 20-4-9-9-4Z" }),
|
|
424
|
+
/* @__PURE__ */ jsx("path", { d: "M22 2 11 13" })
|
|
425
|
+
]
|
|
426
|
+
}
|
|
427
|
+
);
|
|
428
|
+
}
|
|
429
|
+
function PageIcon({ size = 18, ...rest }) {
|
|
430
|
+
return /* @__PURE__ */ jsxs(
|
|
431
|
+
"svg",
|
|
432
|
+
{
|
|
433
|
+
width: size,
|
|
434
|
+
height: size,
|
|
435
|
+
viewBox: "0 0 24 24",
|
|
436
|
+
fill: "none",
|
|
437
|
+
stroke: "currentColor",
|
|
438
|
+
strokeWidth: 1.7,
|
|
439
|
+
strokeLinecap: "round",
|
|
440
|
+
strokeLinejoin: "round",
|
|
441
|
+
"aria-hidden": "true",
|
|
442
|
+
...rest,
|
|
443
|
+
children: [
|
|
444
|
+
/* @__PURE__ */ jsx("path", { d: "M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8z" }),
|
|
445
|
+
/* @__PURE__ */ jsx("path", { d: "M14 3v5h5" }),
|
|
446
|
+
/* @__PURE__ */ jsx("path", { d: "M9 13h6M9 17h6" })
|
|
447
|
+
]
|
|
448
|
+
}
|
|
449
|
+
);
|
|
450
|
+
}
|
|
451
|
+
function LayersIcon({ size = 18, ...rest }) {
|
|
452
|
+
return /* @__PURE__ */ jsxs(
|
|
453
|
+
"svg",
|
|
454
|
+
{
|
|
455
|
+
width: size,
|
|
456
|
+
height: size,
|
|
457
|
+
viewBox: "0 0 24 24",
|
|
458
|
+
fill: "none",
|
|
459
|
+
stroke: "currentColor",
|
|
460
|
+
strokeWidth: 1.7,
|
|
461
|
+
strokeLinecap: "round",
|
|
462
|
+
strokeLinejoin: "round",
|
|
463
|
+
"aria-hidden": "true",
|
|
464
|
+
...rest,
|
|
465
|
+
children: [
|
|
466
|
+
/* @__PURE__ */ jsx("path", { d: "M12 3l9 5-9 5-9-5 9-5z" }),
|
|
467
|
+
/* @__PURE__ */ jsx("path", { d: "M3 13l9 5 9-5" })
|
|
468
|
+
]
|
|
469
|
+
}
|
|
470
|
+
);
|
|
471
|
+
}
|
|
472
|
+
function StylesIcon({ size = 18, ...rest }) {
|
|
473
|
+
return /* @__PURE__ */ jsxs(
|
|
474
|
+
"svg",
|
|
475
|
+
{
|
|
476
|
+
width: size,
|
|
477
|
+
height: size,
|
|
478
|
+
viewBox: "0 0 24 24",
|
|
479
|
+
fill: "none",
|
|
480
|
+
stroke: "currentColor",
|
|
481
|
+
strokeWidth: 1.7,
|
|
482
|
+
strokeLinecap: "round",
|
|
483
|
+
strokeLinejoin: "round",
|
|
484
|
+
"aria-hidden": "true",
|
|
485
|
+
...rest,
|
|
486
|
+
children: [
|
|
487
|
+
/* @__PURE__ */ jsx("path", { d: "M12 3c-4.5 0-8 3.4-8 7.6 0 3 2.2 4.9 4.8 4.9 1 0 1.6.7 1.6 1.5 0 .5-.3.9-.3 1.4 0 .9.8 1.6 1.9 1.6 4.4 0 8-3.6 8-8C20 6.4 16.5 3 12 3z" }),
|
|
488
|
+
/* @__PURE__ */ jsx("circle", { cx: "8.5", cy: "10", r: "0.6", fill: "currentColor" }),
|
|
489
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "7.8", r: "0.6", fill: "currentColor" }),
|
|
490
|
+
/* @__PURE__ */ jsx("circle", { cx: "15.5", cy: "10", r: "0.6", fill: "currentColor" })
|
|
491
|
+
]
|
|
492
|
+
}
|
|
493
|
+
);
|
|
494
|
+
}
|
|
495
|
+
function MediaIcon({ size = 18, ...rest }) {
|
|
496
|
+
return /* @__PURE__ */ jsxs(
|
|
497
|
+
"svg",
|
|
498
|
+
{
|
|
499
|
+
width: size,
|
|
500
|
+
height: size,
|
|
501
|
+
viewBox: "0 0 24 24",
|
|
502
|
+
fill: "none",
|
|
503
|
+
stroke: "currentColor",
|
|
504
|
+
strokeWidth: 1.7,
|
|
505
|
+
strokeLinecap: "round",
|
|
506
|
+
strokeLinejoin: "round",
|
|
507
|
+
"aria-hidden": "true",
|
|
508
|
+
...rest,
|
|
509
|
+
children: [
|
|
510
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
511
|
+
/* @__PURE__ */ jsx("circle", { cx: "8.5", cy: "9.5", r: "1.5" }),
|
|
512
|
+
/* @__PURE__ */ jsx("path", { d: "M21 16l-5-5-6 6" })
|
|
513
|
+
]
|
|
514
|
+
}
|
|
515
|
+
);
|
|
516
|
+
}
|
|
517
|
+
function SitemapIcon({ size = 18, ...rest }) {
|
|
518
|
+
return /* @__PURE__ */ jsxs(
|
|
519
|
+
"svg",
|
|
520
|
+
{
|
|
521
|
+
width: size,
|
|
522
|
+
height: size,
|
|
523
|
+
viewBox: "0 0 24 24",
|
|
524
|
+
fill: "none",
|
|
525
|
+
stroke: "currentColor",
|
|
526
|
+
strokeWidth: 1.7,
|
|
527
|
+
strokeLinecap: "round",
|
|
528
|
+
strokeLinejoin: "round",
|
|
529
|
+
"aria-hidden": "true",
|
|
530
|
+
...rest,
|
|
531
|
+
children: [
|
|
532
|
+
/* @__PURE__ */ jsx("rect", { x: "9", y: "3", width: "6", height: "4.5", rx: "1" }),
|
|
533
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "16.5", width: "6", height: "4.5", rx: "1" }),
|
|
534
|
+
/* @__PURE__ */ jsx("rect", { x: "15", y: "16.5", width: "6", height: "4.5", rx: "1" }),
|
|
535
|
+
/* @__PURE__ */ jsx("path", { d: "M12 7.5v4M6 16.5v-2.5h12v2.5M18 16.5v-2.5" })
|
|
536
|
+
]
|
|
537
|
+
}
|
|
538
|
+
);
|
|
539
|
+
}
|
|
540
|
+
function ImageIcon({ size = 18, ...rest }) {
|
|
541
|
+
return /* @__PURE__ */ jsxs(
|
|
542
|
+
"svg",
|
|
543
|
+
{
|
|
544
|
+
width: size,
|
|
545
|
+
height: size,
|
|
546
|
+
viewBox: "0 0 24 24",
|
|
547
|
+
fill: "none",
|
|
548
|
+
stroke: "currentColor",
|
|
549
|
+
strokeWidth: 1.7,
|
|
550
|
+
strokeLinecap: "round",
|
|
551
|
+
strokeLinejoin: "round",
|
|
552
|
+
"aria-hidden": "true",
|
|
553
|
+
...rest,
|
|
554
|
+
children: [
|
|
555
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2" }),
|
|
556
|
+
/* @__PURE__ */ jsx("circle", { cx: "8.5", cy: "8.5", r: "1.5" }),
|
|
557
|
+
/* @__PURE__ */ jsx("path", { d: "M21 15l-5-5L5 21" })
|
|
558
|
+
]
|
|
559
|
+
}
|
|
560
|
+
);
|
|
561
|
+
}
|
|
562
|
+
function GridIcon({ size = 18, ...rest }) {
|
|
563
|
+
return /* @__PURE__ */ jsxs(
|
|
564
|
+
"svg",
|
|
565
|
+
{
|
|
566
|
+
width: size,
|
|
567
|
+
height: size,
|
|
568
|
+
viewBox: "0 0 24 24",
|
|
569
|
+
fill: "none",
|
|
570
|
+
stroke: "currentColor",
|
|
571
|
+
strokeWidth: 1.7,
|
|
572
|
+
strokeLinecap: "round",
|
|
573
|
+
strokeLinejoin: "round",
|
|
574
|
+
"aria-hidden": "true",
|
|
575
|
+
...rest,
|
|
576
|
+
children: [
|
|
577
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "3", width: "7", height: "7", rx: "1" }),
|
|
578
|
+
/* @__PURE__ */ jsx("rect", { x: "14", y: "3", width: "7", height: "7", rx: "1" }),
|
|
579
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "14", width: "7", height: "7", rx: "1" }),
|
|
580
|
+
/* @__PURE__ */ jsx("rect", { x: "14", y: "14", width: "7", height: "7", rx: "1" })
|
|
581
|
+
]
|
|
582
|
+
}
|
|
583
|
+
);
|
|
584
|
+
}
|
|
585
|
+
function CartIcon({ size = 18, ...rest }) {
|
|
586
|
+
return /* @__PURE__ */ jsxs(
|
|
587
|
+
"svg",
|
|
588
|
+
{
|
|
589
|
+
width: size,
|
|
590
|
+
height: size,
|
|
591
|
+
viewBox: "0 0 24 24",
|
|
592
|
+
fill: "none",
|
|
593
|
+
stroke: "currentColor",
|
|
594
|
+
strokeWidth: 1.7,
|
|
595
|
+
strokeLinecap: "round",
|
|
596
|
+
strokeLinejoin: "round",
|
|
597
|
+
"aria-hidden": "true",
|
|
598
|
+
...rest,
|
|
599
|
+
children: [
|
|
600
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "20", r: "1.3" }),
|
|
601
|
+
/* @__PURE__ */ jsx("circle", { cx: "18", cy: "20", r: "1.3" }),
|
|
602
|
+
/* @__PURE__ */ jsx("path", { d: "M2.5 3.5h3l2.3 11.3a1.6 1.6 0 0 0 1.6 1.3h8.1a1.6 1.6 0 0 0 1.6-1.2L21 7H6" })
|
|
603
|
+
]
|
|
604
|
+
}
|
|
605
|
+
);
|
|
606
|
+
}
|
|
607
|
+
function DesktopIcon({ size = 18, ...rest }) {
|
|
608
|
+
return /* @__PURE__ */ jsxs(
|
|
609
|
+
"svg",
|
|
610
|
+
{
|
|
611
|
+
width: size,
|
|
612
|
+
height: size,
|
|
613
|
+
viewBox: "0 0 24 24",
|
|
614
|
+
fill: "none",
|
|
615
|
+
stroke: "currentColor",
|
|
616
|
+
strokeWidth: 1.7,
|
|
617
|
+
strokeLinecap: "round",
|
|
618
|
+
strokeLinejoin: "round",
|
|
619
|
+
"aria-hidden": "true",
|
|
620
|
+
...rest,
|
|
621
|
+
children: [
|
|
622
|
+
/* @__PURE__ */ jsx("rect", { x: "2", y: "4", width: "20", height: "13", rx: "2" }),
|
|
623
|
+
/* @__PURE__ */ jsx("path", { d: "M8 21h8M12 17v4" })
|
|
624
|
+
]
|
|
625
|
+
}
|
|
626
|
+
);
|
|
627
|
+
}
|
|
628
|
+
function TabletIcon({ size = 18, ...rest }) {
|
|
629
|
+
return /* @__PURE__ */ jsxs(
|
|
630
|
+
"svg",
|
|
631
|
+
{
|
|
632
|
+
width: size,
|
|
633
|
+
height: size,
|
|
634
|
+
viewBox: "0 0 24 24",
|
|
635
|
+
fill: "none",
|
|
636
|
+
stroke: "currentColor",
|
|
637
|
+
strokeWidth: 1.7,
|
|
638
|
+
strokeLinecap: "round",
|
|
639
|
+
strokeLinejoin: "round",
|
|
640
|
+
"aria-hidden": "true",
|
|
641
|
+
...rest,
|
|
642
|
+
children: [
|
|
643
|
+
/* @__PURE__ */ jsx("rect", { x: "5", y: "2", width: "14", height: "20", rx: "2" }),
|
|
644
|
+
/* @__PURE__ */ jsx("path", { d: "M11 18.5h2" })
|
|
645
|
+
]
|
|
646
|
+
}
|
|
647
|
+
);
|
|
648
|
+
}
|
|
649
|
+
function PhoneIcon({ size = 18, ...rest }) {
|
|
650
|
+
return /* @__PURE__ */ jsxs(
|
|
651
|
+
"svg",
|
|
652
|
+
{
|
|
653
|
+
width: size,
|
|
654
|
+
height: size,
|
|
655
|
+
viewBox: "0 0 24 24",
|
|
656
|
+
fill: "none",
|
|
657
|
+
stroke: "currentColor",
|
|
658
|
+
strokeWidth: 1.7,
|
|
659
|
+
strokeLinecap: "round",
|
|
660
|
+
strokeLinejoin: "round",
|
|
661
|
+
"aria-hidden": "true",
|
|
662
|
+
...rest,
|
|
663
|
+
children: [
|
|
664
|
+
/* @__PURE__ */ jsx("rect", { x: "7", y: "2", width: "10", height: "20", rx: "2.5" }),
|
|
665
|
+
/* @__PURE__ */ jsx("path", { d: "M11 18.5h2" })
|
|
666
|
+
]
|
|
667
|
+
}
|
|
668
|
+
);
|
|
669
|
+
}
|
|
670
|
+
function WarningIcon({ size = 18, ...rest }) {
|
|
671
|
+
return /* @__PURE__ */ jsx(
|
|
672
|
+
"svg",
|
|
673
|
+
{
|
|
674
|
+
width: size,
|
|
675
|
+
height: size,
|
|
676
|
+
viewBox: "0 0 24 24",
|
|
677
|
+
fill: "none",
|
|
678
|
+
stroke: "currentColor",
|
|
679
|
+
strokeWidth: 1.7,
|
|
680
|
+
strokeLinecap: "round",
|
|
681
|
+
strokeLinejoin: "round",
|
|
682
|
+
"aria-hidden": "true",
|
|
683
|
+
...rest,
|
|
684
|
+
children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126ZM12 15.75h.007v.008H12v-.008Z" })
|
|
685
|
+
}
|
|
686
|
+
);
|
|
687
|
+
}
|
|
688
|
+
function TypeIcon({ size = 18, ...rest }) {
|
|
689
|
+
return /* @__PURE__ */ jsxs(
|
|
690
|
+
"svg",
|
|
691
|
+
{
|
|
692
|
+
width: size,
|
|
693
|
+
height: size,
|
|
694
|
+
viewBox: "0 0 24 24",
|
|
695
|
+
fill: "none",
|
|
696
|
+
stroke: "currentColor",
|
|
697
|
+
strokeWidth: 1.7,
|
|
698
|
+
strokeLinecap: "round",
|
|
699
|
+
strokeLinejoin: "round",
|
|
700
|
+
"aria-hidden": "true",
|
|
701
|
+
...rest,
|
|
702
|
+
children: [
|
|
703
|
+
/* @__PURE__ */ jsx("polyline", { points: "4 7 4 4 20 4 20 7" }),
|
|
704
|
+
/* @__PURE__ */ jsx("line", { x1: "9", x2: "15", y1: "20", y2: "20" }),
|
|
705
|
+
/* @__PURE__ */ jsx("line", { x1: "12", x2: "12", y1: "4", y2: "20" })
|
|
706
|
+
]
|
|
707
|
+
}
|
|
708
|
+
);
|
|
709
|
+
}
|
|
710
|
+
function WheelIcon({ size = 18, ...rest }) {
|
|
711
|
+
return /* @__PURE__ */ jsxs(
|
|
712
|
+
"svg",
|
|
713
|
+
{
|
|
714
|
+
width: size,
|
|
715
|
+
height: size,
|
|
716
|
+
viewBox: "0 0 24 24",
|
|
717
|
+
fill: "none",
|
|
718
|
+
stroke: "currentColor",
|
|
719
|
+
strokeWidth: 1.7,
|
|
720
|
+
strokeLinecap: "round",
|
|
721
|
+
strokeLinejoin: "round",
|
|
722
|
+
"aria-hidden": "true",
|
|
723
|
+
...rest,
|
|
724
|
+
children: [
|
|
725
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9" }),
|
|
726
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "3" }),
|
|
727
|
+
/* @__PURE__ */ jsx("path", { d: "M12 3v4M12 17v4M3 12h4M17 12h4" })
|
|
728
|
+
]
|
|
729
|
+
}
|
|
730
|
+
);
|
|
731
|
+
}
|
|
732
|
+
function ChatIcon({ size = 18, ...rest }) {
|
|
733
|
+
return /* @__PURE__ */ jsx(
|
|
734
|
+
"svg",
|
|
735
|
+
{
|
|
736
|
+
width: size,
|
|
737
|
+
height: size,
|
|
738
|
+
viewBox: "0 0 24 24",
|
|
739
|
+
fill: "none",
|
|
740
|
+
stroke: "currentColor",
|
|
741
|
+
strokeWidth: 1.7,
|
|
742
|
+
strokeLinecap: "round",
|
|
743
|
+
strokeLinejoin: "round",
|
|
744
|
+
"aria-hidden": "true",
|
|
745
|
+
...rest,
|
|
746
|
+
children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M8.25 12h7.5M8.25 8.25h7.5M3 12c0 4.556 4.03 8.25 9 8.25a9.76 9.76 0 002.555-.337l3.945 1.087-1.087-3.945A8.19 8.19 0 0021 12c0-4.556-4.03-8.25-9-8.25S3 7.444 3 12z" })
|
|
747
|
+
}
|
|
748
|
+
);
|
|
749
|
+
}
|
|
750
|
+
function BellIcon({ size = 18, ...rest }) {
|
|
751
|
+
return /* @__PURE__ */ jsxs(
|
|
752
|
+
"svg",
|
|
753
|
+
{
|
|
754
|
+
width: size,
|
|
755
|
+
height: size,
|
|
756
|
+
viewBox: "0 0 24 24",
|
|
757
|
+
fill: "none",
|
|
758
|
+
stroke: "currentColor",
|
|
759
|
+
strokeWidth: 1.7,
|
|
760
|
+
strokeLinecap: "round",
|
|
761
|
+
strokeLinejoin: "round",
|
|
762
|
+
"aria-hidden": "true",
|
|
763
|
+
...rest,
|
|
764
|
+
children: [
|
|
765
|
+
/* @__PURE__ */ jsx("path", { d: "M18 8a6 6 0 1 0-12 0c0 7-3 9-3 9h18s-3-2-3-9" }),
|
|
766
|
+
/* @__PURE__ */ jsx("path", { d: "M13.7 21a2 2 0 0 1-3.4 0" })
|
|
767
|
+
]
|
|
768
|
+
}
|
|
769
|
+
);
|
|
770
|
+
}
|
|
771
|
+
function TemplateIcon({ size = 18, ...rest }) {
|
|
772
|
+
return /* @__PURE__ */ jsx(
|
|
773
|
+
"svg",
|
|
774
|
+
{
|
|
775
|
+
width: size,
|
|
776
|
+
height: size,
|
|
777
|
+
viewBox: "0 0 24 24",
|
|
778
|
+
fill: "none",
|
|
779
|
+
stroke: "currentColor",
|
|
780
|
+
strokeWidth: 1.7,
|
|
781
|
+
strokeLinecap: "round",
|
|
782
|
+
strokeLinejoin: "round",
|
|
783
|
+
"aria-hidden": "true",
|
|
784
|
+
...rest,
|
|
785
|
+
children: /* @__PURE__ */ jsx("path", { d: "M6 3h12a1 1 0 0 1 1 1v17l-7-4-7 4V4a1 1 0 0 1 1-1z" })
|
|
786
|
+
}
|
|
787
|
+
);
|
|
788
|
+
}
|
|
789
|
+
function ClockIcon({ size = 18, ...rest }) {
|
|
790
|
+
return /* @__PURE__ */ jsxs(
|
|
791
|
+
"svg",
|
|
792
|
+
{
|
|
793
|
+
width: size,
|
|
794
|
+
height: size,
|
|
795
|
+
viewBox: "0 0 24 24",
|
|
796
|
+
fill: "none",
|
|
797
|
+
stroke: "currentColor",
|
|
798
|
+
strokeWidth: 1.7,
|
|
799
|
+
strokeLinecap: "round",
|
|
800
|
+
strokeLinejoin: "round",
|
|
801
|
+
"aria-hidden": "true",
|
|
802
|
+
...rest,
|
|
803
|
+
children: [
|
|
804
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "8.5" }),
|
|
805
|
+
/* @__PURE__ */ jsx("path", { d: "M12 7.5V12l3 2" })
|
|
806
|
+
]
|
|
807
|
+
}
|
|
808
|
+
);
|
|
809
|
+
}
|
|
810
|
+
function PlayIcon({ size = 18, ...rest }) {
|
|
811
|
+
return /* @__PURE__ */ jsx(
|
|
812
|
+
"svg",
|
|
813
|
+
{
|
|
814
|
+
width: size,
|
|
815
|
+
height: size,
|
|
816
|
+
viewBox: "0 0 24 24",
|
|
817
|
+
fill: "none",
|
|
818
|
+
stroke: "currentColor",
|
|
819
|
+
strokeWidth: 1.7,
|
|
820
|
+
strokeLinecap: "round",
|
|
821
|
+
strokeLinejoin: "round",
|
|
822
|
+
"aria-hidden": "true",
|
|
823
|
+
...rest,
|
|
824
|
+
children: /* @__PURE__ */ jsx("path", { d: "M8 5.5v13l11-6.5z" })
|
|
825
|
+
}
|
|
826
|
+
);
|
|
827
|
+
}
|
|
828
|
+
function AlignLeftIcon({ size = 18, ...rest }) {
|
|
829
|
+
return /* @__PURE__ */ jsx(
|
|
830
|
+
"svg",
|
|
831
|
+
{
|
|
832
|
+
width: size,
|
|
833
|
+
height: size,
|
|
834
|
+
viewBox: "0 0 24 24",
|
|
835
|
+
fill: "none",
|
|
836
|
+
stroke: "currentColor",
|
|
837
|
+
strokeWidth: 1.7,
|
|
838
|
+
strokeLinecap: "round",
|
|
839
|
+
strokeLinejoin: "round",
|
|
840
|
+
"aria-hidden": "true",
|
|
841
|
+
...rest,
|
|
842
|
+
children: /* @__PURE__ */ jsx("path", { d: "M4 6.5h12M4 12h16M4 17.5h9" })
|
|
843
|
+
}
|
|
844
|
+
);
|
|
845
|
+
}
|
|
846
|
+
function AlignCenterIcon({ size = 18, ...rest }) {
|
|
847
|
+
return /* @__PURE__ */ jsx(
|
|
848
|
+
"svg",
|
|
849
|
+
{
|
|
850
|
+
width: size,
|
|
851
|
+
height: size,
|
|
852
|
+
viewBox: "0 0 24 24",
|
|
853
|
+
fill: "none",
|
|
854
|
+
stroke: "currentColor",
|
|
855
|
+
strokeWidth: 1.7,
|
|
856
|
+
strokeLinecap: "round",
|
|
857
|
+
strokeLinejoin: "round",
|
|
858
|
+
"aria-hidden": "true",
|
|
859
|
+
...rest,
|
|
860
|
+
children: /* @__PURE__ */ jsx("path", { d: "M6 6.5h12M4 12h16M7.5 17.5h9" })
|
|
861
|
+
}
|
|
862
|
+
);
|
|
863
|
+
}
|
|
864
|
+
function OpacityIcon({ size = 18, ...rest }) {
|
|
865
|
+
return /* @__PURE__ */ jsxs(
|
|
866
|
+
"svg",
|
|
867
|
+
{
|
|
868
|
+
width: size,
|
|
869
|
+
height: size,
|
|
870
|
+
viewBox: "0 0 24 24",
|
|
871
|
+
fill: "none",
|
|
872
|
+
stroke: "currentColor",
|
|
873
|
+
strokeWidth: 1.7,
|
|
874
|
+
strokeLinecap: "round",
|
|
875
|
+
strokeLinejoin: "round",
|
|
876
|
+
"aria-hidden": "true",
|
|
877
|
+
...rest,
|
|
878
|
+
children: [
|
|
879
|
+
/* @__PURE__ */ jsx("rect", { x: "4.5", y: "4.5", width: "10", height: "10", rx: "2" }),
|
|
880
|
+
/* @__PURE__ */ jsx("rect", { x: "9.5", y: "9.5", width: "10", height: "10", rx: "2" })
|
|
881
|
+
]
|
|
882
|
+
}
|
|
883
|
+
);
|
|
884
|
+
}
|
|
885
|
+
function PaddingTopIcon({ size = 18, ...rest }) {
|
|
886
|
+
return /* @__PURE__ */ jsxs(
|
|
887
|
+
"svg",
|
|
888
|
+
{
|
|
889
|
+
width: size,
|
|
890
|
+
height: size,
|
|
891
|
+
viewBox: "0 0 24 24",
|
|
892
|
+
fill: "none",
|
|
893
|
+
stroke: "currentColor",
|
|
894
|
+
strokeWidth: 1.7,
|
|
895
|
+
strokeLinecap: "round",
|
|
896
|
+
strokeLinejoin: "round",
|
|
897
|
+
"aria-hidden": "true",
|
|
898
|
+
...rest,
|
|
899
|
+
children: [
|
|
900
|
+
/* @__PURE__ */ jsx("path", { d: "M4 4.5h16" }),
|
|
901
|
+
/* @__PURE__ */ jsx("rect", { x: "7", y: "9.5", width: "10", height: "10", rx: "1.5" })
|
|
902
|
+
]
|
|
903
|
+
}
|
|
904
|
+
);
|
|
905
|
+
}
|
|
906
|
+
function PaddingBottomIcon({ size = 18, ...rest }) {
|
|
907
|
+
return /* @__PURE__ */ jsxs(
|
|
908
|
+
"svg",
|
|
909
|
+
{
|
|
910
|
+
width: size,
|
|
911
|
+
height: size,
|
|
912
|
+
viewBox: "0 0 24 24",
|
|
913
|
+
fill: "none",
|
|
914
|
+
stroke: "currentColor",
|
|
915
|
+
strokeWidth: 1.7,
|
|
916
|
+
strokeLinecap: "round",
|
|
917
|
+
strokeLinejoin: "round",
|
|
918
|
+
"aria-hidden": "true",
|
|
919
|
+
...rest,
|
|
920
|
+
children: [
|
|
921
|
+
/* @__PURE__ */ jsx("path", { d: "M4 19.5h16" }),
|
|
922
|
+
/* @__PURE__ */ jsx("rect", { x: "7", y: "4", width: "10", height: "10", rx: "1.5" })
|
|
923
|
+
]
|
|
924
|
+
}
|
|
925
|
+
);
|
|
926
|
+
}
|
|
927
|
+
function WidthIcon({ size = 18, ...rest }) {
|
|
928
|
+
return /* @__PURE__ */ jsx(
|
|
929
|
+
"svg",
|
|
930
|
+
{
|
|
931
|
+
width: size,
|
|
932
|
+
height: size,
|
|
933
|
+
viewBox: "0 0 24 24",
|
|
934
|
+
fill: "none",
|
|
935
|
+
stroke: "currentColor",
|
|
936
|
+
strokeWidth: 1.7,
|
|
937
|
+
strokeLinecap: "round",
|
|
938
|
+
strokeLinejoin: "round",
|
|
939
|
+
"aria-hidden": "true",
|
|
940
|
+
...rest,
|
|
941
|
+
children: /* @__PURE__ */ jsx("path", { d: "M4 12h16M7.5 8.5L4 12l3.5 3.5M16.5 8.5L20 12l-3.5 3.5" })
|
|
942
|
+
}
|
|
943
|
+
);
|
|
944
|
+
}
|
|
945
|
+
function AnchorIcon({ size = 18, ...rest }) {
|
|
946
|
+
return /* @__PURE__ */ jsxs(
|
|
947
|
+
"svg",
|
|
948
|
+
{
|
|
949
|
+
width: size,
|
|
950
|
+
height: size,
|
|
951
|
+
viewBox: "0 0 24 24",
|
|
952
|
+
fill: "none",
|
|
953
|
+
stroke: "currentColor",
|
|
954
|
+
strokeWidth: 1.7,
|
|
955
|
+
strokeLinecap: "round",
|
|
956
|
+
strokeLinejoin: "round",
|
|
957
|
+
"aria-hidden": "true",
|
|
958
|
+
...rest,
|
|
959
|
+
children: [
|
|
960
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "6", r: "2.5" }),
|
|
961
|
+
/* @__PURE__ */ jsx("path", { d: "M12 8.5V21M4.5 13a7.5 7.5 0 0 0 15 0M4.5 13H7M17 13h2.5" })
|
|
962
|
+
]
|
|
963
|
+
}
|
|
964
|
+
);
|
|
965
|
+
}
|
|
966
|
+
function HashIcon({ size = 18, ...rest }) {
|
|
967
|
+
return /* @__PURE__ */ jsx(
|
|
968
|
+
"svg",
|
|
969
|
+
{
|
|
970
|
+
width: size,
|
|
971
|
+
height: size,
|
|
972
|
+
viewBox: "0 0 24 24",
|
|
973
|
+
fill: "none",
|
|
974
|
+
stroke: "currentColor",
|
|
975
|
+
strokeWidth: 1.7,
|
|
976
|
+
strokeLinecap: "round",
|
|
977
|
+
strokeLinejoin: "round",
|
|
978
|
+
"aria-hidden": "true",
|
|
979
|
+
...rest,
|
|
980
|
+
children: /* @__PURE__ */ jsx("path", { d: "M9 4L7.5 20M16.5 4L15 20M5 9.5h15M4.5 15h15" })
|
|
981
|
+
}
|
|
982
|
+
);
|
|
983
|
+
}
|
|
984
|
+
function ColumnsIcon({ size = 18, ...rest }) {
|
|
985
|
+
return /* @__PURE__ */ jsxs(
|
|
986
|
+
"svg",
|
|
987
|
+
{
|
|
988
|
+
width: size,
|
|
989
|
+
height: size,
|
|
990
|
+
viewBox: "0 0 24 24",
|
|
991
|
+
fill: "none",
|
|
992
|
+
stroke: "currentColor",
|
|
993
|
+
strokeWidth: 1.7,
|
|
994
|
+
strokeLinecap: "round",
|
|
995
|
+
strokeLinejoin: "round",
|
|
996
|
+
"aria-hidden": "true",
|
|
997
|
+
...rest,
|
|
998
|
+
children: [
|
|
999
|
+
/* @__PURE__ */ jsx("rect", { x: "4", y: "5", width: "4", height: "14", rx: "1" }),
|
|
1000
|
+
/* @__PURE__ */ jsx("rect", { x: "10", y: "5", width: "4", height: "14", rx: "1" }),
|
|
1001
|
+
/* @__PURE__ */ jsx("rect", { x: "16", y: "5", width: "4", height: "14", rx: "1" })
|
|
1002
|
+
]
|
|
1003
|
+
}
|
|
1004
|
+
);
|
|
1005
|
+
}
|
|
1006
|
+
function ListIcon({ size = 18, ...rest }) {
|
|
1007
|
+
return /* @__PURE__ */ jsxs(
|
|
1008
|
+
"svg",
|
|
1009
|
+
{
|
|
1010
|
+
width: size,
|
|
1011
|
+
height: size,
|
|
1012
|
+
viewBox: "0 0 24 24",
|
|
1013
|
+
fill: "none",
|
|
1014
|
+
stroke: "currentColor",
|
|
1015
|
+
strokeWidth: 1.7,
|
|
1016
|
+
strokeLinecap: "round",
|
|
1017
|
+
strokeLinejoin: "round",
|
|
1018
|
+
"aria-hidden": "true",
|
|
1019
|
+
...rest,
|
|
1020
|
+
children: [
|
|
1021
|
+
/* @__PURE__ */ jsx("path", { d: "M9 6h11M9 12h11M9 18h11" }),
|
|
1022
|
+
/* @__PURE__ */ jsx("circle", { cx: "5", cy: "6", r: "1" }),
|
|
1023
|
+
/* @__PURE__ */ jsx("circle", { cx: "5", cy: "12", r: "1" }),
|
|
1024
|
+
/* @__PURE__ */ jsx("circle", { cx: "5", cy: "18", r: "1" })
|
|
1025
|
+
]
|
|
1026
|
+
}
|
|
1027
|
+
);
|
|
1028
|
+
}
|
|
1029
|
+
function TextLinesIcon({ size = 18, ...rest }) {
|
|
1030
|
+
return /* @__PURE__ */ jsx(
|
|
1031
|
+
"svg",
|
|
1032
|
+
{
|
|
1033
|
+
width: size,
|
|
1034
|
+
height: size,
|
|
1035
|
+
viewBox: "0 0 24 24",
|
|
1036
|
+
fill: "none",
|
|
1037
|
+
stroke: "currentColor",
|
|
1038
|
+
strokeWidth: 1.7,
|
|
1039
|
+
strokeLinecap: "round",
|
|
1040
|
+
strokeLinejoin: "round",
|
|
1041
|
+
"aria-hidden": "true",
|
|
1042
|
+
...rest,
|
|
1043
|
+
children: /* @__PURE__ */ jsx("path", { d: "M4 7h16M4 12h16M4 17h10" })
|
|
1044
|
+
}
|
|
1045
|
+
);
|
|
1046
|
+
}
|
|
1047
|
+
function TextSizeIcon({ size = 18, ...rest }) {
|
|
1048
|
+
return /* @__PURE__ */ jsx(
|
|
1049
|
+
"svg",
|
|
1050
|
+
{
|
|
1051
|
+
width: size,
|
|
1052
|
+
height: size,
|
|
1053
|
+
viewBox: "0 0 24 24",
|
|
1054
|
+
fill: "none",
|
|
1055
|
+
stroke: "currentColor",
|
|
1056
|
+
strokeWidth: 1.7,
|
|
1057
|
+
strokeLinecap: "round",
|
|
1058
|
+
strokeLinejoin: "round",
|
|
1059
|
+
"aria-hidden": "true",
|
|
1060
|
+
...rest,
|
|
1061
|
+
children: /* @__PURE__ */ jsx("path", { d: "M4 7h9M8.5 7v12M15 13h6M18 13v6" })
|
|
1062
|
+
}
|
|
1063
|
+
);
|
|
1064
|
+
}
|
|
1065
|
+
function TextSmallIcon({ size = 18, ...rest }) {
|
|
1066
|
+
return /* @__PURE__ */ jsx(
|
|
1067
|
+
"svg",
|
|
1068
|
+
{
|
|
1069
|
+
width: size,
|
|
1070
|
+
height: size,
|
|
1071
|
+
viewBox: "0 0 24 24",
|
|
1072
|
+
fill: "none",
|
|
1073
|
+
stroke: "currentColor",
|
|
1074
|
+
strokeWidth: 1.7,
|
|
1075
|
+
strokeLinecap: "round",
|
|
1076
|
+
strokeLinejoin: "round",
|
|
1077
|
+
"aria-hidden": "true",
|
|
1078
|
+
...rest,
|
|
1079
|
+
children: /* @__PURE__ */ jsx("path", { d: "M8 9h8M12 9v10" })
|
|
1080
|
+
}
|
|
1081
|
+
);
|
|
1082
|
+
}
|
|
1083
|
+
function ButtonIcon({ size = 18, ...rest }) {
|
|
1084
|
+
return /* @__PURE__ */ jsxs(
|
|
1085
|
+
"svg",
|
|
1086
|
+
{
|
|
1087
|
+
width: size,
|
|
1088
|
+
height: size,
|
|
1089
|
+
viewBox: "0 0 24 24",
|
|
1090
|
+
fill: "none",
|
|
1091
|
+
stroke: "currentColor",
|
|
1092
|
+
strokeWidth: 1.7,
|
|
1093
|
+
strokeLinecap: "round",
|
|
1094
|
+
strokeLinejoin: "round",
|
|
1095
|
+
"aria-hidden": "true",
|
|
1096
|
+
...rest,
|
|
1097
|
+
children: [
|
|
1098
|
+
/* @__PURE__ */ jsx("rect", { x: "3.5", y: "8", width: "17", height: "8", rx: "2.5" }),
|
|
1099
|
+
/* @__PURE__ */ jsx("path", { d: "M9 12h6" })
|
|
1100
|
+
]
|
|
1101
|
+
}
|
|
1102
|
+
);
|
|
1103
|
+
}
|
|
1104
|
+
function LinkIcon({ size = 18, ...rest }) {
|
|
1105
|
+
return /* @__PURE__ */ jsxs(
|
|
1106
|
+
"svg",
|
|
1107
|
+
{
|
|
1108
|
+
width: size,
|
|
1109
|
+
height: size,
|
|
1110
|
+
viewBox: "0 0 24 24",
|
|
1111
|
+
fill: "none",
|
|
1112
|
+
stroke: "currentColor",
|
|
1113
|
+
strokeWidth: 1.7,
|
|
1114
|
+
strokeLinecap: "round",
|
|
1115
|
+
strokeLinejoin: "round",
|
|
1116
|
+
"aria-hidden": "true",
|
|
1117
|
+
...rest,
|
|
1118
|
+
children: [
|
|
1119
|
+
/* @__PURE__ */ jsx("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
|
|
1120
|
+
/* @__PURE__ */ jsx("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
|
|
1121
|
+
]
|
|
1122
|
+
}
|
|
1123
|
+
);
|
|
1124
|
+
}
|
|
1125
|
+
function TagIcon({ size = 18, ...rest }) {
|
|
1126
|
+
return /* @__PURE__ */ jsxs(
|
|
1127
|
+
"svg",
|
|
1128
|
+
{
|
|
1129
|
+
width: size,
|
|
1130
|
+
height: size,
|
|
1131
|
+
viewBox: "0 0 24 24",
|
|
1132
|
+
fill: "none",
|
|
1133
|
+
stroke: "currentColor",
|
|
1134
|
+
strokeWidth: 1.7,
|
|
1135
|
+
strokeLinecap: "round",
|
|
1136
|
+
strokeLinejoin: "round",
|
|
1137
|
+
"aria-hidden": "true",
|
|
1138
|
+
...rest,
|
|
1139
|
+
children: [
|
|
1140
|
+
/* @__PURE__ */ jsx("path", { d: "M4 4h6.5L20 13.5a1.5 1.5 0 0 1 0 2.1l-4.4 4.4a1.5 1.5 0 0 1-2.1 0L4 10.5z" }),
|
|
1141
|
+
/* @__PURE__ */ jsx("circle", { cx: "8", cy: "8", r: "1.2" })
|
|
1142
|
+
]
|
|
1143
|
+
}
|
|
1144
|
+
);
|
|
1145
|
+
}
|
|
1146
|
+
function RotateIcon({ size = 18, ...rest }) {
|
|
1147
|
+
return /* @__PURE__ */ jsxs(
|
|
1148
|
+
"svg",
|
|
1149
|
+
{
|
|
1150
|
+
width: size,
|
|
1151
|
+
height: size,
|
|
1152
|
+
viewBox: "0 0 24 24",
|
|
1153
|
+
fill: "none",
|
|
1154
|
+
stroke: "currentColor",
|
|
1155
|
+
strokeWidth: 1.7,
|
|
1156
|
+
strokeLinecap: "round",
|
|
1157
|
+
strokeLinejoin: "round",
|
|
1158
|
+
"aria-hidden": "true",
|
|
1159
|
+
...rest,
|
|
1160
|
+
children: [
|
|
1161
|
+
/* @__PURE__ */ jsx("path", { d: "M20 12a8 8 0 1 1-2.34-5.66" }),
|
|
1162
|
+
/* @__PURE__ */ jsx("polyline", { points: "20 3.5 20 7 16.5 7" })
|
|
1163
|
+
]
|
|
1164
|
+
}
|
|
1165
|
+
);
|
|
1166
|
+
}
|
|
1167
|
+
function SquareIcon({ size = 18, ...rest }) {
|
|
1168
|
+
return /* @__PURE__ */ jsx(
|
|
1169
|
+
"svg",
|
|
1170
|
+
{
|
|
1171
|
+
width: size,
|
|
1172
|
+
height: size,
|
|
1173
|
+
viewBox: "0 0 24 24",
|
|
1174
|
+
fill: "none",
|
|
1175
|
+
stroke: "currentColor",
|
|
1176
|
+
strokeWidth: 1.7,
|
|
1177
|
+
strokeLinecap: "round",
|
|
1178
|
+
strokeLinejoin: "round",
|
|
1179
|
+
"aria-hidden": "true",
|
|
1180
|
+
...rest,
|
|
1181
|
+
children: /* @__PURE__ */ jsx("rect", { x: "5", y: "5", width: "14", height: "14", rx: "2" })
|
|
1182
|
+
}
|
|
1183
|
+
);
|
|
1184
|
+
}
|
|
1185
|
+
function DropIcon({ size = 18, ...rest }) {
|
|
1186
|
+
return /* @__PURE__ */ jsx(
|
|
1187
|
+
"svg",
|
|
1188
|
+
{
|
|
1189
|
+
width: size,
|
|
1190
|
+
height: size,
|
|
1191
|
+
viewBox: "0 0 24 24",
|
|
1192
|
+
fill: "none",
|
|
1193
|
+
stroke: "currentColor",
|
|
1194
|
+
strokeWidth: 1.7,
|
|
1195
|
+
strokeLinecap: "round",
|
|
1196
|
+
strokeLinejoin: "round",
|
|
1197
|
+
"aria-hidden": "true",
|
|
1198
|
+
...rest,
|
|
1199
|
+
children: /* @__PURE__ */ jsx("path", { d: "M12 3.5s6.5 7.2 6.5 11a6.5 6.5 0 0 1-13 0c0-3.8 6.5-11 6.5-11z" })
|
|
1200
|
+
}
|
|
1201
|
+
);
|
|
1202
|
+
}
|
|
1203
|
+
function PlusMinusIcon({ size = 18, ...rest }) {
|
|
1204
|
+
return /* @__PURE__ */ jsx(
|
|
1205
|
+
"svg",
|
|
1206
|
+
{
|
|
1207
|
+
width: size,
|
|
1208
|
+
height: size,
|
|
1209
|
+
viewBox: "0 0 24 24",
|
|
1210
|
+
fill: "none",
|
|
1211
|
+
stroke: "currentColor",
|
|
1212
|
+
strokeWidth: 1.7,
|
|
1213
|
+
strokeLinecap: "round",
|
|
1214
|
+
strokeLinejoin: "round",
|
|
1215
|
+
"aria-hidden": "true",
|
|
1216
|
+
...rest,
|
|
1217
|
+
children: /* @__PURE__ */ jsx("path", { d: "M7.5 5v6M4.5 8h6M13.5 16.5h6" })
|
|
1218
|
+
}
|
|
1219
|
+
);
|
|
1220
|
+
}
|
|
1221
|
+
function DollarIcon({ size = 18, ...rest }) {
|
|
1222
|
+
return /* @__PURE__ */ jsx(
|
|
1223
|
+
"svg",
|
|
1224
|
+
{
|
|
1225
|
+
width: size,
|
|
1226
|
+
height: size,
|
|
1227
|
+
viewBox: "0 0 24 24",
|
|
1228
|
+
fill: "none",
|
|
1229
|
+
stroke: "currentColor",
|
|
1230
|
+
strokeWidth: 1.7,
|
|
1231
|
+
strokeLinecap: "round",
|
|
1232
|
+
strokeLinejoin: "round",
|
|
1233
|
+
"aria-hidden": "true",
|
|
1234
|
+
...rest,
|
|
1235
|
+
children: /* @__PURE__ */ jsx("path", { d: "M12 3.5v17M16 7c-.8-1.2-2.2-1.8-4-1.8-2.2 0-4 1.1-4 2.9 0 4 8 2.2 8 6.2 0 1.8-1.8 2.9-4 2.9-1.8 0-3.2-.6-4-1.8" })
|
|
1236
|
+
}
|
|
1237
|
+
);
|
|
1238
|
+
}
|
|
1239
|
+
function NoteIcon({ size = 18, ...rest }) {
|
|
1240
|
+
return /* @__PURE__ */ jsxs(
|
|
1241
|
+
"svg",
|
|
1242
|
+
{
|
|
1243
|
+
width: size,
|
|
1244
|
+
height: size,
|
|
1245
|
+
viewBox: "0 0 24 24",
|
|
1246
|
+
fill: "none",
|
|
1247
|
+
stroke: "currentColor",
|
|
1248
|
+
strokeWidth: 1.7,
|
|
1249
|
+
strokeLinecap: "round",
|
|
1250
|
+
strokeLinejoin: "round",
|
|
1251
|
+
"aria-hidden": "true",
|
|
1252
|
+
...rest,
|
|
1253
|
+
children: [
|
|
1254
|
+
/* @__PURE__ */ jsx("path", { d: "M5.5 4.5h13V14l-4.5 4.5h-8.5z" }),
|
|
1255
|
+
/* @__PURE__ */ jsx("path", { d: "M13.5 18.5V14H18" })
|
|
1256
|
+
]
|
|
1257
|
+
}
|
|
1258
|
+
);
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
export { AddIcon, AlignCenterIcon, AlignLeftIcon, AnchorIcon, BellIcon, ButtonIcon, CartIcon, ChatIcon, CheckIcon, ChevronIcon, ClockIcon, CloseIcon, ColumnsIcon, CopyToPageIcon, DesktopIcon, DollarIcon, DragIcon, DropIcon, DuplicateIcon, ExternalIcon, EyeIcon, EyeOffIcon, GridIcon, HashIcon, ImageIcon, LayersIcon, LinkIcon, ListIcon, LockIcon, MediaIcon, NoteIcon, OpacityIcon, PaddingBottomIcon, PaddingTopIcon, PageIcon, PhoneIcon, PlayIcon, PlusMinusIcon, RedoIcon, RenameIcon, RevertIcon, RotateIcon, SearchIcon, SendIcon, SitemapIcon, SquareIcon, StylesIcon, TabletIcon, TagIcon, TemplateIcon, TextLinesIcon, TextSizeIcon, TextSmallIcon, TrashIcon, TypeIcon, UndoIcon, WarningIcon, WheelIcon, WidthIcon, iconMeanings };
|
|
1262
|
+
//# sourceMappingURL=chunk-UB3KPBFP.js.map
|
|
1263
|
+
//# sourceMappingURL=chunk-UB3KPBFP.js.map
|