@cascivo/icons 0.1.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 +19 -0
- package/dist/index.d.mts +505 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +604 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +60 -0
- package/readme.body.md +1 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 urbanisierung
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<!-- generated by scripts/readme/generate.ts — edit readme.body.md, not this file -->
|
|
2
|
+
|
|
3
|
+
# @cascivo/icons
|
|
4
|
+
|
|
5
|
+
> Optional SVG icon components
|
|
6
|
+
|
|
7
|
+
[cascivo.com](https://cascivo.com) · [Docs](https://docs.cascivo.com) · [Storybook](https://storybook.cascivo.com) · [GitHub](https://github.com/urbanisierung/cascivo)
|
|
8
|
+
|
|
9
|
+
Optional SVG icon components for cascade — a curated set of React SVG icons that follow the cascade token system. Import individually to keep bundle size minimal.
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
pnpm add @cascivo/icons
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
[cascivo.com](https://cascivo.com) · [Docs](https://docs.cascivo.com) · [Storybook](https://storybook.cascivo.com) · [GitHub](https://github.com/urbanisierung/cascivo) · AI agents: use [`@cascivo/mcp`](https://github.com/urbanisierung/cascivo/tree/main/packages/mcp) and [`registry.json`](https://github.com/urbanisierung/cascivo/blob/main/registry.json) · MIT
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,505 @@
|
|
|
1
|
+
import { SVGAttributes } from "react";
|
|
2
|
+
|
|
3
|
+
//#region src/create-icon.d.ts
|
|
4
|
+
interface IconProps extends Omit<SVGAttributes<SVGSVGElement>, 'color'> {
|
|
5
|
+
/** Width and height in pixels. */
|
|
6
|
+
size?: number;
|
|
7
|
+
/** Stroke color — defaults to currentColor so icons inherit text color. */
|
|
8
|
+
color?: string;
|
|
9
|
+
className?: string;
|
|
10
|
+
}
|
|
11
|
+
/** Build an icon component from SVG path children. 24×24 viewBox, stroked. */
|
|
12
|
+
declare function createIcon(name: string, children: React.ReactNode): {
|
|
13
|
+
({
|
|
14
|
+
size,
|
|
15
|
+
color,
|
|
16
|
+
...props
|
|
17
|
+
}: IconProps): import("react").JSX.Element;
|
|
18
|
+
displayName: string;
|
|
19
|
+
};
|
|
20
|
+
//#endregion
|
|
21
|
+
//#region src/index.d.ts
|
|
22
|
+
declare const VERSION = "0.0.0";
|
|
23
|
+
declare const ChevronDown: {
|
|
24
|
+
({
|
|
25
|
+
size,
|
|
26
|
+
color,
|
|
27
|
+
...props
|
|
28
|
+
}: IconProps): import("react").JSX.Element;
|
|
29
|
+
displayName: string;
|
|
30
|
+
};
|
|
31
|
+
declare const ChevronUp: {
|
|
32
|
+
({
|
|
33
|
+
size,
|
|
34
|
+
color,
|
|
35
|
+
...props
|
|
36
|
+
}: IconProps): import("react").JSX.Element;
|
|
37
|
+
displayName: string;
|
|
38
|
+
};
|
|
39
|
+
declare const ChevronLeft: {
|
|
40
|
+
({
|
|
41
|
+
size,
|
|
42
|
+
color,
|
|
43
|
+
...props
|
|
44
|
+
}: IconProps): import("react").JSX.Element;
|
|
45
|
+
displayName: string;
|
|
46
|
+
};
|
|
47
|
+
declare const ChevronRight: {
|
|
48
|
+
({
|
|
49
|
+
size,
|
|
50
|
+
color,
|
|
51
|
+
...props
|
|
52
|
+
}: IconProps): import("react").JSX.Element;
|
|
53
|
+
displayName: string;
|
|
54
|
+
};
|
|
55
|
+
declare const X: {
|
|
56
|
+
({
|
|
57
|
+
size,
|
|
58
|
+
color,
|
|
59
|
+
...props
|
|
60
|
+
}: IconProps): import("react").JSX.Element;
|
|
61
|
+
displayName: string;
|
|
62
|
+
};
|
|
63
|
+
declare const Check: {
|
|
64
|
+
({
|
|
65
|
+
size,
|
|
66
|
+
color,
|
|
67
|
+
...props
|
|
68
|
+
}: IconProps): import("react").JSX.Element;
|
|
69
|
+
displayName: string;
|
|
70
|
+
};
|
|
71
|
+
declare const Plus: {
|
|
72
|
+
({
|
|
73
|
+
size,
|
|
74
|
+
color,
|
|
75
|
+
...props
|
|
76
|
+
}: IconProps): import("react").JSX.Element;
|
|
77
|
+
displayName: string;
|
|
78
|
+
};
|
|
79
|
+
declare const Minus: {
|
|
80
|
+
({
|
|
81
|
+
size,
|
|
82
|
+
color,
|
|
83
|
+
...props
|
|
84
|
+
}: IconProps): import("react").JSX.Element;
|
|
85
|
+
displayName: string;
|
|
86
|
+
};
|
|
87
|
+
declare const AlertCircle: {
|
|
88
|
+
({
|
|
89
|
+
size,
|
|
90
|
+
color,
|
|
91
|
+
...props
|
|
92
|
+
}: IconProps): import("react").JSX.Element;
|
|
93
|
+
displayName: string;
|
|
94
|
+
};
|
|
95
|
+
declare const AlertTriangle: {
|
|
96
|
+
({
|
|
97
|
+
size,
|
|
98
|
+
color,
|
|
99
|
+
...props
|
|
100
|
+
}: IconProps): import("react").JSX.Element;
|
|
101
|
+
displayName: string;
|
|
102
|
+
};
|
|
103
|
+
declare const CheckCircle: {
|
|
104
|
+
({
|
|
105
|
+
size,
|
|
106
|
+
color,
|
|
107
|
+
...props
|
|
108
|
+
}: IconProps): import("react").JSX.Element;
|
|
109
|
+
displayName: string;
|
|
110
|
+
};
|
|
111
|
+
declare const Info: {
|
|
112
|
+
({
|
|
113
|
+
size,
|
|
114
|
+
color,
|
|
115
|
+
...props
|
|
116
|
+
}: IconProps): import("react").JSX.Element;
|
|
117
|
+
displayName: string;
|
|
118
|
+
};
|
|
119
|
+
declare const ArrowRight: {
|
|
120
|
+
({
|
|
121
|
+
size,
|
|
122
|
+
color,
|
|
123
|
+
...props
|
|
124
|
+
}: IconProps): import("react").JSX.Element;
|
|
125
|
+
displayName: string;
|
|
126
|
+
};
|
|
127
|
+
declare const ArrowLeft: {
|
|
128
|
+
({
|
|
129
|
+
size,
|
|
130
|
+
color,
|
|
131
|
+
...props
|
|
132
|
+
}: IconProps): import("react").JSX.Element;
|
|
133
|
+
displayName: string;
|
|
134
|
+
};
|
|
135
|
+
declare const ArrowUp: {
|
|
136
|
+
({
|
|
137
|
+
size,
|
|
138
|
+
color,
|
|
139
|
+
...props
|
|
140
|
+
}: IconProps): import("react").JSX.Element;
|
|
141
|
+
displayName: string;
|
|
142
|
+
};
|
|
143
|
+
declare const ArrowDown: {
|
|
144
|
+
({
|
|
145
|
+
size,
|
|
146
|
+
color,
|
|
147
|
+
...props
|
|
148
|
+
}: IconProps): import("react").JSX.Element;
|
|
149
|
+
displayName: string;
|
|
150
|
+
};
|
|
151
|
+
declare const Search: {
|
|
152
|
+
({
|
|
153
|
+
size,
|
|
154
|
+
color,
|
|
155
|
+
...props
|
|
156
|
+
}: IconProps): import("react").JSX.Element;
|
|
157
|
+
displayName: string;
|
|
158
|
+
};
|
|
159
|
+
declare const Copy: {
|
|
160
|
+
({
|
|
161
|
+
size,
|
|
162
|
+
color,
|
|
163
|
+
...props
|
|
164
|
+
}: IconProps): import("react").JSX.Element;
|
|
165
|
+
displayName: string;
|
|
166
|
+
};
|
|
167
|
+
declare const Download: {
|
|
168
|
+
({
|
|
169
|
+
size,
|
|
170
|
+
color,
|
|
171
|
+
...props
|
|
172
|
+
}: IconProps): import("react").JSX.Element;
|
|
173
|
+
displayName: string;
|
|
174
|
+
};
|
|
175
|
+
declare const Upload: {
|
|
176
|
+
({
|
|
177
|
+
size,
|
|
178
|
+
color,
|
|
179
|
+
...props
|
|
180
|
+
}: IconProps): import("react").JSX.Element;
|
|
181
|
+
displayName: string;
|
|
182
|
+
};
|
|
183
|
+
declare const ExternalLink: {
|
|
184
|
+
({
|
|
185
|
+
size,
|
|
186
|
+
color,
|
|
187
|
+
...props
|
|
188
|
+
}: IconProps): import("react").JSX.Element;
|
|
189
|
+
displayName: string;
|
|
190
|
+
};
|
|
191
|
+
declare const Edit: {
|
|
192
|
+
({
|
|
193
|
+
size,
|
|
194
|
+
color,
|
|
195
|
+
...props
|
|
196
|
+
}: IconProps): import("react").JSX.Element;
|
|
197
|
+
displayName: string;
|
|
198
|
+
};
|
|
199
|
+
declare const Trash: {
|
|
200
|
+
({
|
|
201
|
+
size,
|
|
202
|
+
color,
|
|
203
|
+
...props
|
|
204
|
+
}: IconProps): import("react").JSX.Element;
|
|
205
|
+
displayName: string;
|
|
206
|
+
};
|
|
207
|
+
declare const Settings: {
|
|
208
|
+
({
|
|
209
|
+
size,
|
|
210
|
+
color,
|
|
211
|
+
...props
|
|
212
|
+
}: IconProps): import("react").JSX.Element;
|
|
213
|
+
displayName: string;
|
|
214
|
+
};
|
|
215
|
+
declare const User: {
|
|
216
|
+
({
|
|
217
|
+
size,
|
|
218
|
+
color,
|
|
219
|
+
...props
|
|
220
|
+
}: IconProps): import("react").JSX.Element;
|
|
221
|
+
displayName: string;
|
|
222
|
+
};
|
|
223
|
+
declare const Calendar: {
|
|
224
|
+
({
|
|
225
|
+
size,
|
|
226
|
+
color,
|
|
227
|
+
...props
|
|
228
|
+
}: IconProps): import("react").JSX.Element;
|
|
229
|
+
displayName: string;
|
|
230
|
+
};
|
|
231
|
+
declare const Clock: {
|
|
232
|
+
({
|
|
233
|
+
size,
|
|
234
|
+
color,
|
|
235
|
+
...props
|
|
236
|
+
}: IconProps): import("react").JSX.Element;
|
|
237
|
+
displayName: string;
|
|
238
|
+
};
|
|
239
|
+
declare const Eye: {
|
|
240
|
+
({
|
|
241
|
+
size,
|
|
242
|
+
color,
|
|
243
|
+
...props
|
|
244
|
+
}: IconProps): import("react").JSX.Element;
|
|
245
|
+
displayName: string;
|
|
246
|
+
};
|
|
247
|
+
declare const EyeOff: {
|
|
248
|
+
({
|
|
249
|
+
size,
|
|
250
|
+
color,
|
|
251
|
+
...props
|
|
252
|
+
}: IconProps): import("react").JSX.Element;
|
|
253
|
+
displayName: string;
|
|
254
|
+
};
|
|
255
|
+
declare const Sun: {
|
|
256
|
+
({
|
|
257
|
+
size,
|
|
258
|
+
color,
|
|
259
|
+
...props
|
|
260
|
+
}: IconProps): import("react").JSX.Element;
|
|
261
|
+
displayName: string;
|
|
262
|
+
};
|
|
263
|
+
declare const Moon: {
|
|
264
|
+
({
|
|
265
|
+
size,
|
|
266
|
+
color,
|
|
267
|
+
...props
|
|
268
|
+
}: IconProps): import("react").JSX.Element;
|
|
269
|
+
displayName: string;
|
|
270
|
+
};
|
|
271
|
+
declare const Menu: {
|
|
272
|
+
({
|
|
273
|
+
size,
|
|
274
|
+
color,
|
|
275
|
+
...props
|
|
276
|
+
}: IconProps): import("react").JSX.Element;
|
|
277
|
+
displayName: string;
|
|
278
|
+
};
|
|
279
|
+
declare const MoreHorizontal: {
|
|
280
|
+
({
|
|
281
|
+
size,
|
|
282
|
+
color,
|
|
283
|
+
...props
|
|
284
|
+
}: IconProps): import("react").JSX.Element;
|
|
285
|
+
displayName: string;
|
|
286
|
+
};
|
|
287
|
+
declare const Star: {
|
|
288
|
+
({
|
|
289
|
+
size,
|
|
290
|
+
color,
|
|
291
|
+
...props
|
|
292
|
+
}: IconProps): import("react").JSX.Element;
|
|
293
|
+
displayName: string;
|
|
294
|
+
};
|
|
295
|
+
declare const Heart: {
|
|
296
|
+
({
|
|
297
|
+
size,
|
|
298
|
+
color,
|
|
299
|
+
...props
|
|
300
|
+
}: IconProps): import("react").JSX.Element;
|
|
301
|
+
displayName: string;
|
|
302
|
+
};
|
|
303
|
+
declare const Loader: {
|
|
304
|
+
({
|
|
305
|
+
size,
|
|
306
|
+
color,
|
|
307
|
+
...props
|
|
308
|
+
}: IconProps): import("react").JSX.Element;
|
|
309
|
+
displayName: string;
|
|
310
|
+
};
|
|
311
|
+
declare const Bell: {
|
|
312
|
+
({
|
|
313
|
+
size,
|
|
314
|
+
color,
|
|
315
|
+
...props
|
|
316
|
+
}: IconProps): import("react").JSX.Element;
|
|
317
|
+
displayName: string;
|
|
318
|
+
};
|
|
319
|
+
declare const Home: {
|
|
320
|
+
({
|
|
321
|
+
size,
|
|
322
|
+
color,
|
|
323
|
+
...props
|
|
324
|
+
}: IconProps): import("react").JSX.Element;
|
|
325
|
+
displayName: string;
|
|
326
|
+
};
|
|
327
|
+
declare const Dashboard: {
|
|
328
|
+
({
|
|
329
|
+
size,
|
|
330
|
+
color,
|
|
331
|
+
...props
|
|
332
|
+
}: IconProps): import("react").JSX.Element;
|
|
333
|
+
displayName: string;
|
|
334
|
+
};
|
|
335
|
+
declare const Users: {
|
|
336
|
+
({
|
|
337
|
+
size,
|
|
338
|
+
color,
|
|
339
|
+
...props
|
|
340
|
+
}: IconProps): import("react").JSX.Element;
|
|
341
|
+
displayName: string;
|
|
342
|
+
};
|
|
343
|
+
declare const Grid: {
|
|
344
|
+
({
|
|
345
|
+
size,
|
|
346
|
+
color,
|
|
347
|
+
...props
|
|
348
|
+
}: IconProps): import("react").JSX.Element;
|
|
349
|
+
displayName: string;
|
|
350
|
+
};
|
|
351
|
+
declare const HelpCircle: {
|
|
352
|
+
({
|
|
353
|
+
size,
|
|
354
|
+
color,
|
|
355
|
+
...props
|
|
356
|
+
}: IconProps): import("react").JSX.Element;
|
|
357
|
+
displayName: string;
|
|
358
|
+
};
|
|
359
|
+
declare const LogOut: {
|
|
360
|
+
({
|
|
361
|
+
size,
|
|
362
|
+
color,
|
|
363
|
+
...props
|
|
364
|
+
}: IconProps): import("react").JSX.Element;
|
|
365
|
+
displayName: string;
|
|
366
|
+
};
|
|
367
|
+
declare const Folder: {
|
|
368
|
+
({
|
|
369
|
+
size,
|
|
370
|
+
color,
|
|
371
|
+
...props
|
|
372
|
+
}: IconProps): import("react").JSX.Element;
|
|
373
|
+
displayName: string;
|
|
374
|
+
};
|
|
375
|
+
declare const File: {
|
|
376
|
+
({
|
|
377
|
+
size,
|
|
378
|
+
color,
|
|
379
|
+
...props
|
|
380
|
+
}: IconProps): import("react").JSX.Element;
|
|
381
|
+
displayName: string;
|
|
382
|
+
};
|
|
383
|
+
declare const Filter: {
|
|
384
|
+
({
|
|
385
|
+
size,
|
|
386
|
+
color,
|
|
387
|
+
...props
|
|
388
|
+
}: IconProps): import("react").JSX.Element;
|
|
389
|
+
displayName: string;
|
|
390
|
+
};
|
|
391
|
+
declare const BarChart: {
|
|
392
|
+
({
|
|
393
|
+
size,
|
|
394
|
+
color,
|
|
395
|
+
...props
|
|
396
|
+
}: IconProps): import("react").JSX.Element;
|
|
397
|
+
displayName: string;
|
|
398
|
+
};
|
|
399
|
+
declare const Globe: {
|
|
400
|
+
({
|
|
401
|
+
size,
|
|
402
|
+
color,
|
|
403
|
+
...props
|
|
404
|
+
}: IconProps): import("react").JSX.Element;
|
|
405
|
+
displayName: string;
|
|
406
|
+
};
|
|
407
|
+
declare const Lock: {
|
|
408
|
+
({
|
|
409
|
+
size,
|
|
410
|
+
color,
|
|
411
|
+
...props
|
|
412
|
+
}: IconProps): import("react").JSX.Element;
|
|
413
|
+
displayName: string;
|
|
414
|
+
};
|
|
415
|
+
declare const Server: {
|
|
416
|
+
({
|
|
417
|
+
size,
|
|
418
|
+
color,
|
|
419
|
+
...props
|
|
420
|
+
}: IconProps): import("react").JSX.Element;
|
|
421
|
+
displayName: string;
|
|
422
|
+
};
|
|
423
|
+
declare const Terminal: {
|
|
424
|
+
({
|
|
425
|
+
size,
|
|
426
|
+
color,
|
|
427
|
+
...props
|
|
428
|
+
}: IconProps): import("react").JSX.Element;
|
|
429
|
+
displayName: string;
|
|
430
|
+
};
|
|
431
|
+
declare const Database: {
|
|
432
|
+
({
|
|
433
|
+
size,
|
|
434
|
+
color,
|
|
435
|
+
...props
|
|
436
|
+
}: IconProps): import("react").JSX.Element;
|
|
437
|
+
displayName: string;
|
|
438
|
+
};
|
|
439
|
+
declare const Key: {
|
|
440
|
+
({
|
|
441
|
+
size,
|
|
442
|
+
color,
|
|
443
|
+
...props
|
|
444
|
+
}: IconProps): import("react").JSX.Element;
|
|
445
|
+
displayName: string;
|
|
446
|
+
};
|
|
447
|
+
declare const Shield: {
|
|
448
|
+
({
|
|
449
|
+
size,
|
|
450
|
+
color,
|
|
451
|
+
...props
|
|
452
|
+
}: IconProps): import("react").JSX.Element;
|
|
453
|
+
displayName: string;
|
|
454
|
+
};
|
|
455
|
+
declare const CreditCard: {
|
|
456
|
+
({
|
|
457
|
+
size,
|
|
458
|
+
color,
|
|
459
|
+
...props
|
|
460
|
+
}: IconProps): import("react").JSX.Element;
|
|
461
|
+
displayName: string;
|
|
462
|
+
};
|
|
463
|
+
declare const Inbox: {
|
|
464
|
+
({
|
|
465
|
+
size,
|
|
466
|
+
color,
|
|
467
|
+
...props
|
|
468
|
+
}: IconProps): import("react").JSX.Element;
|
|
469
|
+
displayName: string;
|
|
470
|
+
};
|
|
471
|
+
declare const Tag: {
|
|
472
|
+
({
|
|
473
|
+
size,
|
|
474
|
+
color,
|
|
475
|
+
...props
|
|
476
|
+
}: IconProps): import("react").JSX.Element;
|
|
477
|
+
displayName: string;
|
|
478
|
+
};
|
|
479
|
+
declare const Zap: {
|
|
480
|
+
({
|
|
481
|
+
size,
|
|
482
|
+
color,
|
|
483
|
+
...props
|
|
484
|
+
}: IconProps): import("react").JSX.Element;
|
|
485
|
+
displayName: string;
|
|
486
|
+
};
|
|
487
|
+
declare const Layers: {
|
|
488
|
+
({
|
|
489
|
+
size,
|
|
490
|
+
color,
|
|
491
|
+
...props
|
|
492
|
+
}: IconProps): import("react").JSX.Element;
|
|
493
|
+
displayName: string;
|
|
494
|
+
};
|
|
495
|
+
declare const Activity: {
|
|
496
|
+
({
|
|
497
|
+
size,
|
|
498
|
+
color,
|
|
499
|
+
...props
|
|
500
|
+
}: IconProps): import("react").JSX.Element;
|
|
501
|
+
displayName: string;
|
|
502
|
+
};
|
|
503
|
+
//#endregion
|
|
504
|
+
export { Activity, AlertCircle, AlertTriangle, ArrowDown, ArrowLeft, ArrowRight, ArrowUp, BarChart, Bell, Calendar, Check, CheckCircle, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clock, Copy, CreditCard, Dashboard, Database, Download, Edit, ExternalLink, Eye, EyeOff, File, Filter, Folder, Globe, Grid, Heart, HelpCircle, Home, type IconProps, Inbox, Info, Key, Layers, Loader, Lock, LogOut, Menu, Minus, Moon, MoreHorizontal, Plus, Search, Server, Settings, Shield, Star, Sun, Tag, Terminal, Trash, Upload, User, Users, VERSION, X, Zap, createIcon };
|
|
505
|
+
//# sourceMappingURL=index.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/create-icon.tsx","../src/index.tsx"],"mappings":";;;UAEiB,SAAA,SAAkB,IAAA,CAAK,aAAA,CAAc,aAAA;;EAEpD,IAAA;EAFyB;EAIzB,KAAA;EACA,SAAA;AAAA;;iBAIc,UAAA,CAAW,IAAA,UAAc,QAAA,EAAU,KAAA,CAAM,SAAA;EAAA;;;;KACQ,SAAA,mBAAS,GAAA,CAAA,OAAA;;;;;cCZ7D,OAAA;AAAA,cAOA,WAAA;EAAA;;;;;;;cACA,SAAA;EAAA;;;;;;;cACA,WAAA;EAAA;;;;;;;cACA,YAAA;EAAA;;;;;;;cAEA,CAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cACA,IAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cAEA,WAAA;EAAA;;;;;;;cAQA,aAAA;EAAA;;;;;;;cAQA,WAAA;EAAA;;;;;;;cAOA,IAAA;EAAA;;;;;;;cASA,UAAA;EAAA;;;;;;;cAOA,SAAA;EAAA;;;;;;;cAOA,OAAA;EAAA;;;;;;;cAOA,SAAA;EAAA;;;;;;;cAQA,MAAA;EAAA;;;;;;;cAOA,IAAA;EAAA;;;;;;;cAOA,QAAA;EAAA;;;;;;;cAQA,MAAA;EAAA;;;;;;;cAQA,YAAA;EAAA;;;;;;;cASA,IAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cAOA,QAAA;EAAA;;;;;;;cAOA,IAAA;EAAA;;;;;;;cAOA,QAAA;EAAA;;;;;;;cASA,KAAA;EAAA;;;;;;;cAOA,GAAA;EAAA;;;;;;;cAOA,MAAA;EAAA;;;;;;;cAOA,GAAA;EAAA;;;;;;;cAcA,IAAA;EAAA;;;;;;;cACA,IAAA;EAAA;;;;;;;cAQA,cAAA;EAAA;;;;;;;cAQA,IAAA;EAAA;;;;;;;cAIA,KAAA;EAAA;;;;;;;cAIA,MAAA;EAAA;;;;;;;cAcA,IAAA;EAAA;;;;;;;cAOA,IAAA;EAAA;;;;;;;cAOA,SAAA;EAAA;;;;;;;cASA,KAAA;EAAA;;;;;;;cASA,IAAA;EAAA;;;;;;;cASA,UAAA;EAAA;;;;;;;cAQA,MAAA;EAAA;;;;;;;cAQA,MAAA;EAAA;;;;;;;cAIA,IAAA;EAAA;;;;;;;cAOA,MAAA;EAAA;;;;;;;cAIA,QAAA;EAAA;;;;;;;cASA,KAAA;EAAA;;;;;;;cAQA,IAAA;EAAA;;;;;;;cAOA,MAAA;EAAA;;;;;;;cASA,QAAA;EAAA;;;;;;;cAOA,QAAA;EAAA;;;;;;;cAQA,GAAA;EAAA;;;;;;;cAMA,MAAA;EAAA;;;;;;;cACA,UAAA;EAAA;;;;;;;cAOA,KAAA;EAAA;;;;;;;cAOA,GAAA;EAAA;;;;;;;cAOA,GAAA;EAAA;;;;;;;cACA,MAAA;EAAA;;;;;;;cAQA,QAAA;EAAA"}
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,604 @@
|
|
|
1
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region src/create-icon.tsx
|
|
3
|
+
/** Build an icon component from SVG path children. 24×24 viewBox, stroked. */
|
|
4
|
+
function createIcon(name, children) {
|
|
5
|
+
function Icon({ size = 24, color = "currentColor", ...props }) {
|
|
6
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
|
+
viewBox: "0 0 24 24",
|
|
11
|
+
fill: "none",
|
|
12
|
+
stroke: color,
|
|
13
|
+
strokeWidth: 2,
|
|
14
|
+
strokeLinecap: "round",
|
|
15
|
+
strokeLinejoin: "round",
|
|
16
|
+
"aria-hidden": props["aria-label"] ? void 0 : true,
|
|
17
|
+
...props,
|
|
18
|
+
children
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
Icon.displayName = name;
|
|
22
|
+
return Icon;
|
|
23
|
+
}
|
|
24
|
+
//#endregion
|
|
25
|
+
//#region src/index.tsx
|
|
26
|
+
const VERSION = "0.0.0";
|
|
27
|
+
const ChevronDown = createIcon("ChevronDown", /* @__PURE__ */ jsx("polyline", { points: "6 9 12 15 18 9" }));
|
|
28
|
+
const ChevronUp = createIcon("ChevronUp", /* @__PURE__ */ jsx("polyline", { points: "18 15 12 9 6 15" }));
|
|
29
|
+
const ChevronLeft = createIcon("ChevronLeft", /* @__PURE__ */ jsx("polyline", { points: "15 18 9 12 15 6" }));
|
|
30
|
+
const ChevronRight = createIcon("ChevronRight", /* @__PURE__ */ jsx("polyline", { points: "9 18 15 12 9 6" }));
|
|
31
|
+
const X = createIcon("X", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("line", {
|
|
32
|
+
x1: "18",
|
|
33
|
+
y1: "6",
|
|
34
|
+
x2: "6",
|
|
35
|
+
y2: "18"
|
|
36
|
+
}), /* @__PURE__ */ jsx("line", {
|
|
37
|
+
x1: "6",
|
|
38
|
+
y1: "6",
|
|
39
|
+
x2: "18",
|
|
40
|
+
y2: "18"
|
|
41
|
+
})] }));
|
|
42
|
+
const Check = createIcon("Check", /* @__PURE__ */ jsx("polyline", { points: "20 6 9 17 4 12" }));
|
|
43
|
+
const Plus = createIcon("Plus", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("line", {
|
|
44
|
+
x1: "12",
|
|
45
|
+
y1: "5",
|
|
46
|
+
x2: "12",
|
|
47
|
+
y2: "19"
|
|
48
|
+
}), /* @__PURE__ */ jsx("line", {
|
|
49
|
+
x1: "5",
|
|
50
|
+
y1: "12",
|
|
51
|
+
x2: "19",
|
|
52
|
+
y2: "12"
|
|
53
|
+
})] }));
|
|
54
|
+
const Minus = createIcon("Minus", /* @__PURE__ */ jsx("line", {
|
|
55
|
+
x1: "5",
|
|
56
|
+
y1: "12",
|
|
57
|
+
x2: "19",
|
|
58
|
+
y2: "12"
|
|
59
|
+
}));
|
|
60
|
+
const AlertCircle = createIcon("AlertCircle", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
61
|
+
/* @__PURE__ */ jsx("circle", {
|
|
62
|
+
cx: "12",
|
|
63
|
+
cy: "12",
|
|
64
|
+
r: "10"
|
|
65
|
+
}),
|
|
66
|
+
/* @__PURE__ */ jsx("line", {
|
|
67
|
+
x1: "12",
|
|
68
|
+
y1: "8",
|
|
69
|
+
x2: "12",
|
|
70
|
+
y2: "12"
|
|
71
|
+
}),
|
|
72
|
+
/* @__PURE__ */ jsx("line", {
|
|
73
|
+
x1: "12",
|
|
74
|
+
y1: "16",
|
|
75
|
+
x2: "12.01",
|
|
76
|
+
y2: "16"
|
|
77
|
+
})
|
|
78
|
+
] }));
|
|
79
|
+
const AlertTriangle = createIcon("AlertTriangle", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
80
|
+
/* @__PURE__ */ jsx("path", { d: "M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" }),
|
|
81
|
+
/* @__PURE__ */ jsx("line", {
|
|
82
|
+
x1: "12",
|
|
83
|
+
y1: "9",
|
|
84
|
+
x2: "12",
|
|
85
|
+
y2: "13"
|
|
86
|
+
}),
|
|
87
|
+
/* @__PURE__ */ jsx("line", {
|
|
88
|
+
x1: "12",
|
|
89
|
+
y1: "17",
|
|
90
|
+
x2: "12.01",
|
|
91
|
+
y2: "17"
|
|
92
|
+
})
|
|
93
|
+
] }));
|
|
94
|
+
const CheckCircle = createIcon("CheckCircle", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("path", { d: "M22 11.08V12a10 10 0 1 1-5.93-9.14" }), /* @__PURE__ */ jsx("polyline", { points: "22 4 12 14.01 9 11.01" })] }));
|
|
95
|
+
const Info = createIcon("Info", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
96
|
+
/* @__PURE__ */ jsx("circle", {
|
|
97
|
+
cx: "12",
|
|
98
|
+
cy: "12",
|
|
99
|
+
r: "10"
|
|
100
|
+
}),
|
|
101
|
+
/* @__PURE__ */ jsx("line", {
|
|
102
|
+
x1: "12",
|
|
103
|
+
y1: "16",
|
|
104
|
+
x2: "12",
|
|
105
|
+
y2: "12"
|
|
106
|
+
}),
|
|
107
|
+
/* @__PURE__ */ jsx("line", {
|
|
108
|
+
x1: "12",
|
|
109
|
+
y1: "8",
|
|
110
|
+
x2: "12.01",
|
|
111
|
+
y2: "8"
|
|
112
|
+
})
|
|
113
|
+
] }));
|
|
114
|
+
const ArrowRight = createIcon("ArrowRight", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("line", {
|
|
115
|
+
x1: "5",
|
|
116
|
+
y1: "12",
|
|
117
|
+
x2: "19",
|
|
118
|
+
y2: "12"
|
|
119
|
+
}), /* @__PURE__ */ jsx("polyline", { points: "12 5 19 12 12 19" })] }));
|
|
120
|
+
const ArrowLeft = createIcon("ArrowLeft", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("line", {
|
|
121
|
+
x1: "19",
|
|
122
|
+
y1: "12",
|
|
123
|
+
x2: "5",
|
|
124
|
+
y2: "12"
|
|
125
|
+
}), /* @__PURE__ */ jsx("polyline", { points: "12 19 5 12 12 5" })] }));
|
|
126
|
+
const ArrowUp = createIcon("ArrowUp", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("line", {
|
|
127
|
+
x1: "12",
|
|
128
|
+
y1: "19",
|
|
129
|
+
x2: "12",
|
|
130
|
+
y2: "5"
|
|
131
|
+
}), /* @__PURE__ */ jsx("polyline", { points: "5 12 12 5 19 12" })] }));
|
|
132
|
+
const ArrowDown = createIcon("ArrowDown", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("line", {
|
|
133
|
+
x1: "12",
|
|
134
|
+
y1: "5",
|
|
135
|
+
x2: "12",
|
|
136
|
+
y2: "19"
|
|
137
|
+
}), /* @__PURE__ */ jsx("polyline", { points: "19 12 12 19 5 12" })] }));
|
|
138
|
+
const Search = createIcon("Search", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("circle", {
|
|
139
|
+
cx: "11",
|
|
140
|
+
cy: "11",
|
|
141
|
+
r: "8"
|
|
142
|
+
}), /* @__PURE__ */ jsx("line", {
|
|
143
|
+
x1: "21",
|
|
144
|
+
y1: "21",
|
|
145
|
+
x2: "16.65",
|
|
146
|
+
y2: "16.65"
|
|
147
|
+
})] }));
|
|
148
|
+
const Copy = createIcon("Copy", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("rect", {
|
|
149
|
+
x: "9",
|
|
150
|
+
y: "9",
|
|
151
|
+
width: "13",
|
|
152
|
+
height: "13",
|
|
153
|
+
rx: "2",
|
|
154
|
+
ry: "2"
|
|
155
|
+
}), /* @__PURE__ */ jsx("path", { d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" })] }));
|
|
156
|
+
const Download = createIcon("Download", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
157
|
+
/* @__PURE__ */ jsx("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
158
|
+
/* @__PURE__ */ jsx("polyline", { points: "7 10 12 15 17 10" }),
|
|
159
|
+
/* @__PURE__ */ jsx("line", {
|
|
160
|
+
x1: "12",
|
|
161
|
+
y1: "15",
|
|
162
|
+
x2: "12",
|
|
163
|
+
y2: "3"
|
|
164
|
+
})
|
|
165
|
+
] }));
|
|
166
|
+
const Upload = createIcon("Upload", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
167
|
+
/* @__PURE__ */ jsx("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
168
|
+
/* @__PURE__ */ jsx("polyline", { points: "17 8 12 3 7 8" }),
|
|
169
|
+
/* @__PURE__ */ jsx("line", {
|
|
170
|
+
x1: "12",
|
|
171
|
+
y1: "3",
|
|
172
|
+
x2: "12",
|
|
173
|
+
y2: "15"
|
|
174
|
+
})
|
|
175
|
+
] }));
|
|
176
|
+
const ExternalLink = createIcon("ExternalLink", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
177
|
+
/* @__PURE__ */ jsx("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" }),
|
|
178
|
+
/* @__PURE__ */ jsx("polyline", { points: "15 3 21 3 21 9" }),
|
|
179
|
+
/* @__PURE__ */ jsx("line", {
|
|
180
|
+
x1: "10",
|
|
181
|
+
y1: "14",
|
|
182
|
+
x2: "21",
|
|
183
|
+
y2: "3"
|
|
184
|
+
})
|
|
185
|
+
] }));
|
|
186
|
+
const Edit = createIcon("Edit", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("path", { d: "M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }), /* @__PURE__ */ jsx("path", { d: "M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" })] }));
|
|
187
|
+
const Trash = createIcon("Trash", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("polyline", { points: "3 6 5 6 21 6" }), /* @__PURE__ */ jsx("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })] }));
|
|
188
|
+
const Settings = createIcon("Settings", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("circle", {
|
|
189
|
+
cx: "12",
|
|
190
|
+
cy: "12",
|
|
191
|
+
r: "3"
|
|
192
|
+
}), /* @__PURE__ */ jsx("path", { d: "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" })] }));
|
|
193
|
+
const User = createIcon("User", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("path", { d: "M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" }), /* @__PURE__ */ jsx("circle", {
|
|
194
|
+
cx: "12",
|
|
195
|
+
cy: "7",
|
|
196
|
+
r: "4"
|
|
197
|
+
})] }));
|
|
198
|
+
const Calendar = createIcon("Calendar", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
199
|
+
/* @__PURE__ */ jsx("rect", {
|
|
200
|
+
x: "3",
|
|
201
|
+
y: "4",
|
|
202
|
+
width: "18",
|
|
203
|
+
height: "18",
|
|
204
|
+
rx: "2",
|
|
205
|
+
ry: "2"
|
|
206
|
+
}),
|
|
207
|
+
/* @__PURE__ */ jsx("line", {
|
|
208
|
+
x1: "16",
|
|
209
|
+
y1: "2",
|
|
210
|
+
x2: "16",
|
|
211
|
+
y2: "6"
|
|
212
|
+
}),
|
|
213
|
+
/* @__PURE__ */ jsx("line", {
|
|
214
|
+
x1: "8",
|
|
215
|
+
y1: "2",
|
|
216
|
+
x2: "8",
|
|
217
|
+
y2: "6"
|
|
218
|
+
}),
|
|
219
|
+
/* @__PURE__ */ jsx("line", {
|
|
220
|
+
x1: "3",
|
|
221
|
+
y1: "10",
|
|
222
|
+
x2: "21",
|
|
223
|
+
y2: "10"
|
|
224
|
+
})
|
|
225
|
+
] }));
|
|
226
|
+
const Clock = createIcon("Clock", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("circle", {
|
|
227
|
+
cx: "12",
|
|
228
|
+
cy: "12",
|
|
229
|
+
r: "10"
|
|
230
|
+
}), /* @__PURE__ */ jsx("polyline", { points: "12 6 12 12 16 14" })] }));
|
|
231
|
+
const Eye = createIcon("Eye", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("path", { d: "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" }), /* @__PURE__ */ jsx("circle", {
|
|
232
|
+
cx: "12",
|
|
233
|
+
cy: "12",
|
|
234
|
+
r: "3"
|
|
235
|
+
})] }));
|
|
236
|
+
const EyeOff = createIcon("EyeOff", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("path", { d: "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24" }), /* @__PURE__ */ jsx("line", {
|
|
237
|
+
x1: "1",
|
|
238
|
+
y1: "1",
|
|
239
|
+
x2: "23",
|
|
240
|
+
y2: "23"
|
|
241
|
+
})] }));
|
|
242
|
+
const Sun = createIcon("Sun", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
243
|
+
/* @__PURE__ */ jsx("circle", {
|
|
244
|
+
cx: "12",
|
|
245
|
+
cy: "12",
|
|
246
|
+
r: "5"
|
|
247
|
+
}),
|
|
248
|
+
/* @__PURE__ */ jsx("line", {
|
|
249
|
+
x1: "12",
|
|
250
|
+
y1: "1",
|
|
251
|
+
x2: "12",
|
|
252
|
+
y2: "3"
|
|
253
|
+
}),
|
|
254
|
+
/* @__PURE__ */ jsx("line", {
|
|
255
|
+
x1: "12",
|
|
256
|
+
y1: "21",
|
|
257
|
+
x2: "12",
|
|
258
|
+
y2: "23"
|
|
259
|
+
}),
|
|
260
|
+
/* @__PURE__ */ jsx("line", {
|
|
261
|
+
x1: "4.22",
|
|
262
|
+
y1: "4.22",
|
|
263
|
+
x2: "5.64",
|
|
264
|
+
y2: "5.64"
|
|
265
|
+
}),
|
|
266
|
+
/* @__PURE__ */ jsx("line", {
|
|
267
|
+
x1: "18.36",
|
|
268
|
+
y1: "18.36",
|
|
269
|
+
x2: "19.78",
|
|
270
|
+
y2: "19.78"
|
|
271
|
+
}),
|
|
272
|
+
/* @__PURE__ */ jsx("line", {
|
|
273
|
+
x1: "1",
|
|
274
|
+
y1: "12",
|
|
275
|
+
x2: "3",
|
|
276
|
+
y2: "12"
|
|
277
|
+
}),
|
|
278
|
+
/* @__PURE__ */ jsx("line", {
|
|
279
|
+
x1: "21",
|
|
280
|
+
y1: "12",
|
|
281
|
+
x2: "23",
|
|
282
|
+
y2: "12"
|
|
283
|
+
}),
|
|
284
|
+
/* @__PURE__ */ jsx("line", {
|
|
285
|
+
x1: "4.22",
|
|
286
|
+
y1: "19.78",
|
|
287
|
+
x2: "5.64",
|
|
288
|
+
y2: "18.36"
|
|
289
|
+
}),
|
|
290
|
+
/* @__PURE__ */ jsx("line", {
|
|
291
|
+
x1: "18.36",
|
|
292
|
+
y1: "5.64",
|
|
293
|
+
x2: "19.78",
|
|
294
|
+
y2: "4.22"
|
|
295
|
+
})
|
|
296
|
+
] }));
|
|
297
|
+
const Moon = createIcon("Moon", /* @__PURE__ */ jsx("path", { d: "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" }));
|
|
298
|
+
const Menu = createIcon("Menu", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
299
|
+
/* @__PURE__ */ jsx("line", {
|
|
300
|
+
x1: "3",
|
|
301
|
+
y1: "12",
|
|
302
|
+
x2: "21",
|
|
303
|
+
y2: "12"
|
|
304
|
+
}),
|
|
305
|
+
/* @__PURE__ */ jsx("line", {
|
|
306
|
+
x1: "3",
|
|
307
|
+
y1: "6",
|
|
308
|
+
x2: "21",
|
|
309
|
+
y2: "6"
|
|
310
|
+
}),
|
|
311
|
+
/* @__PURE__ */ jsx("line", {
|
|
312
|
+
x1: "3",
|
|
313
|
+
y1: "18",
|
|
314
|
+
x2: "21",
|
|
315
|
+
y2: "18"
|
|
316
|
+
})
|
|
317
|
+
] }));
|
|
318
|
+
const MoreHorizontal = createIcon("MoreHorizontal", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
319
|
+
/* @__PURE__ */ jsx("circle", {
|
|
320
|
+
cx: "12",
|
|
321
|
+
cy: "12",
|
|
322
|
+
r: "1"
|
|
323
|
+
}),
|
|
324
|
+
/* @__PURE__ */ jsx("circle", {
|
|
325
|
+
cx: "19",
|
|
326
|
+
cy: "12",
|
|
327
|
+
r: "1"
|
|
328
|
+
}),
|
|
329
|
+
/* @__PURE__ */ jsx("circle", {
|
|
330
|
+
cx: "5",
|
|
331
|
+
cy: "12",
|
|
332
|
+
r: "1"
|
|
333
|
+
})
|
|
334
|
+
] }));
|
|
335
|
+
const Star = createIcon("Star", /* @__PURE__ */ jsx("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" }));
|
|
336
|
+
const Heart = createIcon("Heart", /* @__PURE__ */ jsx("path", { d: "M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z" }));
|
|
337
|
+
const Loader = createIcon("Loader", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
338
|
+
/* @__PURE__ */ jsx("line", {
|
|
339
|
+
x1: "12",
|
|
340
|
+
y1: "2",
|
|
341
|
+
x2: "12",
|
|
342
|
+
y2: "6"
|
|
343
|
+
}),
|
|
344
|
+
/* @__PURE__ */ jsx("line", {
|
|
345
|
+
x1: "12",
|
|
346
|
+
y1: "18",
|
|
347
|
+
x2: "12",
|
|
348
|
+
y2: "22"
|
|
349
|
+
}),
|
|
350
|
+
/* @__PURE__ */ jsx("line", {
|
|
351
|
+
x1: "4.93",
|
|
352
|
+
y1: "4.93",
|
|
353
|
+
x2: "7.76",
|
|
354
|
+
y2: "7.76"
|
|
355
|
+
}),
|
|
356
|
+
/* @__PURE__ */ jsx("line", {
|
|
357
|
+
x1: "16.24",
|
|
358
|
+
y1: "16.24",
|
|
359
|
+
x2: "19.07",
|
|
360
|
+
y2: "19.07"
|
|
361
|
+
}),
|
|
362
|
+
/* @__PURE__ */ jsx("line", {
|
|
363
|
+
x1: "2",
|
|
364
|
+
y1: "12",
|
|
365
|
+
x2: "6",
|
|
366
|
+
y2: "12"
|
|
367
|
+
}),
|
|
368
|
+
/* @__PURE__ */ jsx("line", {
|
|
369
|
+
x1: "18",
|
|
370
|
+
y1: "12",
|
|
371
|
+
x2: "22",
|
|
372
|
+
y2: "12"
|
|
373
|
+
}),
|
|
374
|
+
/* @__PURE__ */ jsx("line", {
|
|
375
|
+
x1: "4.93",
|
|
376
|
+
y1: "19.07",
|
|
377
|
+
x2: "7.76",
|
|
378
|
+
y2: "16.24"
|
|
379
|
+
}),
|
|
380
|
+
/* @__PURE__ */ jsx("line", {
|
|
381
|
+
x1: "16.24",
|
|
382
|
+
y1: "7.76",
|
|
383
|
+
x2: "19.07",
|
|
384
|
+
y2: "4.93"
|
|
385
|
+
})
|
|
386
|
+
] }));
|
|
387
|
+
const Bell = createIcon("Bell", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("path", { d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" }), /* @__PURE__ */ jsx("path", { d: "M13.73 21a2 2 0 0 1-3.46 0" })] }));
|
|
388
|
+
const Home = createIcon("Home", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("path", { d: "M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }), /* @__PURE__ */ jsx("polyline", { points: "9 22 9 12 15 12 15 22" })] }));
|
|
389
|
+
const Dashboard = createIcon("Dashboard", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
390
|
+
/* @__PURE__ */ jsx("rect", {
|
|
391
|
+
x: "3",
|
|
392
|
+
y: "3",
|
|
393
|
+
width: "7",
|
|
394
|
+
height: "9"
|
|
395
|
+
}),
|
|
396
|
+
/* @__PURE__ */ jsx("rect", {
|
|
397
|
+
x: "14",
|
|
398
|
+
y: "3",
|
|
399
|
+
width: "7",
|
|
400
|
+
height: "5"
|
|
401
|
+
}),
|
|
402
|
+
/* @__PURE__ */ jsx("rect", {
|
|
403
|
+
x: "14",
|
|
404
|
+
y: "12",
|
|
405
|
+
width: "7",
|
|
406
|
+
height: "9"
|
|
407
|
+
}),
|
|
408
|
+
/* @__PURE__ */ jsx("rect", {
|
|
409
|
+
x: "3",
|
|
410
|
+
y: "16",
|
|
411
|
+
width: "7",
|
|
412
|
+
height: "5"
|
|
413
|
+
})
|
|
414
|
+
] }));
|
|
415
|
+
const Users = createIcon("Users", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
416
|
+
/* @__PURE__ */ jsx("path", { d: "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" }),
|
|
417
|
+
/* @__PURE__ */ jsx("circle", {
|
|
418
|
+
cx: "9",
|
|
419
|
+
cy: "7",
|
|
420
|
+
r: "4"
|
|
421
|
+
}),
|
|
422
|
+
/* @__PURE__ */ jsx("path", { d: "M23 21v-2a4 4 0 0 0-3-3.87" }),
|
|
423
|
+
/* @__PURE__ */ jsx("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
|
|
424
|
+
] }));
|
|
425
|
+
const Grid = createIcon("Grid", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
426
|
+
/* @__PURE__ */ jsx("rect", {
|
|
427
|
+
x: "3",
|
|
428
|
+
y: "3",
|
|
429
|
+
width: "7",
|
|
430
|
+
height: "7"
|
|
431
|
+
}),
|
|
432
|
+
/* @__PURE__ */ jsx("rect", {
|
|
433
|
+
x: "14",
|
|
434
|
+
y: "3",
|
|
435
|
+
width: "7",
|
|
436
|
+
height: "7"
|
|
437
|
+
}),
|
|
438
|
+
/* @__PURE__ */ jsx("rect", {
|
|
439
|
+
x: "14",
|
|
440
|
+
y: "14",
|
|
441
|
+
width: "7",
|
|
442
|
+
height: "7"
|
|
443
|
+
}),
|
|
444
|
+
/* @__PURE__ */ jsx("rect", {
|
|
445
|
+
x: "3",
|
|
446
|
+
y: "14",
|
|
447
|
+
width: "7",
|
|
448
|
+
height: "7"
|
|
449
|
+
})
|
|
450
|
+
] }));
|
|
451
|
+
const HelpCircle = createIcon("HelpCircle", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
452
|
+
/* @__PURE__ */ jsx("circle", {
|
|
453
|
+
cx: "12",
|
|
454
|
+
cy: "12",
|
|
455
|
+
r: "10"
|
|
456
|
+
}),
|
|
457
|
+
/* @__PURE__ */ jsx("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
458
|
+
/* @__PURE__ */ jsx("line", {
|
|
459
|
+
x1: "12",
|
|
460
|
+
y1: "17",
|
|
461
|
+
x2: "12.01",
|
|
462
|
+
y2: "17"
|
|
463
|
+
})
|
|
464
|
+
] }));
|
|
465
|
+
const LogOut = createIcon("LogOut", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
466
|
+
/* @__PURE__ */ jsx("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
467
|
+
/* @__PURE__ */ jsx("polyline", { points: "16 17 21 12 16 7" }),
|
|
468
|
+
/* @__PURE__ */ jsx("line", {
|
|
469
|
+
x1: "21",
|
|
470
|
+
y1: "12",
|
|
471
|
+
x2: "9",
|
|
472
|
+
y2: "12"
|
|
473
|
+
})
|
|
474
|
+
] }));
|
|
475
|
+
const Folder = createIcon("Folder", /* @__PURE__ */ jsx("path", { d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" }));
|
|
476
|
+
const File = createIcon("File", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("path", { d: "M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z" }), /* @__PURE__ */ jsx("polyline", { points: "13 2 13 9 20 9" })] }));
|
|
477
|
+
const Filter = createIcon("Filter", /* @__PURE__ */ jsx("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" }));
|
|
478
|
+
const BarChart = createIcon("BarChart", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
479
|
+
/* @__PURE__ */ jsx("line", {
|
|
480
|
+
x1: "18",
|
|
481
|
+
y1: "20",
|
|
482
|
+
x2: "18",
|
|
483
|
+
y2: "10"
|
|
484
|
+
}),
|
|
485
|
+
/* @__PURE__ */ jsx("line", {
|
|
486
|
+
x1: "12",
|
|
487
|
+
y1: "20",
|
|
488
|
+
x2: "12",
|
|
489
|
+
y2: "4"
|
|
490
|
+
}),
|
|
491
|
+
/* @__PURE__ */ jsx("line", {
|
|
492
|
+
x1: "6",
|
|
493
|
+
y1: "20",
|
|
494
|
+
x2: "6",
|
|
495
|
+
y2: "14"
|
|
496
|
+
}),
|
|
497
|
+
/* @__PURE__ */ jsx("line", {
|
|
498
|
+
x1: "2",
|
|
499
|
+
y1: "20",
|
|
500
|
+
x2: "22",
|
|
501
|
+
y2: "20"
|
|
502
|
+
})
|
|
503
|
+
] }));
|
|
504
|
+
const Globe = createIcon("Globe", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
505
|
+
/* @__PURE__ */ jsx("circle", {
|
|
506
|
+
cx: "12",
|
|
507
|
+
cy: "12",
|
|
508
|
+
r: "10"
|
|
509
|
+
}),
|
|
510
|
+
/* @__PURE__ */ jsx("line", {
|
|
511
|
+
x1: "2",
|
|
512
|
+
y1: "12",
|
|
513
|
+
x2: "22",
|
|
514
|
+
y2: "12"
|
|
515
|
+
}),
|
|
516
|
+
/* @__PURE__ */ jsx("path", { d: "M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z" })
|
|
517
|
+
] }));
|
|
518
|
+
const Lock = createIcon("Lock", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("rect", {
|
|
519
|
+
x: "3",
|
|
520
|
+
y: "11",
|
|
521
|
+
width: "18",
|
|
522
|
+
height: "11",
|
|
523
|
+
rx: "2",
|
|
524
|
+
ry: "2"
|
|
525
|
+
}), /* @__PURE__ */ jsx("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })] }));
|
|
526
|
+
const Server = createIcon("Server", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
527
|
+
/* @__PURE__ */ jsx("rect", {
|
|
528
|
+
x: "2",
|
|
529
|
+
y: "2",
|
|
530
|
+
width: "20",
|
|
531
|
+
height: "8",
|
|
532
|
+
rx: "2",
|
|
533
|
+
ry: "2"
|
|
534
|
+
}),
|
|
535
|
+
/* @__PURE__ */ jsx("rect", {
|
|
536
|
+
x: "2",
|
|
537
|
+
y: "14",
|
|
538
|
+
width: "20",
|
|
539
|
+
height: "8",
|
|
540
|
+
rx: "2",
|
|
541
|
+
ry: "2"
|
|
542
|
+
}),
|
|
543
|
+
/* @__PURE__ */ jsx("line", {
|
|
544
|
+
x1: "6",
|
|
545
|
+
y1: "6",
|
|
546
|
+
x2: "6.01",
|
|
547
|
+
y2: "6"
|
|
548
|
+
}),
|
|
549
|
+
/* @__PURE__ */ jsx("line", {
|
|
550
|
+
x1: "6",
|
|
551
|
+
y1: "18",
|
|
552
|
+
x2: "6.01",
|
|
553
|
+
y2: "18"
|
|
554
|
+
})
|
|
555
|
+
] }));
|
|
556
|
+
const Terminal = createIcon("Terminal", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("polyline", { points: "4 17 10 11 4 5" }), /* @__PURE__ */ jsx("line", {
|
|
557
|
+
x1: "12",
|
|
558
|
+
y1: "19",
|
|
559
|
+
x2: "20",
|
|
560
|
+
y2: "19"
|
|
561
|
+
})] }));
|
|
562
|
+
const Database = createIcon("Database", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
563
|
+
/* @__PURE__ */ jsx("ellipse", {
|
|
564
|
+
cx: "12",
|
|
565
|
+
cy: "5",
|
|
566
|
+
rx: "9",
|
|
567
|
+
ry: "3"
|
|
568
|
+
}),
|
|
569
|
+
/* @__PURE__ */ jsx("path", { d: "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3" }),
|
|
570
|
+
/* @__PURE__ */ jsx("path", { d: "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5" })
|
|
571
|
+
] }));
|
|
572
|
+
const Key = createIcon("Key", /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx("path", { d: "M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4" }) }));
|
|
573
|
+
const Shield = createIcon("Shield", /* @__PURE__ */ jsx("path", { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" }));
|
|
574
|
+
const CreditCard = createIcon("CreditCard", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("rect", {
|
|
575
|
+
x: "1",
|
|
576
|
+
y: "4",
|
|
577
|
+
width: "22",
|
|
578
|
+
height: "16",
|
|
579
|
+
rx: "2",
|
|
580
|
+
ry: "2"
|
|
581
|
+
}), /* @__PURE__ */ jsx("line", {
|
|
582
|
+
x1: "1",
|
|
583
|
+
y1: "10",
|
|
584
|
+
x2: "23",
|
|
585
|
+
y2: "10"
|
|
586
|
+
})] }));
|
|
587
|
+
const Inbox = createIcon("Inbox", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }), /* @__PURE__ */ jsx("path", { d: "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })] }));
|
|
588
|
+
const Tag = createIcon("Tag", /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx("path", { d: "M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" }), /* @__PURE__ */ jsx("line", {
|
|
589
|
+
x1: "7",
|
|
590
|
+
y1: "7",
|
|
591
|
+
x2: "7.01",
|
|
592
|
+
y2: "7"
|
|
593
|
+
})] }));
|
|
594
|
+
const Zap = createIcon("Zap", /* @__PURE__ */ jsx("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" }));
|
|
595
|
+
const Layers = createIcon("Layers", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
596
|
+
/* @__PURE__ */ jsx("polygon", { points: "12 2 2 7 12 12 22 7 12 2" }),
|
|
597
|
+
/* @__PURE__ */ jsx("polyline", { points: "2 17 12 22 22 17" }),
|
|
598
|
+
/* @__PURE__ */ jsx("polyline", { points: "2 12 12 17 22 12" })
|
|
599
|
+
] }));
|
|
600
|
+
const Activity = createIcon("Activity", /* @__PURE__ */ jsx("polyline", { points: "22 12 18 12 15 21 9 3 6 12 2 12" }));
|
|
601
|
+
//#endregion
|
|
602
|
+
export { Activity, AlertCircle, AlertTriangle, ArrowDown, ArrowLeft, ArrowRight, ArrowUp, BarChart, Bell, Calendar, Check, CheckCircle, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clock, Copy, CreditCard, Dashboard, Database, Download, Edit, ExternalLink, Eye, EyeOff, File, Filter, Folder, Globe, Grid, Heart, HelpCircle, Home, Inbox, Info, Key, Layers, Loader, Lock, LogOut, Menu, Minus, Moon, MoreHorizontal, Plus, Search, Server, Settings, Shield, Star, Sun, Tag, Terminal, Trash, Upload, User, Users, VERSION, X, Zap, createIcon };
|
|
603
|
+
|
|
604
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","names":[],"sources":["../src/create-icon.tsx","../src/index.tsx"],"sourcesContent":["import type { SVGAttributes } from 'react'\n\nexport interface IconProps extends Omit<SVGAttributes<SVGSVGElement>, 'color'> {\n /** Width and height in pixels. */\n size?: number\n /** Stroke color — defaults to currentColor so icons inherit text color. */\n color?: string\n className?: string\n}\n\n/** Build an icon component from SVG path children. 24×24 viewBox, stroked. */\nexport function createIcon(name: string, children: React.ReactNode) {\n function Icon({ size = 24, color = 'currentColor', ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke={color}\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n aria-hidden={props['aria-label'] ? undefined : true}\n {...props}\n >\n {children}\n </svg>\n )\n }\n Icon.displayName = name\n return Icon\n}\n","export const VERSION = '0.0.0'\n\nexport { createIcon, type IconProps } from './create-icon'\nimport { createIcon } from './create-icon'\n\n/* Geometry adapted from Feather Icons (MIT). Stroked, 24×24, currentColor. */\n\nexport const ChevronDown = createIcon('ChevronDown', <polyline points=\"6 9 12 15 18 9\" />)\nexport const ChevronUp = createIcon('ChevronUp', <polyline points=\"18 15 12 9 6 15\" />)\nexport const ChevronLeft = createIcon('ChevronLeft', <polyline points=\"15 18 9 12 15 6\" />)\nexport const ChevronRight = createIcon('ChevronRight', <polyline points=\"9 18 15 12 9 6\" />)\n\nexport const X = createIcon(\n 'X',\n <>\n <line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\" />\n <line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\" />\n </>,\n)\nexport const Check = createIcon('Check', <polyline points=\"20 6 9 17 4 12\" />)\nexport const Plus = createIcon(\n 'Plus',\n <>\n <line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\" />\n <line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\" />\n </>,\n)\nexport const Minus = createIcon('Minus', <line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\" />)\n\nexport const AlertCircle = createIcon(\n 'AlertCircle',\n <>\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <line x1=\"12\" y1=\"8\" x2=\"12\" y2=\"12\" />\n <line x1=\"12\" y1=\"16\" x2=\"12.01\" y2=\"16\" />\n </>,\n)\nexport const AlertTriangle = createIcon(\n 'AlertTriangle',\n <>\n <path d=\"M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z\" />\n <line x1=\"12\" y1=\"9\" x2=\"12\" y2=\"13\" />\n <line x1=\"12\" y1=\"17\" x2=\"12.01\" y2=\"17\" />\n </>,\n)\nexport const CheckCircle = createIcon(\n 'CheckCircle',\n <>\n <path d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\" />\n <polyline points=\"22 4 12 14.01 9 11.01\" />\n </>,\n)\nexport const Info = createIcon(\n 'Info',\n <>\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <line x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\" />\n <line x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\" />\n </>,\n)\n\nexport const ArrowRight = createIcon(\n 'ArrowRight',\n <>\n <line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\" />\n <polyline points=\"12 5 19 12 12 19\" />\n </>,\n)\nexport const ArrowLeft = createIcon(\n 'ArrowLeft',\n <>\n <line x1=\"19\" y1=\"12\" x2=\"5\" y2=\"12\" />\n <polyline points=\"12 19 5 12 12 5\" />\n </>,\n)\nexport const ArrowUp = createIcon(\n 'ArrowUp',\n <>\n <line x1=\"12\" y1=\"19\" x2=\"12\" y2=\"5\" />\n <polyline points=\"5 12 12 5 19 12\" />\n </>,\n)\nexport const ArrowDown = createIcon(\n 'ArrowDown',\n <>\n <line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\" />\n <polyline points=\"19 12 12 19 5 12\" />\n </>,\n)\n\nexport const Search = createIcon(\n 'Search',\n <>\n <circle cx=\"11\" cy=\"11\" r=\"8\" />\n <line x1=\"21\" y1=\"21\" x2=\"16.65\" y2=\"16.65\" />\n </>,\n)\nexport const Copy = createIcon(\n 'Copy',\n <>\n <rect x=\"9\" y=\"9\" width=\"13\" height=\"13\" rx=\"2\" ry=\"2\" />\n <path d=\"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1\" />\n </>,\n)\nexport const Download = createIcon(\n 'Download',\n <>\n <path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4\" />\n <polyline points=\"7 10 12 15 17 10\" />\n <line x1=\"12\" y1=\"15\" x2=\"12\" y2=\"3\" />\n </>,\n)\nexport const Upload = createIcon(\n 'Upload',\n <>\n <path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4\" />\n <polyline points=\"17 8 12 3 7 8\" />\n <line x1=\"12\" y1=\"3\" x2=\"12\" y2=\"15\" />\n </>,\n)\nexport const ExternalLink = createIcon(\n 'ExternalLink',\n <>\n <path d=\"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\" />\n <polyline points=\"15 3 21 3 21 9\" />\n <line x1=\"10\" y1=\"14\" x2=\"21\" y2=\"3\" />\n </>,\n)\n\nexport const Edit = createIcon(\n 'Edit',\n <>\n <path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\" />\n <path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\" />\n </>,\n)\nexport const Trash = createIcon(\n 'Trash',\n <>\n <polyline points=\"3 6 5 6 21 6\" />\n <path d=\"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2\" />\n </>,\n)\nexport const Settings = createIcon(\n 'Settings',\n <>\n <circle cx=\"12\" cy=\"12\" r=\"3\" />\n <path d=\"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z\" />\n </>,\n)\nexport const User = createIcon(\n 'User',\n <>\n <path d=\"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2\" />\n <circle cx=\"12\" cy=\"7\" r=\"4\" />\n </>,\n)\nexport const Calendar = createIcon(\n 'Calendar',\n <>\n <rect x=\"3\" y=\"4\" width=\"18\" height=\"18\" rx=\"2\" ry=\"2\" />\n <line x1=\"16\" y1=\"2\" x2=\"16\" y2=\"6\" />\n <line x1=\"8\" y1=\"2\" x2=\"8\" y2=\"6\" />\n <line x1=\"3\" y1=\"10\" x2=\"21\" y2=\"10\" />\n </>,\n)\nexport const Clock = createIcon(\n 'Clock',\n <>\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <polyline points=\"12 6 12 12 16 14\" />\n </>,\n)\nexport const Eye = createIcon(\n 'Eye',\n <>\n <path d=\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z\" />\n <circle cx=\"12\" cy=\"12\" r=\"3\" />\n </>,\n)\nexport const EyeOff = createIcon(\n 'EyeOff',\n <>\n <path d=\"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24\" />\n <line x1=\"1\" y1=\"1\" x2=\"23\" y2=\"23\" />\n </>,\n)\nexport const Sun = createIcon(\n 'Sun',\n <>\n <circle cx=\"12\" cy=\"12\" r=\"5\" />\n <line x1=\"12\" y1=\"1\" x2=\"12\" y2=\"3\" />\n <line x1=\"12\" y1=\"21\" x2=\"12\" y2=\"23\" />\n <line x1=\"4.22\" y1=\"4.22\" x2=\"5.64\" y2=\"5.64\" />\n <line x1=\"18.36\" y1=\"18.36\" x2=\"19.78\" y2=\"19.78\" />\n <line x1=\"1\" y1=\"12\" x2=\"3\" y2=\"12\" />\n <line x1=\"21\" y1=\"12\" x2=\"23\" y2=\"12\" />\n <line x1=\"4.22\" y1=\"19.78\" x2=\"5.64\" y2=\"18.36\" />\n <line x1=\"18.36\" y1=\"5.64\" x2=\"19.78\" y2=\"4.22\" />\n </>,\n)\nexport const Moon = createIcon('Moon', <path d=\"M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z\" />)\nexport const Menu = createIcon(\n 'Menu',\n <>\n <line x1=\"3\" y1=\"12\" x2=\"21\" y2=\"12\" />\n <line x1=\"3\" y1=\"6\" x2=\"21\" y2=\"6\" />\n <line x1=\"3\" y1=\"18\" x2=\"21\" y2=\"18\" />\n </>,\n)\nexport const MoreHorizontal = createIcon(\n 'MoreHorizontal',\n <>\n <circle cx=\"12\" cy=\"12\" r=\"1\" />\n <circle cx=\"19\" cy=\"12\" r=\"1\" />\n <circle cx=\"5\" cy=\"12\" r=\"1\" />\n </>,\n)\nexport const Star = createIcon(\n 'Star',\n <polygon points=\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\" />,\n)\nexport const Heart = createIcon(\n 'Heart',\n <path d=\"M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z\" />,\n)\nexport const Loader = createIcon(\n 'Loader',\n <>\n <line x1=\"12\" y1=\"2\" x2=\"12\" y2=\"6\" />\n <line x1=\"12\" y1=\"18\" x2=\"12\" y2=\"22\" />\n <line x1=\"4.93\" y1=\"4.93\" x2=\"7.76\" y2=\"7.76\" />\n <line x1=\"16.24\" y1=\"16.24\" x2=\"19.07\" y2=\"19.07\" />\n <line x1=\"2\" y1=\"12\" x2=\"6\" y2=\"12\" />\n <line x1=\"18\" y1=\"12\" x2=\"22\" y2=\"12\" />\n <line x1=\"4.93\" y1=\"19.07\" x2=\"7.76\" y2=\"16.24\" />\n <line x1=\"16.24\" y1=\"7.76\" x2=\"19.07\" y2=\"4.93\" />\n </>,\n)\n\nexport const Bell = createIcon(\n 'Bell',\n <>\n <path d=\"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9\" />\n <path d=\"M13.73 21a2 2 0 0 1-3.46 0\" />\n </>,\n)\nexport const Home = createIcon(\n 'Home',\n <>\n <path d=\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\" />\n <polyline points=\"9 22 9 12 15 12 15 22\" />\n </>,\n)\nexport const Dashboard = createIcon(\n 'Dashboard',\n <>\n <rect x=\"3\" y=\"3\" width=\"7\" height=\"9\" />\n <rect x=\"14\" y=\"3\" width=\"7\" height=\"5\" />\n <rect x=\"14\" y=\"12\" width=\"7\" height=\"9\" />\n <rect x=\"3\" y=\"16\" width=\"7\" height=\"5\" />\n </>,\n)\nexport const Users = createIcon(\n 'Users',\n <>\n <path d=\"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2\" />\n <circle cx=\"9\" cy=\"7\" r=\"4\" />\n <path d=\"M23 21v-2a4 4 0 0 0-3-3.87\" />\n <path d=\"M16 3.13a4 4 0 0 1 0 7.75\" />\n </>,\n)\nexport const Grid = createIcon(\n 'Grid',\n <>\n <rect x=\"3\" y=\"3\" width=\"7\" height=\"7\" />\n <rect x=\"14\" y=\"3\" width=\"7\" height=\"7\" />\n <rect x=\"14\" y=\"14\" width=\"7\" height=\"7\" />\n <rect x=\"3\" y=\"14\" width=\"7\" height=\"7\" />\n </>,\n)\nexport const HelpCircle = createIcon(\n 'HelpCircle',\n <>\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3\" />\n <line x1=\"12\" y1=\"17\" x2=\"12.01\" y2=\"17\" />\n </>,\n)\nexport const LogOut = createIcon(\n 'LogOut',\n <>\n <path d=\"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4\" />\n <polyline points=\"16 17 21 12 16 7\" />\n <line x1=\"21\" y1=\"12\" x2=\"9\" y2=\"12\" />\n </>,\n)\nexport const Folder = createIcon(\n 'Folder',\n <path d=\"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z\" />,\n)\nexport const File = createIcon(\n 'File',\n <>\n <path d=\"M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z\" />\n <polyline points=\"13 2 13 9 20 9\" />\n </>,\n)\nexport const Filter = createIcon(\n 'Filter',\n <polygon points=\"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3\" />,\n)\nexport const BarChart = createIcon(\n 'BarChart',\n <>\n <line x1=\"18\" y1=\"20\" x2=\"18\" y2=\"10\" />\n <line x1=\"12\" y1=\"20\" x2=\"12\" y2=\"4\" />\n <line x1=\"6\" y1=\"20\" x2=\"6\" y2=\"14\" />\n <line x1=\"2\" y1=\"20\" x2=\"22\" y2=\"20\" />\n </>,\n)\nexport const Globe = createIcon(\n 'Globe',\n <>\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <line x1=\"2\" y1=\"12\" x2=\"22\" y2=\"12\" />\n <path d=\"M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z\" />\n </>,\n)\nexport const Lock = createIcon(\n 'Lock',\n <>\n <rect x=\"3\" y=\"11\" width=\"18\" height=\"11\" rx=\"2\" ry=\"2\" />\n <path d=\"M7 11V7a5 5 0 0 1 10 0v4\" />\n </>,\n)\nexport const Server = createIcon(\n 'Server',\n <>\n <rect x=\"2\" y=\"2\" width=\"20\" height=\"8\" rx=\"2\" ry=\"2\" />\n <rect x=\"2\" y=\"14\" width=\"20\" height=\"8\" rx=\"2\" ry=\"2\" />\n <line x1=\"6\" y1=\"6\" x2=\"6.01\" y2=\"6\" />\n <line x1=\"6\" y1=\"18\" x2=\"6.01\" y2=\"18\" />\n </>,\n)\nexport const Terminal = createIcon(\n 'Terminal',\n <>\n <polyline points=\"4 17 10 11 4 5\" />\n <line x1=\"12\" y1=\"19\" x2=\"20\" y2=\"19\" />\n </>,\n)\nexport const Database = createIcon(\n 'Database',\n <>\n <ellipse cx=\"12\" cy=\"5\" rx=\"9\" ry=\"3\" />\n <path d=\"M21 12c0 1.66-4 3-9 3s-9-1.34-9-3\" />\n <path d=\"M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5\" />\n </>,\n)\nexport const Key = createIcon(\n 'Key',\n <>\n <path d=\"M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4\" />\n </>,\n)\nexport const Shield = createIcon('Shield', <path d=\"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z\" />)\nexport const CreditCard = createIcon(\n 'CreditCard',\n <>\n <rect x=\"1\" y=\"4\" width=\"22\" height=\"16\" rx=\"2\" ry=\"2\" />\n <line x1=\"1\" y1=\"10\" x2=\"23\" y2=\"10\" />\n </>,\n)\nexport const Inbox = createIcon(\n 'Inbox',\n <>\n <polyline points=\"22 12 16 12 14 15 10 15 8 12 2 12\" />\n <path d=\"M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z\" />\n </>,\n)\nexport const Tag = createIcon(\n 'Tag',\n <>\n <path d=\"M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z\" />\n <line x1=\"7\" y1=\"7\" x2=\"7.01\" y2=\"7\" />\n </>,\n)\nexport const Zap = createIcon('Zap', <polygon points=\"13 2 3 14 12 14 11 22 21 10 12 10 13 2\" />)\nexport const Layers = createIcon(\n 'Layers',\n <>\n <polygon points=\"12 2 2 7 12 12 22 7 12 2\" />\n <polyline points=\"2 17 12 22 22 17\" />\n <polyline points=\"2 12 12 17 22 12\" />\n </>,\n)\nexport const Activity = createIcon(\n 'Activity',\n <polyline points=\"22 12 18 12 15 21 9 3 6 12 2 12\" />,\n)\n"],"mappings":"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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cascivo/icons",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Optional SVG icon components",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"cascivo",
|
|
8
|
+
"css",
|
|
9
|
+
"design-system",
|
|
10
|
+
"icons",
|
|
11
|
+
"react",
|
|
12
|
+
"signals",
|
|
13
|
+
"svg"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/urbanisierung/cascivo/tree/main/packages/icons#readme",
|
|
16
|
+
"bugs": "https://github.com/urbanisierung/cascivo/issues",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "urbanisierung",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/urbanisierung/cascivo.git",
|
|
22
|
+
"directory": "packages/icons"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"type": "module",
|
|
28
|
+
"sideEffects": false,
|
|
29
|
+
"types": "./dist/index.d.mts",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"import": "./dist/index.mjs",
|
|
33
|
+
"types": "./dist/index.d.mts",
|
|
34
|
+
"default": "./dist/index.mjs"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public",
|
|
39
|
+
"provenance": true
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
43
|
+
"@testing-library/react": "^16.3.2",
|
|
44
|
+
"@types/react": "^19.2.17",
|
|
45
|
+
"@types/react-dom": "^19.2.3",
|
|
46
|
+
"jsdom": "^29",
|
|
47
|
+
"react": "^19.2.7",
|
|
48
|
+
"react-dom": "^19.2.7",
|
|
49
|
+
"typescript": "^5",
|
|
50
|
+
"vite-plus": "^0.1.24"
|
|
51
|
+
},
|
|
52
|
+
"peerDependencies": {
|
|
53
|
+
"react": ">=18.0.0"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"build": "vp pack src/index.tsx",
|
|
57
|
+
"check": "tsc --noEmit",
|
|
58
|
+
"test": "vp test"
|
|
59
|
+
}
|
|
60
|
+
}
|
package/readme.body.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Optional SVG icon components for cascade — a curated set of React SVG icons that follow the cascade token system. Import individually to keep bundle size minimal.
|