magick-icons 0.1.221 → 0.1.223

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
@@ -4752,6 +4752,546 @@ interface MagickoArrowBackProps extends React.SVGProps<SVGSVGElement> {
4752
4752
  */
4753
4753
  declare const MagickoArrowBack: React.ForwardRefExoticComponent<Omit<MagickoArrowBackProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4754
4754
 
4755
+ /**
4756
+ * Props for the MagickoArrowCircleDown icon component
4757
+ * @property {number | string} [size] - Size of the icon (default: 24)
4758
+ */
4759
+ interface MagickoArrowCircleDownProps extends React.SVGProps<SVGSVGElement> {
4760
+ size?: number | string;
4761
+ }
4762
+ /**
4763
+ * MagickoArrowCircleDown icon component
4764
+ * @example
4765
+ * ```tsx
4766
+ * import { MagickoArrowCircleDown } from 'magick-icons';
4767
+ *
4768
+ * <MagickoArrowCircleDown size={24} className="text-blue-500" strokeWidth={2} />
4769
+ * ```
4770
+ */
4771
+ declare const MagickoArrowCircleDown: React.ForwardRefExoticComponent<Omit<MagickoArrowCircleDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4772
+
4773
+ /**
4774
+ * Props for the MagickoArrowCircleLeft icon component
4775
+ * @property {number | string} [size] - Size of the icon (default: 24)
4776
+ */
4777
+ interface MagickoArrowCircleLeftProps extends React.SVGProps<SVGSVGElement> {
4778
+ size?: number | string;
4779
+ }
4780
+ /**
4781
+ * MagickoArrowCircleLeft icon component
4782
+ * @example
4783
+ * ```tsx
4784
+ * import { MagickoArrowCircleLeft } from 'magick-icons';
4785
+ *
4786
+ * <MagickoArrowCircleLeft size={24} className="text-blue-500" strokeWidth={2} />
4787
+ * ```
4788
+ */
4789
+ declare const MagickoArrowCircleLeft: React.ForwardRefExoticComponent<Omit<MagickoArrowCircleLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4790
+
4791
+ /**
4792
+ * Props for the MagickoArrowCircleRight icon component
4793
+ * @property {number | string} [size] - Size of the icon (default: 24)
4794
+ */
4795
+ interface MagickoArrowCircleRightProps extends React.SVGProps<SVGSVGElement> {
4796
+ size?: number | string;
4797
+ }
4798
+ /**
4799
+ * MagickoArrowCircleRight icon component
4800
+ * @example
4801
+ * ```tsx
4802
+ * import { MagickoArrowCircleRight } from 'magick-icons';
4803
+ *
4804
+ * <MagickoArrowCircleRight size={24} className="text-blue-500" strokeWidth={2} />
4805
+ * ```
4806
+ */
4807
+ declare const MagickoArrowCircleRight: React.ForwardRefExoticComponent<Omit<MagickoArrowCircleRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4808
+
4809
+ /**
4810
+ * Props for the MagickoArrowCircleUp icon component
4811
+ * @property {number | string} [size] - Size of the icon (default: 24)
4812
+ */
4813
+ interface MagickoArrowCircleUpProps extends React.SVGProps<SVGSVGElement> {
4814
+ size?: number | string;
4815
+ }
4816
+ /**
4817
+ * MagickoArrowCircleUp icon component
4818
+ * @example
4819
+ * ```tsx
4820
+ * import { MagickoArrowCircleUp } from 'magick-icons';
4821
+ *
4822
+ * <MagickoArrowCircleUp size={24} className="text-blue-500" strokeWidth={2} />
4823
+ * ```
4824
+ */
4825
+ declare const MagickoArrowCircleUp: React.ForwardRefExoticComponent<Omit<MagickoArrowCircleUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4826
+
4827
+ /**
4828
+ * Props for the MagickoArrowDiagonal01 icon component
4829
+ * @property {number | string} [size] - Size of the icon (default: 24)
4830
+ */
4831
+ interface MagickoArrowDiagonal01Props extends React.SVGProps<SVGSVGElement> {
4832
+ size?: number | string;
4833
+ }
4834
+ /**
4835
+ * MagickoArrowDiagonal01 icon component
4836
+ * @example
4837
+ * ```tsx
4838
+ * import { MagickoArrowDiagonal01 } from 'magick-icons';
4839
+ *
4840
+ * <MagickoArrowDiagonal01 size={24} className="text-blue-500" strokeWidth={2} />
4841
+ * ```
4842
+ */
4843
+ declare const MagickoArrowDiagonal01: React.ForwardRefExoticComponent<Omit<MagickoArrowDiagonal01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4844
+
4845
+ /**
4846
+ * Props for the MagickoArrowDiagonal02 icon component
4847
+ * @property {number | string} [size] - Size of the icon (default: 24)
4848
+ */
4849
+ interface MagickoArrowDiagonal02Props extends React.SVGProps<SVGSVGElement> {
4850
+ size?: number | string;
4851
+ }
4852
+ /**
4853
+ * MagickoArrowDiagonal02 icon component
4854
+ * @example
4855
+ * ```tsx
4856
+ * import { MagickoArrowDiagonal02 } from 'magick-icons';
4857
+ *
4858
+ * <MagickoArrowDiagonal02 size={24} className="text-blue-500" strokeWidth={2} />
4859
+ * ```
4860
+ */
4861
+ declare const MagickoArrowDiagonal02: React.ForwardRefExoticComponent<Omit<MagickoArrowDiagonal02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4862
+
4863
+ /**
4864
+ * Props for the MagickoArrowDiagonal03 icon component
4865
+ * @property {number | string} [size] - Size of the icon (default: 24)
4866
+ */
4867
+ interface MagickoArrowDiagonal03Props extends React.SVGProps<SVGSVGElement> {
4868
+ size?: number | string;
4869
+ }
4870
+ /**
4871
+ * MagickoArrowDiagonal03 icon component
4872
+ * @example
4873
+ * ```tsx
4874
+ * import { MagickoArrowDiagonal03 } from 'magick-icons';
4875
+ *
4876
+ * <MagickoArrowDiagonal03 size={24} className="text-blue-500" strokeWidth={2} />
4877
+ * ```
4878
+ */
4879
+ declare const MagickoArrowDiagonal03: React.ForwardRefExoticComponent<Omit<MagickoArrowDiagonal03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4880
+
4881
+ /**
4882
+ * Props for the MagickoArrowDiagonal04 icon component
4883
+ * @property {number | string} [size] - Size of the icon (default: 24)
4884
+ */
4885
+ interface MagickoArrowDiagonal04Props extends React.SVGProps<SVGSVGElement> {
4886
+ size?: number | string;
4887
+ }
4888
+ /**
4889
+ * MagickoArrowDiagonal04 icon component
4890
+ * @example
4891
+ * ```tsx
4892
+ * import { MagickoArrowDiagonal04 } from 'magick-icons';
4893
+ *
4894
+ * <MagickoArrowDiagonal04 size={24} className="text-blue-500" strokeWidth={2} />
4895
+ * ```
4896
+ */
4897
+ declare const MagickoArrowDiagonal04: React.ForwardRefExoticComponent<Omit<MagickoArrowDiagonal04Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4898
+
4899
+ /**
4900
+ * Props for the MagickoArrowDown01 icon component
4901
+ * @property {number | string} [size] - Size of the icon (default: 24)
4902
+ */
4903
+ interface MagickoArrowDown01Props extends React.SVGProps<SVGSVGElement> {
4904
+ size?: number | string;
4905
+ }
4906
+ /**
4907
+ * MagickoArrowDown01 icon component
4908
+ * @example
4909
+ * ```tsx
4910
+ * import { MagickoArrowDown01 } from 'magick-icons';
4911
+ *
4912
+ * <MagickoArrowDown01 size={24} className="text-blue-500" strokeWidth={2} />
4913
+ * ```
4914
+ */
4915
+ declare const MagickoArrowDown01: React.ForwardRefExoticComponent<Omit<MagickoArrowDown01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4916
+
4917
+ /**
4918
+ * Props for the MagickoArrowDown03 icon component
4919
+ * @property {number | string} [size] - Size of the icon (default: 24)
4920
+ */
4921
+ interface MagickoArrowDown03Props extends React.SVGProps<SVGSVGElement> {
4922
+ size?: number | string;
4923
+ }
4924
+ /**
4925
+ * MagickoArrowDown03 icon component
4926
+ * @example
4927
+ * ```tsx
4928
+ * import { MagickoArrowDown03 } from 'magick-icons';
4929
+ *
4930
+ * <MagickoArrowDown03 size={24} className="text-blue-500" strokeWidth={2} />
4931
+ * ```
4932
+ */
4933
+ declare const MagickoArrowDown03: React.ForwardRefExoticComponent<Omit<MagickoArrowDown03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4934
+
4935
+ /**
4936
+ * Props for the MagickoArrowDown04 icon component
4937
+ * @property {number | string} [size] - Size of the icon (default: 24)
4938
+ */
4939
+ interface MagickoArrowDown04Props extends React.SVGProps<SVGSVGElement> {
4940
+ size?: number | string;
4941
+ }
4942
+ /**
4943
+ * MagickoArrowDown04 icon component
4944
+ * @example
4945
+ * ```tsx
4946
+ * import { MagickoArrowDown04 } from 'magick-icons';
4947
+ *
4948
+ * <MagickoArrowDown04 size={24} className="text-blue-500" strokeWidth={2} />
4949
+ * ```
4950
+ */
4951
+ declare const MagickoArrowDown04: React.ForwardRefExoticComponent<Omit<MagickoArrowDown04Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4952
+
4953
+ /**
4954
+ * Props for the MagickoArrowForward icon component
4955
+ * @property {number | string} [size] - Size of the icon (default: 24)
4956
+ */
4957
+ interface MagickoArrowForwardProps extends React.SVGProps<SVGSVGElement> {
4958
+ size?: number | string;
4959
+ }
4960
+ /**
4961
+ * MagickoArrowForward icon component
4962
+ * @example
4963
+ * ```tsx
4964
+ * import { MagickoArrowForward } from 'magick-icons';
4965
+ *
4966
+ * <MagickoArrowForward size={24} className="text-blue-500" strokeWidth={2} />
4967
+ * ```
4968
+ */
4969
+ declare const MagickoArrowForward: React.ForwardRefExoticComponent<Omit<MagickoArrowForwardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4970
+
4971
+ /**
4972
+ * Props for the MagickoArrowLeft01 icon component
4973
+ * @property {number | string} [size] - Size of the icon (default: 24)
4974
+ */
4975
+ interface MagickoArrowLeft01Props extends React.SVGProps<SVGSVGElement> {
4976
+ size?: number | string;
4977
+ }
4978
+ /**
4979
+ * MagickoArrowLeft01 icon component
4980
+ * @example
4981
+ * ```tsx
4982
+ * import { MagickoArrowLeft01 } from 'magick-icons';
4983
+ *
4984
+ * <MagickoArrowLeft01 size={24} className="text-blue-500" strokeWidth={2} />
4985
+ * ```
4986
+ */
4987
+ declare const MagickoArrowLeft01: React.ForwardRefExoticComponent<Omit<MagickoArrowLeft01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4988
+
4989
+ /**
4990
+ * Props for the MagickoArrowLeft03 icon component
4991
+ * @property {number | string} [size] - Size of the icon (default: 24)
4992
+ */
4993
+ interface MagickoArrowLeft03Props extends React.SVGProps<SVGSVGElement> {
4994
+ size?: number | string;
4995
+ }
4996
+ /**
4997
+ * MagickoArrowLeft03 icon component
4998
+ * @example
4999
+ * ```tsx
5000
+ * import { MagickoArrowLeft03 } from 'magick-icons';
5001
+ *
5002
+ * <MagickoArrowLeft03 size={24} className="text-blue-500" strokeWidth={2} />
5003
+ * ```
5004
+ */
5005
+ declare const MagickoArrowLeft03: React.ForwardRefExoticComponent<Omit<MagickoArrowLeft03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5006
+
5007
+ /**
5008
+ * Props for the MagickoArrowLeft04 icon component
5009
+ * @property {number | string} [size] - Size of the icon (default: 24)
5010
+ */
5011
+ interface MagickoArrowLeft04Props extends React.SVGProps<SVGSVGElement> {
5012
+ size?: number | string;
5013
+ }
5014
+ /**
5015
+ * MagickoArrowLeft04 icon component
5016
+ * @example
5017
+ * ```tsx
5018
+ * import { MagickoArrowLeft04 } from 'magick-icons';
5019
+ *
5020
+ * <MagickoArrowLeft04 size={24} className="text-blue-500" strokeWidth={2} />
5021
+ * ```
5022
+ */
5023
+ declare const MagickoArrowLeft04: React.ForwardRefExoticComponent<Omit<MagickoArrowLeft04Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5024
+
5025
+ /**
5026
+ * Props for the MagickoArrowRight01 icon component
5027
+ * @property {number | string} [size] - Size of the icon (default: 24)
5028
+ */
5029
+ interface MagickoArrowRight01Props extends React.SVGProps<SVGSVGElement> {
5030
+ size?: number | string;
5031
+ }
5032
+ /**
5033
+ * MagickoArrowRight01 icon component
5034
+ * @example
5035
+ * ```tsx
5036
+ * import { MagickoArrowRight01 } from 'magick-icons';
5037
+ *
5038
+ * <MagickoArrowRight01 size={24} className="text-blue-500" strokeWidth={2} />
5039
+ * ```
5040
+ */
5041
+ declare const MagickoArrowRight01: React.ForwardRefExoticComponent<Omit<MagickoArrowRight01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5042
+
5043
+ /**
5044
+ * Props for the MagickoArrowRight03 icon component
5045
+ * @property {number | string} [size] - Size of the icon (default: 24)
5046
+ */
5047
+ interface MagickoArrowRight03Props extends React.SVGProps<SVGSVGElement> {
5048
+ size?: number | string;
5049
+ }
5050
+ /**
5051
+ * MagickoArrowRight03 icon component
5052
+ * @example
5053
+ * ```tsx
5054
+ * import { MagickoArrowRight03 } from 'magick-icons';
5055
+ *
5056
+ * <MagickoArrowRight03 size={24} className="text-blue-500" strokeWidth={2} />
5057
+ * ```
5058
+ */
5059
+ declare const MagickoArrowRight03: React.ForwardRefExoticComponent<Omit<MagickoArrowRight03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5060
+
5061
+ /**
5062
+ * Props for the MagickoArrowRight04 icon component
5063
+ * @property {number | string} [size] - Size of the icon (default: 24)
5064
+ */
5065
+ interface MagickoArrowRight04Props extends React.SVGProps<SVGSVGElement> {
5066
+ size?: number | string;
5067
+ }
5068
+ /**
5069
+ * MagickoArrowRight04 icon component
5070
+ * @example
5071
+ * ```tsx
5072
+ * import { MagickoArrowRight04 } from 'magick-icons';
5073
+ *
5074
+ * <MagickoArrowRight04 size={24} className="text-blue-500" strokeWidth={2} />
5075
+ * ```
5076
+ */
5077
+ declare const MagickoArrowRight04: React.ForwardRefExoticComponent<Omit<MagickoArrowRight04Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5078
+
5079
+ /**
5080
+ * Props for the MagickoArrowSquare icon component
5081
+ * @property {number | string} [size] - Size of the icon (default: 24)
5082
+ */
5083
+ interface MagickoArrowSquareProps extends React.SVGProps<SVGSVGElement> {
5084
+ size?: number | string;
5085
+ }
5086
+ /**
5087
+ * MagickoArrowSquare icon component
5088
+ * @example
5089
+ * ```tsx
5090
+ * import { MagickoArrowSquare } from 'magick-icons';
5091
+ *
5092
+ * <MagickoArrowSquare size={24} className="text-blue-500" strokeWidth={2} />
5093
+ * ```
5094
+ */
5095
+ declare const MagickoArrowSquare: React.ForwardRefExoticComponent<Omit<MagickoArrowSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5096
+
5097
+ /**
5098
+ * Props for the MagickoArrowSquareDown icon component
5099
+ * @property {number | string} [size] - Size of the icon (default: 24)
5100
+ */
5101
+ interface MagickoArrowSquareDownProps extends React.SVGProps<SVGSVGElement> {
5102
+ size?: number | string;
5103
+ }
5104
+ /**
5105
+ * MagickoArrowSquareDown icon component
5106
+ * @example
5107
+ * ```tsx
5108
+ * import { MagickoArrowSquareDown } from 'magick-icons';
5109
+ *
5110
+ * <MagickoArrowSquareDown size={24} className="text-blue-500" strokeWidth={2} />
5111
+ * ```
5112
+ */
5113
+ declare const MagickoArrowSquareDown: React.ForwardRefExoticComponent<Omit<MagickoArrowSquareDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5114
+
5115
+ /**
5116
+ * Props for the MagickoArrowSquareLeft icon component
5117
+ * @property {number | string} [size] - Size of the icon (default: 24)
5118
+ */
5119
+ interface MagickoArrowSquareLeftProps extends React.SVGProps<SVGSVGElement> {
5120
+ size?: number | string;
5121
+ }
5122
+ /**
5123
+ * MagickoArrowSquareLeft icon component
5124
+ * @example
5125
+ * ```tsx
5126
+ * import { MagickoArrowSquareLeft } from 'magick-icons';
5127
+ *
5128
+ * <MagickoArrowSquareLeft size={24} className="text-blue-500" strokeWidth={2} />
5129
+ * ```
5130
+ */
5131
+ declare const MagickoArrowSquareLeft: React.ForwardRefExoticComponent<Omit<MagickoArrowSquareLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5132
+
5133
+ /**
5134
+ * Props for the MagickoArrowSquareRight icon component
5135
+ * @property {number | string} [size] - Size of the icon (default: 24)
5136
+ */
5137
+ interface MagickoArrowSquareRightProps extends React.SVGProps<SVGSVGElement> {
5138
+ size?: number | string;
5139
+ }
5140
+ /**
5141
+ * MagickoArrowSquareRight icon component
5142
+ * @example
5143
+ * ```tsx
5144
+ * import { MagickoArrowSquareRight } from 'magick-icons';
5145
+ *
5146
+ * <MagickoArrowSquareRight size={24} className="text-blue-500" strokeWidth={2} />
5147
+ * ```
5148
+ */
5149
+ declare const MagickoArrowSquareRight: React.ForwardRefExoticComponent<Omit<MagickoArrowSquareRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5150
+
5151
+ /**
5152
+ * Props for the MagickoArrowSquareUp icon component
5153
+ * @property {number | string} [size] - Size of the icon (default: 24)
5154
+ */
5155
+ interface MagickoArrowSquareUpProps extends React.SVGProps<SVGSVGElement> {
5156
+ size?: number | string;
5157
+ }
5158
+ /**
5159
+ * MagickoArrowSquareUp icon component
5160
+ * @example
5161
+ * ```tsx
5162
+ * import { MagickoArrowSquareUp } from 'magick-icons';
5163
+ *
5164
+ * <MagickoArrowSquareUp size={24} className="text-blue-500" strokeWidth={2} />
5165
+ * ```
5166
+ */
5167
+ declare const MagickoArrowSquareUp: React.ForwardRefExoticComponent<Omit<MagickoArrowSquareUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5168
+
5169
+ /**
5170
+ * Props for the MagickoArrowSwap01 icon component
5171
+ * @property {number | string} [size] - Size of the icon (default: 24)
5172
+ */
5173
+ interface MagickoArrowSwap01Props extends React.SVGProps<SVGSVGElement> {
5174
+ size?: number | string;
5175
+ }
5176
+ /**
5177
+ * MagickoArrowSwap01 icon component
5178
+ * @example
5179
+ * ```tsx
5180
+ * import { MagickoArrowSwap01 } from 'magick-icons';
5181
+ *
5182
+ * <MagickoArrowSwap01 size={24} className="text-blue-500" strokeWidth={2} />
5183
+ * ```
5184
+ */
5185
+ declare const MagickoArrowSwap01: React.ForwardRefExoticComponent<Omit<MagickoArrowSwap01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5186
+
5187
+ /**
5188
+ * Props for the MagickoArrowSwap02 icon component
5189
+ * @property {number | string} [size] - Size of the icon (default: 24)
5190
+ */
5191
+ interface MagickoArrowSwap02Props extends React.SVGProps<SVGSVGElement> {
5192
+ size?: number | string;
5193
+ }
5194
+ /**
5195
+ * MagickoArrowSwap02 icon component
5196
+ * @example
5197
+ * ```tsx
5198
+ * import { MagickoArrowSwap02 } from 'magick-icons';
5199
+ *
5200
+ * <MagickoArrowSwap02 size={24} className="text-blue-500" strokeWidth={2} />
5201
+ * ```
5202
+ */
5203
+ declare const MagickoArrowSwap02: React.ForwardRefExoticComponent<Omit<MagickoArrowSwap02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5204
+
5205
+ /**
5206
+ * Props for the MagickoArrowSwap03 icon component
5207
+ * @property {number | string} [size] - Size of the icon (default: 24)
5208
+ */
5209
+ interface MagickoArrowSwap03Props extends React.SVGProps<SVGSVGElement> {
5210
+ size?: number | string;
5211
+ }
5212
+ /**
5213
+ * MagickoArrowSwap03 icon component
5214
+ * @example
5215
+ * ```tsx
5216
+ * import { MagickoArrowSwap03 } from 'magick-icons';
5217
+ *
5218
+ * <MagickoArrowSwap03 size={24} className="text-blue-500" strokeWidth={2} />
5219
+ * ```
5220
+ */
5221
+ declare const MagickoArrowSwap03: React.ForwardRefExoticComponent<Omit<MagickoArrowSwap03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5222
+
5223
+ /**
5224
+ * Props for the MagickoArrowTransfer01 icon component
5225
+ * @property {number | string} [size] - Size of the icon (default: 24)
5226
+ */
5227
+ interface MagickoArrowTransfer01Props extends React.SVGProps<SVGSVGElement> {
5228
+ size?: number | string;
5229
+ }
5230
+ /**
5231
+ * MagickoArrowTransfer01 icon component
5232
+ * @example
5233
+ * ```tsx
5234
+ * import { MagickoArrowTransfer01 } from 'magick-icons';
5235
+ *
5236
+ * <MagickoArrowTransfer01 size={24} className="text-blue-500" strokeWidth={2} />
5237
+ * ```
5238
+ */
5239
+ declare const MagickoArrowTransfer01: React.ForwardRefExoticComponent<Omit<MagickoArrowTransfer01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5240
+
5241
+ /**
5242
+ * Props for the MagickoArrowTransfer02 icon component
5243
+ * @property {number | string} [size] - Size of the icon (default: 24)
5244
+ */
5245
+ interface MagickoArrowTransfer02Props extends React.SVGProps<SVGSVGElement> {
5246
+ size?: number | string;
5247
+ }
5248
+ /**
5249
+ * MagickoArrowTransfer02 icon component
5250
+ * @example
5251
+ * ```tsx
5252
+ * import { MagickoArrowTransfer02 } from 'magick-icons';
5253
+ *
5254
+ * <MagickoArrowTransfer02 size={24} className="text-blue-500" strokeWidth={2} />
5255
+ * ```
5256
+ */
5257
+ declare const MagickoArrowTransfer02: React.ForwardRefExoticComponent<Omit<MagickoArrowTransfer02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5258
+
5259
+ /**
5260
+ * Props for the MagickoArrowUp01 icon component
5261
+ * @property {number | string} [size] - Size of the icon (default: 24)
5262
+ */
5263
+ interface MagickoArrowUp01Props extends React.SVGProps<SVGSVGElement> {
5264
+ size?: number | string;
5265
+ }
5266
+ /**
5267
+ * MagickoArrowUp01 icon component
5268
+ * @example
5269
+ * ```tsx
5270
+ * import { MagickoArrowUp01 } from 'magick-icons';
5271
+ *
5272
+ * <MagickoArrowUp01 size={24} className="text-blue-500" strokeWidth={2} />
5273
+ * ```
5274
+ */
5275
+ declare const MagickoArrowUp01: React.ForwardRefExoticComponent<Omit<MagickoArrowUp01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5276
+
5277
+ /**
5278
+ * Props for the MagickoArrowUp03 icon component
5279
+ * @property {number | string} [size] - Size of the icon (default: 24)
5280
+ */
5281
+ interface MagickoArrowUp03Props extends React.SVGProps<SVGSVGElement> {
5282
+ size?: number | string;
5283
+ }
5284
+ /**
5285
+ * MagickoArrowUp03 icon component
5286
+ * @example
5287
+ * ```tsx
5288
+ * import { MagickoArrowUp03 } from 'magick-icons';
5289
+ *
5290
+ * <MagickoArrowUp03 size={24} className="text-blue-500" strokeWidth={2} />
5291
+ * ```
5292
+ */
5293
+ declare const MagickoArrowUp03: React.ForwardRefExoticComponent<Omit<MagickoArrowUp03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5294
+
4755
5295
  /**
4756
5296
  * Props for the MagickoCheck icon component
4757
5297
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -5058,4 +5598,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
5058
5598
  */
5059
5599
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5060
5600
 
5061
- 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, MagickoArrowBack, type MagickoArrowBackProps, MagickoCheck, type MagickoCheckProps, 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 };
5601
+ 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, 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, 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, MagickoCheck, type MagickoCheckProps, 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 };