magick-icons 0.1.247 → 0.1.249
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 +1123 -43
- package/index.d.ts +1123 -43
- package/index.js +999 -76
- package/index.js.map +1 -1
- package/index.mjs +940 -77
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -17712,6 +17712,24 @@ interface MarketingProps extends React.SVGProps<SVGSVGElement> {
|
|
|
17712
17712
|
*/
|
|
17713
17713
|
declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17714
17714
|
|
|
17715
|
+
/**
|
|
17716
|
+
* Props for the Mask1 icon component
|
|
17717
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17718
|
+
*/
|
|
17719
|
+
interface Mask1Props extends React.SVGProps<SVGSVGElement> {
|
|
17720
|
+
size?: number | string;
|
|
17721
|
+
}
|
|
17722
|
+
/**
|
|
17723
|
+
* Mask1 icon component
|
|
17724
|
+
* @example
|
|
17725
|
+
* ```tsx
|
|
17726
|
+
* import { Mask1 } from 'magick-icons';
|
|
17727
|
+
*
|
|
17728
|
+
* <Mask1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17729
|
+
* ```
|
|
17730
|
+
*/
|
|
17731
|
+
declare const Mask1: React.ForwardRefExoticComponent<Omit<Mask1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17732
|
+
|
|
17715
17733
|
/**
|
|
17716
17734
|
* Props for the Mask11 icon component
|
|
17717
17735
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -17730,6 +17748,24 @@ interface Mask11Props extends React.SVGProps<SVGSVGElement> {
|
|
|
17730
17748
|
*/
|
|
17731
17749
|
declare const Mask11: React.ForwardRefExoticComponent<Omit<Mask11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17732
17750
|
|
|
17751
|
+
/**
|
|
17752
|
+
* Props for the Mask111 icon component
|
|
17753
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17754
|
+
*/
|
|
17755
|
+
interface Mask111Props extends React.SVGProps<SVGSVGElement> {
|
|
17756
|
+
size?: number | string;
|
|
17757
|
+
}
|
|
17758
|
+
/**
|
|
17759
|
+
* Mask111 icon component
|
|
17760
|
+
* @example
|
|
17761
|
+
* ```tsx
|
|
17762
|
+
* import { Mask111 } from 'magick-icons';
|
|
17763
|
+
*
|
|
17764
|
+
* <Mask111 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17765
|
+
* ```
|
|
17766
|
+
*/
|
|
17767
|
+
declare const Mask111: React.ForwardRefExoticComponent<Omit<Mask111Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17768
|
+
|
|
17733
17769
|
/**
|
|
17734
17770
|
* Props for the Mask21 icon component
|
|
17735
17771
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -17748,6 +17784,132 @@ interface Mask21Props extends React.SVGProps<SVGSVGElement> {
|
|
|
17748
17784
|
*/
|
|
17749
17785
|
declare const Mask21: React.ForwardRefExoticComponent<Omit<Mask21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17750
17786
|
|
|
17787
|
+
/**
|
|
17788
|
+
* Props for the Mask211 icon component
|
|
17789
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17790
|
+
*/
|
|
17791
|
+
interface Mask211Props extends React.SVGProps<SVGSVGElement> {
|
|
17792
|
+
size?: number | string;
|
|
17793
|
+
}
|
|
17794
|
+
/**
|
|
17795
|
+
* Mask211 icon component
|
|
17796
|
+
* @example
|
|
17797
|
+
* ```tsx
|
|
17798
|
+
* import { Mask211 } from 'magick-icons';
|
|
17799
|
+
*
|
|
17800
|
+
* <Mask211 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17801
|
+
* ```
|
|
17802
|
+
*/
|
|
17803
|
+
declare const Mask211: React.ForwardRefExoticComponent<Omit<Mask211Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17804
|
+
|
|
17805
|
+
/**
|
|
17806
|
+
* Props for the Mask31 icon component
|
|
17807
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17808
|
+
*/
|
|
17809
|
+
interface Mask31Props extends React.SVGProps<SVGSVGElement> {
|
|
17810
|
+
size?: number | string;
|
|
17811
|
+
}
|
|
17812
|
+
/**
|
|
17813
|
+
* Mask31 icon component
|
|
17814
|
+
* @example
|
|
17815
|
+
* ```tsx
|
|
17816
|
+
* import { Mask31 } from 'magick-icons';
|
|
17817
|
+
*
|
|
17818
|
+
* <Mask31 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17819
|
+
* ```
|
|
17820
|
+
*/
|
|
17821
|
+
declare const Mask31: React.ForwardRefExoticComponent<Omit<Mask31Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17822
|
+
|
|
17823
|
+
/**
|
|
17824
|
+
* Props for the MeshTopology1 icon component
|
|
17825
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17826
|
+
*/
|
|
17827
|
+
interface MeshTopology1Props extends React.SVGProps<SVGSVGElement> {
|
|
17828
|
+
size?: number | string;
|
|
17829
|
+
}
|
|
17830
|
+
/**
|
|
17831
|
+
* MeshTopology1 icon component
|
|
17832
|
+
* @example
|
|
17833
|
+
* ```tsx
|
|
17834
|
+
* import { MeshTopology1 } from 'magick-icons';
|
|
17835
|
+
*
|
|
17836
|
+
* <MeshTopology1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17837
|
+
* ```
|
|
17838
|
+
*/
|
|
17839
|
+
declare const MeshTopology1: React.ForwardRefExoticComponent<Omit<MeshTopology1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17840
|
+
|
|
17841
|
+
/**
|
|
17842
|
+
* Props for the MessageAdd1 icon component
|
|
17843
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17844
|
+
*/
|
|
17845
|
+
interface MessageAdd1Props extends React.SVGProps<SVGSVGElement> {
|
|
17846
|
+
size?: number | string;
|
|
17847
|
+
}
|
|
17848
|
+
/**
|
|
17849
|
+
* MessageAdd1 icon component
|
|
17850
|
+
* @example
|
|
17851
|
+
* ```tsx
|
|
17852
|
+
* import { MessageAdd1 } from 'magick-icons';
|
|
17853
|
+
*
|
|
17854
|
+
* <MessageAdd1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17855
|
+
* ```
|
|
17856
|
+
*/
|
|
17857
|
+
declare const MessageAdd1: React.ForwardRefExoticComponent<Omit<MessageAdd1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17858
|
+
|
|
17859
|
+
/**
|
|
17860
|
+
* Props for the MessageAdd11 icon component
|
|
17861
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17862
|
+
*/
|
|
17863
|
+
interface MessageAdd11Props extends React.SVGProps<SVGSVGElement> {
|
|
17864
|
+
size?: number | string;
|
|
17865
|
+
}
|
|
17866
|
+
/**
|
|
17867
|
+
* MessageAdd11 icon component
|
|
17868
|
+
* @example
|
|
17869
|
+
* ```tsx
|
|
17870
|
+
* import { MessageAdd11 } from 'magick-icons';
|
|
17871
|
+
*
|
|
17872
|
+
* <MessageAdd11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17873
|
+
* ```
|
|
17874
|
+
*/
|
|
17875
|
+
declare const MessageAdd11: React.ForwardRefExoticComponent<Omit<MessageAdd11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17876
|
+
|
|
17877
|
+
/**
|
|
17878
|
+
* Props for the MessageBubble1 icon component
|
|
17879
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17880
|
+
*/
|
|
17881
|
+
interface MessageBubble1Props extends React.SVGProps<SVGSVGElement> {
|
|
17882
|
+
size?: number | string;
|
|
17883
|
+
}
|
|
17884
|
+
/**
|
|
17885
|
+
* MessageBubble1 icon component
|
|
17886
|
+
* @example
|
|
17887
|
+
* ```tsx
|
|
17888
|
+
* import { MessageBubble1 } from 'magick-icons';
|
|
17889
|
+
*
|
|
17890
|
+
* <MessageBubble1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17891
|
+
* ```
|
|
17892
|
+
*/
|
|
17893
|
+
declare const MessageBubble1: React.ForwardRefExoticComponent<Omit<MessageBubble1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17894
|
+
|
|
17895
|
+
/**
|
|
17896
|
+
* Props for the MessageCircle1 icon component
|
|
17897
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17898
|
+
*/
|
|
17899
|
+
interface MessageCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
17900
|
+
size?: number | string;
|
|
17901
|
+
}
|
|
17902
|
+
/**
|
|
17903
|
+
* MessageCircle1 icon component
|
|
17904
|
+
* @example
|
|
17905
|
+
* ```tsx
|
|
17906
|
+
* import { MessageCircle1 } from 'magick-icons';
|
|
17907
|
+
*
|
|
17908
|
+
* <MessageCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17909
|
+
* ```
|
|
17910
|
+
*/
|
|
17911
|
+
declare const MessageCircle1: React.ForwardRefExoticComponent<Omit<MessageCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17912
|
+
|
|
17751
17913
|
/**
|
|
17752
17914
|
* Props for the MessageEdit icon component
|
|
17753
17915
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -17767,130 +17929,1048 @@ interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
|
17767
17929
|
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17768
17930
|
|
|
17769
17931
|
/**
|
|
17770
|
-
* Props for the
|
|
17932
|
+
* Props for the MessageEdit1 icon component
|
|
17771
17933
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17772
17934
|
*/
|
|
17773
|
-
interface
|
|
17935
|
+
interface MessageEdit1Props extends React.SVGProps<SVGSVGElement> {
|
|
17774
17936
|
size?: number | string;
|
|
17775
17937
|
}
|
|
17776
17938
|
/**
|
|
17777
|
-
*
|
|
17939
|
+
* MessageEdit1 icon component
|
|
17778
17940
|
* @example
|
|
17779
17941
|
* ```tsx
|
|
17780
|
-
* import {
|
|
17942
|
+
* import { MessageEdit1 } from 'magick-icons';
|
|
17781
17943
|
*
|
|
17782
|
-
* <
|
|
17944
|
+
* <MessageEdit1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17783
17945
|
* ```
|
|
17784
17946
|
*/
|
|
17785
|
-
declare const
|
|
17947
|
+
declare const MessageEdit1: React.ForwardRefExoticComponent<Omit<MessageEdit1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17786
17948
|
|
|
17787
17949
|
/**
|
|
17788
|
-
* Props for the
|
|
17950
|
+
* Props for the MessageMinus1 icon component
|
|
17789
17951
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17790
17952
|
*/
|
|
17791
|
-
interface
|
|
17953
|
+
interface MessageMinus1Props extends React.SVGProps<SVGSVGElement> {
|
|
17792
17954
|
size?: number | string;
|
|
17793
17955
|
}
|
|
17794
17956
|
/**
|
|
17795
|
-
*
|
|
17957
|
+
* MessageMinus1 icon component
|
|
17796
17958
|
* @example
|
|
17797
17959
|
* ```tsx
|
|
17798
|
-
* import {
|
|
17960
|
+
* import { MessageMinus1 } from 'magick-icons';
|
|
17799
17961
|
*
|
|
17800
|
-
* <
|
|
17962
|
+
* <MessageMinus1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17801
17963
|
* ```
|
|
17802
17964
|
*/
|
|
17803
|
-
declare const
|
|
17965
|
+
declare const MessageMinus1: React.ForwardRefExoticComponent<Omit<MessageMinus1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17804
17966
|
|
|
17805
17967
|
/**
|
|
17806
|
-
* Props for the
|
|
17968
|
+
* Props for the MessageRemove1 icon component
|
|
17807
17969
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17808
17970
|
*/
|
|
17809
|
-
interface
|
|
17971
|
+
interface MessageRemove1Props extends React.SVGProps<SVGSVGElement> {
|
|
17810
17972
|
size?: number | string;
|
|
17811
17973
|
}
|
|
17812
17974
|
/**
|
|
17813
|
-
*
|
|
17975
|
+
* MessageRemove1 icon component
|
|
17814
17976
|
* @example
|
|
17815
17977
|
* ```tsx
|
|
17816
|
-
* import {
|
|
17978
|
+
* import { MessageRemove1 } from 'magick-icons';
|
|
17817
17979
|
*
|
|
17818
|
-
* <
|
|
17980
|
+
* <MessageRemove1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17819
17981
|
* ```
|
|
17820
17982
|
*/
|
|
17821
|
-
declare const
|
|
17983
|
+
declare const MessageRemove1: React.ForwardRefExoticComponent<Omit<MessageRemove1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17822
17984
|
|
|
17823
17985
|
/**
|
|
17824
|
-
* Props for the
|
|
17986
|
+
* Props for the MessageSquare1 icon component
|
|
17825
17987
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17826
17988
|
*/
|
|
17827
|
-
interface
|
|
17989
|
+
interface MessageSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
17828
17990
|
size?: number | string;
|
|
17829
17991
|
}
|
|
17830
17992
|
/**
|
|
17831
|
-
*
|
|
17993
|
+
* MessageSquare1 icon component
|
|
17832
17994
|
* @example
|
|
17833
17995
|
* ```tsx
|
|
17834
|
-
* import {
|
|
17996
|
+
* import { MessageSquare1 } from 'magick-icons';
|
|
17835
17997
|
*
|
|
17836
|
-
* <
|
|
17998
|
+
* <MessageSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17837
17999
|
* ```
|
|
17838
18000
|
*/
|
|
17839
|
-
declare const
|
|
18001
|
+
declare const MessageSquare1: React.ForwardRefExoticComponent<Omit<MessageSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17840
18002
|
|
|
17841
18003
|
/**
|
|
17842
|
-
* Props for the
|
|
18004
|
+
* Props for the MessageText11 icon component
|
|
17843
18005
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17844
18006
|
*/
|
|
17845
|
-
interface
|
|
18007
|
+
interface MessageText11Props extends React.SVGProps<SVGSVGElement> {
|
|
17846
18008
|
size?: number | string;
|
|
17847
18009
|
}
|
|
17848
18010
|
/**
|
|
17849
|
-
*
|
|
18011
|
+
* MessageText11 icon component
|
|
17850
18012
|
* @example
|
|
17851
18013
|
* ```tsx
|
|
17852
|
-
* import {
|
|
18014
|
+
* import { MessageText11 } from 'magick-icons';
|
|
17853
18015
|
*
|
|
17854
|
-
* <
|
|
18016
|
+
* <MessageText11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17855
18017
|
* ```
|
|
17856
18018
|
*/
|
|
17857
|
-
declare const
|
|
18019
|
+
declare const MessageText11: React.ForwardRefExoticComponent<Omit<MessageText11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17858
18020
|
|
|
17859
18021
|
/**
|
|
17860
|
-
* Props for the
|
|
18022
|
+
* Props for the MessageTick1 icon component
|
|
17861
18023
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17862
18024
|
*/
|
|
17863
|
-
interface
|
|
18025
|
+
interface MessageTick1Props extends React.SVGProps<SVGSVGElement> {
|
|
17864
18026
|
size?: number | string;
|
|
17865
18027
|
}
|
|
17866
18028
|
/**
|
|
17867
|
-
*
|
|
18029
|
+
* MessageTick1 icon component
|
|
17868
18030
|
* @example
|
|
17869
18031
|
* ```tsx
|
|
17870
|
-
* import {
|
|
18032
|
+
* import { MessageTick1 } from 'magick-icons';
|
|
17871
18033
|
*
|
|
17872
|
-
* <
|
|
18034
|
+
* <MessageTick1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17873
18035
|
* ```
|
|
17874
18036
|
*/
|
|
17875
|
-
declare const
|
|
18037
|
+
declare const MessageTick1: React.ForwardRefExoticComponent<Omit<MessageTick1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17876
18038
|
|
|
17877
18039
|
/**
|
|
17878
|
-
* Props for the
|
|
18040
|
+
* Props for the MessageTime1 icon component
|
|
17879
18041
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
17880
18042
|
*/
|
|
17881
|
-
interface
|
|
18043
|
+
interface MessageTime1Props extends React.SVGProps<SVGSVGElement> {
|
|
17882
18044
|
size?: number | string;
|
|
17883
18045
|
}
|
|
17884
18046
|
/**
|
|
17885
|
-
*
|
|
18047
|
+
* MessageTime1 icon component
|
|
17886
18048
|
* @example
|
|
17887
18049
|
* ```tsx
|
|
17888
|
-
* import {
|
|
18050
|
+
* import { MessageTime1 } from 'magick-icons';
|
|
17889
18051
|
*
|
|
17890
|
-
* <
|
|
18052
|
+
* <MessageTime1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17891
18053
|
* ```
|
|
17892
18054
|
*/
|
|
17893
|
-
declare const
|
|
18055
|
+
declare const MessageTime1: React.ForwardRefExoticComponent<Omit<MessageTime1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18056
|
+
|
|
18057
|
+
/**
|
|
18058
|
+
* Props for the Messages1 icon component
|
|
18059
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18060
|
+
*/
|
|
18061
|
+
interface Messages1Props extends React.SVGProps<SVGSVGElement> {
|
|
18062
|
+
size?: number | string;
|
|
18063
|
+
}
|
|
18064
|
+
/**
|
|
18065
|
+
* Messages1 icon component
|
|
18066
|
+
* @example
|
|
18067
|
+
* ```tsx
|
|
18068
|
+
* import { Messages1 } from 'magick-icons';
|
|
18069
|
+
*
|
|
18070
|
+
* <Messages1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18071
|
+
* ```
|
|
18072
|
+
*/
|
|
18073
|
+
declare const Messages1: React.ForwardRefExoticComponent<Omit<Messages1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18074
|
+
|
|
18075
|
+
/**
|
|
18076
|
+
* Props for the Messages21 icon component
|
|
18077
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18078
|
+
*/
|
|
18079
|
+
interface Messages21Props extends React.SVGProps<SVGSVGElement> {
|
|
18080
|
+
size?: number | string;
|
|
18081
|
+
}
|
|
18082
|
+
/**
|
|
18083
|
+
* Messages21 icon component
|
|
18084
|
+
* @example
|
|
18085
|
+
* ```tsx
|
|
18086
|
+
* import { Messages21 } from 'magick-icons';
|
|
18087
|
+
*
|
|
18088
|
+
* <Messages21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18089
|
+
* ```
|
|
18090
|
+
*/
|
|
18091
|
+
declare const Messages21: React.ForwardRefExoticComponent<Omit<Messages21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18092
|
+
|
|
18093
|
+
/**
|
|
18094
|
+
* Props for the MessagesBubbles21 icon component
|
|
18095
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18096
|
+
*/
|
|
18097
|
+
interface MessagesBubbles21Props extends React.SVGProps<SVGSVGElement> {
|
|
18098
|
+
size?: number | string;
|
|
18099
|
+
}
|
|
18100
|
+
/**
|
|
18101
|
+
* MessagesBubbles21 icon component
|
|
18102
|
+
* @example
|
|
18103
|
+
* ```tsx
|
|
18104
|
+
* import { MessagesBubbles21 } from 'magick-icons';
|
|
18105
|
+
*
|
|
18106
|
+
* <MessagesBubbles21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18107
|
+
* ```
|
|
18108
|
+
*/
|
|
18109
|
+
declare const MessagesBubbles21: React.ForwardRefExoticComponent<Omit<MessagesBubbles21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18110
|
+
|
|
18111
|
+
/**
|
|
18112
|
+
* Props for the Milk1 icon component
|
|
18113
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18114
|
+
*/
|
|
18115
|
+
interface Milk1Props extends React.SVGProps<SVGSVGElement> {
|
|
18116
|
+
size?: number | string;
|
|
18117
|
+
}
|
|
18118
|
+
/**
|
|
18119
|
+
* Milk1 icon component
|
|
18120
|
+
* @example
|
|
18121
|
+
* ```tsx
|
|
18122
|
+
* import { Milk1 } from 'magick-icons';
|
|
18123
|
+
*
|
|
18124
|
+
* <Milk1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18125
|
+
* ```
|
|
18126
|
+
*/
|
|
18127
|
+
declare const Milk1: React.ForwardRefExoticComponent<Omit<Milk1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18128
|
+
|
|
18129
|
+
/**
|
|
18130
|
+
* Props for the Mirror1 icon component
|
|
18131
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18132
|
+
*/
|
|
18133
|
+
interface Mirror1Props extends React.SVGProps<SVGSVGElement> {
|
|
18134
|
+
size?: number | string;
|
|
18135
|
+
}
|
|
18136
|
+
/**
|
|
18137
|
+
* Mirror1 icon component
|
|
18138
|
+
* @example
|
|
18139
|
+
* ```tsx
|
|
18140
|
+
* import { Mirror1 } from 'magick-icons';
|
|
18141
|
+
*
|
|
18142
|
+
* <Mirror1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18143
|
+
* ```
|
|
18144
|
+
*/
|
|
18145
|
+
declare const Mirror1: React.ForwardRefExoticComponent<Omit<Mirror1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18146
|
+
|
|
18147
|
+
/**
|
|
18148
|
+
* Props for the Mirror11 icon component
|
|
18149
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18150
|
+
*/
|
|
18151
|
+
interface Mirror11Props extends React.SVGProps<SVGSVGElement> {
|
|
18152
|
+
size?: number | string;
|
|
18153
|
+
}
|
|
18154
|
+
/**
|
|
18155
|
+
* Mirror11 icon component
|
|
18156
|
+
* @example
|
|
18157
|
+
* ```tsx
|
|
18158
|
+
* import { Mirror11 } from 'magick-icons';
|
|
18159
|
+
*
|
|
18160
|
+
* <Mirror11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18161
|
+
* ```
|
|
18162
|
+
*/
|
|
18163
|
+
declare const Mirror11: React.ForwardRefExoticComponent<Omit<Mirror11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18164
|
+
|
|
18165
|
+
/**
|
|
18166
|
+
* Props for the Mirror21 icon component
|
|
18167
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18168
|
+
*/
|
|
18169
|
+
interface Mirror21Props extends React.SVGProps<SVGSVGElement> {
|
|
18170
|
+
size?: number | string;
|
|
18171
|
+
}
|
|
18172
|
+
/**
|
|
18173
|
+
* Mirror21 icon component
|
|
18174
|
+
* @example
|
|
18175
|
+
* ```tsx
|
|
18176
|
+
* import { Mirror21 } from 'magick-icons';
|
|
18177
|
+
*
|
|
18178
|
+
* <Mirror21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18179
|
+
* ```
|
|
18180
|
+
*/
|
|
18181
|
+
declare const Mirror21: React.ForwardRefExoticComponent<Omit<Mirror21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18182
|
+
|
|
18183
|
+
/**
|
|
18184
|
+
* Props for the MoneyAdd1 icon component
|
|
18185
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18186
|
+
*/
|
|
18187
|
+
interface MoneyAdd1Props extends React.SVGProps<SVGSVGElement> {
|
|
18188
|
+
size?: number | string;
|
|
18189
|
+
}
|
|
18190
|
+
/**
|
|
18191
|
+
* MoneyAdd1 icon component
|
|
18192
|
+
* @example
|
|
18193
|
+
* ```tsx
|
|
18194
|
+
* import { MoneyAdd1 } from 'magick-icons';
|
|
18195
|
+
*
|
|
18196
|
+
* <MoneyAdd1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18197
|
+
* ```
|
|
18198
|
+
*/
|
|
18199
|
+
declare const MoneyAdd1: React.ForwardRefExoticComponent<Omit<MoneyAdd1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18200
|
+
|
|
18201
|
+
/**
|
|
18202
|
+
* Props for the MoneyChange1 icon component
|
|
18203
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18204
|
+
*/
|
|
18205
|
+
interface MoneyChange1Props extends React.SVGProps<SVGSVGElement> {
|
|
18206
|
+
size?: number | string;
|
|
18207
|
+
}
|
|
18208
|
+
/**
|
|
18209
|
+
* MoneyChange1 icon component
|
|
18210
|
+
* @example
|
|
18211
|
+
* ```tsx
|
|
18212
|
+
* import { MoneyChange1 } from 'magick-icons';
|
|
18213
|
+
*
|
|
18214
|
+
* <MoneyChange1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18215
|
+
* ```
|
|
18216
|
+
*/
|
|
18217
|
+
declare const MoneyChange1: React.ForwardRefExoticComponent<Omit<MoneyChange1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18218
|
+
|
|
18219
|
+
/**
|
|
18220
|
+
* Props for the MoneyForbidden1 icon component
|
|
18221
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18222
|
+
*/
|
|
18223
|
+
interface MoneyForbidden1Props extends React.SVGProps<SVGSVGElement> {
|
|
18224
|
+
size?: number | string;
|
|
18225
|
+
}
|
|
18226
|
+
/**
|
|
18227
|
+
* MoneyForbidden1 icon component
|
|
18228
|
+
* @example
|
|
18229
|
+
* ```tsx
|
|
18230
|
+
* import { MoneyForbidden1 } from 'magick-icons';
|
|
18231
|
+
*
|
|
18232
|
+
* <MoneyForbidden1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18233
|
+
* ```
|
|
18234
|
+
*/
|
|
18235
|
+
declare const MoneyForbidden1: React.ForwardRefExoticComponent<Omit<MoneyForbidden1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18236
|
+
|
|
18237
|
+
/**
|
|
18238
|
+
* Props for the MoneyRecive1 icon component
|
|
18239
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18240
|
+
*/
|
|
18241
|
+
interface MoneyRecive1Props extends React.SVGProps<SVGSVGElement> {
|
|
18242
|
+
size?: number | string;
|
|
18243
|
+
}
|
|
18244
|
+
/**
|
|
18245
|
+
* MoneyRecive1 icon component
|
|
18246
|
+
* @example
|
|
18247
|
+
* ```tsx
|
|
18248
|
+
* import { MoneyRecive1 } from 'magick-icons';
|
|
18249
|
+
*
|
|
18250
|
+
* <MoneyRecive1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18251
|
+
* ```
|
|
18252
|
+
*/
|
|
18253
|
+
declare const MoneyRecive1: React.ForwardRefExoticComponent<Omit<MoneyRecive1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18254
|
+
|
|
18255
|
+
/**
|
|
18256
|
+
* Props for the MoneyRemove1 icon component
|
|
18257
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18258
|
+
*/
|
|
18259
|
+
interface MoneyRemove1Props extends React.SVGProps<SVGSVGElement> {
|
|
18260
|
+
size?: number | string;
|
|
18261
|
+
}
|
|
18262
|
+
/**
|
|
18263
|
+
* MoneyRemove1 icon component
|
|
18264
|
+
* @example
|
|
18265
|
+
* ```tsx
|
|
18266
|
+
* import { MoneyRemove1 } from 'magick-icons';
|
|
18267
|
+
*
|
|
18268
|
+
* <MoneyRemove1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18269
|
+
* ```
|
|
18270
|
+
*/
|
|
18271
|
+
declare const MoneyRemove1: React.ForwardRefExoticComponent<Omit<MoneyRemove1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18272
|
+
|
|
18273
|
+
/**
|
|
18274
|
+
* Props for the MoneySend1 icon component
|
|
18275
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18276
|
+
*/
|
|
18277
|
+
interface MoneySend1Props extends React.SVGProps<SVGSVGElement> {
|
|
18278
|
+
size?: number | string;
|
|
18279
|
+
}
|
|
18280
|
+
/**
|
|
18281
|
+
* MoneySend1 icon component
|
|
18282
|
+
* @example
|
|
18283
|
+
* ```tsx
|
|
18284
|
+
* import { MoneySend1 } from 'magick-icons';
|
|
18285
|
+
*
|
|
18286
|
+
* <MoneySend1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18287
|
+
* ```
|
|
18288
|
+
*/
|
|
18289
|
+
declare const MoneySend1: React.ForwardRefExoticComponent<Omit<MoneySend1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18290
|
+
|
|
18291
|
+
/**
|
|
18292
|
+
* Props for the MoneyTick1 icon component
|
|
18293
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18294
|
+
*/
|
|
18295
|
+
interface MoneyTick1Props extends React.SVGProps<SVGSVGElement> {
|
|
18296
|
+
size?: number | string;
|
|
18297
|
+
}
|
|
18298
|
+
/**
|
|
18299
|
+
* MoneyTick1 icon component
|
|
18300
|
+
* @example
|
|
18301
|
+
* ```tsx
|
|
18302
|
+
* import { MoneyTick1 } from 'magick-icons';
|
|
18303
|
+
*
|
|
18304
|
+
* <MoneyTick1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18305
|
+
* ```
|
|
18306
|
+
*/
|
|
18307
|
+
declare const MoneyTick1: React.ForwardRefExoticComponent<Omit<MoneyTick1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18308
|
+
|
|
18309
|
+
/**
|
|
18310
|
+
* Props for the MoneyTime1 icon component
|
|
18311
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18312
|
+
*/
|
|
18313
|
+
interface MoneyTime1Props extends React.SVGProps<SVGSVGElement> {
|
|
18314
|
+
size?: number | string;
|
|
18315
|
+
}
|
|
18316
|
+
/**
|
|
18317
|
+
* MoneyTime1 icon component
|
|
18318
|
+
* @example
|
|
18319
|
+
* ```tsx
|
|
18320
|
+
* import { MoneyTime1 } from 'magick-icons';
|
|
18321
|
+
*
|
|
18322
|
+
* <MoneyTime1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18323
|
+
* ```
|
|
18324
|
+
*/
|
|
18325
|
+
declare const MoneyTime1: React.ForwardRefExoticComponent<Omit<MoneyTime1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18326
|
+
|
|
18327
|
+
/**
|
|
18328
|
+
* Props for the MoreCircle1 icon component
|
|
18329
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18330
|
+
*/
|
|
18331
|
+
interface MoreCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
18332
|
+
size?: number | string;
|
|
18333
|
+
}
|
|
18334
|
+
/**
|
|
18335
|
+
* MoreCircle1 icon component
|
|
18336
|
+
* @example
|
|
18337
|
+
* ```tsx
|
|
18338
|
+
* import { MoreCircle1 } from 'magick-icons';
|
|
18339
|
+
*
|
|
18340
|
+
* <MoreCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18341
|
+
* ```
|
|
18342
|
+
*/
|
|
18343
|
+
declare const MoreCircle1: React.ForwardRefExoticComponent<Omit<MoreCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18344
|
+
|
|
18345
|
+
/**
|
|
18346
|
+
* Props for the MoreSquare1 icon component
|
|
18347
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18348
|
+
*/
|
|
18349
|
+
interface MoreSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
18350
|
+
size?: number | string;
|
|
18351
|
+
}
|
|
18352
|
+
/**
|
|
18353
|
+
* MoreSquare1 icon component
|
|
18354
|
+
* @example
|
|
18355
|
+
* ```tsx
|
|
18356
|
+
* import { MoreSquare1 } from 'magick-icons';
|
|
18357
|
+
*
|
|
18358
|
+
* <MoreSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18359
|
+
* ```
|
|
18360
|
+
*/
|
|
18361
|
+
declare const MoreSquare1: React.ForwardRefExoticComponent<Omit<MoreSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18362
|
+
|
|
18363
|
+
/**
|
|
18364
|
+
* Props for the MouseCircle1 icon component
|
|
18365
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18366
|
+
*/
|
|
18367
|
+
interface MouseCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
18368
|
+
size?: number | string;
|
|
18369
|
+
}
|
|
18370
|
+
/**
|
|
18371
|
+
* MouseCircle1 icon component
|
|
18372
|
+
* @example
|
|
18373
|
+
* ```tsx
|
|
18374
|
+
* import { MouseCircle1 } from 'magick-icons';
|
|
18375
|
+
*
|
|
18376
|
+
* <MouseCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18377
|
+
* ```
|
|
18378
|
+
*/
|
|
18379
|
+
declare const MouseCircle1: React.ForwardRefExoticComponent<Omit<MouseCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18380
|
+
|
|
18381
|
+
/**
|
|
18382
|
+
* Props for the MouseSquare1 icon component
|
|
18383
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18384
|
+
*/
|
|
18385
|
+
interface MouseSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
18386
|
+
size?: number | string;
|
|
18387
|
+
}
|
|
18388
|
+
/**
|
|
18389
|
+
* MouseSquare1 icon component
|
|
18390
|
+
* @example
|
|
18391
|
+
* ```tsx
|
|
18392
|
+
* import { MouseSquare1 } from 'magick-icons';
|
|
18393
|
+
*
|
|
18394
|
+
* <MouseSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18395
|
+
* ```
|
|
18396
|
+
*/
|
|
18397
|
+
declare const MouseSquare1: React.ForwardRefExoticComponent<Omit<MouseSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18398
|
+
|
|
18399
|
+
/**
|
|
18400
|
+
* Props for the Network icon component
|
|
18401
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18402
|
+
*/
|
|
18403
|
+
interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
18404
|
+
size?: number | string;
|
|
18405
|
+
}
|
|
18406
|
+
/**
|
|
18407
|
+
* Network icon component
|
|
18408
|
+
* @example
|
|
18409
|
+
* ```tsx
|
|
18410
|
+
* import { Network } from 'magick-icons';
|
|
18411
|
+
*
|
|
18412
|
+
* <Network size={24} className="text-blue-500" strokeWidth={2} />
|
|
18413
|
+
* ```
|
|
18414
|
+
*/
|
|
18415
|
+
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18416
|
+
|
|
18417
|
+
/**
|
|
18418
|
+
* Props for the Network1 icon component
|
|
18419
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18420
|
+
*/
|
|
18421
|
+
interface Network1Props extends React.SVGProps<SVGSVGElement> {
|
|
18422
|
+
size?: number | string;
|
|
18423
|
+
}
|
|
18424
|
+
/**
|
|
18425
|
+
* Network1 icon component
|
|
18426
|
+
* @example
|
|
18427
|
+
* ```tsx
|
|
18428
|
+
* import { Network1 } from 'magick-icons';
|
|
18429
|
+
*
|
|
18430
|
+
* <Network1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18431
|
+
* ```
|
|
18432
|
+
*/
|
|
18433
|
+
declare const Network1: React.ForwardRefExoticComponent<Omit<Network1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18434
|
+
|
|
18435
|
+
/**
|
|
18436
|
+
* Props for the NotiDot icon component
|
|
18437
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18438
|
+
*/
|
|
18439
|
+
interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
18440
|
+
size?: number | string;
|
|
18441
|
+
}
|
|
18442
|
+
/**
|
|
18443
|
+
* NotiDot icon component
|
|
18444
|
+
* @example
|
|
18445
|
+
* ```tsx
|
|
18446
|
+
* import { NotiDot } from 'magick-icons';
|
|
18447
|
+
*
|
|
18448
|
+
* <NotiDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
18449
|
+
* ```
|
|
18450
|
+
*/
|
|
18451
|
+
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18452
|
+
|
|
18453
|
+
/**
|
|
18454
|
+
* Props for the OmegaCircle1 icon component
|
|
18455
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18456
|
+
*/
|
|
18457
|
+
interface OmegaCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
18458
|
+
size?: number | string;
|
|
18459
|
+
}
|
|
18460
|
+
/**
|
|
18461
|
+
* OmegaCircle1 icon component
|
|
18462
|
+
* @example
|
|
18463
|
+
* ```tsx
|
|
18464
|
+
* import { OmegaCircle1 } from 'magick-icons';
|
|
18465
|
+
*
|
|
18466
|
+
* <OmegaCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18467
|
+
* ```
|
|
18468
|
+
*/
|
|
18469
|
+
declare const OmegaCircle1: React.ForwardRefExoticComponent<Omit<OmegaCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18470
|
+
|
|
18471
|
+
/**
|
|
18472
|
+
* Props for the OmegaSquare1 icon component
|
|
18473
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18474
|
+
*/
|
|
18475
|
+
interface OmegaSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
18476
|
+
size?: number | string;
|
|
18477
|
+
}
|
|
18478
|
+
/**
|
|
18479
|
+
* OmegaSquare1 icon component
|
|
18480
|
+
* @example
|
|
18481
|
+
* ```tsx
|
|
18482
|
+
* import { OmegaSquare1 } from 'magick-icons';
|
|
18483
|
+
*
|
|
18484
|
+
* <OmegaSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18485
|
+
* ```
|
|
18486
|
+
*/
|
|
18487
|
+
declare const OmegaSquare1: React.ForwardRefExoticComponent<Omit<OmegaSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
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
|
+
|
|
18507
|
+
/**
|
|
18508
|
+
* Props for the PaintBrush1 icon component
|
|
18509
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18510
|
+
*/
|
|
18511
|
+
interface PaintBrush1Props extends React.SVGProps<SVGSVGElement> {
|
|
18512
|
+
size?: number | string;
|
|
18513
|
+
}
|
|
18514
|
+
/**
|
|
18515
|
+
* PaintBrush1 icon component
|
|
18516
|
+
* @example
|
|
18517
|
+
* ```tsx
|
|
18518
|
+
* import { PaintBrush1 } from 'magick-icons';
|
|
18519
|
+
*
|
|
18520
|
+
* <PaintBrush1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18521
|
+
* ```
|
|
18522
|
+
*/
|
|
18523
|
+
declare const PaintBrush1: React.ForwardRefExoticComponent<Omit<PaintBrush1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18524
|
+
|
|
18525
|
+
/**
|
|
18526
|
+
* Props for the PauseSquare icon component
|
|
18527
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18528
|
+
*/
|
|
18529
|
+
interface PauseSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
18530
|
+
size?: number | string;
|
|
18531
|
+
}
|
|
18532
|
+
/**
|
|
18533
|
+
* PauseSquare icon component
|
|
18534
|
+
* @example
|
|
18535
|
+
* ```tsx
|
|
18536
|
+
* import { PauseSquare } from 'magick-icons';
|
|
18537
|
+
*
|
|
18538
|
+
* <PauseSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
18539
|
+
* ```
|
|
18540
|
+
*/
|
|
18541
|
+
declare const PauseSquare: React.ForwardRefExoticComponent<Omit<PauseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18542
|
+
|
|
18543
|
+
/**
|
|
18544
|
+
* Props for the Pdf icon component
|
|
18545
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18546
|
+
*/
|
|
18547
|
+
interface PdfProps extends React.SVGProps<SVGSVGElement> {
|
|
18548
|
+
size?: number | string;
|
|
18549
|
+
}
|
|
18550
|
+
/**
|
|
18551
|
+
* Pdf icon component
|
|
18552
|
+
* @example
|
|
18553
|
+
* ```tsx
|
|
18554
|
+
* import { Pdf } from 'magick-icons';
|
|
18555
|
+
*
|
|
18556
|
+
* <Pdf size={24} className="text-blue-500" strokeWidth={2} />
|
|
18557
|
+
* ```
|
|
18558
|
+
*/
|
|
18559
|
+
declare const Pdf: React.ForwardRefExoticComponent<Omit<PdfProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18560
|
+
|
|
18561
|
+
/**
|
|
18562
|
+
* Props for the PenBrush icon component
|
|
18563
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18564
|
+
*/
|
|
18565
|
+
interface PenBrushProps extends React.SVGProps<SVGSVGElement> {
|
|
18566
|
+
size?: number | string;
|
|
18567
|
+
}
|
|
18568
|
+
/**
|
|
18569
|
+
* PenBrush icon component
|
|
18570
|
+
* @example
|
|
18571
|
+
* ```tsx
|
|
18572
|
+
* import { PenBrush } from 'magick-icons';
|
|
18573
|
+
*
|
|
18574
|
+
* <PenBrush size={24} className="text-blue-500" strokeWidth={2} />
|
|
18575
|
+
* ```
|
|
18576
|
+
*/
|
|
18577
|
+
declare const PenBrush: React.ForwardRefExoticComponent<Omit<PenBrushProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18578
|
+
|
|
18579
|
+
/**
|
|
18580
|
+
* Props for the Pet1 icon component
|
|
18581
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18582
|
+
*/
|
|
18583
|
+
interface Pet1Props extends React.SVGProps<SVGSVGElement> {
|
|
18584
|
+
size?: number | string;
|
|
18585
|
+
}
|
|
18586
|
+
/**
|
|
18587
|
+
* Pet1 icon component
|
|
18588
|
+
* @example
|
|
18589
|
+
* ```tsx
|
|
18590
|
+
* import { Pet1 } from 'magick-icons';
|
|
18591
|
+
*
|
|
18592
|
+
* <Pet1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18593
|
+
* ```
|
|
18594
|
+
*/
|
|
18595
|
+
declare const Pet1: React.ForwardRefExoticComponent<Omit<Pet1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18596
|
+
|
|
18597
|
+
/**
|
|
18598
|
+
* Props for the PictureFrame1 icon component
|
|
18599
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18600
|
+
*/
|
|
18601
|
+
interface PictureFrame1Props extends React.SVGProps<SVGSVGElement> {
|
|
18602
|
+
size?: number | string;
|
|
18603
|
+
}
|
|
18604
|
+
/**
|
|
18605
|
+
* PictureFrame1 icon component
|
|
18606
|
+
* @example
|
|
18607
|
+
* ```tsx
|
|
18608
|
+
* import { PictureFrame1 } from 'magick-icons';
|
|
18609
|
+
*
|
|
18610
|
+
* <PictureFrame1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18611
|
+
* ```
|
|
18612
|
+
*/
|
|
18613
|
+
declare const PictureFrame1: React.ForwardRefExoticComponent<Omit<PictureFrame1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18614
|
+
|
|
18615
|
+
/**
|
|
18616
|
+
* Props for the PlayFilled icon component
|
|
18617
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18618
|
+
*/
|
|
18619
|
+
interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
18620
|
+
size?: number | string;
|
|
18621
|
+
}
|
|
18622
|
+
/**
|
|
18623
|
+
* PlayFilled icon component
|
|
18624
|
+
* @example
|
|
18625
|
+
* ```tsx
|
|
18626
|
+
* import { PlayFilled } from 'magick-icons';
|
|
18627
|
+
*
|
|
18628
|
+
* <PlayFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
18629
|
+
* ```
|
|
18630
|
+
*/
|
|
18631
|
+
declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18632
|
+
|
|
18633
|
+
/**
|
|
18634
|
+
* Props for the Plesk1 icon component
|
|
18635
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18636
|
+
*/
|
|
18637
|
+
interface Plesk1Props extends React.SVGProps<SVGSVGElement> {
|
|
18638
|
+
size?: number | string;
|
|
18639
|
+
}
|
|
18640
|
+
/**
|
|
18641
|
+
* Plesk1 icon component
|
|
18642
|
+
* @example
|
|
18643
|
+
* ```tsx
|
|
18644
|
+
* import { Plesk1 } from 'magick-icons';
|
|
18645
|
+
*
|
|
18646
|
+
* <Plesk1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18647
|
+
* ```
|
|
18648
|
+
*/
|
|
18649
|
+
declare const Plesk1: React.ForwardRefExoticComponent<Omit<Plesk1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18650
|
+
|
|
18651
|
+
/**
|
|
18652
|
+
* Props for the Radar1 icon component
|
|
18653
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18654
|
+
*/
|
|
18655
|
+
interface Radar1Props extends React.SVGProps<SVGSVGElement> {
|
|
18656
|
+
size?: number | string;
|
|
18657
|
+
}
|
|
18658
|
+
/**
|
|
18659
|
+
* Radar1 icon component
|
|
18660
|
+
* @example
|
|
18661
|
+
* ```tsx
|
|
18662
|
+
* import { Radar1 } from 'magick-icons';
|
|
18663
|
+
*
|
|
18664
|
+
* <Radar1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18665
|
+
* ```
|
|
18666
|
+
*/
|
|
18667
|
+
declare const Radar1: React.ForwardRefExoticComponent<Omit<Radar1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18668
|
+
|
|
18669
|
+
/**
|
|
18670
|
+
* Props for the Radar11 icon component
|
|
18671
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18672
|
+
*/
|
|
18673
|
+
interface Radar11Props extends React.SVGProps<SVGSVGElement> {
|
|
18674
|
+
size?: number | string;
|
|
18675
|
+
}
|
|
18676
|
+
/**
|
|
18677
|
+
* Radar11 icon component
|
|
18678
|
+
* @example
|
|
18679
|
+
* ```tsx
|
|
18680
|
+
* import { Radar11 } from 'magick-icons';
|
|
18681
|
+
*
|
|
18682
|
+
* <Radar11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18683
|
+
* ```
|
|
18684
|
+
*/
|
|
18685
|
+
declare const Radar11: React.ForwardRefExoticComponent<Omit<Radar11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18686
|
+
|
|
18687
|
+
/**
|
|
18688
|
+
* Props for the Radar21 icon component
|
|
18689
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18690
|
+
*/
|
|
18691
|
+
interface Radar21Props extends React.SVGProps<SVGSVGElement> {
|
|
18692
|
+
size?: number | string;
|
|
18693
|
+
}
|
|
18694
|
+
/**
|
|
18695
|
+
* Radar21 icon component
|
|
18696
|
+
* @example
|
|
18697
|
+
* ```tsx
|
|
18698
|
+
* import { Radar21 } from 'magick-icons';
|
|
18699
|
+
*
|
|
18700
|
+
* <Radar21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18701
|
+
* ```
|
|
18702
|
+
*/
|
|
18703
|
+
declare const Radar21: React.ForwardRefExoticComponent<Omit<Radar21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18704
|
+
|
|
18705
|
+
/**
|
|
18706
|
+
* Props for the Ranking1 icon component
|
|
18707
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18708
|
+
*/
|
|
18709
|
+
interface Ranking1Props extends React.SVGProps<SVGSVGElement> {
|
|
18710
|
+
size?: number | string;
|
|
18711
|
+
}
|
|
18712
|
+
/**
|
|
18713
|
+
* Ranking1 icon component
|
|
18714
|
+
* @example
|
|
18715
|
+
* ```tsx
|
|
18716
|
+
* import { Ranking1 } from 'magick-icons';
|
|
18717
|
+
*
|
|
18718
|
+
* <Ranking1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18719
|
+
* ```
|
|
18720
|
+
*/
|
|
18721
|
+
declare const Ranking1: React.ForwardRefExoticComponent<Omit<Ranking1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18722
|
+
|
|
18723
|
+
/**
|
|
18724
|
+
* Props for the Ranking11 icon component
|
|
18725
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18726
|
+
*/
|
|
18727
|
+
interface Ranking11Props extends React.SVGProps<SVGSVGElement> {
|
|
18728
|
+
size?: number | string;
|
|
18729
|
+
}
|
|
18730
|
+
/**
|
|
18731
|
+
* Ranking11 icon component
|
|
18732
|
+
* @example
|
|
18733
|
+
* ```tsx
|
|
18734
|
+
* import { Ranking11 } from 'magick-icons';
|
|
18735
|
+
*
|
|
18736
|
+
* <Ranking11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18737
|
+
* ```
|
|
18738
|
+
*/
|
|
18739
|
+
declare const Ranking11: React.ForwardRefExoticComponent<Omit<Ranking11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18740
|
+
|
|
18741
|
+
/**
|
|
18742
|
+
* Props for the Reserve1 icon component
|
|
18743
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18744
|
+
*/
|
|
18745
|
+
interface Reserve1Props extends React.SVGProps<SVGSVGElement> {
|
|
18746
|
+
size?: number | string;
|
|
18747
|
+
}
|
|
18748
|
+
/**
|
|
18749
|
+
* Reserve1 icon component
|
|
18750
|
+
* @example
|
|
18751
|
+
* ```tsx
|
|
18752
|
+
* import { Reserve1 } from 'magick-icons';
|
|
18753
|
+
*
|
|
18754
|
+
* <Reserve1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18755
|
+
* ```
|
|
18756
|
+
*/
|
|
18757
|
+
declare const Reserve1: React.ForwardRefExoticComponent<Omit<Reserve1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18758
|
+
|
|
18759
|
+
/**
|
|
18760
|
+
* Props for the RouteSquare1 icon component
|
|
18761
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18762
|
+
*/
|
|
18763
|
+
interface RouteSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
18764
|
+
size?: number | string;
|
|
18765
|
+
}
|
|
18766
|
+
/**
|
|
18767
|
+
* RouteSquare1 icon component
|
|
18768
|
+
* @example
|
|
18769
|
+
* ```tsx
|
|
18770
|
+
* import { RouteSquare1 } from 'magick-icons';
|
|
18771
|
+
*
|
|
18772
|
+
* <RouteSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18773
|
+
* ```
|
|
18774
|
+
*/
|
|
18775
|
+
declare const RouteSquare1: React.ForwardRefExoticComponent<Omit<RouteSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18776
|
+
|
|
18777
|
+
/**
|
|
18778
|
+
* Props for the Routing1 icon component
|
|
18779
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18780
|
+
*/
|
|
18781
|
+
interface Routing1Props extends React.SVGProps<SVGSVGElement> {
|
|
18782
|
+
size?: number | string;
|
|
18783
|
+
}
|
|
18784
|
+
/**
|
|
18785
|
+
* Routing1 icon component
|
|
18786
|
+
* @example
|
|
18787
|
+
* ```tsx
|
|
18788
|
+
* import { Routing1 } from 'magick-icons';
|
|
18789
|
+
*
|
|
18790
|
+
* <Routing1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18791
|
+
* ```
|
|
18792
|
+
*/
|
|
18793
|
+
declare const Routing1: React.ForwardRefExoticComponent<Omit<Routing1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18794
|
+
|
|
18795
|
+
/**
|
|
18796
|
+
* Props for the Routing21 icon component
|
|
18797
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18798
|
+
*/
|
|
18799
|
+
interface Routing21Props extends React.SVGProps<SVGSVGElement> {
|
|
18800
|
+
size?: number | string;
|
|
18801
|
+
}
|
|
18802
|
+
/**
|
|
18803
|
+
* Routing21 icon component
|
|
18804
|
+
* @example
|
|
18805
|
+
* ```tsx
|
|
18806
|
+
* import { Routing21 } from 'magick-icons';
|
|
18807
|
+
*
|
|
18808
|
+
* <Routing21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18809
|
+
* ```
|
|
18810
|
+
*/
|
|
18811
|
+
declare const Routing21: React.ForwardRefExoticComponent<Omit<Routing21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18812
|
+
|
|
18813
|
+
/**
|
|
18814
|
+
* Props for the SafeHome1 icon component
|
|
18815
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18816
|
+
*/
|
|
18817
|
+
interface SafeHome1Props extends React.SVGProps<SVGSVGElement> {
|
|
18818
|
+
size?: number | string;
|
|
18819
|
+
}
|
|
18820
|
+
/**
|
|
18821
|
+
* SafeHome1 icon component
|
|
18822
|
+
* @example
|
|
18823
|
+
* ```tsx
|
|
18824
|
+
* import { SafeHome1 } from 'magick-icons';
|
|
18825
|
+
*
|
|
18826
|
+
* <SafeHome1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18827
|
+
* ```
|
|
18828
|
+
*/
|
|
18829
|
+
declare const SafeHome1: React.ForwardRefExoticComponent<Omit<SafeHome1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18830
|
+
|
|
18831
|
+
/**
|
|
18832
|
+
* Props for the SecurityCard1 icon component
|
|
18833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18834
|
+
*/
|
|
18835
|
+
interface SecurityCard1Props extends React.SVGProps<SVGSVGElement> {
|
|
18836
|
+
size?: number | string;
|
|
18837
|
+
}
|
|
18838
|
+
/**
|
|
18839
|
+
* SecurityCard1 icon component
|
|
18840
|
+
* @example
|
|
18841
|
+
* ```tsx
|
|
18842
|
+
* import { SecurityCard1 } from 'magick-icons';
|
|
18843
|
+
*
|
|
18844
|
+
* <SecurityCard1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18845
|
+
* ```
|
|
18846
|
+
*/
|
|
18847
|
+
declare const SecurityCard1: React.ForwardRefExoticComponent<Omit<SecurityCard1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18848
|
+
|
|
18849
|
+
/**
|
|
18850
|
+
* Props for the Share1 icon component
|
|
18851
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18852
|
+
*/
|
|
18853
|
+
interface Share1Props extends React.SVGProps<SVGSVGElement> {
|
|
18854
|
+
size?: number | string;
|
|
18855
|
+
}
|
|
18856
|
+
/**
|
|
18857
|
+
* Share1 icon component
|
|
18858
|
+
* @example
|
|
18859
|
+
* ```tsx
|
|
18860
|
+
* import { Share1 } from 'magick-icons';
|
|
18861
|
+
*
|
|
18862
|
+
* <Share1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18863
|
+
* ```
|
|
18864
|
+
*/
|
|
18865
|
+
declare const Share1: React.ForwardRefExoticComponent<Omit<Share1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18866
|
+
|
|
18867
|
+
/**
|
|
18868
|
+
* Props for the Signature icon component
|
|
18869
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18870
|
+
*/
|
|
18871
|
+
interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
18872
|
+
size?: number | string;
|
|
18873
|
+
}
|
|
18874
|
+
/**
|
|
18875
|
+
* Signature icon component
|
|
18876
|
+
* @example
|
|
18877
|
+
* ```tsx
|
|
18878
|
+
* import { Signature } from 'magick-icons';
|
|
18879
|
+
*
|
|
18880
|
+
* <Signature size={24} className="text-blue-500" strokeWidth={2} />
|
|
18881
|
+
* ```
|
|
18882
|
+
*/
|
|
18883
|
+
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18884
|
+
|
|
18885
|
+
/**
|
|
18886
|
+
* Props for the Signpost1 icon component
|
|
18887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18888
|
+
*/
|
|
18889
|
+
interface Signpost1Props extends React.SVGProps<SVGSVGElement> {
|
|
18890
|
+
size?: number | string;
|
|
18891
|
+
}
|
|
18892
|
+
/**
|
|
18893
|
+
* Signpost1 icon component
|
|
18894
|
+
* @example
|
|
18895
|
+
* ```tsx
|
|
18896
|
+
* import { Signpost1 } from 'magick-icons';
|
|
18897
|
+
*
|
|
18898
|
+
* <Signpost1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18899
|
+
* ```
|
|
18900
|
+
*/
|
|
18901
|
+
declare const Signpost1: React.ForwardRefExoticComponent<Omit<Signpost1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18902
|
+
|
|
18903
|
+
/**
|
|
18904
|
+
* Props for the Slider1 icon component
|
|
18905
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18906
|
+
*/
|
|
18907
|
+
interface Slider1Props extends React.SVGProps<SVGSVGElement> {
|
|
18908
|
+
size?: number | string;
|
|
18909
|
+
}
|
|
18910
|
+
/**
|
|
18911
|
+
* Slider1 icon component
|
|
18912
|
+
* @example
|
|
18913
|
+
* ```tsx
|
|
18914
|
+
* import { Slider1 } from 'magick-icons';
|
|
18915
|
+
*
|
|
18916
|
+
* <Slider1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18917
|
+
* ```
|
|
18918
|
+
*/
|
|
18919
|
+
declare const Slider1: React.ForwardRefExoticComponent<Omit<Slider1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18920
|
+
|
|
18921
|
+
/**
|
|
18922
|
+
* Props for the SliderHorizontal1 icon component
|
|
18923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18924
|
+
*/
|
|
18925
|
+
interface SliderHorizontal1Props extends React.SVGProps<SVGSVGElement> {
|
|
18926
|
+
size?: number | string;
|
|
18927
|
+
}
|
|
18928
|
+
/**
|
|
18929
|
+
* SliderHorizontal1 icon component
|
|
18930
|
+
* @example
|
|
18931
|
+
* ```tsx
|
|
18932
|
+
* import { SliderHorizontal1 } from 'magick-icons';
|
|
18933
|
+
*
|
|
18934
|
+
* <SliderHorizontal1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18935
|
+
* ```
|
|
18936
|
+
*/
|
|
18937
|
+
declare const SliderHorizontal1: React.ForwardRefExoticComponent<Omit<SliderHorizontal1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18938
|
+
|
|
18939
|
+
/**
|
|
18940
|
+
* Props for the SliderHorizontal11 icon component
|
|
18941
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18942
|
+
*/
|
|
18943
|
+
interface SliderHorizontal11Props extends React.SVGProps<SVGSVGElement> {
|
|
18944
|
+
size?: number | string;
|
|
18945
|
+
}
|
|
18946
|
+
/**
|
|
18947
|
+
* SliderHorizontal11 icon component
|
|
18948
|
+
* @example
|
|
18949
|
+
* ```tsx
|
|
18950
|
+
* import { SliderHorizontal11 } from 'magick-icons';
|
|
18951
|
+
*
|
|
18952
|
+
* <SliderHorizontal11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18953
|
+
* ```
|
|
18954
|
+
*/
|
|
18955
|
+
declare const SliderHorizontal11: React.ForwardRefExoticComponent<Omit<SliderHorizontal11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18956
|
+
|
|
18957
|
+
/**
|
|
18958
|
+
* Props for the SliderVertical1 icon component
|
|
18959
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18960
|
+
*/
|
|
18961
|
+
interface SliderVertical1Props extends React.SVGProps<SVGSVGElement> {
|
|
18962
|
+
size?: number | string;
|
|
18963
|
+
}
|
|
18964
|
+
/**
|
|
18965
|
+
* SliderVertical1 icon component
|
|
18966
|
+
* @example
|
|
18967
|
+
* ```tsx
|
|
18968
|
+
* import { SliderVertical1 } from 'magick-icons';
|
|
18969
|
+
*
|
|
18970
|
+
* <SliderVertical1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18971
|
+
* ```
|
|
18972
|
+
*/
|
|
18973
|
+
declare const SliderVertical1: React.ForwardRefExoticComponent<Omit<SliderVertical1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17894
18974
|
|
|
17895
18975
|
/**
|
|
17896
18976
|
* Props for the SperateDot icon component
|
|
@@ -18018,4 +19098,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18018
19098
|
*/
|
|
18019
19099
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18020
19100
|
|
|
18021
|
-
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, 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, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, 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, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, 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, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, 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, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, 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, InProgress, type InProgressProps, 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, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, 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, MagickoMicrophone211, type MagickoMicrophone211Props, 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, MagickoReceipt211, type MagickoReceipt211Props, 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, Mask11, type Mask11Props, Mask21, type Mask21Props, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|
|
19101
|
+
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, 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, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, 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, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, 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, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, 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, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, 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, InProgress, type InProgressProps, 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, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, 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, MagickoMicrophone211, type MagickoMicrophone211Props, 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, MagickoReceipt211, type MagickoReceipt211Props, 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, Mask111, type Mask111Props, type Mask11Props, type Mask1Props, Mask21, Mask211, type Mask211Props, 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, NotiDot, type NotiDotProps, OmegaCircle1, type OmegaCircle1Props, OmegaSquare1, type OmegaSquare1Props, PA, type PAProps, PaintBrush1, type PaintBrush1Props, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PenBrush, type PenBrushProps, Pet1, type Pet1Props, PictureFrame1, type PictureFrame1Props, PlayFilled, type PlayFilledProps, 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, type SliderVertical1Props, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|