magick-icons 0.1.171 → 0.1.173
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 +83 -893
- package/index.d.ts +83 -893
- package/index.js +209 -1293
- package/index.js.map +1 -1
- package/index.mjs +214 -1253
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/README.md +0 -116
package/index.d.mts
CHANGED
|
@@ -1,131 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
-
/**
|
|
4
|
-
* Props for the Add1 icon component
|
|
5
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
|
-
*/
|
|
7
|
-
interface Add1Props extends React.SVGProps<SVGSVGElement> {
|
|
8
|
-
size?: number | string;
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* Add1 icon component
|
|
12
|
-
* @example
|
|
13
|
-
* ```tsx
|
|
14
|
-
* import { Add1 } from 'magick-icons';
|
|
15
|
-
*
|
|
16
|
-
* <Add1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
|
-
* ```
|
|
18
|
-
*/
|
|
19
|
-
declare const Add1: React.ForwardRefExoticComponent<Omit<Add1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* Props for the Add11 icon component
|
|
23
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
-
*/
|
|
25
|
-
interface Add11Props extends React.SVGProps<SVGSVGElement> {
|
|
26
|
-
size?: number | string;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Add11 icon component
|
|
30
|
-
* @example
|
|
31
|
-
* ```tsx
|
|
32
|
-
* import { Add11 } from 'magick-icons';
|
|
33
|
-
*
|
|
34
|
-
* <Add11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
-
* ```
|
|
36
|
-
*/
|
|
37
|
-
declare const Add11: React.ForwardRefExoticComponent<Omit<Add11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* Props for the AddCircle1 icon component
|
|
41
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
|
-
*/
|
|
43
|
-
interface AddCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
44
|
-
size?: number | string;
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* AddCircle1 icon component
|
|
48
|
-
* @example
|
|
49
|
-
* ```tsx
|
|
50
|
-
* import { AddCircle1 } from 'magick-icons';
|
|
51
|
-
*
|
|
52
|
-
* <AddCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
|
-
* ```
|
|
54
|
-
*/
|
|
55
|
-
declare const AddCircle1: React.ForwardRefExoticComponent<Omit<AddCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* Props for the AddItem1 icon component
|
|
59
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
60
|
-
*/
|
|
61
|
-
interface AddItem1Props extends React.SVGProps<SVGSVGElement> {
|
|
62
|
-
size?: number | string;
|
|
63
|
-
}
|
|
64
|
-
/**
|
|
65
|
-
* AddItem1 icon component
|
|
66
|
-
* @example
|
|
67
|
-
* ```tsx
|
|
68
|
-
* import { AddItem1 } from 'magick-icons';
|
|
69
|
-
*
|
|
70
|
-
* <AddItem1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
71
|
-
* ```
|
|
72
|
-
*/
|
|
73
|
-
declare const AddItem1: React.ForwardRefExoticComponent<Omit<AddItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
|
-
|
|
75
|
-
/**
|
|
76
|
-
* Props for the AiFlask1 icon component
|
|
77
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
|
-
*/
|
|
79
|
-
interface AiFlask1Props extends React.SVGProps<SVGSVGElement> {
|
|
80
|
-
size?: number | string;
|
|
81
|
-
}
|
|
82
|
-
/**
|
|
83
|
-
* AiFlask1 icon component
|
|
84
|
-
* @example
|
|
85
|
-
* ```tsx
|
|
86
|
-
* import { AiFlask1 } from 'magick-icons';
|
|
87
|
-
*
|
|
88
|
-
* <AiFlask1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
89
|
-
* ```
|
|
90
|
-
*/
|
|
91
|
-
declare const AiFlask1: React.ForwardRefExoticComponent<Omit<AiFlask1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
-
|
|
93
|
-
/**
|
|
94
|
-
* Props for the AiIcon icon component
|
|
95
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
-
*/
|
|
97
|
-
interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
98
|
-
size?: number | string;
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* AiIcon icon component
|
|
102
|
-
* @example
|
|
103
|
-
* ```tsx
|
|
104
|
-
* import { AiIcon } from 'magick-icons';
|
|
105
|
-
*
|
|
106
|
-
* <AiIcon size={24} className="text-blue-500" strokeWidth={2} />
|
|
107
|
-
* ```
|
|
108
|
-
*/
|
|
109
|
-
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
-
|
|
111
|
-
/**
|
|
112
|
-
* Props for the AiScience1 icon component
|
|
113
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
114
|
-
*/
|
|
115
|
-
interface AiScience1Props extends React.SVGProps<SVGSVGElement> {
|
|
116
|
-
size?: number | string;
|
|
117
|
-
}
|
|
118
|
-
/**
|
|
119
|
-
* AiScience1 icon component
|
|
120
|
-
* @example
|
|
121
|
-
* ```tsx
|
|
122
|
-
* import { AiScience1 } from 'magick-icons';
|
|
123
|
-
*
|
|
124
|
-
* <AiScience1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
125
|
-
* ```
|
|
126
|
-
*/
|
|
127
|
-
declare const AiScience1: React.ForwardRefExoticComponent<Omit<AiScience1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
|
-
|
|
129
3
|
/**
|
|
130
4
|
* Props for the ArchiveBold icon component
|
|
131
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -198,78 +72,6 @@ interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
198
72
|
*/
|
|
199
73
|
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
74
|
|
|
201
|
-
/**
|
|
202
|
-
* Props for the Autobrightness1 icon component
|
|
203
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
204
|
-
*/
|
|
205
|
-
interface Autobrightness1Props extends React.SVGProps<SVGSVGElement> {
|
|
206
|
-
size?: number | string;
|
|
207
|
-
}
|
|
208
|
-
/**
|
|
209
|
-
* Autobrightness1 icon component
|
|
210
|
-
* @example
|
|
211
|
-
* ```tsx
|
|
212
|
-
* import { Autobrightness1 } from 'magick-icons';
|
|
213
|
-
*
|
|
214
|
-
* <Autobrightness1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
215
|
-
* ```
|
|
216
|
-
*/
|
|
217
|
-
declare const Autobrightness1: React.ForwardRefExoticComponent<Omit<Autobrightness1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
218
|
-
|
|
219
|
-
/**
|
|
220
|
-
* Props for the BackwardItem1 icon component
|
|
221
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
222
|
-
*/
|
|
223
|
-
interface BackwardItem1Props extends React.SVGProps<SVGSVGElement> {
|
|
224
|
-
size?: number | string;
|
|
225
|
-
}
|
|
226
|
-
/**
|
|
227
|
-
* BackwardItem1 icon component
|
|
228
|
-
* @example
|
|
229
|
-
* ```tsx
|
|
230
|
-
* import { BackwardItem1 } from 'magick-icons';
|
|
231
|
-
*
|
|
232
|
-
* <BackwardItem1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
233
|
-
* ```
|
|
234
|
-
*/
|
|
235
|
-
declare const BackwardItem1: React.ForwardRefExoticComponent<Omit<BackwardItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
236
|
-
|
|
237
|
-
/**
|
|
238
|
-
* Props for the Battery2bars1 icon component
|
|
239
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
240
|
-
*/
|
|
241
|
-
interface Battery2bars1Props extends React.SVGProps<SVGSVGElement> {
|
|
242
|
-
size?: number | string;
|
|
243
|
-
}
|
|
244
|
-
/**
|
|
245
|
-
* Battery2bars1 icon component
|
|
246
|
-
* @example
|
|
247
|
-
* ```tsx
|
|
248
|
-
* import { Battery2bars1 } from 'magick-icons';
|
|
249
|
-
*
|
|
250
|
-
* <Battery2bars1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
251
|
-
* ```
|
|
252
|
-
*/
|
|
253
|
-
declare const Battery2bars1: React.ForwardRefExoticComponent<Omit<Battery2bars1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
254
|
-
|
|
255
|
-
/**
|
|
256
|
-
* Props for the BookmarkFilled icon component
|
|
257
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
-
*/
|
|
259
|
-
interface BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
260
|
-
size?: number | string;
|
|
261
|
-
}
|
|
262
|
-
/**
|
|
263
|
-
* BookmarkFilled icon component
|
|
264
|
-
* @example
|
|
265
|
-
* ```tsx
|
|
266
|
-
* import { BookmarkFilled } from 'magick-icons';
|
|
267
|
-
*
|
|
268
|
-
* <BookmarkFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
269
|
-
* ```
|
|
270
|
-
*/
|
|
271
|
-
declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
|
-
|
|
273
75
|
/**
|
|
274
76
|
* Props for the Calendar icon component
|
|
275
77
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -288,60 +90,6 @@ interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
|
288
90
|
*/
|
|
289
91
|
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
92
|
|
|
291
|
-
/**
|
|
292
|
-
* Props for the ChatFullScreen icon component
|
|
293
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
294
|
-
*/
|
|
295
|
-
interface ChatFullScreenProps extends React.SVGProps<SVGSVGElement> {
|
|
296
|
-
size?: number | string;
|
|
297
|
-
}
|
|
298
|
-
/**
|
|
299
|
-
* ChatFullScreen icon component
|
|
300
|
-
* @example
|
|
301
|
-
* ```tsx
|
|
302
|
-
* import { ChatFullScreen } from 'magick-icons';
|
|
303
|
-
*
|
|
304
|
-
* <ChatFullScreen size={24} className="text-blue-500" strokeWidth={2} />
|
|
305
|
-
* ```
|
|
306
|
-
*/
|
|
307
|
-
declare const ChatFullScreen: React.ForwardRefExoticComponent<Omit<ChatFullScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
|
-
|
|
309
|
-
/**
|
|
310
|
-
* Props for the ChatMaximize icon component
|
|
311
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
312
|
-
*/
|
|
313
|
-
interface ChatMaximizeProps extends React.SVGProps<SVGSVGElement> {
|
|
314
|
-
size?: number | string;
|
|
315
|
-
}
|
|
316
|
-
/**
|
|
317
|
-
* ChatMaximize icon component
|
|
318
|
-
* @example
|
|
319
|
-
* ```tsx
|
|
320
|
-
* import { ChatMaximize } from 'magick-icons';
|
|
321
|
-
*
|
|
322
|
-
* <ChatMaximize size={24} className="text-blue-500" strokeWidth={2} />
|
|
323
|
-
* ```
|
|
324
|
-
*/
|
|
325
|
-
declare const ChatMaximize: React.ForwardRefExoticComponent<Omit<ChatMaximizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
|
-
|
|
327
|
-
/**
|
|
328
|
-
* Props for the ChatMinimize icon component
|
|
329
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
330
|
-
*/
|
|
331
|
-
interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
|
|
332
|
-
size?: number | string;
|
|
333
|
-
}
|
|
334
|
-
/**
|
|
335
|
-
* ChatMinimize icon component
|
|
336
|
-
* @example
|
|
337
|
-
* ```tsx
|
|
338
|
-
* import { ChatMinimize } from 'magick-icons';
|
|
339
|
-
*
|
|
340
|
-
* <ChatMinimize size={24} className="text-blue-500" strokeWidth={2} />
|
|
341
|
-
* ```
|
|
342
|
-
*/
|
|
343
|
-
declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
|
-
|
|
345
93
|
/**
|
|
346
94
|
* Props for the ChevronDown icon component
|
|
347
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -476,591 +224,249 @@ interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
476
224
|
size?: number | string;
|
|
477
225
|
}
|
|
478
226
|
/**
|
|
479
|
-
* DislikeBold icon component
|
|
480
|
-
* @example
|
|
481
|
-
* ```tsx
|
|
482
|
-
* import { DislikeBold } from 'magick-icons';
|
|
483
|
-
*
|
|
484
|
-
* <DislikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
485
|
-
* ```
|
|
486
|
-
*/
|
|
487
|
-
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
488
|
-
|
|
489
|
-
/**
|
|
490
|
-
* Props for the Doc icon component
|
|
491
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
492
|
-
*/
|
|
493
|
-
interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
494
|
-
size?: number | string;
|
|
495
|
-
}
|
|
496
|
-
/**
|
|
497
|
-
* Doc icon component
|
|
498
|
-
* @example
|
|
499
|
-
* ```tsx
|
|
500
|
-
* import { Doc } from 'magick-icons';
|
|
501
|
-
*
|
|
502
|
-
* <Doc size={24} className="text-blue-500" strokeWidth={2} />
|
|
503
|
-
* ```
|
|
504
|
-
*/
|
|
505
|
-
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
506
|
-
|
|
507
|
-
/**
|
|
508
|
-
* Props for the DocumentTextBold icon component
|
|
509
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
510
|
-
*/
|
|
511
|
-
interface DocumentTextBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
512
|
-
size?: number | string;
|
|
513
|
-
}
|
|
514
|
-
/**
|
|
515
|
-
* DocumentTextBold icon component
|
|
516
|
-
* @example
|
|
517
|
-
* ```tsx
|
|
518
|
-
* import { DocumentTextBold } from 'magick-icons';
|
|
519
|
-
*
|
|
520
|
-
* <DocumentTextBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
521
|
-
* ```
|
|
522
|
-
*/
|
|
523
|
-
declare const DocumentTextBold: React.ForwardRefExoticComponent<Omit<DocumentTextBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
524
|
-
|
|
525
|
-
/**
|
|
526
|
-
* Props for the DocumentUpload icon component
|
|
527
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
528
|
-
*/
|
|
529
|
-
interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
530
|
-
size?: number | string;
|
|
531
|
-
}
|
|
532
|
-
/**
|
|
533
|
-
* DocumentUpload icon component
|
|
534
|
-
* @example
|
|
535
|
-
* ```tsx
|
|
536
|
-
* import { DocumentUpload } from 'magick-icons';
|
|
537
|
-
*
|
|
538
|
-
* <DocumentUpload size={24} className="text-blue-500" strokeWidth={2} />
|
|
539
|
-
* ```
|
|
540
|
-
*/
|
|
541
|
-
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
|
-
|
|
543
|
-
/**
|
|
544
|
-
* Props for the Enter icon component
|
|
545
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
546
|
-
*/
|
|
547
|
-
interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
548
|
-
size?: number | string;
|
|
549
|
-
}
|
|
550
|
-
/**
|
|
551
|
-
* Enter icon component
|
|
552
|
-
* @example
|
|
553
|
-
* ```tsx
|
|
554
|
-
* import { Enter } from 'magick-icons';
|
|
555
|
-
*
|
|
556
|
-
* <Enter size={24} className="text-blue-500" strokeWidth={2} />
|
|
557
|
-
* ```
|
|
558
|
-
*/
|
|
559
|
-
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
560
|
-
|
|
561
|
-
/**
|
|
562
|
-
* Props for the Excel icon component
|
|
563
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
564
|
-
*/
|
|
565
|
-
interface ExcelProps extends React.SVGProps<SVGSVGElement> {
|
|
566
|
-
size?: number | string;
|
|
567
|
-
}
|
|
568
|
-
/**
|
|
569
|
-
* Excel icon component
|
|
570
|
-
* @example
|
|
571
|
-
* ```tsx
|
|
572
|
-
* import { Excel } from 'magick-icons';
|
|
573
|
-
*
|
|
574
|
-
* <Excel size={24} className="text-blue-500" strokeWidth={2} />
|
|
575
|
-
* ```
|
|
576
|
-
*/
|
|
577
|
-
declare const Excel: React.ForwardRefExoticComponent<Omit<ExcelProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
578
|
-
|
|
579
|
-
/**
|
|
580
|
-
* Props for the File icon component
|
|
581
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
582
|
-
*/
|
|
583
|
-
interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
584
|
-
size?: number | string;
|
|
585
|
-
}
|
|
586
|
-
/**
|
|
587
|
-
* File icon component
|
|
588
|
-
* @example
|
|
589
|
-
* ```tsx
|
|
590
|
-
* import { File } from 'magick-icons';
|
|
591
|
-
*
|
|
592
|
-
* <File size={24} className="text-blue-500" strokeWidth={2} />
|
|
593
|
-
* ```
|
|
594
|
-
*/
|
|
595
|
-
declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
596
|
-
|
|
597
|
-
/**
|
|
598
|
-
* Props for the Finance icon component
|
|
599
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
600
|
-
*/
|
|
601
|
-
interface FinanceProps extends React.SVGProps<SVGSVGElement> {
|
|
602
|
-
size?: number | string;
|
|
603
|
-
}
|
|
604
|
-
/**
|
|
605
|
-
* Finance icon component
|
|
606
|
-
* @example
|
|
607
|
-
* ```tsx
|
|
608
|
-
* import { Finance } from 'magick-icons';
|
|
609
|
-
*
|
|
610
|
-
* <Finance size={24} className="text-blue-500" strokeWidth={2} />
|
|
611
|
-
* ```
|
|
612
|
-
*/
|
|
613
|
-
declare const Finance: React.ForwardRefExoticComponent<Omit<FinanceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
614
|
-
|
|
615
|
-
/**
|
|
616
|
-
* Props for the Flag icon component
|
|
617
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
618
|
-
*/
|
|
619
|
-
interface FlagProps extends React.SVGProps<SVGSVGElement> {
|
|
620
|
-
size?: number | string;
|
|
621
|
-
}
|
|
622
|
-
/**
|
|
623
|
-
* Flag icon component
|
|
624
|
-
* @example
|
|
625
|
-
* ```tsx
|
|
626
|
-
* import { Flag } from 'magick-icons';
|
|
627
|
-
*
|
|
628
|
-
* <Flag size={24} className="text-blue-500" strokeWidth={2} />
|
|
629
|
-
* ```
|
|
630
|
-
*/
|
|
631
|
-
declare const Flag: React.ForwardRefExoticComponent<Omit<FlagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
|
-
|
|
633
|
-
/**
|
|
634
|
-
* Props for the Folder2 icon component
|
|
635
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
636
|
-
*/
|
|
637
|
-
interface Folder2Props extends React.SVGProps<SVGSVGElement> {
|
|
638
|
-
size?: number | string;
|
|
639
|
-
}
|
|
640
|
-
/**
|
|
641
|
-
* Folder2 icon component
|
|
642
|
-
* @example
|
|
643
|
-
* ```tsx
|
|
644
|
-
* import { Folder2 } from 'magick-icons';
|
|
645
|
-
*
|
|
646
|
-
* <Folder2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
647
|
-
* ```
|
|
648
|
-
*/
|
|
649
|
-
declare const Folder2: React.ForwardRefExoticComponent<Omit<Folder2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
650
|
-
|
|
651
|
-
/**
|
|
652
|
-
* Props for the FolderDrawerOpen icon component
|
|
653
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
654
|
-
*/
|
|
655
|
-
interface FolderDrawerOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
656
|
-
size?: number | string;
|
|
657
|
-
}
|
|
658
|
-
/**
|
|
659
|
-
* FolderDrawerOpen icon component
|
|
660
|
-
* @example
|
|
661
|
-
* ```tsx
|
|
662
|
-
* import { FolderDrawerOpen } from 'magick-icons';
|
|
663
|
-
*
|
|
664
|
-
* <FolderDrawerOpen size={24} className="text-blue-500" strokeWidth={2} />
|
|
665
|
-
* ```
|
|
666
|
-
*/
|
|
667
|
-
declare const FolderDrawerOpen: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
668
|
-
|
|
669
|
-
/**
|
|
670
|
-
* Props for the FolderDrawerOpenAddBold icon component
|
|
671
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
672
|
-
*/
|
|
673
|
-
interface FolderDrawerOpenAddBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
674
|
-
size?: number | string;
|
|
675
|
-
}
|
|
676
|
-
/**
|
|
677
|
-
* FolderDrawerOpenAddBold icon component
|
|
678
|
-
* @example
|
|
679
|
-
* ```tsx
|
|
680
|
-
* import { FolderDrawerOpenAddBold } from 'magick-icons';
|
|
681
|
-
*
|
|
682
|
-
* <FolderDrawerOpenAddBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
683
|
-
* ```
|
|
684
|
-
*/
|
|
685
|
-
declare const FolderDrawerOpenAddBold: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenAddBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
|
-
|
|
687
|
-
/**
|
|
688
|
-
* Props for the FolderOpenBold icon component
|
|
689
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
690
|
-
*/
|
|
691
|
-
interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
692
|
-
size?: number | string;
|
|
693
|
-
}
|
|
694
|
-
/**
|
|
695
|
-
* FolderOpenBold icon component
|
|
696
|
-
* @example
|
|
697
|
-
* ```tsx
|
|
698
|
-
* import { FolderOpenBold } from 'magick-icons';
|
|
699
|
-
*
|
|
700
|
-
* <FolderOpenBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
701
|
-
* ```
|
|
702
|
-
*/
|
|
703
|
-
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
704
|
-
|
|
705
|
-
/**
|
|
706
|
-
* Props for the Frame icon component
|
|
707
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
708
|
-
*/
|
|
709
|
-
interface FrameProps extends React.SVGProps<SVGSVGElement> {
|
|
710
|
-
size?: number | string;
|
|
711
|
-
}
|
|
712
|
-
/**
|
|
713
|
-
* Frame icon component
|
|
714
|
-
* @example
|
|
715
|
-
* ```tsx
|
|
716
|
-
* import { Frame } from 'magick-icons';
|
|
717
|
-
*
|
|
718
|
-
* <Frame size={24} className="text-blue-500" strokeWidth={2} />
|
|
719
|
-
* ```
|
|
720
|
-
*/
|
|
721
|
-
declare const Frame: React.ForwardRefExoticComponent<Omit<FrameProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
722
|
-
|
|
723
|
-
/**
|
|
724
|
-
* Props for the Frame1000007191 icon component
|
|
725
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
726
|
-
*/
|
|
727
|
-
interface Frame1000007191Props extends React.SVGProps<SVGSVGElement> {
|
|
728
|
-
size?: number | string;
|
|
729
|
-
}
|
|
730
|
-
/**
|
|
731
|
-
* Frame1000007191 icon component
|
|
732
|
-
* @example
|
|
733
|
-
* ```tsx
|
|
734
|
-
* import { Frame1000007191 } from 'magick-icons';
|
|
735
|
-
*
|
|
736
|
-
* <Frame1000007191 size={24} className="text-blue-500" strokeWidth={2} />
|
|
737
|
-
* ```
|
|
738
|
-
*/
|
|
739
|
-
declare const Frame1000007191: React.ForwardRefExoticComponent<Omit<Frame1000007191Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
740
|
-
|
|
741
|
-
/**
|
|
742
|
-
* Props for the Frame1000007193 icon component
|
|
743
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
744
|
-
*/
|
|
745
|
-
interface Frame1000007193Props extends React.SVGProps<SVGSVGElement> {
|
|
746
|
-
size?: number | string;
|
|
747
|
-
}
|
|
748
|
-
/**
|
|
749
|
-
* Frame1000007193 icon component
|
|
750
|
-
* @example
|
|
751
|
-
* ```tsx
|
|
752
|
-
* import { Frame1000007193 } from 'magick-icons';
|
|
753
|
-
*
|
|
754
|
-
* <Frame1000007193 size={24} className="text-blue-500" strokeWidth={2} />
|
|
755
|
-
* ```
|
|
756
|
-
*/
|
|
757
|
-
declare const Frame1000007193: React.ForwardRefExoticComponent<Omit<Frame1000007193Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
758
|
-
|
|
759
|
-
/**
|
|
760
|
-
* Props for the Frame1000007194 icon component
|
|
761
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
762
|
-
*/
|
|
763
|
-
interface Frame1000007194Props extends React.SVGProps<SVGSVGElement> {
|
|
764
|
-
size?: number | string;
|
|
765
|
-
}
|
|
766
|
-
/**
|
|
767
|
-
* Frame1000007194 icon component
|
|
768
|
-
* @example
|
|
769
|
-
* ```tsx
|
|
770
|
-
* import { Frame1000007194 } from 'magick-icons';
|
|
771
|
-
*
|
|
772
|
-
* <Frame1000007194 size={24} className="text-blue-500" strokeWidth={2} />
|
|
773
|
-
* ```
|
|
774
|
-
*/
|
|
775
|
-
declare const Frame1000007194: React.ForwardRefExoticComponent<Omit<Frame1000007194Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
776
|
-
|
|
777
|
-
/**
|
|
778
|
-
* Props for the Frame1000007195 icon component
|
|
779
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
780
|
-
*/
|
|
781
|
-
interface Frame1000007195Props extends React.SVGProps<SVGSVGElement> {
|
|
782
|
-
size?: number | string;
|
|
783
|
-
}
|
|
784
|
-
/**
|
|
785
|
-
* Frame1000007195 icon component
|
|
786
|
-
* @example
|
|
787
|
-
* ```tsx
|
|
788
|
-
* import { Frame1000007195 } from 'magick-icons';
|
|
789
|
-
*
|
|
790
|
-
* <Frame1000007195 size={24} className="text-blue-500" strokeWidth={2} />
|
|
791
|
-
* ```
|
|
792
|
-
*/
|
|
793
|
-
declare const Frame1000007195: React.ForwardRefExoticComponent<Omit<Frame1000007195Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
794
|
-
|
|
795
|
-
/**
|
|
796
|
-
* Props for the Frame1000007196 icon component
|
|
797
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
|
-
*/
|
|
799
|
-
interface Frame1000007196Props extends React.SVGProps<SVGSVGElement> {
|
|
800
|
-
size?: number | string;
|
|
801
|
-
}
|
|
802
|
-
/**
|
|
803
|
-
* Frame1000007196 icon component
|
|
804
|
-
* @example
|
|
805
|
-
* ```tsx
|
|
806
|
-
* import { Frame1000007196 } from 'magick-icons';
|
|
807
|
-
*
|
|
808
|
-
* <Frame1000007196 size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
|
-
* ```
|
|
810
|
-
*/
|
|
811
|
-
declare const Frame1000007196: React.ForwardRefExoticComponent<Omit<Frame1000007196Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
|
-
|
|
813
|
-
/**
|
|
814
|
-
* Props for the GeneralMagicko icon component
|
|
815
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
816
|
-
*/
|
|
817
|
-
interface GeneralMagickoProps extends React.SVGProps<SVGSVGElement> {
|
|
818
|
-
size?: number | string;
|
|
819
|
-
}
|
|
820
|
-
/**
|
|
821
|
-
* GeneralMagicko icon component
|
|
227
|
+
* DislikeBold icon component
|
|
822
228
|
* @example
|
|
823
229
|
* ```tsx
|
|
824
|
-
* import {
|
|
230
|
+
* import { DislikeBold } from 'magick-icons';
|
|
825
231
|
*
|
|
826
|
-
* <
|
|
232
|
+
* <DislikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
827
233
|
* ```
|
|
828
234
|
*/
|
|
829
|
-
declare const
|
|
235
|
+
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
236
|
|
|
831
237
|
/**
|
|
832
|
-
* Props for the
|
|
238
|
+
* Props for the DocumentTextBold icon component
|
|
833
239
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
240
|
*/
|
|
835
|
-
interface
|
|
241
|
+
interface DocumentTextBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
836
242
|
size?: number | string;
|
|
837
243
|
}
|
|
838
244
|
/**
|
|
839
|
-
*
|
|
245
|
+
* DocumentTextBold icon component
|
|
840
246
|
* @example
|
|
841
247
|
* ```tsx
|
|
842
|
-
* import {
|
|
248
|
+
* import { DocumentTextBold } from 'magick-icons';
|
|
843
249
|
*
|
|
844
|
-
* <
|
|
250
|
+
* <DocumentTextBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
251
|
* ```
|
|
846
252
|
*/
|
|
847
|
-
declare const
|
|
253
|
+
declare const DocumentTextBold: React.ForwardRefExoticComponent<Omit<DocumentTextBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
254
|
|
|
849
255
|
/**
|
|
850
|
-
* Props for the
|
|
256
|
+
* Props for the DocumentUpload icon component
|
|
851
257
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
852
258
|
*/
|
|
853
|
-
interface
|
|
259
|
+
interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
854
260
|
size?: number | string;
|
|
855
261
|
}
|
|
856
262
|
/**
|
|
857
|
-
*
|
|
263
|
+
* DocumentUpload icon component
|
|
858
264
|
* @example
|
|
859
265
|
* ```tsx
|
|
860
|
-
* import {
|
|
266
|
+
* import { DocumentUpload } from 'magick-icons';
|
|
861
267
|
*
|
|
862
|
-
* <
|
|
268
|
+
* <DocumentUpload size={24} className="text-blue-500" strokeWidth={2} />
|
|
863
269
|
* ```
|
|
864
270
|
*/
|
|
865
|
-
declare const
|
|
271
|
+
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
272
|
|
|
867
273
|
/**
|
|
868
|
-
* Props for the
|
|
274
|
+
* Props for the Enter icon component
|
|
869
275
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
870
276
|
*/
|
|
871
|
-
interface
|
|
277
|
+
interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
872
278
|
size?: number | string;
|
|
873
279
|
}
|
|
874
280
|
/**
|
|
875
|
-
*
|
|
281
|
+
* Enter icon component
|
|
876
282
|
* @example
|
|
877
283
|
* ```tsx
|
|
878
|
-
* import {
|
|
284
|
+
* import { Enter } from 'magick-icons';
|
|
879
285
|
*
|
|
880
|
-
* <
|
|
286
|
+
* <Enter size={24} className="text-blue-500" strokeWidth={2} />
|
|
881
287
|
* ```
|
|
882
288
|
*/
|
|
883
|
-
declare const
|
|
289
|
+
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
290
|
|
|
885
291
|
/**
|
|
886
|
-
* Props for the
|
|
292
|
+
* Props for the Finance icon component
|
|
887
293
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
294
|
*/
|
|
889
|
-
interface
|
|
295
|
+
interface FinanceProps extends React.SVGProps<SVGSVGElement> {
|
|
890
296
|
size?: number | string;
|
|
891
297
|
}
|
|
892
298
|
/**
|
|
893
|
-
*
|
|
299
|
+
* Finance icon component
|
|
894
300
|
* @example
|
|
895
301
|
* ```tsx
|
|
896
|
-
* import {
|
|
302
|
+
* import { Finance } from 'magick-icons';
|
|
897
303
|
*
|
|
898
|
-
* <
|
|
304
|
+
* <Finance size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
305
|
* ```
|
|
900
306
|
*/
|
|
901
|
-
declare const
|
|
307
|
+
declare const Finance: React.ForwardRefExoticComponent<Omit<FinanceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
308
|
|
|
903
309
|
/**
|
|
904
|
-
* Props for the
|
|
310
|
+
* Props for the Flag icon component
|
|
905
311
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
906
312
|
*/
|
|
907
|
-
interface
|
|
313
|
+
interface FlagProps extends React.SVGProps<SVGSVGElement> {
|
|
908
314
|
size?: number | string;
|
|
909
315
|
}
|
|
910
316
|
/**
|
|
911
|
-
*
|
|
317
|
+
* Flag icon component
|
|
912
318
|
* @example
|
|
913
319
|
* ```tsx
|
|
914
|
-
* import {
|
|
320
|
+
* import { Flag } from 'magick-icons';
|
|
915
321
|
*
|
|
916
|
-
* <
|
|
322
|
+
* <Flag size={24} className="text-blue-500" strokeWidth={2} />
|
|
917
323
|
* ```
|
|
918
324
|
*/
|
|
919
|
-
declare const
|
|
325
|
+
declare const Flag: React.ForwardRefExoticComponent<Omit<FlagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
326
|
|
|
921
327
|
/**
|
|
922
|
-
* Props for the
|
|
328
|
+
* Props for the Folder2 icon component
|
|
923
329
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
330
|
*/
|
|
925
|
-
interface
|
|
331
|
+
interface Folder2Props extends React.SVGProps<SVGSVGElement> {
|
|
926
332
|
size?: number | string;
|
|
927
333
|
}
|
|
928
334
|
/**
|
|
929
|
-
*
|
|
335
|
+
* Folder2 icon component
|
|
930
336
|
* @example
|
|
931
337
|
* ```tsx
|
|
932
|
-
* import {
|
|
338
|
+
* import { Folder2 } from 'magick-icons';
|
|
933
339
|
*
|
|
934
|
-
* <
|
|
340
|
+
* <Folder2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
341
|
* ```
|
|
936
342
|
*/
|
|
937
|
-
declare const
|
|
343
|
+
declare const Folder2: React.ForwardRefExoticComponent<Omit<Folder2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
344
|
|
|
939
345
|
/**
|
|
940
|
-
* Props for the
|
|
346
|
+
* Props for the FolderDrawerOpen icon component
|
|
941
347
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
942
348
|
*/
|
|
943
|
-
interface
|
|
349
|
+
interface FolderDrawerOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
944
350
|
size?: number | string;
|
|
945
351
|
}
|
|
946
352
|
/**
|
|
947
|
-
*
|
|
353
|
+
* FolderDrawerOpen icon component
|
|
948
354
|
* @example
|
|
949
355
|
* ```tsx
|
|
950
|
-
* import {
|
|
356
|
+
* import { FolderDrawerOpen } from 'magick-icons';
|
|
951
357
|
*
|
|
952
|
-
* <
|
|
358
|
+
* <FolderDrawerOpen size={24} className="text-blue-500" strokeWidth={2} />
|
|
953
359
|
* ```
|
|
954
360
|
*/
|
|
955
|
-
declare const
|
|
361
|
+
declare const FolderDrawerOpen: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
956
362
|
|
|
957
363
|
/**
|
|
958
|
-
* Props for the
|
|
364
|
+
* Props for the FolderOpenBold icon component
|
|
959
365
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
960
366
|
*/
|
|
961
|
-
interface
|
|
367
|
+
interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
962
368
|
size?: number | string;
|
|
963
369
|
}
|
|
964
370
|
/**
|
|
965
|
-
*
|
|
371
|
+
* FolderOpenBold icon component
|
|
966
372
|
* @example
|
|
967
373
|
* ```tsx
|
|
968
|
-
* import {
|
|
374
|
+
* import { FolderOpenBold } from 'magick-icons';
|
|
969
375
|
*
|
|
970
|
-
* <
|
|
376
|
+
* <FolderOpenBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
971
377
|
* ```
|
|
972
378
|
*/
|
|
973
|
-
declare const
|
|
379
|
+
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
974
380
|
|
|
975
381
|
/**
|
|
976
|
-
* Props for the
|
|
382
|
+
* Props for the GripVertical icon component
|
|
977
383
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
978
384
|
*/
|
|
979
|
-
interface
|
|
385
|
+
interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
|
|
980
386
|
size?: number | string;
|
|
981
387
|
}
|
|
982
388
|
/**
|
|
983
|
-
*
|
|
389
|
+
* GripVertical icon component
|
|
984
390
|
* @example
|
|
985
391
|
* ```tsx
|
|
986
|
-
* import {
|
|
392
|
+
* import { GripVertical } from 'magick-icons';
|
|
987
393
|
*
|
|
988
|
-
* <
|
|
394
|
+
* <GripVertical size={24} className="text-blue-500" strokeWidth={2} />
|
|
989
395
|
* ```
|
|
990
396
|
*/
|
|
991
|
-
declare const
|
|
397
|
+
declare const GripVertical: React.ForwardRefExoticComponent<Omit<GripVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
992
398
|
|
|
993
399
|
/**
|
|
994
|
-
* Props for the
|
|
400
|
+
* Props for the HeartBold icon component
|
|
995
401
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
996
402
|
*/
|
|
997
|
-
interface
|
|
403
|
+
interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
998
404
|
size?: number | string;
|
|
999
405
|
}
|
|
1000
406
|
/**
|
|
1001
|
-
*
|
|
407
|
+
* HeartBold icon component
|
|
1002
408
|
* @example
|
|
1003
409
|
* ```tsx
|
|
1004
|
-
* import {
|
|
410
|
+
* import { HeartBold } from 'magick-icons';
|
|
1005
411
|
*
|
|
1006
|
-
* <
|
|
412
|
+
* <HeartBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1007
413
|
* ```
|
|
1008
414
|
*/
|
|
1009
|
-
declare const
|
|
415
|
+
declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
416
|
|
|
1011
417
|
/**
|
|
1012
|
-
* Props for the
|
|
418
|
+
* Props for the HrSystem icon component
|
|
1013
419
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1014
420
|
*/
|
|
1015
|
-
interface
|
|
421
|
+
interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
1016
422
|
size?: number | string;
|
|
1017
423
|
}
|
|
1018
424
|
/**
|
|
1019
|
-
*
|
|
425
|
+
* HrSystem icon component
|
|
1020
426
|
* @example
|
|
1021
427
|
* ```tsx
|
|
1022
|
-
* import {
|
|
428
|
+
* import { HrSystem } from 'magick-icons';
|
|
1023
429
|
*
|
|
1024
|
-
* <
|
|
430
|
+
* <HrSystem size={24} className="text-blue-500" strokeWidth={2} />
|
|
1025
431
|
* ```
|
|
1026
432
|
*/
|
|
1027
|
-
declare const
|
|
433
|
+
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
434
|
|
|
1029
435
|
/**
|
|
1030
|
-
* Props for the
|
|
436
|
+
* Props for the IconsaxAttachCircleBold icon component
|
|
1031
437
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1032
438
|
*/
|
|
1033
|
-
interface
|
|
439
|
+
interface IconsaxAttachCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1034
440
|
size?: number | string;
|
|
1035
441
|
}
|
|
1036
442
|
/**
|
|
1037
|
-
*
|
|
443
|
+
* IconsaxAttachCircleBold icon component
|
|
1038
444
|
* @example
|
|
1039
445
|
* ```tsx
|
|
1040
|
-
* import {
|
|
446
|
+
* import { IconsaxAttachCircleBold } from 'magick-icons';
|
|
1041
447
|
*
|
|
1042
|
-
* <
|
|
448
|
+
* <IconsaxAttachCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1043
449
|
* ```
|
|
1044
450
|
*/
|
|
1045
|
-
declare const
|
|
451
|
+
declare const IconsaxAttachCircleBold: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1046
452
|
|
|
1047
453
|
/**
|
|
1048
|
-
* Props for the
|
|
454
|
+
* Props for the IconsaxPenBrushBold icon component
|
|
1049
455
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1050
456
|
*/
|
|
1051
|
-
interface
|
|
457
|
+
interface IconsaxPenBrushBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1052
458
|
size?: number | string;
|
|
1053
459
|
}
|
|
1054
460
|
/**
|
|
1055
|
-
*
|
|
461
|
+
* IconsaxPenBrushBold icon component
|
|
1056
462
|
* @example
|
|
1057
463
|
* ```tsx
|
|
1058
|
-
* import {
|
|
464
|
+
* import { IconsaxPenBrushBold } from 'magick-icons';
|
|
1059
465
|
*
|
|
1060
|
-
* <
|
|
466
|
+
* <IconsaxPenBrushBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1061
467
|
* ```
|
|
1062
468
|
*/
|
|
1063
|
-
declare const
|
|
469
|
+
declare const IconsaxPenBrushBold: React.ForwardRefExoticComponent<Omit<IconsaxPenBrushBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
470
|
|
|
1065
471
|
/**
|
|
1066
472
|
* Props for the IconsaxVideoCameraBold icon component
|
|
@@ -1098,24 +504,6 @@ interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1098
504
|
*/
|
|
1099
505
|
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1100
506
|
|
|
1101
|
-
/**
|
|
1102
|
-
* Props for the InProgress icon component
|
|
1103
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1104
|
-
*/
|
|
1105
|
-
interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
1106
|
-
size?: number | string;
|
|
1107
|
-
}
|
|
1108
|
-
/**
|
|
1109
|
-
* InProgress icon component
|
|
1110
|
-
* @example
|
|
1111
|
-
* ```tsx
|
|
1112
|
-
* import { InProgress } from 'magick-icons';
|
|
1113
|
-
*
|
|
1114
|
-
* <InProgress size={24} className="text-blue-500" strokeWidth={2} />
|
|
1115
|
-
* ```
|
|
1116
|
-
*/
|
|
1117
|
-
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1118
|
-
|
|
1119
507
|
/**
|
|
1120
508
|
* Props for the InfoCircleBold icon component
|
|
1121
509
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1278,24 +666,6 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1278
666
|
*/
|
|
1279
667
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1280
668
|
|
|
1281
|
-
/**
|
|
1282
|
-
* Props for the Lock icon component
|
|
1283
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1284
|
-
*/
|
|
1285
|
-
interface LockProps extends React.SVGProps<SVGSVGElement> {
|
|
1286
|
-
size?: number | string;
|
|
1287
|
-
}
|
|
1288
|
-
/**
|
|
1289
|
-
* Lock icon component
|
|
1290
|
-
* @example
|
|
1291
|
-
* ```tsx
|
|
1292
|
-
* import { Lock } from 'magick-icons';
|
|
1293
|
-
*
|
|
1294
|
-
* <Lock size={24} className="text-blue-500" strokeWidth={2} />
|
|
1295
|
-
* ```
|
|
1296
|
-
*/
|
|
1297
|
-
declare const Lock: React.ForwardRefExoticComponent<Omit<LockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1298
|
-
|
|
1299
669
|
/**
|
|
1300
670
|
* Props for the MagickPotion icon component
|
|
1301
671
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1368,60 +738,6 @@ interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1368
738
|
*/
|
|
1369
739
|
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1370
740
|
|
|
1371
|
-
/**
|
|
1372
|
-
* Props for the MingcuteMicLine1 icon component
|
|
1373
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1374
|
-
*/
|
|
1375
|
-
interface MingcuteMicLine1Props extends React.SVGProps<SVGSVGElement> {
|
|
1376
|
-
size?: number | string;
|
|
1377
|
-
}
|
|
1378
|
-
/**
|
|
1379
|
-
* MingcuteMicLine1 icon component
|
|
1380
|
-
* @example
|
|
1381
|
-
* ```tsx
|
|
1382
|
-
* import { MingcuteMicLine1 } from 'magick-icons';
|
|
1383
|
-
*
|
|
1384
|
-
* <MingcuteMicLine1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1385
|
-
* ```
|
|
1386
|
-
*/
|
|
1387
|
-
declare const MingcuteMicLine1: React.ForwardRefExoticComponent<Omit<MingcuteMicLine1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1388
|
-
|
|
1389
|
-
/**
|
|
1390
|
-
* Props for the MingcuteMicLine11 icon component
|
|
1391
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1392
|
-
*/
|
|
1393
|
-
interface MingcuteMicLine11Props extends React.SVGProps<SVGSVGElement> {
|
|
1394
|
-
size?: number | string;
|
|
1395
|
-
}
|
|
1396
|
-
/**
|
|
1397
|
-
* MingcuteMicLine11 icon component
|
|
1398
|
-
* @example
|
|
1399
|
-
* ```tsx
|
|
1400
|
-
* import { MingcuteMicLine11 } from 'magick-icons';
|
|
1401
|
-
*
|
|
1402
|
-
* <MingcuteMicLine11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1403
|
-
* ```
|
|
1404
|
-
*/
|
|
1405
|
-
declare const MingcuteMicLine11: React.ForwardRefExoticComponent<Omit<MingcuteMicLine11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1406
|
-
|
|
1407
|
-
/**
|
|
1408
|
-
* Props for the MingcuteMicLine12 icon component
|
|
1409
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1410
|
-
*/
|
|
1411
|
-
interface MingcuteMicLine12Props extends React.SVGProps<SVGSVGElement> {
|
|
1412
|
-
size?: number | string;
|
|
1413
|
-
}
|
|
1414
|
-
/**
|
|
1415
|
-
* MingcuteMicLine12 icon component
|
|
1416
|
-
* @example
|
|
1417
|
-
* ```tsx
|
|
1418
|
-
* import { MingcuteMicLine12 } from 'magick-icons';
|
|
1419
|
-
*
|
|
1420
|
-
* <MingcuteMicLine12 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1421
|
-
* ```
|
|
1422
|
-
*/
|
|
1423
|
-
declare const MingcuteMicLine12: React.ForwardRefExoticComponent<Omit<MingcuteMicLine12Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1424
|
-
|
|
1425
741
|
/**
|
|
1426
742
|
* Props for the Network icon component
|
|
1427
743
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1440,24 +756,6 @@ interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1440
756
|
*/
|
|
1441
757
|
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1442
758
|
|
|
1443
|
-
/**
|
|
1444
|
-
* Props for the NotiDot icon component
|
|
1445
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1446
|
-
*/
|
|
1447
|
-
interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
1448
|
-
size?: number | string;
|
|
1449
|
-
}
|
|
1450
|
-
/**
|
|
1451
|
-
* NotiDot icon component
|
|
1452
|
-
* @example
|
|
1453
|
-
* ```tsx
|
|
1454
|
-
* import { NotiDot } from 'magick-icons';
|
|
1455
|
-
*
|
|
1456
|
-
* <NotiDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
1457
|
-
* ```
|
|
1458
|
-
*/
|
|
1459
|
-
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1460
|
-
|
|
1461
759
|
/**
|
|
1462
760
|
* Props for the PA icon component
|
|
1463
761
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1476,60 +774,6 @@ interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1476
774
|
*/
|
|
1477
775
|
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1478
776
|
|
|
1479
|
-
/**
|
|
1480
|
-
* Props for the PauseSquare icon component
|
|
1481
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1482
|
-
*/
|
|
1483
|
-
interface PauseSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
1484
|
-
size?: number | string;
|
|
1485
|
-
}
|
|
1486
|
-
/**
|
|
1487
|
-
* PauseSquare icon component
|
|
1488
|
-
* @example
|
|
1489
|
-
* ```tsx
|
|
1490
|
-
* import { PauseSquare } from 'magick-icons';
|
|
1491
|
-
*
|
|
1492
|
-
* <PauseSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
1493
|
-
* ```
|
|
1494
|
-
*/
|
|
1495
|
-
declare const PauseSquare: React.ForwardRefExoticComponent<Omit<PauseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1496
|
-
|
|
1497
|
-
/**
|
|
1498
|
-
* Props for the Pdf icon component
|
|
1499
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1500
|
-
*/
|
|
1501
|
-
interface PdfProps extends React.SVGProps<SVGSVGElement> {
|
|
1502
|
-
size?: number | string;
|
|
1503
|
-
}
|
|
1504
|
-
/**
|
|
1505
|
-
* Pdf icon component
|
|
1506
|
-
* @example
|
|
1507
|
-
* ```tsx
|
|
1508
|
-
* import { Pdf } from 'magick-icons';
|
|
1509
|
-
*
|
|
1510
|
-
* <Pdf size={24} className="text-blue-500" strokeWidth={2} />
|
|
1511
|
-
* ```
|
|
1512
|
-
*/
|
|
1513
|
-
declare const Pdf: React.ForwardRefExoticComponent<Omit<PdfProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1514
|
-
|
|
1515
|
-
/**
|
|
1516
|
-
* Props for the PlayFilled icon component
|
|
1517
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1518
|
-
*/
|
|
1519
|
-
interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
1520
|
-
size?: number | string;
|
|
1521
|
-
}
|
|
1522
|
-
/**
|
|
1523
|
-
* PlayFilled icon component
|
|
1524
|
-
* @example
|
|
1525
|
-
* ```tsx
|
|
1526
|
-
* import { PlayFilled } from 'magick-icons';
|
|
1527
|
-
*
|
|
1528
|
-
* <PlayFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
1529
|
-
* ```
|
|
1530
|
-
*/
|
|
1531
|
-
declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1532
|
-
|
|
1533
777
|
/**
|
|
1534
778
|
* Props for the Signature icon component
|
|
1535
779
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1548,24 +792,6 @@ interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1548
792
|
*/
|
|
1549
793
|
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1550
794
|
|
|
1551
|
-
/**
|
|
1552
|
-
* Props for the SperateDot icon component
|
|
1553
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1554
|
-
*/
|
|
1555
|
-
interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
1556
|
-
size?: number | string;
|
|
1557
|
-
}
|
|
1558
|
-
/**
|
|
1559
|
-
* SperateDot icon component
|
|
1560
|
-
* @example
|
|
1561
|
-
* ```tsx
|
|
1562
|
-
* import { SperateDot } from 'magick-icons';
|
|
1563
|
-
*
|
|
1564
|
-
* <SperateDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
1565
|
-
* ```
|
|
1566
|
-
*/
|
|
1567
|
-
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1568
|
-
|
|
1569
795
|
/**
|
|
1570
796
|
* Props for the SquarePen1 icon component
|
|
1571
797
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1602,42 +828,6 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1602
828
|
*/
|
|
1603
829
|
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1604
830
|
|
|
1605
|
-
/**
|
|
1606
|
-
* Props for the Tasks icon component
|
|
1607
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1608
|
-
*/
|
|
1609
|
-
interface TasksProps extends React.SVGProps<SVGSVGElement> {
|
|
1610
|
-
size?: number | string;
|
|
1611
|
-
}
|
|
1612
|
-
/**
|
|
1613
|
-
* Tasks icon component
|
|
1614
|
-
* @example
|
|
1615
|
-
* ```tsx
|
|
1616
|
-
* import { Tasks } from 'magick-icons';
|
|
1617
|
-
*
|
|
1618
|
-
* <Tasks size={24} className="text-blue-500" strokeWidth={2} />
|
|
1619
|
-
* ```
|
|
1620
|
-
*/
|
|
1621
|
-
declare const Tasks: React.ForwardRefExoticComponent<Omit<TasksProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1622
|
-
|
|
1623
|
-
/**
|
|
1624
|
-
* Props for the Trash icon component
|
|
1625
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1626
|
-
*/
|
|
1627
|
-
interface TrashProps extends React.SVGProps<SVGSVGElement> {
|
|
1628
|
-
size?: number | string;
|
|
1629
|
-
}
|
|
1630
|
-
/**
|
|
1631
|
-
* Trash icon component
|
|
1632
|
-
* @example
|
|
1633
|
-
* ```tsx
|
|
1634
|
-
* import { Trash } from 'magick-icons';
|
|
1635
|
-
*
|
|
1636
|
-
* <Trash size={24} className="text-blue-500" strokeWidth={2} />
|
|
1637
|
-
* ```
|
|
1638
|
-
*/
|
|
1639
|
-
declare const Trash: React.ForwardRefExoticComponent<Omit<TrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1640
|
-
|
|
1641
831
|
/**
|
|
1642
832
|
* Props for the Video icon component
|
|
1643
833
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1674,4 +864,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1674
864
|
*/
|
|
1675
865
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1676
866
|
|
|
1677
|
-
export {
|
|
867
|
+
export { ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Calendar, type CalendarProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, HrSystem, type HrSystemProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, PA, type PAProps, Signature, type SignatureProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Video, type VideoProps, X, type XProps };
|