magick-icons 0.1.232 → 0.1.233
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 +541 -1
- package/index.d.ts +541 -1
- package/index.js +570 -106
- package/index.js.map +1 -1
- package/index.mjs +543 -109
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -9504,6 +9504,24 @@ interface MagickoFlowerProps extends React.SVGProps<SVGSVGElement> {
|
|
|
9504
9504
|
*/
|
|
9505
9505
|
declare const MagickoFlower: React.ForwardRefExoticComponent<Omit<MagickoFlowerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9506
9506
|
|
|
9507
|
+
/**
|
|
9508
|
+
* Props for the MagickoFolder icon component
|
|
9509
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9510
|
+
*/
|
|
9511
|
+
interface MagickoFolderProps extends React.SVGProps<SVGSVGElement> {
|
|
9512
|
+
size?: number | string;
|
|
9513
|
+
}
|
|
9514
|
+
/**
|
|
9515
|
+
* MagickoFolder icon component
|
|
9516
|
+
* @example
|
|
9517
|
+
* ```tsx
|
|
9518
|
+
* import { MagickoFolder } from 'magick-icons';
|
|
9519
|
+
*
|
|
9520
|
+
* <MagickoFolder size={24} className="text-blue-500" strokeWidth={2} />
|
|
9521
|
+
* ```
|
|
9522
|
+
*/
|
|
9523
|
+
declare const MagickoFolder: React.ForwardRefExoticComponent<Omit<MagickoFolderProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9524
|
+
|
|
9507
9525
|
/**
|
|
9508
9526
|
* Props for the MagickoFolder2 icon component
|
|
9509
9527
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -9630,6 +9648,528 @@ interface MagickoFolderMinusProps extends React.SVGProps<SVGSVGElement> {
|
|
|
9630
9648
|
*/
|
|
9631
9649
|
declare const MagickoFolderMinus: React.ForwardRefExoticComponent<Omit<MagickoFolderMinusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9632
9650
|
|
|
9651
|
+
/**
|
|
9652
|
+
* Props for the MagickoFolderOpen icon component
|
|
9653
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9654
|
+
*/
|
|
9655
|
+
interface MagickoFolderOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
9656
|
+
size?: number | string;
|
|
9657
|
+
}
|
|
9658
|
+
/**
|
|
9659
|
+
* MagickoFolderOpen icon component
|
|
9660
|
+
* @example
|
|
9661
|
+
* ```tsx
|
|
9662
|
+
* import { MagickoFolderOpen } from 'magick-icons';
|
|
9663
|
+
*
|
|
9664
|
+
* <MagickoFolderOpen size={24} className="text-blue-500" strokeWidth={2} />
|
|
9665
|
+
* ```
|
|
9666
|
+
*/
|
|
9667
|
+
declare const MagickoFolderOpen: React.ForwardRefExoticComponent<Omit<MagickoFolderOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9668
|
+
|
|
9669
|
+
/**
|
|
9670
|
+
* Props for the MagickoFolderOpenAdd icon component
|
|
9671
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9672
|
+
*/
|
|
9673
|
+
interface MagickoFolderOpenAddProps extends React.SVGProps<SVGSVGElement> {
|
|
9674
|
+
size?: number | string;
|
|
9675
|
+
}
|
|
9676
|
+
/**
|
|
9677
|
+
* MagickoFolderOpenAdd icon component
|
|
9678
|
+
* @example
|
|
9679
|
+
* ```tsx
|
|
9680
|
+
* import { MagickoFolderOpenAdd } from 'magick-icons';
|
|
9681
|
+
*
|
|
9682
|
+
* <MagickoFolderOpenAdd size={24} className="text-blue-500" strokeWidth={2} />
|
|
9683
|
+
* ```
|
|
9684
|
+
*/
|
|
9685
|
+
declare const MagickoFolderOpenAdd: React.ForwardRefExoticComponent<Omit<MagickoFolderOpenAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9686
|
+
|
|
9687
|
+
/**
|
|
9688
|
+
* Props for the MagickoForward icon component
|
|
9689
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9690
|
+
*/
|
|
9691
|
+
interface MagickoForwardProps extends React.SVGProps<SVGSVGElement> {
|
|
9692
|
+
size?: number | string;
|
|
9693
|
+
}
|
|
9694
|
+
/**
|
|
9695
|
+
* MagickoForward icon component
|
|
9696
|
+
* @example
|
|
9697
|
+
* ```tsx
|
|
9698
|
+
* import { MagickoForward } from 'magick-icons';
|
|
9699
|
+
*
|
|
9700
|
+
* <MagickoForward size={24} className="text-blue-500" strokeWidth={2} />
|
|
9701
|
+
* ```
|
|
9702
|
+
*/
|
|
9703
|
+
declare const MagickoForward: React.ForwardRefExoticComponent<Omit<MagickoForwardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9704
|
+
|
|
9705
|
+
/**
|
|
9706
|
+
* Props for the MagickoForward1 icon component
|
|
9707
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9708
|
+
*/
|
|
9709
|
+
interface MagickoForward1Props extends React.SVGProps<SVGSVGElement> {
|
|
9710
|
+
size?: number | string;
|
|
9711
|
+
}
|
|
9712
|
+
/**
|
|
9713
|
+
* MagickoForward1 icon component
|
|
9714
|
+
* @example
|
|
9715
|
+
* ```tsx
|
|
9716
|
+
* import { MagickoForward1 } from 'magick-icons';
|
|
9717
|
+
*
|
|
9718
|
+
* <MagickoForward1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9719
|
+
* ```
|
|
9720
|
+
*/
|
|
9721
|
+
declare const MagickoForward1: React.ForwardRefExoticComponent<Omit<MagickoForward1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9722
|
+
|
|
9723
|
+
/**
|
|
9724
|
+
* Props for the MagickoForward10Seconds icon component
|
|
9725
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9726
|
+
*/
|
|
9727
|
+
interface MagickoForward10SecondsProps extends React.SVGProps<SVGSVGElement> {
|
|
9728
|
+
size?: number | string;
|
|
9729
|
+
}
|
|
9730
|
+
/**
|
|
9731
|
+
* MagickoForward10Seconds icon component
|
|
9732
|
+
* @example
|
|
9733
|
+
* ```tsx
|
|
9734
|
+
* import { MagickoForward10Seconds } from 'magick-icons';
|
|
9735
|
+
*
|
|
9736
|
+
* <MagickoForward10Seconds size={24} className="text-blue-500" strokeWidth={2} />
|
|
9737
|
+
* ```
|
|
9738
|
+
*/
|
|
9739
|
+
declare const MagickoForward10Seconds: React.ForwardRefExoticComponent<Omit<MagickoForward10SecondsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9740
|
+
|
|
9741
|
+
/**
|
|
9742
|
+
* Props for the MagickoForward15Seconds icon component
|
|
9743
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9744
|
+
*/
|
|
9745
|
+
interface MagickoForward15SecondsProps extends React.SVGProps<SVGSVGElement> {
|
|
9746
|
+
size?: number | string;
|
|
9747
|
+
}
|
|
9748
|
+
/**
|
|
9749
|
+
* MagickoForward15Seconds icon component
|
|
9750
|
+
* @example
|
|
9751
|
+
* ```tsx
|
|
9752
|
+
* import { MagickoForward15Seconds } from 'magick-icons';
|
|
9753
|
+
*
|
|
9754
|
+
* <MagickoForward15Seconds size={24} className="text-blue-500" strokeWidth={2} />
|
|
9755
|
+
* ```
|
|
9756
|
+
*/
|
|
9757
|
+
declare const MagickoForward15Seconds: React.ForwardRefExoticComponent<Omit<MagickoForward15SecondsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9758
|
+
|
|
9759
|
+
/**
|
|
9760
|
+
* Props for the MagickoForward5Seconds icon component
|
|
9761
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9762
|
+
*/
|
|
9763
|
+
interface MagickoForward5SecondsProps extends React.SVGProps<SVGSVGElement> {
|
|
9764
|
+
size?: number | string;
|
|
9765
|
+
}
|
|
9766
|
+
/**
|
|
9767
|
+
* MagickoForward5Seconds icon component
|
|
9768
|
+
* @example
|
|
9769
|
+
* ```tsx
|
|
9770
|
+
* import { MagickoForward5Seconds } from 'magick-icons';
|
|
9771
|
+
*
|
|
9772
|
+
* <MagickoForward5Seconds size={24} className="text-blue-500" strokeWidth={2} />
|
|
9773
|
+
* ```
|
|
9774
|
+
*/
|
|
9775
|
+
declare const MagickoForward5Seconds: React.ForwardRefExoticComponent<Omit<MagickoForward5SecondsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9776
|
+
|
|
9777
|
+
/**
|
|
9778
|
+
* Props for the MagickoGallery icon component
|
|
9779
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9780
|
+
*/
|
|
9781
|
+
interface MagickoGalleryProps extends React.SVGProps<SVGSVGElement> {
|
|
9782
|
+
size?: number | string;
|
|
9783
|
+
}
|
|
9784
|
+
/**
|
|
9785
|
+
* MagickoGallery icon component
|
|
9786
|
+
* @example
|
|
9787
|
+
* ```tsx
|
|
9788
|
+
* import { MagickoGallery } from 'magick-icons';
|
|
9789
|
+
*
|
|
9790
|
+
* <MagickoGallery size={24} className="text-blue-500" strokeWidth={2} />
|
|
9791
|
+
* ```
|
|
9792
|
+
*/
|
|
9793
|
+
declare const MagickoGallery: React.ForwardRefExoticComponent<Omit<MagickoGalleryProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9794
|
+
|
|
9795
|
+
/**
|
|
9796
|
+
* Props for the MagickoGallery1 icon component
|
|
9797
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9798
|
+
*/
|
|
9799
|
+
interface MagickoGallery1Props extends React.SVGProps<SVGSVGElement> {
|
|
9800
|
+
size?: number | string;
|
|
9801
|
+
}
|
|
9802
|
+
/**
|
|
9803
|
+
* MagickoGallery1 icon component
|
|
9804
|
+
* @example
|
|
9805
|
+
* ```tsx
|
|
9806
|
+
* import { MagickoGallery1 } from 'magick-icons';
|
|
9807
|
+
*
|
|
9808
|
+
* <MagickoGallery1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9809
|
+
* ```
|
|
9810
|
+
*/
|
|
9811
|
+
declare const MagickoGallery1: React.ForwardRefExoticComponent<Omit<MagickoGallery1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9812
|
+
|
|
9813
|
+
/**
|
|
9814
|
+
* Props for the MagickoGame icon component
|
|
9815
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9816
|
+
*/
|
|
9817
|
+
interface MagickoGameProps extends React.SVGProps<SVGSVGElement> {
|
|
9818
|
+
size?: number | string;
|
|
9819
|
+
}
|
|
9820
|
+
/**
|
|
9821
|
+
* MagickoGame icon component
|
|
9822
|
+
* @example
|
|
9823
|
+
* ```tsx
|
|
9824
|
+
* import { MagickoGame } from 'magick-icons';
|
|
9825
|
+
*
|
|
9826
|
+
* <MagickoGame size={24} className="text-blue-500" strokeWidth={2} />
|
|
9827
|
+
* ```
|
|
9828
|
+
*/
|
|
9829
|
+
declare const MagickoGame: React.ForwardRefExoticComponent<Omit<MagickoGameProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9830
|
+
|
|
9831
|
+
/**
|
|
9832
|
+
* Props for the MagickoGameboy icon component
|
|
9833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9834
|
+
*/
|
|
9835
|
+
interface MagickoGameboyProps extends React.SVGProps<SVGSVGElement> {
|
|
9836
|
+
size?: number | string;
|
|
9837
|
+
}
|
|
9838
|
+
/**
|
|
9839
|
+
* MagickoGameboy icon component
|
|
9840
|
+
* @example
|
|
9841
|
+
* ```tsx
|
|
9842
|
+
* import { MagickoGameboy } from 'magick-icons';
|
|
9843
|
+
*
|
|
9844
|
+
* <MagickoGameboy size={24} className="text-blue-500" strokeWidth={2} />
|
|
9845
|
+
* ```
|
|
9846
|
+
*/
|
|
9847
|
+
declare const MagickoGameboy: React.ForwardRefExoticComponent<Omit<MagickoGameboyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9848
|
+
|
|
9849
|
+
/**
|
|
9850
|
+
* Props for the MagickoGasStation icon component
|
|
9851
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9852
|
+
*/
|
|
9853
|
+
interface MagickoGasStationProps extends React.SVGProps<SVGSVGElement> {
|
|
9854
|
+
size?: number | string;
|
|
9855
|
+
}
|
|
9856
|
+
/**
|
|
9857
|
+
* MagickoGasStation icon component
|
|
9858
|
+
* @example
|
|
9859
|
+
* ```tsx
|
|
9860
|
+
* import { MagickoGasStation } from 'magick-icons';
|
|
9861
|
+
*
|
|
9862
|
+
* <MagickoGasStation size={24} className="text-blue-500" strokeWidth={2} />
|
|
9863
|
+
* ```
|
|
9864
|
+
*/
|
|
9865
|
+
declare const MagickoGasStation: React.ForwardRefExoticComponent<Omit<MagickoGasStationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9866
|
+
|
|
9867
|
+
/**
|
|
9868
|
+
* Props for the MagickoGemini icon component
|
|
9869
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9870
|
+
*/
|
|
9871
|
+
interface MagickoGeminiProps extends React.SVGProps<SVGSVGElement> {
|
|
9872
|
+
size?: number | string;
|
|
9873
|
+
}
|
|
9874
|
+
/**
|
|
9875
|
+
* MagickoGemini icon component
|
|
9876
|
+
* @example
|
|
9877
|
+
* ```tsx
|
|
9878
|
+
* import { MagickoGemini } from 'magick-icons';
|
|
9879
|
+
*
|
|
9880
|
+
* <MagickoGemini size={24} className="text-blue-500" strokeWidth={2} />
|
|
9881
|
+
* ```
|
|
9882
|
+
*/
|
|
9883
|
+
declare const MagickoGemini: React.ForwardRefExoticComponent<Omit<MagickoGeminiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9884
|
+
|
|
9885
|
+
/**
|
|
9886
|
+
* Props for the MagickoGemini2 icon component
|
|
9887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9888
|
+
*/
|
|
9889
|
+
interface MagickoGemini2Props extends React.SVGProps<SVGSVGElement> {
|
|
9890
|
+
size?: number | string;
|
|
9891
|
+
}
|
|
9892
|
+
/**
|
|
9893
|
+
* MagickoGemini2 icon component
|
|
9894
|
+
* @example
|
|
9895
|
+
* ```tsx
|
|
9896
|
+
* import { MagickoGemini2 } from 'magick-icons';
|
|
9897
|
+
*
|
|
9898
|
+
* <MagickoGemini2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9899
|
+
* ```
|
|
9900
|
+
*/
|
|
9901
|
+
declare const MagickoGemini2: React.ForwardRefExoticComponent<Omit<MagickoGemini2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9902
|
+
|
|
9903
|
+
/**
|
|
9904
|
+
* Props for the MagickoGhost icon component
|
|
9905
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9906
|
+
*/
|
|
9907
|
+
interface MagickoGhostProps extends React.SVGProps<SVGSVGElement> {
|
|
9908
|
+
size?: number | string;
|
|
9909
|
+
}
|
|
9910
|
+
/**
|
|
9911
|
+
* MagickoGhost icon component
|
|
9912
|
+
* @example
|
|
9913
|
+
* ```tsx
|
|
9914
|
+
* import { MagickoGhost } from 'magick-icons';
|
|
9915
|
+
*
|
|
9916
|
+
* <MagickoGhost size={24} className="text-blue-500" strokeWidth={2} />
|
|
9917
|
+
* ```
|
|
9918
|
+
*/
|
|
9919
|
+
declare const MagickoGhost: React.ForwardRefExoticComponent<Omit<MagickoGhostProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9920
|
+
|
|
9921
|
+
/**
|
|
9922
|
+
* Props for the MagickoGift icon component
|
|
9923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9924
|
+
*/
|
|
9925
|
+
interface MagickoGiftProps extends React.SVGProps<SVGSVGElement> {
|
|
9926
|
+
size?: number | string;
|
|
9927
|
+
}
|
|
9928
|
+
/**
|
|
9929
|
+
* MagickoGift icon component
|
|
9930
|
+
* @example
|
|
9931
|
+
* ```tsx
|
|
9932
|
+
* import { MagickoGift } from 'magick-icons';
|
|
9933
|
+
*
|
|
9934
|
+
* <MagickoGift size={24} className="text-blue-500" strokeWidth={2} />
|
|
9935
|
+
* ```
|
|
9936
|
+
*/
|
|
9937
|
+
declare const MagickoGift: React.ForwardRefExoticComponent<Omit<MagickoGiftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9938
|
+
|
|
9939
|
+
/**
|
|
9940
|
+
* Props for the MagickoGift1 icon component
|
|
9941
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9942
|
+
*/
|
|
9943
|
+
interface MagickoGift1Props extends React.SVGProps<SVGSVGElement> {
|
|
9944
|
+
size?: number | string;
|
|
9945
|
+
}
|
|
9946
|
+
/**
|
|
9947
|
+
* MagickoGift1 icon component
|
|
9948
|
+
* @example
|
|
9949
|
+
* ```tsx
|
|
9950
|
+
* import { MagickoGift1 } from 'magick-icons';
|
|
9951
|
+
*
|
|
9952
|
+
* <MagickoGift1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9953
|
+
* ```
|
|
9954
|
+
*/
|
|
9955
|
+
declare const MagickoGift1: React.ForwardRefExoticComponent<Omit<MagickoGift1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9956
|
+
|
|
9957
|
+
/**
|
|
9958
|
+
* Props for the MagickoGift2 icon component
|
|
9959
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9960
|
+
*/
|
|
9961
|
+
interface MagickoGift2Props extends React.SVGProps<SVGSVGElement> {
|
|
9962
|
+
size?: number | string;
|
|
9963
|
+
}
|
|
9964
|
+
/**
|
|
9965
|
+
* MagickoGift2 icon component
|
|
9966
|
+
* @example
|
|
9967
|
+
* ```tsx
|
|
9968
|
+
* import { MagickoGift2 } from 'magick-icons';
|
|
9969
|
+
*
|
|
9970
|
+
* <MagickoGift2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9971
|
+
* ```
|
|
9972
|
+
*/
|
|
9973
|
+
declare const MagickoGift2: React.ForwardRefExoticComponent<Omit<MagickoGift2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9974
|
+
|
|
9975
|
+
/**
|
|
9976
|
+
* Props for the MagickoGlass icon component
|
|
9977
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9978
|
+
*/
|
|
9979
|
+
interface MagickoGlassProps extends React.SVGProps<SVGSVGElement> {
|
|
9980
|
+
size?: number | string;
|
|
9981
|
+
}
|
|
9982
|
+
/**
|
|
9983
|
+
* MagickoGlass icon component
|
|
9984
|
+
* @example
|
|
9985
|
+
* ```tsx
|
|
9986
|
+
* import { MagickoGlass } from 'magick-icons';
|
|
9987
|
+
*
|
|
9988
|
+
* <MagickoGlass size={24} className="text-blue-500" strokeWidth={2} />
|
|
9989
|
+
* ```
|
|
9990
|
+
*/
|
|
9991
|
+
declare const MagickoGlass: React.ForwardRefExoticComponent<Omit<MagickoGlassProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9992
|
+
|
|
9993
|
+
/**
|
|
9994
|
+
* Props for the MagickoGlass1 icon component
|
|
9995
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9996
|
+
*/
|
|
9997
|
+
interface MagickoGlass1Props extends React.SVGProps<SVGSVGElement> {
|
|
9998
|
+
size?: number | string;
|
|
9999
|
+
}
|
|
10000
|
+
/**
|
|
10001
|
+
* MagickoGlass1 icon component
|
|
10002
|
+
* @example
|
|
10003
|
+
* ```tsx
|
|
10004
|
+
* import { MagickoGlass1 } from 'magick-icons';
|
|
10005
|
+
*
|
|
10006
|
+
* <MagickoGlass1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10007
|
+
* ```
|
|
10008
|
+
*/
|
|
10009
|
+
declare const MagickoGlass1: React.ForwardRefExoticComponent<Omit<MagickoGlass1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10010
|
+
|
|
10011
|
+
/**
|
|
10012
|
+
* Props for the MagickoGlobal icon component
|
|
10013
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10014
|
+
*/
|
|
10015
|
+
interface MagickoGlobalProps extends React.SVGProps<SVGSVGElement> {
|
|
10016
|
+
size?: number | string;
|
|
10017
|
+
}
|
|
10018
|
+
/**
|
|
10019
|
+
* MagickoGlobal icon component
|
|
10020
|
+
* @example
|
|
10021
|
+
* ```tsx
|
|
10022
|
+
* import { MagickoGlobal } from 'magick-icons';
|
|
10023
|
+
*
|
|
10024
|
+
* <MagickoGlobal size={24} className="text-blue-500" strokeWidth={2} />
|
|
10025
|
+
* ```
|
|
10026
|
+
*/
|
|
10027
|
+
declare const MagickoGlobal: React.ForwardRefExoticComponent<Omit<MagickoGlobalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10028
|
+
|
|
10029
|
+
/**
|
|
10030
|
+
* Props for the MagickoGps icon component
|
|
10031
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10032
|
+
*/
|
|
10033
|
+
interface MagickoGpsProps extends React.SVGProps<SVGSVGElement> {
|
|
10034
|
+
size?: number | string;
|
|
10035
|
+
}
|
|
10036
|
+
/**
|
|
10037
|
+
* MagickoGps icon component
|
|
10038
|
+
* @example
|
|
10039
|
+
* ```tsx
|
|
10040
|
+
* import { MagickoGps } from 'magick-icons';
|
|
10041
|
+
*
|
|
10042
|
+
* <MagickoGps size={24} className="text-blue-500" strokeWidth={2} />
|
|
10043
|
+
* ```
|
|
10044
|
+
*/
|
|
10045
|
+
declare const MagickoGps: React.ForwardRefExoticComponent<Omit<MagickoGpsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10046
|
+
|
|
10047
|
+
/**
|
|
10048
|
+
* Props for the MagickoGpsSlash icon component
|
|
10049
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10050
|
+
*/
|
|
10051
|
+
interface MagickoGpsSlashProps extends React.SVGProps<SVGSVGElement> {
|
|
10052
|
+
size?: number | string;
|
|
10053
|
+
}
|
|
10054
|
+
/**
|
|
10055
|
+
* MagickoGpsSlash icon component
|
|
10056
|
+
* @example
|
|
10057
|
+
* ```tsx
|
|
10058
|
+
* import { MagickoGpsSlash } from 'magick-icons';
|
|
10059
|
+
*
|
|
10060
|
+
* <MagickoGpsSlash size={24} className="text-blue-500" strokeWidth={2} />
|
|
10061
|
+
* ```
|
|
10062
|
+
*/
|
|
10063
|
+
declare const MagickoGpsSlash: React.ForwardRefExoticComponent<Omit<MagickoGpsSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10064
|
+
|
|
10065
|
+
/**
|
|
10066
|
+
* Props for the MagickoGraph icon component
|
|
10067
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10068
|
+
*/
|
|
10069
|
+
interface MagickoGraphProps extends React.SVGProps<SVGSVGElement> {
|
|
10070
|
+
size?: number | string;
|
|
10071
|
+
}
|
|
10072
|
+
/**
|
|
10073
|
+
* MagickoGraph icon component
|
|
10074
|
+
* @example
|
|
10075
|
+
* ```tsx
|
|
10076
|
+
* import { MagickoGraph } from 'magick-icons';
|
|
10077
|
+
*
|
|
10078
|
+
* <MagickoGraph size={24} className="text-blue-500" strokeWidth={2} />
|
|
10079
|
+
* ```
|
|
10080
|
+
*/
|
|
10081
|
+
declare const MagickoGraph: React.ForwardRefExoticComponent<Omit<MagickoGraphProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10082
|
+
|
|
10083
|
+
/**
|
|
10084
|
+
* Props for the MagickoGrid1 icon component
|
|
10085
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10086
|
+
*/
|
|
10087
|
+
interface MagickoGrid1Props extends React.SVGProps<SVGSVGElement> {
|
|
10088
|
+
size?: number | string;
|
|
10089
|
+
}
|
|
10090
|
+
/**
|
|
10091
|
+
* MagickoGrid1 icon component
|
|
10092
|
+
* @example
|
|
10093
|
+
* ```tsx
|
|
10094
|
+
* import { MagickoGrid1 } from 'magick-icons';
|
|
10095
|
+
*
|
|
10096
|
+
* <MagickoGrid1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10097
|
+
* ```
|
|
10098
|
+
*/
|
|
10099
|
+
declare const MagickoGrid1: React.ForwardRefExoticComponent<Omit<MagickoGrid1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10100
|
+
|
|
10101
|
+
/**
|
|
10102
|
+
* Props for the MagickoGrid2 icon component
|
|
10103
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10104
|
+
*/
|
|
10105
|
+
interface MagickoGrid2Props extends React.SVGProps<SVGSVGElement> {
|
|
10106
|
+
size?: number | string;
|
|
10107
|
+
}
|
|
10108
|
+
/**
|
|
10109
|
+
* MagickoGrid2 icon component
|
|
10110
|
+
* @example
|
|
10111
|
+
* ```tsx
|
|
10112
|
+
* import { MagickoGrid2 } from 'magick-icons';
|
|
10113
|
+
*
|
|
10114
|
+
* <MagickoGrid2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10115
|
+
* ```
|
|
10116
|
+
*/
|
|
10117
|
+
declare const MagickoGrid2: React.ForwardRefExoticComponent<Omit<MagickoGrid2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10118
|
+
|
|
10119
|
+
/**
|
|
10120
|
+
* Props for the MagickoGrid3 icon component
|
|
10121
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10122
|
+
*/
|
|
10123
|
+
interface MagickoGrid3Props extends React.SVGProps<SVGSVGElement> {
|
|
10124
|
+
size?: number | string;
|
|
10125
|
+
}
|
|
10126
|
+
/**
|
|
10127
|
+
* MagickoGrid3 icon component
|
|
10128
|
+
* @example
|
|
10129
|
+
* ```tsx
|
|
10130
|
+
* import { MagickoGrid3 } from 'magick-icons';
|
|
10131
|
+
*
|
|
10132
|
+
* <MagickoGrid3 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10133
|
+
* ```
|
|
10134
|
+
*/
|
|
10135
|
+
declare const MagickoGrid3: React.ForwardRefExoticComponent<Omit<MagickoGrid3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10136
|
+
|
|
10137
|
+
/**
|
|
10138
|
+
* Props for the MagickoGrid4 icon component
|
|
10139
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10140
|
+
*/
|
|
10141
|
+
interface MagickoGrid4Props extends React.SVGProps<SVGSVGElement> {
|
|
10142
|
+
size?: number | string;
|
|
10143
|
+
}
|
|
10144
|
+
/**
|
|
10145
|
+
* MagickoGrid4 icon component
|
|
10146
|
+
* @example
|
|
10147
|
+
* ```tsx
|
|
10148
|
+
* import { MagickoGrid4 } from 'magick-icons';
|
|
10149
|
+
*
|
|
10150
|
+
* <MagickoGrid4 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10151
|
+
* ```
|
|
10152
|
+
*/
|
|
10153
|
+
declare const MagickoGrid4: React.ForwardRefExoticComponent<Omit<MagickoGrid4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10154
|
+
|
|
10155
|
+
/**
|
|
10156
|
+
* Props for the MagickoGrid5 icon component
|
|
10157
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
10158
|
+
*/
|
|
10159
|
+
interface MagickoGrid5Props extends React.SVGProps<SVGSVGElement> {
|
|
10160
|
+
size?: number | string;
|
|
10161
|
+
}
|
|
10162
|
+
/**
|
|
10163
|
+
* MagickoGrid5 icon component
|
|
10164
|
+
* @example
|
|
10165
|
+
* ```tsx
|
|
10166
|
+
* import { MagickoGrid5 } from 'magick-icons';
|
|
10167
|
+
*
|
|
10168
|
+
* <MagickoGrid5 size={24} className="text-blue-500" strokeWidth={2} />
|
|
10169
|
+
* ```
|
|
10170
|
+
*/
|
|
10171
|
+
declare const MagickoGrid5: React.ForwardRefExoticComponent<Omit<MagickoGrid5Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10172
|
+
|
|
9633
10173
|
/**
|
|
9634
10174
|
* Props for the Marketing icon component
|
|
9635
10175
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -9918,4 +10458,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
9918
10458
|
*/
|
|
9919
10459
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9920
10460
|
|
|
9921
|
-
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, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, Marketing, type MarketingProps, 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 };
|
|
10461
|
+
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, Marketing, type MarketingProps, 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 };
|