magick-icons 0.1.174 → 0.1.176
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/index.d.mts +1 -541
- package/index.d.ts +1 -541
- package/index.js +73 -462
- package/index.js.map +1 -1
- package/index.mjs +73 -432
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1,95 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
-
/**
|
|
4
|
-
* Props for the ArchiveBold icon component
|
|
5
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
|
-
*/
|
|
7
|
-
interface ArchiveBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
8
|
-
size?: number | string;
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* ArchiveBold icon component
|
|
12
|
-
* @example
|
|
13
|
-
* ```tsx
|
|
14
|
-
* import { ArchiveBold } from 'magick-icons';
|
|
15
|
-
*
|
|
16
|
-
* <ArchiveBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
|
-
* ```
|
|
18
|
-
*/
|
|
19
|
-
declare const ArchiveBold: React.ForwardRefExoticComponent<Omit<ArchiveBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* Props for the ArrowDownBold icon component
|
|
23
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
-
*/
|
|
25
|
-
interface ArrowDownBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
26
|
-
size?: number | string;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* ArrowDownBold icon component
|
|
30
|
-
* @example
|
|
31
|
-
* ```tsx
|
|
32
|
-
* import { ArrowDownBold } from 'magick-icons';
|
|
33
|
-
*
|
|
34
|
-
* <ArrowDownBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
-
* ```
|
|
36
|
-
*/
|
|
37
|
-
declare const ArrowDownBold: React.ForwardRefExoticComponent<Omit<ArrowDownBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* Props for the ArrowRightBold icon component
|
|
41
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
|
-
*/
|
|
43
|
-
interface ArrowRightBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
44
|
-
size?: number | string;
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* ArrowRightBold icon component
|
|
48
|
-
* @example
|
|
49
|
-
* ```tsx
|
|
50
|
-
* import { ArrowRightBold } from 'magick-icons';
|
|
51
|
-
*
|
|
52
|
-
* <ArrowRightBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
|
-
* ```
|
|
54
|
-
*/
|
|
55
|
-
declare const ArrowRightBold: React.ForwardRefExoticComponent<Omit<ArrowRightBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* Props for the ArrowUpBold icon component
|
|
59
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
60
|
-
*/
|
|
61
|
-
interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
62
|
-
size?: number | string;
|
|
63
|
-
}
|
|
64
|
-
/**
|
|
65
|
-
* ArrowUpBold icon component
|
|
66
|
-
* @example
|
|
67
|
-
* ```tsx
|
|
68
|
-
* import { ArrowUpBold } from 'magick-icons';
|
|
69
|
-
*
|
|
70
|
-
* <ArrowUpBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
71
|
-
* ```
|
|
72
|
-
*/
|
|
73
|
-
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
|
-
|
|
75
|
-
/**
|
|
76
|
-
* Props for the Calendar icon component
|
|
77
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
|
-
*/
|
|
79
|
-
interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
80
|
-
size?: number | string;
|
|
81
|
-
}
|
|
82
|
-
/**
|
|
83
|
-
* Calendar icon component
|
|
84
|
-
* @example
|
|
85
|
-
* ```tsx
|
|
86
|
-
* import { Calendar } from 'magick-icons';
|
|
87
|
-
*
|
|
88
|
-
* <Calendar size={24} className="text-blue-500" strokeWidth={2} />
|
|
89
|
-
* ```
|
|
90
|
-
*/
|
|
91
|
-
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
-
|
|
93
3
|
/**
|
|
94
4
|
* Props for the ChevronDown icon component
|
|
95
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -180,96 +90,6 @@ interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
|
|
|
180
90
|
*/
|
|
181
91
|
declare const ChevronsUpDown: React.ForwardRefExoticComponent<Omit<ChevronsUpDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
92
|
|
|
183
|
-
/**
|
|
184
|
-
* Props for the CircleCheckFill icon component
|
|
185
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
186
|
-
*/
|
|
187
|
-
interface CircleCheckFillProps extends React.SVGProps<SVGSVGElement> {
|
|
188
|
-
size?: number | string;
|
|
189
|
-
}
|
|
190
|
-
/**
|
|
191
|
-
* CircleCheckFill icon component
|
|
192
|
-
* @example
|
|
193
|
-
* ```tsx
|
|
194
|
-
* import { CircleCheckFill } from 'magick-icons';
|
|
195
|
-
*
|
|
196
|
-
* <CircleCheckFill size={24} className="text-blue-500" strokeWidth={2} />
|
|
197
|
-
* ```
|
|
198
|
-
*/
|
|
199
|
-
declare const CircleCheckFill: React.ForwardRefExoticComponent<Omit<CircleCheckFillProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
|
-
|
|
201
|
-
/**
|
|
202
|
-
* Props for the CloseCircle1 icon component
|
|
203
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
204
|
-
*/
|
|
205
|
-
interface CloseCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
206
|
-
size?: number | string;
|
|
207
|
-
}
|
|
208
|
-
/**
|
|
209
|
-
* CloseCircle1 icon component
|
|
210
|
-
* @example
|
|
211
|
-
* ```tsx
|
|
212
|
-
* import { CloseCircle1 } from 'magick-icons';
|
|
213
|
-
*
|
|
214
|
-
* <CloseCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
215
|
-
* ```
|
|
216
|
-
*/
|
|
217
|
-
declare const CloseCircle1: React.ForwardRefExoticComponent<Omit<CloseCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
218
|
-
|
|
219
|
-
/**
|
|
220
|
-
* Props for the DislikeBold icon component
|
|
221
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
222
|
-
*/
|
|
223
|
-
interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
224
|
-
size?: number | string;
|
|
225
|
-
}
|
|
226
|
-
/**
|
|
227
|
-
* DislikeBold icon component
|
|
228
|
-
* @example
|
|
229
|
-
* ```tsx
|
|
230
|
-
* import { DislikeBold } from 'magick-icons';
|
|
231
|
-
*
|
|
232
|
-
* <DislikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
233
|
-
* ```
|
|
234
|
-
*/
|
|
235
|
-
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
236
|
-
|
|
237
|
-
/**
|
|
238
|
-
* Props for the DocumentTextBold icon component
|
|
239
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
240
|
-
*/
|
|
241
|
-
interface DocumentTextBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
242
|
-
size?: number | string;
|
|
243
|
-
}
|
|
244
|
-
/**
|
|
245
|
-
* DocumentTextBold icon component
|
|
246
|
-
* @example
|
|
247
|
-
* ```tsx
|
|
248
|
-
* import { DocumentTextBold } from 'magick-icons';
|
|
249
|
-
*
|
|
250
|
-
* <DocumentTextBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
251
|
-
* ```
|
|
252
|
-
*/
|
|
253
|
-
declare const DocumentTextBold: React.ForwardRefExoticComponent<Omit<DocumentTextBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
254
|
-
|
|
255
|
-
/**
|
|
256
|
-
* Props for the DocumentUpload icon component
|
|
257
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
-
*/
|
|
259
|
-
interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
260
|
-
size?: number | string;
|
|
261
|
-
}
|
|
262
|
-
/**
|
|
263
|
-
* DocumentUpload icon component
|
|
264
|
-
* @example
|
|
265
|
-
* ```tsx
|
|
266
|
-
* import { DocumentUpload } from 'magick-icons';
|
|
267
|
-
*
|
|
268
|
-
* <DocumentUpload size={24} className="text-blue-500" strokeWidth={2} />
|
|
269
|
-
* ```
|
|
270
|
-
*/
|
|
271
|
-
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
|
-
|
|
273
93
|
/**
|
|
274
94
|
* Props for the Enter icon component
|
|
275
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -288,96 +108,6 @@ interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
|
288
108
|
*/
|
|
289
109
|
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
110
|
|
|
291
|
-
/**
|
|
292
|
-
* Props for the Finance icon component
|
|
293
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
294
|
-
*/
|
|
295
|
-
interface FinanceProps extends React.SVGProps<SVGSVGElement> {
|
|
296
|
-
size?: number | string;
|
|
297
|
-
}
|
|
298
|
-
/**
|
|
299
|
-
* Finance icon component
|
|
300
|
-
* @example
|
|
301
|
-
* ```tsx
|
|
302
|
-
* import { Finance } from 'magick-icons';
|
|
303
|
-
*
|
|
304
|
-
* <Finance size={24} className="text-blue-500" strokeWidth={2} />
|
|
305
|
-
* ```
|
|
306
|
-
*/
|
|
307
|
-
declare const Finance: React.ForwardRefExoticComponent<Omit<FinanceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
|
-
|
|
309
|
-
/**
|
|
310
|
-
* Props for the Flag icon component
|
|
311
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
312
|
-
*/
|
|
313
|
-
interface FlagProps extends React.SVGProps<SVGSVGElement> {
|
|
314
|
-
size?: number | string;
|
|
315
|
-
}
|
|
316
|
-
/**
|
|
317
|
-
* Flag icon component
|
|
318
|
-
* @example
|
|
319
|
-
* ```tsx
|
|
320
|
-
* import { Flag } from 'magick-icons';
|
|
321
|
-
*
|
|
322
|
-
* <Flag size={24} className="text-blue-500" strokeWidth={2} />
|
|
323
|
-
* ```
|
|
324
|
-
*/
|
|
325
|
-
declare const Flag: React.ForwardRefExoticComponent<Omit<FlagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
|
-
|
|
327
|
-
/**
|
|
328
|
-
* Props for the Folder2 icon component
|
|
329
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
330
|
-
*/
|
|
331
|
-
interface Folder2Props extends React.SVGProps<SVGSVGElement> {
|
|
332
|
-
size?: number | string;
|
|
333
|
-
}
|
|
334
|
-
/**
|
|
335
|
-
* Folder2 icon component
|
|
336
|
-
* @example
|
|
337
|
-
* ```tsx
|
|
338
|
-
* import { Folder2 } from 'magick-icons';
|
|
339
|
-
*
|
|
340
|
-
* <Folder2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
341
|
-
* ```
|
|
342
|
-
*/
|
|
343
|
-
declare const Folder2: React.ForwardRefExoticComponent<Omit<Folder2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
|
-
|
|
345
|
-
/**
|
|
346
|
-
* Props for the FolderDrawerOpen icon component
|
|
347
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
348
|
-
*/
|
|
349
|
-
interface FolderDrawerOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
350
|
-
size?: number | string;
|
|
351
|
-
}
|
|
352
|
-
/**
|
|
353
|
-
* FolderDrawerOpen icon component
|
|
354
|
-
* @example
|
|
355
|
-
* ```tsx
|
|
356
|
-
* import { FolderDrawerOpen } from 'magick-icons';
|
|
357
|
-
*
|
|
358
|
-
* <FolderDrawerOpen size={24} className="text-blue-500" strokeWidth={2} />
|
|
359
|
-
* ```
|
|
360
|
-
*/
|
|
361
|
-
declare const FolderDrawerOpen: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
362
|
-
|
|
363
|
-
/**
|
|
364
|
-
* Props for the FolderOpenBold icon component
|
|
365
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
366
|
-
*/
|
|
367
|
-
interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
368
|
-
size?: number | string;
|
|
369
|
-
}
|
|
370
|
-
/**
|
|
371
|
-
* FolderOpenBold icon component
|
|
372
|
-
* @example
|
|
373
|
-
* ```tsx
|
|
374
|
-
* import { FolderOpenBold } from 'magick-icons';
|
|
375
|
-
*
|
|
376
|
-
* <FolderOpenBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
377
|
-
* ```
|
|
378
|
-
*/
|
|
379
|
-
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
380
|
-
|
|
381
111
|
/**
|
|
382
112
|
* Props for the GripVertical icon component
|
|
383
113
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -396,24 +126,6 @@ interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
|
|
|
396
126
|
*/
|
|
397
127
|
declare const GripVertical: React.ForwardRefExoticComponent<Omit<GripVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
398
128
|
|
|
399
|
-
/**
|
|
400
|
-
* Props for the HeartBold icon component
|
|
401
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
402
|
-
*/
|
|
403
|
-
interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
404
|
-
size?: number | string;
|
|
405
|
-
}
|
|
406
|
-
/**
|
|
407
|
-
* HeartBold icon component
|
|
408
|
-
* @example
|
|
409
|
-
* ```tsx
|
|
410
|
-
* import { HeartBold } from 'magick-icons';
|
|
411
|
-
*
|
|
412
|
-
* <HeartBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
413
|
-
* ```
|
|
414
|
-
*/
|
|
415
|
-
declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
416
|
-
|
|
417
129
|
/**
|
|
418
130
|
* Props for the HrSystem icon component
|
|
419
131
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -432,60 +144,6 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
432
144
|
*/
|
|
433
145
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
146
|
|
|
435
|
-
/**
|
|
436
|
-
* Props for the IconsaxAttachCircleBold icon component
|
|
437
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
438
|
-
*/
|
|
439
|
-
interface IconsaxAttachCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
440
|
-
size?: number | string;
|
|
441
|
-
}
|
|
442
|
-
/**
|
|
443
|
-
* IconsaxAttachCircleBold icon component
|
|
444
|
-
* @example
|
|
445
|
-
* ```tsx
|
|
446
|
-
* import { IconsaxAttachCircleBold } from 'magick-icons';
|
|
447
|
-
*
|
|
448
|
-
* <IconsaxAttachCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
449
|
-
* ```
|
|
450
|
-
*/
|
|
451
|
-
declare const IconsaxAttachCircleBold: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
452
|
-
|
|
453
|
-
/**
|
|
454
|
-
* Props for the IconsaxPenBrushBold icon component
|
|
455
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
456
|
-
*/
|
|
457
|
-
interface IconsaxPenBrushBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
458
|
-
size?: number | string;
|
|
459
|
-
}
|
|
460
|
-
/**
|
|
461
|
-
* IconsaxPenBrushBold icon component
|
|
462
|
-
* @example
|
|
463
|
-
* ```tsx
|
|
464
|
-
* import { IconsaxPenBrushBold } from 'magick-icons';
|
|
465
|
-
*
|
|
466
|
-
* <IconsaxPenBrushBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
467
|
-
* ```
|
|
468
|
-
*/
|
|
469
|
-
declare const IconsaxPenBrushBold: React.ForwardRefExoticComponent<Omit<IconsaxPenBrushBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
470
|
-
|
|
471
|
-
/**
|
|
472
|
-
* Props for the IconsaxVideoCameraBold icon component
|
|
473
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
474
|
-
*/
|
|
475
|
-
interface IconsaxVideoCameraBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
476
|
-
size?: number | string;
|
|
477
|
-
}
|
|
478
|
-
/**
|
|
479
|
-
* IconsaxVideoCameraBold icon component
|
|
480
|
-
* @example
|
|
481
|
-
* ```tsx
|
|
482
|
-
* import { IconsaxVideoCameraBold } from 'magick-icons';
|
|
483
|
-
*
|
|
484
|
-
* <IconsaxVideoCameraBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
485
|
-
* ```
|
|
486
|
-
*/
|
|
487
|
-
declare const IconsaxVideoCameraBold: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
488
|
-
|
|
489
147
|
/**
|
|
490
148
|
* Props for the IconsaxWord icon component
|
|
491
149
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -504,60 +162,6 @@ interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
|
504
162
|
*/
|
|
505
163
|
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
506
164
|
|
|
507
|
-
/**
|
|
508
|
-
* Props for the InfoCircleBold icon component
|
|
509
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
510
|
-
*/
|
|
511
|
-
interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
512
|
-
size?: number | string;
|
|
513
|
-
}
|
|
514
|
-
/**
|
|
515
|
-
* InfoCircleBold icon component
|
|
516
|
-
* @example
|
|
517
|
-
* ```tsx
|
|
518
|
-
* import { InfoCircleBold } from 'magick-icons';
|
|
519
|
-
*
|
|
520
|
-
* <InfoCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
521
|
-
* ```
|
|
522
|
-
*/
|
|
523
|
-
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
524
|
-
|
|
525
|
-
/**
|
|
526
|
-
* Props for the Legal icon component
|
|
527
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
528
|
-
*/
|
|
529
|
-
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
530
|
-
size?: number | string;
|
|
531
|
-
}
|
|
532
|
-
/**
|
|
533
|
-
* Legal icon component
|
|
534
|
-
* @example
|
|
535
|
-
* ```tsx
|
|
536
|
-
* import { Legal } from 'magick-icons';
|
|
537
|
-
*
|
|
538
|
-
* <Legal size={24} className="text-blue-500" strokeWidth={2} />
|
|
539
|
-
* ```
|
|
540
|
-
*/
|
|
541
|
-
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
|
-
|
|
543
|
-
/**
|
|
544
|
-
* Props for the LikeBold icon component
|
|
545
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
546
|
-
*/
|
|
547
|
-
interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
548
|
-
size?: number | string;
|
|
549
|
-
}
|
|
550
|
-
/**
|
|
551
|
-
* LikeBold icon component
|
|
552
|
-
* @example
|
|
553
|
-
* ```tsx
|
|
554
|
-
* import { LikeBold } from 'magick-icons';
|
|
555
|
-
*
|
|
556
|
-
* <LikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
557
|
-
* ```
|
|
558
|
-
*/
|
|
559
|
-
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
560
|
-
|
|
561
165
|
/**
|
|
562
166
|
* Props for the Line icon component
|
|
563
167
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -576,24 +180,6 @@ interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
|
576
180
|
*/
|
|
577
181
|
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
578
182
|
|
|
579
|
-
/**
|
|
580
|
-
* Props for the LinkSquare icon component
|
|
581
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
582
|
-
*/
|
|
583
|
-
interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
584
|
-
size?: number | string;
|
|
585
|
-
}
|
|
586
|
-
/**
|
|
587
|
-
* LinkSquare icon component
|
|
588
|
-
* @example
|
|
589
|
-
* ```tsx
|
|
590
|
-
* import { LinkSquare } from 'magick-icons';
|
|
591
|
-
*
|
|
592
|
-
* <LinkSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
593
|
-
* ```
|
|
594
|
-
*/
|
|
595
|
-
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
596
|
-
|
|
597
183
|
/**
|
|
598
184
|
* Props for the List icon component
|
|
599
185
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -666,24 +252,6 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
666
252
|
*/
|
|
667
253
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
668
254
|
|
|
669
|
-
/**
|
|
670
|
-
* Props for the MagickPotion icon component
|
|
671
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
672
|
-
*/
|
|
673
|
-
interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
674
|
-
size?: number | string;
|
|
675
|
-
}
|
|
676
|
-
/**
|
|
677
|
-
* MagickPotion icon component
|
|
678
|
-
* @example
|
|
679
|
-
* ```tsx
|
|
680
|
-
* import { MagickPotion } from 'magick-icons';
|
|
681
|
-
*
|
|
682
|
-
* <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
|
|
683
|
-
* ```
|
|
684
|
-
*/
|
|
685
|
-
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
|
-
|
|
687
255
|
/**
|
|
688
256
|
* Props for the MagickoCheck icon component
|
|
689
257
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -702,78 +270,6 @@ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
|
702
270
|
*/
|
|
703
271
|
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
704
272
|
|
|
705
|
-
/**
|
|
706
|
-
* Props for the Marketing icon component
|
|
707
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
708
|
-
*/
|
|
709
|
-
interface MarketingProps extends React.SVGProps<SVGSVGElement> {
|
|
710
|
-
size?: number | string;
|
|
711
|
-
}
|
|
712
|
-
/**
|
|
713
|
-
* Marketing icon component
|
|
714
|
-
* @example
|
|
715
|
-
* ```tsx
|
|
716
|
-
* import { Marketing } from 'magick-icons';
|
|
717
|
-
*
|
|
718
|
-
* <Marketing size={24} className="text-blue-500" strokeWidth={2} />
|
|
719
|
-
* ```
|
|
720
|
-
*/
|
|
721
|
-
declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
722
|
-
|
|
723
|
-
/**
|
|
724
|
-
* Props for the MessageEdit icon component
|
|
725
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
726
|
-
*/
|
|
727
|
-
interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
728
|
-
size?: number | string;
|
|
729
|
-
}
|
|
730
|
-
/**
|
|
731
|
-
* MessageEdit icon component
|
|
732
|
-
* @example
|
|
733
|
-
* ```tsx
|
|
734
|
-
* import { MessageEdit } from 'magick-icons';
|
|
735
|
-
*
|
|
736
|
-
* <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
737
|
-
* ```
|
|
738
|
-
*/
|
|
739
|
-
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
740
|
-
|
|
741
|
-
/**
|
|
742
|
-
* Props for the Network icon component
|
|
743
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
744
|
-
*/
|
|
745
|
-
interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
746
|
-
size?: number | string;
|
|
747
|
-
}
|
|
748
|
-
/**
|
|
749
|
-
* Network icon component
|
|
750
|
-
* @example
|
|
751
|
-
* ```tsx
|
|
752
|
-
* import { Network } from 'magick-icons';
|
|
753
|
-
*
|
|
754
|
-
* <Network size={24} className="text-blue-500" strokeWidth={2} />
|
|
755
|
-
* ```
|
|
756
|
-
*/
|
|
757
|
-
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
758
|
-
|
|
759
|
-
/**
|
|
760
|
-
* Props for the PA icon component
|
|
761
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
762
|
-
*/
|
|
763
|
-
interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
764
|
-
size?: number | string;
|
|
765
|
-
}
|
|
766
|
-
/**
|
|
767
|
-
* PA icon component
|
|
768
|
-
* @example
|
|
769
|
-
* ```tsx
|
|
770
|
-
* import { PA } from 'magick-icons';
|
|
771
|
-
*
|
|
772
|
-
* <PA size={24} className="text-blue-500" strokeWidth={2} />
|
|
773
|
-
* ```
|
|
774
|
-
*/
|
|
775
|
-
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
776
|
-
|
|
777
273
|
/**
|
|
778
274
|
* Props for the Signature icon component
|
|
779
275
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -792,24 +288,6 @@ interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
|
792
288
|
*/
|
|
793
289
|
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
794
290
|
|
|
795
|
-
/**
|
|
796
|
-
* Props for the SquarePen1 icon component
|
|
797
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
|
-
*/
|
|
799
|
-
interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
800
|
-
size?: number | string;
|
|
801
|
-
}
|
|
802
|
-
/**
|
|
803
|
-
* SquarePen1 icon component
|
|
804
|
-
* @example
|
|
805
|
-
* ```tsx
|
|
806
|
-
* import { SquarePen1 } from 'magick-icons';
|
|
807
|
-
*
|
|
808
|
-
* <SquarePen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
|
-
* ```
|
|
810
|
-
*/
|
|
811
|
-
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
|
-
|
|
813
291
|
/**
|
|
814
292
|
* Props for the Strikethrough icon component
|
|
815
293
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -828,24 +306,6 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
|
828
306
|
*/
|
|
829
307
|
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
308
|
|
|
831
|
-
/**
|
|
832
|
-
* Props for the Video icon component
|
|
833
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
|
-
*/
|
|
835
|
-
interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
836
|
-
size?: number | string;
|
|
837
|
-
}
|
|
838
|
-
/**
|
|
839
|
-
* Video icon component
|
|
840
|
-
* @example
|
|
841
|
-
* ```tsx
|
|
842
|
-
* import { Video } from 'magick-icons';
|
|
843
|
-
*
|
|
844
|
-
* <Video size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
|
-
* ```
|
|
846
|
-
*/
|
|
847
|
-
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
|
-
|
|
849
309
|
/**
|
|
850
310
|
* Props for the X icon component
|
|
851
311
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -864,4 +324,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
864
324
|
*/
|
|
865
325
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
326
|
|
|
867
|
-
export {
|
|
327
|
+
export { ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Enter, type EnterProps, GripVertical, type GripVerticalProps, HrSystem, type HrSystemProps, IconsaxWord, type IconsaxWordProps, Line, type LineProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, MagickoCheck, type MagickoCheckProps, Signature, type SignatureProps, Strikethrough, type StrikethroughProps, X, type XProps };
|