magick-icons 0.1.226 → 0.1.228

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
@@ -6804,6 +6804,24 @@ interface MagickoCategory2Props extends React.SVGProps<SVGSVGElement> {
6804
6804
  */
6805
6805
  declare const MagickoCategory2: React.ForwardRefExoticComponent<Omit<MagickoCategory2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6806
6806
 
6807
+ /**
6808
+ * Props for the MagickoChart icon component
6809
+ * @property {number | string} [size] - Size of the icon (default: 24)
6810
+ */
6811
+ interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {
6812
+ size?: number | string;
6813
+ }
6814
+ /**
6815
+ * MagickoChart icon component
6816
+ * @example
6817
+ * ```tsx
6818
+ * import { MagickoChart } from 'magick-icons';
6819
+ *
6820
+ * <MagickoChart size={24} className="text-blue-500" strokeWidth={2} />
6821
+ * ```
6822
+ */
6823
+ declare const MagickoChart: React.ForwardRefExoticComponent<Omit<MagickoChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6824
+
6807
6825
  /**
6808
6826
  * Props for the MagickoChart1 icon component
6809
6827
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -6876,6 +6894,24 @@ interface MagickoChart3Props extends React.SVGProps<SVGSVGElement> {
6876
6894
  */
6877
6895
  declare const MagickoChart3: React.ForwardRefExoticComponent<Omit<MagickoChart3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6878
6896
 
6897
+ /**
6898
+ * Props for the MagickoChart31 icon component
6899
+ * @property {number | string} [size] - Size of the icon (default: 24)
6900
+ */
6901
+ interface MagickoChart31Props extends React.SVGProps<SVGSVGElement> {
6902
+ size?: number | string;
6903
+ }
6904
+ /**
6905
+ * MagickoChart31 icon component
6906
+ * @example
6907
+ * ```tsx
6908
+ * import { MagickoChart31 } from 'magick-icons';
6909
+ *
6910
+ * <MagickoChart31 size={24} className="text-blue-500" strokeWidth={2} />
6911
+ * ```
6912
+ */
6913
+ declare const MagickoChart31: React.ForwardRefExoticComponent<Omit<MagickoChart31Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6914
+
6879
6915
  /**
6880
6916
  * Props for the MagickoChart4 icon component
6881
6917
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -6912,6 +6948,114 @@ interface MagickoChart5Props extends React.SVGProps<SVGSVGElement> {
6912
6948
  */
6913
6949
  declare const MagickoChart5: React.ForwardRefExoticComponent<Omit<MagickoChart5Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6914
6950
 
6951
+ /**
6952
+ * Props for the MagickoChartFail icon component
6953
+ * @property {number | string} [size] - Size of the icon (default: 24)
6954
+ */
6955
+ interface MagickoChartFailProps extends React.SVGProps<SVGSVGElement> {
6956
+ size?: number | string;
6957
+ }
6958
+ /**
6959
+ * MagickoChartFail icon component
6960
+ * @example
6961
+ * ```tsx
6962
+ * import { MagickoChartFail } from 'magick-icons';
6963
+ *
6964
+ * <MagickoChartFail size={24} className="text-blue-500" strokeWidth={2} />
6965
+ * ```
6966
+ */
6967
+ declare const MagickoChartFail: React.ForwardRefExoticComponent<Omit<MagickoChartFailProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6968
+
6969
+ /**
6970
+ * Props for the MagickoChartSquare icon component
6971
+ * @property {number | string} [size] - Size of the icon (default: 24)
6972
+ */
6973
+ interface MagickoChartSquareProps extends React.SVGProps<SVGSVGElement> {
6974
+ size?: number | string;
6975
+ }
6976
+ /**
6977
+ * MagickoChartSquare icon component
6978
+ * @example
6979
+ * ```tsx
6980
+ * import { MagickoChartSquare } from 'magick-icons';
6981
+ *
6982
+ * <MagickoChartSquare size={24} className="text-blue-500" strokeWidth={2} />
6983
+ * ```
6984
+ */
6985
+ declare const MagickoChartSquare: React.ForwardRefExoticComponent<Omit<MagickoChartSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6986
+
6987
+ /**
6988
+ * Props for the MagickoChartSquare1 icon component
6989
+ * @property {number | string} [size] - Size of the icon (default: 24)
6990
+ */
6991
+ interface MagickoChartSquare1Props extends React.SVGProps<SVGSVGElement> {
6992
+ size?: number | string;
6993
+ }
6994
+ /**
6995
+ * MagickoChartSquare1 icon component
6996
+ * @example
6997
+ * ```tsx
6998
+ * import { MagickoChartSquare1 } from 'magick-icons';
6999
+ *
7000
+ * <MagickoChartSquare1 size={24} className="text-blue-500" strokeWidth={2} />
7001
+ * ```
7002
+ */
7003
+ declare const MagickoChartSquare1: React.ForwardRefExoticComponent<Omit<MagickoChartSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7004
+
7005
+ /**
7006
+ * Props for the MagickoChartSquare2 icon component
7007
+ * @property {number | string} [size] - Size of the icon (default: 24)
7008
+ */
7009
+ interface MagickoChartSquare2Props extends React.SVGProps<SVGSVGElement> {
7010
+ size?: number | string;
7011
+ }
7012
+ /**
7013
+ * MagickoChartSquare2 icon component
7014
+ * @example
7015
+ * ```tsx
7016
+ * import { MagickoChartSquare2 } from 'magick-icons';
7017
+ *
7018
+ * <MagickoChartSquare2 size={24} className="text-blue-500" strokeWidth={2} />
7019
+ * ```
7020
+ */
7021
+ declare const MagickoChartSquare2: React.ForwardRefExoticComponent<Omit<MagickoChartSquare2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7022
+
7023
+ /**
7024
+ * Props for the MagickoChartSuccess icon component
7025
+ * @property {number | string} [size] - Size of the icon (default: 24)
7026
+ */
7027
+ interface MagickoChartSuccessProps extends React.SVGProps<SVGSVGElement> {
7028
+ size?: number | string;
7029
+ }
7030
+ /**
7031
+ * MagickoChartSuccess icon component
7032
+ * @example
7033
+ * ```tsx
7034
+ * import { MagickoChartSuccess } from 'magick-icons';
7035
+ *
7036
+ * <MagickoChartSuccess size={24} className="text-blue-500" strokeWidth={2} />
7037
+ * ```
7038
+ */
7039
+ declare const MagickoChartSuccess: React.ForwardRefExoticComponent<Omit<MagickoChartSuccessProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7040
+
7041
+ /**
7042
+ * Props for the MagickoChatbox icon component
7043
+ * @property {number | string} [size] - Size of the icon (default: 24)
7044
+ */
7045
+ interface MagickoChatboxProps extends React.SVGProps<SVGSVGElement> {
7046
+ size?: number | string;
7047
+ }
7048
+ /**
7049
+ * MagickoChatbox icon component
7050
+ * @example
7051
+ * ```tsx
7052
+ * import { MagickoChatbox } from 'magick-icons';
7053
+ *
7054
+ * <MagickoChatbox size={24} className="text-blue-500" strokeWidth={2} />
7055
+ * ```
7056
+ */
7057
+ declare const MagickoChatbox: React.ForwardRefExoticComponent<Omit<MagickoChatboxProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7058
+
6915
7059
  /**
6916
7060
  * Props for the MagickoCheck icon component
6917
7061
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -6930,6 +7074,942 @@ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
6930
7074
  */
6931
7075
  declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6932
7076
 
7077
+ /**
7078
+ * Props for the MagickoCirclefinger icon component
7079
+ * @property {number | string} [size] - Size of the icon (default: 24)
7080
+ */
7081
+ interface MagickoCirclefingerProps extends React.SVGProps<SVGSVGElement> {
7082
+ size?: number | string;
7083
+ }
7084
+ /**
7085
+ * MagickoCirclefinger icon component
7086
+ * @example
7087
+ * ```tsx
7088
+ * import { MagickoCirclefinger } from 'magick-icons';
7089
+ *
7090
+ * <MagickoCirclefinger size={24} className="text-blue-500" strokeWidth={2} />
7091
+ * ```
7092
+ */
7093
+ declare const MagickoCirclefinger: React.ForwardRefExoticComponent<Omit<MagickoCirclefingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7094
+
7095
+ /**
7096
+ * Props for the MagickoClipboard icon component
7097
+ * @property {number | string} [size] - Size of the icon (default: 24)
7098
+ */
7099
+ interface MagickoClipboardProps extends React.SVGProps<SVGSVGElement> {
7100
+ size?: number | string;
7101
+ }
7102
+ /**
7103
+ * MagickoClipboard icon component
7104
+ * @example
7105
+ * ```tsx
7106
+ * import { MagickoClipboard } from 'magick-icons';
7107
+ *
7108
+ * <MagickoClipboard size={24} className="text-blue-500" strokeWidth={2} />
7109
+ * ```
7110
+ */
7111
+ declare const MagickoClipboard: React.ForwardRefExoticComponent<Omit<MagickoClipboardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7112
+
7113
+ /**
7114
+ * Props for the MagickoClipboardClose icon component
7115
+ * @property {number | string} [size] - Size of the icon (default: 24)
7116
+ */
7117
+ interface MagickoClipboardCloseProps extends React.SVGProps<SVGSVGElement> {
7118
+ size?: number | string;
7119
+ }
7120
+ /**
7121
+ * MagickoClipboardClose icon component
7122
+ * @example
7123
+ * ```tsx
7124
+ * import { MagickoClipboardClose } from 'magick-icons';
7125
+ *
7126
+ * <MagickoClipboardClose size={24} className="text-blue-500" strokeWidth={2} />
7127
+ * ```
7128
+ */
7129
+ declare const MagickoClipboardClose: React.ForwardRefExoticComponent<Omit<MagickoClipboardCloseProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7130
+
7131
+ /**
7132
+ * Props for the MagickoClipboardExport icon component
7133
+ * @property {number | string} [size] - Size of the icon (default: 24)
7134
+ */
7135
+ interface MagickoClipboardExportProps extends React.SVGProps<SVGSVGElement> {
7136
+ size?: number | string;
7137
+ }
7138
+ /**
7139
+ * MagickoClipboardExport icon component
7140
+ * @example
7141
+ * ```tsx
7142
+ * import { MagickoClipboardExport } from 'magick-icons';
7143
+ *
7144
+ * <MagickoClipboardExport size={24} className="text-blue-500" strokeWidth={2} />
7145
+ * ```
7146
+ */
7147
+ declare const MagickoClipboardExport: React.ForwardRefExoticComponent<Omit<MagickoClipboardExportProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7148
+
7149
+ /**
7150
+ * Props for the MagickoClipboardImport icon component
7151
+ * @property {number | string} [size] - Size of the icon (default: 24)
7152
+ */
7153
+ interface MagickoClipboardImportProps extends React.SVGProps<SVGSVGElement> {
7154
+ size?: number | string;
7155
+ }
7156
+ /**
7157
+ * MagickoClipboardImport icon component
7158
+ * @example
7159
+ * ```tsx
7160
+ * import { MagickoClipboardImport } from 'magick-icons';
7161
+ *
7162
+ * <MagickoClipboardImport size={24} className="text-blue-500" strokeWidth={2} />
7163
+ * ```
7164
+ */
7165
+ declare const MagickoClipboardImport: React.ForwardRefExoticComponent<Omit<MagickoClipboardImportProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7166
+
7167
+ /**
7168
+ * Props for the MagickoClipboardText icon component
7169
+ * @property {number | string} [size] - Size of the icon (default: 24)
7170
+ */
7171
+ interface MagickoClipboardTextProps extends React.SVGProps<SVGSVGElement> {
7172
+ size?: number | string;
7173
+ }
7174
+ /**
7175
+ * MagickoClipboardText icon component
7176
+ * @example
7177
+ * ```tsx
7178
+ * import { MagickoClipboardText } from 'magick-icons';
7179
+ *
7180
+ * <MagickoClipboardText size={24} className="text-blue-500" strokeWidth={2} />
7181
+ * ```
7182
+ */
7183
+ declare const MagickoClipboardText: React.ForwardRefExoticComponent<Omit<MagickoClipboardTextProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7184
+
7185
+ /**
7186
+ * Props for the MagickoClipboardTick icon component
7187
+ * @property {number | string} [size] - Size of the icon (default: 24)
7188
+ */
7189
+ interface MagickoClipboardTickProps extends React.SVGProps<SVGSVGElement> {
7190
+ size?: number | string;
7191
+ }
7192
+ /**
7193
+ * MagickoClipboardTick icon component
7194
+ * @example
7195
+ * ```tsx
7196
+ * import { MagickoClipboardTick } from 'magick-icons';
7197
+ *
7198
+ * <MagickoClipboardTick size={24} className="text-blue-500" strokeWidth={2} />
7199
+ * ```
7200
+ */
7201
+ declare const MagickoClipboardTick: React.ForwardRefExoticComponent<Omit<MagickoClipboardTickProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7202
+
7203
+ /**
7204
+ * Props for the MagickoClock icon component
7205
+ * @property {number | string} [size] - Size of the icon (default: 24)
7206
+ */
7207
+ interface MagickoClockProps extends React.SVGProps<SVGSVGElement> {
7208
+ size?: number | string;
7209
+ }
7210
+ /**
7211
+ * MagickoClock icon component
7212
+ * @example
7213
+ * ```tsx
7214
+ * import { MagickoClock } from 'magick-icons';
7215
+ *
7216
+ * <MagickoClock size={24} className="text-blue-500" strokeWidth={2} />
7217
+ * ```
7218
+ */
7219
+ declare const MagickoClock: React.ForwardRefExoticComponent<Omit<MagickoClockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7220
+
7221
+ /**
7222
+ * Props for the MagickoClock1 icon component
7223
+ * @property {number | string} [size] - Size of the icon (default: 24)
7224
+ */
7225
+ interface MagickoClock1Props extends React.SVGProps<SVGSVGElement> {
7226
+ size?: number | string;
7227
+ }
7228
+ /**
7229
+ * MagickoClock1 icon component
7230
+ * @example
7231
+ * ```tsx
7232
+ * import { MagickoClock1 } from 'magick-icons';
7233
+ *
7234
+ * <MagickoClock1 size={24} className="text-blue-500" strokeWidth={2} />
7235
+ * ```
7236
+ */
7237
+ declare const MagickoClock1: React.ForwardRefExoticComponent<Omit<MagickoClock1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7238
+
7239
+ /**
7240
+ * Props for the MagickoClock2 icon component
7241
+ * @property {number | string} [size] - Size of the icon (default: 24)
7242
+ */
7243
+ interface MagickoClock2Props extends React.SVGProps<SVGSVGElement> {
7244
+ size?: number | string;
7245
+ }
7246
+ /**
7247
+ * MagickoClock2 icon component
7248
+ * @example
7249
+ * ```tsx
7250
+ * import { MagickoClock2 } from 'magick-icons';
7251
+ *
7252
+ * <MagickoClock2 size={24} className="text-blue-500" strokeWidth={2} />
7253
+ * ```
7254
+ */
7255
+ declare const MagickoClock2: React.ForwardRefExoticComponent<Omit<MagickoClock2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7256
+
7257
+ /**
7258
+ * Props for the MagickoCloseCircle icon component
7259
+ * @property {number | string} [size] - Size of the icon (default: 24)
7260
+ */
7261
+ interface MagickoCloseCircleProps extends React.SVGProps<SVGSVGElement> {
7262
+ size?: number | string;
7263
+ }
7264
+ /**
7265
+ * MagickoCloseCircle icon component
7266
+ * @example
7267
+ * ```tsx
7268
+ * import { MagickoCloseCircle } from 'magick-icons';
7269
+ *
7270
+ * <MagickoCloseCircle size={24} className="text-blue-500" strokeWidth={2} />
7271
+ * ```
7272
+ */
7273
+ declare const MagickoCloseCircle: React.ForwardRefExoticComponent<Omit<MagickoCloseCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7274
+
7275
+ /**
7276
+ * Props for the MagickoCloseSquare icon component
7277
+ * @property {number | string} [size] - Size of the icon (default: 24)
7278
+ */
7279
+ interface MagickoCloseSquareProps extends React.SVGProps<SVGSVGElement> {
7280
+ size?: number | string;
7281
+ }
7282
+ /**
7283
+ * MagickoCloseSquare icon component
7284
+ * @example
7285
+ * ```tsx
7286
+ * import { MagickoCloseSquare } from 'magick-icons';
7287
+ *
7288
+ * <MagickoCloseSquare size={24} className="text-blue-500" strokeWidth={2} />
7289
+ * ```
7290
+ */
7291
+ declare const MagickoCloseSquare: React.ForwardRefExoticComponent<Omit<MagickoCloseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7292
+
7293
+ /**
7294
+ * Props for the MagickoCloud icon component
7295
+ * @property {number | string} [size] - Size of the icon (default: 24)
7296
+ */
7297
+ interface MagickoCloudProps extends React.SVGProps<SVGSVGElement> {
7298
+ size?: number | string;
7299
+ }
7300
+ /**
7301
+ * MagickoCloud icon component
7302
+ * @example
7303
+ * ```tsx
7304
+ * import { MagickoCloud } from 'magick-icons';
7305
+ *
7306
+ * <MagickoCloud size={24} className="text-blue-500" strokeWidth={2} />
7307
+ * ```
7308
+ */
7309
+ declare const MagickoCloud: React.ForwardRefExoticComponent<Omit<MagickoCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7310
+
7311
+ /**
7312
+ * Props for the MagickoCloud1 icon component
7313
+ * @property {number | string} [size] - Size of the icon (default: 24)
7314
+ */
7315
+ interface MagickoCloud1Props extends React.SVGProps<SVGSVGElement> {
7316
+ size?: number | string;
7317
+ }
7318
+ /**
7319
+ * MagickoCloud1 icon component
7320
+ * @example
7321
+ * ```tsx
7322
+ * import { MagickoCloud1 } from 'magick-icons';
7323
+ *
7324
+ * <MagickoCloud1 size={24} className="text-blue-500" strokeWidth={2} />
7325
+ * ```
7326
+ */
7327
+ declare const MagickoCloud1: React.ForwardRefExoticComponent<Omit<MagickoCloud1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7328
+
7329
+ /**
7330
+ * Props for the MagickoCloudAdd icon component
7331
+ * @property {number | string} [size] - Size of the icon (default: 24)
7332
+ */
7333
+ interface MagickoCloudAddProps extends React.SVGProps<SVGSVGElement> {
7334
+ size?: number | string;
7335
+ }
7336
+ /**
7337
+ * MagickoCloudAdd icon component
7338
+ * @example
7339
+ * ```tsx
7340
+ * import { MagickoCloudAdd } from 'magick-icons';
7341
+ *
7342
+ * <MagickoCloudAdd size={24} className="text-blue-500" strokeWidth={2} />
7343
+ * ```
7344
+ */
7345
+ declare const MagickoCloudAdd: React.ForwardRefExoticComponent<Omit<MagickoCloudAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7346
+
7347
+ /**
7348
+ * Props for the MagickoCloudAdd1 icon component
7349
+ * @property {number | string} [size] - Size of the icon (default: 24)
7350
+ */
7351
+ interface MagickoCloudAdd1Props extends React.SVGProps<SVGSVGElement> {
7352
+ size?: number | string;
7353
+ }
7354
+ /**
7355
+ * MagickoCloudAdd1 icon component
7356
+ * @example
7357
+ * ```tsx
7358
+ * import { MagickoCloudAdd1 } from 'magick-icons';
7359
+ *
7360
+ * <MagickoCloudAdd1 size={24} className="text-blue-500" strokeWidth={2} />
7361
+ * ```
7362
+ */
7363
+ declare const MagickoCloudAdd1: React.ForwardRefExoticComponent<Omit<MagickoCloudAdd1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7364
+
7365
+ /**
7366
+ * Props for the MagickoCloudChange icon component
7367
+ * @property {number | string} [size] - Size of the icon (default: 24)
7368
+ */
7369
+ interface MagickoCloudChangeProps extends React.SVGProps<SVGSVGElement> {
7370
+ size?: number | string;
7371
+ }
7372
+ /**
7373
+ * MagickoCloudChange icon component
7374
+ * @example
7375
+ * ```tsx
7376
+ * import { MagickoCloudChange } from 'magick-icons';
7377
+ *
7378
+ * <MagickoCloudChange size={24} className="text-blue-500" strokeWidth={2} />
7379
+ * ```
7380
+ */
7381
+ declare const MagickoCloudChange: React.ForwardRefExoticComponent<Omit<MagickoCloudChangeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7382
+
7383
+ /**
7384
+ * Props for the MagickoCloudConnection icon component
7385
+ * @property {number | string} [size] - Size of the icon (default: 24)
7386
+ */
7387
+ interface MagickoCloudConnectionProps extends React.SVGProps<SVGSVGElement> {
7388
+ size?: number | string;
7389
+ }
7390
+ /**
7391
+ * MagickoCloudConnection icon component
7392
+ * @example
7393
+ * ```tsx
7394
+ * import { MagickoCloudConnection } from 'magick-icons';
7395
+ *
7396
+ * <MagickoCloudConnection size={24} className="text-blue-500" strokeWidth={2} />
7397
+ * ```
7398
+ */
7399
+ declare const MagickoCloudConnection: React.ForwardRefExoticComponent<Omit<MagickoCloudConnectionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7400
+
7401
+ /**
7402
+ * Props for the MagickoCloudDrizzle icon component
7403
+ * @property {number | string} [size] - Size of the icon (default: 24)
7404
+ */
7405
+ interface MagickoCloudDrizzleProps extends React.SVGProps<SVGSVGElement> {
7406
+ size?: number | string;
7407
+ }
7408
+ /**
7409
+ * MagickoCloudDrizzle icon component
7410
+ * @example
7411
+ * ```tsx
7412
+ * import { MagickoCloudDrizzle } from 'magick-icons';
7413
+ *
7414
+ * <MagickoCloudDrizzle size={24} className="text-blue-500" strokeWidth={2} />
7415
+ * ```
7416
+ */
7417
+ declare const MagickoCloudDrizzle: React.ForwardRefExoticComponent<Omit<MagickoCloudDrizzleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7418
+
7419
+ /**
7420
+ * Props for the MagickoCloudFog icon component
7421
+ * @property {number | string} [size] - Size of the icon (default: 24)
7422
+ */
7423
+ interface MagickoCloudFogProps extends React.SVGProps<SVGSVGElement> {
7424
+ size?: number | string;
7425
+ }
7426
+ /**
7427
+ * MagickoCloudFog icon component
7428
+ * @example
7429
+ * ```tsx
7430
+ * import { MagickoCloudFog } from 'magick-icons';
7431
+ *
7432
+ * <MagickoCloudFog size={24} className="text-blue-500" strokeWidth={2} />
7433
+ * ```
7434
+ */
7435
+ declare const MagickoCloudFog: React.ForwardRefExoticComponent<Omit<MagickoCloudFogProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7436
+
7437
+ /**
7438
+ * Props for the MagickoCloudLightning icon component
7439
+ * @property {number | string} [size] - Size of the icon (default: 24)
7440
+ */
7441
+ interface MagickoCloudLightningProps extends React.SVGProps<SVGSVGElement> {
7442
+ size?: number | string;
7443
+ }
7444
+ /**
7445
+ * MagickoCloudLightning icon component
7446
+ * @example
7447
+ * ```tsx
7448
+ * import { MagickoCloudLightning } from 'magick-icons';
7449
+ *
7450
+ * <MagickoCloudLightning size={24} className="text-blue-500" strokeWidth={2} />
7451
+ * ```
7452
+ */
7453
+ declare const MagickoCloudLightning: React.ForwardRefExoticComponent<Omit<MagickoCloudLightningProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7454
+
7455
+ /**
7456
+ * Props for the MagickoCloudMinus icon component
7457
+ * @property {number | string} [size] - Size of the icon (default: 24)
7458
+ */
7459
+ interface MagickoCloudMinusProps extends React.SVGProps<SVGSVGElement> {
7460
+ size?: number | string;
7461
+ }
7462
+ /**
7463
+ * MagickoCloudMinus icon component
7464
+ * @example
7465
+ * ```tsx
7466
+ * import { MagickoCloudMinus } from 'magick-icons';
7467
+ *
7468
+ * <MagickoCloudMinus size={24} className="text-blue-500" strokeWidth={2} />
7469
+ * ```
7470
+ */
7471
+ declare const MagickoCloudMinus: React.ForwardRefExoticComponent<Omit<MagickoCloudMinusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7472
+
7473
+ /**
7474
+ * Props for the MagickoCloudNotif icon component
7475
+ * @property {number | string} [size] - Size of the icon (default: 24)
7476
+ */
7477
+ interface MagickoCloudNotifProps extends React.SVGProps<SVGSVGElement> {
7478
+ size?: number | string;
7479
+ }
7480
+ /**
7481
+ * MagickoCloudNotif icon component
7482
+ * @example
7483
+ * ```tsx
7484
+ * import { MagickoCloudNotif } from 'magick-icons';
7485
+ *
7486
+ * <MagickoCloudNotif size={24} className="text-blue-500" strokeWidth={2} />
7487
+ * ```
7488
+ */
7489
+ declare const MagickoCloudNotif: React.ForwardRefExoticComponent<Omit<MagickoCloudNotifProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7490
+
7491
+ /**
7492
+ * Props for the MagickoCloudPlus icon component
7493
+ * @property {number | string} [size] - Size of the icon (default: 24)
7494
+ */
7495
+ interface MagickoCloudPlusProps extends React.SVGProps<SVGSVGElement> {
7496
+ size?: number | string;
7497
+ }
7498
+ /**
7499
+ * MagickoCloudPlus icon component
7500
+ * @example
7501
+ * ```tsx
7502
+ * import { MagickoCloudPlus } from 'magick-icons';
7503
+ *
7504
+ * <MagickoCloudPlus size={24} className="text-blue-500" strokeWidth={2} />
7505
+ * ```
7506
+ */
7507
+ declare const MagickoCloudPlus: React.ForwardRefExoticComponent<Omit<MagickoCloudPlusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7508
+
7509
+ /**
7510
+ * Props for the MagickoCloudRemove icon component
7511
+ * @property {number | string} [size] - Size of the icon (default: 24)
7512
+ */
7513
+ interface MagickoCloudRemoveProps extends React.SVGProps<SVGSVGElement> {
7514
+ size?: number | string;
7515
+ }
7516
+ /**
7517
+ * MagickoCloudRemove icon component
7518
+ * @example
7519
+ * ```tsx
7520
+ * import { MagickoCloudRemove } from 'magick-icons';
7521
+ *
7522
+ * <MagickoCloudRemove size={24} className="text-blue-500" strokeWidth={2} />
7523
+ * ```
7524
+ */
7525
+ declare const MagickoCloudRemove: React.ForwardRefExoticComponent<Omit<MagickoCloudRemoveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7526
+
7527
+ /**
7528
+ * Props for the MagickoCloudSnow icon component
7529
+ * @property {number | string} [size] - Size of the icon (default: 24)
7530
+ */
7531
+ interface MagickoCloudSnowProps extends React.SVGProps<SVGSVGElement> {
7532
+ size?: number | string;
7533
+ }
7534
+ /**
7535
+ * MagickoCloudSnow icon component
7536
+ * @example
7537
+ * ```tsx
7538
+ * import { MagickoCloudSnow } from 'magick-icons';
7539
+ *
7540
+ * <MagickoCloudSnow size={24} className="text-blue-500" strokeWidth={2} />
7541
+ * ```
7542
+ */
7543
+ declare const MagickoCloudSnow: React.ForwardRefExoticComponent<Omit<MagickoCloudSnowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7544
+
7545
+ /**
7546
+ * Props for the MagickoCloudSunny icon component
7547
+ * @property {number | string} [size] - Size of the icon (default: 24)
7548
+ */
7549
+ interface MagickoCloudSunnyProps extends React.SVGProps<SVGSVGElement> {
7550
+ size?: number | string;
7551
+ }
7552
+ /**
7553
+ * MagickoCloudSunny icon component
7554
+ * @example
7555
+ * ```tsx
7556
+ * import { MagickoCloudSunny } from 'magick-icons';
7557
+ *
7558
+ * <MagickoCloudSunny size={24} className="text-blue-500" strokeWidth={2} />
7559
+ * ```
7560
+ */
7561
+ declare const MagickoCloudSunny: React.ForwardRefExoticComponent<Omit<MagickoCloudSunnyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7562
+
7563
+ /**
7564
+ * Props for the MagickoCloudWarning icon component
7565
+ * @property {number | string} [size] - Size of the icon (default: 24)
7566
+ */
7567
+ interface MagickoCloudWarningProps extends React.SVGProps<SVGSVGElement> {
7568
+ size?: number | string;
7569
+ }
7570
+ /**
7571
+ * MagickoCloudWarning icon component
7572
+ * @example
7573
+ * ```tsx
7574
+ * import { MagickoCloudWarning } from 'magick-icons';
7575
+ *
7576
+ * <MagickoCloudWarning size={24} className="text-blue-500" strokeWidth={2} />
7577
+ * ```
7578
+ */
7579
+ declare const MagickoCloudWarning: React.ForwardRefExoticComponent<Omit<MagickoCloudWarningProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7580
+
7581
+ /**
7582
+ * Props for the MagickoCoin icon component
7583
+ * @property {number | string} [size] - Size of the icon (default: 24)
7584
+ */
7585
+ interface MagickoCoinProps extends React.SVGProps<SVGSVGElement> {
7586
+ size?: number | string;
7587
+ }
7588
+ /**
7589
+ * MagickoCoin icon component
7590
+ * @example
7591
+ * ```tsx
7592
+ * import { MagickoCoin } from 'magick-icons';
7593
+ *
7594
+ * <MagickoCoin size={24} className="text-blue-500" strokeWidth={2} />
7595
+ * ```
7596
+ */
7597
+ declare const MagickoCoin: React.ForwardRefExoticComponent<Omit<MagickoCoinProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7598
+
7599
+ /**
7600
+ * Props for the MagickoCoin1 icon component
7601
+ * @property {number | string} [size] - Size of the icon (default: 24)
7602
+ */
7603
+ interface MagickoCoin1Props extends React.SVGProps<SVGSVGElement> {
7604
+ size?: number | string;
7605
+ }
7606
+ /**
7607
+ * MagickoCoin1 icon component
7608
+ * @example
7609
+ * ```tsx
7610
+ * import { MagickoCoin1 } from 'magick-icons';
7611
+ *
7612
+ * <MagickoCoin1 size={24} className="text-blue-500" strokeWidth={2} />
7613
+ * ```
7614
+ */
7615
+ declare const MagickoCoin1: React.ForwardRefExoticComponent<Omit<MagickoCoin1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7616
+
7617
+ /**
7618
+ * Props for the MagickoCoin11 icon component
7619
+ * @property {number | string} [size] - Size of the icon (default: 24)
7620
+ */
7621
+ interface MagickoCoin11Props extends React.SVGProps<SVGSVGElement> {
7622
+ size?: number | string;
7623
+ }
7624
+ /**
7625
+ * MagickoCoin11 icon component
7626
+ * @example
7627
+ * ```tsx
7628
+ * import { MagickoCoin11 } from 'magick-icons';
7629
+ *
7630
+ * <MagickoCoin11 size={24} className="text-blue-500" strokeWidth={2} />
7631
+ * ```
7632
+ */
7633
+ declare const MagickoCoin11: React.ForwardRefExoticComponent<Omit<MagickoCoin11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7634
+
7635
+ /**
7636
+ * Props for the MagickoConversationBox icon component
7637
+ * @property {number | string} [size] - Size of the icon (default: 24)
7638
+ */
7639
+ interface MagickoConversationBoxProps extends React.SVGProps<SVGSVGElement> {
7640
+ size?: number | string;
7641
+ }
7642
+ /**
7643
+ * MagickoConversationBox icon component
7644
+ * @example
7645
+ * ```tsx
7646
+ * import { MagickoConversationBox } from 'magick-icons';
7647
+ *
7648
+ * <MagickoConversationBox size={24} className="text-blue-500" strokeWidth={2} />
7649
+ * ```
7650
+ */
7651
+ declare const MagickoConversationBox: React.ForwardRefExoticComponent<Omit<MagickoConversationBoxProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7652
+
7653
+ /**
7654
+ * Props for the MagickoConvertArrow icon component
7655
+ * @property {number | string} [size] - Size of the icon (default: 24)
7656
+ */
7657
+ interface MagickoConvertArrowProps extends React.SVGProps<SVGSVGElement> {
7658
+ size?: number | string;
7659
+ }
7660
+ /**
7661
+ * MagickoConvertArrow icon component
7662
+ * @example
7663
+ * ```tsx
7664
+ * import { MagickoConvertArrow } from 'magick-icons';
7665
+ *
7666
+ * <MagickoConvertArrow size={24} className="text-blue-500" strokeWidth={2} />
7667
+ * ```
7668
+ */
7669
+ declare const MagickoConvertArrow: React.ForwardRefExoticComponent<Omit<MagickoConvertArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7670
+
7671
+ /**
7672
+ * Props for the MagickoCopy icon component
7673
+ * @property {number | string} [size] - Size of the icon (default: 24)
7674
+ */
7675
+ interface MagickoCopyProps extends React.SVGProps<SVGSVGElement> {
7676
+ size?: number | string;
7677
+ }
7678
+ /**
7679
+ * MagickoCopy icon component
7680
+ * @example
7681
+ * ```tsx
7682
+ * import { MagickoCopy } from 'magick-icons';
7683
+ *
7684
+ * <MagickoCopy size={24} className="text-blue-500" strokeWidth={2} />
7685
+ * ```
7686
+ */
7687
+ declare const MagickoCopy: React.ForwardRefExoticComponent<Omit<MagickoCopyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7688
+
7689
+ /**
7690
+ * Props for the MagickoCopySuccess icon component
7691
+ * @property {number | string} [size] - Size of the icon (default: 24)
7692
+ */
7693
+ interface MagickoCopySuccessProps extends React.SVGProps<SVGSVGElement> {
7694
+ size?: number | string;
7695
+ }
7696
+ /**
7697
+ * MagickoCopySuccess icon component
7698
+ * @example
7699
+ * ```tsx
7700
+ * import { MagickoCopySuccess } from 'magick-icons';
7701
+ *
7702
+ * <MagickoCopySuccess size={24} className="text-blue-500" strokeWidth={2} />
7703
+ * ```
7704
+ */
7705
+ declare const MagickoCopySuccess: React.ForwardRefExoticComponent<Omit<MagickoCopySuccessProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7706
+
7707
+ /**
7708
+ * Props for the MagickoCopyright icon component
7709
+ * @property {number | string} [size] - Size of the icon (default: 24)
7710
+ */
7711
+ interface MagickoCopyrightProps extends React.SVGProps<SVGSVGElement> {
7712
+ size?: number | string;
7713
+ }
7714
+ /**
7715
+ * MagickoCopyright icon component
7716
+ * @example
7717
+ * ```tsx
7718
+ * import { MagickoCopyright } from 'magick-icons';
7719
+ *
7720
+ * <MagickoCopyright size={24} className="text-blue-500" strokeWidth={2} />
7721
+ * ```
7722
+ */
7723
+ declare const MagickoCopyright: React.ForwardRefExoticComponent<Omit<MagickoCopyrightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7724
+
7725
+ /**
7726
+ * Props for the MagickoCopyright1 icon component
7727
+ * @property {number | string} [size] - Size of the icon (default: 24)
7728
+ */
7729
+ interface MagickoCopyright1Props extends React.SVGProps<SVGSVGElement> {
7730
+ size?: number | string;
7731
+ }
7732
+ /**
7733
+ * MagickoCopyright1 icon component
7734
+ * @example
7735
+ * ```tsx
7736
+ * import { MagickoCopyright1 } from 'magick-icons';
7737
+ *
7738
+ * <MagickoCopyright1 size={24} className="text-blue-500" strokeWidth={2} />
7739
+ * ```
7740
+ */
7741
+ declare const MagickoCopyright1: React.ForwardRefExoticComponent<Omit<MagickoCopyright1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7742
+
7743
+ /**
7744
+ * Props for the MagickoCopyright2 icon component
7745
+ * @property {number | string} [size] - Size of the icon (default: 24)
7746
+ */
7747
+ interface MagickoCopyright2Props extends React.SVGProps<SVGSVGElement> {
7748
+ size?: number | string;
7749
+ }
7750
+ /**
7751
+ * MagickoCopyright2 icon component
7752
+ * @example
7753
+ * ```tsx
7754
+ * import { MagickoCopyright2 } from 'magick-icons';
7755
+ *
7756
+ * <MagickoCopyright2 size={24} className="text-blue-500" strokeWidth={2} />
7757
+ * ```
7758
+ */
7759
+ declare const MagickoCopyright2: React.ForwardRefExoticComponent<Omit<MagickoCopyright2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7760
+
7761
+ /**
7762
+ * Props for the MagickoCopyright3 icon component
7763
+ * @property {number | string} [size] - Size of the icon (default: 24)
7764
+ */
7765
+ interface MagickoCopyright3Props extends React.SVGProps<SVGSVGElement> {
7766
+ size?: number | string;
7767
+ }
7768
+ /**
7769
+ * MagickoCopyright3 icon component
7770
+ * @example
7771
+ * ```tsx
7772
+ * import { MagickoCopyright3 } from 'magick-icons';
7773
+ *
7774
+ * <MagickoCopyright3 size={24} className="text-blue-500" strokeWidth={2} />
7775
+ * ```
7776
+ */
7777
+ declare const MagickoCopyright3: React.ForwardRefExoticComponent<Omit<MagickoCopyright3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7778
+
7779
+ /**
7780
+ * Props for the MagickoCopyright4 icon component
7781
+ * @property {number | string} [size] - Size of the icon (default: 24)
7782
+ */
7783
+ interface MagickoCopyright4Props extends React.SVGProps<SVGSVGElement> {
7784
+ size?: number | string;
7785
+ }
7786
+ /**
7787
+ * MagickoCopyright4 icon component
7788
+ * @example
7789
+ * ```tsx
7790
+ * import { MagickoCopyright4 } from 'magick-icons';
7791
+ *
7792
+ * <MagickoCopyright4 size={24} className="text-blue-500" strokeWidth={2} />
7793
+ * ```
7794
+ */
7795
+ declare const MagickoCopyright4: React.ForwardRefExoticComponent<Omit<MagickoCopyright4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7796
+
7797
+ /**
7798
+ * Props for the MagickoCourthouse icon component
7799
+ * @property {number | string} [size] - Size of the icon (default: 24)
7800
+ */
7801
+ interface MagickoCourthouseProps extends React.SVGProps<SVGSVGElement> {
7802
+ size?: number | string;
7803
+ }
7804
+ /**
7805
+ * MagickoCourthouse icon component
7806
+ * @example
7807
+ * ```tsx
7808
+ * import { MagickoCourthouse } from 'magick-icons';
7809
+ *
7810
+ * <MagickoCourthouse size={24} className="text-blue-500" strokeWidth={2} />
7811
+ * ```
7812
+ */
7813
+ declare const MagickoCourthouse: React.ForwardRefExoticComponent<Omit<MagickoCourthouseProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7814
+
7815
+ /**
7816
+ * Props for the MagickoCpu icon component
7817
+ * @property {number | string} [size] - Size of the icon (default: 24)
7818
+ */
7819
+ interface MagickoCpuProps extends React.SVGProps<SVGSVGElement> {
7820
+ size?: number | string;
7821
+ }
7822
+ /**
7823
+ * MagickoCpu icon component
7824
+ * @example
7825
+ * ```tsx
7826
+ * import { MagickoCpu } from 'magick-icons';
7827
+ *
7828
+ * <MagickoCpu size={24} className="text-blue-500" strokeWidth={2} />
7829
+ * ```
7830
+ */
7831
+ declare const MagickoCpu: React.ForwardRefExoticComponent<Omit<MagickoCpuProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7832
+
7833
+ /**
7834
+ * Props for the MagickoCpu1 icon component
7835
+ * @property {number | string} [size] - Size of the icon (default: 24)
7836
+ */
7837
+ interface MagickoCpu1Props extends React.SVGProps<SVGSVGElement> {
7838
+ size?: number | string;
7839
+ }
7840
+ /**
7841
+ * MagickoCpu1 icon component
7842
+ * @example
7843
+ * ```tsx
7844
+ * import { MagickoCpu1 } from 'magick-icons';
7845
+ *
7846
+ * <MagickoCpu1 size={24} className="text-blue-500" strokeWidth={2} />
7847
+ * ```
7848
+ */
7849
+ declare const MagickoCpu1: React.ForwardRefExoticComponent<Omit<MagickoCpu1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7850
+
7851
+ /**
7852
+ * Props for the MagickoCpuCharge icon component
7853
+ * @property {number | string} [size] - Size of the icon (default: 24)
7854
+ */
7855
+ interface MagickoCpuChargeProps extends React.SVGProps<SVGSVGElement> {
7856
+ size?: number | string;
7857
+ }
7858
+ /**
7859
+ * MagickoCpuCharge icon component
7860
+ * @example
7861
+ * ```tsx
7862
+ * import { MagickoCpuCharge } from 'magick-icons';
7863
+ *
7864
+ * <MagickoCpuCharge size={24} className="text-blue-500" strokeWidth={2} />
7865
+ * ```
7866
+ */
7867
+ declare const MagickoCpuCharge: React.ForwardRefExoticComponent<Omit<MagickoCpuChargeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7868
+
7869
+ /**
7870
+ * Props for the MagickoCpuSetting icon component
7871
+ * @property {number | string} [size] - Size of the icon (default: 24)
7872
+ */
7873
+ interface MagickoCpuSettingProps extends React.SVGProps<SVGSVGElement> {
7874
+ size?: number | string;
7875
+ }
7876
+ /**
7877
+ * MagickoCpuSetting icon component
7878
+ * @example
7879
+ * ```tsx
7880
+ * import { MagickoCpuSetting } from 'magick-icons';
7881
+ *
7882
+ * <MagickoCpuSetting size={24} className="text-blue-500" strokeWidth={2} />
7883
+ * ```
7884
+ */
7885
+ declare const MagickoCpuSetting: React.ForwardRefExoticComponent<Omit<MagickoCpuSettingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7886
+
7887
+ /**
7888
+ * Props for the MagickoCreativeCommons icon component
7889
+ * @property {number | string} [size] - Size of the icon (default: 24)
7890
+ */
7891
+ interface MagickoCreativeCommonsProps extends React.SVGProps<SVGSVGElement> {
7892
+ size?: number | string;
7893
+ }
7894
+ /**
7895
+ * MagickoCreativeCommons icon component
7896
+ * @example
7897
+ * ```tsx
7898
+ * import { MagickoCreativeCommons } from 'magick-icons';
7899
+ *
7900
+ * <MagickoCreativeCommons size={24} className="text-blue-500" strokeWidth={2} />
7901
+ * ```
7902
+ */
7903
+ declare const MagickoCreativeCommons: React.ForwardRefExoticComponent<Omit<MagickoCreativeCommonsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7904
+
7905
+ /**
7906
+ * Props for the MagickoCreativeCommons1 icon component
7907
+ * @property {number | string} [size] - Size of the icon (default: 24)
7908
+ */
7909
+ interface MagickoCreativeCommons1Props extends React.SVGProps<SVGSVGElement> {
7910
+ size?: number | string;
7911
+ }
7912
+ /**
7913
+ * MagickoCreativeCommons1 icon component
7914
+ * @example
7915
+ * ```tsx
7916
+ * import { MagickoCreativeCommons1 } from 'magick-icons';
7917
+ *
7918
+ * <MagickoCreativeCommons1 size={24} className="text-blue-500" strokeWidth={2} />
7919
+ * ```
7920
+ */
7921
+ declare const MagickoCreativeCommons1: React.ForwardRefExoticComponent<Omit<MagickoCreativeCommons1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7922
+
7923
+ /**
7924
+ * Props for the MagickoDecreaseCloud icon component
7925
+ * @property {number | string} [size] - Size of the icon (default: 24)
7926
+ */
7927
+ interface MagickoDecreaseCloudProps extends React.SVGProps<SVGSVGElement> {
7928
+ size?: number | string;
7929
+ }
7930
+ /**
7931
+ * MagickoDecreaseCloud icon component
7932
+ * @example
7933
+ * ```tsx
7934
+ * import { MagickoDecreaseCloud } from 'magick-icons';
7935
+ *
7936
+ * <MagickoDecreaseCloud size={24} className="text-blue-500" strokeWidth={2} />
7937
+ * ```
7938
+ */
7939
+ declare const MagickoDecreaseCloud: React.ForwardRefExoticComponent<Omit<MagickoDecreaseCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7940
+
7941
+ /**
7942
+ * Props for the MagickoDevices icon component
7943
+ * @property {number | string} [size] - Size of the icon (default: 24)
7944
+ */
7945
+ interface MagickoDevicesProps extends React.SVGProps<SVGSVGElement> {
7946
+ size?: number | string;
7947
+ }
7948
+ /**
7949
+ * MagickoDevices icon component
7950
+ * @example
7951
+ * ```tsx
7952
+ * import { MagickoDevices } from 'magick-icons';
7953
+ *
7954
+ * <MagickoDevices size={24} className="text-blue-500" strokeWidth={2} />
7955
+ * ```
7956
+ */
7957
+ declare const MagickoDevices: React.ForwardRefExoticComponent<Omit<MagickoDevicesProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7958
+
7959
+ /**
7960
+ * Props for the MagickoDevices1 icon component
7961
+ * @property {number | string} [size] - Size of the icon (default: 24)
7962
+ */
7963
+ interface MagickoDevices1Props extends React.SVGProps<SVGSVGElement> {
7964
+ size?: number | string;
7965
+ }
7966
+ /**
7967
+ * MagickoDevices1 icon component
7968
+ * @example
7969
+ * ```tsx
7970
+ * import { MagickoDevices1 } from 'magick-icons';
7971
+ *
7972
+ * <MagickoDevices1 size={24} className="text-blue-500" strokeWidth={2} />
7973
+ * ```
7974
+ */
7975
+ declare const MagickoDevices1: React.ForwardRefExoticComponent<Omit<MagickoDevices1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7976
+
7977
+ /**
7978
+ * Props for the MagickoDiagram icon component
7979
+ * @property {number | string} [size] - Size of the icon (default: 24)
7980
+ */
7981
+ interface MagickoDiagramProps extends React.SVGProps<SVGSVGElement> {
7982
+ size?: number | string;
7983
+ }
7984
+ /**
7985
+ * MagickoDiagram icon component
7986
+ * @example
7987
+ * ```tsx
7988
+ * import { MagickoDiagram } from 'magick-icons';
7989
+ *
7990
+ * <MagickoDiagram size={24} className="text-blue-500" strokeWidth={2} />
7991
+ * ```
7992
+ */
7993
+ declare const MagickoDiagram: React.ForwardRefExoticComponent<Omit<MagickoDiagramProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7994
+
7995
+ /**
7996
+ * Props for the MagickoDirectDown icon component
7997
+ * @property {number | string} [size] - Size of the icon (default: 24)
7998
+ */
7999
+ interface MagickoDirectDownProps extends React.SVGProps<SVGSVGElement> {
8000
+ size?: number | string;
8001
+ }
8002
+ /**
8003
+ * MagickoDirectDown icon component
8004
+ * @example
8005
+ * ```tsx
8006
+ * import { MagickoDirectDown } from 'magick-icons';
8007
+ *
8008
+ * <MagickoDirectDown size={24} className="text-blue-500" strokeWidth={2} />
8009
+ * ```
8010
+ */
8011
+ declare const MagickoDirectDown: React.ForwardRefExoticComponent<Omit<MagickoDirectDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8012
+
6933
8013
  /**
6934
8014
  * Props for the Marketing icon component
6935
8015
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -7218,4 +8298,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
7218
8298
  */
7219
8299
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7220
8300
 
7221
- export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, 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 };
8301
+ export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirectDown, type MagickoDirectDownProps, 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 };