magick-icons 0.1.147 → 0.1.149
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 +301 -139
- package/index.d.ts +301 -139
- package/index.js +507 -363
- package/index.js.map +1 -1
- package/index.mjs +534 -399
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -18,6 +18,24 @@ interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18
18
|
*/
|
|
19
19
|
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
20
|
|
|
21
|
+
/**
|
|
22
|
+
* Props for the AiIcon1 icon component
|
|
23
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
+
*/
|
|
25
|
+
interface AiIcon1Props extends React.SVGProps<SVGSVGElement> {
|
|
26
|
+
size?: number | string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* AiIcon1 icon component
|
|
30
|
+
* @example
|
|
31
|
+
* ```tsx
|
|
32
|
+
* import { AiIcon1 } from 'magick-icons';
|
|
33
|
+
*
|
|
34
|
+
* <AiIcon1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
declare const AiIcon1: React.ForwardRefExoticComponent<Omit<AiIcon1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
|
|
21
39
|
/**
|
|
22
40
|
* Props for the ArchiveBold icon component
|
|
23
41
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -108,6 +126,24 @@ interface BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
|
108
126
|
*/
|
|
109
127
|
declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
128
|
|
|
129
|
+
/**
|
|
130
|
+
* Props for the BookmarkFilled1 icon component
|
|
131
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
132
|
+
*/
|
|
133
|
+
interface BookmarkFilled1Props extends React.SVGProps<SVGSVGElement> {
|
|
134
|
+
size?: number | string;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* BookmarkFilled1 icon component
|
|
138
|
+
* @example
|
|
139
|
+
* ```tsx
|
|
140
|
+
* import { BookmarkFilled1 } from 'magick-icons';
|
|
141
|
+
*
|
|
142
|
+
* <BookmarkFilled1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
143
|
+
* ```
|
|
144
|
+
*/
|
|
145
|
+
declare const BookmarkFilled1: React.ForwardRefExoticComponent<Omit<BookmarkFilled1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
|
+
|
|
111
147
|
/**
|
|
112
148
|
* Props for the Calendar icon component
|
|
113
149
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -144,6 +180,24 @@ interface ChatFullScreenProps extends React.SVGProps<SVGSVGElement> {
|
|
|
144
180
|
*/
|
|
145
181
|
declare const ChatFullScreen: React.ForwardRefExoticComponent<Omit<ChatFullScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
182
|
|
|
183
|
+
/**
|
|
184
|
+
* Props for the ChatFullScreen1 icon component
|
|
185
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
186
|
+
*/
|
|
187
|
+
interface ChatFullScreen1Props extends React.SVGProps<SVGSVGElement> {
|
|
188
|
+
size?: number | string;
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* ChatFullScreen1 icon component
|
|
192
|
+
* @example
|
|
193
|
+
* ```tsx
|
|
194
|
+
* import { ChatFullScreen1 } from 'magick-icons';
|
|
195
|
+
*
|
|
196
|
+
* <ChatFullScreen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
197
|
+
* ```
|
|
198
|
+
*/
|
|
199
|
+
declare const ChatFullScreen1: React.ForwardRefExoticComponent<Omit<ChatFullScreen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
|
+
|
|
147
201
|
/**
|
|
148
202
|
* Props for the ChatMaximize icon component
|
|
149
203
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -162,6 +216,24 @@ interface ChatMaximizeProps extends React.SVGProps<SVGSVGElement> {
|
|
|
162
216
|
*/
|
|
163
217
|
declare const ChatMaximize: React.ForwardRefExoticComponent<Omit<ChatMaximizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
218
|
|
|
219
|
+
/**
|
|
220
|
+
* Props for the ChatMaximize1 icon component
|
|
221
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
222
|
+
*/
|
|
223
|
+
interface ChatMaximize1Props extends React.SVGProps<SVGSVGElement> {
|
|
224
|
+
size?: number | string;
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* ChatMaximize1 icon component
|
|
228
|
+
* @example
|
|
229
|
+
* ```tsx
|
|
230
|
+
* import { ChatMaximize1 } from 'magick-icons';
|
|
231
|
+
*
|
|
232
|
+
* <ChatMaximize1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
233
|
+
* ```
|
|
234
|
+
*/
|
|
235
|
+
declare const ChatMaximize1: React.ForwardRefExoticComponent<Omit<ChatMaximize1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
236
|
+
|
|
165
237
|
/**
|
|
166
238
|
* Props for the ChatMinimize icon component
|
|
167
239
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -180,6 +252,24 @@ interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
|
|
|
180
252
|
*/
|
|
181
253
|
declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
254
|
|
|
255
|
+
/**
|
|
256
|
+
* Props for the ChatMinimize1 icon component
|
|
257
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
+
*/
|
|
259
|
+
interface ChatMinimize1Props extends React.SVGProps<SVGSVGElement> {
|
|
260
|
+
size?: number | string;
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* ChatMinimize1 icon component
|
|
264
|
+
* @example
|
|
265
|
+
* ```tsx
|
|
266
|
+
* import { ChatMinimize1 } from 'magick-icons';
|
|
267
|
+
*
|
|
268
|
+
* <ChatMinimize1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
269
|
+
* ```
|
|
270
|
+
*/
|
|
271
|
+
declare const ChatMinimize1: React.ForwardRefExoticComponent<Omit<ChatMinimize1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
|
+
|
|
183
273
|
/**
|
|
184
274
|
* Props for the ChevronDown icon component
|
|
185
275
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -342,6 +432,24 @@ interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
|
342
432
|
*/
|
|
343
433
|
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
434
|
|
|
435
|
+
/**
|
|
436
|
+
* Props for the Doc1 icon component
|
|
437
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
438
|
+
*/
|
|
439
|
+
interface Doc1Props extends React.SVGProps<SVGSVGElement> {
|
|
440
|
+
size?: number | string;
|
|
441
|
+
}
|
|
442
|
+
/**
|
|
443
|
+
* Doc1 icon component
|
|
444
|
+
* @example
|
|
445
|
+
* ```tsx
|
|
446
|
+
* import { Doc1 } from 'magick-icons';
|
|
447
|
+
*
|
|
448
|
+
* <Doc1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
449
|
+
* ```
|
|
450
|
+
*/
|
|
451
|
+
declare const Doc1: React.ForwardRefExoticComponent<Omit<Doc1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
452
|
+
|
|
345
453
|
/**
|
|
346
454
|
* Props for the DocumentTextBold icon component
|
|
347
455
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -414,6 +522,24 @@ interface ExcelProps extends React.SVGProps<SVGSVGElement> {
|
|
|
414
522
|
*/
|
|
415
523
|
declare const Excel: React.ForwardRefExoticComponent<Omit<ExcelProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
416
524
|
|
|
525
|
+
/**
|
|
526
|
+
* Props for the Excel1 icon component
|
|
527
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
528
|
+
*/
|
|
529
|
+
interface Excel1Props extends React.SVGProps<SVGSVGElement> {
|
|
530
|
+
size?: number | string;
|
|
531
|
+
}
|
|
532
|
+
/**
|
|
533
|
+
* Excel1 icon component
|
|
534
|
+
* @example
|
|
535
|
+
* ```tsx
|
|
536
|
+
* import { Excel1 } from 'magick-icons';
|
|
537
|
+
*
|
|
538
|
+
* <Excel1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
539
|
+
* ```
|
|
540
|
+
*/
|
|
541
|
+
declare const Excel1: React.ForwardRefExoticComponent<Omit<Excel1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
|
+
|
|
417
543
|
/**
|
|
418
544
|
* Props for the File icon component
|
|
419
545
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -432,6 +558,24 @@ interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
|
432
558
|
*/
|
|
433
559
|
declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
560
|
|
|
561
|
+
/**
|
|
562
|
+
* Props for the File1 icon component
|
|
563
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
564
|
+
*/
|
|
565
|
+
interface File1Props extends React.SVGProps<SVGSVGElement> {
|
|
566
|
+
size?: number | string;
|
|
567
|
+
}
|
|
568
|
+
/**
|
|
569
|
+
* File1 icon component
|
|
570
|
+
* @example
|
|
571
|
+
* ```tsx
|
|
572
|
+
* import { File1 } from 'magick-icons';
|
|
573
|
+
*
|
|
574
|
+
* <File1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
575
|
+
* ```
|
|
576
|
+
*/
|
|
577
|
+
declare const File1: React.ForwardRefExoticComponent<Omit<File1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
578
|
+
|
|
435
579
|
/**
|
|
436
580
|
* Props for the Finance icon component
|
|
437
581
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -522,6 +666,24 @@ interface FolderDrawerOpenAddBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
522
666
|
*/
|
|
523
667
|
declare const FolderDrawerOpenAddBold: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenAddBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
524
668
|
|
|
669
|
+
/**
|
|
670
|
+
* Props for the FolderDrawerOpenAddBold1 icon component
|
|
671
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
672
|
+
*/
|
|
673
|
+
interface FolderDrawerOpenAddBold1Props extends React.SVGProps<SVGSVGElement> {
|
|
674
|
+
size?: number | string;
|
|
675
|
+
}
|
|
676
|
+
/**
|
|
677
|
+
* FolderDrawerOpenAddBold1 icon component
|
|
678
|
+
* @example
|
|
679
|
+
* ```tsx
|
|
680
|
+
* import { FolderDrawerOpenAddBold1 } from 'magick-icons';
|
|
681
|
+
*
|
|
682
|
+
* <FolderDrawerOpenAddBold1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
683
|
+
* ```
|
|
684
|
+
*/
|
|
685
|
+
declare const FolderDrawerOpenAddBold1: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenAddBold1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
|
+
|
|
525
687
|
/**
|
|
526
688
|
* Props for the FolderOpenBold icon component
|
|
527
689
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -558,6 +720,24 @@ interface GeneralMagickoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
558
720
|
*/
|
|
559
721
|
declare const GeneralMagicko: React.ForwardRefExoticComponent<Omit<GeneralMagickoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
560
722
|
|
|
723
|
+
/**
|
|
724
|
+
* Props for the GeneralMagicko1 icon component
|
|
725
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
726
|
+
*/
|
|
727
|
+
interface GeneralMagicko1Props extends React.SVGProps<SVGSVGElement> {
|
|
728
|
+
size?: number | string;
|
|
729
|
+
}
|
|
730
|
+
/**
|
|
731
|
+
* GeneralMagicko1 icon component
|
|
732
|
+
* @example
|
|
733
|
+
* ```tsx
|
|
734
|
+
* import { GeneralMagicko1 } from 'magick-icons';
|
|
735
|
+
*
|
|
736
|
+
* <GeneralMagicko1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
737
|
+
* ```
|
|
738
|
+
*/
|
|
739
|
+
declare const GeneralMagicko1: React.ForwardRefExoticComponent<Omit<GeneralMagicko1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
740
|
+
|
|
561
741
|
/**
|
|
562
742
|
* Props for the GripVertical icon component
|
|
563
743
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -613,40 +793,40 @@ interface HrProps extends React.SVGProps<SVGSVGElement> {
|
|
|
613
793
|
declare const Hr: React.ForwardRefExoticComponent<Omit<HrProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
614
794
|
|
|
615
795
|
/**
|
|
616
|
-
* Props for the
|
|
796
|
+
* Props for the Hr1 icon component
|
|
617
797
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
618
798
|
*/
|
|
619
|
-
interface
|
|
799
|
+
interface Hr1Props extends React.SVGProps<SVGSVGElement> {
|
|
620
800
|
size?: number | string;
|
|
621
801
|
}
|
|
622
802
|
/**
|
|
623
|
-
*
|
|
803
|
+
* Hr1 icon component
|
|
624
804
|
* @example
|
|
625
805
|
* ```tsx
|
|
626
|
-
* import {
|
|
806
|
+
* import { Hr1 } from 'magick-icons';
|
|
627
807
|
*
|
|
628
|
-
* <
|
|
808
|
+
* <Hr1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
629
809
|
* ```
|
|
630
810
|
*/
|
|
631
|
-
declare const
|
|
811
|
+
declare const Hr1: React.ForwardRefExoticComponent<Omit<Hr1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
812
|
|
|
633
813
|
/**
|
|
634
|
-
* Props for the
|
|
814
|
+
* Props for the HrSystem icon component
|
|
635
815
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
636
816
|
*/
|
|
637
|
-
interface
|
|
817
|
+
interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
638
818
|
size?: number | string;
|
|
639
819
|
}
|
|
640
820
|
/**
|
|
641
|
-
*
|
|
821
|
+
* HrSystem icon component
|
|
642
822
|
* @example
|
|
643
823
|
* ```tsx
|
|
644
|
-
* import {
|
|
824
|
+
* import { HrSystem } from 'magick-icons';
|
|
645
825
|
*
|
|
646
|
-
* <
|
|
826
|
+
* <HrSystem size={24} className="text-blue-500" strokeWidth={2} />
|
|
647
827
|
* ```
|
|
648
828
|
*/
|
|
649
|
-
declare const
|
|
829
|
+
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
650
830
|
|
|
651
831
|
/**
|
|
652
832
|
* Props for the IconsaxAttachCircleBold icon component
|
|
@@ -666,42 +846,6 @@ interface IconsaxAttachCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
666
846
|
*/
|
|
667
847
|
declare const IconsaxAttachCircleBold: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
668
848
|
|
|
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
849
|
/**
|
|
706
850
|
* Props for the IconsaxPenBrushBold icon component
|
|
707
851
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -720,42 +864,6 @@ interface IconsaxPenBrushBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
720
864
|
*/
|
|
721
865
|
declare const IconsaxPenBrushBold: React.ForwardRefExoticComponent<Omit<IconsaxPenBrushBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
722
866
|
|
|
723
|
-
/**
|
|
724
|
-
* Props for the IconsaxPeopleBold icon component
|
|
725
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
726
|
-
*/
|
|
727
|
-
interface IconsaxPeopleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
728
|
-
size?: number | string;
|
|
729
|
-
}
|
|
730
|
-
/**
|
|
731
|
-
* IconsaxPeopleBold icon component
|
|
732
|
-
* @example
|
|
733
|
-
* ```tsx
|
|
734
|
-
* import { IconsaxPeopleBold } from 'magick-icons';
|
|
735
|
-
*
|
|
736
|
-
* <IconsaxPeopleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
737
|
-
* ```
|
|
738
|
-
*/
|
|
739
|
-
declare const IconsaxPeopleBold: React.ForwardRefExoticComponent<Omit<IconsaxPeopleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
740
|
-
|
|
741
|
-
/**
|
|
742
|
-
* Props for the IconsaxTaskSquareBold icon component
|
|
743
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
744
|
-
*/
|
|
745
|
-
interface IconsaxTaskSquareBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
746
|
-
size?: number | string;
|
|
747
|
-
}
|
|
748
|
-
/**
|
|
749
|
-
* IconsaxTaskSquareBold icon component
|
|
750
|
-
* @example
|
|
751
|
-
* ```tsx
|
|
752
|
-
* import { IconsaxTaskSquareBold } from 'magick-icons';
|
|
753
|
-
*
|
|
754
|
-
* <IconsaxTaskSquareBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
755
|
-
* ```
|
|
756
|
-
*/
|
|
757
|
-
declare const IconsaxTaskSquareBold: React.ForwardRefExoticComponent<Omit<IconsaxTaskSquareBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
758
|
-
|
|
759
867
|
/**
|
|
760
868
|
* Props for the IconsaxVideoCameraBold icon component
|
|
761
869
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -810,6 +918,24 @@ interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
|
810
918
|
*/
|
|
811
919
|
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
920
|
|
|
921
|
+
/**
|
|
922
|
+
* Props for the InProgress1 icon component
|
|
923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
|
+
*/
|
|
925
|
+
interface InProgress1Props extends React.SVGProps<SVGSVGElement> {
|
|
926
|
+
size?: number | string;
|
|
927
|
+
}
|
|
928
|
+
/**
|
|
929
|
+
* InProgress1 icon component
|
|
930
|
+
* @example
|
|
931
|
+
* ```tsx
|
|
932
|
+
* import { InProgress1 } from 'magick-icons';
|
|
933
|
+
*
|
|
934
|
+
* <InProgress1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
|
+
* ```
|
|
936
|
+
*/
|
|
937
|
+
declare const InProgress1: React.ForwardRefExoticComponent<Omit<InProgress1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
|
+
|
|
813
939
|
/**
|
|
814
940
|
* Props for the InfoCircleBold icon component
|
|
815
941
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -972,24 +1098,6 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
972
1098
|
*/
|
|
973
1099
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
974
1100
|
|
|
975
|
-
/**
|
|
976
|
-
* Props for the Lock icon component
|
|
977
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
978
|
-
*/
|
|
979
|
-
interface LockProps extends React.SVGProps<SVGSVGElement> {
|
|
980
|
-
size?: number | string;
|
|
981
|
-
}
|
|
982
|
-
/**
|
|
983
|
-
* Lock icon component
|
|
984
|
-
* @example
|
|
985
|
-
* ```tsx
|
|
986
|
-
* import { Lock } from 'magick-icons';
|
|
987
|
-
*
|
|
988
|
-
* <Lock size={24} className="text-blue-500" strokeWidth={2} />
|
|
989
|
-
* ```
|
|
990
|
-
*/
|
|
991
|
-
declare const Lock: React.ForwardRefExoticComponent<Omit<LockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
992
|
-
|
|
993
1101
|
/**
|
|
994
1102
|
* Props for the MagickPotion icon component
|
|
995
1103
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1098,6 +1206,24 @@ interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1098
1206
|
*/
|
|
1099
1207
|
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1100
1208
|
|
|
1209
|
+
/**
|
|
1210
|
+
* Props for the NotiDot1 icon component
|
|
1211
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1212
|
+
*/
|
|
1213
|
+
interface NotiDot1Props extends React.SVGProps<SVGSVGElement> {
|
|
1214
|
+
size?: number | string;
|
|
1215
|
+
}
|
|
1216
|
+
/**
|
|
1217
|
+
* NotiDot1 icon component
|
|
1218
|
+
* @example
|
|
1219
|
+
* ```tsx
|
|
1220
|
+
* import { NotiDot1 } from 'magick-icons';
|
|
1221
|
+
*
|
|
1222
|
+
* <NotiDot1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1223
|
+
* ```
|
|
1224
|
+
*/
|
|
1225
|
+
declare const NotiDot1: React.ForwardRefExoticComponent<Omit<NotiDot1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1226
|
+
|
|
1101
1227
|
/**
|
|
1102
1228
|
* Props for the PA icon component
|
|
1103
1229
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1134,6 +1260,24 @@ interface PauseSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1134
1260
|
*/
|
|
1135
1261
|
declare const PauseSquare: React.ForwardRefExoticComponent<Omit<PauseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1136
1262
|
|
|
1263
|
+
/**
|
|
1264
|
+
* Props for the PauseSquare1 icon component
|
|
1265
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1266
|
+
*/
|
|
1267
|
+
interface PauseSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
1268
|
+
size?: number | string;
|
|
1269
|
+
}
|
|
1270
|
+
/**
|
|
1271
|
+
* PauseSquare1 icon component
|
|
1272
|
+
* @example
|
|
1273
|
+
* ```tsx
|
|
1274
|
+
* import { PauseSquare1 } from 'magick-icons';
|
|
1275
|
+
*
|
|
1276
|
+
* <PauseSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1277
|
+
* ```
|
|
1278
|
+
*/
|
|
1279
|
+
declare const PauseSquare1: React.ForwardRefExoticComponent<Omit<PauseSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1280
|
+
|
|
1137
1281
|
/**
|
|
1138
1282
|
* Props for the Pdf icon component
|
|
1139
1283
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1152,6 +1296,24 @@ interface PdfProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1152
1296
|
*/
|
|
1153
1297
|
declare const Pdf: React.ForwardRefExoticComponent<Omit<PdfProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1154
1298
|
|
|
1299
|
+
/**
|
|
1300
|
+
* Props for the Pdf1 icon component
|
|
1301
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1302
|
+
*/
|
|
1303
|
+
interface Pdf1Props extends React.SVGProps<SVGSVGElement> {
|
|
1304
|
+
size?: number | string;
|
|
1305
|
+
}
|
|
1306
|
+
/**
|
|
1307
|
+
* Pdf1 icon component
|
|
1308
|
+
* @example
|
|
1309
|
+
* ```tsx
|
|
1310
|
+
* import { Pdf1 } from 'magick-icons';
|
|
1311
|
+
*
|
|
1312
|
+
* <Pdf1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1313
|
+
* ```
|
|
1314
|
+
*/
|
|
1315
|
+
declare const Pdf1: React.ForwardRefExoticComponent<Omit<Pdf1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1316
|
+
|
|
1155
1317
|
/**
|
|
1156
1318
|
* Props for the PlayFilled icon component
|
|
1157
1319
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1171,112 +1333,112 @@ interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1171
1333
|
declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1172
1334
|
|
|
1173
1335
|
/**
|
|
1174
|
-
* Props for the
|
|
1336
|
+
* Props for the PlayFilled1 icon component
|
|
1175
1337
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1176
1338
|
*/
|
|
1177
|
-
interface
|
|
1339
|
+
interface PlayFilled1Props extends React.SVGProps<SVGSVGElement> {
|
|
1178
1340
|
size?: number | string;
|
|
1179
1341
|
}
|
|
1180
1342
|
/**
|
|
1181
|
-
*
|
|
1343
|
+
* PlayFilled1 icon component
|
|
1182
1344
|
* @example
|
|
1183
1345
|
* ```tsx
|
|
1184
|
-
* import {
|
|
1346
|
+
* import { PlayFilled1 } from 'magick-icons';
|
|
1185
1347
|
*
|
|
1186
|
-
* <
|
|
1348
|
+
* <PlayFilled1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1187
1349
|
* ```
|
|
1188
1350
|
*/
|
|
1189
|
-
declare const
|
|
1351
|
+
declare const PlayFilled1: React.ForwardRefExoticComponent<Omit<PlayFilled1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1190
1352
|
|
|
1191
1353
|
/**
|
|
1192
|
-
* Props for the
|
|
1354
|
+
* Props for the Signature icon component
|
|
1193
1355
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1194
1356
|
*/
|
|
1195
|
-
interface
|
|
1357
|
+
interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
1196
1358
|
size?: number | string;
|
|
1197
1359
|
}
|
|
1198
1360
|
/**
|
|
1199
|
-
*
|
|
1361
|
+
* Signature icon component
|
|
1200
1362
|
* @example
|
|
1201
1363
|
* ```tsx
|
|
1202
|
-
* import {
|
|
1364
|
+
* import { Signature } from 'magick-icons';
|
|
1203
1365
|
*
|
|
1204
|
-
* <
|
|
1366
|
+
* <Signature size={24} className="text-blue-500" strokeWidth={2} />
|
|
1205
1367
|
* ```
|
|
1206
1368
|
*/
|
|
1207
|
-
declare const
|
|
1369
|
+
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1208
1370
|
|
|
1209
1371
|
/**
|
|
1210
|
-
* Props for the
|
|
1372
|
+
* Props for the SperateDot icon component
|
|
1211
1373
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1212
1374
|
*/
|
|
1213
|
-
interface
|
|
1375
|
+
interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
1214
1376
|
size?: number | string;
|
|
1215
1377
|
}
|
|
1216
1378
|
/**
|
|
1217
|
-
*
|
|
1379
|
+
* SperateDot icon component
|
|
1218
1380
|
* @example
|
|
1219
1381
|
* ```tsx
|
|
1220
|
-
* import {
|
|
1382
|
+
* import { SperateDot } from 'magick-icons';
|
|
1221
1383
|
*
|
|
1222
|
-
* <
|
|
1384
|
+
* <SperateDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
1223
1385
|
* ```
|
|
1224
1386
|
*/
|
|
1225
|
-
declare const
|
|
1387
|
+
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1226
1388
|
|
|
1227
1389
|
/**
|
|
1228
|
-
* Props for the
|
|
1390
|
+
* Props for the SperateDot1 icon component
|
|
1229
1391
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1230
1392
|
*/
|
|
1231
|
-
interface
|
|
1393
|
+
interface SperateDot1Props extends React.SVGProps<SVGSVGElement> {
|
|
1232
1394
|
size?: number | string;
|
|
1233
1395
|
}
|
|
1234
1396
|
/**
|
|
1235
|
-
*
|
|
1397
|
+
* SperateDot1 icon component
|
|
1236
1398
|
* @example
|
|
1237
1399
|
* ```tsx
|
|
1238
|
-
* import {
|
|
1400
|
+
* import { SperateDot1 } from 'magick-icons';
|
|
1239
1401
|
*
|
|
1240
|
-
* <
|
|
1402
|
+
* <SperateDot1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1241
1403
|
* ```
|
|
1242
1404
|
*/
|
|
1243
|
-
declare const
|
|
1405
|
+
declare const SperateDot1: React.ForwardRefExoticComponent<Omit<SperateDot1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1244
1406
|
|
|
1245
1407
|
/**
|
|
1246
|
-
* Props for the
|
|
1408
|
+
* Props for the SquarePen1 icon component
|
|
1247
1409
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1248
1410
|
*/
|
|
1249
|
-
interface
|
|
1411
|
+
interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
1250
1412
|
size?: number | string;
|
|
1251
1413
|
}
|
|
1252
1414
|
/**
|
|
1253
|
-
*
|
|
1415
|
+
* SquarePen1 icon component
|
|
1254
1416
|
* @example
|
|
1255
1417
|
* ```tsx
|
|
1256
|
-
* import {
|
|
1418
|
+
* import { SquarePen1 } from 'magick-icons';
|
|
1257
1419
|
*
|
|
1258
|
-
* <
|
|
1420
|
+
* <SquarePen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1259
1421
|
* ```
|
|
1260
1422
|
*/
|
|
1261
|
-
declare const
|
|
1423
|
+
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1262
1424
|
|
|
1263
1425
|
/**
|
|
1264
|
-
* Props for the
|
|
1426
|
+
* Props for the Strikethrough icon component
|
|
1265
1427
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1266
1428
|
*/
|
|
1267
|
-
interface
|
|
1429
|
+
interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
1268
1430
|
size?: number | string;
|
|
1269
1431
|
}
|
|
1270
1432
|
/**
|
|
1271
|
-
*
|
|
1433
|
+
* Strikethrough icon component
|
|
1272
1434
|
* @example
|
|
1273
1435
|
* ```tsx
|
|
1274
|
-
* import {
|
|
1436
|
+
* import { Strikethrough } from 'magick-icons';
|
|
1275
1437
|
*
|
|
1276
|
-
* <
|
|
1438
|
+
* <Strikethrough size={24} className="text-blue-500" strokeWidth={2} />
|
|
1277
1439
|
* ```
|
|
1278
1440
|
*/
|
|
1279
|
-
declare const
|
|
1441
|
+
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1280
1442
|
|
|
1281
1443
|
/**
|
|
1282
1444
|
* Props for the Video icon component
|
|
@@ -1314,4 +1476,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1314
1476
|
*/
|
|
1315
1477
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1316
1478
|
|
|
1317
|
-
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, BookmarkFilled, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type
|
|
1479
|
+
export { AiIcon, AiIcon1, type AiIcon1Props, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, BookmarkFilled, BookmarkFilled1, type BookmarkFilled1Props, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, ChatFullScreen1, type ChatFullScreen1Props, type ChatFullScreenProps, ChatMaximize, ChatMaximize1, type ChatMaximize1Props, type ChatMaximizeProps, ChatMinimize, ChatMinimize1, type ChatMinimize1Props, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, Doc, Doc1, type Doc1Props, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, Excel1, type Excel1Props, type ExcelProps, File, File1, type File1Props, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, FolderDrawerOpenAddBold1, type FolderDrawerOpenAddBold1Props, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, GeneralMagicko1, type GeneralMagicko1Props, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, Hr1, type Hr1Props, type HrProps, HrSystem, type HrSystemProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, InProgress1, type InProgress1Props, type InProgressProps, 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, NotiDot, NotiDot1, type NotiDot1Props, type NotiDotProps, PA, type PAProps, PauseSquare, PauseSquare1, type PauseSquare1Props, type PauseSquareProps, Pdf, Pdf1, type Pdf1Props, type PdfProps, PlayFilled, PlayFilled1, type PlayFilled1Props, type PlayFilledProps, Signature, type SignatureProps, SperateDot, SperateDot1, type SperateDot1Props, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Video, type VideoProps, X, type XProps };
|