magick-icons 0.1.190 → 0.1.191
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 +115 -313
- package/index.d.ts +115 -313
- package/index.js +238 -412
- package/index.js.map +1 -1
- package/index.mjs +257 -420
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/README.md +0 -116
package/index.d.mts
CHANGED
|
@@ -1,23 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
-
/**
|
|
4
|
-
* Props for the AiIcon icon component
|
|
5
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
|
-
*/
|
|
7
|
-
interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
8
|
-
size?: number | string;
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* AiIcon icon component
|
|
12
|
-
* @example
|
|
13
|
-
* ```tsx
|
|
14
|
-
* import { AiIcon } from 'magick-icons';
|
|
15
|
-
*
|
|
16
|
-
* <AiIcon size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
|
-
* ```
|
|
18
|
-
*/
|
|
19
|
-
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
|
-
|
|
21
3
|
/**
|
|
22
4
|
* Props for the ArchiveBold icon component
|
|
23
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -90,24 +72,6 @@ interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
90
72
|
*/
|
|
91
73
|
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
74
|
|
|
93
|
-
/**
|
|
94
|
-
* Props for the BookmarkFilled icon component
|
|
95
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
-
*/
|
|
97
|
-
interface BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
98
|
-
size?: number | string;
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* BookmarkFilled icon component
|
|
102
|
-
* @example
|
|
103
|
-
* ```tsx
|
|
104
|
-
* import { BookmarkFilled } from 'magick-icons';
|
|
105
|
-
*
|
|
106
|
-
* <BookmarkFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
107
|
-
* ```
|
|
108
|
-
*/
|
|
109
|
-
declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
-
|
|
111
75
|
/**
|
|
112
76
|
* Props for the Calendar icon component
|
|
113
77
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -126,60 +90,6 @@ interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
|
126
90
|
*/
|
|
127
91
|
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
92
|
|
|
129
|
-
/**
|
|
130
|
-
* Props for the ChatFullScreen icon component
|
|
131
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
132
|
-
*/
|
|
133
|
-
interface ChatFullScreenProps extends React.SVGProps<SVGSVGElement> {
|
|
134
|
-
size?: number | string;
|
|
135
|
-
}
|
|
136
|
-
/**
|
|
137
|
-
* ChatFullScreen icon component
|
|
138
|
-
* @example
|
|
139
|
-
* ```tsx
|
|
140
|
-
* import { ChatFullScreen } from 'magick-icons';
|
|
141
|
-
*
|
|
142
|
-
* <ChatFullScreen size={24} className="text-blue-500" strokeWidth={2} />
|
|
143
|
-
* ```
|
|
144
|
-
*/
|
|
145
|
-
declare const ChatFullScreen: React.ForwardRefExoticComponent<Omit<ChatFullScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
|
-
|
|
147
|
-
/**
|
|
148
|
-
* Props for the ChatMaximize icon component
|
|
149
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
150
|
-
*/
|
|
151
|
-
interface ChatMaximizeProps extends React.SVGProps<SVGSVGElement> {
|
|
152
|
-
size?: number | string;
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* ChatMaximize icon component
|
|
156
|
-
* @example
|
|
157
|
-
* ```tsx
|
|
158
|
-
* import { ChatMaximize } from 'magick-icons';
|
|
159
|
-
*
|
|
160
|
-
* <ChatMaximize size={24} className="text-blue-500" strokeWidth={2} />
|
|
161
|
-
* ```
|
|
162
|
-
*/
|
|
163
|
-
declare const ChatMaximize: React.ForwardRefExoticComponent<Omit<ChatMaximizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
|
-
|
|
165
|
-
/**
|
|
166
|
-
* Props for the ChatMinimize icon component
|
|
167
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
168
|
-
*/
|
|
169
|
-
interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
|
|
170
|
-
size?: number | string;
|
|
171
|
-
}
|
|
172
|
-
/**
|
|
173
|
-
* ChatMinimize icon component
|
|
174
|
-
* @example
|
|
175
|
-
* ```tsx
|
|
176
|
-
* import { ChatMinimize } from 'magick-icons';
|
|
177
|
-
*
|
|
178
|
-
* <ChatMinimize size={24} className="text-blue-500" strokeWidth={2} />
|
|
179
|
-
* ```
|
|
180
|
-
*/
|
|
181
|
-
declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
|
-
|
|
183
93
|
/**
|
|
184
94
|
* Props for the ChevronDown icon component
|
|
185
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -324,24 +234,6 @@ interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
324
234
|
*/
|
|
325
235
|
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
236
|
|
|
327
|
-
/**
|
|
328
|
-
* Props for the Doc icon component
|
|
329
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
330
|
-
*/
|
|
331
|
-
interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
332
|
-
size?: number | string;
|
|
333
|
-
}
|
|
334
|
-
/**
|
|
335
|
-
* Doc icon component
|
|
336
|
-
* @example
|
|
337
|
-
* ```tsx
|
|
338
|
-
* import { Doc } from 'magick-icons';
|
|
339
|
-
*
|
|
340
|
-
* <Doc size={24} className="text-blue-500" strokeWidth={2} />
|
|
341
|
-
* ```
|
|
342
|
-
*/
|
|
343
|
-
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
|
-
|
|
345
237
|
/**
|
|
346
238
|
* Props for the DocumentTextBold icon component
|
|
347
239
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -396,42 +288,6 @@ interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
|
396
288
|
*/
|
|
397
289
|
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
398
290
|
|
|
399
|
-
/**
|
|
400
|
-
* Props for the Excel icon component
|
|
401
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
402
|
-
*/
|
|
403
|
-
interface ExcelProps extends React.SVGProps<SVGSVGElement> {
|
|
404
|
-
size?: number | string;
|
|
405
|
-
}
|
|
406
|
-
/**
|
|
407
|
-
* Excel icon component
|
|
408
|
-
* @example
|
|
409
|
-
* ```tsx
|
|
410
|
-
* import { Excel } from 'magick-icons';
|
|
411
|
-
*
|
|
412
|
-
* <Excel size={24} className="text-blue-500" strokeWidth={2} />
|
|
413
|
-
* ```
|
|
414
|
-
*/
|
|
415
|
-
declare const Excel: React.ForwardRefExoticComponent<Omit<ExcelProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
416
|
-
|
|
417
|
-
/**
|
|
418
|
-
* Props for the File icon component
|
|
419
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
420
|
-
*/
|
|
421
|
-
interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
422
|
-
size?: number | string;
|
|
423
|
-
}
|
|
424
|
-
/**
|
|
425
|
-
* File icon component
|
|
426
|
-
* @example
|
|
427
|
-
* ```tsx
|
|
428
|
-
* import { File } from 'magick-icons';
|
|
429
|
-
*
|
|
430
|
-
* <File size={24} className="text-blue-500" strokeWidth={2} />
|
|
431
|
-
* ```
|
|
432
|
-
*/
|
|
433
|
-
declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
|
-
|
|
435
291
|
/**
|
|
436
292
|
* Props for the Finance icon component
|
|
437
293
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -504,24 +360,6 @@ interface FolderDrawerOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
|
504
360
|
*/
|
|
505
361
|
declare const FolderDrawerOpen: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
506
362
|
|
|
507
|
-
/**
|
|
508
|
-
* Props for the FolderDrawerOpenAddBold icon component
|
|
509
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
510
|
-
*/
|
|
511
|
-
interface FolderDrawerOpenAddBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
512
|
-
size?: number | string;
|
|
513
|
-
}
|
|
514
|
-
/**
|
|
515
|
-
* FolderDrawerOpenAddBold icon component
|
|
516
|
-
* @example
|
|
517
|
-
* ```tsx
|
|
518
|
-
* import { FolderDrawerOpenAddBold } from 'magick-icons';
|
|
519
|
-
*
|
|
520
|
-
* <FolderDrawerOpenAddBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
521
|
-
* ```
|
|
522
|
-
*/
|
|
523
|
-
declare const FolderDrawerOpenAddBold: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenAddBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
524
|
-
|
|
525
363
|
/**
|
|
526
364
|
* Props for the FolderOpenBold icon component
|
|
527
365
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -540,24 +378,6 @@ interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
540
378
|
*/
|
|
541
379
|
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
380
|
|
|
543
|
-
/**
|
|
544
|
-
* Props for the GeneralMagicko icon component
|
|
545
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
546
|
-
*/
|
|
547
|
-
interface GeneralMagickoProps extends React.SVGProps<SVGSVGElement> {
|
|
548
|
-
size?: number | string;
|
|
549
|
-
}
|
|
550
|
-
/**
|
|
551
|
-
* GeneralMagicko icon component
|
|
552
|
-
* @example
|
|
553
|
-
* ```tsx
|
|
554
|
-
* import { GeneralMagicko } from 'magick-icons';
|
|
555
|
-
*
|
|
556
|
-
* <GeneralMagicko size={24} className="text-blue-500" strokeWidth={2} />
|
|
557
|
-
* ```
|
|
558
|
-
*/
|
|
559
|
-
declare const GeneralMagicko: React.ForwardRefExoticComponent<Omit<GeneralMagickoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
560
|
-
|
|
561
381
|
/**
|
|
562
382
|
* Props for the GripVertical icon component
|
|
563
383
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -594,24 +414,6 @@ interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
594
414
|
*/
|
|
595
415
|
declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
596
416
|
|
|
597
|
-
/**
|
|
598
|
-
* Props for the Hr icon component
|
|
599
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
600
|
-
*/
|
|
601
|
-
interface HrProps extends React.SVGProps<SVGSVGElement> {
|
|
602
|
-
size?: number | string;
|
|
603
|
-
}
|
|
604
|
-
/**
|
|
605
|
-
* Hr icon component
|
|
606
|
-
* @example
|
|
607
|
-
* ```tsx
|
|
608
|
-
* import { Hr } from 'magick-icons';
|
|
609
|
-
*
|
|
610
|
-
* <Hr size={24} className="text-blue-500" strokeWidth={2} />
|
|
611
|
-
* ```
|
|
612
|
-
*/
|
|
613
|
-
declare const Hr: React.ForwardRefExoticComponent<Omit<HrProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
614
|
-
|
|
615
417
|
/**
|
|
616
418
|
* Props for the HrSystem icon component
|
|
617
419
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -630,24 +432,6 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
630
432
|
*/
|
|
631
433
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
434
|
|
|
633
|
-
/**
|
|
634
|
-
* Props for the IconsaxAiScienceBold icon component
|
|
635
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
636
|
-
*/
|
|
637
|
-
interface IconsaxAiScienceBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
638
|
-
size?: number | string;
|
|
639
|
-
}
|
|
640
|
-
/**
|
|
641
|
-
* IconsaxAiScienceBold icon component
|
|
642
|
-
* @example
|
|
643
|
-
* ```tsx
|
|
644
|
-
* import { IconsaxAiScienceBold } from 'magick-icons';
|
|
645
|
-
*
|
|
646
|
-
* <IconsaxAiScienceBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
647
|
-
* ```
|
|
648
|
-
*/
|
|
649
|
-
declare const IconsaxAiScienceBold: React.ForwardRefExoticComponent<Omit<IconsaxAiScienceBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
650
|
-
|
|
651
435
|
/**
|
|
652
436
|
* Props for the IconsaxAttachCircleBold icon component
|
|
653
437
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -666,42 +450,6 @@ interface IconsaxAttachCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
666
450
|
*/
|
|
667
451
|
declare const IconsaxAttachCircleBold: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
668
452
|
|
|
669
|
-
/**
|
|
670
|
-
* Props for the IconsaxBrainBold icon component
|
|
671
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
672
|
-
*/
|
|
673
|
-
interface IconsaxBrainBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
674
|
-
size?: number | string;
|
|
675
|
-
}
|
|
676
|
-
/**
|
|
677
|
-
* IconsaxBrainBold icon component
|
|
678
|
-
* @example
|
|
679
|
-
* ```tsx
|
|
680
|
-
* import { IconsaxBrainBold } from 'magick-icons';
|
|
681
|
-
*
|
|
682
|
-
* <IconsaxBrainBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
683
|
-
* ```
|
|
684
|
-
*/
|
|
685
|
-
declare const IconsaxBrainBold: React.ForwardRefExoticComponent<Omit<IconsaxBrainBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
|
-
|
|
687
|
-
/**
|
|
688
|
-
* Props for the IconsaxMonetizeBold icon component
|
|
689
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
690
|
-
*/
|
|
691
|
-
interface IconsaxMonetizeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
692
|
-
size?: number | string;
|
|
693
|
-
}
|
|
694
|
-
/**
|
|
695
|
-
* IconsaxMonetizeBold icon component
|
|
696
|
-
* @example
|
|
697
|
-
* ```tsx
|
|
698
|
-
* import { IconsaxMonetizeBold } from 'magick-icons';
|
|
699
|
-
*
|
|
700
|
-
* <IconsaxMonetizeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
701
|
-
* ```
|
|
702
|
-
*/
|
|
703
|
-
declare const IconsaxMonetizeBold: React.ForwardRefExoticComponent<Omit<IconsaxMonetizeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
704
|
-
|
|
705
453
|
/**
|
|
706
454
|
* Props for the IconsaxPenBrushBold icon component
|
|
707
455
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -721,94 +469,94 @@ interface IconsaxPenBrushBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
721
469
|
declare const IconsaxPenBrushBold: React.ForwardRefExoticComponent<Omit<IconsaxPenBrushBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
722
470
|
|
|
723
471
|
/**
|
|
724
|
-
* Props for the
|
|
472
|
+
* Props for the IconsaxVideoCameraBold icon component
|
|
725
473
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
726
474
|
*/
|
|
727
|
-
interface
|
|
475
|
+
interface IconsaxVideoCameraBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
728
476
|
size?: number | string;
|
|
729
477
|
}
|
|
730
478
|
/**
|
|
731
|
-
*
|
|
479
|
+
* IconsaxVideoCameraBold icon component
|
|
732
480
|
* @example
|
|
733
481
|
* ```tsx
|
|
734
|
-
* import {
|
|
482
|
+
* import { IconsaxVideoCameraBold } from 'magick-icons';
|
|
735
483
|
*
|
|
736
|
-
* <
|
|
484
|
+
* <IconsaxVideoCameraBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
737
485
|
* ```
|
|
738
486
|
*/
|
|
739
|
-
declare const
|
|
487
|
+
declare const IconsaxVideoCameraBold: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
740
488
|
|
|
741
489
|
/**
|
|
742
|
-
* Props for the
|
|
490
|
+
* Props for the IconsaxWord icon component
|
|
743
491
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
744
492
|
*/
|
|
745
|
-
interface
|
|
493
|
+
interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
746
494
|
size?: number | string;
|
|
747
495
|
}
|
|
748
496
|
/**
|
|
749
|
-
*
|
|
497
|
+
* IconsaxWord icon component
|
|
750
498
|
* @example
|
|
751
499
|
* ```tsx
|
|
752
|
-
* import {
|
|
500
|
+
* import { IconsaxWord } from 'magick-icons';
|
|
753
501
|
*
|
|
754
|
-
* <
|
|
502
|
+
* <IconsaxWord size={24} className="text-blue-500" strokeWidth={2} />
|
|
755
503
|
* ```
|
|
756
504
|
*/
|
|
757
|
-
declare const
|
|
505
|
+
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
758
506
|
|
|
759
507
|
/**
|
|
760
|
-
* Props for the
|
|
508
|
+
* Props for the InfoCircleBold icon component
|
|
761
509
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
762
510
|
*/
|
|
763
|
-
interface
|
|
511
|
+
interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
764
512
|
size?: number | string;
|
|
765
513
|
}
|
|
766
514
|
/**
|
|
767
|
-
*
|
|
515
|
+
* InfoCircleBold icon component
|
|
768
516
|
* @example
|
|
769
517
|
* ```tsx
|
|
770
|
-
* import {
|
|
518
|
+
* import { InfoCircleBold } from 'magick-icons';
|
|
771
519
|
*
|
|
772
|
-
* <
|
|
520
|
+
* <InfoCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
773
521
|
* ```
|
|
774
522
|
*/
|
|
775
|
-
declare const
|
|
523
|
+
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
776
524
|
|
|
777
525
|
/**
|
|
778
|
-
* Props for the
|
|
526
|
+
* Props for the Legal icon component
|
|
779
527
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
780
528
|
*/
|
|
781
|
-
interface
|
|
529
|
+
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
782
530
|
size?: number | string;
|
|
783
531
|
}
|
|
784
532
|
/**
|
|
785
|
-
*
|
|
533
|
+
* Legal icon component
|
|
786
534
|
* @example
|
|
787
535
|
* ```tsx
|
|
788
|
-
* import {
|
|
536
|
+
* import { Legal } from 'magick-icons';
|
|
789
537
|
*
|
|
790
|
-
* <
|
|
538
|
+
* <Legal size={24} className="text-blue-500" strokeWidth={2} />
|
|
791
539
|
* ```
|
|
792
540
|
*/
|
|
793
|
-
declare const
|
|
541
|
+
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
794
542
|
|
|
795
543
|
/**
|
|
796
|
-
* Props for the
|
|
544
|
+
* Props for the LikeBold icon component
|
|
797
545
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
546
|
*/
|
|
799
|
-
interface
|
|
547
|
+
interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
800
548
|
size?: number | string;
|
|
801
549
|
}
|
|
802
550
|
/**
|
|
803
|
-
*
|
|
551
|
+
* LikeBold icon component
|
|
804
552
|
* @example
|
|
805
553
|
* ```tsx
|
|
806
|
-
* import {
|
|
554
|
+
* import { LikeBold } from 'magick-icons';
|
|
807
555
|
*
|
|
808
|
-
* <
|
|
556
|
+
* <LikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
557
|
* ```
|
|
810
558
|
*/
|
|
811
|
-
declare const
|
|
559
|
+
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
560
|
|
|
813
561
|
/**
|
|
814
562
|
* Props for the Line icon component
|
|
@@ -828,6 +576,24 @@ interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
|
828
576
|
*/
|
|
829
577
|
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
578
|
|
|
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
|
+
|
|
831
597
|
/**
|
|
832
598
|
* Props for the List icon component
|
|
833
599
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -900,6 +666,24 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
900
666
|
*/
|
|
901
667
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
668
|
|
|
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
|
+
|
|
903
687
|
/**
|
|
904
688
|
* Props for the MagickoCheck icon component
|
|
905
689
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -919,76 +703,76 @@ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
|
919
703
|
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
704
|
|
|
921
705
|
/**
|
|
922
|
-
* Props for the
|
|
706
|
+
* Props for the Marketing icon component
|
|
923
707
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
708
|
*/
|
|
925
|
-
interface
|
|
709
|
+
interface MarketingProps extends React.SVGProps<SVGSVGElement> {
|
|
926
710
|
size?: number | string;
|
|
927
711
|
}
|
|
928
712
|
/**
|
|
929
|
-
*
|
|
713
|
+
* Marketing icon component
|
|
930
714
|
* @example
|
|
931
715
|
* ```tsx
|
|
932
|
-
* import {
|
|
716
|
+
* import { Marketing } from 'magick-icons';
|
|
933
717
|
*
|
|
934
|
-
* <
|
|
718
|
+
* <Marketing size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
719
|
* ```
|
|
936
720
|
*/
|
|
937
|
-
declare const
|
|
721
|
+
declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
722
|
|
|
939
723
|
/**
|
|
940
|
-
* Props for the
|
|
724
|
+
* Props for the MessageEdit icon component
|
|
941
725
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
942
726
|
*/
|
|
943
|
-
interface
|
|
727
|
+
interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
944
728
|
size?: number | string;
|
|
945
729
|
}
|
|
946
730
|
/**
|
|
947
|
-
*
|
|
731
|
+
* MessageEdit icon component
|
|
948
732
|
* @example
|
|
949
733
|
* ```tsx
|
|
950
|
-
* import {
|
|
734
|
+
* import { MessageEdit } from 'magick-icons';
|
|
951
735
|
*
|
|
952
|
-
* <
|
|
736
|
+
* <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
953
737
|
* ```
|
|
954
738
|
*/
|
|
955
|
-
declare const
|
|
739
|
+
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
956
740
|
|
|
957
741
|
/**
|
|
958
|
-
* Props for the
|
|
742
|
+
* Props for the Network icon component
|
|
959
743
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
960
744
|
*/
|
|
961
|
-
interface
|
|
745
|
+
interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
962
746
|
size?: number | string;
|
|
963
747
|
}
|
|
964
748
|
/**
|
|
965
|
-
*
|
|
749
|
+
* Network icon component
|
|
966
750
|
* @example
|
|
967
751
|
* ```tsx
|
|
968
|
-
* import {
|
|
752
|
+
* import { Network } from 'magick-icons';
|
|
969
753
|
*
|
|
970
|
-
* <
|
|
754
|
+
* <Network size={24} className="text-blue-500" strokeWidth={2} />
|
|
971
755
|
* ```
|
|
972
756
|
*/
|
|
973
|
-
declare const
|
|
757
|
+
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
974
758
|
|
|
975
759
|
/**
|
|
976
|
-
* Props for the
|
|
760
|
+
* Props for the PA icon component
|
|
977
761
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
978
762
|
*/
|
|
979
|
-
interface
|
|
763
|
+
interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
980
764
|
size?: number | string;
|
|
981
765
|
}
|
|
982
766
|
/**
|
|
983
|
-
*
|
|
767
|
+
* PA icon component
|
|
984
768
|
* @example
|
|
985
769
|
* ```tsx
|
|
986
|
-
* import {
|
|
770
|
+
* import { PA } from 'magick-icons';
|
|
987
771
|
*
|
|
988
|
-
* <
|
|
772
|
+
* <PA size={24} className="text-blue-500" strokeWidth={2} />
|
|
989
773
|
* ```
|
|
990
774
|
*/
|
|
991
|
-
declare const
|
|
775
|
+
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
992
776
|
|
|
993
777
|
/**
|
|
994
778
|
* Props for the Signature icon component
|
|
@@ -1009,22 +793,22 @@ interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1009
793
|
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
794
|
|
|
1011
795
|
/**
|
|
1012
|
-
* Props for the
|
|
796
|
+
* Props for the SquarePen1 icon component
|
|
1013
797
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1014
798
|
*/
|
|
1015
|
-
interface
|
|
799
|
+
interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
1016
800
|
size?: number | string;
|
|
1017
801
|
}
|
|
1018
802
|
/**
|
|
1019
|
-
*
|
|
803
|
+
* SquarePen1 icon component
|
|
1020
804
|
* @example
|
|
1021
805
|
* ```tsx
|
|
1022
|
-
* import {
|
|
806
|
+
* import { SquarePen1 } from 'magick-icons';
|
|
1023
807
|
*
|
|
1024
|
-
* <
|
|
808
|
+
* <SquarePen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1025
809
|
* ```
|
|
1026
810
|
*/
|
|
1027
|
-
declare const
|
|
811
|
+
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
812
|
|
|
1029
813
|
/**
|
|
1030
814
|
* Props for the Strikethrough icon component
|
|
@@ -1044,6 +828,24 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1044
828
|
*/
|
|
1045
829
|
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1046
830
|
|
|
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
|
+
|
|
1047
849
|
/**
|
|
1048
850
|
* Props for the X icon component
|
|
1049
851
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1062,4 +864,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1062
864
|
*/
|
|
1063
865
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
866
|
|
|
1065
|
-
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 };
|