magick-icons 0.1.169 → 0.1.171
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 +307 -1
- package/index.d.ts +307 -1
- package/index.js +1060 -366
- package/index.js.map +1 -1
- package/index.mjs +1044 -367
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1,5 +1,95 @@
|
|
|
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
|
+
|
|
3
93
|
/**
|
|
4
94
|
* Props for the AiIcon icon component
|
|
5
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18,6 +108,24 @@ interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18
108
|
*/
|
|
19
109
|
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
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
|
+
|
|
21
129
|
/**
|
|
22
130
|
* Props for the ArchiveBold icon component
|
|
23
131
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -90,6 +198,60 @@ interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
90
198
|
*/
|
|
91
199
|
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
200
|
|
|
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
|
+
|
|
93
255
|
/**
|
|
94
256
|
* Props for the BookmarkFilled icon component
|
|
95
257
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -540,6 +702,114 @@ interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
540
702
|
*/
|
|
541
703
|
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
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
|
+
|
|
543
813
|
/**
|
|
544
814
|
* Props for the GeneralMagicko icon component
|
|
545
815
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -630,6 +900,42 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
630
900
|
*/
|
|
631
901
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
902
|
|
|
903
|
+
/**
|
|
904
|
+
* Props for the Icon3dcube1 icon component
|
|
905
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
906
|
+
*/
|
|
907
|
+
interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
|
|
908
|
+
size?: number | string;
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* Icon3dcube1 icon component
|
|
912
|
+
* @example
|
|
913
|
+
* ```tsx
|
|
914
|
+
* import { Icon3dcube1 } from 'magick-icons';
|
|
915
|
+
*
|
|
916
|
+
* <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
917
|
+
* ```
|
|
918
|
+
*/
|
|
919
|
+
declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
|
+
|
|
921
|
+
/**
|
|
922
|
+
* Props for the Icon3square1 icon component
|
|
923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
|
+
*/
|
|
925
|
+
interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
|
|
926
|
+
size?: number | string;
|
|
927
|
+
}
|
|
928
|
+
/**
|
|
929
|
+
* Icon3square1 icon component
|
|
930
|
+
* @example
|
|
931
|
+
* ```tsx
|
|
932
|
+
* import { Icon3square1 } from 'magick-icons';
|
|
933
|
+
*
|
|
934
|
+
* <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
|
+
* ```
|
|
936
|
+
*/
|
|
937
|
+
declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
|
+
|
|
633
939
|
/**
|
|
634
940
|
* Props for the IconsaxAiScienceBold icon component
|
|
635
941
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1368,4 +1674,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1368
1674
|
*/
|
|
1369
1675
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1370
1676
|
|
|
1371
|
-
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 HrProps, HrSystem, type HrSystemProps, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, 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, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, MingcuteMicLine1, MingcuteMicLine11, type MingcuteMicLine11Props, MingcuteMicLine12, type MingcuteMicLine12Props, type MingcuteMicLine1Props, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|
|
1677
|
+
export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiIcon, type AiIconProps, AiScience1, type AiScience1Props, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, 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, Frame, Frame1000007191, type Frame1000007191Props, Frame1000007193, type Frame1000007193Props, Frame1000007194, type Frame1000007194Props, Frame1000007195, type Frame1000007195Props, Frame1000007196, type Frame1000007196Props, type FrameProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, 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, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, MingcuteMicLine1, MingcuteMicLine11, type MingcuteMicLine11Props, MingcuteMicLine12, type MingcuteMicLine12Props, type MingcuteMicLine1Props, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|