magick-icons 0.1.245 → 0.1.247

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.ts CHANGED
@@ -16596,6 +16596,24 @@ interface MagickoTickSquareProps extends React.SVGProps<SVGSVGElement> {
16596
16596
  */
16597
16597
  declare const MagickoTickSquare: React.ForwardRefExoticComponent<Omit<MagickoTickSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16598
16598
 
16599
+ /**
16600
+ * Props for the MagickoTicket icon component
16601
+ * @property {number | string} [size] - Size of the icon (default: 24)
16602
+ */
16603
+ interface MagickoTicketProps extends React.SVGProps<SVGSVGElement> {
16604
+ size?: number | string;
16605
+ }
16606
+ /**
16607
+ * MagickoTicket icon component
16608
+ * @example
16609
+ * ```tsx
16610
+ * import { MagickoTicket } from 'magick-icons';
16611
+ *
16612
+ * <MagickoTicket size={24} className="text-blue-500" strokeWidth={2} />
16613
+ * ```
16614
+ */
16615
+ declare const MagickoTicket: React.ForwardRefExoticComponent<Omit<MagickoTicketProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16616
+
16599
16617
  /**
16600
16618
  * Props for the MagickoTicket1 icon component
16601
16619
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -16651,22 +16669,1084 @@ interface MagickoTicketDiscountProps extends React.SVGProps<SVGSVGElement> {
16651
16669
  declare const MagickoTicketDiscount: React.ForwardRefExoticComponent<Omit<MagickoTicketDiscountProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16652
16670
 
16653
16671
  /**
16654
- * Props for the Marketing icon component
16672
+ * Props for the MagickoTicketExpired icon component
16655
16673
  * @property {number | string} [size] - Size of the icon (default: 24)
16656
16674
  */
16657
- interface MarketingProps extends React.SVGProps<SVGSVGElement> {
16675
+ interface MagickoTicketExpiredProps extends React.SVGProps<SVGSVGElement> {
16658
16676
  size?: number | string;
16659
16677
  }
16660
16678
  /**
16661
- * Marketing icon component
16679
+ * MagickoTicketExpired icon component
16662
16680
  * @example
16663
16681
  * ```tsx
16664
- * import { Marketing } from 'magick-icons';
16682
+ * import { MagickoTicketExpired } from 'magick-icons';
16665
16683
  *
16666
- * <Marketing size={24} className="text-blue-500" strokeWidth={2} />
16684
+ * <MagickoTicketExpired size={24} className="text-blue-500" strokeWidth={2} />
16667
16685
  * ```
16668
16686
  */
16669
- declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16687
+ declare const MagickoTicketExpired: React.ForwardRefExoticComponent<Omit<MagickoTicketExpiredProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16688
+
16689
+ /**
16690
+ * Props for the MagickoTicketStar icon component
16691
+ * @property {number | string} [size] - Size of the icon (default: 24)
16692
+ */
16693
+ interface MagickoTicketStarProps extends React.SVGProps<SVGSVGElement> {
16694
+ size?: number | string;
16695
+ }
16696
+ /**
16697
+ * MagickoTicketStar icon component
16698
+ * @example
16699
+ * ```tsx
16700
+ * import { MagickoTicketStar } from 'magick-icons';
16701
+ *
16702
+ * <MagickoTicketStar size={24} className="text-blue-500" strokeWidth={2} />
16703
+ * ```
16704
+ */
16705
+ declare const MagickoTicketStar: React.ForwardRefExoticComponent<Omit<MagickoTicketStarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16706
+
16707
+ /**
16708
+ * Props for the MagickoTimer icon component
16709
+ * @property {number | string} [size] - Size of the icon (default: 24)
16710
+ */
16711
+ interface MagickoTimerProps extends React.SVGProps<SVGSVGElement> {
16712
+ size?: number | string;
16713
+ }
16714
+ /**
16715
+ * MagickoTimer icon component
16716
+ * @example
16717
+ * ```tsx
16718
+ * import { MagickoTimer } from 'magick-icons';
16719
+ *
16720
+ * <MagickoTimer size={24} className="text-blue-500" strokeWidth={2} />
16721
+ * ```
16722
+ */
16723
+ declare const MagickoTimer: React.ForwardRefExoticComponent<Omit<MagickoTimerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16724
+
16725
+ /**
16726
+ * Props for the MagickoToLeftArrow icon component
16727
+ * @property {number | string} [size] - Size of the icon (default: 24)
16728
+ */
16729
+ interface MagickoToLeftArrowProps extends React.SVGProps<SVGSVGElement> {
16730
+ size?: number | string;
16731
+ }
16732
+ /**
16733
+ * MagickoToLeftArrow icon component
16734
+ * @example
16735
+ * ```tsx
16736
+ * import { MagickoToLeftArrow } from 'magick-icons';
16737
+ *
16738
+ * <MagickoToLeftArrow size={24} className="text-blue-500" strokeWidth={2} />
16739
+ * ```
16740
+ */
16741
+ declare const MagickoToLeftArrow: React.ForwardRefExoticComponent<Omit<MagickoToLeftArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16742
+
16743
+ /**
16744
+ * Props for the MagickoToRightArrow icon component
16745
+ * @property {number | string} [size] - Size of the icon (default: 24)
16746
+ */
16747
+ interface MagickoToRightArrowProps extends React.SVGProps<SVGSVGElement> {
16748
+ size?: number | string;
16749
+ }
16750
+ /**
16751
+ * MagickoToRightArrow icon component
16752
+ * @example
16753
+ * ```tsx
16754
+ * import { MagickoToRightArrow } from 'magick-icons';
16755
+ *
16756
+ * <MagickoToRightArrow size={24} className="text-blue-500" strokeWidth={2} />
16757
+ * ```
16758
+ */
16759
+ declare const MagickoToRightArrow: React.ForwardRefExoticComponent<Omit<MagickoToRightArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16760
+
16761
+ /**
16762
+ * Props for the MagickoToleft icon component
16763
+ * @property {number | string} [size] - Size of the icon (default: 24)
16764
+ */
16765
+ interface MagickoToleftProps extends React.SVGProps<SVGSVGElement> {
16766
+ size?: number | string;
16767
+ }
16768
+ /**
16769
+ * MagickoToleft icon component
16770
+ * @example
16771
+ * ```tsx
16772
+ * import { MagickoToleft } from 'magick-icons';
16773
+ *
16774
+ * <MagickoToleft size={24} className="text-blue-500" strokeWidth={2} />
16775
+ * ```
16776
+ */
16777
+ declare const MagickoToleft: React.ForwardRefExoticComponent<Omit<MagickoToleftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16778
+
16779
+ /**
16780
+ * Props for the MagickoTone icon component
16781
+ * @property {number | string} [size] - Size of the icon (default: 24)
16782
+ */
16783
+ interface MagickoToneProps extends React.SVGProps<SVGSVGElement> {
16784
+ size?: number | string;
16785
+ }
16786
+ /**
16787
+ * MagickoTone icon component
16788
+ * @example
16789
+ * ```tsx
16790
+ * import { MagickoTone } from 'magick-icons';
16791
+ *
16792
+ * <MagickoTone size={24} className="text-blue-500" strokeWidth={2} />
16793
+ * ```
16794
+ */
16795
+ declare const MagickoTone: React.ForwardRefExoticComponent<Omit<MagickoToneProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16796
+
16797
+ /**
16798
+ * Props for the MagickoTongueClosedEyes icon component
16799
+ * @property {number | string} [size] - Size of the icon (default: 24)
16800
+ */
16801
+ interface MagickoTongueClosedEyesProps extends React.SVGProps<SVGSVGElement> {
16802
+ size?: number | string;
16803
+ }
16804
+ /**
16805
+ * MagickoTongueClosedEyes icon component
16806
+ * @example
16807
+ * ```tsx
16808
+ * import { MagickoTongueClosedEyes } from 'magick-icons';
16809
+ *
16810
+ * <MagickoTongueClosedEyes size={24} className="text-blue-500" strokeWidth={2} />
16811
+ * ```
16812
+ */
16813
+ declare const MagickoTongueClosedEyes: React.ForwardRefExoticComponent<Omit<MagickoTongueClosedEyesProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16814
+
16815
+ /**
16816
+ * Props for the MagickoTopBottomGrid icon component
16817
+ * @property {number | string} [size] - Size of the icon (default: 24)
16818
+ */
16819
+ interface MagickoTopBottomGridProps extends React.SVGProps<SVGSVGElement> {
16820
+ size?: number | string;
16821
+ }
16822
+ /**
16823
+ * MagickoTopBottomGrid icon component
16824
+ * @example
16825
+ * ```tsx
16826
+ * import { MagickoTopBottomGrid } from 'magick-icons';
16827
+ *
16828
+ * <MagickoTopBottomGrid size={24} className="text-blue-500" strokeWidth={2} />
16829
+ * ```
16830
+ */
16831
+ declare const MagickoTopBottomGrid: React.ForwardRefExoticComponent<Omit<MagickoTopBottomGridProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16832
+
16833
+ /**
16834
+ * Props for the MagickoToright icon component
16835
+ * @property {number | string} [size] - Size of the icon (default: 24)
16836
+ */
16837
+ interface MagickoTorightProps extends React.SVGProps<SVGSVGElement> {
16838
+ size?: number | string;
16839
+ }
16840
+ /**
16841
+ * MagickoToright icon component
16842
+ * @example
16843
+ * ```tsx
16844
+ * import { MagickoToright } from 'magick-icons';
16845
+ *
16846
+ * <MagickoToright size={24} className="text-blue-500" strokeWidth={2} />
16847
+ * ```
16848
+ */
16849
+ declare const MagickoToright: React.ForwardRefExoticComponent<Omit<MagickoTorightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16850
+
16851
+ /**
16852
+ * Props for the MagickoTouchFinger icon component
16853
+ * @property {number | string} [size] - Size of the icon (default: 24)
16854
+ */
16855
+ interface MagickoTouchFingerProps extends React.SVGProps<SVGSVGElement> {
16856
+ size?: number | string;
16857
+ }
16858
+ /**
16859
+ * MagickoTouchFinger icon component
16860
+ * @example
16861
+ * ```tsx
16862
+ * import { MagickoTouchFinger } from 'magick-icons';
16863
+ *
16864
+ * <MagickoTouchFinger size={24} className="text-blue-500" strokeWidth={2} />
16865
+ * ```
16866
+ */
16867
+ declare const MagickoTouchFinger: React.ForwardRefExoticComponent<Omit<MagickoTouchFingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16868
+
16869
+ /**
16870
+ * Props for the MagickoTouchIdFinger icon component
16871
+ * @property {number | string} [size] - Size of the icon (default: 24)
16872
+ */
16873
+ interface MagickoTouchIdFingerProps extends React.SVGProps<SVGSVGElement> {
16874
+ size?: number | string;
16875
+ }
16876
+ /**
16877
+ * MagickoTouchIdFinger icon component
16878
+ * @example
16879
+ * ```tsx
16880
+ * import { MagickoTouchIdFinger } from 'magick-icons';
16881
+ *
16882
+ * <MagickoTouchIdFinger size={24} className="text-blue-500" strokeWidth={2} />
16883
+ * ```
16884
+ */
16885
+ declare const MagickoTouchIdFinger: React.ForwardRefExoticComponent<Omit<MagickoTouchIdFingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16886
+
16887
+ /**
16888
+ * Props for the MagickoTrade1 icon component
16889
+ * @property {number | string} [size] - Size of the icon (default: 24)
16890
+ */
16891
+ interface MagickoTrade1Props extends React.SVGProps<SVGSVGElement> {
16892
+ size?: number | string;
16893
+ }
16894
+ /**
16895
+ * MagickoTrade1 icon component
16896
+ * @example
16897
+ * ```tsx
16898
+ * import { MagickoTrade1 } from 'magick-icons';
16899
+ *
16900
+ * <MagickoTrade1 size={24} className="text-blue-500" strokeWidth={2} />
16901
+ * ```
16902
+ */
16903
+ declare const MagickoTrade1: React.ForwardRefExoticComponent<Omit<MagickoTrade1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16904
+
16905
+ /**
16906
+ * Props for the MagickoTransactionArrows icon component
16907
+ * @property {number | string} [size] - Size of the icon (default: 24)
16908
+ */
16909
+ interface MagickoTransactionArrowsProps extends React.SVGProps<SVGSVGElement> {
16910
+ size?: number | string;
16911
+ }
16912
+ /**
16913
+ * MagickoTransactionArrows icon component
16914
+ * @example
16915
+ * ```tsx
16916
+ * import { MagickoTransactionArrows } from 'magick-icons';
16917
+ *
16918
+ * <MagickoTransactionArrows size={24} className="text-blue-500" strokeWidth={2} />
16919
+ * ```
16920
+ */
16921
+ declare const MagickoTransactionArrows: React.ForwardRefExoticComponent<Omit<MagickoTransactionArrowsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16922
+
16923
+ /**
16924
+ * Props for the MagickoTransactionMinus icon component
16925
+ * @property {number | string} [size] - Size of the icon (default: 24)
16926
+ */
16927
+ interface MagickoTransactionMinusProps extends React.SVGProps<SVGSVGElement> {
16928
+ size?: number | string;
16929
+ }
16930
+ /**
16931
+ * MagickoTransactionMinus icon component
16932
+ * @example
16933
+ * ```tsx
16934
+ * import { MagickoTransactionMinus } from 'magick-icons';
16935
+ *
16936
+ * <MagickoTransactionMinus size={24} className="text-blue-500" strokeWidth={2} />
16937
+ * ```
16938
+ */
16939
+ declare const MagickoTransactionMinus: React.ForwardRefExoticComponent<Omit<MagickoTransactionMinusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16940
+
16941
+ /**
16942
+ * Props for the MagickoTranslate icon component
16943
+ * @property {number | string} [size] - Size of the icon (default: 24)
16944
+ */
16945
+ interface MagickoTranslateProps extends React.SVGProps<SVGSVGElement> {
16946
+ size?: number | string;
16947
+ }
16948
+ /**
16949
+ * MagickoTranslate icon component
16950
+ * @example
16951
+ * ```tsx
16952
+ * import { MagickoTranslate } from 'magick-icons';
16953
+ *
16954
+ * <MagickoTranslate size={24} className="text-blue-500" strokeWidth={2} />
16955
+ * ```
16956
+ */
16957
+ declare const MagickoTranslate: React.ForwardRefExoticComponent<Omit<MagickoTranslateProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16958
+
16959
+ /**
16960
+ * Props for the MagickoTranslate1 icon component
16961
+ * @property {number | string} [size] - Size of the icon (default: 24)
16962
+ */
16963
+ interface MagickoTranslate1Props extends React.SVGProps<SVGSVGElement> {
16964
+ size?: number | string;
16965
+ }
16966
+ /**
16967
+ * MagickoTranslate1 icon component
16968
+ * @example
16969
+ * ```tsx
16970
+ * import { MagickoTranslate1 } from 'magick-icons';
16971
+ *
16972
+ * <MagickoTranslate1 size={24} className="text-blue-500" strokeWidth={2} />
16973
+ * ```
16974
+ */
16975
+ declare const MagickoTranslate1: React.ForwardRefExoticComponent<Omit<MagickoTranslate1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16976
+
16977
+ /**
16978
+ * Props for the MagickoTranslate2 icon component
16979
+ * @property {number | string} [size] - Size of the icon (default: 24)
16980
+ */
16981
+ interface MagickoTranslate2Props extends React.SVGProps<SVGSVGElement> {
16982
+ size?: number | string;
16983
+ }
16984
+ /**
16985
+ * MagickoTranslate2 icon component
16986
+ * @example
16987
+ * ```tsx
16988
+ * import { MagickoTranslate2 } from 'magick-icons';
16989
+ *
16990
+ * <MagickoTranslate2 size={24} className="text-blue-500" strokeWidth={2} />
16991
+ * ```
16992
+ */
16993
+ declare const MagickoTranslate2: React.ForwardRefExoticComponent<Omit<MagickoTranslate2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16994
+
16995
+ /**
16996
+ * Props for the MagickoTrash icon component
16997
+ * @property {number | string} [size] - Size of the icon (default: 24)
16998
+ */
16999
+ interface MagickoTrashProps extends React.SVGProps<SVGSVGElement> {
17000
+ size?: number | string;
17001
+ }
17002
+ /**
17003
+ * MagickoTrash icon component
17004
+ * @example
17005
+ * ```tsx
17006
+ * import { MagickoTrash } from 'magick-icons';
17007
+ *
17008
+ * <MagickoTrash size={24} className="text-blue-500" strokeWidth={2} />
17009
+ * ```
17010
+ */
17011
+ declare const MagickoTrash: React.ForwardRefExoticComponent<Omit<MagickoTrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17012
+
17013
+ /**
17014
+ * Props for the MagickoTrendDown icon component
17015
+ * @property {number | string} [size] - Size of the icon (default: 24)
17016
+ */
17017
+ interface MagickoTrendDownProps extends React.SVGProps<SVGSVGElement> {
17018
+ size?: number | string;
17019
+ }
17020
+ /**
17021
+ * MagickoTrendDown icon component
17022
+ * @example
17023
+ * ```tsx
17024
+ * import { MagickoTrendDown } from 'magick-icons';
17025
+ *
17026
+ * <MagickoTrendDown size={24} className="text-blue-500" strokeWidth={2} />
17027
+ * ```
17028
+ */
17029
+ declare const MagickoTrendDown: React.ForwardRefExoticComponent<Omit<MagickoTrendDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17030
+
17031
+ /**
17032
+ * Props for the MagickoTrendUp icon component
17033
+ * @property {number | string} [size] - Size of the icon (default: 24)
17034
+ */
17035
+ interface MagickoTrendUpProps extends React.SVGProps<SVGSVGElement> {
17036
+ size?: number | string;
17037
+ }
17038
+ /**
17039
+ * MagickoTrendUp icon component
17040
+ * @example
17041
+ * ```tsx
17042
+ * import { MagickoTrendUp } from 'magick-icons';
17043
+ *
17044
+ * <MagickoTrendUp size={24} className="text-blue-500" strokeWidth={2} />
17045
+ * ```
17046
+ */
17047
+ declare const MagickoTrendUp: React.ForwardRefExoticComponent<Omit<MagickoTrendUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17048
+
17049
+ /**
17050
+ * Props for the MagickoUndoArrow icon component
17051
+ * @property {number | string} [size] - Size of the icon (default: 24)
17052
+ */
17053
+ interface MagickoUndoArrowProps extends React.SVGProps<SVGSVGElement> {
17054
+ size?: number | string;
17055
+ }
17056
+ /**
17057
+ * MagickoUndoArrow icon component
17058
+ * @example
17059
+ * ```tsx
17060
+ * import { MagickoUndoArrow } from 'magick-icons';
17061
+ *
17062
+ * <MagickoUndoArrow size={24} className="text-blue-500" strokeWidth={2} />
17063
+ * ```
17064
+ */
17065
+ declare const MagickoUndoArrow: React.ForwardRefExoticComponent<Omit<MagickoUndoArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17066
+
17067
+ /**
17068
+ * Props for the MagickoUnlimited icon component
17069
+ * @property {number | string} [size] - Size of the icon (default: 24)
17070
+ */
17071
+ interface MagickoUnlimitedProps extends React.SVGProps<SVGSVGElement> {
17072
+ size?: number | string;
17073
+ }
17074
+ /**
17075
+ * MagickoUnlimited icon component
17076
+ * @example
17077
+ * ```tsx
17078
+ * import { MagickoUnlimited } from 'magick-icons';
17079
+ *
17080
+ * <MagickoUnlimited size={24} className="text-blue-500" strokeWidth={2} />
17081
+ * ```
17082
+ */
17083
+ declare const MagickoUnlimited: React.ForwardRefExoticComponent<Omit<MagickoUnlimitedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17084
+
17085
+ /**
17086
+ * Props for the MagickoUploadArrow icon component
17087
+ * @property {number | string} [size] - Size of the icon (default: 24)
17088
+ */
17089
+ interface MagickoUploadArrowProps extends React.SVGProps<SVGSVGElement> {
17090
+ size?: number | string;
17091
+ }
17092
+ /**
17093
+ * MagickoUploadArrow icon component
17094
+ * @example
17095
+ * ```tsx
17096
+ * import { MagickoUploadArrow } from 'magick-icons';
17097
+ *
17098
+ * <MagickoUploadArrow size={24} className="text-blue-500" strokeWidth={2} />
17099
+ * ```
17100
+ */
17101
+ declare const MagickoUploadArrow: React.ForwardRefExoticComponent<Omit<MagickoUploadArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17102
+
17103
+ /**
17104
+ * Props for the MagickoUploadHorizontalArrow icon component
17105
+ * @property {number | string} [size] - Size of the icon (default: 24)
17106
+ */
17107
+ interface MagickoUploadHorizontalArrowProps extends React.SVGProps<SVGSVGElement> {
17108
+ size?: number | string;
17109
+ }
17110
+ /**
17111
+ * MagickoUploadHorizontalArrow icon component
17112
+ * @example
17113
+ * ```tsx
17114
+ * import { MagickoUploadHorizontalArrow } from 'magick-icons';
17115
+ *
17116
+ * <MagickoUploadHorizontalArrow size={24} className="text-blue-500" strokeWidth={2} />
17117
+ * ```
17118
+ */
17119
+ declare const MagickoUploadHorizontalArrow: React.ForwardRefExoticComponent<Omit<MagickoUploadHorizontalArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17120
+
17121
+ /**
17122
+ * Props for the MagickoUpsideDownFace icon component
17123
+ * @property {number | string} [size] - Size of the icon (default: 24)
17124
+ */
17125
+ interface MagickoUpsideDownFaceProps extends React.SVGProps<SVGSVGElement> {
17126
+ size?: number | string;
17127
+ }
17128
+ /**
17129
+ * MagickoUpsideDownFace icon component
17130
+ * @example
17131
+ * ```tsx
17132
+ * import { MagickoUpsideDownFace } from 'magick-icons';
17133
+ *
17134
+ * <MagickoUpsideDownFace size={24} className="text-blue-500" strokeWidth={2} />
17135
+ * ```
17136
+ */
17137
+ declare const MagickoUpsideDownFace: React.ForwardRefExoticComponent<Omit<MagickoUpsideDownFaceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17138
+
17139
+ /**
17140
+ * Props for the MagickoUser icon component
17141
+ * @property {number | string} [size] - Size of the icon (default: 24)
17142
+ */
17143
+ interface MagickoUserProps extends React.SVGProps<SVGSVGElement> {
17144
+ size?: number | string;
17145
+ }
17146
+ /**
17147
+ * MagickoUser icon component
17148
+ * @example
17149
+ * ```tsx
17150
+ * import { MagickoUser } from 'magick-icons';
17151
+ *
17152
+ * <MagickoUser size={24} className="text-blue-500" strokeWidth={2} />
17153
+ * ```
17154
+ */
17155
+ declare const MagickoUser: React.ForwardRefExoticComponent<Omit<MagickoUserProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17156
+
17157
+ /**
17158
+ * Props for the MagickoVIPCloud icon component
17159
+ * @property {number | string} [size] - Size of the icon (default: 24)
17160
+ */
17161
+ interface MagickoVIPCloudProps extends React.SVGProps<SVGSVGElement> {
17162
+ size?: number | string;
17163
+ }
17164
+ /**
17165
+ * MagickoVIPCloud icon component
17166
+ * @example
17167
+ * ```tsx
17168
+ * import { MagickoVIPCloud } from 'magick-icons';
17169
+ *
17170
+ * <MagickoVIPCloud size={24} className="text-blue-500" strokeWidth={2} />
17171
+ * ```
17172
+ */
17173
+ declare const MagickoVIPCloud: React.ForwardRefExoticComponent<Omit<MagickoVIPCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17174
+
17175
+ /**
17176
+ * Props for the MagickoVerify icon component
17177
+ * @property {number | string} [size] - Size of the icon (default: 24)
17178
+ */
17179
+ interface MagickoVerifyProps extends React.SVGProps<SVGSVGElement> {
17180
+ size?: number | string;
17181
+ }
17182
+ /**
17183
+ * MagickoVerify icon component
17184
+ * @example
17185
+ * ```tsx
17186
+ * import { MagickoVerify } from 'magick-icons';
17187
+ *
17188
+ * <MagickoVerify size={24} className="text-blue-500" strokeWidth={2} />
17189
+ * ```
17190
+ */
17191
+ declare const MagickoVerify: React.ForwardRefExoticComponent<Omit<MagickoVerifyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17192
+
17193
+ /**
17194
+ * Props for the MagickoVideo icon component
17195
+ * @property {number | string} [size] - Size of the icon (default: 24)
17196
+ */
17197
+ interface MagickoVideoProps extends React.SVGProps<SVGSVGElement> {
17198
+ size?: number | string;
17199
+ }
17200
+ /**
17201
+ * MagickoVideo icon component
17202
+ * @example
17203
+ * ```tsx
17204
+ * import { MagickoVideo } from 'magick-icons';
17205
+ *
17206
+ * <MagickoVideo size={24} className="text-blue-500" strokeWidth={2} />
17207
+ * ```
17208
+ */
17209
+ declare const MagickoVideo: React.ForwardRefExoticComponent<Omit<MagickoVideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17210
+
17211
+ /**
17212
+ * Props for the MagickoVideo1 icon component
17213
+ * @property {number | string} [size] - Size of the icon (default: 24)
17214
+ */
17215
+ interface MagickoVideo1Props extends React.SVGProps<SVGSVGElement> {
17216
+ size?: number | string;
17217
+ }
17218
+ /**
17219
+ * MagickoVideo1 icon component
17220
+ * @example
17221
+ * ```tsx
17222
+ * import { MagickoVideo1 } from 'magick-icons';
17223
+ *
17224
+ * <MagickoVideo1 size={24} className="text-blue-500" strokeWidth={2} />
17225
+ * ```
17226
+ */
17227
+ declare const MagickoVideo1: React.ForwardRefExoticComponent<Omit<MagickoVideo1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17228
+
17229
+ /**
17230
+ * Props for the MagickoVideoHorizontal icon component
17231
+ * @property {number | string} [size] - Size of the icon (default: 24)
17232
+ */
17233
+ interface MagickoVideoHorizontalProps extends React.SVGProps<SVGSVGElement> {
17234
+ size?: number | string;
17235
+ }
17236
+ /**
17237
+ * MagickoVideoHorizontal icon component
17238
+ * @example
17239
+ * ```tsx
17240
+ * import { MagickoVideoHorizontal } from 'magick-icons';
17241
+ *
17242
+ * <MagickoVideoHorizontal size={24} className="text-blue-500" strokeWidth={2} />
17243
+ * ```
17244
+ */
17245
+ declare const MagickoVideoHorizontal: React.ForwardRefExoticComponent<Omit<MagickoVideoHorizontalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17246
+
17247
+ /**
17248
+ * Props for the MagickoVideoPlay icon component
17249
+ * @property {number | string} [size] - Size of the icon (default: 24)
17250
+ */
17251
+ interface MagickoVideoPlayProps extends React.SVGProps<SVGSVGElement> {
17252
+ size?: number | string;
17253
+ }
17254
+ /**
17255
+ * MagickoVideoPlay icon component
17256
+ * @example
17257
+ * ```tsx
17258
+ * import { MagickoVideoPlay } from 'magick-icons';
17259
+ *
17260
+ * <MagickoVideoPlay size={24} className="text-blue-500" strokeWidth={2} />
17261
+ * ```
17262
+ */
17263
+ declare const MagickoVideoPlay: React.ForwardRefExoticComponent<Omit<MagickoVideoPlayProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17264
+
17265
+ /**
17266
+ * Props for the MagickoVideoSlash icon component
17267
+ * @property {number | string} [size] - Size of the icon (default: 24)
17268
+ */
17269
+ interface MagickoVideoSlashProps extends React.SVGProps<SVGSVGElement> {
17270
+ size?: number | string;
17271
+ }
17272
+ /**
17273
+ * MagickoVideoSlash icon component
17274
+ * @example
17275
+ * ```tsx
17276
+ * import { MagickoVideoSlash } from 'magick-icons';
17277
+ *
17278
+ * <MagickoVideoSlash size={24} className="text-blue-500" strokeWidth={2} />
17279
+ * ```
17280
+ */
17281
+ declare const MagickoVideoSlash: React.ForwardRefExoticComponent<Omit<MagickoVideoSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17282
+
17283
+ /**
17284
+ * Props for the MagickoVoiceCircle icon component
17285
+ * @property {number | string} [size] - Size of the icon (default: 24)
17286
+ */
17287
+ interface MagickoVoiceCircleProps extends React.SVGProps<SVGSVGElement> {
17288
+ size?: number | string;
17289
+ }
17290
+ /**
17291
+ * MagickoVoiceCircle icon component
17292
+ * @example
17293
+ * ```tsx
17294
+ * import { MagickoVoiceCircle } from 'magick-icons';
17295
+ *
17296
+ * <MagickoVoiceCircle size={24} className="text-blue-500" strokeWidth={2} />
17297
+ * ```
17298
+ */
17299
+ declare const MagickoVoiceCircle: React.ForwardRefExoticComponent<Omit<MagickoVoiceCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17300
+
17301
+ /**
17302
+ * Props for the MagickoVoiceSquare icon component
17303
+ * @property {number | string} [size] - Size of the icon (default: 24)
17304
+ */
17305
+ interface MagickoVoiceSquareProps extends React.SVGProps<SVGSVGElement> {
17306
+ size?: number | string;
17307
+ }
17308
+ /**
17309
+ * MagickoVoiceSquare icon component
17310
+ * @example
17311
+ * ```tsx
17312
+ * import { MagickoVoiceSquare } from 'magick-icons';
17313
+ *
17314
+ * <MagickoVoiceSquare size={24} className="text-blue-500" strokeWidth={2} />
17315
+ * ```
17316
+ */
17317
+ declare const MagickoVoiceSquare: React.ForwardRefExoticComponent<Omit<MagickoVoiceSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17318
+
17319
+ /**
17320
+ * Props for the MagickoVolumeCross icon component
17321
+ * @property {number | string} [size] - Size of the icon (default: 24)
17322
+ */
17323
+ interface MagickoVolumeCrossProps extends React.SVGProps<SVGSVGElement> {
17324
+ size?: number | string;
17325
+ }
17326
+ /**
17327
+ * MagickoVolumeCross icon component
17328
+ * @example
17329
+ * ```tsx
17330
+ * import { MagickoVolumeCross } from 'magick-icons';
17331
+ *
17332
+ * <MagickoVolumeCross size={24} className="text-blue-500" strokeWidth={2} />
17333
+ * ```
17334
+ */
17335
+ declare const MagickoVolumeCross: React.ForwardRefExoticComponent<Omit<MagickoVolumeCrossProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17336
+
17337
+ /**
17338
+ * Props for the MagickoVolumeHigh icon component
17339
+ * @property {number | string} [size] - Size of the icon (default: 24)
17340
+ */
17341
+ interface MagickoVolumeHighProps extends React.SVGProps<SVGSVGElement> {
17342
+ size?: number | string;
17343
+ }
17344
+ /**
17345
+ * MagickoVolumeHigh icon component
17346
+ * @example
17347
+ * ```tsx
17348
+ * import { MagickoVolumeHigh } from 'magick-icons';
17349
+ *
17350
+ * <MagickoVolumeHigh size={24} className="text-blue-500" strokeWidth={2} />
17351
+ * ```
17352
+ */
17353
+ declare const MagickoVolumeHigh: React.ForwardRefExoticComponent<Omit<MagickoVolumeHighProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17354
+
17355
+ /**
17356
+ * Props for the MagickoVolumeLow icon component
17357
+ * @property {number | string} [size] - Size of the icon (default: 24)
17358
+ */
17359
+ interface MagickoVolumeLowProps extends React.SVGProps<SVGSVGElement> {
17360
+ size?: number | string;
17361
+ }
17362
+ /**
17363
+ * MagickoVolumeLow icon component
17364
+ * @example
17365
+ * ```tsx
17366
+ * import { MagickoVolumeLow } from 'magick-icons';
17367
+ *
17368
+ * <MagickoVolumeLow size={24} className="text-blue-500" strokeWidth={2} />
17369
+ * ```
17370
+ */
17371
+ declare const MagickoVolumeLow: React.ForwardRefExoticComponent<Omit<MagickoVolumeLowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17372
+
17373
+ /**
17374
+ * Props for the MagickoVolumeLow1 icon component
17375
+ * @property {number | string} [size] - Size of the icon (default: 24)
17376
+ */
17377
+ interface MagickoVolumeLow1Props extends React.SVGProps<SVGSVGElement> {
17378
+ size?: number | string;
17379
+ }
17380
+ /**
17381
+ * MagickoVolumeLow1 icon component
17382
+ * @example
17383
+ * ```tsx
17384
+ * import { MagickoVolumeLow1 } from 'magick-icons';
17385
+ *
17386
+ * <MagickoVolumeLow1 size={24} className="text-blue-500" strokeWidth={2} />
17387
+ * ```
17388
+ */
17389
+ declare const MagickoVolumeLow1: React.ForwardRefExoticComponent<Omit<MagickoVolumeLow1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17390
+
17391
+ /**
17392
+ * Props for the MagickoVolumeMute icon component
17393
+ * @property {number | string} [size] - Size of the icon (default: 24)
17394
+ */
17395
+ interface MagickoVolumeMuteProps extends React.SVGProps<SVGSVGElement> {
17396
+ size?: number | string;
17397
+ }
17398
+ /**
17399
+ * MagickoVolumeMute icon component
17400
+ * @example
17401
+ * ```tsx
17402
+ * import { MagickoVolumeMute } from 'magick-icons';
17403
+ *
17404
+ * <MagickoVolumeMute size={24} className="text-blue-500" strokeWidth={2} />
17405
+ * ```
17406
+ */
17407
+ declare const MagickoVolumeMute: React.ForwardRefExoticComponent<Omit<MagickoVolumeMuteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17408
+
17409
+ /**
17410
+ * Props for the MagickoVolumeSlash icon component
17411
+ * @property {number | string} [size] - Size of the icon (default: 24)
17412
+ */
17413
+ interface MagickoVolumeSlashProps extends React.SVGProps<SVGSVGElement> {
17414
+ size?: number | string;
17415
+ }
17416
+ /**
17417
+ * MagickoVolumeSlash icon component
17418
+ * @example
17419
+ * ```tsx
17420
+ * import { MagickoVolumeSlash } from 'magick-icons';
17421
+ *
17422
+ * <MagickoVolumeSlash size={24} className="text-blue-500" strokeWidth={2} />
17423
+ * ```
17424
+ */
17425
+ declare const MagickoVolumeSlash: React.ForwardRefExoticComponent<Omit<MagickoVolumeSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17426
+
17427
+ /**
17428
+ * Props for the MagickoVolumeUp icon component
17429
+ * @property {number | string} [size] - Size of the icon (default: 24)
17430
+ */
17431
+ interface MagickoVolumeUpProps extends React.SVGProps<SVGSVGElement> {
17432
+ size?: number | string;
17433
+ }
17434
+ /**
17435
+ * MagickoVolumeUp icon component
17436
+ * @example
17437
+ * ```tsx
17438
+ * import { MagickoVolumeUp } from 'magick-icons';
17439
+ *
17440
+ * <MagickoVolumeUp size={24} className="text-blue-500" strokeWidth={2} />
17441
+ * ```
17442
+ */
17443
+ declare const MagickoVolumeUp: React.ForwardRefExoticComponent<Omit<MagickoVolumeUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17444
+
17445
+ /**
17446
+ * Props for the MagickoWarning2 icon component
17447
+ * @property {number | string} [size] - Size of the icon (default: 24)
17448
+ */
17449
+ interface MagickoWarning2Props extends React.SVGProps<SVGSVGElement> {
17450
+ size?: number | string;
17451
+ }
17452
+ /**
17453
+ * MagickoWarning2 icon component
17454
+ * @example
17455
+ * ```tsx
17456
+ * import { MagickoWarning2 } from 'magick-icons';
17457
+ *
17458
+ * <MagickoWarning2 size={24} className="text-blue-500" strokeWidth={2} />
17459
+ * ```
17460
+ */
17461
+ declare const MagickoWarning2: React.ForwardRefExoticComponent<Omit<MagickoWarning2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17462
+
17463
+ /**
17464
+ * Props for the MagickoWatch1 icon component
17465
+ * @property {number | string} [size] - Size of the icon (default: 24)
17466
+ */
17467
+ interface MagickoWatch1Props extends React.SVGProps<SVGSVGElement> {
17468
+ size?: number | string;
17469
+ }
17470
+ /**
17471
+ * MagickoWatch1 icon component
17472
+ * @example
17473
+ * ```tsx
17474
+ * import { MagickoWatch1 } from 'magick-icons';
17475
+ *
17476
+ * <MagickoWatch1 size={24} className="text-blue-500" strokeWidth={2} />
17477
+ * ```
17478
+ */
17479
+ declare const MagickoWatch1: React.ForwardRefExoticComponent<Omit<MagickoWatch1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17480
+
17481
+ /**
17482
+ * Props for the MagickoWatch11 icon component
17483
+ * @property {number | string} [size] - Size of the icon (default: 24)
17484
+ */
17485
+ interface MagickoWatch11Props extends React.SVGProps<SVGSVGElement> {
17486
+ size?: number | string;
17487
+ }
17488
+ /**
17489
+ * MagickoWatch11 icon component
17490
+ * @example
17491
+ * ```tsx
17492
+ * import { MagickoWatch11 } from 'magick-icons';
17493
+ *
17494
+ * <MagickoWatch11 size={24} className="text-blue-500" strokeWidth={2} />
17495
+ * ```
17496
+ */
17497
+ declare const MagickoWatch11: React.ForwardRefExoticComponent<Omit<MagickoWatch11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17498
+
17499
+ /**
17500
+ * Props for the MagickoWatchStatus1 icon component
17501
+ * @property {number | string} [size] - Size of the icon (default: 24)
17502
+ */
17503
+ interface MagickoWatchStatus1Props extends React.SVGProps<SVGSVGElement> {
17504
+ size?: number | string;
17505
+ }
17506
+ /**
17507
+ * MagickoWatchStatus1 icon component
17508
+ * @example
17509
+ * ```tsx
17510
+ * import { MagickoWatchStatus1 } from 'magick-icons';
17511
+ *
17512
+ * <MagickoWatchStatus1 size={24} className="text-blue-500" strokeWidth={2} />
17513
+ * ```
17514
+ */
17515
+ declare const MagickoWatchStatus1: React.ForwardRefExoticComponent<Omit<MagickoWatchStatus1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17516
+
17517
+ /**
17518
+ * Props for the MagickoWeary icon component
17519
+ * @property {number | string} [size] - Size of the icon (default: 24)
17520
+ */
17521
+ interface MagickoWearyProps extends React.SVGProps<SVGSVGElement> {
17522
+ size?: number | string;
17523
+ }
17524
+ /**
17525
+ * MagickoWeary icon component
17526
+ * @example
17527
+ * ```tsx
17528
+ * import { MagickoWeary } from 'magick-icons';
17529
+ *
17530
+ * <MagickoWeary size={24} className="text-blue-500" strokeWidth={2} />
17531
+ * ```
17532
+ */
17533
+ declare const MagickoWeary: React.ForwardRefExoticComponent<Omit<MagickoWearyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17534
+
17535
+ /**
17536
+ * Props for the MagickoWeight1 icon component
17537
+ * @property {number | string} [size] - Size of the icon (default: 24)
17538
+ */
17539
+ interface MagickoWeight1Props extends React.SVGProps<SVGSVGElement> {
17540
+ size?: number | string;
17541
+ }
17542
+ /**
17543
+ * MagickoWeight1 icon component
17544
+ * @example
17545
+ * ```tsx
17546
+ * import { MagickoWeight1 } from 'magick-icons';
17547
+ *
17548
+ * <MagickoWeight1 size={24} className="text-blue-500" strokeWidth={2} />
17549
+ * ```
17550
+ */
17551
+ declare const MagickoWeight1: React.ForwardRefExoticComponent<Omit<MagickoWeight1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17552
+
17553
+ /**
17554
+ * Props for the MagickoWeight11 icon component
17555
+ * @property {number | string} [size] - Size of the icon (default: 24)
17556
+ */
17557
+ interface MagickoWeight11Props extends React.SVGProps<SVGSVGElement> {
17558
+ size?: number | string;
17559
+ }
17560
+ /**
17561
+ * MagickoWeight11 icon component
17562
+ * @example
17563
+ * ```tsx
17564
+ * import { MagickoWeight11 } from 'magick-icons';
17565
+ *
17566
+ * <MagickoWeight11 size={24} className="text-blue-500" strokeWidth={2} />
17567
+ * ```
17568
+ */
17569
+ declare const MagickoWeight11: React.ForwardRefExoticComponent<Omit<MagickoWeight11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17570
+
17571
+ /**
17572
+ * Props for the MagickoWind icon component
17573
+ * @property {number | string} [size] - Size of the icon (default: 24)
17574
+ */
17575
+ interface MagickoWindProps extends React.SVGProps<SVGSVGElement> {
17576
+ size?: number | string;
17577
+ }
17578
+ /**
17579
+ * MagickoWind icon component
17580
+ * @example
17581
+ * ```tsx
17582
+ * import { MagickoWind } from 'magick-icons';
17583
+ *
17584
+ * <MagickoWind size={24} className="text-blue-500" strokeWidth={2} />
17585
+ * ```
17586
+ */
17587
+ declare const MagickoWind: React.ForwardRefExoticComponent<Omit<MagickoWindProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17588
+
17589
+ /**
17590
+ * Props for the MagickoWind1 icon component
17591
+ * @property {number | string} [size] - Size of the icon (default: 24)
17592
+ */
17593
+ interface MagickoWind1Props extends React.SVGProps<SVGSVGElement> {
17594
+ size?: number | string;
17595
+ }
17596
+ /**
17597
+ * MagickoWind1 icon component
17598
+ * @example
17599
+ * ```tsx
17600
+ * import { MagickoWind1 } from 'magick-icons';
17601
+ *
17602
+ * <MagickoWind1 size={24} className="text-blue-500" strokeWidth={2} />
17603
+ * ```
17604
+ */
17605
+ declare const MagickoWind1: React.ForwardRefExoticComponent<Omit<MagickoWind1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17606
+
17607
+ /**
17608
+ * Props for the MagickoWind2 icon component
17609
+ * @property {number | string} [size] - Size of the icon (default: 24)
17610
+ */
17611
+ interface MagickoWind2Props extends React.SVGProps<SVGSVGElement> {
17612
+ size?: number | string;
17613
+ }
17614
+ /**
17615
+ * MagickoWind2 icon component
17616
+ * @example
17617
+ * ```tsx
17618
+ * import { MagickoWind2 } from 'magick-icons';
17619
+ *
17620
+ * <MagickoWind2 size={24} className="text-blue-500" strokeWidth={2} />
17621
+ * ```
17622
+ */
17623
+ declare const MagickoWind2: React.ForwardRefExoticComponent<Omit<MagickoWind2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17624
+
17625
+ /**
17626
+ * Props for the MagickoWoman icon component
17627
+ * @property {number | string} [size] - Size of the icon (default: 24)
17628
+ */
17629
+ interface MagickoWomanProps extends React.SVGProps<SVGSVGElement> {
17630
+ size?: number | string;
17631
+ }
17632
+ /**
17633
+ * MagickoWoman icon component
17634
+ * @example
17635
+ * ```tsx
17636
+ * import { MagickoWoman } from 'magick-icons';
17637
+ *
17638
+ * <MagickoWoman size={24} className="text-blue-500" strokeWidth={2} />
17639
+ * ```
17640
+ */
17641
+ declare const MagickoWoman: React.ForwardRefExoticComponent<Omit<MagickoWomanProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17642
+
17643
+ /**
17644
+ * Props for the MagickoZoomIn icon component
17645
+ * @property {number | string} [size] - Size of the icon (default: 24)
17646
+ */
17647
+ interface MagickoZoomInProps extends React.SVGProps<SVGSVGElement> {
17648
+ size?: number | string;
17649
+ }
17650
+ /**
17651
+ * MagickoZoomIn icon component
17652
+ * @example
17653
+ * ```tsx
17654
+ * import { MagickoZoomIn } from 'magick-icons';
17655
+ *
17656
+ * <MagickoZoomIn size={24} className="text-blue-500" strokeWidth={2} />
17657
+ * ```
17658
+ */
17659
+ declare const MagickoZoomIn: React.ForwardRefExoticComponent<Omit<MagickoZoomInProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17660
+
17661
+ /**
17662
+ * Props for the MagickoZoomOut icon component
17663
+ * @property {number | string} [size] - Size of the icon (default: 24)
17664
+ */
17665
+ interface MagickoZoomOutProps extends React.SVGProps<SVGSVGElement> {
17666
+ size?: number | string;
17667
+ }
17668
+ /**
17669
+ * MagickoZoomOut icon component
17670
+ * @example
17671
+ * ```tsx
17672
+ * import { MagickoZoomOut } from 'magick-icons';
17673
+ *
17674
+ * <MagickoZoomOut size={24} className="text-blue-500" strokeWidth={2} />
17675
+ * ```
17676
+ */
17677
+ declare const MagickoZoomOut: React.ForwardRefExoticComponent<Omit<MagickoZoomOutProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17678
+
17679
+ /**
17680
+ * Props for the MainComponent1 icon component
17681
+ * @property {number | string} [size] - Size of the icon (default: 24)
17682
+ */
17683
+ interface MainComponent1Props extends React.SVGProps<SVGSVGElement> {
17684
+ size?: number | string;
17685
+ }
17686
+ /**
17687
+ * MainComponent1 icon component
17688
+ * @example
17689
+ * ```tsx
17690
+ * import { MainComponent1 } from 'magick-icons';
17691
+ *
17692
+ * <MainComponent1 size={24} className="text-blue-500" strokeWidth={2} />
17693
+ * ```
17694
+ */
17695
+ declare const MainComponent1: React.ForwardRefExoticComponent<Omit<MainComponent1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17696
+
17697
+ /**
17698
+ * Props for the Marketing icon component
17699
+ * @property {number | string} [size] - Size of the icon (default: 24)
17700
+ */
17701
+ interface MarketingProps extends React.SVGProps<SVGSVGElement> {
17702
+ size?: number | string;
17703
+ }
17704
+ /**
17705
+ * Marketing icon component
17706
+ * @example
17707
+ * ```tsx
17708
+ * import { Marketing } from 'magick-icons';
17709
+ *
17710
+ * <Marketing size={24} className="text-blue-500" strokeWidth={2} />
17711
+ * ```
17712
+ */
17713
+ declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17714
+
17715
+ /**
17716
+ * Props for the Mask11 icon component
17717
+ * @property {number | string} [size] - Size of the icon (default: 24)
17718
+ */
17719
+ interface Mask11Props extends React.SVGProps<SVGSVGElement> {
17720
+ size?: number | string;
17721
+ }
17722
+ /**
17723
+ * Mask11 icon component
17724
+ * @example
17725
+ * ```tsx
17726
+ * import { Mask11 } from 'magick-icons';
17727
+ *
17728
+ * <Mask11 size={24} className="text-blue-500" strokeWidth={2} />
17729
+ * ```
17730
+ */
17731
+ declare const Mask11: React.ForwardRefExoticComponent<Omit<Mask11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17732
+
17733
+ /**
17734
+ * Props for the Mask21 icon component
17735
+ * @property {number | string} [size] - Size of the icon (default: 24)
17736
+ */
17737
+ interface Mask21Props extends React.SVGProps<SVGSVGElement> {
17738
+ size?: number | string;
17739
+ }
17740
+ /**
17741
+ * Mask21 icon component
17742
+ * @example
17743
+ * ```tsx
17744
+ * import { Mask21 } from 'magick-icons';
17745
+ *
17746
+ * <Mask21 size={24} className="text-blue-500" strokeWidth={2} />
17747
+ * ```
17748
+ */
17749
+ declare const Mask21: React.ForwardRefExoticComponent<Omit<Mask21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16670
17750
 
16671
17751
  /**
16672
17752
  * Props for the MessageEdit icon component
@@ -16938,4 +18018,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
16938
18018
  */
16939
18019
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16940
18020
 
16941
- 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, MagickoTicket1, type MagickoTicket1Props, MagickoTicket2, type MagickoTicket2Props, MagickoTicketDiscount, type MagickoTicketDiscountProps, 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 };
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 };