magick-icons 0.1.55 → 0.1.57
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 +995 -5
- package/index.d.ts +995 -5
- package/index.js +6773 -6077
- package/index.js.map +1 -1
- package/index.mjs +7228 -6587
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -108,6 +108,78 @@ interface AiScience1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
108
108
|
*/
|
|
109
109
|
declare const AiScience1: React.ForwardRefExoticComponent<Omit<AiScience1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
110
|
|
|
111
|
+
/**
|
|
112
|
+
* Props for the ArchiveBold icon component
|
|
113
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
114
|
+
*/
|
|
115
|
+
interface ArchiveBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
116
|
+
size?: number | string;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* ArchiveBold icon component
|
|
120
|
+
* @example
|
|
121
|
+
* ```tsx
|
|
122
|
+
* import { ArchiveBold } from 'magick-icons';
|
|
123
|
+
*
|
|
124
|
+
* <ArchiveBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
125
|
+
* ```
|
|
126
|
+
*/
|
|
127
|
+
declare const ArchiveBold: React.ForwardRefExoticComponent<Omit<ArchiveBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* Props for the ArrowDownBold icon component
|
|
131
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
132
|
+
*/
|
|
133
|
+
interface ArrowDownBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
134
|
+
size?: number | string;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* ArrowDownBold icon component
|
|
138
|
+
* @example
|
|
139
|
+
* ```tsx
|
|
140
|
+
* import { ArrowDownBold } from 'magick-icons';
|
|
141
|
+
*
|
|
142
|
+
* <ArrowDownBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
143
|
+
* ```
|
|
144
|
+
*/
|
|
145
|
+
declare const ArrowDownBold: React.ForwardRefExoticComponent<Omit<ArrowDownBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* Props for the ArrowRightBold icon component
|
|
149
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
150
|
+
*/
|
|
151
|
+
interface ArrowRightBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
152
|
+
size?: number | string;
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* ArrowRightBold icon component
|
|
156
|
+
* @example
|
|
157
|
+
* ```tsx
|
|
158
|
+
* import { ArrowRightBold } from 'magick-icons';
|
|
159
|
+
*
|
|
160
|
+
* <ArrowRightBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
161
|
+
* ```
|
|
162
|
+
*/
|
|
163
|
+
declare const ArrowRightBold: React.ForwardRefExoticComponent<Omit<ArrowRightBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Props for the ArrowUpBold icon component
|
|
167
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
168
|
+
*/
|
|
169
|
+
interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
170
|
+
size?: number | string;
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* ArrowUpBold icon component
|
|
174
|
+
* @example
|
|
175
|
+
* ```tsx
|
|
176
|
+
* import { ArrowUpBold } from 'magick-icons';
|
|
177
|
+
*
|
|
178
|
+
* <ArrowUpBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
179
|
+
* ```
|
|
180
|
+
*/
|
|
181
|
+
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
|
+
|
|
111
183
|
/**
|
|
112
184
|
* Props for the Autobrightness1 icon component
|
|
113
185
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -648,6 +720,24 @@ interface Cake1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
648
720
|
*/
|
|
649
721
|
declare const Cake1: React.ForwardRefExoticComponent<Omit<Cake1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
650
722
|
|
|
723
|
+
/**
|
|
724
|
+
* Props for the Calendar icon component
|
|
725
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
726
|
+
*/
|
|
727
|
+
interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
728
|
+
size?: number | string;
|
|
729
|
+
}
|
|
730
|
+
/**
|
|
731
|
+
* Calendar icon component
|
|
732
|
+
* @example
|
|
733
|
+
* ```tsx
|
|
734
|
+
* import { Calendar } from 'magick-icons';
|
|
735
|
+
*
|
|
736
|
+
* <Calendar size={24} className="text-blue-500" strokeWidth={2} />
|
|
737
|
+
* ```
|
|
738
|
+
*/
|
|
739
|
+
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
740
|
+
|
|
651
741
|
/**
|
|
652
742
|
* Props for the CardEdit1 icon component
|
|
653
743
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -882,6 +972,96 @@ interface Centralized1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
882
972
|
*/
|
|
883
973
|
declare const Centralized1: React.ForwardRefExoticComponent<Omit<Centralized1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
974
|
|
|
975
|
+
/**
|
|
976
|
+
* Props for the ChevronDown icon component
|
|
977
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
978
|
+
*/
|
|
979
|
+
interface ChevronDownProps extends React.SVGProps<SVGSVGElement> {
|
|
980
|
+
size?: number | string;
|
|
981
|
+
}
|
|
982
|
+
/**
|
|
983
|
+
* ChevronDown icon component
|
|
984
|
+
* @example
|
|
985
|
+
* ```tsx
|
|
986
|
+
* import { ChevronDown } from 'magick-icons';
|
|
987
|
+
*
|
|
988
|
+
* <ChevronDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
989
|
+
* ```
|
|
990
|
+
*/
|
|
991
|
+
declare const ChevronDown: React.ForwardRefExoticComponent<Omit<ChevronDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
992
|
+
|
|
993
|
+
/**
|
|
994
|
+
* Props for the ChevronLeft icon component
|
|
995
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
996
|
+
*/
|
|
997
|
+
interface ChevronLeftProps extends React.SVGProps<SVGSVGElement> {
|
|
998
|
+
size?: number | string;
|
|
999
|
+
}
|
|
1000
|
+
/**
|
|
1001
|
+
* ChevronLeft icon component
|
|
1002
|
+
* @example
|
|
1003
|
+
* ```tsx
|
|
1004
|
+
* import { ChevronLeft } from 'magick-icons';
|
|
1005
|
+
*
|
|
1006
|
+
* <ChevronLeft size={24} className="text-blue-500" strokeWidth={2} />
|
|
1007
|
+
* ```
|
|
1008
|
+
*/
|
|
1009
|
+
declare const ChevronLeft: React.ForwardRefExoticComponent<Omit<ChevronLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
|
+
|
|
1011
|
+
/**
|
|
1012
|
+
* Props for the ChevronRight icon component
|
|
1013
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1014
|
+
*/
|
|
1015
|
+
interface ChevronRightProps extends React.SVGProps<SVGSVGElement> {
|
|
1016
|
+
size?: number | string;
|
|
1017
|
+
}
|
|
1018
|
+
/**
|
|
1019
|
+
* ChevronRight icon component
|
|
1020
|
+
* @example
|
|
1021
|
+
* ```tsx
|
|
1022
|
+
* import { ChevronRight } from 'magick-icons';
|
|
1023
|
+
*
|
|
1024
|
+
* <ChevronRight size={24} className="text-blue-500" strokeWidth={2} />
|
|
1025
|
+
* ```
|
|
1026
|
+
*/
|
|
1027
|
+
declare const ChevronRight: React.ForwardRefExoticComponent<Omit<ChevronRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
|
+
|
|
1029
|
+
/**
|
|
1030
|
+
* Props for the ChevronUp icon component
|
|
1031
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1032
|
+
*/
|
|
1033
|
+
interface ChevronUpProps extends React.SVGProps<SVGSVGElement> {
|
|
1034
|
+
size?: number | string;
|
|
1035
|
+
}
|
|
1036
|
+
/**
|
|
1037
|
+
* ChevronUp icon component
|
|
1038
|
+
* @example
|
|
1039
|
+
* ```tsx
|
|
1040
|
+
* import { ChevronUp } from 'magick-icons';
|
|
1041
|
+
*
|
|
1042
|
+
* <ChevronUp size={24} className="text-blue-500" strokeWidth={2} />
|
|
1043
|
+
* ```
|
|
1044
|
+
*/
|
|
1045
|
+
declare const ChevronUp: React.ForwardRefExoticComponent<Omit<ChevronUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1046
|
+
|
|
1047
|
+
/**
|
|
1048
|
+
* Props for the ChevronsUpDown icon component
|
|
1049
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1050
|
+
*/
|
|
1051
|
+
interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
|
|
1052
|
+
size?: number | string;
|
|
1053
|
+
}
|
|
1054
|
+
/**
|
|
1055
|
+
* ChevronsUpDown icon component
|
|
1056
|
+
* @example
|
|
1057
|
+
* ```tsx
|
|
1058
|
+
* import { ChevronsUpDown } from 'magick-icons';
|
|
1059
|
+
*
|
|
1060
|
+
* <ChevronsUpDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
1061
|
+
* ```
|
|
1062
|
+
*/
|
|
1063
|
+
declare const ChevronsUpDown: React.ForwardRefExoticComponent<Omit<ChevronsUpDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
|
+
|
|
885
1065
|
/**
|
|
886
1066
|
* Props for the Chrome1 icon component
|
|
887
1067
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -918,6 +1098,42 @@ interface Chrome11Props extends React.SVGProps<SVGSVGElement> {
|
|
|
918
1098
|
*/
|
|
919
1099
|
declare const Chrome11: React.ForwardRefExoticComponent<Omit<Chrome11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
1100
|
|
|
1101
|
+
/**
|
|
1102
|
+
* Props for the CircleCheckFill icon component
|
|
1103
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1104
|
+
*/
|
|
1105
|
+
interface CircleCheckFillProps extends React.SVGProps<SVGSVGElement> {
|
|
1106
|
+
size?: number | string;
|
|
1107
|
+
}
|
|
1108
|
+
/**
|
|
1109
|
+
* CircleCheckFill icon component
|
|
1110
|
+
* @example
|
|
1111
|
+
* ```tsx
|
|
1112
|
+
* import { CircleCheckFill } from 'magick-icons';
|
|
1113
|
+
*
|
|
1114
|
+
* <CircleCheckFill size={24} className="text-blue-500" strokeWidth={2} />
|
|
1115
|
+
* ```
|
|
1116
|
+
*/
|
|
1117
|
+
declare const CircleCheckFill: React.ForwardRefExoticComponent<Omit<CircleCheckFillProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1118
|
+
|
|
1119
|
+
/**
|
|
1120
|
+
* Props for the CloseCircle1 icon component
|
|
1121
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1122
|
+
*/
|
|
1123
|
+
interface CloseCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
1124
|
+
size?: number | string;
|
|
1125
|
+
}
|
|
1126
|
+
/**
|
|
1127
|
+
* CloseCircle1 icon component
|
|
1128
|
+
* @example
|
|
1129
|
+
* ```tsx
|
|
1130
|
+
* import { CloseCircle1 } from 'magick-icons';
|
|
1131
|
+
*
|
|
1132
|
+
* <CloseCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1133
|
+
* ```
|
|
1134
|
+
*/
|
|
1135
|
+
declare const CloseCircle1: React.ForwardRefExoticComponent<Omit<CloseCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1136
|
+
|
|
921
1137
|
/**
|
|
922
1138
|
* Props for the Coffee1 icon component
|
|
923
1139
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1404,6 +1620,60 @@ interface Discover11Props extends React.SVGProps<SVGSVGElement> {
|
|
|
1404
1620
|
*/
|
|
1405
1621
|
declare const Discover11: React.ForwardRefExoticComponent<Omit<Discover11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1406
1622
|
|
|
1623
|
+
/**
|
|
1624
|
+
* Props for the DislikeBold icon component
|
|
1625
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1626
|
+
*/
|
|
1627
|
+
interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1628
|
+
size?: number | string;
|
|
1629
|
+
}
|
|
1630
|
+
/**
|
|
1631
|
+
* DislikeBold icon component
|
|
1632
|
+
* @example
|
|
1633
|
+
* ```tsx
|
|
1634
|
+
* import { DislikeBold } from 'magick-icons';
|
|
1635
|
+
*
|
|
1636
|
+
* <DislikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1637
|
+
* ```
|
|
1638
|
+
*/
|
|
1639
|
+
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1640
|
+
|
|
1641
|
+
/**
|
|
1642
|
+
* Props for the DocumentTextBold icon component
|
|
1643
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1644
|
+
*/
|
|
1645
|
+
interface DocumentTextBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1646
|
+
size?: number | string;
|
|
1647
|
+
}
|
|
1648
|
+
/**
|
|
1649
|
+
* DocumentTextBold icon component
|
|
1650
|
+
* @example
|
|
1651
|
+
* ```tsx
|
|
1652
|
+
* import { DocumentTextBold } from 'magick-icons';
|
|
1653
|
+
*
|
|
1654
|
+
* <DocumentTextBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1655
|
+
* ```
|
|
1656
|
+
*/
|
|
1657
|
+
declare const DocumentTextBold: React.ForwardRefExoticComponent<Omit<DocumentTextBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1658
|
+
|
|
1659
|
+
/**
|
|
1660
|
+
* Props for the DocumentUpload icon component
|
|
1661
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1662
|
+
*/
|
|
1663
|
+
interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
1664
|
+
size?: number | string;
|
|
1665
|
+
}
|
|
1666
|
+
/**
|
|
1667
|
+
* DocumentUpload icon component
|
|
1668
|
+
* @example
|
|
1669
|
+
* ```tsx
|
|
1670
|
+
* import { DocumentUpload } from 'magick-icons';
|
|
1671
|
+
*
|
|
1672
|
+
* <DocumentUpload size={24} className="text-blue-500" strokeWidth={2} />
|
|
1673
|
+
* ```
|
|
1674
|
+
*/
|
|
1675
|
+
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1676
|
+
|
|
1407
1677
|
/**
|
|
1408
1678
|
* Props for the EmptyWalletAdd1 icon component
|
|
1409
1679
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1494,6 +1764,24 @@ interface EmptyWalletTime1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
1494
1764
|
*/
|
|
1495
1765
|
declare const EmptyWalletTime1: React.ForwardRefExoticComponent<Omit<EmptyWalletTime1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1496
1766
|
|
|
1767
|
+
/**
|
|
1768
|
+
* Props for the Enter icon component
|
|
1769
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1770
|
+
*/
|
|
1771
|
+
interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
1772
|
+
size?: number | string;
|
|
1773
|
+
}
|
|
1774
|
+
/**
|
|
1775
|
+
* Enter icon component
|
|
1776
|
+
* @example
|
|
1777
|
+
* ```tsx
|
|
1778
|
+
* import { Enter } from 'magick-icons';
|
|
1779
|
+
*
|
|
1780
|
+
* <Enter size={24} className="text-blue-500" strokeWidth={2} />
|
|
1781
|
+
* ```
|
|
1782
|
+
*/
|
|
1783
|
+
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1784
|
+
|
|
1497
1785
|
/**
|
|
1498
1786
|
* Props for the Eraser1 icon component
|
|
1499
1787
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1674,6 +1962,42 @@ interface FilterTick1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
1674
1962
|
*/
|
|
1675
1963
|
declare const FilterTick1: React.ForwardRefExoticComponent<Omit<FilterTick1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1676
1964
|
|
|
1965
|
+
/**
|
|
1966
|
+
* Props for the Finance icon component
|
|
1967
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1968
|
+
*/
|
|
1969
|
+
interface FinanceProps extends React.SVGProps<SVGSVGElement> {
|
|
1970
|
+
size?: number | string;
|
|
1971
|
+
}
|
|
1972
|
+
/**
|
|
1973
|
+
* Finance icon component
|
|
1974
|
+
* @example
|
|
1975
|
+
* ```tsx
|
|
1976
|
+
* import { Finance } from 'magick-icons';
|
|
1977
|
+
*
|
|
1978
|
+
* <Finance size={24} className="text-blue-500" strokeWidth={2} />
|
|
1979
|
+
* ```
|
|
1980
|
+
*/
|
|
1981
|
+
declare const Finance: React.ForwardRefExoticComponent<Omit<FinanceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1982
|
+
|
|
1983
|
+
/**
|
|
1984
|
+
* Props for the Flag icon component
|
|
1985
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1986
|
+
*/
|
|
1987
|
+
interface FlagProps extends React.SVGProps<SVGSVGElement> {
|
|
1988
|
+
size?: number | string;
|
|
1989
|
+
}
|
|
1990
|
+
/**
|
|
1991
|
+
* Flag icon component
|
|
1992
|
+
* @example
|
|
1993
|
+
* ```tsx
|
|
1994
|
+
* import { Flag } from 'magick-icons';
|
|
1995
|
+
*
|
|
1996
|
+
* <Flag size={24} className="text-blue-500" strokeWidth={2} />
|
|
1997
|
+
* ```
|
|
1998
|
+
*/
|
|
1999
|
+
declare const Flag: React.ForwardRefExoticComponent<Omit<FlagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2000
|
+
|
|
1677
2001
|
/**
|
|
1678
2002
|
* Props for the Flag1 icon component
|
|
1679
2003
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1764,6 +2088,60 @@ interface FlashCircle11Props extends React.SVGProps<SVGSVGElement> {
|
|
|
1764
2088
|
*/
|
|
1765
2089
|
declare const FlashCircle11: React.ForwardRefExoticComponent<Omit<FlashCircle11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1766
2090
|
|
|
2091
|
+
/**
|
|
2092
|
+
* Props for the Folder2 icon component
|
|
2093
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2094
|
+
*/
|
|
2095
|
+
interface Folder2Props extends React.SVGProps<SVGSVGElement> {
|
|
2096
|
+
size?: number | string;
|
|
2097
|
+
}
|
|
2098
|
+
/**
|
|
2099
|
+
* Folder2 icon component
|
|
2100
|
+
* @example
|
|
2101
|
+
* ```tsx
|
|
2102
|
+
* import { Folder2 } from 'magick-icons';
|
|
2103
|
+
*
|
|
2104
|
+
* <Folder2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
2105
|
+
* ```
|
|
2106
|
+
*/
|
|
2107
|
+
declare const Folder2: React.ForwardRefExoticComponent<Omit<Folder2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2108
|
+
|
|
2109
|
+
/**
|
|
2110
|
+
* Props for the FolderDrawerOpen icon component
|
|
2111
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2112
|
+
*/
|
|
2113
|
+
interface FolderDrawerOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
2114
|
+
size?: number | string;
|
|
2115
|
+
}
|
|
2116
|
+
/**
|
|
2117
|
+
* FolderDrawerOpen icon component
|
|
2118
|
+
* @example
|
|
2119
|
+
* ```tsx
|
|
2120
|
+
* import { FolderDrawerOpen } from 'magick-icons';
|
|
2121
|
+
*
|
|
2122
|
+
* <FolderDrawerOpen size={24} className="text-blue-500" strokeWidth={2} />
|
|
2123
|
+
* ```
|
|
2124
|
+
*/
|
|
2125
|
+
declare const FolderDrawerOpen: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2126
|
+
|
|
2127
|
+
/**
|
|
2128
|
+
* Props for the FolderOpenBold icon component
|
|
2129
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2130
|
+
*/
|
|
2131
|
+
interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2132
|
+
size?: number | string;
|
|
2133
|
+
}
|
|
2134
|
+
/**
|
|
2135
|
+
* FolderOpenBold icon component
|
|
2136
|
+
* @example
|
|
2137
|
+
* ```tsx
|
|
2138
|
+
* import { FolderOpenBold } from 'magick-icons';
|
|
2139
|
+
*
|
|
2140
|
+
* <FolderOpenBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2141
|
+
* ```
|
|
2142
|
+
*/
|
|
2143
|
+
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2144
|
+
|
|
1767
2145
|
/**
|
|
1768
2146
|
* Props for the Forbidden1 icon component
|
|
1769
2147
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2034,6 +2412,42 @@ interface GridLock11Props extends React.SVGProps<SVGSVGElement> {
|
|
|
2034
2412
|
*/
|
|
2035
2413
|
declare const GridLock11: React.ForwardRefExoticComponent<Omit<GridLock11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2036
2414
|
|
|
2415
|
+
/**
|
|
2416
|
+
* Props for the GripVertical icon component
|
|
2417
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2418
|
+
*/
|
|
2419
|
+
interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
|
|
2420
|
+
size?: number | string;
|
|
2421
|
+
}
|
|
2422
|
+
/**
|
|
2423
|
+
* GripVertical icon component
|
|
2424
|
+
* @example
|
|
2425
|
+
* ```tsx
|
|
2426
|
+
* import { GripVertical } from 'magick-icons';
|
|
2427
|
+
*
|
|
2428
|
+
* <GripVertical size={24} className="text-blue-500" strokeWidth={2} />
|
|
2429
|
+
* ```
|
|
2430
|
+
*/
|
|
2431
|
+
declare const GripVertical: React.ForwardRefExoticComponent<Omit<GripVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2432
|
+
|
|
2433
|
+
/**
|
|
2434
|
+
* Props for the HeartBold icon component
|
|
2435
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2436
|
+
*/
|
|
2437
|
+
interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2438
|
+
size?: number | string;
|
|
2439
|
+
}
|
|
2440
|
+
/**
|
|
2441
|
+
* HeartBold icon component
|
|
2442
|
+
* @example
|
|
2443
|
+
* ```tsx
|
|
2444
|
+
* import { HeartBold } from 'magick-icons';
|
|
2445
|
+
*
|
|
2446
|
+
* <HeartBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2447
|
+
* ```
|
|
2448
|
+
*/
|
|
2449
|
+
declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2450
|
+
|
|
2037
2451
|
/**
|
|
2038
2452
|
* Props for the Home1 icon component
|
|
2039
2453
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2142,6 +2556,24 @@ interface HomeWifi1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
2142
2556
|
*/
|
|
2143
2557
|
declare const HomeWifi1: React.ForwardRefExoticComponent<Omit<HomeWifi1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2144
2558
|
|
|
2559
|
+
/**
|
|
2560
|
+
* Props for the HrSystem icon component
|
|
2561
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2562
|
+
*/
|
|
2563
|
+
interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
2564
|
+
size?: number | string;
|
|
2565
|
+
}
|
|
2566
|
+
/**
|
|
2567
|
+
* HrSystem icon component
|
|
2568
|
+
* @example
|
|
2569
|
+
* ```tsx
|
|
2570
|
+
* import { HrSystem } from 'magick-icons';
|
|
2571
|
+
*
|
|
2572
|
+
* <HrSystem size={24} className="text-blue-500" strokeWidth={2} />
|
|
2573
|
+
* ```
|
|
2574
|
+
*/
|
|
2575
|
+
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2576
|
+
|
|
2145
2577
|
/**
|
|
2146
2578
|
* Props for the Icon3dcube1 icon component
|
|
2147
2579
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2178,6 +2610,24 @@ interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
2178
2610
|
*/
|
|
2179
2611
|
declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2180
2612
|
|
|
2613
|
+
/**
|
|
2614
|
+
* Props for the IconsaxAiScienceBold icon component
|
|
2615
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2616
|
+
*/
|
|
2617
|
+
interface IconsaxAiScienceBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2618
|
+
size?: number | string;
|
|
2619
|
+
}
|
|
2620
|
+
/**
|
|
2621
|
+
* IconsaxAiScienceBold icon component
|
|
2622
|
+
* @example
|
|
2623
|
+
* ```tsx
|
|
2624
|
+
* import { IconsaxAiScienceBold } from 'magick-icons';
|
|
2625
|
+
*
|
|
2626
|
+
* <IconsaxAiScienceBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2627
|
+
* ```
|
|
2628
|
+
*/
|
|
2629
|
+
declare const IconsaxAiScienceBold: React.ForwardRefExoticComponent<Omit<IconsaxAiScienceBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2630
|
+
|
|
2181
2631
|
/**
|
|
2182
2632
|
* Props for the IconsaxAttachCircle icon component
|
|
2183
2633
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2196,6 +2646,42 @@ interface IconsaxAttachCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2196
2646
|
*/
|
|
2197
2647
|
declare const IconsaxAttachCircle: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2198
2648
|
|
|
2649
|
+
/**
|
|
2650
|
+
* Props for the IconsaxAttachCircleBold icon component
|
|
2651
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2652
|
+
*/
|
|
2653
|
+
interface IconsaxAttachCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2654
|
+
size?: number | string;
|
|
2655
|
+
}
|
|
2656
|
+
/**
|
|
2657
|
+
* IconsaxAttachCircleBold icon component
|
|
2658
|
+
* @example
|
|
2659
|
+
* ```tsx
|
|
2660
|
+
* import { IconsaxAttachCircleBold } from 'magick-icons';
|
|
2661
|
+
*
|
|
2662
|
+
* <IconsaxAttachCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2663
|
+
* ```
|
|
2664
|
+
*/
|
|
2665
|
+
declare const IconsaxAttachCircleBold: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2666
|
+
|
|
2667
|
+
/**
|
|
2668
|
+
* Props for the IconsaxBrainBold icon component
|
|
2669
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2670
|
+
*/
|
|
2671
|
+
interface IconsaxBrainBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2672
|
+
size?: number | string;
|
|
2673
|
+
}
|
|
2674
|
+
/**
|
|
2675
|
+
* IconsaxBrainBold icon component
|
|
2676
|
+
* @example
|
|
2677
|
+
* ```tsx
|
|
2678
|
+
* import { IconsaxBrainBold } from 'magick-icons';
|
|
2679
|
+
*
|
|
2680
|
+
* <IconsaxBrainBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2681
|
+
* ```
|
|
2682
|
+
*/
|
|
2683
|
+
declare const IconsaxBrainBold: React.ForwardRefExoticComponent<Omit<IconsaxBrainBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2684
|
+
|
|
2199
2685
|
/**
|
|
2200
2686
|
* Props for the IconsaxFeather2 icon component
|
|
2201
2687
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2232,6 +2718,60 @@ interface IconsaxMinimize4Props extends React.SVGProps<SVGSVGElement> {
|
|
|
2232
2718
|
*/
|
|
2233
2719
|
declare const IconsaxMinimize4: React.ForwardRefExoticComponent<Omit<IconsaxMinimize4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2234
2720
|
|
|
2721
|
+
/**
|
|
2722
|
+
* Props for the IconsaxMonetizeBold icon component
|
|
2723
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2724
|
+
*/
|
|
2725
|
+
interface IconsaxMonetizeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2726
|
+
size?: number | string;
|
|
2727
|
+
}
|
|
2728
|
+
/**
|
|
2729
|
+
* IconsaxMonetizeBold icon component
|
|
2730
|
+
* @example
|
|
2731
|
+
* ```tsx
|
|
2732
|
+
* import { IconsaxMonetizeBold } from 'magick-icons';
|
|
2733
|
+
*
|
|
2734
|
+
* <IconsaxMonetizeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2735
|
+
* ```
|
|
2736
|
+
*/
|
|
2737
|
+
declare const IconsaxMonetizeBold: React.ForwardRefExoticComponent<Omit<IconsaxMonetizeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2738
|
+
|
|
2739
|
+
/**
|
|
2740
|
+
* Props for the IconsaxPenBrushBold icon component
|
|
2741
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2742
|
+
*/
|
|
2743
|
+
interface IconsaxPenBrushBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2744
|
+
size?: number | string;
|
|
2745
|
+
}
|
|
2746
|
+
/**
|
|
2747
|
+
* IconsaxPenBrushBold icon component
|
|
2748
|
+
* @example
|
|
2749
|
+
* ```tsx
|
|
2750
|
+
* import { IconsaxPenBrushBold } from 'magick-icons';
|
|
2751
|
+
*
|
|
2752
|
+
* <IconsaxPenBrushBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2753
|
+
* ```
|
|
2754
|
+
*/
|
|
2755
|
+
declare const IconsaxPenBrushBold: React.ForwardRefExoticComponent<Omit<IconsaxPenBrushBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2756
|
+
|
|
2757
|
+
/**
|
|
2758
|
+
* Props for the IconsaxPeopleBold icon component
|
|
2759
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2760
|
+
*/
|
|
2761
|
+
interface IconsaxPeopleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2762
|
+
size?: number | string;
|
|
2763
|
+
}
|
|
2764
|
+
/**
|
|
2765
|
+
* IconsaxPeopleBold icon component
|
|
2766
|
+
* @example
|
|
2767
|
+
* ```tsx
|
|
2768
|
+
* import { IconsaxPeopleBold } from 'magick-icons';
|
|
2769
|
+
*
|
|
2770
|
+
* <IconsaxPeopleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2771
|
+
* ```
|
|
2772
|
+
*/
|
|
2773
|
+
declare const IconsaxPeopleBold: React.ForwardRefExoticComponent<Omit<IconsaxPeopleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2774
|
+
|
|
2235
2775
|
/**
|
|
2236
2776
|
* Props for the IconsaxPin icon component
|
|
2237
2777
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2250,6 +2790,24 @@ interface IconsaxPinProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2250
2790
|
*/
|
|
2251
2791
|
declare const IconsaxPin: React.ForwardRefExoticComponent<Omit<IconsaxPinProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2252
2792
|
|
|
2793
|
+
/**
|
|
2794
|
+
* Props for the IconsaxTaskSquareBold icon component
|
|
2795
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2796
|
+
*/
|
|
2797
|
+
interface IconsaxTaskSquareBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2798
|
+
size?: number | string;
|
|
2799
|
+
}
|
|
2800
|
+
/**
|
|
2801
|
+
* IconsaxTaskSquareBold icon component
|
|
2802
|
+
* @example
|
|
2803
|
+
* ```tsx
|
|
2804
|
+
* import { IconsaxTaskSquareBold } from 'magick-icons';
|
|
2805
|
+
*
|
|
2806
|
+
* <IconsaxTaskSquareBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2807
|
+
* ```
|
|
2808
|
+
*/
|
|
2809
|
+
declare const IconsaxTaskSquareBold: React.ForwardRefExoticComponent<Omit<IconsaxTaskSquareBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2810
|
+
|
|
2253
2811
|
/**
|
|
2254
2812
|
* Props for the IconsaxVideoCamera icon component
|
|
2255
2813
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2258,15 +2816,69 @@ interface IconsaxVideoCameraProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2258
2816
|
size?: number | string;
|
|
2259
2817
|
}
|
|
2260
2818
|
/**
|
|
2261
|
-
* IconsaxVideoCamera icon component
|
|
2819
|
+
* IconsaxVideoCamera icon component
|
|
2820
|
+
* @example
|
|
2821
|
+
* ```tsx
|
|
2822
|
+
* import { IconsaxVideoCamera } from 'magick-icons';
|
|
2823
|
+
*
|
|
2824
|
+
* <IconsaxVideoCamera size={24} className="text-blue-500" strokeWidth={2} />
|
|
2825
|
+
* ```
|
|
2826
|
+
*/
|
|
2827
|
+
declare const IconsaxVideoCamera: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2828
|
+
|
|
2829
|
+
/**
|
|
2830
|
+
* Props for the IconsaxVideoCameraBold icon component
|
|
2831
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2832
|
+
*/
|
|
2833
|
+
interface IconsaxVideoCameraBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2834
|
+
size?: number | string;
|
|
2835
|
+
}
|
|
2836
|
+
/**
|
|
2837
|
+
* IconsaxVideoCameraBold icon component
|
|
2838
|
+
* @example
|
|
2839
|
+
* ```tsx
|
|
2840
|
+
* import { IconsaxVideoCameraBold } from 'magick-icons';
|
|
2841
|
+
*
|
|
2842
|
+
* <IconsaxVideoCameraBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2843
|
+
* ```
|
|
2844
|
+
*/
|
|
2845
|
+
declare const IconsaxVideoCameraBold: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2846
|
+
|
|
2847
|
+
/**
|
|
2848
|
+
* Props for the IconsaxWord icon component
|
|
2849
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2850
|
+
*/
|
|
2851
|
+
interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
2852
|
+
size?: number | string;
|
|
2853
|
+
}
|
|
2854
|
+
/**
|
|
2855
|
+
* IconsaxWord icon component
|
|
2856
|
+
* @example
|
|
2857
|
+
* ```tsx
|
|
2858
|
+
* import { IconsaxWord } from 'magick-icons';
|
|
2859
|
+
*
|
|
2860
|
+
* <IconsaxWord size={24} className="text-blue-500" strokeWidth={2} />
|
|
2861
|
+
* ```
|
|
2862
|
+
*/
|
|
2863
|
+
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2864
|
+
|
|
2865
|
+
/**
|
|
2866
|
+
* Props for the InfoCircleBold icon component
|
|
2867
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2868
|
+
*/
|
|
2869
|
+
interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2870
|
+
size?: number | string;
|
|
2871
|
+
}
|
|
2872
|
+
/**
|
|
2873
|
+
* InfoCircleBold icon component
|
|
2262
2874
|
* @example
|
|
2263
2875
|
* ```tsx
|
|
2264
|
-
* import {
|
|
2876
|
+
* import { InfoCircleBold } from 'magick-icons';
|
|
2265
2877
|
*
|
|
2266
|
-
* <
|
|
2878
|
+
* <InfoCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2267
2879
|
* ```
|
|
2268
2880
|
*/
|
|
2269
|
-
declare const
|
|
2881
|
+
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2270
2882
|
|
|
2271
2883
|
/**
|
|
2272
2884
|
* Props for the Instagram1 icon component
|
|
@@ -2394,6 +3006,132 @@ interface Lifebuoy1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
2394
3006
|
*/
|
|
2395
3007
|
declare const Lifebuoy1: React.ForwardRefExoticComponent<Omit<Lifebuoy1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2396
3008
|
|
|
3009
|
+
/**
|
|
3010
|
+
* Props for the LikeBold icon component
|
|
3011
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3012
|
+
*/
|
|
3013
|
+
interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
3014
|
+
size?: number | string;
|
|
3015
|
+
}
|
|
3016
|
+
/**
|
|
3017
|
+
* LikeBold icon component
|
|
3018
|
+
* @example
|
|
3019
|
+
* ```tsx
|
|
3020
|
+
* import { LikeBold } from 'magick-icons';
|
|
3021
|
+
*
|
|
3022
|
+
* <LikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
3023
|
+
* ```
|
|
3024
|
+
*/
|
|
3025
|
+
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3026
|
+
|
|
3027
|
+
/**
|
|
3028
|
+
* Props for the Line icon component
|
|
3029
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3030
|
+
*/
|
|
3031
|
+
interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
3032
|
+
size?: number | string;
|
|
3033
|
+
}
|
|
3034
|
+
/**
|
|
3035
|
+
* Line icon component
|
|
3036
|
+
* @example
|
|
3037
|
+
* ```tsx
|
|
3038
|
+
* import { Line } from 'magick-icons';
|
|
3039
|
+
*
|
|
3040
|
+
* <Line size={24} className="text-blue-500" strokeWidth={2} />
|
|
3041
|
+
* ```
|
|
3042
|
+
*/
|
|
3043
|
+
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3044
|
+
|
|
3045
|
+
/**
|
|
3046
|
+
* Props for the LinkSquare icon component
|
|
3047
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3048
|
+
*/
|
|
3049
|
+
interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
3050
|
+
size?: number | string;
|
|
3051
|
+
}
|
|
3052
|
+
/**
|
|
3053
|
+
* LinkSquare icon component
|
|
3054
|
+
* @example
|
|
3055
|
+
* ```tsx
|
|
3056
|
+
* import { LinkSquare } from 'magick-icons';
|
|
3057
|
+
*
|
|
3058
|
+
* <LinkSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
3059
|
+
* ```
|
|
3060
|
+
*/
|
|
3061
|
+
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3062
|
+
|
|
3063
|
+
/**
|
|
3064
|
+
* Props for the List icon component
|
|
3065
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3066
|
+
*/
|
|
3067
|
+
interface ListProps extends React.SVGProps<SVGSVGElement> {
|
|
3068
|
+
size?: number | string;
|
|
3069
|
+
}
|
|
3070
|
+
/**
|
|
3071
|
+
* List icon component
|
|
3072
|
+
* @example
|
|
3073
|
+
* ```tsx
|
|
3074
|
+
* import { List } from 'magick-icons';
|
|
3075
|
+
*
|
|
3076
|
+
* <List size={24} className="text-blue-500" strokeWidth={2} />
|
|
3077
|
+
* ```
|
|
3078
|
+
*/
|
|
3079
|
+
declare const List: React.ForwardRefExoticComponent<Omit<ListProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3080
|
+
|
|
3081
|
+
/**
|
|
3082
|
+
* Props for the ListEnd icon component
|
|
3083
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3084
|
+
*/
|
|
3085
|
+
interface ListEndProps extends React.SVGProps<SVGSVGElement> {
|
|
3086
|
+
size?: number | string;
|
|
3087
|
+
}
|
|
3088
|
+
/**
|
|
3089
|
+
* ListEnd icon component
|
|
3090
|
+
* @example
|
|
3091
|
+
* ```tsx
|
|
3092
|
+
* import { ListEnd } from 'magick-icons';
|
|
3093
|
+
*
|
|
3094
|
+
* <ListEnd size={24} className="text-blue-500" strokeWidth={2} />
|
|
3095
|
+
* ```
|
|
3096
|
+
*/
|
|
3097
|
+
declare const ListEnd: React.ForwardRefExoticComponent<Omit<ListEndProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3098
|
+
|
|
3099
|
+
/**
|
|
3100
|
+
* Props for the ListOrdered icon component
|
|
3101
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3102
|
+
*/
|
|
3103
|
+
interface ListOrderedProps extends React.SVGProps<SVGSVGElement> {
|
|
3104
|
+
size?: number | string;
|
|
3105
|
+
}
|
|
3106
|
+
/**
|
|
3107
|
+
* ListOrdered icon component
|
|
3108
|
+
* @example
|
|
3109
|
+
* ```tsx
|
|
3110
|
+
* import { ListOrdered } from 'magick-icons';
|
|
3111
|
+
*
|
|
3112
|
+
* <ListOrdered size={24} className="text-blue-500" strokeWidth={2} />
|
|
3113
|
+
* ```
|
|
3114
|
+
*/
|
|
3115
|
+
declare const ListOrdered: React.ForwardRefExoticComponent<Omit<ListOrderedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3116
|
+
|
|
3117
|
+
/**
|
|
3118
|
+
* Props for the ListTodo icon component
|
|
3119
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3120
|
+
*/
|
|
3121
|
+
interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
3122
|
+
size?: number | string;
|
|
3123
|
+
}
|
|
3124
|
+
/**
|
|
3125
|
+
* ListTodo icon component
|
|
3126
|
+
* @example
|
|
3127
|
+
* ```tsx
|
|
3128
|
+
* import { ListTodo } from 'magick-icons';
|
|
3129
|
+
*
|
|
3130
|
+
* <ListTodo size={24} className="text-blue-500" strokeWidth={2} />
|
|
3131
|
+
* ```
|
|
3132
|
+
*/
|
|
3133
|
+
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3134
|
+
|
|
2397
3135
|
/**
|
|
2398
3136
|
* Props for the Location1 icon component
|
|
2399
3137
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2484,6 +3222,42 @@ interface LocationTick1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
2484
3222
|
*/
|
|
2485
3223
|
declare const LocationTick1: React.ForwardRefExoticComponent<Omit<LocationTick1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2486
3224
|
|
|
3225
|
+
/**
|
|
3226
|
+
* Props for the Lock icon component
|
|
3227
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3228
|
+
*/
|
|
3229
|
+
interface LockProps extends React.SVGProps<SVGSVGElement> {
|
|
3230
|
+
size?: number | string;
|
|
3231
|
+
}
|
|
3232
|
+
/**
|
|
3233
|
+
* Lock icon component
|
|
3234
|
+
* @example
|
|
3235
|
+
* ```tsx
|
|
3236
|
+
* import { Lock } from 'magick-icons';
|
|
3237
|
+
*
|
|
3238
|
+
* <Lock size={24} className="text-blue-500" strokeWidth={2} />
|
|
3239
|
+
* ```
|
|
3240
|
+
*/
|
|
3241
|
+
declare const Lock: React.ForwardRefExoticComponent<Omit<LockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3242
|
+
|
|
3243
|
+
/**
|
|
3244
|
+
* Props for the MagickPotion icon component
|
|
3245
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3246
|
+
*/
|
|
3247
|
+
interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
3248
|
+
size?: number | string;
|
|
3249
|
+
}
|
|
3250
|
+
/**
|
|
3251
|
+
* MagickPotion icon component
|
|
3252
|
+
* @example
|
|
3253
|
+
* ```tsx
|
|
3254
|
+
* import { MagickPotion } from 'magick-icons';
|
|
3255
|
+
*
|
|
3256
|
+
* <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
|
|
3257
|
+
* ```
|
|
3258
|
+
*/
|
|
3259
|
+
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3260
|
+
|
|
2487
3261
|
/**
|
|
2488
3262
|
* Props for the Magicko365Arrow icon component
|
|
2489
3263
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -6372,6 +7146,24 @@ interface MagickoChatboxProps extends React.SVGProps<SVGSVGElement> {
|
|
|
6372
7146
|
*/
|
|
6373
7147
|
declare const MagickoChatbox: React.ForwardRefExoticComponent<Omit<MagickoChatboxProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
6374
7148
|
|
|
7149
|
+
/**
|
|
7150
|
+
* Props for the MagickoCheck icon component
|
|
7151
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
7152
|
+
*/
|
|
7153
|
+
interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
7154
|
+
size?: number | string;
|
|
7155
|
+
}
|
|
7156
|
+
/**
|
|
7157
|
+
* MagickoCheck icon component
|
|
7158
|
+
* @example
|
|
7159
|
+
* ```tsx
|
|
7160
|
+
* import { MagickoCheck } from 'magick-icons';
|
|
7161
|
+
*
|
|
7162
|
+
* <MagickoCheck size={24} className="text-blue-500" strokeWidth={2} />
|
|
7163
|
+
* ```
|
|
7164
|
+
*/
|
|
7165
|
+
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7166
|
+
|
|
6375
7167
|
/**
|
|
6376
7168
|
* Props for the MagickoCirclefinger icon component
|
|
6377
7169
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -16956,6 +17748,24 @@ interface MainComponent1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
16956
17748
|
*/
|
|
16957
17749
|
declare const MainComponent1: React.ForwardRefExoticComponent<Omit<MainComponent1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
16958
17750
|
|
|
17751
|
+
/**
|
|
17752
|
+
* Props for the Marketing icon component
|
|
17753
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17754
|
+
*/
|
|
17755
|
+
interface MarketingProps extends React.SVGProps<SVGSVGElement> {
|
|
17756
|
+
size?: number | string;
|
|
17757
|
+
}
|
|
17758
|
+
/**
|
|
17759
|
+
* Marketing icon component
|
|
17760
|
+
* @example
|
|
17761
|
+
* ```tsx
|
|
17762
|
+
* import { Marketing } from 'magick-icons';
|
|
17763
|
+
*
|
|
17764
|
+
* <Marketing size={24} className="text-blue-500" strokeWidth={2} />
|
|
17765
|
+
* ```
|
|
17766
|
+
*/
|
|
17767
|
+
declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17768
|
+
|
|
16959
17769
|
/**
|
|
16960
17770
|
* Props for the Mask1 icon component
|
|
16961
17771
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -17118,6 +17928,24 @@ interface MessageCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
17118
17928
|
*/
|
|
17119
17929
|
declare const MessageCircle1: React.ForwardRefExoticComponent<Omit<MessageCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17120
17930
|
|
|
17931
|
+
/**
|
|
17932
|
+
* Props for the MessageEdit icon component
|
|
17933
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17934
|
+
*/
|
|
17935
|
+
interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
17936
|
+
size?: number | string;
|
|
17937
|
+
}
|
|
17938
|
+
/**
|
|
17939
|
+
* MessageEdit icon component
|
|
17940
|
+
* @example
|
|
17941
|
+
* ```tsx
|
|
17942
|
+
* import { MessageEdit } from 'magick-icons';
|
|
17943
|
+
*
|
|
17944
|
+
* <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
17945
|
+
* ```
|
|
17946
|
+
*/
|
|
17947
|
+
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17948
|
+
|
|
17121
17949
|
/**
|
|
17122
17950
|
* Props for the MessageEdit1 icon component
|
|
17123
17951
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -17586,6 +18414,24 @@ interface MouseSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
17586
18414
|
*/
|
|
17587
18415
|
declare const MouseSquare1: React.ForwardRefExoticComponent<Omit<MouseSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17588
18416
|
|
|
18417
|
+
/**
|
|
18418
|
+
* Props for the Network icon component
|
|
18419
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18420
|
+
*/
|
|
18421
|
+
interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
18422
|
+
size?: number | string;
|
|
18423
|
+
}
|
|
18424
|
+
/**
|
|
18425
|
+
* Network icon component
|
|
18426
|
+
* @example
|
|
18427
|
+
* ```tsx
|
|
18428
|
+
* import { Network } from 'magick-icons';
|
|
18429
|
+
*
|
|
18430
|
+
* <Network size={24} className="text-blue-500" strokeWidth={2} />
|
|
18431
|
+
* ```
|
|
18432
|
+
*/
|
|
18433
|
+
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18434
|
+
|
|
17589
18435
|
/**
|
|
17590
18436
|
* Props for the Network1 icon component
|
|
17591
18437
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -17640,6 +18486,24 @@ interface OmegaSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
17640
18486
|
*/
|
|
17641
18487
|
declare const OmegaSquare1: React.ForwardRefExoticComponent<Omit<OmegaSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17642
18488
|
|
|
18489
|
+
/**
|
|
18490
|
+
* Props for the PA icon component
|
|
18491
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18492
|
+
*/
|
|
18493
|
+
interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
18494
|
+
size?: number | string;
|
|
18495
|
+
}
|
|
18496
|
+
/**
|
|
18497
|
+
* PA icon component
|
|
18498
|
+
* @example
|
|
18499
|
+
* ```tsx
|
|
18500
|
+
* import { PA } from 'magick-icons';
|
|
18501
|
+
*
|
|
18502
|
+
* <PA size={24} className="text-blue-500" strokeWidth={2} />
|
|
18503
|
+
* ```
|
|
18504
|
+
*/
|
|
18505
|
+
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18506
|
+
|
|
17643
18507
|
/**
|
|
17644
18508
|
* Props for the PaintBrush1 icon component
|
|
17645
18509
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -17946,6 +18810,24 @@ interface Share1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
17946
18810
|
*/
|
|
17947
18811
|
declare const Share1: React.ForwardRefExoticComponent<Omit<Share1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17948
18812
|
|
|
18813
|
+
/**
|
|
18814
|
+
* Props for the Signature icon component
|
|
18815
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18816
|
+
*/
|
|
18817
|
+
interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
18818
|
+
size?: number | string;
|
|
18819
|
+
}
|
|
18820
|
+
/**
|
|
18821
|
+
* Signature icon component
|
|
18822
|
+
* @example
|
|
18823
|
+
* ```tsx
|
|
18824
|
+
* import { Signature } from 'magick-icons';
|
|
18825
|
+
*
|
|
18826
|
+
* <Signature size={24} className="text-blue-500" strokeWidth={2} />
|
|
18827
|
+
* ```
|
|
18828
|
+
*/
|
|
18829
|
+
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18830
|
+
|
|
17949
18831
|
/**
|
|
17950
18832
|
* Props for the Signpost1 icon component
|
|
17951
18833
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18198,6 +19080,24 @@ interface Speedometer11Props extends React.SVGProps<SVGSVGElement> {
|
|
|
18198
19080
|
*/
|
|
18199
19081
|
declare const Speedometer11: React.ForwardRefExoticComponent<Omit<Speedometer11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18200
19082
|
|
|
19083
|
+
/**
|
|
19084
|
+
* Props for the SquarePen1 icon component
|
|
19085
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19086
|
+
*/
|
|
19087
|
+
interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
19088
|
+
size?: number | string;
|
|
19089
|
+
}
|
|
19090
|
+
/**
|
|
19091
|
+
* SquarePen1 icon component
|
|
19092
|
+
* @example
|
|
19093
|
+
* ```tsx
|
|
19094
|
+
* import { SquarePen1 } from 'magick-icons';
|
|
19095
|
+
*
|
|
19096
|
+
* <SquarePen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19097
|
+
* ```
|
|
19098
|
+
*/
|
|
19099
|
+
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19100
|
+
|
|
18201
19101
|
/**
|
|
18202
19102
|
* Props for the StarTopology1 icon component
|
|
18203
19103
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18252,6 +19152,24 @@ interface Status11Props extends React.SVGProps<SVGSVGElement> {
|
|
|
18252
19152
|
*/
|
|
18253
19153
|
declare const Status11: React.ForwardRefExoticComponent<Omit<Status11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18254
19154
|
|
|
19155
|
+
/**
|
|
19156
|
+
* Props for the Strikethrough icon component
|
|
19157
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19158
|
+
*/
|
|
19159
|
+
interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
19160
|
+
size?: number | string;
|
|
19161
|
+
}
|
|
19162
|
+
/**
|
|
19163
|
+
* Strikethrough icon component
|
|
19164
|
+
* @example
|
|
19165
|
+
* ```tsx
|
|
19166
|
+
* import { Strikethrough } from 'magick-icons';
|
|
19167
|
+
*
|
|
19168
|
+
* <Strikethrough size={24} className="text-blue-500" strokeWidth={2} />
|
|
19169
|
+
* ```
|
|
19170
|
+
*/
|
|
19171
|
+
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19172
|
+
|
|
18255
19173
|
/**
|
|
18256
19174
|
* Props for the Strongbox1 icon component
|
|
18257
19175
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18324,6 +19242,42 @@ interface TagRight1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
18324
19242
|
*/
|
|
18325
19243
|
declare const TagRight1: React.ForwardRefExoticComponent<Omit<TagRight1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18326
19244
|
|
|
19245
|
+
/**
|
|
19246
|
+
* Props for the Tasks icon component
|
|
19247
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19248
|
+
*/
|
|
19249
|
+
interface TasksProps extends React.SVGProps<SVGSVGElement> {
|
|
19250
|
+
size?: number | string;
|
|
19251
|
+
}
|
|
19252
|
+
/**
|
|
19253
|
+
* Tasks icon component
|
|
19254
|
+
* @example
|
|
19255
|
+
* ```tsx
|
|
19256
|
+
* import { Tasks } from 'magick-icons';
|
|
19257
|
+
*
|
|
19258
|
+
* <Tasks size={24} className="text-blue-500" strokeWidth={2} />
|
|
19259
|
+
* ```
|
|
19260
|
+
*/
|
|
19261
|
+
declare const Tasks: React.ForwardRefExoticComponent<Omit<TasksProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19262
|
+
|
|
19263
|
+
/**
|
|
19264
|
+
* Props for the Trash icon component
|
|
19265
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19266
|
+
*/
|
|
19267
|
+
interface TrashProps extends React.SVGProps<SVGSVGElement> {
|
|
19268
|
+
size?: number | string;
|
|
19269
|
+
}
|
|
19270
|
+
/**
|
|
19271
|
+
* Trash icon component
|
|
19272
|
+
* @example
|
|
19273
|
+
* ```tsx
|
|
19274
|
+
* import { Trash } from 'magick-icons';
|
|
19275
|
+
*
|
|
19276
|
+
* <Trash size={24} className="text-blue-500" strokeWidth={2} />
|
|
19277
|
+
* ```
|
|
19278
|
+
*/
|
|
19279
|
+
declare const Trash: React.ForwardRefExoticComponent<Omit<TrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19280
|
+
|
|
18327
19281
|
/**
|
|
18328
19282
|
* Props for the TrashSquare1 icon component
|
|
18329
19283
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18468,6 +19422,24 @@ interface TruckTime1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
18468
19422
|
*/
|
|
18469
19423
|
declare const TruckTime1: React.ForwardRefExoticComponent<Omit<TruckTime1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18470
19424
|
|
|
19425
|
+
/**
|
|
19426
|
+
* Props for the Video icon component
|
|
19427
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19428
|
+
*/
|
|
19429
|
+
interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
19430
|
+
size?: number | string;
|
|
19431
|
+
}
|
|
19432
|
+
/**
|
|
19433
|
+
* Video icon component
|
|
19434
|
+
* @example
|
|
19435
|
+
* ```tsx
|
|
19436
|
+
* import { Video } from 'magick-icons';
|
|
19437
|
+
*
|
|
19438
|
+
* <Video size={24} className="text-blue-500" strokeWidth={2} />
|
|
19439
|
+
* ```
|
|
19440
|
+
*/
|
|
19441
|
+
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19442
|
+
|
|
18471
19443
|
/**
|
|
18472
19444
|
* Props for the Wallet1 icon component
|
|
18473
19445
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18774,4 +19746,22 @@ interface WifiSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
18774
19746
|
*/
|
|
18775
19747
|
declare const WifiSquare1: React.ForwardRefExoticComponent<Omit<WifiSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18776
19748
|
|
|
18777
|
-
export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiScience1, type AiScience1Props, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, BatteryCharging1, type BatteryCharging1Props, BatteryDisable1, type BatteryDisable1Props, BatteryEmpty1, BatteryEmpty11, type BatteryEmpty11Props, type BatteryEmpty1Props, BatteryFull1, type BatteryFull1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Eraser1, Eraser11, type Eraser11Props, type Eraser1Props, Eraser21, type Eraser21Props, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Flag1, type Flag1Props, Flag21, type Flag21Props, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, IconsaxAttachCircle, type IconsaxAttachCircleProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxPin, type IconsaxPinProps, IconsaxVideoCamera, type IconsaxVideoCameraProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, type MagickoCalendarProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, MagickoGrid6, type MagickoGrid6Props, MagickoGrid7, type MagickoGrid7Props, MagickoGrid8, type MagickoGrid8Props, MagickoGrid9, type MagickoGrid9Props, MagickoGridAdd, type MagickoGridAddProps, MagickoGridEqual, type MagickoGridEqualProps, MagickoGrids4, type MagickoGrids4Props, MagickoGrinning, type MagickoGrinningProps, MagickoHandcircle, type MagickoHandcircleProps, MagickoHandtohand, type MagickoHandtohandProps, MagickoHappy, MagickoHappy1, type MagickoHappy1Props, type MagickoHappyProps, MagickoHappyemoji, type MagickoHappyemojiProps, MagickoHashtag, MagickoHashtag1, type MagickoHashtag1Props, type MagickoHashtagProps, MagickoHeadphone, type MagickoHeadphoneProps, MagickoHeadphones, type MagickoHeadphonesProps, MagickoHealth, MagickoHealth1, type MagickoHealth1Props, type MagickoHealthProps, MagickoHeart, MagickoHeart1, type MagickoHeart1Props, type MagickoHeartProps, MagickoHeartTap, type MagickoHeartTapProps, MagickoHearted, type MagickoHeartedProps, MagickoHome, MagickoHome2, MagickoHome21, type MagickoHome21Props, type MagickoHome2Props, MagickoHomeHashtag, type MagickoHomeHashtagProps, type MagickoHomeProps, MagickoHomeTrendDown, type MagickoHomeTrendDownProps, MagickoHomeTrendUp, type MagickoHomeTrendUpProps, MagickoHospital, MagickoHospital1, type MagickoHospital1Props, MagickoHospital2, type MagickoHospital2Props, type MagickoHospitalProps, MagickoHouse, MagickoHouse2, type MagickoHouse2Props, type MagickoHouseProps, MagickoImage, type MagickoImageProps, MagickoImport01, type MagickoImport01Props, MagickoImportArrow01, type MagickoImportArrow01Props, MagickoImportArrow02, type MagickoImportArrow02Props, MagickoImportCircle01, type MagickoImportCircle01Props, MagickoImportCircle02, type MagickoImportCircle02Props, MagickoInfoCircle, MagickoInfoCircle1, type MagickoInfoCircle1Props, type MagickoInfoCircleProps, MagickoInfoSquare, type MagickoInfoSquareProps, MagickoInformation, type MagickoInformationProps, MagickoJoy, MagickoJoy2, type MagickoJoy2Props, type MagickoJoyProps, MagickoKey, type MagickoKeyProps, MagickoKeyboard, MagickoKeyboard1, type MagickoKeyboard1Props, MagickoKeyboardOpen, type MagickoKeyboardOpenProps, type MagickoKeyboardProps, MagickoKissing, MagickoKissing1, type MagickoKissing1Props, type MagickoKissingProps, MagickoLamp, MagickoLamp1, type MagickoLamp1Props, MagickoLamp2, type MagickoLamp2Props, MagickoLampCharge, type MagickoLampChargeProps, MagickoLampOn, type MagickoLampOnProps, type MagickoLampProps, MagickoLampSlash, type MagickoLampSlashProps, MagickoLanguage, MagickoLanguageCircle, type MagickoLanguageCircleProps, type MagickoLanguageProps, MagickoLanguageSquare, type MagickoLanguageSquareProps, MagickoLayer, type MagickoLayerProps, MagickoLayout, type MagickoLayoutProps, MagickoLeaf2, type MagickoLeaf2Props, MagickoLeaf3, type MagickoLeaf3Props, MagickoLeafs, type MagickoLeafsProps, MagickoLeftBarGrid, type MagickoLeftBarGridProps, MagickoLeftCloud, type MagickoLeftCloudProps, MagickoLeftRightCloud, type MagickoLeftRightCloudProps, MagickoLeftSidebarGrid, type MagickoLeftSidebarGridProps, MagickoLightning, type MagickoLightningProps, MagickoLike1, type MagickoLike1Props, MagickoLikeDislike, type MagickoLikeDislikeProps, MagickoLineSpace, type MagickoLineSpaceProps, MagickoLink, MagickoLink4, type MagickoLink4Props, type MagickoLinkProps, MagickoLocation, type MagickoLocationProps, MagickoLocationSlash, type MagickoLocationSlashProps, MagickoLog, type MagickoLogProps, MagickoLogin01, type MagickoLogin01Props, MagickoLogin02, type MagickoLogin02Props, MagickoLogout01, type MagickoLogout01Props, MagickoLogout02, type MagickoLogout02Props, MagickoLoveShine, type MagickoLoveShineProps, MagickoMagicStar, type MagickoMagicStarProps, MagickoMagicpen, type MagickoMagicpenProps, MagickoMan, type MagickoManProps, MagickoMap, MagickoMap1, type MagickoMap1Props, type MagickoMapProps, MagickoMath, type MagickoMathProps, MagickoMaximize, MagickoMaximize1, type MagickoMaximize1Props, MagickoMaximize2, MagickoMaximize21, type MagickoMaximize21Props, type MagickoMaximize2Props, MagickoMaximize3, type MagickoMaximize3Props, MagickoMaximize4, type MagickoMaximize4Props, MagickoMaximizeCircle, type MagickoMaximizeCircleProps, type MagickoMaximizeProps, MagickoMaximizefinger, type MagickoMaximizefingerProps, MagickoMenu, MagickoMenu1, type MagickoMenu1Props, MagickoMenuBoard, type MagickoMenuBoardProps, type MagickoMenuProps, MagickoMessageFavorite, type MagickoMessageFavoriteProps, MagickoMessageNotif, type MagickoMessageNotifProps, MagickoMessageSearch, type MagickoMessageSearchProps, MagickoMessageText, type MagickoMessageTextProps, MagickoMicrophone, MagickoMicrophone1, type MagickoMicrophone1Props, MagickoMicrophone2, MagickoMicrophone21, type MagickoMicrophone21Props, type MagickoMicrophone2Props, MagickoMicrophone3, type MagickoMicrophone3Props, type MagickoMicrophoneProps, MagickoMicrophoneSlash, MagickoMicrophoneSlash1, type MagickoMicrophoneSlash1Props, type MagickoMicrophoneSlashProps, MagickoMiddleFinger, type MagickoMiddleFingerProps, MagickoMinus, MagickoMinus1, type MagickoMinus1Props, MagickoMinusCircle, type MagickoMinusCircleProps, type MagickoMinusProps, MagickoMinusSquare, type MagickoMinusSquareProps, MagickoMirroringScreen, type MagickoMirroringScreenProps, MagickoMobile, MagickoMobile1, type MagickoMobile1Props, type MagickoMobileProps, MagickoMoney, MagickoMoney1, type MagickoMoney1Props, MagickoMoney2, MagickoMoney21, type MagickoMoney21Props, type MagickoMoney2Props, MagickoMoney3, type MagickoMoney3Props, MagickoMoney4, type MagickoMoney4Props, type MagickoMoneyProps, MagickoMoneys, type MagickoMoneysProps, MagickoMonitor1, MagickoMonitor11, type MagickoMonitor11Props, type MagickoMonitor1Props, MagickoMonitorMobile1, type MagickoMonitorMobile1Props, MagickoMonitorRecorder1, type MagickoMonitorRecorder1Props, MagickoMoon, type MagickoMoonProps, MagickoMountains, type MagickoMountainsProps, MagickoMouse1, MagickoMouse11, type MagickoMouse11Props, type MagickoMouse1Props, MagickoMouse21, type MagickoMouse21Props, MagickoMouse31, type MagickoMouse31Props, MagickoMushroom, type MagickoMushroomProps, MagickoMusic, MagickoMusicFilter, type MagickoMusicFilterProps, MagickoMusicLibrary2, type MagickoMusicLibrary2Props, MagickoMusicPlay, type MagickoMusicPlayProps, MagickoMusicPlaylist, type MagickoMusicPlaylistProps, type MagickoMusicProps, MagickoMusicalNoteAi, type MagickoMusicalNoteAiProps, MagickoMusicnote, type MagickoMusicnoteProps, MagickoNext, type MagickoNextProps, MagickoNote, MagickoNote1, MagickoNote11, type MagickoNote11Props, type MagickoNote1Props, MagickoNote2, MagickoNote21, type MagickoNote21Props, type MagickoNote2Props, MagickoNoteAdd, type MagickoNoteAddProps, MagickoNoteFavorite, type MagickoNoteFavoriteProps, type MagickoNoteProps, MagickoNoteRemove, type MagickoNoteRemoveProps, MagickoNoteText, type MagickoNoteTextProps, MagickoNotification, MagickoNotification2, type MagickoNotification2Props, MagickoNotificationBing, type MagickoNotificationBingProps, MagickoNotificationCircle, type MagickoNotificationCircleProps, type MagickoNotificationProps, MagickoOak, type MagickoOakProps, MagickoPadlock, type MagickoPadlockProps, MagickoPaintBrush2, type MagickoPaintBrush2Props, MagickoPaintRoller, type MagickoPaintRollerProps, MagickoPaintbucket, type MagickoPaintbucketProps, MagickoPaperclip, MagickoPaperclip2, type MagickoPaperclip2Props, type MagickoPaperclipProps, MagickoParagraphspacing, type MagickoParagraphspacingProps, MagickoPartlycloudy, type MagickoPartlycloudyProps, MagickoPause, type MagickoPauseProps, MagickoPeople, type MagickoPeopleProps, MagickoPercentageCircle, type MagickoPercentageCircleProps, MagickoPercentageSquare, type MagickoPercentageSquareProps, MagickoPersonalcard, type MagickoPersonalcardProps, MagickoPlay, type MagickoPlayProps, MagickoPlayfinger, type MagickoPlayfingerProps, MagickoPoint, type MagickoPointProps, MagickoPointfinger, type MagickoPointfingerProps, MagickoPresentationChart, type MagickoPresentationChartProps, MagickoPrevious, type MagickoPreviousProps, MagickoPrinter, MagickoPrinter1, type MagickoPrinter1Props, type MagickoPrinterProps, MagickoPrinterSlash, type MagickoPrinterSlashProps, MagickoProfile, MagickoProfile1, type MagickoProfile1Props, MagickoProfile2user, type MagickoProfile2userProps, MagickoProfileAdd, type MagickoProfileAddProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoProfileDelete, type MagickoProfileDeleteProps, type MagickoProfileProps, MagickoProfileRemove, type MagickoProfileRemoveProps, MagickoProfileTick, type MagickoProfileTickProps, MagickoProtectfinger, type MagickoProtectfingerProps, MagickoPushbutton, type MagickoPushbuttonProps, MagickoPushfinger, type MagickoPushfingerProps, MagickoQuestionBubble, type MagickoQuestionBubbleProps, MagickoQuestionCircle, type MagickoQuestionCircleProps, MagickoQuestionSquare, type MagickoQuestionSquareProps, MagickoQuoteDown, type MagickoQuoteDownProps, MagickoQuoteUp, type MagickoQuoteUpProps, MagickoRam, MagickoRam2, type MagickoRam2Props, type MagickoRamProps, MagickoReceipt, MagickoReceipt1, MagickoReceipt11, type MagickoReceipt11Props, type MagickoReceipt1Props, MagickoReceipt2, MagickoReceipt21, type MagickoReceipt21Props, type MagickoReceipt2Props, MagickoReceiptAdd, type MagickoReceiptAddProps, MagickoReceiptDiscount, type MagickoReceiptDiscountProps, MagickoReceiptDisscount, type MagickoReceiptDisscountProps, MagickoReceiptEdit, type MagickoReceiptEditProps, MagickoReceiptItem, type MagickoReceiptItemProps, MagickoReceiptMinus, type MagickoReceiptMinusProps, type MagickoReceiptProps, MagickoReceiptSearch, type MagickoReceiptSearchProps, MagickoReceiptSquare, type MagickoReceiptSquareProps, MagickoReceiptText, type MagickoReceiptTextProps, MagickoReceiveCloud, type MagickoReceiveCloudProps, MagickoReceiveSquare01, type MagickoReceiveSquare01Props, MagickoReceiveSquare02, type MagickoReceiveSquare02Props, MagickoReceived, type MagickoReceivedProps, MagickoRecord, type MagickoRecordProps, MagickoRedoArrow, type MagickoRedoArrowProps, MagickoRefreshArrow01, type MagickoRefreshArrow01Props, MagickoRefreshArrow02, type MagickoRefreshArrow02Props, MagickoRefreshCircle, type MagickoRefreshCircleProps, MagickoRefreshCloud, type MagickoRefreshCloudProps, MagickoRefreshLeft, type MagickoRefreshLeftProps, MagickoRefreshRight, type MagickoRefreshRightProps, MagickoRefreshSquare, type MagickoRefreshSquareProps, MagickoRelaxed, type MagickoRelaxedProps, MagickoRepeatArrow, type MagickoRepeatArrowProps, MagickoRepeatArrows, type MagickoRepeatArrowsProps, MagickoRepeatCircle, type MagickoRepeatCircleProps, MagickoRepeateMusic, type MagickoRepeateMusicProps, MagickoRepeateOne, type MagickoRepeateOneProps, MagickoReverseTimeArrow, type MagickoReverseTimeArrowProps, MagickoRightCloud, type MagickoRightCloudProps, MagickoRotateLeft, MagickoRotateLeft1, type MagickoRotateLeft1Props, type MagickoRotateLeftProps, MagickoRotateRight, MagickoRotateRight1, type MagickoRotateRight1Props, type MagickoRotateRightProps, MagickoRowHorizontal, type MagickoRowHorizontalProps, MagickoRowVertical, type MagickoRowVerticalProps, MagickoSad3, type MagickoSad3Props, MagickoSadFace, type MagickoSadFaceProps, MagickoSagittarius, type MagickoSagittariusProps, MagickoSatisfied, type MagickoSatisfiedProps, MagickoSave2, type MagickoSave2Props, MagickoSaveAdd, type MagickoSaveAddProps, MagickoSaveMinus, type MagickoSaveMinusProps, MagickoSaveRemove, type MagickoSaveRemoveProps, MagickoScheduled1, type MagickoScheduled1Props, MagickoScreenmirroring, type MagickoScreenmirroringProps, MagickoScroll01, type MagickoScroll01Props, MagickoScroll02, type MagickoScroll02Props, MagickoScrollfinger, type MagickoScrollfingerProps, MagickoSearch, MagickoSearchCloud, type MagickoSearchCloudProps, type MagickoSearchProps, MagickoSearchZoomIn1, type MagickoSearchZoomIn1Props, MagickoSearchZoomOut1, type MagickoSearchZoomOut1Props, MagickoSecurity, type MagickoSecurityProps, MagickoSecuritySafe, type MagickoSecuritySafeProps, MagickoSecurityUser, type MagickoSecurityUserProps, MagickoSend, MagickoSend1, type MagickoSend1Props, MagickoSend2, MagickoSend21, type MagickoSend21Props, type MagickoSend2Props, MagickoSendCloud, type MagickoSendCloudProps, type MagickoSendProps, MagickoSendReceiveCloud, type MagickoSendReceiveCloudProps, MagickoSendSquare01, type MagickoSendSquare01Props, MagickoSendSquare02, type MagickoSendSquare02Props, MagickoSetting2, type MagickoSetting2Props, MagickoSetting3, type MagickoSetting3Props, MagickoSetting4, type MagickoSetting4Props, MagickoSetting5, type MagickoSetting5Props, MagickoSettings, MagickoSettings1, type MagickoSettings1Props, type MagickoSettingsProps, MagickoShare, type MagickoShareProps, MagickoShiningHeart, type MagickoShiningHeartProps, MagickoShip, type MagickoShipProps, MagickoShop, MagickoShop1, type MagickoShop1Props, type MagickoShopProps, MagickoShoppingBag, type MagickoShoppingBagProps, MagickoShoppingCart, type MagickoShoppingCartProps, MagickoShuffle, type MagickoShuffleProps, MagickoSidebarBottom, type MagickoSidebarBottomProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSidebarRight, type MagickoSidebarRightProps, MagickoSidebarTop, type MagickoSidebarTopProps, MagickoSignedCloud, type MagickoSignedCloudProps, MagickoSimcard, MagickoSimcard1, type MagickoSimcard1Props, MagickoSimcard2, type MagickoSimcard2Props, type MagickoSimcardProps, MagickoSlash, type MagickoSlashProps, MagickoSleepZzz, type MagickoSleepZzzProps, MagickoSmallcaps, type MagickoSmallcapsProps, MagickoSmartBag, type MagickoSmartBagProps, MagickoSmartCar, type MagickoSmartCarProps, MagickoSmartCursor, type MagickoSmartCursorProps, MagickoSmartLockAi, type MagickoSmartLockAiProps, MagickoSmile, type MagickoSmileProps, MagickoSmileys, type MagickoSmileysProps, MagickoSmilingWithHeart, type MagickoSmilingWithHeartProps, MagickoSms, MagickoSmsNotification, type MagickoSmsNotificationProps, type MagickoSmsProps, MagickoSnowflake, type MagickoSnowflakeProps, MagickoSort, MagickoSortAdd, type MagickoSortAddProps, MagickoSortAscending, type MagickoSortAscendingProps, MagickoSortCheck, type MagickoSortCheckProps, MagickoSortDescending, type MagickoSortDescendingProps, type MagickoSortProps, MagickoSortRemove, type MagickoSortRemoveProps, MagickoSound, MagickoSound1, type MagickoSound1Props, type MagickoSoundProps, MagickoSpeaker, MagickoSpeaker1, type MagickoSpeaker1Props, type MagickoSpeakerProps, MagickoSquarefinger, type MagickoSquarefingerProps, MagickoStar, type MagickoStarProps, MagickoStarSlash, type MagickoStarSlashProps, MagickoStars, MagickoStars1, type MagickoStars1Props, type MagickoStarsProps, MagickoStatusUp, type MagickoStatusUpProps, MagickoSticker, type MagickoStickerProps, MagickoStickynote, type MagickoStickynoteProps, MagickoStop, type MagickoStopProps, MagickoStory, type MagickoStoryProps, MagickoSubtitle, type MagickoSubtitleProps, MagickoSun, MagickoSun1, type MagickoSun1Props, MagickoSunFog, type MagickoSunFogProps, type MagickoSunProps, MagickoSupport, MagickoSupport1, type MagickoSupport1Props, type MagickoSupportProps, MagickoSwapHorizontal01, type MagickoSwapHorizontal01Props, MagickoSwapHorizontal02, type MagickoSwapHorizontal02Props, MagickoSwapHorizontal03, type MagickoSwapHorizontal03Props, MagickoSweatSmile, type MagickoSweatSmileProps, MagickoTag, MagickoTag2, type MagickoTag2Props, MagickoTagCross, type MagickoTagCrossProps, type MagickoTagProps, MagickoTagUser, type MagickoTagUserProps, MagickoTask, type MagickoTaskProps, MagickoTaskSquare, type MagickoTaskSquareProps, MagickoTeacher, type MagickoTeacherProps, MagickoTelescope, MagickoTelescope1, type MagickoTelescope1Props, type MagickoTelescopeProps, MagickoText, MagickoTextBold, type MagickoTextBoldProps, MagickoTextItalic, type MagickoTextItalicProps, type MagickoTextProps, MagickoTextUnderline, type MagickoTextUnderlineProps, MagickoTextalignCenter, type MagickoTextalignCenterProps, MagickoTextalignJustifycenter, type MagickoTextalignJustifycenterProps, MagickoTextalignJustifyleft, type MagickoTextalignJustifyleftProps, MagickoTextalignJustifyright, type MagickoTextalignJustifyrightProps, MagickoTextalignLeft, type MagickoTextalignLeftProps, MagickoTextalignRight, type MagickoTextalignRightProps, MagickoTickCircle, type MagickoTickCircleProps, MagickoTickSquare, type MagickoTickSquareProps, MagickoTicket, MagickoTicket1, type MagickoTicket1Props, MagickoTicket2, type MagickoTicket2Props, MagickoTicketDiscount, type MagickoTicketDiscountProps, MagickoTicketExpired, type MagickoTicketExpiredProps, type MagickoTicketProps, MagickoTicketStar, type MagickoTicketStarProps, MagickoTimer, type MagickoTimerProps, MagickoToLeftArrow, type MagickoToLeftArrowProps, MagickoToRightArrow, type MagickoToRightArrowProps, MagickoToleft, type MagickoToleftProps, MagickoTone, type MagickoToneProps, MagickoTongueClosedEyes, type MagickoTongueClosedEyesProps, MagickoTopBottomGrid, type MagickoTopBottomGridProps, MagickoToright, type MagickoTorightProps, MagickoTouchFinger, type MagickoTouchFingerProps, MagickoTouchIdFinger, type MagickoTouchIdFingerProps, MagickoTrade1, type MagickoTrade1Props, MagickoTransactionArrows, type MagickoTransactionArrowsProps, MagickoTransactionMinus, type MagickoTransactionMinusProps, MagickoTranslate, MagickoTranslate1, type MagickoTranslate1Props, MagickoTranslate2, type MagickoTranslate2Props, type MagickoTranslateProps, MagickoTrash, type MagickoTrashProps, MagickoTrendDown, type MagickoTrendDownProps, MagickoTrendUp, type MagickoTrendUpProps, MagickoUndoArrow, type MagickoUndoArrowProps, MagickoUnlimited, type MagickoUnlimitedProps, MagickoUploadArrow, type MagickoUploadArrowProps, MagickoUploadHorizontalArrow, type MagickoUploadHorizontalArrowProps, MagickoUpsideDownFace, type MagickoUpsideDownFaceProps, MagickoUser, type MagickoUserProps, MagickoVIPCloud, type MagickoVIPCloudProps, MagickoVerify, type MagickoVerifyProps, MagickoVideo, MagickoVideo1, type MagickoVideo1Props, MagickoVideoHorizontal, type MagickoVideoHorizontalProps, MagickoVideoPlay, type MagickoVideoPlayProps, type MagickoVideoProps, MagickoVideoSlash, type MagickoVideoSlashProps, MagickoVoiceCircle, type MagickoVoiceCircleProps, MagickoVoiceSquare, type MagickoVoiceSquareProps, MagickoVolumeCross, type MagickoVolumeCrossProps, MagickoVolumeHigh, type MagickoVolumeHighProps, MagickoVolumeLow, MagickoVolumeLow1, type MagickoVolumeLow1Props, type MagickoVolumeLowProps, MagickoVolumeMute, type MagickoVolumeMuteProps, MagickoVolumeSlash, type MagickoVolumeSlashProps, MagickoVolumeUp, type MagickoVolumeUpProps, MagickoWarning2, type MagickoWarning2Props, MagickoWatch1, MagickoWatch11, type MagickoWatch11Props, type MagickoWatch1Props, MagickoWatchStatus1, type MagickoWatchStatus1Props, MagickoWeary, type MagickoWearyProps, MagickoWeight1, MagickoWeight11, type MagickoWeight11Props, type MagickoWeight1Props, MagickoWind, MagickoWind1, type MagickoWind1Props, MagickoWind2, type MagickoWind2Props, type MagickoWindProps, MagickoWoman, type MagickoWomanProps, MagickoZoomIn, type MagickoZoomInProps, MagickoZoomOut, type MagickoZoomOutProps, MainComponent1, type MainComponent1Props, Mask1, Mask11, type Mask11Props, type Mask1Props, Mask21, type Mask21Props, Mask31, type Mask31Props, MeshTopology1, type MeshTopology1Props, MessageAdd1, MessageAdd11, type MessageAdd11Props, type MessageAdd1Props, MessageBubble1, type MessageBubble1Props, MessageCircle1, type MessageCircle1Props, MessageEdit1, type MessageEdit1Props, MessageMinus1, type MessageMinus1Props, MessageRemove1, type MessageRemove1Props, MessageSquare1, type MessageSquare1Props, MessageText11, type MessageText11Props, MessageTick1, type MessageTick1Props, MessageTime1, type MessageTime1Props, Messages1, type Messages1Props, Messages21, type Messages21Props, MessagesBubbles21, type MessagesBubbles21Props, Milk1, type Milk1Props, Mirror1, Mirror11, type Mirror11Props, type Mirror1Props, Mirror21, type Mirror21Props, MoneyAdd1, type MoneyAdd1Props, MoneyChange1, type MoneyChange1Props, MoneyForbidden1, type MoneyForbidden1Props, MoneyRecive1, type MoneyRecive1Props, MoneyRemove1, type MoneyRemove1Props, MoneySend1, type MoneySend1Props, MoneyTick1, type MoneyTick1Props, MoneyTime1, type MoneyTime1Props, MoreCircle1, type MoreCircle1Props, MoreSquare1, type MoreSquare1Props, MouseCircle1, type MouseCircle1Props, MouseSquare1, type MouseSquare1Props, Network1, type Network1Props, OmegaCircle1, type OmegaCircle1Props, OmegaSquare1, type OmegaSquare1Props, PaintBrush1, type PaintBrush1Props, PenBrush, type PenBrushProps, Pet1, type Pet1Props, PictureFrame1, type PictureFrame1Props, Plesk1, type Plesk1Props, Radar1, Radar11, type Radar11Props, type Radar1Props, Radar21, type Radar21Props, Ranking1, Ranking11, type Ranking11Props, type Ranking1Props, Reserve1, type Reserve1Props, RouteSquare1, type RouteSquare1Props, Routing1, type Routing1Props, Routing21, type Routing21Props, SafeHome1, type SafeHome1Props, SecurityCard1, type SecurityCard1Props, Share1, type Share1Props, Signpost1, type Signpost1Props, Slider1, type Slider1Props, SliderHorizontal1, SliderHorizontal11, type SliderHorizontal11Props, type SliderHorizontal1Props, SliderVertical1, SliderVertical11, type SliderVertical11Props, type SliderVertical1Props, SmartHome1, type SmartHome1Props, SmsEdit1, type SmsEdit1Props, SmsSearch1, type SmsSearch1Props, SmsStar1, type SmsStar1Props, SmsTracking1, type SmsTracking1Props, Sound1, type Sound1Props, Speedometer1, Speedometer11, type Speedometer11Props, type Speedometer1Props, StarTopology1, type StarTopology1Props, Status1, Status11, type Status11Props, type Status1Props, Strongbox1, Strongbox11, type Strongbox11Props, type Strongbox1Props, Strongbox21, type Strongbox21Props, TagRight1, type TagRight1Props, TrashSquare1, type TrashSquare1Props, Tree1, type Tree1Props, Truck1, Truck11, type Truck11Props, type Truck1Props, TruckFast1, type TruckFast1Props, TruckRemove1, type TruckRemove1Props, TruckTick1, type TruckTick1Props, TruckTime1, type TruckTime1Props, Wallet1, Wallet11, type Wallet11Props, type Wallet1Props, Wallet21, Wallet211, type Wallet211Props, type Wallet21Props, Wallet31, Wallet311, type Wallet311Props, type Wallet31Props, WalletAdd1, WalletAdd11, type WalletAdd11Props, type WalletAdd1Props, WalletCheck1, type WalletCheck1Props, WalletMinus1, type WalletMinus1Props, WalletMoney1, type WalletMoney1Props, WalletRemove1, type WalletRemove1Props, WalletSearch1, WalletSearch11, type WalletSearch11Props, type WalletSearch1Props, Wifi1, Wifi11, type Wifi11Props, type Wifi1Props, WifiSquare1, type WifiSquare1Props };
|
|
19749
|
+
/**
|
|
19750
|
+
* Props for the X icon component
|
|
19751
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19752
|
+
*/
|
|
19753
|
+
interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
19754
|
+
size?: number | string;
|
|
19755
|
+
}
|
|
19756
|
+
/**
|
|
19757
|
+
* X icon component
|
|
19758
|
+
* @example
|
|
19759
|
+
* ```tsx
|
|
19760
|
+
* import { X } from 'magick-icons';
|
|
19761
|
+
*
|
|
19762
|
+
* <X size={24} className="text-blue-500" strokeWidth={2} />
|
|
19763
|
+
* ```
|
|
19764
|
+
*/
|
|
19765
|
+
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19766
|
+
|
|
19767
|
+
export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiScience1, type AiScience1Props, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, BatteryCharging1, type BatteryCharging1Props, BatteryDisable1, type BatteryDisable1Props, BatteryEmpty1, BatteryEmpty11, type BatteryEmpty11Props, type BatteryEmpty1Props, BatteryFull1, type BatteryFull1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Eraser1, Eraser11, type Eraser11Props, type Eraser1Props, Eraser21, type Eraser21Props, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, type MagickoCalendarProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, MagickoGrid6, type MagickoGrid6Props, MagickoGrid7, type MagickoGrid7Props, MagickoGrid8, type MagickoGrid8Props, MagickoGrid9, type MagickoGrid9Props, MagickoGridAdd, type MagickoGridAddProps, MagickoGridEqual, type MagickoGridEqualProps, MagickoGrids4, type MagickoGrids4Props, MagickoGrinning, type MagickoGrinningProps, MagickoHandcircle, type MagickoHandcircleProps, MagickoHandtohand, type MagickoHandtohandProps, MagickoHappy, MagickoHappy1, type MagickoHappy1Props, type MagickoHappyProps, MagickoHappyemoji, type MagickoHappyemojiProps, MagickoHashtag, MagickoHashtag1, type MagickoHashtag1Props, type MagickoHashtagProps, MagickoHeadphone, type MagickoHeadphoneProps, MagickoHeadphones, type MagickoHeadphonesProps, MagickoHealth, MagickoHealth1, type MagickoHealth1Props, type MagickoHealthProps, MagickoHeart, MagickoHeart1, type MagickoHeart1Props, type MagickoHeartProps, MagickoHeartTap, type MagickoHeartTapProps, MagickoHearted, type MagickoHeartedProps, MagickoHome, MagickoHome2, MagickoHome21, type MagickoHome21Props, type MagickoHome2Props, MagickoHomeHashtag, type MagickoHomeHashtagProps, type MagickoHomeProps, MagickoHomeTrendDown, type MagickoHomeTrendDownProps, MagickoHomeTrendUp, type MagickoHomeTrendUpProps, MagickoHospital, MagickoHospital1, type MagickoHospital1Props, MagickoHospital2, type MagickoHospital2Props, type MagickoHospitalProps, MagickoHouse, MagickoHouse2, type MagickoHouse2Props, type MagickoHouseProps, MagickoImage, type MagickoImageProps, MagickoImport01, type MagickoImport01Props, MagickoImportArrow01, type MagickoImportArrow01Props, MagickoImportArrow02, type MagickoImportArrow02Props, MagickoImportCircle01, type MagickoImportCircle01Props, MagickoImportCircle02, type MagickoImportCircle02Props, MagickoInfoCircle, MagickoInfoCircle1, type MagickoInfoCircle1Props, type MagickoInfoCircleProps, MagickoInfoSquare, type MagickoInfoSquareProps, MagickoInformation, type MagickoInformationProps, MagickoJoy, MagickoJoy2, type MagickoJoy2Props, type MagickoJoyProps, MagickoKey, type MagickoKeyProps, MagickoKeyboard, MagickoKeyboard1, type MagickoKeyboard1Props, MagickoKeyboardOpen, type MagickoKeyboardOpenProps, type MagickoKeyboardProps, MagickoKissing, MagickoKissing1, type MagickoKissing1Props, type MagickoKissingProps, MagickoLamp, MagickoLamp1, type MagickoLamp1Props, MagickoLamp2, type MagickoLamp2Props, MagickoLampCharge, type MagickoLampChargeProps, MagickoLampOn, type MagickoLampOnProps, type MagickoLampProps, MagickoLampSlash, type MagickoLampSlashProps, MagickoLanguage, MagickoLanguageCircle, type MagickoLanguageCircleProps, type MagickoLanguageProps, MagickoLanguageSquare, type MagickoLanguageSquareProps, MagickoLayer, type MagickoLayerProps, MagickoLayout, type MagickoLayoutProps, MagickoLeaf2, type MagickoLeaf2Props, MagickoLeaf3, type MagickoLeaf3Props, MagickoLeafs, type MagickoLeafsProps, MagickoLeftBarGrid, type MagickoLeftBarGridProps, MagickoLeftCloud, type MagickoLeftCloudProps, MagickoLeftRightCloud, type MagickoLeftRightCloudProps, MagickoLeftSidebarGrid, type MagickoLeftSidebarGridProps, MagickoLightning, type MagickoLightningProps, MagickoLike1, type MagickoLike1Props, MagickoLikeDislike, type MagickoLikeDislikeProps, MagickoLineSpace, type MagickoLineSpaceProps, MagickoLink, MagickoLink4, type MagickoLink4Props, type MagickoLinkProps, MagickoLocation, type MagickoLocationProps, MagickoLocationSlash, type MagickoLocationSlashProps, MagickoLog, type MagickoLogProps, MagickoLogin01, type MagickoLogin01Props, MagickoLogin02, type MagickoLogin02Props, MagickoLogout01, type MagickoLogout01Props, MagickoLogout02, type MagickoLogout02Props, MagickoLoveShine, type MagickoLoveShineProps, MagickoMagicStar, type MagickoMagicStarProps, MagickoMagicpen, type MagickoMagicpenProps, MagickoMan, type MagickoManProps, MagickoMap, MagickoMap1, type MagickoMap1Props, type MagickoMapProps, MagickoMath, type MagickoMathProps, MagickoMaximize, MagickoMaximize1, type MagickoMaximize1Props, MagickoMaximize2, MagickoMaximize21, type MagickoMaximize21Props, type MagickoMaximize2Props, MagickoMaximize3, type MagickoMaximize3Props, MagickoMaximize4, type MagickoMaximize4Props, MagickoMaximizeCircle, type MagickoMaximizeCircleProps, type MagickoMaximizeProps, MagickoMaximizefinger, type MagickoMaximizefingerProps, MagickoMenu, MagickoMenu1, type MagickoMenu1Props, MagickoMenuBoard, type MagickoMenuBoardProps, type MagickoMenuProps, MagickoMessageFavorite, type MagickoMessageFavoriteProps, MagickoMessageNotif, type MagickoMessageNotifProps, MagickoMessageSearch, type MagickoMessageSearchProps, MagickoMessageText, type MagickoMessageTextProps, MagickoMicrophone, MagickoMicrophone1, type MagickoMicrophone1Props, MagickoMicrophone2, MagickoMicrophone21, type MagickoMicrophone21Props, type MagickoMicrophone2Props, MagickoMicrophone3, type MagickoMicrophone3Props, type MagickoMicrophoneProps, MagickoMicrophoneSlash, MagickoMicrophoneSlash1, type MagickoMicrophoneSlash1Props, type MagickoMicrophoneSlashProps, MagickoMiddleFinger, type MagickoMiddleFingerProps, MagickoMinus, MagickoMinus1, type MagickoMinus1Props, MagickoMinusCircle, type MagickoMinusCircleProps, type MagickoMinusProps, MagickoMinusSquare, type MagickoMinusSquareProps, MagickoMirroringScreen, type MagickoMirroringScreenProps, MagickoMobile, MagickoMobile1, type MagickoMobile1Props, type MagickoMobileProps, MagickoMoney, MagickoMoney1, type MagickoMoney1Props, MagickoMoney2, MagickoMoney21, type MagickoMoney21Props, type MagickoMoney2Props, MagickoMoney3, type MagickoMoney3Props, MagickoMoney4, type MagickoMoney4Props, type MagickoMoneyProps, MagickoMoneys, type MagickoMoneysProps, MagickoMonitor1, MagickoMonitor11, type MagickoMonitor11Props, type MagickoMonitor1Props, MagickoMonitorMobile1, type MagickoMonitorMobile1Props, MagickoMonitorRecorder1, type MagickoMonitorRecorder1Props, MagickoMoon, type MagickoMoonProps, MagickoMountains, type MagickoMountainsProps, MagickoMouse1, MagickoMouse11, type MagickoMouse11Props, type MagickoMouse1Props, MagickoMouse21, type MagickoMouse21Props, MagickoMouse31, type MagickoMouse31Props, MagickoMushroom, type MagickoMushroomProps, MagickoMusic, MagickoMusicFilter, type MagickoMusicFilterProps, MagickoMusicLibrary2, type MagickoMusicLibrary2Props, MagickoMusicPlay, type MagickoMusicPlayProps, MagickoMusicPlaylist, type MagickoMusicPlaylistProps, type MagickoMusicProps, MagickoMusicalNoteAi, type MagickoMusicalNoteAiProps, MagickoMusicnote, type MagickoMusicnoteProps, MagickoNext, type MagickoNextProps, MagickoNote, MagickoNote1, MagickoNote11, type MagickoNote11Props, type MagickoNote1Props, MagickoNote2, MagickoNote21, type MagickoNote21Props, type MagickoNote2Props, MagickoNoteAdd, type MagickoNoteAddProps, MagickoNoteFavorite, type MagickoNoteFavoriteProps, type MagickoNoteProps, MagickoNoteRemove, type MagickoNoteRemoveProps, MagickoNoteText, type MagickoNoteTextProps, MagickoNotification, MagickoNotification2, type MagickoNotification2Props, MagickoNotificationBing, type MagickoNotificationBingProps, MagickoNotificationCircle, type MagickoNotificationCircleProps, type MagickoNotificationProps, MagickoOak, type MagickoOakProps, MagickoPadlock, type MagickoPadlockProps, MagickoPaintBrush2, type MagickoPaintBrush2Props, MagickoPaintRoller, type MagickoPaintRollerProps, MagickoPaintbucket, type MagickoPaintbucketProps, MagickoPaperclip, MagickoPaperclip2, type MagickoPaperclip2Props, type MagickoPaperclipProps, MagickoParagraphspacing, type MagickoParagraphspacingProps, MagickoPartlycloudy, type MagickoPartlycloudyProps, MagickoPause, type MagickoPauseProps, MagickoPeople, type MagickoPeopleProps, MagickoPercentageCircle, type MagickoPercentageCircleProps, MagickoPercentageSquare, type MagickoPercentageSquareProps, MagickoPersonalcard, type MagickoPersonalcardProps, MagickoPlay, type MagickoPlayProps, MagickoPlayfinger, type MagickoPlayfingerProps, MagickoPoint, type MagickoPointProps, MagickoPointfinger, type MagickoPointfingerProps, MagickoPresentationChart, type MagickoPresentationChartProps, MagickoPrevious, type MagickoPreviousProps, MagickoPrinter, MagickoPrinter1, type MagickoPrinter1Props, type MagickoPrinterProps, MagickoPrinterSlash, type MagickoPrinterSlashProps, MagickoProfile, MagickoProfile1, type MagickoProfile1Props, MagickoProfile2user, type MagickoProfile2userProps, MagickoProfileAdd, type MagickoProfileAddProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoProfileDelete, type MagickoProfileDeleteProps, type MagickoProfileProps, MagickoProfileRemove, type MagickoProfileRemoveProps, MagickoProfileTick, type MagickoProfileTickProps, MagickoProtectfinger, type MagickoProtectfingerProps, MagickoPushbutton, type MagickoPushbuttonProps, MagickoPushfinger, type MagickoPushfingerProps, MagickoQuestionBubble, type MagickoQuestionBubbleProps, MagickoQuestionCircle, type MagickoQuestionCircleProps, MagickoQuestionSquare, type MagickoQuestionSquareProps, MagickoQuoteDown, type MagickoQuoteDownProps, MagickoQuoteUp, type MagickoQuoteUpProps, MagickoRam, MagickoRam2, type MagickoRam2Props, type MagickoRamProps, MagickoReceipt, MagickoReceipt1, MagickoReceipt11, type MagickoReceipt11Props, type MagickoReceipt1Props, MagickoReceipt2, MagickoReceipt21, type MagickoReceipt21Props, type MagickoReceipt2Props, MagickoReceiptAdd, type MagickoReceiptAddProps, MagickoReceiptDiscount, type MagickoReceiptDiscountProps, MagickoReceiptDisscount, type MagickoReceiptDisscountProps, MagickoReceiptEdit, type MagickoReceiptEditProps, MagickoReceiptItem, type MagickoReceiptItemProps, MagickoReceiptMinus, type MagickoReceiptMinusProps, type MagickoReceiptProps, MagickoReceiptSearch, type MagickoReceiptSearchProps, MagickoReceiptSquare, type MagickoReceiptSquareProps, MagickoReceiptText, type MagickoReceiptTextProps, MagickoReceiveCloud, type MagickoReceiveCloudProps, MagickoReceiveSquare01, type MagickoReceiveSquare01Props, MagickoReceiveSquare02, type MagickoReceiveSquare02Props, MagickoReceived, type MagickoReceivedProps, MagickoRecord, type MagickoRecordProps, MagickoRedoArrow, type MagickoRedoArrowProps, MagickoRefreshArrow01, type MagickoRefreshArrow01Props, MagickoRefreshArrow02, type MagickoRefreshArrow02Props, MagickoRefreshCircle, type MagickoRefreshCircleProps, MagickoRefreshCloud, type MagickoRefreshCloudProps, MagickoRefreshLeft, type MagickoRefreshLeftProps, MagickoRefreshRight, type MagickoRefreshRightProps, MagickoRefreshSquare, type MagickoRefreshSquareProps, MagickoRelaxed, type MagickoRelaxedProps, MagickoRepeatArrow, type MagickoRepeatArrowProps, MagickoRepeatArrows, type MagickoRepeatArrowsProps, MagickoRepeatCircle, type MagickoRepeatCircleProps, MagickoRepeateMusic, type MagickoRepeateMusicProps, MagickoRepeateOne, type MagickoRepeateOneProps, MagickoReverseTimeArrow, type MagickoReverseTimeArrowProps, MagickoRightCloud, type MagickoRightCloudProps, MagickoRotateLeft, MagickoRotateLeft1, type MagickoRotateLeft1Props, type MagickoRotateLeftProps, MagickoRotateRight, MagickoRotateRight1, type MagickoRotateRight1Props, type MagickoRotateRightProps, MagickoRowHorizontal, type MagickoRowHorizontalProps, MagickoRowVertical, type MagickoRowVerticalProps, MagickoSad3, type MagickoSad3Props, MagickoSadFace, type MagickoSadFaceProps, MagickoSagittarius, type MagickoSagittariusProps, MagickoSatisfied, type MagickoSatisfiedProps, MagickoSave2, type MagickoSave2Props, MagickoSaveAdd, type MagickoSaveAddProps, MagickoSaveMinus, type MagickoSaveMinusProps, MagickoSaveRemove, type MagickoSaveRemoveProps, MagickoScheduled1, type MagickoScheduled1Props, MagickoScreenmirroring, type MagickoScreenmirroringProps, MagickoScroll01, type MagickoScroll01Props, MagickoScroll02, type MagickoScroll02Props, MagickoScrollfinger, type MagickoScrollfingerProps, MagickoSearch, MagickoSearchCloud, type MagickoSearchCloudProps, type MagickoSearchProps, MagickoSearchZoomIn1, type MagickoSearchZoomIn1Props, MagickoSearchZoomOut1, type MagickoSearchZoomOut1Props, MagickoSecurity, type MagickoSecurityProps, MagickoSecuritySafe, type MagickoSecuritySafeProps, MagickoSecurityUser, type MagickoSecurityUserProps, MagickoSend, MagickoSend1, type MagickoSend1Props, MagickoSend2, MagickoSend21, type MagickoSend21Props, type MagickoSend2Props, MagickoSendCloud, type MagickoSendCloudProps, type MagickoSendProps, MagickoSendReceiveCloud, type MagickoSendReceiveCloudProps, MagickoSendSquare01, type MagickoSendSquare01Props, MagickoSendSquare02, type MagickoSendSquare02Props, MagickoSetting2, type MagickoSetting2Props, MagickoSetting3, type MagickoSetting3Props, MagickoSetting4, type MagickoSetting4Props, MagickoSetting5, type MagickoSetting5Props, MagickoSettings, MagickoSettings1, type MagickoSettings1Props, type MagickoSettingsProps, MagickoShare, type MagickoShareProps, MagickoShiningHeart, type MagickoShiningHeartProps, MagickoShip, type MagickoShipProps, MagickoShop, MagickoShop1, type MagickoShop1Props, type MagickoShopProps, MagickoShoppingBag, type MagickoShoppingBagProps, MagickoShoppingCart, type MagickoShoppingCartProps, MagickoShuffle, type MagickoShuffleProps, MagickoSidebarBottom, type MagickoSidebarBottomProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSidebarRight, type MagickoSidebarRightProps, MagickoSidebarTop, type MagickoSidebarTopProps, MagickoSignedCloud, type MagickoSignedCloudProps, MagickoSimcard, MagickoSimcard1, type MagickoSimcard1Props, MagickoSimcard2, type MagickoSimcard2Props, type MagickoSimcardProps, MagickoSlash, type MagickoSlashProps, MagickoSleepZzz, type MagickoSleepZzzProps, MagickoSmallcaps, type MagickoSmallcapsProps, MagickoSmartBag, type MagickoSmartBagProps, MagickoSmartCar, type MagickoSmartCarProps, MagickoSmartCursor, type MagickoSmartCursorProps, MagickoSmartLockAi, type MagickoSmartLockAiProps, MagickoSmile, type MagickoSmileProps, MagickoSmileys, type MagickoSmileysProps, MagickoSmilingWithHeart, type MagickoSmilingWithHeartProps, MagickoSms, MagickoSmsNotification, type MagickoSmsNotificationProps, type MagickoSmsProps, MagickoSnowflake, type MagickoSnowflakeProps, MagickoSort, MagickoSortAdd, type MagickoSortAddProps, MagickoSortAscending, type MagickoSortAscendingProps, MagickoSortCheck, type MagickoSortCheckProps, MagickoSortDescending, type MagickoSortDescendingProps, type MagickoSortProps, MagickoSortRemove, type MagickoSortRemoveProps, MagickoSound, MagickoSound1, type MagickoSound1Props, type MagickoSoundProps, MagickoSpeaker, MagickoSpeaker1, type MagickoSpeaker1Props, type MagickoSpeakerProps, MagickoSquarefinger, type MagickoSquarefingerProps, MagickoStar, type MagickoStarProps, MagickoStarSlash, type MagickoStarSlashProps, MagickoStars, MagickoStars1, type MagickoStars1Props, type MagickoStarsProps, MagickoStatusUp, type MagickoStatusUpProps, MagickoSticker, type MagickoStickerProps, MagickoStickynote, type MagickoStickynoteProps, MagickoStop, type MagickoStopProps, MagickoStory, type MagickoStoryProps, MagickoSubtitle, type MagickoSubtitleProps, MagickoSun, MagickoSun1, type MagickoSun1Props, MagickoSunFog, type MagickoSunFogProps, type MagickoSunProps, MagickoSupport, MagickoSupport1, type MagickoSupport1Props, type MagickoSupportProps, MagickoSwapHorizontal01, type MagickoSwapHorizontal01Props, MagickoSwapHorizontal02, type MagickoSwapHorizontal02Props, MagickoSwapHorizontal03, type MagickoSwapHorizontal03Props, MagickoSweatSmile, type MagickoSweatSmileProps, MagickoTag, MagickoTag2, type MagickoTag2Props, MagickoTagCross, type MagickoTagCrossProps, type MagickoTagProps, MagickoTagUser, type MagickoTagUserProps, MagickoTask, type MagickoTaskProps, MagickoTaskSquare, type MagickoTaskSquareProps, MagickoTeacher, type MagickoTeacherProps, MagickoTelescope, MagickoTelescope1, type MagickoTelescope1Props, type MagickoTelescopeProps, MagickoText, MagickoTextBold, type MagickoTextBoldProps, MagickoTextItalic, type MagickoTextItalicProps, type MagickoTextProps, MagickoTextUnderline, type MagickoTextUnderlineProps, MagickoTextalignCenter, type MagickoTextalignCenterProps, MagickoTextalignJustifycenter, type MagickoTextalignJustifycenterProps, MagickoTextalignJustifyleft, type MagickoTextalignJustifyleftProps, MagickoTextalignJustifyright, type MagickoTextalignJustifyrightProps, MagickoTextalignLeft, type MagickoTextalignLeftProps, MagickoTextalignRight, type MagickoTextalignRightProps, MagickoTickCircle, type MagickoTickCircleProps, MagickoTickSquare, type MagickoTickSquareProps, MagickoTicket, MagickoTicket1, type MagickoTicket1Props, MagickoTicket2, type MagickoTicket2Props, MagickoTicketDiscount, type MagickoTicketDiscountProps, MagickoTicketExpired, type MagickoTicketExpiredProps, type MagickoTicketProps, MagickoTicketStar, type MagickoTicketStarProps, MagickoTimer, type MagickoTimerProps, MagickoToLeftArrow, type MagickoToLeftArrowProps, MagickoToRightArrow, type MagickoToRightArrowProps, MagickoToleft, type MagickoToleftProps, MagickoTone, type MagickoToneProps, MagickoTongueClosedEyes, type MagickoTongueClosedEyesProps, MagickoTopBottomGrid, type MagickoTopBottomGridProps, MagickoToright, type MagickoTorightProps, MagickoTouchFinger, type MagickoTouchFingerProps, MagickoTouchIdFinger, type MagickoTouchIdFingerProps, MagickoTrade1, type MagickoTrade1Props, MagickoTransactionArrows, type MagickoTransactionArrowsProps, MagickoTransactionMinus, type MagickoTransactionMinusProps, MagickoTranslate, MagickoTranslate1, type MagickoTranslate1Props, MagickoTranslate2, type MagickoTranslate2Props, type MagickoTranslateProps, MagickoTrash, type MagickoTrashProps, MagickoTrendDown, type MagickoTrendDownProps, MagickoTrendUp, type MagickoTrendUpProps, MagickoUndoArrow, type MagickoUndoArrowProps, MagickoUnlimited, type MagickoUnlimitedProps, MagickoUploadArrow, type MagickoUploadArrowProps, MagickoUploadHorizontalArrow, type MagickoUploadHorizontalArrowProps, MagickoUpsideDownFace, type MagickoUpsideDownFaceProps, MagickoUser, type MagickoUserProps, MagickoVIPCloud, type MagickoVIPCloudProps, MagickoVerify, type MagickoVerifyProps, MagickoVideo, MagickoVideo1, type MagickoVideo1Props, MagickoVideoHorizontal, type MagickoVideoHorizontalProps, MagickoVideoPlay, type MagickoVideoPlayProps, type MagickoVideoProps, MagickoVideoSlash, type MagickoVideoSlashProps, MagickoVoiceCircle, type MagickoVoiceCircleProps, MagickoVoiceSquare, type MagickoVoiceSquareProps, MagickoVolumeCross, type MagickoVolumeCrossProps, MagickoVolumeHigh, type MagickoVolumeHighProps, MagickoVolumeLow, MagickoVolumeLow1, type MagickoVolumeLow1Props, type MagickoVolumeLowProps, MagickoVolumeMute, type MagickoVolumeMuteProps, MagickoVolumeSlash, type MagickoVolumeSlashProps, MagickoVolumeUp, type MagickoVolumeUpProps, MagickoWarning2, type MagickoWarning2Props, MagickoWatch1, MagickoWatch11, type MagickoWatch11Props, type MagickoWatch1Props, MagickoWatchStatus1, type MagickoWatchStatus1Props, MagickoWeary, type MagickoWearyProps, MagickoWeight1, MagickoWeight11, type MagickoWeight11Props, type MagickoWeight1Props, MagickoWind, MagickoWind1, type MagickoWind1Props, MagickoWind2, type MagickoWind2Props, type MagickoWindProps, MagickoWoman, type MagickoWomanProps, MagickoZoomIn, type MagickoZoomInProps, MagickoZoomOut, type MagickoZoomOutProps, MainComponent1, type MainComponent1Props, Marketing, type MarketingProps, Mask1, Mask11, type Mask11Props, type Mask1Props, Mask21, type Mask21Props, Mask31, type Mask31Props, MeshTopology1, type MeshTopology1Props, MessageAdd1, MessageAdd11, type MessageAdd11Props, type MessageAdd1Props, MessageBubble1, type MessageBubble1Props, MessageCircle1, type MessageCircle1Props, MessageEdit, MessageEdit1, type MessageEdit1Props, type MessageEditProps, MessageMinus1, type MessageMinus1Props, MessageRemove1, type MessageRemove1Props, MessageSquare1, type MessageSquare1Props, MessageText11, type MessageText11Props, MessageTick1, type MessageTick1Props, MessageTime1, type MessageTime1Props, Messages1, type Messages1Props, Messages21, type Messages21Props, MessagesBubbles21, type MessagesBubbles21Props, Milk1, type Milk1Props, Mirror1, Mirror11, type Mirror11Props, type Mirror1Props, Mirror21, type Mirror21Props, MoneyAdd1, type MoneyAdd1Props, MoneyChange1, type MoneyChange1Props, MoneyForbidden1, type MoneyForbidden1Props, MoneyRecive1, type MoneyRecive1Props, MoneyRemove1, type MoneyRemove1Props, MoneySend1, type MoneySend1Props, MoneyTick1, type MoneyTick1Props, MoneyTime1, type MoneyTime1Props, MoreCircle1, type MoreCircle1Props, MoreSquare1, type MoreSquare1Props, MouseCircle1, type MouseCircle1Props, MouseSquare1, type MouseSquare1Props, Network, Network1, type Network1Props, type NetworkProps, OmegaCircle1, type OmegaCircle1Props, OmegaSquare1, type OmegaSquare1Props, PA, type PAProps, PaintBrush1, type PaintBrush1Props, PenBrush, type PenBrushProps, Pet1, type Pet1Props, PictureFrame1, type PictureFrame1Props, Plesk1, type Plesk1Props, Radar1, Radar11, type Radar11Props, type Radar1Props, Radar21, type Radar21Props, Ranking1, Ranking11, type Ranking11Props, type Ranking1Props, Reserve1, type Reserve1Props, RouteSquare1, type RouteSquare1Props, Routing1, type Routing1Props, Routing21, type Routing21Props, SafeHome1, type SafeHome1Props, SecurityCard1, type SecurityCard1Props, Share1, type Share1Props, Signature, type SignatureProps, Signpost1, type Signpost1Props, Slider1, type Slider1Props, SliderHorizontal1, SliderHorizontal11, type SliderHorizontal11Props, type SliderHorizontal1Props, SliderVertical1, SliderVertical11, type SliderVertical11Props, type SliderVertical1Props, SmartHome1, type SmartHome1Props, SmsEdit1, type SmsEdit1Props, SmsSearch1, type SmsSearch1Props, SmsStar1, type SmsStar1Props, SmsTracking1, type SmsTracking1Props, Sound1, type Sound1Props, Speedometer1, Speedometer11, type Speedometer11Props, type Speedometer1Props, SquarePen1, type SquarePen1Props, StarTopology1, type StarTopology1Props, Status1, Status11, type Status11Props, type Status1Props, Strikethrough, type StrikethroughProps, Strongbox1, Strongbox11, type Strongbox11Props, type Strongbox1Props, Strongbox21, type Strongbox21Props, TagRight1, type TagRight1Props, Tasks, type TasksProps, Trash, type TrashProps, TrashSquare1, type TrashSquare1Props, Tree1, type Tree1Props, Truck1, Truck11, type Truck11Props, type Truck1Props, TruckFast1, type TruckFast1Props, TruckRemove1, type TruckRemove1Props, TruckTick1, type TruckTick1Props, TruckTime1, type TruckTime1Props, Video, type VideoProps, Wallet1, Wallet11, type Wallet11Props, type Wallet1Props, Wallet21, Wallet211, type Wallet211Props, type Wallet21Props, Wallet31, Wallet311, type Wallet311Props, type Wallet31Props, WalletAdd1, WalletAdd11, type WalletAdd11Props, type WalletAdd1Props, WalletCheck1, type WalletCheck1Props, WalletMinus1, type WalletMinus1Props, WalletMoney1, type WalletMoney1Props, WalletRemove1, type WalletRemove1Props, WalletSearch1, WalletSearch11, type WalletSearch11Props, type WalletSearch1Props, Wifi1, Wifi11, type Wifi11Props, type Wifi1Props, WifiSquare1, type WifiSquare1Props, X, type XProps };
|