@pearpages/pulp-icons 0.0.0 → 0.2.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 +11 -2
- package/dist/index.d.ts +81 -1
- package/dist/index.js +1045 -15
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,6 +1,58 @@
|
|
|
1
1
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
2
|
|
|
3
|
-
// src/icons/
|
|
3
|
+
// src/icons/AlertCircle.tsx
|
|
4
|
+
function AlertCircle({ title, ...props }) {
|
|
5
|
+
return /* @__PURE__ */ jsxs(
|
|
6
|
+
"svg",
|
|
7
|
+
{
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
width: "1em",
|
|
11
|
+
height: "1em",
|
|
12
|
+
fill: "none",
|
|
13
|
+
stroke: "currentColor",
|
|
14
|
+
strokeWidth: 2,
|
|
15
|
+
strokeLinecap: "round",
|
|
16
|
+
strokeLinejoin: "round",
|
|
17
|
+
role: title ? "img" : void 0,
|
|
18
|
+
"aria-hidden": title ? void 0 : true,
|
|
19
|
+
focusable: "false",
|
|
20
|
+
...props,
|
|
21
|
+
children: [
|
|
22
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
23
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9" }),
|
|
24
|
+
/* @__PURE__ */ jsx("path", { d: "M12 8v4.5" }),
|
|
25
|
+
/* @__PURE__ */ jsx("path", { d: "M12 16h.01" })
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
function Archive({ title, ...props }) {
|
|
31
|
+
return /* @__PURE__ */ jsxs(
|
|
32
|
+
"svg",
|
|
33
|
+
{
|
|
34
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
+
viewBox: "0 0 24 24",
|
|
36
|
+
width: "1em",
|
|
37
|
+
height: "1em",
|
|
38
|
+
fill: "none",
|
|
39
|
+
stroke: "currentColor",
|
|
40
|
+
strokeWidth: 2,
|
|
41
|
+
strokeLinecap: "round",
|
|
42
|
+
strokeLinejoin: "round",
|
|
43
|
+
role: title ? "img" : void 0,
|
|
44
|
+
"aria-hidden": title ? void 0 : true,
|
|
45
|
+
focusable: "false",
|
|
46
|
+
...props,
|
|
47
|
+
children: [
|
|
48
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
49
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "4", width: "18", height: "5", rx: "1" }),
|
|
50
|
+
/* @__PURE__ */ jsx("path", { d: "M5 9v9a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V9" }),
|
|
51
|
+
/* @__PURE__ */ jsx("path", { d: "M10 13h4" })
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
);
|
|
55
|
+
}
|
|
4
56
|
function ArrowLeft({ title, ...props }) {
|
|
5
57
|
return /* @__PURE__ */ jsxs(
|
|
6
58
|
"svg",
|
|
@@ -51,6 +103,55 @@ function ArrowRight({ title, ...props }) {
|
|
|
51
103
|
}
|
|
52
104
|
);
|
|
53
105
|
}
|
|
106
|
+
function Ban({ title, ...props }) {
|
|
107
|
+
return /* @__PURE__ */ jsxs(
|
|
108
|
+
"svg",
|
|
109
|
+
{
|
|
110
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
111
|
+
viewBox: "0 0 24 24",
|
|
112
|
+
width: "1em",
|
|
113
|
+
height: "1em",
|
|
114
|
+
fill: "none",
|
|
115
|
+
stroke: "currentColor",
|
|
116
|
+
strokeWidth: 2,
|
|
117
|
+
strokeLinecap: "round",
|
|
118
|
+
strokeLinejoin: "round",
|
|
119
|
+
role: title ? "img" : void 0,
|
|
120
|
+
"aria-hidden": title ? void 0 : true,
|
|
121
|
+
focusable: "false",
|
|
122
|
+
...props,
|
|
123
|
+
children: [
|
|
124
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
125
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9" }),
|
|
126
|
+
/* @__PURE__ */ jsx("path", { d: "M5.6 5.6l12.8 12.8" })
|
|
127
|
+
]
|
|
128
|
+
}
|
|
129
|
+
);
|
|
130
|
+
}
|
|
131
|
+
function Bookmark({ title, ...props }) {
|
|
132
|
+
return /* @__PURE__ */ jsxs(
|
|
133
|
+
"svg",
|
|
134
|
+
{
|
|
135
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
136
|
+
viewBox: "0 0 24 24",
|
|
137
|
+
width: "1em",
|
|
138
|
+
height: "1em",
|
|
139
|
+
fill: "none",
|
|
140
|
+
stroke: "currentColor",
|
|
141
|
+
strokeWidth: 2,
|
|
142
|
+
strokeLinecap: "round",
|
|
143
|
+
strokeLinejoin: "round",
|
|
144
|
+
role: title ? "img" : void 0,
|
|
145
|
+
"aria-hidden": title ? void 0 : true,
|
|
146
|
+
focusable: "false",
|
|
147
|
+
...props,
|
|
148
|
+
children: [
|
|
149
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
150
|
+
/* @__PURE__ */ jsx("path", { d: "M6 4h12a1 1 0 0 1 1 1v16l-7-4.5L5 21V5a1 1 0 0 1 1-1z" })
|
|
151
|
+
]
|
|
152
|
+
}
|
|
153
|
+
);
|
|
154
|
+
}
|
|
54
155
|
function Calendar({ title, ...props }) {
|
|
55
156
|
return /* @__PURE__ */ jsxs(
|
|
56
157
|
"svg",
|
|
@@ -78,6 +179,60 @@ function Calendar({ title, ...props }) {
|
|
|
78
179
|
}
|
|
79
180
|
);
|
|
80
181
|
}
|
|
182
|
+
function Car({ title, ...props }) {
|
|
183
|
+
return /* @__PURE__ */ jsxs(
|
|
184
|
+
"svg",
|
|
185
|
+
{
|
|
186
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
187
|
+
viewBox: "0 0 24 24",
|
|
188
|
+
width: "1em",
|
|
189
|
+
height: "1em",
|
|
190
|
+
fill: "none",
|
|
191
|
+
stroke: "currentColor",
|
|
192
|
+
strokeWidth: 2,
|
|
193
|
+
strokeLinecap: "round",
|
|
194
|
+
strokeLinejoin: "round",
|
|
195
|
+
role: title ? "img" : void 0,
|
|
196
|
+
"aria-hidden": title ? void 0 : true,
|
|
197
|
+
focusable: "false",
|
|
198
|
+
...props,
|
|
199
|
+
children: [
|
|
200
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
201
|
+
/* @__PURE__ */ jsx("path", { d: "M5 11l1.5-4.5A2 2 0 0 1 8.4 5h7.2a2 2 0 0 1 1.9 1.5L19 11" }),
|
|
202
|
+
/* @__PURE__ */ jsx("path", { d: "M3 17v-4a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4z" }),
|
|
203
|
+
/* @__PURE__ */ jsx("path", { d: "M6 17v2" }),
|
|
204
|
+
/* @__PURE__ */ jsx("path", { d: "M18 17v2" }),
|
|
205
|
+
/* @__PURE__ */ jsx("path", { d: "M7 14h.01" }),
|
|
206
|
+
/* @__PURE__ */ jsx("path", { d: "M17 14h.01" })
|
|
207
|
+
]
|
|
208
|
+
}
|
|
209
|
+
);
|
|
210
|
+
}
|
|
211
|
+
function Chain({ title, ...props }) {
|
|
212
|
+
return /* @__PURE__ */ jsxs(
|
|
213
|
+
"svg",
|
|
214
|
+
{
|
|
215
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
216
|
+
viewBox: "0 0 24 24",
|
|
217
|
+
width: "1em",
|
|
218
|
+
height: "1em",
|
|
219
|
+
fill: "none",
|
|
220
|
+
stroke: "currentColor",
|
|
221
|
+
strokeWidth: 2,
|
|
222
|
+
strokeLinecap: "round",
|
|
223
|
+
strokeLinejoin: "round",
|
|
224
|
+
role: title ? "img" : void 0,
|
|
225
|
+
"aria-hidden": title ? void 0 : true,
|
|
226
|
+
focusable: "false",
|
|
227
|
+
...props,
|
|
228
|
+
children: [
|
|
229
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
230
|
+
/* @__PURE__ */ jsx("path", { d: "M10 14a4.5 4.5 0 0 0 6.4 0l3-3a4.5 4.5 0 0 0-6.4-6.4l-1 1" }),
|
|
231
|
+
/* @__PURE__ */ jsx("path", { d: "M14 10a4.5 4.5 0 0 0-6.4 0l-3 3a4.5 4.5 0 0 0 6.4 6.4l1-1" })
|
|
232
|
+
]
|
|
233
|
+
}
|
|
234
|
+
);
|
|
235
|
+
}
|
|
81
236
|
function Check({ title, ...props }) {
|
|
82
237
|
return /* @__PURE__ */ jsxs(
|
|
83
238
|
"svg",
|
|
@@ -102,6 +257,31 @@ function Check({ title, ...props }) {
|
|
|
102
257
|
}
|
|
103
258
|
);
|
|
104
259
|
}
|
|
260
|
+
function CheckCircle({ title, ...props }) {
|
|
261
|
+
return /* @__PURE__ */ jsxs(
|
|
262
|
+
"svg",
|
|
263
|
+
{
|
|
264
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
265
|
+
viewBox: "0 0 24 24",
|
|
266
|
+
width: "1em",
|
|
267
|
+
height: "1em",
|
|
268
|
+
fill: "none",
|
|
269
|
+
stroke: "currentColor",
|
|
270
|
+
strokeWidth: 2,
|
|
271
|
+
strokeLinecap: "round",
|
|
272
|
+
strokeLinejoin: "round",
|
|
273
|
+
role: title ? "img" : void 0,
|
|
274
|
+
"aria-hidden": title ? void 0 : true,
|
|
275
|
+
focusable: "false",
|
|
276
|
+
...props,
|
|
277
|
+
children: [
|
|
278
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
279
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9" }),
|
|
280
|
+
/* @__PURE__ */ jsx("path", { d: "M8.5 12.5l2.5 2.5 4.5-5" })
|
|
281
|
+
]
|
|
282
|
+
}
|
|
283
|
+
);
|
|
284
|
+
}
|
|
105
285
|
function ChevronDown({ title, ...props }) {
|
|
106
286
|
return /* @__PURE__ */ jsxs(
|
|
107
287
|
"svg",
|
|
@@ -199,7 +379,7 @@ function Close({ title, ...props }) {
|
|
|
199
379
|
}
|
|
200
380
|
);
|
|
201
381
|
}
|
|
202
|
-
function
|
|
382
|
+
function Compass({ title, ...props }) {
|
|
203
383
|
return /* @__PURE__ */ jsxs(
|
|
204
384
|
"svg",
|
|
205
385
|
{
|
|
@@ -219,13 +399,12 @@ function Info({ title, ...props }) {
|
|
|
219
399
|
children: [
|
|
220
400
|
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
221
401
|
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9" }),
|
|
222
|
-
/* @__PURE__ */ jsx("
|
|
223
|
-
/* @__PURE__ */ jsx("path", { d: "M12 8h.01" })
|
|
402
|
+
/* @__PURE__ */ jsx("polygon", { points: "15.5,8.5 13.5,13.5 8.5,15.5 10.5,10.5" })
|
|
224
403
|
]
|
|
225
404
|
}
|
|
226
405
|
);
|
|
227
406
|
}
|
|
228
|
-
function
|
|
407
|
+
function Crosshair({ title, ...props }) {
|
|
229
408
|
return /* @__PURE__ */ jsxs(
|
|
230
409
|
"svg",
|
|
231
410
|
{
|
|
@@ -244,13 +423,13 @@ function Plus({ title, ...props }) {
|
|
|
244
423
|
...props,
|
|
245
424
|
children: [
|
|
246
425
|
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
247
|
-
/* @__PURE__ */ jsx("
|
|
248
|
-
/* @__PURE__ */ jsx("path", { d: "
|
|
426
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "8" }),
|
|
427
|
+
/* @__PURE__ */ jsx("path", { d: "M12 2v4M12 18v4M2 12h4M18 12h4" })
|
|
249
428
|
]
|
|
250
429
|
}
|
|
251
430
|
);
|
|
252
431
|
}
|
|
253
|
-
function
|
|
432
|
+
function Export({ title, ...props }) {
|
|
254
433
|
return /* @__PURE__ */ jsxs(
|
|
255
434
|
"svg",
|
|
256
435
|
{
|
|
@@ -269,13 +448,14 @@ function Search({ title, ...props }) {
|
|
|
269
448
|
...props,
|
|
270
449
|
children: [
|
|
271
450
|
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
272
|
-
/* @__PURE__ */ jsx("
|
|
273
|
-
/* @__PURE__ */ jsx("
|
|
451
|
+
/* @__PURE__ */ jsx("path", { d: "M12 15V3" }),
|
|
452
|
+
/* @__PURE__ */ jsx("polyline", { points: "8,7 12,3 16,7" }),
|
|
453
|
+
/* @__PURE__ */ jsx("path", { d: "M5 11v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8" })
|
|
274
454
|
]
|
|
275
455
|
}
|
|
276
456
|
);
|
|
277
457
|
}
|
|
278
|
-
function
|
|
458
|
+
function Filter({ title, ...props }) {
|
|
279
459
|
return /* @__PURE__ */ jsxs(
|
|
280
460
|
"svg",
|
|
281
461
|
{
|
|
@@ -294,14 +474,864 @@ function Warning({ title, ...props }) {
|
|
|
294
474
|
...props,
|
|
295
475
|
children: [
|
|
296
476
|
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
297
|
-
/* @__PURE__ */ jsx("path", { d: "
|
|
298
|
-
|
|
299
|
-
|
|
477
|
+
/* @__PURE__ */ jsx("path", { d: "M3 5h18l-7 8v6l-4-2v-4z" })
|
|
478
|
+
]
|
|
479
|
+
}
|
|
480
|
+
);
|
|
481
|
+
}
|
|
482
|
+
function GripVertical({ title, ...props }) {
|
|
483
|
+
return /* @__PURE__ */ jsxs(
|
|
484
|
+
"svg",
|
|
485
|
+
{
|
|
486
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
487
|
+
viewBox: "0 0 24 24",
|
|
488
|
+
width: "1em",
|
|
489
|
+
height: "1em",
|
|
490
|
+
fill: "none",
|
|
491
|
+
stroke: "currentColor",
|
|
492
|
+
strokeWidth: 2,
|
|
493
|
+
strokeLinecap: "round",
|
|
494
|
+
strokeLinejoin: "round",
|
|
495
|
+
role: title ? "img" : void 0,
|
|
496
|
+
"aria-hidden": title ? void 0 : true,
|
|
497
|
+
focusable: "false",
|
|
498
|
+
...props,
|
|
499
|
+
children: [
|
|
500
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
501
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "6", r: "1" }),
|
|
502
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "6", r: "1" }),
|
|
503
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "12", r: "1" }),
|
|
504
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "12", r: "1" }),
|
|
505
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "18", r: "1" }),
|
|
506
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "18", r: "1" })
|
|
507
|
+
]
|
|
508
|
+
}
|
|
509
|
+
);
|
|
510
|
+
}
|
|
511
|
+
function Heart({ title, ...props }) {
|
|
512
|
+
return /* @__PURE__ */ jsxs(
|
|
513
|
+
"svg",
|
|
514
|
+
{
|
|
515
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
516
|
+
viewBox: "0 0 24 24",
|
|
517
|
+
width: "1em",
|
|
518
|
+
height: "1em",
|
|
519
|
+
fill: "none",
|
|
520
|
+
stroke: "currentColor",
|
|
521
|
+
strokeWidth: 2,
|
|
522
|
+
strokeLinecap: "round",
|
|
523
|
+
strokeLinejoin: "round",
|
|
524
|
+
role: title ? "img" : void 0,
|
|
525
|
+
"aria-hidden": title ? void 0 : true,
|
|
526
|
+
focusable: "false",
|
|
527
|
+
...props,
|
|
528
|
+
children: [
|
|
529
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
530
|
+
/* @__PURE__ */ jsx("path", { d: "M12 20s-8-4.6-8-10.5A4.5 4.5 0 0 1 12 7a4.5 4.5 0 0 1 8 2.5C20 15.4 12 20 12 20z" })
|
|
531
|
+
]
|
|
532
|
+
}
|
|
533
|
+
);
|
|
534
|
+
}
|
|
535
|
+
function HelpCircle({ title, ...props }) {
|
|
536
|
+
return /* @__PURE__ */ jsxs(
|
|
537
|
+
"svg",
|
|
538
|
+
{
|
|
539
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
540
|
+
viewBox: "0 0 24 24",
|
|
541
|
+
width: "1em",
|
|
542
|
+
height: "1em",
|
|
543
|
+
fill: "none",
|
|
544
|
+
stroke: "currentColor",
|
|
545
|
+
strokeWidth: 2,
|
|
546
|
+
strokeLinecap: "round",
|
|
547
|
+
strokeLinejoin: "round",
|
|
548
|
+
role: title ? "img" : void 0,
|
|
549
|
+
"aria-hidden": title ? void 0 : true,
|
|
550
|
+
focusable: "false",
|
|
551
|
+
...props,
|
|
552
|
+
children: [
|
|
553
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
554
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9" }),
|
|
555
|
+
/* @__PURE__ */ jsx("path", { d: "M9.5 9.5a2.5 2.5 0 1 1 3.6 2.2c-.7.4-1.1 1-1.1 1.8" }),
|
|
556
|
+
/* @__PURE__ */ jsx("path", { d: "M12 17h.01" })
|
|
557
|
+
]
|
|
558
|
+
}
|
|
559
|
+
);
|
|
560
|
+
}
|
|
561
|
+
function Info({ title, ...props }) {
|
|
562
|
+
return /* @__PURE__ */ jsxs(
|
|
563
|
+
"svg",
|
|
564
|
+
{
|
|
565
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
566
|
+
viewBox: "0 0 24 24",
|
|
567
|
+
width: "1em",
|
|
568
|
+
height: "1em",
|
|
569
|
+
fill: "none",
|
|
570
|
+
stroke: "currentColor",
|
|
571
|
+
strokeWidth: 2,
|
|
572
|
+
strokeLinecap: "round",
|
|
573
|
+
strokeLinejoin: "round",
|
|
574
|
+
role: title ? "img" : void 0,
|
|
575
|
+
"aria-hidden": title ? void 0 : true,
|
|
576
|
+
focusable: "false",
|
|
577
|
+
...props,
|
|
578
|
+
children: [
|
|
579
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
580
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9" }),
|
|
581
|
+
/* @__PURE__ */ jsx("path", { d: "M12 16v-4" }),
|
|
582
|
+
/* @__PURE__ */ jsx("path", { d: "M12 8h.01" })
|
|
583
|
+
]
|
|
584
|
+
}
|
|
585
|
+
);
|
|
586
|
+
}
|
|
587
|
+
function Mail({ title, ...props }) {
|
|
588
|
+
return /* @__PURE__ */ jsxs(
|
|
589
|
+
"svg",
|
|
590
|
+
{
|
|
591
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
592
|
+
viewBox: "0 0 24 24",
|
|
593
|
+
width: "1em",
|
|
594
|
+
height: "1em",
|
|
595
|
+
fill: "none",
|
|
596
|
+
stroke: "currentColor",
|
|
597
|
+
strokeWidth: 2,
|
|
598
|
+
strokeLinecap: "round",
|
|
599
|
+
strokeLinejoin: "round",
|
|
600
|
+
role: title ? "img" : void 0,
|
|
601
|
+
"aria-hidden": title ? void 0 : true,
|
|
602
|
+
focusable: "false",
|
|
603
|
+
...props,
|
|
604
|
+
children: [
|
|
605
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
606
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "5", width: "18", height: "14", rx: "2" }),
|
|
607
|
+
/* @__PURE__ */ jsx("polyline", { points: "3,7 12,13 21,7" })
|
|
608
|
+
]
|
|
609
|
+
}
|
|
610
|
+
);
|
|
611
|
+
}
|
|
612
|
+
function MapFolded({ title, ...props }) {
|
|
613
|
+
return /* @__PURE__ */ jsxs(
|
|
614
|
+
"svg",
|
|
615
|
+
{
|
|
616
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
617
|
+
viewBox: "0 0 24 24",
|
|
618
|
+
width: "1em",
|
|
619
|
+
height: "1em",
|
|
620
|
+
fill: "none",
|
|
621
|
+
stroke: "currentColor",
|
|
622
|
+
strokeWidth: 2,
|
|
623
|
+
strokeLinecap: "round",
|
|
624
|
+
strokeLinejoin: "round",
|
|
625
|
+
role: title ? "img" : void 0,
|
|
626
|
+
"aria-hidden": title ? void 0 : true,
|
|
627
|
+
focusable: "false",
|
|
628
|
+
...props,
|
|
629
|
+
children: [
|
|
630
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
631
|
+
/* @__PURE__ */ jsx("path", { d: "M3 6l6-2 6 2 6-2v14l-6 2-6-2-6 2z" }),
|
|
632
|
+
/* @__PURE__ */ jsx("path", { d: "M9 4v14" }),
|
|
633
|
+
/* @__PURE__ */ jsx("path", { d: "M15 6v14" })
|
|
634
|
+
]
|
|
635
|
+
}
|
|
636
|
+
);
|
|
637
|
+
}
|
|
638
|
+
function MapPin({ title, ...props }) {
|
|
639
|
+
return /* @__PURE__ */ jsxs(
|
|
640
|
+
"svg",
|
|
641
|
+
{
|
|
642
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
643
|
+
viewBox: "0 0 24 24",
|
|
644
|
+
width: "1em",
|
|
645
|
+
height: "1em",
|
|
646
|
+
fill: "none",
|
|
647
|
+
stroke: "currentColor",
|
|
648
|
+
strokeWidth: 2,
|
|
649
|
+
strokeLinecap: "round",
|
|
650
|
+
strokeLinejoin: "round",
|
|
651
|
+
role: title ? "img" : void 0,
|
|
652
|
+
"aria-hidden": title ? void 0 : true,
|
|
653
|
+
focusable: "false",
|
|
654
|
+
...props,
|
|
655
|
+
children: [
|
|
656
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
657
|
+
/* @__PURE__ */ jsx("path", { d: "M12 21s-7-6.2-7-11.5a7 7 0 0 1 14 0C19 14.8 12 21 12 21z" }),
|
|
658
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "9.5", r: "2.5" })
|
|
659
|
+
]
|
|
660
|
+
}
|
|
661
|
+
);
|
|
662
|
+
}
|
|
663
|
+
function Meh({ title, ...props }) {
|
|
664
|
+
return /* @__PURE__ */ jsxs(
|
|
665
|
+
"svg",
|
|
666
|
+
{
|
|
667
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
668
|
+
viewBox: "0 0 24 24",
|
|
669
|
+
width: "1em",
|
|
670
|
+
height: "1em",
|
|
671
|
+
fill: "none",
|
|
672
|
+
stroke: "currentColor",
|
|
673
|
+
strokeWidth: 2,
|
|
674
|
+
strokeLinecap: "round",
|
|
675
|
+
strokeLinejoin: "round",
|
|
676
|
+
role: title ? "img" : void 0,
|
|
677
|
+
"aria-hidden": title ? void 0 : true,
|
|
678
|
+
focusable: "false",
|
|
679
|
+
...props,
|
|
680
|
+
children: [
|
|
681
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
682
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9" }),
|
|
683
|
+
/* @__PURE__ */ jsx("path", { d: "M9 15h6" }),
|
|
684
|
+
/* @__PURE__ */ jsx("path", { d: "M9 9.5h.01" }),
|
|
685
|
+
/* @__PURE__ */ jsx("path", { d: "M15 9.5h.01" })
|
|
686
|
+
]
|
|
687
|
+
}
|
|
688
|
+
);
|
|
689
|
+
}
|
|
690
|
+
function Message({ title, ...props }) {
|
|
691
|
+
return /* @__PURE__ */ jsxs(
|
|
692
|
+
"svg",
|
|
693
|
+
{
|
|
694
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
695
|
+
viewBox: "0 0 24 24",
|
|
696
|
+
width: "1em",
|
|
697
|
+
height: "1em",
|
|
698
|
+
fill: "none",
|
|
699
|
+
stroke: "currentColor",
|
|
700
|
+
strokeWidth: 2,
|
|
701
|
+
strokeLinecap: "round",
|
|
702
|
+
strokeLinejoin: "round",
|
|
703
|
+
role: title ? "img" : void 0,
|
|
704
|
+
"aria-hidden": title ? void 0 : true,
|
|
705
|
+
focusable: "false",
|
|
706
|
+
...props,
|
|
707
|
+
children: [
|
|
708
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
709
|
+
/* @__PURE__ */ jsx("path", { d: "M21 15a2 2 0 0 1-2 2H8l-5 4V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
|
|
710
|
+
]
|
|
711
|
+
}
|
|
712
|
+
);
|
|
713
|
+
}
|
|
714
|
+
function Moon({ title, ...props }) {
|
|
715
|
+
return /* @__PURE__ */ jsxs(
|
|
716
|
+
"svg",
|
|
717
|
+
{
|
|
718
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
719
|
+
viewBox: "0 0 24 24",
|
|
720
|
+
width: "1em",
|
|
721
|
+
height: "1em",
|
|
722
|
+
fill: "none",
|
|
723
|
+
stroke: "currentColor",
|
|
724
|
+
strokeWidth: 2,
|
|
725
|
+
strokeLinecap: "round",
|
|
726
|
+
strokeLinejoin: "round",
|
|
727
|
+
role: title ? "img" : void 0,
|
|
728
|
+
"aria-hidden": title ? void 0 : true,
|
|
729
|
+
focusable: "false",
|
|
730
|
+
...props,
|
|
731
|
+
children: [
|
|
732
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
733
|
+
/* @__PURE__ */ jsx("path", { d: "M20 14.5A8 8 0 1 1 9.5 4a6.5 6.5 0 0 0 10.5 10.5z" })
|
|
734
|
+
]
|
|
735
|
+
}
|
|
736
|
+
);
|
|
737
|
+
}
|
|
738
|
+
function Note({ title, ...props }) {
|
|
739
|
+
return /* @__PURE__ */ jsxs(
|
|
740
|
+
"svg",
|
|
741
|
+
{
|
|
742
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
743
|
+
viewBox: "0 0 24 24",
|
|
744
|
+
width: "1em",
|
|
745
|
+
height: "1em",
|
|
746
|
+
fill: "none",
|
|
747
|
+
stroke: "currentColor",
|
|
748
|
+
strokeWidth: 2,
|
|
749
|
+
strokeLinecap: "round",
|
|
750
|
+
strokeLinejoin: "round",
|
|
751
|
+
role: title ? "img" : void 0,
|
|
752
|
+
"aria-hidden": title ? void 0 : true,
|
|
753
|
+
focusable: "false",
|
|
754
|
+
...props,
|
|
755
|
+
children: [
|
|
756
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
757
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "5", width: "18", height: "14", rx: "2" }),
|
|
758
|
+
/* @__PURE__ */ jsx("path", { d: "M7 10h10" }),
|
|
759
|
+
/* @__PURE__ */ jsx("path", { d: "M7 14h6" })
|
|
760
|
+
]
|
|
761
|
+
}
|
|
762
|
+
);
|
|
763
|
+
}
|
|
764
|
+
function Page({ title, ...props }) {
|
|
765
|
+
return /* @__PURE__ */ jsxs(
|
|
766
|
+
"svg",
|
|
767
|
+
{
|
|
768
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
769
|
+
viewBox: "0 0 24 24",
|
|
770
|
+
width: "1em",
|
|
771
|
+
height: "1em",
|
|
772
|
+
fill: "none",
|
|
773
|
+
stroke: "currentColor",
|
|
774
|
+
strokeWidth: 2,
|
|
775
|
+
strokeLinecap: "round",
|
|
776
|
+
strokeLinejoin: "round",
|
|
777
|
+
role: title ? "img" : void 0,
|
|
778
|
+
"aria-hidden": title ? void 0 : true,
|
|
779
|
+
focusable: "false",
|
|
780
|
+
...props,
|
|
781
|
+
children: [
|
|
782
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
783
|
+
/* @__PURE__ */ jsx("rect", { x: "5", y: "3", width: "14", height: "18", rx: "2" }),
|
|
784
|
+
/* @__PURE__ */ jsx("path", { d: "M9 8h6" }),
|
|
785
|
+
/* @__PURE__ */ jsx("path", { d: "M9 12h6" }),
|
|
786
|
+
/* @__PURE__ */ jsx("path", { d: "M9 16h3" })
|
|
787
|
+
]
|
|
788
|
+
}
|
|
789
|
+
);
|
|
790
|
+
}
|
|
791
|
+
function Pencil({ title, ...props }) {
|
|
792
|
+
return /* @__PURE__ */ jsxs(
|
|
793
|
+
"svg",
|
|
794
|
+
{
|
|
795
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
796
|
+
viewBox: "0 0 24 24",
|
|
797
|
+
width: "1em",
|
|
798
|
+
height: "1em",
|
|
799
|
+
fill: "none",
|
|
800
|
+
stroke: "currentColor",
|
|
801
|
+
strokeWidth: 2,
|
|
802
|
+
strokeLinecap: "round",
|
|
803
|
+
strokeLinejoin: "round",
|
|
804
|
+
role: title ? "img" : void 0,
|
|
805
|
+
"aria-hidden": title ? void 0 : true,
|
|
806
|
+
focusable: "false",
|
|
807
|
+
...props,
|
|
808
|
+
children: [
|
|
809
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
810
|
+
/* @__PURE__ */ jsx("path", { d: "M4 20l1-5L16 4l4 4L9 19z" }),
|
|
811
|
+
/* @__PURE__ */ jsx("path", { d: "M14 6l4 4" })
|
|
812
|
+
]
|
|
813
|
+
}
|
|
814
|
+
);
|
|
815
|
+
}
|
|
816
|
+
function Picture({ title, ...props }) {
|
|
817
|
+
return /* @__PURE__ */ jsxs(
|
|
818
|
+
"svg",
|
|
819
|
+
{
|
|
820
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
821
|
+
viewBox: "0 0 24 24",
|
|
822
|
+
width: "1em",
|
|
823
|
+
height: "1em",
|
|
824
|
+
fill: "none",
|
|
825
|
+
stroke: "currentColor",
|
|
826
|
+
strokeWidth: 2,
|
|
827
|
+
strokeLinecap: "round",
|
|
828
|
+
strokeLinejoin: "round",
|
|
829
|
+
role: title ? "img" : void 0,
|
|
830
|
+
"aria-hidden": title ? void 0 : true,
|
|
831
|
+
focusable: "false",
|
|
832
|
+
...props,
|
|
833
|
+
children: [
|
|
834
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
835
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "4", width: "18", height: "16", rx: "2" }),
|
|
836
|
+
/* @__PURE__ */ jsx("circle", { cx: "8.5", cy: "9.5", r: "1.5" }),
|
|
837
|
+
/* @__PURE__ */ jsx("path", { d: "M21 16l-5-5-9 9" })
|
|
838
|
+
]
|
|
839
|
+
}
|
|
840
|
+
);
|
|
841
|
+
}
|
|
842
|
+
function Plus({ title, ...props }) {
|
|
843
|
+
return /* @__PURE__ */ jsxs(
|
|
844
|
+
"svg",
|
|
845
|
+
{
|
|
846
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
847
|
+
viewBox: "0 0 24 24",
|
|
848
|
+
width: "1em",
|
|
849
|
+
height: "1em",
|
|
850
|
+
fill: "none",
|
|
851
|
+
stroke: "currentColor",
|
|
852
|
+
strokeWidth: 2,
|
|
853
|
+
strokeLinecap: "round",
|
|
854
|
+
strokeLinejoin: "round",
|
|
855
|
+
role: title ? "img" : void 0,
|
|
856
|
+
"aria-hidden": title ? void 0 : true,
|
|
857
|
+
focusable: "false",
|
|
858
|
+
...props,
|
|
859
|
+
children: [
|
|
860
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
861
|
+
/* @__PURE__ */ jsx("path", { d: "M12 5v14" }),
|
|
862
|
+
/* @__PURE__ */ jsx("path", { d: "M5 12h14" })
|
|
863
|
+
]
|
|
864
|
+
}
|
|
865
|
+
);
|
|
866
|
+
}
|
|
867
|
+
function Search({ title, ...props }) {
|
|
868
|
+
return /* @__PURE__ */ jsxs(
|
|
869
|
+
"svg",
|
|
870
|
+
{
|
|
871
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
872
|
+
viewBox: "0 0 24 24",
|
|
873
|
+
width: "1em",
|
|
874
|
+
height: "1em",
|
|
875
|
+
fill: "none",
|
|
876
|
+
stroke: "currentColor",
|
|
877
|
+
strokeWidth: 2,
|
|
878
|
+
strokeLinecap: "round",
|
|
879
|
+
strokeLinejoin: "round",
|
|
880
|
+
role: title ? "img" : void 0,
|
|
881
|
+
"aria-hidden": title ? void 0 : true,
|
|
882
|
+
focusable: "false",
|
|
883
|
+
...props,
|
|
884
|
+
children: [
|
|
885
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
886
|
+
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "7" }),
|
|
887
|
+
/* @__PURE__ */ jsx("path", { d: "M20 20l-3.5-3.5" })
|
|
888
|
+
]
|
|
889
|
+
}
|
|
890
|
+
);
|
|
891
|
+
}
|
|
892
|
+
function Send({ title, ...props }) {
|
|
893
|
+
return /* @__PURE__ */ jsxs(
|
|
894
|
+
"svg",
|
|
895
|
+
{
|
|
896
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
897
|
+
viewBox: "0 0 24 24",
|
|
898
|
+
width: "1em",
|
|
899
|
+
height: "1em",
|
|
900
|
+
fill: "none",
|
|
901
|
+
stroke: "currentColor",
|
|
902
|
+
strokeWidth: 2,
|
|
903
|
+
strokeLinecap: "round",
|
|
904
|
+
strokeLinejoin: "round",
|
|
905
|
+
role: title ? "img" : void 0,
|
|
906
|
+
"aria-hidden": title ? void 0 : true,
|
|
907
|
+
focusable: "false",
|
|
908
|
+
...props,
|
|
909
|
+
children: [
|
|
910
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
911
|
+
/* @__PURE__ */ jsx("polygon", { points: "21,3 14,21 11,13 3,10" }),
|
|
912
|
+
/* @__PURE__ */ jsx("path", { d: "M21 3L11 13" })
|
|
913
|
+
]
|
|
914
|
+
}
|
|
915
|
+
);
|
|
916
|
+
}
|
|
917
|
+
function Settings({ title, ...props }) {
|
|
918
|
+
return /* @__PURE__ */ jsxs(
|
|
919
|
+
"svg",
|
|
920
|
+
{
|
|
921
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
922
|
+
viewBox: "0 0 24 24",
|
|
923
|
+
width: "1em",
|
|
924
|
+
height: "1em",
|
|
925
|
+
fill: "none",
|
|
926
|
+
stroke: "currentColor",
|
|
927
|
+
strokeWidth: 2,
|
|
928
|
+
strokeLinecap: "round",
|
|
929
|
+
strokeLinejoin: "round",
|
|
930
|
+
role: title ? "img" : void 0,
|
|
931
|
+
"aria-hidden": title ? void 0 : true,
|
|
932
|
+
focusable: "false",
|
|
933
|
+
...props,
|
|
934
|
+
children: [
|
|
935
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
936
|
+
/* @__PURE__ */ jsx("path", { d: "M4 6h8.5M17.5 6H20M4 12h2.5M11.5 12H20M4 18h10.5M19.5 18h.5" }),
|
|
937
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "6", r: "2.5" }),
|
|
938
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "12", r: "2.5" }),
|
|
939
|
+
/* @__PURE__ */ jsx("circle", { cx: "17", cy: "18", r: "2.5" })
|
|
940
|
+
]
|
|
941
|
+
}
|
|
942
|
+
);
|
|
943
|
+
}
|
|
944
|
+
function Share({ title, ...props }) {
|
|
945
|
+
return /* @__PURE__ */ jsxs(
|
|
946
|
+
"svg",
|
|
947
|
+
{
|
|
948
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
949
|
+
viewBox: "0 0 24 24",
|
|
950
|
+
width: "1em",
|
|
951
|
+
height: "1em",
|
|
952
|
+
fill: "none",
|
|
953
|
+
stroke: "currentColor",
|
|
954
|
+
strokeWidth: 2,
|
|
955
|
+
strokeLinecap: "round",
|
|
956
|
+
strokeLinejoin: "round",
|
|
957
|
+
role: title ? "img" : void 0,
|
|
958
|
+
"aria-hidden": title ? void 0 : true,
|
|
959
|
+
focusable: "false",
|
|
960
|
+
...props,
|
|
961
|
+
children: [
|
|
962
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
963
|
+
/* @__PURE__ */ jsx("circle", { cx: "6", cy: "12", r: "3" }),
|
|
964
|
+
/* @__PURE__ */ jsx("circle", { cx: "18", cy: "5", r: "3" }),
|
|
965
|
+
/* @__PURE__ */ jsx("circle", { cx: "18", cy: "19", r: "3" }),
|
|
966
|
+
/* @__PURE__ */ jsx("path", { d: "M8.6 10.5l6.8-4" }),
|
|
967
|
+
/* @__PURE__ */ jsx("path", { d: "M8.6 13.5l6.8 4" })
|
|
968
|
+
]
|
|
969
|
+
}
|
|
970
|
+
);
|
|
971
|
+
}
|
|
972
|
+
function ShieldCheck({ title, ...props }) {
|
|
973
|
+
return /* @__PURE__ */ jsxs(
|
|
974
|
+
"svg",
|
|
975
|
+
{
|
|
976
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
977
|
+
viewBox: "0 0 24 24",
|
|
978
|
+
width: "1em",
|
|
979
|
+
height: "1em",
|
|
980
|
+
fill: "none",
|
|
981
|
+
stroke: "currentColor",
|
|
982
|
+
strokeWidth: 2,
|
|
983
|
+
strokeLinecap: "round",
|
|
984
|
+
strokeLinejoin: "round",
|
|
985
|
+
role: title ? "img" : void 0,
|
|
986
|
+
"aria-hidden": title ? void 0 : true,
|
|
987
|
+
focusable: "false",
|
|
988
|
+
...props,
|
|
989
|
+
children: [
|
|
990
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
991
|
+
/* @__PURE__ */ jsx("path", { d: "M12 3l8 3v6c0 4.5-3.2 8-8 9-4.8-1-8-4.5-8-9V6z" }),
|
|
992
|
+
/* @__PURE__ */ jsx("path", { d: "M9 12l2 2 4-4" })
|
|
993
|
+
]
|
|
994
|
+
}
|
|
995
|
+
);
|
|
996
|
+
}
|
|
997
|
+
function Star({ title, ...props }) {
|
|
998
|
+
return /* @__PURE__ */ jsxs(
|
|
999
|
+
"svg",
|
|
1000
|
+
{
|
|
1001
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1002
|
+
viewBox: "0 0 24 24",
|
|
1003
|
+
width: "1em",
|
|
1004
|
+
height: "1em",
|
|
1005
|
+
fill: "none",
|
|
1006
|
+
stroke: "currentColor",
|
|
1007
|
+
strokeWidth: 2,
|
|
1008
|
+
strokeLinecap: "round",
|
|
1009
|
+
strokeLinejoin: "round",
|
|
1010
|
+
role: title ? "img" : void 0,
|
|
1011
|
+
"aria-hidden": title ? void 0 : true,
|
|
1012
|
+
focusable: "false",
|
|
1013
|
+
...props,
|
|
1014
|
+
children: [
|
|
1015
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1016
|
+
/* @__PURE__ */ jsx("polygon", { points: "12,3 14.8,8.9 21,9.7 16.4,14 17.6,20.3 12,17.2 6.4,20.3 7.6,14 3,9.7 9.2,8.9" })
|
|
1017
|
+
]
|
|
1018
|
+
}
|
|
1019
|
+
);
|
|
1020
|
+
}
|
|
1021
|
+
function Sun({ title, ...props }) {
|
|
1022
|
+
return /* @__PURE__ */ jsxs(
|
|
1023
|
+
"svg",
|
|
1024
|
+
{
|
|
1025
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1026
|
+
viewBox: "0 0 24 24",
|
|
1027
|
+
width: "1em",
|
|
1028
|
+
height: "1em",
|
|
1029
|
+
fill: "none",
|
|
1030
|
+
stroke: "currentColor",
|
|
1031
|
+
strokeWidth: 2,
|
|
1032
|
+
strokeLinecap: "round",
|
|
1033
|
+
strokeLinejoin: "round",
|
|
1034
|
+
role: title ? "img" : void 0,
|
|
1035
|
+
"aria-hidden": title ? void 0 : true,
|
|
1036
|
+
focusable: "false",
|
|
1037
|
+
...props,
|
|
1038
|
+
children: [
|
|
1039
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1040
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "4" }),
|
|
1041
|
+
/* @__PURE__ */ jsx("path", { d: "M12 2v2M12 20v2M2 12h2M20 12h2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4" })
|
|
1042
|
+
]
|
|
1043
|
+
}
|
|
1044
|
+
);
|
|
1045
|
+
}
|
|
1046
|
+
function Tag({ title, ...props }) {
|
|
1047
|
+
return /* @__PURE__ */ jsxs(
|
|
1048
|
+
"svg",
|
|
1049
|
+
{
|
|
1050
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1051
|
+
viewBox: "0 0 24 24",
|
|
1052
|
+
width: "1em",
|
|
1053
|
+
height: "1em",
|
|
1054
|
+
fill: "none",
|
|
1055
|
+
stroke: "currentColor",
|
|
1056
|
+
strokeWidth: 2,
|
|
1057
|
+
strokeLinecap: "round",
|
|
1058
|
+
strokeLinejoin: "round",
|
|
1059
|
+
role: title ? "img" : void 0,
|
|
1060
|
+
"aria-hidden": title ? void 0 : true,
|
|
1061
|
+
focusable: "false",
|
|
1062
|
+
...props,
|
|
1063
|
+
children: [
|
|
1064
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1065
|
+
/* @__PURE__ */ jsx("path", { d: "M4 4h7.5l9 9a1.5 1.5 0 0 1 0 2.1l-5.4 5.4a1.5 1.5 0 0 1-2.1 0l-9-9z" }),
|
|
1066
|
+
/* @__PURE__ */ jsx("path", { d: "M8 8h.01" })
|
|
1067
|
+
]
|
|
1068
|
+
}
|
|
1069
|
+
);
|
|
1070
|
+
}
|
|
1071
|
+
function Trash({ title, ...props }) {
|
|
1072
|
+
return /* @__PURE__ */ jsxs(
|
|
1073
|
+
"svg",
|
|
1074
|
+
{
|
|
1075
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1076
|
+
viewBox: "0 0 24 24",
|
|
1077
|
+
width: "1em",
|
|
1078
|
+
height: "1em",
|
|
1079
|
+
fill: "none",
|
|
1080
|
+
stroke: "currentColor",
|
|
1081
|
+
strokeWidth: 2,
|
|
1082
|
+
strokeLinecap: "round",
|
|
1083
|
+
strokeLinejoin: "round",
|
|
1084
|
+
role: title ? "img" : void 0,
|
|
1085
|
+
"aria-hidden": title ? void 0 : true,
|
|
1086
|
+
focusable: "false",
|
|
1087
|
+
...props,
|
|
1088
|
+
children: [
|
|
1089
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1090
|
+
/* @__PURE__ */ jsx("path", { d: "M4 7h16" }),
|
|
1091
|
+
/* @__PURE__ */ jsx("path", { d: "M9 7V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2" }),
|
|
1092
|
+
/* @__PURE__ */ jsx("path", { d: "M6 7l1 12a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2l1-12" }),
|
|
1093
|
+
/* @__PURE__ */ jsx("path", { d: "M10 11v6" }),
|
|
1094
|
+
/* @__PURE__ */ jsx("path", { d: "M14 11v6" })
|
|
1095
|
+
]
|
|
1096
|
+
}
|
|
1097
|
+
);
|
|
1098
|
+
}
|
|
1099
|
+
function TrendingUp({ title, ...props }) {
|
|
1100
|
+
return /* @__PURE__ */ jsxs(
|
|
1101
|
+
"svg",
|
|
1102
|
+
{
|
|
1103
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1104
|
+
viewBox: "0 0 24 24",
|
|
1105
|
+
width: "1em",
|
|
1106
|
+
height: "1em",
|
|
1107
|
+
fill: "none",
|
|
1108
|
+
stroke: "currentColor",
|
|
1109
|
+
strokeWidth: 2,
|
|
1110
|
+
strokeLinecap: "round",
|
|
1111
|
+
strokeLinejoin: "round",
|
|
1112
|
+
role: title ? "img" : void 0,
|
|
1113
|
+
"aria-hidden": title ? void 0 : true,
|
|
1114
|
+
focusable: "false",
|
|
1115
|
+
...props,
|
|
1116
|
+
children: [
|
|
1117
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1118
|
+
/* @__PURE__ */ jsx("polyline", { points: "3,17 9,11 13,15 21,7" }),
|
|
1119
|
+
/* @__PURE__ */ jsx("polyline", { points: "15,7 21,7 21,13" })
|
|
1120
|
+
]
|
|
1121
|
+
}
|
|
1122
|
+
);
|
|
1123
|
+
}
|
|
1124
|
+
function Trophy({ title, ...props }) {
|
|
1125
|
+
return /* @__PURE__ */ jsxs(
|
|
1126
|
+
"svg",
|
|
1127
|
+
{
|
|
1128
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1129
|
+
viewBox: "0 0 24 24",
|
|
1130
|
+
width: "1em",
|
|
1131
|
+
height: "1em",
|
|
1132
|
+
fill: "none",
|
|
1133
|
+
stroke: "currentColor",
|
|
1134
|
+
strokeWidth: 2,
|
|
1135
|
+
strokeLinecap: "round",
|
|
1136
|
+
strokeLinejoin: "round",
|
|
1137
|
+
role: title ? "img" : void 0,
|
|
1138
|
+
"aria-hidden": title ? void 0 : true,
|
|
1139
|
+
focusable: "false",
|
|
1140
|
+
...props,
|
|
1141
|
+
children: [
|
|
1142
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1143
|
+
/* @__PURE__ */ jsx("path", { d: "M7 4h10v5a5 5 0 0 1-10 0z" }),
|
|
1144
|
+
/* @__PURE__ */ jsx("path", { d: "M7 6H4v1a3 3 0 0 0 3 3" }),
|
|
1145
|
+
/* @__PURE__ */ jsx("path", { d: "M17 6h3v1a3 3 0 0 1-3 3" }),
|
|
1146
|
+
/* @__PURE__ */ jsx("path", { d: "M12 14v7" }),
|
|
1147
|
+
/* @__PURE__ */ jsx("path", { d: "M8 21h8" })
|
|
1148
|
+
]
|
|
1149
|
+
}
|
|
1150
|
+
);
|
|
1151
|
+
}
|
|
1152
|
+
function Umbrella({ title, ...props }) {
|
|
1153
|
+
return /* @__PURE__ */ jsxs(
|
|
1154
|
+
"svg",
|
|
1155
|
+
{
|
|
1156
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1157
|
+
viewBox: "0 0 24 24",
|
|
1158
|
+
width: "1em",
|
|
1159
|
+
height: "1em",
|
|
1160
|
+
fill: "none",
|
|
1161
|
+
stroke: "currentColor",
|
|
1162
|
+
strokeWidth: 2,
|
|
1163
|
+
strokeLinecap: "round",
|
|
1164
|
+
strokeLinejoin: "round",
|
|
1165
|
+
role: title ? "img" : void 0,
|
|
1166
|
+
"aria-hidden": title ? void 0 : true,
|
|
1167
|
+
focusable: "false",
|
|
1168
|
+
...props,
|
|
1169
|
+
children: [
|
|
1170
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1171
|
+
/* @__PURE__ */ jsx("path", { d: "M3 12a9 9 0 0 1 18 0z" }),
|
|
1172
|
+
/* @__PURE__ */ jsx("path", { d: "M12 12v7a2 2 0 0 0 4 0" }),
|
|
1173
|
+
/* @__PURE__ */ jsx("path", { d: "M12 2v1" })
|
|
1174
|
+
]
|
|
1175
|
+
}
|
|
1176
|
+
);
|
|
1177
|
+
}
|
|
1178
|
+
function Undo({ title, ...props }) {
|
|
1179
|
+
return /* @__PURE__ */ jsxs(
|
|
1180
|
+
"svg",
|
|
1181
|
+
{
|
|
1182
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1183
|
+
viewBox: "0 0 24 24",
|
|
1184
|
+
width: "1em",
|
|
1185
|
+
height: "1em",
|
|
1186
|
+
fill: "none",
|
|
1187
|
+
stroke: "currentColor",
|
|
1188
|
+
strokeWidth: 2,
|
|
1189
|
+
strokeLinecap: "round",
|
|
1190
|
+
strokeLinejoin: "round",
|
|
1191
|
+
role: title ? "img" : void 0,
|
|
1192
|
+
"aria-hidden": title ? void 0 : true,
|
|
1193
|
+
focusable: "false",
|
|
1194
|
+
...props,
|
|
1195
|
+
children: [
|
|
1196
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1197
|
+
/* @__PURE__ */ jsx("polyline", { points: "9,14 4,9 9,4" }),
|
|
1198
|
+
/* @__PURE__ */ jsx("path", { d: "M4 9h10a6 6 0 0 1 0 12h-3" })
|
|
1199
|
+
]
|
|
1200
|
+
}
|
|
1201
|
+
);
|
|
1202
|
+
}
|
|
1203
|
+
function User({ title, ...props }) {
|
|
1204
|
+
return /* @__PURE__ */ jsxs(
|
|
1205
|
+
"svg",
|
|
1206
|
+
{
|
|
1207
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1208
|
+
viewBox: "0 0 24 24",
|
|
1209
|
+
width: "1em",
|
|
1210
|
+
height: "1em",
|
|
1211
|
+
fill: "none",
|
|
1212
|
+
stroke: "currentColor",
|
|
1213
|
+
strokeWidth: 2,
|
|
1214
|
+
strokeLinecap: "round",
|
|
1215
|
+
strokeLinejoin: "round",
|
|
1216
|
+
role: title ? "img" : void 0,
|
|
1217
|
+
"aria-hidden": title ? void 0 : true,
|
|
1218
|
+
focusable: "false",
|
|
1219
|
+
...props,
|
|
1220
|
+
children: [
|
|
1221
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1222
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "8", r: "4" }),
|
|
1223
|
+
/* @__PURE__ */ jsx("path", { d: "M4 21v-1a6 6 0 0 1 6-6h4a6 6 0 0 1 6 6v1" })
|
|
1224
|
+
]
|
|
1225
|
+
}
|
|
1226
|
+
);
|
|
1227
|
+
}
|
|
1228
|
+
function Users({ title, ...props }) {
|
|
1229
|
+
return /* @__PURE__ */ jsxs(
|
|
1230
|
+
"svg",
|
|
1231
|
+
{
|
|
1232
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1233
|
+
viewBox: "0 0 24 24",
|
|
1234
|
+
width: "1em",
|
|
1235
|
+
height: "1em",
|
|
1236
|
+
fill: "none",
|
|
1237
|
+
stroke: "currentColor",
|
|
1238
|
+
strokeWidth: 2,
|
|
1239
|
+
strokeLinecap: "round",
|
|
1240
|
+
strokeLinejoin: "round",
|
|
1241
|
+
role: title ? "img" : void 0,
|
|
1242
|
+
"aria-hidden": title ? void 0 : true,
|
|
1243
|
+
focusable: "false",
|
|
1244
|
+
...props,
|
|
1245
|
+
children: [
|
|
1246
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1247
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "8", r: "3" }),
|
|
1248
|
+
/* @__PURE__ */ jsx("path", { d: "M3 20v-1a5 5 0 0 1 5-5h2a5 5 0 0 1 5 5v1" }),
|
|
1249
|
+
/* @__PURE__ */ jsx("path", { d: "M16 5.2a3 3 0 0 1 0 5.6" }),
|
|
1250
|
+
/* @__PURE__ */ jsx("path", { d: "M21 20v-1a5 5 0 0 0-3.5-4.8" })
|
|
1251
|
+
]
|
|
1252
|
+
}
|
|
1253
|
+
);
|
|
1254
|
+
}
|
|
1255
|
+
function Utensils({ title, ...props }) {
|
|
1256
|
+
return /* @__PURE__ */ jsxs(
|
|
1257
|
+
"svg",
|
|
1258
|
+
{
|
|
1259
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1260
|
+
viewBox: "0 0 24 24",
|
|
1261
|
+
width: "1em",
|
|
1262
|
+
height: "1em",
|
|
1263
|
+
fill: "none",
|
|
1264
|
+
stroke: "currentColor",
|
|
1265
|
+
strokeWidth: 2,
|
|
1266
|
+
strokeLinecap: "round",
|
|
1267
|
+
strokeLinejoin: "round",
|
|
1268
|
+
role: title ? "img" : void 0,
|
|
1269
|
+
"aria-hidden": title ? void 0 : true,
|
|
1270
|
+
focusable: "false",
|
|
1271
|
+
...props,
|
|
1272
|
+
children: [
|
|
1273
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1274
|
+
/* @__PURE__ */ jsx("path", { d: "M5 3v6a3 3 0 0 0 6 0V3" }),
|
|
1275
|
+
/* @__PURE__ */ jsx("path", { d: "M8 3v18" }),
|
|
1276
|
+
/* @__PURE__ */ jsx("path", { d: "M18 21V3c-2.5 1.5-4 5-4 10h4" })
|
|
1277
|
+
]
|
|
1278
|
+
}
|
|
1279
|
+
);
|
|
1280
|
+
}
|
|
1281
|
+
function Warning({ title, ...props }) {
|
|
1282
|
+
return /* @__PURE__ */ jsxs(
|
|
1283
|
+
"svg",
|
|
1284
|
+
{
|
|
1285
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1286
|
+
viewBox: "0 0 24 24",
|
|
1287
|
+
width: "1em",
|
|
1288
|
+
height: "1em",
|
|
1289
|
+
fill: "none",
|
|
1290
|
+
stroke: "currentColor",
|
|
1291
|
+
strokeWidth: 2,
|
|
1292
|
+
strokeLinecap: "round",
|
|
1293
|
+
strokeLinejoin: "round",
|
|
1294
|
+
role: title ? "img" : void 0,
|
|
1295
|
+
"aria-hidden": title ? void 0 : true,
|
|
1296
|
+
focusable: "false",
|
|
1297
|
+
...props,
|
|
1298
|
+
children: [
|
|
1299
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1300
|
+
/* @__PURE__ */ jsx("path", { d: "M12 3l10 18H2z" }),
|
|
1301
|
+
/* @__PURE__ */ jsx("path", { d: "M12 10v4" }),
|
|
1302
|
+
/* @__PURE__ */ jsx("path", { d: "M12 18h.01" })
|
|
1303
|
+
]
|
|
1304
|
+
}
|
|
1305
|
+
);
|
|
1306
|
+
}
|
|
1307
|
+
function ZoomIn({ title, ...props }) {
|
|
1308
|
+
return /* @__PURE__ */ jsxs(
|
|
1309
|
+
"svg",
|
|
1310
|
+
{
|
|
1311
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1312
|
+
viewBox: "0 0 24 24",
|
|
1313
|
+
width: "1em",
|
|
1314
|
+
height: "1em",
|
|
1315
|
+
fill: "none",
|
|
1316
|
+
stroke: "currentColor",
|
|
1317
|
+
strokeWidth: 2,
|
|
1318
|
+
strokeLinecap: "round",
|
|
1319
|
+
strokeLinejoin: "round",
|
|
1320
|
+
role: title ? "img" : void 0,
|
|
1321
|
+
"aria-hidden": title ? void 0 : true,
|
|
1322
|
+
focusable: "false",
|
|
1323
|
+
...props,
|
|
1324
|
+
children: [
|
|
1325
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
1326
|
+
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "7" }),
|
|
1327
|
+
/* @__PURE__ */ jsx("path", { d: "M20 20l-3.5-3.5" }),
|
|
1328
|
+
/* @__PURE__ */ jsx("path", { d: "M11 8v6" }),
|
|
1329
|
+
/* @__PURE__ */ jsx("path", { d: "M8 11h6" })
|
|
300
1330
|
]
|
|
301
1331
|
}
|
|
302
1332
|
);
|
|
303
1333
|
}
|
|
304
1334
|
|
|
305
|
-
export { ArrowLeft, ArrowRight, Calendar, Check, ChevronDown, ChevronLeft, ChevronRight, Close, Info, Plus, Search, Warning };
|
|
1335
|
+
export { AlertCircle, Archive, ArrowLeft, ArrowRight, Ban, Bookmark, Calendar, Car, Chain, Check, CheckCircle, ChevronDown, ChevronLeft, ChevronRight, Close, Compass, Crosshair, Export, Filter, GripVertical, Heart, HelpCircle, Info, Mail, MapFolded, MapPin, Meh, Message, Moon, Note, Page, Pencil, Picture, Plus, Search, Send, Settings, Share, ShieldCheck, Star, Sun, Tag, Trash, TrendingUp, Trophy, Umbrella, Undo, User, Users, Utensils, Warning, ZoomIn };
|
|
306
1336
|
//# sourceMappingURL=index.js.map
|
|
307
1337
|
//# sourceMappingURL=index.js.map
|