magick-icons 0.1.222 → 0.1.224

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
@@ -4734,6 +4734,24 @@ interface MagickoArchiveTickProps extends React.SVGProps<SVGSVGElement> {
4734
4734
  */
4735
4735
  declare const MagickoArchiveTick: React.ForwardRefExoticComponent<Omit<MagickoArchiveTickProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4736
4736
 
4737
+ /**
4738
+ * Props for the MagickoArrow icon component
4739
+ * @property {number | string} [size] - Size of the icon (default: 24)
4740
+ */
4741
+ interface MagickoArrowProps extends React.SVGProps<SVGSVGElement> {
4742
+ size?: number | string;
4743
+ }
4744
+ /**
4745
+ * MagickoArrow icon component
4746
+ * @example
4747
+ * ```tsx
4748
+ * import { MagickoArrow } from 'magick-icons';
4749
+ *
4750
+ * <MagickoArrow size={24} className="text-blue-500" strokeWidth={2} />
4751
+ * ```
4752
+ */
4753
+ declare const MagickoArrow: React.ForwardRefExoticComponent<Omit<MagickoArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4754
+
4737
4755
  /**
4738
4756
  * Props for the MagickoArrowBack icon component
4739
4757
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -4752,6 +4770,1068 @@ interface MagickoArrowBackProps extends React.SVGProps<SVGSVGElement> {
4752
4770
  */
4753
4771
  declare const MagickoArrowBack: React.ForwardRefExoticComponent<Omit<MagickoArrowBackProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4754
4772
 
4773
+ /**
4774
+ * Props for the MagickoArrowCircleDown icon component
4775
+ * @property {number | string} [size] - Size of the icon (default: 24)
4776
+ */
4777
+ interface MagickoArrowCircleDownProps extends React.SVGProps<SVGSVGElement> {
4778
+ size?: number | string;
4779
+ }
4780
+ /**
4781
+ * MagickoArrowCircleDown icon component
4782
+ * @example
4783
+ * ```tsx
4784
+ * import { MagickoArrowCircleDown } from 'magick-icons';
4785
+ *
4786
+ * <MagickoArrowCircleDown size={24} className="text-blue-500" strokeWidth={2} />
4787
+ * ```
4788
+ */
4789
+ declare const MagickoArrowCircleDown: React.ForwardRefExoticComponent<Omit<MagickoArrowCircleDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4790
+
4791
+ /**
4792
+ * Props for the MagickoArrowCircleLeft icon component
4793
+ * @property {number | string} [size] - Size of the icon (default: 24)
4794
+ */
4795
+ interface MagickoArrowCircleLeftProps extends React.SVGProps<SVGSVGElement> {
4796
+ size?: number | string;
4797
+ }
4798
+ /**
4799
+ * MagickoArrowCircleLeft icon component
4800
+ * @example
4801
+ * ```tsx
4802
+ * import { MagickoArrowCircleLeft } from 'magick-icons';
4803
+ *
4804
+ * <MagickoArrowCircleLeft size={24} className="text-blue-500" strokeWidth={2} />
4805
+ * ```
4806
+ */
4807
+ declare const MagickoArrowCircleLeft: React.ForwardRefExoticComponent<Omit<MagickoArrowCircleLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4808
+
4809
+ /**
4810
+ * Props for the MagickoArrowCircleRight icon component
4811
+ * @property {number | string} [size] - Size of the icon (default: 24)
4812
+ */
4813
+ interface MagickoArrowCircleRightProps extends React.SVGProps<SVGSVGElement> {
4814
+ size?: number | string;
4815
+ }
4816
+ /**
4817
+ * MagickoArrowCircleRight icon component
4818
+ * @example
4819
+ * ```tsx
4820
+ * import { MagickoArrowCircleRight } from 'magick-icons';
4821
+ *
4822
+ * <MagickoArrowCircleRight size={24} className="text-blue-500" strokeWidth={2} />
4823
+ * ```
4824
+ */
4825
+ declare const MagickoArrowCircleRight: React.ForwardRefExoticComponent<Omit<MagickoArrowCircleRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4826
+
4827
+ /**
4828
+ * Props for the MagickoArrowCircleUp icon component
4829
+ * @property {number | string} [size] - Size of the icon (default: 24)
4830
+ */
4831
+ interface MagickoArrowCircleUpProps extends React.SVGProps<SVGSVGElement> {
4832
+ size?: number | string;
4833
+ }
4834
+ /**
4835
+ * MagickoArrowCircleUp icon component
4836
+ * @example
4837
+ * ```tsx
4838
+ * import { MagickoArrowCircleUp } from 'magick-icons';
4839
+ *
4840
+ * <MagickoArrowCircleUp size={24} className="text-blue-500" strokeWidth={2} />
4841
+ * ```
4842
+ */
4843
+ declare const MagickoArrowCircleUp: React.ForwardRefExoticComponent<Omit<MagickoArrowCircleUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4844
+
4845
+ /**
4846
+ * Props for the MagickoArrowDiagonal01 icon component
4847
+ * @property {number | string} [size] - Size of the icon (default: 24)
4848
+ */
4849
+ interface MagickoArrowDiagonal01Props extends React.SVGProps<SVGSVGElement> {
4850
+ size?: number | string;
4851
+ }
4852
+ /**
4853
+ * MagickoArrowDiagonal01 icon component
4854
+ * @example
4855
+ * ```tsx
4856
+ * import { MagickoArrowDiagonal01 } from 'magick-icons';
4857
+ *
4858
+ * <MagickoArrowDiagonal01 size={24} className="text-blue-500" strokeWidth={2} />
4859
+ * ```
4860
+ */
4861
+ declare const MagickoArrowDiagonal01: React.ForwardRefExoticComponent<Omit<MagickoArrowDiagonal01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4862
+
4863
+ /**
4864
+ * Props for the MagickoArrowDiagonal02 icon component
4865
+ * @property {number | string} [size] - Size of the icon (default: 24)
4866
+ */
4867
+ interface MagickoArrowDiagonal02Props extends React.SVGProps<SVGSVGElement> {
4868
+ size?: number | string;
4869
+ }
4870
+ /**
4871
+ * MagickoArrowDiagonal02 icon component
4872
+ * @example
4873
+ * ```tsx
4874
+ * import { MagickoArrowDiagonal02 } from 'magick-icons';
4875
+ *
4876
+ * <MagickoArrowDiagonal02 size={24} className="text-blue-500" strokeWidth={2} />
4877
+ * ```
4878
+ */
4879
+ declare const MagickoArrowDiagonal02: React.ForwardRefExoticComponent<Omit<MagickoArrowDiagonal02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4880
+
4881
+ /**
4882
+ * Props for the MagickoArrowDiagonal03 icon component
4883
+ * @property {number | string} [size] - Size of the icon (default: 24)
4884
+ */
4885
+ interface MagickoArrowDiagonal03Props extends React.SVGProps<SVGSVGElement> {
4886
+ size?: number | string;
4887
+ }
4888
+ /**
4889
+ * MagickoArrowDiagonal03 icon component
4890
+ * @example
4891
+ * ```tsx
4892
+ * import { MagickoArrowDiagonal03 } from 'magick-icons';
4893
+ *
4894
+ * <MagickoArrowDiagonal03 size={24} className="text-blue-500" strokeWidth={2} />
4895
+ * ```
4896
+ */
4897
+ declare const MagickoArrowDiagonal03: React.ForwardRefExoticComponent<Omit<MagickoArrowDiagonal03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4898
+
4899
+ /**
4900
+ * Props for the MagickoArrowDiagonal04 icon component
4901
+ * @property {number | string} [size] - Size of the icon (default: 24)
4902
+ */
4903
+ interface MagickoArrowDiagonal04Props extends React.SVGProps<SVGSVGElement> {
4904
+ size?: number | string;
4905
+ }
4906
+ /**
4907
+ * MagickoArrowDiagonal04 icon component
4908
+ * @example
4909
+ * ```tsx
4910
+ * import { MagickoArrowDiagonal04 } from 'magick-icons';
4911
+ *
4912
+ * <MagickoArrowDiagonal04 size={24} className="text-blue-500" strokeWidth={2} />
4913
+ * ```
4914
+ */
4915
+ declare const MagickoArrowDiagonal04: React.ForwardRefExoticComponent<Omit<MagickoArrowDiagonal04Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4916
+
4917
+ /**
4918
+ * Props for the MagickoArrowDown01 icon component
4919
+ * @property {number | string} [size] - Size of the icon (default: 24)
4920
+ */
4921
+ interface MagickoArrowDown01Props extends React.SVGProps<SVGSVGElement> {
4922
+ size?: number | string;
4923
+ }
4924
+ /**
4925
+ * MagickoArrowDown01 icon component
4926
+ * @example
4927
+ * ```tsx
4928
+ * import { MagickoArrowDown01 } from 'magick-icons';
4929
+ *
4930
+ * <MagickoArrowDown01 size={24} className="text-blue-500" strokeWidth={2} />
4931
+ * ```
4932
+ */
4933
+ declare const MagickoArrowDown01: React.ForwardRefExoticComponent<Omit<MagickoArrowDown01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4934
+
4935
+ /**
4936
+ * Props for the MagickoArrowDown03 icon component
4937
+ * @property {number | string} [size] - Size of the icon (default: 24)
4938
+ */
4939
+ interface MagickoArrowDown03Props extends React.SVGProps<SVGSVGElement> {
4940
+ size?: number | string;
4941
+ }
4942
+ /**
4943
+ * MagickoArrowDown03 icon component
4944
+ * @example
4945
+ * ```tsx
4946
+ * import { MagickoArrowDown03 } from 'magick-icons';
4947
+ *
4948
+ * <MagickoArrowDown03 size={24} className="text-blue-500" strokeWidth={2} />
4949
+ * ```
4950
+ */
4951
+ declare const MagickoArrowDown03: React.ForwardRefExoticComponent<Omit<MagickoArrowDown03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4952
+
4953
+ /**
4954
+ * Props for the MagickoArrowDown04 icon component
4955
+ * @property {number | string} [size] - Size of the icon (default: 24)
4956
+ */
4957
+ interface MagickoArrowDown04Props extends React.SVGProps<SVGSVGElement> {
4958
+ size?: number | string;
4959
+ }
4960
+ /**
4961
+ * MagickoArrowDown04 icon component
4962
+ * @example
4963
+ * ```tsx
4964
+ * import { MagickoArrowDown04 } from 'magick-icons';
4965
+ *
4966
+ * <MagickoArrowDown04 size={24} className="text-blue-500" strokeWidth={2} />
4967
+ * ```
4968
+ */
4969
+ declare const MagickoArrowDown04: React.ForwardRefExoticComponent<Omit<MagickoArrowDown04Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
4970
+
4971
+ /**
4972
+ * Props for the MagickoArrowForward icon component
4973
+ * @property {number | string} [size] - Size of the icon (default: 24)
4974
+ */
4975
+ interface MagickoArrowForwardProps extends React.SVGProps<SVGSVGElement> {
4976
+ size?: number | string;
4977
+ }
4978
+ /**
4979
+ * MagickoArrowForward icon component
4980
+ * @example
4981
+ * ```tsx
4982
+ * import { MagickoArrowForward } from 'magick-icons';
4983
+ *
4984
+ * <MagickoArrowForward size={24} className="text-blue-500" strokeWidth={2} />
4985
+ * ```
4986
+ */
4987
+ declare const MagickoArrowForward: React.ForwardRefExoticComponent<Omit<MagickoArrowForwardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4988
+
4989
+ /**
4990
+ * Props for the MagickoArrowLeft01 icon component
4991
+ * @property {number | string} [size] - Size of the icon (default: 24)
4992
+ */
4993
+ interface MagickoArrowLeft01Props extends React.SVGProps<SVGSVGElement> {
4994
+ size?: number | string;
4995
+ }
4996
+ /**
4997
+ * MagickoArrowLeft01 icon component
4998
+ * @example
4999
+ * ```tsx
5000
+ * import { MagickoArrowLeft01 } from 'magick-icons';
5001
+ *
5002
+ * <MagickoArrowLeft01 size={24} className="text-blue-500" strokeWidth={2} />
5003
+ * ```
5004
+ */
5005
+ declare const MagickoArrowLeft01: React.ForwardRefExoticComponent<Omit<MagickoArrowLeft01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5006
+
5007
+ /**
5008
+ * Props for the MagickoArrowLeft03 icon component
5009
+ * @property {number | string} [size] - Size of the icon (default: 24)
5010
+ */
5011
+ interface MagickoArrowLeft03Props extends React.SVGProps<SVGSVGElement> {
5012
+ size?: number | string;
5013
+ }
5014
+ /**
5015
+ * MagickoArrowLeft03 icon component
5016
+ * @example
5017
+ * ```tsx
5018
+ * import { MagickoArrowLeft03 } from 'magick-icons';
5019
+ *
5020
+ * <MagickoArrowLeft03 size={24} className="text-blue-500" strokeWidth={2} />
5021
+ * ```
5022
+ */
5023
+ declare const MagickoArrowLeft03: React.ForwardRefExoticComponent<Omit<MagickoArrowLeft03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5024
+
5025
+ /**
5026
+ * Props for the MagickoArrowLeft04 icon component
5027
+ * @property {number | string} [size] - Size of the icon (default: 24)
5028
+ */
5029
+ interface MagickoArrowLeft04Props extends React.SVGProps<SVGSVGElement> {
5030
+ size?: number | string;
5031
+ }
5032
+ /**
5033
+ * MagickoArrowLeft04 icon component
5034
+ * @example
5035
+ * ```tsx
5036
+ * import { MagickoArrowLeft04 } from 'magick-icons';
5037
+ *
5038
+ * <MagickoArrowLeft04 size={24} className="text-blue-500" strokeWidth={2} />
5039
+ * ```
5040
+ */
5041
+ declare const MagickoArrowLeft04: React.ForwardRefExoticComponent<Omit<MagickoArrowLeft04Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5042
+
5043
+ /**
5044
+ * Props for the MagickoArrowRight01 icon component
5045
+ * @property {number | string} [size] - Size of the icon (default: 24)
5046
+ */
5047
+ interface MagickoArrowRight01Props extends React.SVGProps<SVGSVGElement> {
5048
+ size?: number | string;
5049
+ }
5050
+ /**
5051
+ * MagickoArrowRight01 icon component
5052
+ * @example
5053
+ * ```tsx
5054
+ * import { MagickoArrowRight01 } from 'magick-icons';
5055
+ *
5056
+ * <MagickoArrowRight01 size={24} className="text-blue-500" strokeWidth={2} />
5057
+ * ```
5058
+ */
5059
+ declare const MagickoArrowRight01: React.ForwardRefExoticComponent<Omit<MagickoArrowRight01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5060
+
5061
+ /**
5062
+ * Props for the MagickoArrowRight03 icon component
5063
+ * @property {number | string} [size] - Size of the icon (default: 24)
5064
+ */
5065
+ interface MagickoArrowRight03Props extends React.SVGProps<SVGSVGElement> {
5066
+ size?: number | string;
5067
+ }
5068
+ /**
5069
+ * MagickoArrowRight03 icon component
5070
+ * @example
5071
+ * ```tsx
5072
+ * import { MagickoArrowRight03 } from 'magick-icons';
5073
+ *
5074
+ * <MagickoArrowRight03 size={24} className="text-blue-500" strokeWidth={2} />
5075
+ * ```
5076
+ */
5077
+ declare const MagickoArrowRight03: React.ForwardRefExoticComponent<Omit<MagickoArrowRight03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5078
+
5079
+ /**
5080
+ * Props for the MagickoArrowRight04 icon component
5081
+ * @property {number | string} [size] - Size of the icon (default: 24)
5082
+ */
5083
+ interface MagickoArrowRight04Props extends React.SVGProps<SVGSVGElement> {
5084
+ size?: number | string;
5085
+ }
5086
+ /**
5087
+ * MagickoArrowRight04 icon component
5088
+ * @example
5089
+ * ```tsx
5090
+ * import { MagickoArrowRight04 } from 'magick-icons';
5091
+ *
5092
+ * <MagickoArrowRight04 size={24} className="text-blue-500" strokeWidth={2} />
5093
+ * ```
5094
+ */
5095
+ declare const MagickoArrowRight04: React.ForwardRefExoticComponent<Omit<MagickoArrowRight04Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5096
+
5097
+ /**
5098
+ * Props for the MagickoArrowSquare icon component
5099
+ * @property {number | string} [size] - Size of the icon (default: 24)
5100
+ */
5101
+ interface MagickoArrowSquareProps extends React.SVGProps<SVGSVGElement> {
5102
+ size?: number | string;
5103
+ }
5104
+ /**
5105
+ * MagickoArrowSquare icon component
5106
+ * @example
5107
+ * ```tsx
5108
+ * import { MagickoArrowSquare } from 'magick-icons';
5109
+ *
5110
+ * <MagickoArrowSquare size={24} className="text-blue-500" strokeWidth={2} />
5111
+ * ```
5112
+ */
5113
+ declare const MagickoArrowSquare: React.ForwardRefExoticComponent<Omit<MagickoArrowSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5114
+
5115
+ /**
5116
+ * Props for the MagickoArrowSquareDown icon component
5117
+ * @property {number | string} [size] - Size of the icon (default: 24)
5118
+ */
5119
+ interface MagickoArrowSquareDownProps extends React.SVGProps<SVGSVGElement> {
5120
+ size?: number | string;
5121
+ }
5122
+ /**
5123
+ * MagickoArrowSquareDown icon component
5124
+ * @example
5125
+ * ```tsx
5126
+ * import { MagickoArrowSquareDown } from 'magick-icons';
5127
+ *
5128
+ * <MagickoArrowSquareDown size={24} className="text-blue-500" strokeWidth={2} />
5129
+ * ```
5130
+ */
5131
+ declare const MagickoArrowSquareDown: React.ForwardRefExoticComponent<Omit<MagickoArrowSquareDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5132
+
5133
+ /**
5134
+ * Props for the MagickoArrowSquareLeft icon component
5135
+ * @property {number | string} [size] - Size of the icon (default: 24)
5136
+ */
5137
+ interface MagickoArrowSquareLeftProps extends React.SVGProps<SVGSVGElement> {
5138
+ size?: number | string;
5139
+ }
5140
+ /**
5141
+ * MagickoArrowSquareLeft icon component
5142
+ * @example
5143
+ * ```tsx
5144
+ * import { MagickoArrowSquareLeft } from 'magick-icons';
5145
+ *
5146
+ * <MagickoArrowSquareLeft size={24} className="text-blue-500" strokeWidth={2} />
5147
+ * ```
5148
+ */
5149
+ declare const MagickoArrowSquareLeft: React.ForwardRefExoticComponent<Omit<MagickoArrowSquareLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5150
+
5151
+ /**
5152
+ * Props for the MagickoArrowSquareRight icon component
5153
+ * @property {number | string} [size] - Size of the icon (default: 24)
5154
+ */
5155
+ interface MagickoArrowSquareRightProps extends React.SVGProps<SVGSVGElement> {
5156
+ size?: number | string;
5157
+ }
5158
+ /**
5159
+ * MagickoArrowSquareRight icon component
5160
+ * @example
5161
+ * ```tsx
5162
+ * import { MagickoArrowSquareRight } from 'magick-icons';
5163
+ *
5164
+ * <MagickoArrowSquareRight size={24} className="text-blue-500" strokeWidth={2} />
5165
+ * ```
5166
+ */
5167
+ declare const MagickoArrowSquareRight: React.ForwardRefExoticComponent<Omit<MagickoArrowSquareRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5168
+
5169
+ /**
5170
+ * Props for the MagickoArrowSquareUp icon component
5171
+ * @property {number | string} [size] - Size of the icon (default: 24)
5172
+ */
5173
+ interface MagickoArrowSquareUpProps extends React.SVGProps<SVGSVGElement> {
5174
+ size?: number | string;
5175
+ }
5176
+ /**
5177
+ * MagickoArrowSquareUp icon component
5178
+ * @example
5179
+ * ```tsx
5180
+ * import { MagickoArrowSquareUp } from 'magick-icons';
5181
+ *
5182
+ * <MagickoArrowSquareUp size={24} className="text-blue-500" strokeWidth={2} />
5183
+ * ```
5184
+ */
5185
+ declare const MagickoArrowSquareUp: React.ForwardRefExoticComponent<Omit<MagickoArrowSquareUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5186
+
5187
+ /**
5188
+ * Props for the MagickoArrowSwap01 icon component
5189
+ * @property {number | string} [size] - Size of the icon (default: 24)
5190
+ */
5191
+ interface MagickoArrowSwap01Props extends React.SVGProps<SVGSVGElement> {
5192
+ size?: number | string;
5193
+ }
5194
+ /**
5195
+ * MagickoArrowSwap01 icon component
5196
+ * @example
5197
+ * ```tsx
5198
+ * import { MagickoArrowSwap01 } from 'magick-icons';
5199
+ *
5200
+ * <MagickoArrowSwap01 size={24} className="text-blue-500" strokeWidth={2} />
5201
+ * ```
5202
+ */
5203
+ declare const MagickoArrowSwap01: React.ForwardRefExoticComponent<Omit<MagickoArrowSwap01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5204
+
5205
+ /**
5206
+ * Props for the MagickoArrowSwap02 icon component
5207
+ * @property {number | string} [size] - Size of the icon (default: 24)
5208
+ */
5209
+ interface MagickoArrowSwap02Props extends React.SVGProps<SVGSVGElement> {
5210
+ size?: number | string;
5211
+ }
5212
+ /**
5213
+ * MagickoArrowSwap02 icon component
5214
+ * @example
5215
+ * ```tsx
5216
+ * import { MagickoArrowSwap02 } from 'magick-icons';
5217
+ *
5218
+ * <MagickoArrowSwap02 size={24} className="text-blue-500" strokeWidth={2} />
5219
+ * ```
5220
+ */
5221
+ declare const MagickoArrowSwap02: React.ForwardRefExoticComponent<Omit<MagickoArrowSwap02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5222
+
5223
+ /**
5224
+ * Props for the MagickoArrowSwap03 icon component
5225
+ * @property {number | string} [size] - Size of the icon (default: 24)
5226
+ */
5227
+ interface MagickoArrowSwap03Props extends React.SVGProps<SVGSVGElement> {
5228
+ size?: number | string;
5229
+ }
5230
+ /**
5231
+ * MagickoArrowSwap03 icon component
5232
+ * @example
5233
+ * ```tsx
5234
+ * import { MagickoArrowSwap03 } from 'magick-icons';
5235
+ *
5236
+ * <MagickoArrowSwap03 size={24} className="text-blue-500" strokeWidth={2} />
5237
+ * ```
5238
+ */
5239
+ declare const MagickoArrowSwap03: React.ForwardRefExoticComponent<Omit<MagickoArrowSwap03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5240
+
5241
+ /**
5242
+ * Props for the MagickoArrowTransfer01 icon component
5243
+ * @property {number | string} [size] - Size of the icon (default: 24)
5244
+ */
5245
+ interface MagickoArrowTransfer01Props extends React.SVGProps<SVGSVGElement> {
5246
+ size?: number | string;
5247
+ }
5248
+ /**
5249
+ * MagickoArrowTransfer01 icon component
5250
+ * @example
5251
+ * ```tsx
5252
+ * import { MagickoArrowTransfer01 } from 'magick-icons';
5253
+ *
5254
+ * <MagickoArrowTransfer01 size={24} className="text-blue-500" strokeWidth={2} />
5255
+ * ```
5256
+ */
5257
+ declare const MagickoArrowTransfer01: React.ForwardRefExoticComponent<Omit<MagickoArrowTransfer01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5258
+
5259
+ /**
5260
+ * Props for the MagickoArrowTransfer02 icon component
5261
+ * @property {number | string} [size] - Size of the icon (default: 24)
5262
+ */
5263
+ interface MagickoArrowTransfer02Props extends React.SVGProps<SVGSVGElement> {
5264
+ size?: number | string;
5265
+ }
5266
+ /**
5267
+ * MagickoArrowTransfer02 icon component
5268
+ * @example
5269
+ * ```tsx
5270
+ * import { MagickoArrowTransfer02 } from 'magick-icons';
5271
+ *
5272
+ * <MagickoArrowTransfer02 size={24} className="text-blue-500" strokeWidth={2} />
5273
+ * ```
5274
+ */
5275
+ declare const MagickoArrowTransfer02: React.ForwardRefExoticComponent<Omit<MagickoArrowTransfer02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5276
+
5277
+ /**
5278
+ * Props for the MagickoArrowUp01 icon component
5279
+ * @property {number | string} [size] - Size of the icon (default: 24)
5280
+ */
5281
+ interface MagickoArrowUp01Props extends React.SVGProps<SVGSVGElement> {
5282
+ size?: number | string;
5283
+ }
5284
+ /**
5285
+ * MagickoArrowUp01 icon component
5286
+ * @example
5287
+ * ```tsx
5288
+ * import { MagickoArrowUp01 } from 'magick-icons';
5289
+ *
5290
+ * <MagickoArrowUp01 size={24} className="text-blue-500" strokeWidth={2} />
5291
+ * ```
5292
+ */
5293
+ declare const MagickoArrowUp01: React.ForwardRefExoticComponent<Omit<MagickoArrowUp01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5294
+
5295
+ /**
5296
+ * Props for the MagickoArrowUp03 icon component
5297
+ * @property {number | string} [size] - Size of the icon (default: 24)
5298
+ */
5299
+ interface MagickoArrowUp03Props extends React.SVGProps<SVGSVGElement> {
5300
+ size?: number | string;
5301
+ }
5302
+ /**
5303
+ * MagickoArrowUp03 icon component
5304
+ * @example
5305
+ * ```tsx
5306
+ * import { MagickoArrowUp03 } from 'magick-icons';
5307
+ *
5308
+ * <MagickoArrowUp03 size={24} className="text-blue-500" strokeWidth={2} />
5309
+ * ```
5310
+ */
5311
+ declare const MagickoArrowUp03: React.ForwardRefExoticComponent<Omit<MagickoArrowUp03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5312
+
5313
+ /**
5314
+ * Props for the MagickoArrowUp04 icon component
5315
+ * @property {number | string} [size] - Size of the icon (default: 24)
5316
+ */
5317
+ interface MagickoArrowUp04Props extends React.SVGProps<SVGSVGElement> {
5318
+ size?: number | string;
5319
+ }
5320
+ /**
5321
+ * MagickoArrowUp04 icon component
5322
+ * @example
5323
+ * ```tsx
5324
+ * import { MagickoArrowUp04 } from 'magick-icons';
5325
+ *
5326
+ * <MagickoArrowUp04 size={24} className="text-blue-500" strokeWidth={2} />
5327
+ * ```
5328
+ */
5329
+ declare const MagickoArrowUp04: React.ForwardRefExoticComponent<Omit<MagickoArrowUp04Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5330
+
5331
+ /**
5332
+ * Props for the MagickoAscendingArrow icon component
5333
+ * @property {number | string} [size] - Size of the icon (default: 24)
5334
+ */
5335
+ interface MagickoAscendingArrowProps extends React.SVGProps<SVGSVGElement> {
5336
+ size?: number | string;
5337
+ }
5338
+ /**
5339
+ * MagickoAscendingArrow icon component
5340
+ * @example
5341
+ * ```tsx
5342
+ * import { MagickoAscendingArrow } from 'magick-icons';
5343
+ *
5344
+ * <MagickoAscendingArrow size={24} className="text-blue-500" strokeWidth={2} />
5345
+ * ```
5346
+ */
5347
+ declare const MagickoAscendingArrow: React.ForwardRefExoticComponent<Omit<MagickoAscendingArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5348
+
5349
+ /**
5350
+ * Props for the MagickoAtom icon component
5351
+ * @property {number | string} [size] - Size of the icon (default: 24)
5352
+ */
5353
+ interface MagickoAtomProps extends React.SVGProps<SVGSVGElement> {
5354
+ size?: number | string;
5355
+ }
5356
+ /**
5357
+ * MagickoAtom icon component
5358
+ * @example
5359
+ * ```tsx
5360
+ * import { MagickoAtom } from 'magick-icons';
5361
+ *
5362
+ * <MagickoAtom size={24} className="text-blue-500" strokeWidth={2} />
5363
+ * ```
5364
+ */
5365
+ declare const MagickoAtom: React.ForwardRefExoticComponent<Omit<MagickoAtomProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5366
+
5367
+ /**
5368
+ * Props for the MagickoAtom1 icon component
5369
+ * @property {number | string} [size] - Size of the icon (default: 24)
5370
+ */
5371
+ interface MagickoAtom1Props extends React.SVGProps<SVGSVGElement> {
5372
+ size?: number | string;
5373
+ }
5374
+ /**
5375
+ * MagickoAtom1 icon component
5376
+ * @example
5377
+ * ```tsx
5378
+ * import { MagickoAtom1 } from 'magick-icons';
5379
+ *
5380
+ * <MagickoAtom1 size={24} className="text-blue-500" strokeWidth={2} />
5381
+ * ```
5382
+ */
5383
+ declare const MagickoAtom1: React.ForwardRefExoticComponent<Omit<MagickoAtom1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5384
+
5385
+ /**
5386
+ * Props for the MagickoBackward icon component
5387
+ * @property {number | string} [size] - Size of the icon (default: 24)
5388
+ */
5389
+ interface MagickoBackwardProps extends React.SVGProps<SVGSVGElement> {
5390
+ size?: number | string;
5391
+ }
5392
+ /**
5393
+ * MagickoBackward icon component
5394
+ * @example
5395
+ * ```tsx
5396
+ * import { MagickoBackward } from 'magick-icons';
5397
+ *
5398
+ * <MagickoBackward size={24} className="text-blue-500" strokeWidth={2} />
5399
+ * ```
5400
+ */
5401
+ declare const MagickoBackward: React.ForwardRefExoticComponent<Omit<MagickoBackwardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5402
+
5403
+ /**
5404
+ * Props for the MagickoBackward10Seconds icon component
5405
+ * @property {number | string} [size] - Size of the icon (default: 24)
5406
+ */
5407
+ interface MagickoBackward10SecondsProps extends React.SVGProps<SVGSVGElement> {
5408
+ size?: number | string;
5409
+ }
5410
+ /**
5411
+ * MagickoBackward10Seconds icon component
5412
+ * @example
5413
+ * ```tsx
5414
+ * import { MagickoBackward10Seconds } from 'magick-icons';
5415
+ *
5416
+ * <MagickoBackward10Seconds size={24} className="text-blue-500" strokeWidth={2} />
5417
+ * ```
5418
+ */
5419
+ declare const MagickoBackward10Seconds: React.ForwardRefExoticComponent<Omit<MagickoBackward10SecondsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5420
+
5421
+ /**
5422
+ * Props for the MagickoBackward15Seconds icon component
5423
+ * @property {number | string} [size] - Size of the icon (default: 24)
5424
+ */
5425
+ interface MagickoBackward15SecondsProps extends React.SVGProps<SVGSVGElement> {
5426
+ size?: number | string;
5427
+ }
5428
+ /**
5429
+ * MagickoBackward15Seconds icon component
5430
+ * @example
5431
+ * ```tsx
5432
+ * import { MagickoBackward15Seconds } from 'magick-icons';
5433
+ *
5434
+ * <MagickoBackward15Seconds size={24} className="text-blue-500" strokeWidth={2} />
5435
+ * ```
5436
+ */
5437
+ declare const MagickoBackward15Seconds: React.ForwardRefExoticComponent<Omit<MagickoBackward15SecondsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5438
+
5439
+ /**
5440
+ * Props for the MagickoBackward5Seconds icon component
5441
+ * @property {number | string} [size] - Size of the icon (default: 24)
5442
+ */
5443
+ interface MagickoBackward5SecondsProps extends React.SVGProps<SVGSVGElement> {
5444
+ size?: number | string;
5445
+ }
5446
+ /**
5447
+ * MagickoBackward5Seconds icon component
5448
+ * @example
5449
+ * ```tsx
5450
+ * import { MagickoBackward5Seconds } from 'magick-icons';
5451
+ *
5452
+ * <MagickoBackward5Seconds size={24} className="text-blue-500" strokeWidth={2} />
5453
+ * ```
5454
+ */
5455
+ declare const MagickoBackward5Seconds: React.ForwardRefExoticComponent<Omit<MagickoBackward5SecondsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5456
+
5457
+ /**
5458
+ * Props for the MagickoBag icon component
5459
+ * @property {number | string} [size] - Size of the icon (default: 24)
5460
+ */
5461
+ interface MagickoBagProps extends React.SVGProps<SVGSVGElement> {
5462
+ size?: number | string;
5463
+ }
5464
+ /**
5465
+ * MagickoBag icon component
5466
+ * @example
5467
+ * ```tsx
5468
+ * import { MagickoBag } from 'magick-icons';
5469
+ *
5470
+ * <MagickoBag size={24} className="text-blue-500" strokeWidth={2} />
5471
+ * ```
5472
+ */
5473
+ declare const MagickoBag: React.ForwardRefExoticComponent<Omit<MagickoBagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5474
+
5475
+ /**
5476
+ * Props for the MagickoBag1 icon component
5477
+ * @property {number | string} [size] - Size of the icon (default: 24)
5478
+ */
5479
+ interface MagickoBag1Props extends React.SVGProps<SVGSVGElement> {
5480
+ size?: number | string;
5481
+ }
5482
+ /**
5483
+ * MagickoBag1 icon component
5484
+ * @example
5485
+ * ```tsx
5486
+ * import { MagickoBag1 } from 'magick-icons';
5487
+ *
5488
+ * <MagickoBag1 size={24} className="text-blue-500" strokeWidth={2} />
5489
+ * ```
5490
+ */
5491
+ declare const MagickoBag1: React.ForwardRefExoticComponent<Omit<MagickoBag1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5492
+
5493
+ /**
5494
+ * Props for the MagickoBag2 icon component
5495
+ * @property {number | string} [size] - Size of the icon (default: 24)
5496
+ */
5497
+ interface MagickoBag2Props extends React.SVGProps<SVGSVGElement> {
5498
+ size?: number | string;
5499
+ }
5500
+ /**
5501
+ * MagickoBag2 icon component
5502
+ * @example
5503
+ * ```tsx
5504
+ * import { MagickoBag2 } from 'magick-icons';
5505
+ *
5506
+ * <MagickoBag2 size={24} className="text-blue-500" strokeWidth={2} />
5507
+ * ```
5508
+ */
5509
+ declare const MagickoBag2: React.ForwardRefExoticComponent<Omit<MagickoBag2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5510
+
5511
+ /**
5512
+ * Props for the MagickoBag21 icon component
5513
+ * @property {number | string} [size] - Size of the icon (default: 24)
5514
+ */
5515
+ interface MagickoBag21Props extends React.SVGProps<SVGSVGElement> {
5516
+ size?: number | string;
5517
+ }
5518
+ /**
5519
+ * MagickoBag21 icon component
5520
+ * @example
5521
+ * ```tsx
5522
+ * import { MagickoBag21 } from 'magick-icons';
5523
+ *
5524
+ * <MagickoBag21 size={24} className="text-blue-500" strokeWidth={2} />
5525
+ * ```
5526
+ */
5527
+ declare const MagickoBag21: React.ForwardRefExoticComponent<Omit<MagickoBag21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5528
+
5529
+ /**
5530
+ * Props for the MagickoBagHappy icon component
5531
+ * @property {number | string} [size] - Size of the icon (default: 24)
5532
+ */
5533
+ interface MagickoBagHappyProps extends React.SVGProps<SVGSVGElement> {
5534
+ size?: number | string;
5535
+ }
5536
+ /**
5537
+ * MagickoBagHappy icon component
5538
+ * @example
5539
+ * ```tsx
5540
+ * import { MagickoBagHappy } from 'magick-icons';
5541
+ *
5542
+ * <MagickoBagHappy size={24} className="text-blue-500" strokeWidth={2} />
5543
+ * ```
5544
+ */
5545
+ declare const MagickoBagHappy: React.ForwardRefExoticComponent<Omit<MagickoBagHappyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5546
+
5547
+ /**
5548
+ * Props for the MagickoBank icon component
5549
+ * @property {number | string} [size] - Size of the icon (default: 24)
5550
+ */
5551
+ interface MagickoBankProps extends React.SVGProps<SVGSVGElement> {
5552
+ size?: number | string;
5553
+ }
5554
+ /**
5555
+ * MagickoBank icon component
5556
+ * @example
5557
+ * ```tsx
5558
+ * import { MagickoBank } from 'magick-icons';
5559
+ *
5560
+ * <MagickoBank size={24} className="text-blue-500" strokeWidth={2} />
5561
+ * ```
5562
+ */
5563
+ declare const MagickoBank: React.ForwardRefExoticComponent<Omit<MagickoBankProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5564
+
5565
+ /**
5566
+ * Props for the MagickoBank1 icon component
5567
+ * @property {number | string} [size] - Size of the icon (default: 24)
5568
+ */
5569
+ interface MagickoBank1Props extends React.SVGProps<SVGSVGElement> {
5570
+ size?: number | string;
5571
+ }
5572
+ /**
5573
+ * MagickoBank1 icon component
5574
+ * @example
5575
+ * ```tsx
5576
+ * import { MagickoBank1 } from 'magick-icons';
5577
+ *
5578
+ * <MagickoBank1 size={24} className="text-blue-500" strokeWidth={2} />
5579
+ * ```
5580
+ */
5581
+ declare const MagickoBank1: React.ForwardRefExoticComponent<Omit<MagickoBank1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5582
+
5583
+ /**
5584
+ * Props for the MagickoBank2 icon component
5585
+ * @property {number | string} [size] - Size of the icon (default: 24)
5586
+ */
5587
+ interface MagickoBank2Props extends React.SVGProps<SVGSVGElement> {
5588
+ size?: number | string;
5589
+ }
5590
+ /**
5591
+ * MagickoBank2 icon component
5592
+ * @example
5593
+ * ```tsx
5594
+ * import { MagickoBank2 } from 'magick-icons';
5595
+ *
5596
+ * <MagickoBank2 size={24} className="text-blue-500" strokeWidth={2} />
5597
+ * ```
5598
+ */
5599
+ declare const MagickoBank2: React.ForwardRefExoticComponent<Omit<MagickoBank2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5600
+
5601
+ /**
5602
+ * Props for the MagickoBarcode icon component
5603
+ * @property {number | string} [size] - Size of the icon (default: 24)
5604
+ */
5605
+ interface MagickoBarcodeProps extends React.SVGProps<SVGSVGElement> {
5606
+ size?: number | string;
5607
+ }
5608
+ /**
5609
+ * MagickoBarcode icon component
5610
+ * @example
5611
+ * ```tsx
5612
+ * import { MagickoBarcode } from 'magick-icons';
5613
+ *
5614
+ * <MagickoBarcode size={24} className="text-blue-500" strokeWidth={2} />
5615
+ * ```
5616
+ */
5617
+ declare const MagickoBarcode: React.ForwardRefExoticComponent<Omit<MagickoBarcodeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5618
+
5619
+ /**
5620
+ * Props for the MagickoBill icon component
5621
+ * @property {number | string} [size] - Size of the icon (default: 24)
5622
+ */
5623
+ interface MagickoBillProps extends React.SVGProps<SVGSVGElement> {
5624
+ size?: number | string;
5625
+ }
5626
+ /**
5627
+ * MagickoBill icon component
5628
+ * @example
5629
+ * ```tsx
5630
+ * import { MagickoBill } from 'magick-icons';
5631
+ *
5632
+ * <MagickoBill size={24} className="text-blue-500" strokeWidth={2} />
5633
+ * ```
5634
+ */
5635
+ declare const MagickoBill: React.ForwardRefExoticComponent<Omit<MagickoBillProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5636
+
5637
+ /**
5638
+ * Props for the MagickoBitcoinCard1 icon component
5639
+ * @property {number | string} [size] - Size of the icon (default: 24)
5640
+ */
5641
+ interface MagickoBitcoinCard1Props extends React.SVGProps<SVGSVGElement> {
5642
+ size?: number | string;
5643
+ }
5644
+ /**
5645
+ * MagickoBitcoinCard1 icon component
5646
+ * @example
5647
+ * ```tsx
5648
+ * import { MagickoBitcoinCard1 } from 'magick-icons';
5649
+ *
5650
+ * <MagickoBitcoinCard1 size={24} className="text-blue-500" strokeWidth={2} />
5651
+ * ```
5652
+ */
5653
+ declare const MagickoBitcoinCard1: React.ForwardRefExoticComponent<Omit<MagickoBitcoinCard1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5654
+
5655
+ /**
5656
+ * Props for the MagickoBitcoinConvert1 icon component
5657
+ * @property {number | string} [size] - Size of the icon (default: 24)
5658
+ */
5659
+ interface MagickoBitcoinConvert1Props extends React.SVGProps<SVGSVGElement> {
5660
+ size?: number | string;
5661
+ }
5662
+ /**
5663
+ * MagickoBitcoinConvert1 icon component
5664
+ * @example
5665
+ * ```tsx
5666
+ * import { MagickoBitcoinConvert1 } from 'magick-icons';
5667
+ *
5668
+ * <MagickoBitcoinConvert1 size={24} className="text-blue-500" strokeWidth={2} />
5669
+ * ```
5670
+ */
5671
+ declare const MagickoBitcoinConvert1: React.ForwardRefExoticComponent<Omit<MagickoBitcoinConvert1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5672
+
5673
+ /**
5674
+ * Props for the MagickoBitcoinRefresh1 icon component
5675
+ * @property {number | string} [size] - Size of the icon (default: 24)
5676
+ */
5677
+ interface MagickoBitcoinRefresh1Props extends React.SVGProps<SVGSVGElement> {
5678
+ size?: number | string;
5679
+ }
5680
+ /**
5681
+ * MagickoBitcoinRefresh1 icon component
5682
+ * @example
5683
+ * ```tsx
5684
+ * import { MagickoBitcoinRefresh1 } from 'magick-icons';
5685
+ *
5686
+ * <MagickoBitcoinRefresh1 size={24} className="text-blue-500" strokeWidth={2} />
5687
+ * ```
5688
+ */
5689
+ declare const MagickoBitcoinRefresh1: React.ForwardRefExoticComponent<Omit<MagickoBitcoinRefresh1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5690
+
5691
+ /**
5692
+ * Props for the MagickoBluetooth icon component
5693
+ * @property {number | string} [size] - Size of the icon (default: 24)
5694
+ */
5695
+ interface MagickoBluetoothProps extends React.SVGProps<SVGSVGElement> {
5696
+ size?: number | string;
5697
+ }
5698
+ /**
5699
+ * MagickoBluetooth icon component
5700
+ * @example
5701
+ * ```tsx
5702
+ * import { MagickoBluetooth } from 'magick-icons';
5703
+ *
5704
+ * <MagickoBluetooth size={24} className="text-blue-500" strokeWidth={2} />
5705
+ * ```
5706
+ */
5707
+ declare const MagickoBluetooth: React.ForwardRefExoticComponent<Omit<MagickoBluetoothProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5708
+
5709
+ /**
5710
+ * Props for the MagickoBluetooth2 icon component
5711
+ * @property {number | string} [size] - Size of the icon (default: 24)
5712
+ */
5713
+ interface MagickoBluetooth2Props extends React.SVGProps<SVGSVGElement> {
5714
+ size?: number | string;
5715
+ }
5716
+ /**
5717
+ * MagickoBluetooth2 icon component
5718
+ * @example
5719
+ * ```tsx
5720
+ * import { MagickoBluetooth2 } from 'magick-icons';
5721
+ *
5722
+ * <MagickoBluetooth2 size={24} className="text-blue-500" strokeWidth={2} />
5723
+ * ```
5724
+ */
5725
+ declare const MagickoBluetooth2: React.ForwardRefExoticComponent<Omit<MagickoBluetooth2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
5726
+
5727
+ /**
5728
+ * Props for the MagickoBluetoothCircle icon component
5729
+ * @property {number | string} [size] - Size of the icon (default: 24)
5730
+ */
5731
+ interface MagickoBluetoothCircleProps extends React.SVGProps<SVGSVGElement> {
5732
+ size?: number | string;
5733
+ }
5734
+ /**
5735
+ * MagickoBluetoothCircle icon component
5736
+ * @example
5737
+ * ```tsx
5738
+ * import { MagickoBluetoothCircle } from 'magick-icons';
5739
+ *
5740
+ * <MagickoBluetoothCircle size={24} className="text-blue-500" strokeWidth={2} />
5741
+ * ```
5742
+ */
5743
+ declare const MagickoBluetoothCircle: React.ForwardRefExoticComponent<Omit<MagickoBluetoothCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5744
+
5745
+ /**
5746
+ * Props for the MagickoBluetoothRectangle icon component
5747
+ * @property {number | string} [size] - Size of the icon (default: 24)
5748
+ */
5749
+ interface MagickoBluetoothRectangleProps extends React.SVGProps<SVGSVGElement> {
5750
+ size?: number | string;
5751
+ }
5752
+ /**
5753
+ * MagickoBluetoothRectangle icon component
5754
+ * @example
5755
+ * ```tsx
5756
+ * import { MagickoBluetoothRectangle } from 'magick-icons';
5757
+ *
5758
+ * <MagickoBluetoothRectangle size={24} className="text-blue-500" strokeWidth={2} />
5759
+ * ```
5760
+ */
5761
+ declare const MagickoBluetoothRectangle: React.ForwardRefExoticComponent<Omit<MagickoBluetoothRectangleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5762
+
5763
+ /**
5764
+ * Props for the MagickoBook icon component
5765
+ * @property {number | string} [size] - Size of the icon (default: 24)
5766
+ */
5767
+ interface MagickoBookProps extends React.SVGProps<SVGSVGElement> {
5768
+ size?: number | string;
5769
+ }
5770
+ /**
5771
+ * MagickoBook icon component
5772
+ * @example
5773
+ * ```tsx
5774
+ * import { MagickoBook } from 'magick-icons';
5775
+ *
5776
+ * <MagickoBook size={24} className="text-blue-500" strokeWidth={2} />
5777
+ * ```
5778
+ */
5779
+ declare const MagickoBook: React.ForwardRefExoticComponent<Omit<MagickoBookProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5780
+
5781
+ /**
5782
+ * Props for the MagickoBookOpen icon component
5783
+ * @property {number | string} [size] - Size of the icon (default: 24)
5784
+ */
5785
+ interface MagickoBookOpenProps extends React.SVGProps<SVGSVGElement> {
5786
+ size?: number | string;
5787
+ }
5788
+ /**
5789
+ * MagickoBookOpen icon component
5790
+ * @example
5791
+ * ```tsx
5792
+ * import { MagickoBookOpen } from 'magick-icons';
5793
+ *
5794
+ * <MagickoBookOpen size={24} className="text-blue-500" strokeWidth={2} />
5795
+ * ```
5796
+ */
5797
+ declare const MagickoBookOpen: React.ForwardRefExoticComponent<Omit<MagickoBookOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5798
+
5799
+ /**
5800
+ * Props for the MagickoBookSaved icon component
5801
+ * @property {number | string} [size] - Size of the icon (default: 24)
5802
+ */
5803
+ interface MagickoBookSavedProps extends React.SVGProps<SVGSVGElement> {
5804
+ size?: number | string;
5805
+ }
5806
+ /**
5807
+ * MagickoBookSaved icon component
5808
+ * @example
5809
+ * ```tsx
5810
+ * import { MagickoBookSaved } from 'magick-icons';
5811
+ *
5812
+ * <MagickoBookSaved size={24} className="text-blue-500" strokeWidth={2} />
5813
+ * ```
5814
+ */
5815
+ declare const MagickoBookSaved: React.ForwardRefExoticComponent<Omit<MagickoBookSavedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5816
+
5817
+ /**
5818
+ * Props for the MagickoBookSquare icon component
5819
+ * @property {number | string} [size] - Size of the icon (default: 24)
5820
+ */
5821
+ interface MagickoBookSquareProps extends React.SVGProps<SVGSVGElement> {
5822
+ size?: number | string;
5823
+ }
5824
+ /**
5825
+ * MagickoBookSquare icon component
5826
+ * @example
5827
+ * ```tsx
5828
+ * import { MagickoBookSquare } from 'magick-icons';
5829
+ *
5830
+ * <MagickoBookSquare size={24} className="text-blue-500" strokeWidth={2} />
5831
+ * ```
5832
+ */
5833
+ declare const MagickoBookSquare: React.ForwardRefExoticComponent<Omit<MagickoBookSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5834
+
4755
5835
  /**
4756
5836
  * Props for the MagickoCheck icon component
4757
5837
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -5058,4 +6138,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
5058
6138
  */
5059
6139
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
5060
6140
 
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 };
6141
+ 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, 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 };